use of org.eclipse.xtext.generator.trace.ILocationInResource in project xtext-xtend by eclipse.
the class DerivedSourceView method selectAndReveal.
@Override
protected void selectAndReveal(IWorkbenchPartSelection workbenchPartSelection) {
if (selectedSource != null) {
IAnnotationModel annotationModel = getSourceViewer().getAnnotationModel();
TextRegion localRegion = mapTextRegion(workbenchPartSelection);
IEclipseTrace trace = traceInformation.getTraceToTarget(getEditorResource(workbenchPartSelection));
if (trace != null) {
Iterable<? extends ILocationInEclipseResource> allAssociatedLocations = trace.getAllAssociatedLocations(localRegion, selectedSource);
ILocationInResource firstLocationInResource = Iterables.getFirst(allAssociatedLocations, null);
if (firstLocationInResource != null) {
ITextRegion textRegion = firstLocationInResource.getTextRegion();
if (textRegion != null) {
openEditorAction.setSelectedRegion(textRegion);
getSourceViewer().revealRange(textRegion.getOffset(), textRegion.getLength());
}
}
for (ILocationInResource locationInResource : allAssociatedLocations) {
ITextRegion textRegion = locationInResource.getTextRegion();
if (textRegion != null) {
annotationModel.addAnnotation(new Annotation(SEARCH_ANNOTATION_TYPE, true, null), new Position(textRegion.getOffset(), textRegion.getLength()));
}
}
}
}
}
use of org.eclipse.xtext.generator.trace.ILocationInResource in project xtext-core by eclipse.
the class AbstractTrace method toLocations.
protected Iterable<? extends ILocationInResource> toLocations(final Iterable<AbstractTraceRegion> allTraceRegions) {
return new Iterable<ILocationInResource>() {
@Override
public Iterator<ILocationInResource> iterator() {
return new AbstractIterator<ILocationInResource>() {
private Iterator<AbstractTraceRegion> delegate = allTraceRegions.iterator();
private AbstractTraceRegion region;
private Iterator<ILocationData> locationDelegate;
@Override
protected ILocationInResource computeNext() {
while (true) {
if (locationDelegate == null || !locationDelegate.hasNext()) {
if (delegate.hasNext()) {
region = delegate.next();
locationDelegate = region.getAssociatedLocations().iterator();
if (!locationDelegate.hasNext()) {
continue;
}
}
}
if (locationDelegate != null && locationDelegate.hasNext()) {
ILocationData locationData = locationDelegate.next();
ILocationInResource result = createLocationInResourceFor(locationData, region);
if (result != null) {
return result;
}
continue;
}
return endOfData();
}
}
};
}
};
}
use of org.eclipse.xtext.generator.trace.ILocationInResource in project xtext-xtend by eclipse.
the class CompilerTraceTest method tracesTo.
public void tracesTo(final CharSequence xtend, final CharSequence java) {
try {
final String xtendWithSpaces = ((" " + xtend) + " ");
final Matcher xtendMatcher = this.p.matcher(xtendWithSpaces);
Assert.assertTrue("xtendMatcher.matches", xtendMatcher.matches());
final String xtendGroup1 = xtendMatcher.group(1);
final String xtendGroup2 = xtendMatcher.group(2);
final String xtendGroup3 = xtendMatcher.group(3);
final String actualXtendCode = ((xtendGroup1 + xtendGroup2) + xtendGroup3);
final XtendFile file = this.file(actualXtendCode, true);
XtendTypeDeclaration _head = IterableExtensions.<XtendTypeDeclaration>head(file.getXtendTypes());
final JvmGenericType inferredType = this._iXtendJvmAssociations.getInferredType(((XtendClass) _head));
CharSequence compiledCode = this.generator.generateType(inferredType, this.generatorConfigProvider.get(inferredType));
compiledCode = this.postProcessor.postProcess(null, compiledCode);
final Matcher javaMatcher = this.p.matcher(java.toString());
Assert.assertTrue("javaMatcher.matches", javaMatcher.matches());
final String javaGroup1 = javaMatcher.group(1);
final String javaGroup2 = javaMatcher.group(2);
final String javaGroup3 = javaMatcher.group(3);
final String actualJavaExpectation = ((javaGroup1 + javaGroup2) + javaGroup3);
Assert.assertEquals(actualJavaExpectation, compiledCode.toString());
AbstractTraceRegion _traceRegion = ((ITraceRegionProvider) compiledCode).getTraceRegion();
URI _createURI = URI.createURI(file.eResource().getURI().path());
SourceRelativeURI _sourceRelativeURI = new SourceRelativeURI(_createURI);
URI _createURI_1 = URI.createURI(file.eResource().getURI().path());
SourceRelativeURI _sourceRelativeURI_1 = new SourceRelativeURI(_createURI_1);
AbstractTraceRegion _merge = this.merge(_traceRegion.invertFor(_sourceRelativeURI, _sourceRelativeURI_1));
final SimpleTrace trace = new SimpleTrace(_merge);
int _length = xtendGroup1.length();
int _length_1 = xtendGroup2.length();
TextRegion _textRegion = new TextRegion(_length, _length_1);
final Iterable<? extends ILocationInResource> locations = trace.getAllAssociatedLocations(_textRegion);
int _length_2 = javaGroup1.length();
int _length_3 = javaGroup2.length();
final TextRegion expectedRegion = new TextRegion(_length_2, _length_3);
Assert.assertFalse(IterableExtensions.isEmpty(locations));
for (final ILocationInResource location : locations) {
ITextRegionWithLineInformation _textRegion_1 = location.getTextRegion();
boolean _equals = Objects.equal(_textRegion_1, expectedRegion);
if (_equals) {
return;
}
}
Assert.fail(((("locations did not match expectation: " + locations) + " / ") + expectedRegion));
} catch (Throwable _e) {
throw Exceptions.sneakyThrow(_e);
}
}
Aggregations