mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-17 01:08:56 +00:00
[bug 437669]: provided support of lazy linking without node model
Change-Id: Ib92604518dc1905ec0806f8739629e1040f213c3 Signed-off-by: akosyakov <anton.kosyakov@itemis.de>
This commit is contained in:
parent
d964a32ce8
commit
3131f538f6
2 changed files with 261 additions and 0 deletions
|
@ -0,0 +1,187 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2014 itemis AG (http://www.itemis.eu) and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*******************************************************************************/
|
||||
package org.eclipse.xtext.linking.lazy;
|
||||
|
||||
import static java.util.Collections.*;
|
||||
|
||||
import org.eclipse.emf.ecore.EObject;
|
||||
import org.eclipse.emf.ecore.EReference;
|
||||
import org.eclipse.xtext.XtextFactory;
|
||||
import org.eclipse.xtext.nodemodel.BidiTreeIterable;
|
||||
import org.eclipse.xtext.nodemodel.BidiTreeIterator;
|
||||
import org.eclipse.xtext.nodemodel.ICompositeNode;
|
||||
import org.eclipse.xtext.nodemodel.ILeafNode;
|
||||
import org.eclipse.xtext.nodemodel.INode;
|
||||
import org.eclipse.xtext.nodemodel.SyntaxErrorMessage;
|
||||
import org.eclipse.xtext.nodemodel.util.NodeTreeIterator;
|
||||
import org.eclipse.xtext.nodemodel.util.ReversedBidiTreeIterable;
|
||||
import org.eclipse.xtext.util.ITextRegion;
|
||||
import org.eclipse.xtext.util.ITextRegionWithLineInformation;
|
||||
import org.eclipse.xtext.util.TextRegion;
|
||||
import org.eclipse.xtext.util.TextRegionWithLineInformation;
|
||||
|
||||
import com.google.inject.Inject;
|
||||
|
||||
/**
|
||||
* Provides services to install proxies without node model.
|
||||
*
|
||||
* @author Anton Kosyakov - Initial contribution and API
|
||||
* @since 2.7
|
||||
*/
|
||||
public class SyntheticLinkingSupport {
|
||||
|
||||
@Inject
|
||||
private LazyLinker lazyLinker;
|
||||
|
||||
public void createAndSetProxy(EObject obj, EReference eRef, String crossRefString) {
|
||||
lazyLinker.createAndSetProxy(obj, new SyntheticLinkingLeafNode(obj, crossRefString), eRef);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
class SyntheticLinkingLeafNode implements ILeafNode, BidiTreeIterable<INode> {
|
||||
|
||||
private final static int OFFSET = 0;
|
||||
private final static int LENGTH = 1;
|
||||
private final static int LINE = -1;
|
||||
|
||||
private final String text;
|
||||
private final EObject grammarElement;
|
||||
private final EObject semanticElement;
|
||||
|
||||
public SyntheticLinkingLeafNode(EObject semanticElement, String text) {
|
||||
this.text = text;
|
||||
this.semanticElement = semanticElement;
|
||||
this.grammarElement = XtextFactory.eINSTANCE.createKeyword();
|
||||
}
|
||||
|
||||
public ICompositeNode getParent() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public boolean hasSiblings() {
|
||||
return false;
|
||||
}
|
||||
|
||||
public boolean hasPreviousSibling() {
|
||||
return false;
|
||||
}
|
||||
|
||||
public boolean hasNextSibling() {
|
||||
return false;
|
||||
}
|
||||
|
||||
public INode getPreviousSibling() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public INode getNextSibling() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public ICompositeNode getRootNode() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public Iterable<ILeafNode> getLeafNodes() {
|
||||
return emptyList();
|
||||
}
|
||||
|
||||
public int getTotalOffset() {
|
||||
return OFFSET;
|
||||
}
|
||||
|
||||
public int getOffset() {
|
||||
return OFFSET;
|
||||
}
|
||||
|
||||
public int getTotalLength() {
|
||||
return LENGTH;
|
||||
}
|
||||
|
||||
public int getLength() {
|
||||
return LENGTH;
|
||||
}
|
||||
|
||||
public int getTotalEndOffset() {
|
||||
return LENGTH;
|
||||
}
|
||||
|
||||
public int getEndOffset() {
|
||||
return LENGTH;
|
||||
}
|
||||
|
||||
public int getTotalStartLine() {
|
||||
return LINE;
|
||||
}
|
||||
|
||||
public int getStartLine() {
|
||||
return LINE;
|
||||
}
|
||||
|
||||
public int getTotalEndLine() {
|
||||
return LINE;
|
||||
}
|
||||
|
||||
public int getEndLine() {
|
||||
return LINE;
|
||||
}
|
||||
|
||||
public String getText() {
|
||||
return text;
|
||||
}
|
||||
|
||||
public EObject getGrammarElement() {
|
||||
return grammarElement;
|
||||
}
|
||||
|
||||
public EObject getSemanticElement() {
|
||||
return semanticElement;
|
||||
}
|
||||
|
||||
public boolean hasDirectSemanticElement() {
|
||||
return true;
|
||||
}
|
||||
|
||||
public SyntaxErrorMessage getSyntaxErrorMessage() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public BidiTreeIterable<INode> getAsTreeIterable() {
|
||||
return this;
|
||||
}
|
||||
|
||||
public BidiTreeIterator<INode> iterator() {
|
||||
return new NodeTreeIterator(this);
|
||||
}
|
||||
|
||||
public BidiTreeIterable<INode> reverse() {
|
||||
return new ReversedBidiTreeIterable<INode>(this);
|
||||
}
|
||||
|
||||
public ITextRegion getTextRegion() {
|
||||
return new TextRegion(OFFSET, LENGTH);
|
||||
}
|
||||
|
||||
public ITextRegion getTotalTextRegion() {
|
||||
return new TextRegion(OFFSET, LENGTH);
|
||||
}
|
||||
|
||||
public ITextRegionWithLineInformation getTextRegionWithLineInformation() {
|
||||
return new TextRegionWithLineInformation(OFFSET, LENGTH, LINE, LINE);
|
||||
}
|
||||
|
||||
public ITextRegionWithLineInformation getTotalTextRegionWithLineInformation() {
|
||||
return new TextRegionWithLineInformation(OFFSET, LENGTH, LINE, LINE);
|
||||
}
|
||||
|
||||
public boolean isHidden() {
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,74 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2014 itemis AG (http://www.itemis.eu) and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*******************************************************************************/
|
||||
package org.eclipse.xtext.linking;
|
||||
|
||||
import org.eclipse.emf.common.util.URI;
|
||||
import org.eclipse.emf.ecore.resource.Resource;
|
||||
import org.eclipse.emf.ecore.util.EcoreUtil;
|
||||
import org.eclipse.xtext.diagnostics.Diagnostic;
|
||||
import org.eclipse.xtext.junit4.AbstractXtextTests;
|
||||
import org.eclipse.xtext.linking.importedURI.ImportedURIPackage;
|
||||
import org.eclipse.xtext.linking.importedURI.Main;
|
||||
import org.eclipse.xtext.linking.importedURI.Type;
|
||||
import org.eclipse.xtext.linking.lazy.SyntheticLinkingSupport;
|
||||
import org.eclipse.xtext.resource.XtextResourceSet;
|
||||
import org.junit.Test;
|
||||
|
||||
/**
|
||||
* @author kosyakov - Initial contribution and API
|
||||
*/
|
||||
public class Bug437669Test extends AbstractXtextTests {
|
||||
|
||||
@Override
|
||||
public void setUp() throws Exception {
|
||||
super.setUp();
|
||||
with(ImportUriTestLanguageStandaloneSetup.class);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testResolved() {
|
||||
Type type = resolve("Foo");
|
||||
Resource resource = type.eResource();
|
||||
assertTrue(resource.getErrors().toString(), resource.getErrors().isEmpty());
|
||||
|
||||
Type resolvedType = type.getExtends();
|
||||
assertNotNull(resolvedType);
|
||||
assertFalse(resolvedType.eIsProxy());
|
||||
assertEquals("Foo", resolvedType.getName());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testUnresolved() {
|
||||
Type type = resolve("BlaBlaBla");
|
||||
Resource resource = type.eResource();
|
||||
assertEquals(resource.getErrors().toString(), 1, resource.getErrors().size());
|
||||
|
||||
Diagnostic diagnostic = (Diagnostic) resource.getErrors().get(0);
|
||||
assertEquals(-1, diagnostic.getLine());
|
||||
assertEquals(0, diagnostic.getOffset());
|
||||
assertEquals(1, diagnostic.getLength());
|
||||
assertEquals("Couldn't resolve reference to Type 'BlaBlaBla'.", diagnostic.getMessage());
|
||||
}
|
||||
|
||||
private Type resolve(String text) {
|
||||
XtextResourceSet resourceSet = get(XtextResourceSet.class);
|
||||
resourceSet.setClasspathURIContext(getClass().getClassLoader());
|
||||
|
||||
URI uri = URI.createURI("classpath:/org/eclipse/xtext/linking/02.importuritestlanguage");
|
||||
Resource resource = resourceSet.getResource(uri, true);
|
||||
Main main = (Main) resource.getContents().get(0);
|
||||
Type type = main.getTypes().get(0);
|
||||
|
||||
SyntheticLinkingSupport syntheticLinkingSupport = get(SyntheticLinkingSupport.class);
|
||||
syntheticLinkingSupport.createAndSetProxy(type, ImportedURIPackage.Literals.TYPE__EXTENDS, text);
|
||||
|
||||
EcoreUtil.resolveAll(resourceSet);
|
||||
return type;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue