X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.structural2%2Fsrc%2Forg%2Fsimantics%2Fstructural2%2FStructuralRVIResolver.java;h=ec6b583617fcdd6c42af134845d829838944980a;hp=8cf61b3e0ade8e4dc74ed2e44ca334d655a6ee0c;hb=71bdfa937786c8b8bc9f984c819ae9f9df09359b;hpb=16ce2fab4f52fcabe55a07d41c691899ca95c4ec diff --git a/bundles/org.simantics.structural2/src/org/simantics/structural2/StructuralRVIResolver.java b/bundles/org.simantics.structural2/src/org/simantics/structural2/StructuralRVIResolver.java index 8cf61b3e0..ec6b58361 100644 --- a/bundles/org.simantics.structural2/src/org/simantics/structural2/StructuralRVIResolver.java +++ b/bundles/org.simantics.structural2/src/org/simantics/structural2/StructuralRVIResolver.java @@ -8,6 +8,7 @@ import org.simantics.databoard.binding.Binding; import org.simantics.datatypes.literal.GUID; import org.simantics.db.ReadGraph; import org.simantics.db.Resource; +import org.simantics.db.common.utils.NameUtils; import org.simantics.db.exception.DatabaseException; import org.simantics.db.layer0.adapter.Instances; import org.simantics.db.layer0.exception.MissingVariableException; @@ -21,8 +22,11 @@ import org.simantics.db.layer0.variable.Variables; import org.simantics.layer0.Layer0; import org.simantics.simulation.ontology.SimulationResource; import org.simantics.structural.stubs.StructuralResource2; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; public class StructuralRVIResolver extends StandardRVIResolver { + private static final Logger LOGGER = LoggerFactory.getLogger(StructuralRVIResolver.class); protected boolean isRVIBase(ReadGraph graph, Variable variable) throws DatabaseException { if (Variables.isContext(graph, variable)) return true; @@ -118,7 +122,21 @@ public class StructuralRVIResolver extends StandardRVIResolver { Instances instances = graph.adapt(Layer0.getInstance(graph).Entity, Instances.class); GUID guid = new GUID(part.mostSignificant, part.leastSignificant); Collection queryResult = instances.find(graph, indexRoot, "GUID:"+guid.indexString()); - if(queryResult.size() != 1) return null; + if(queryResult.size() != 1) { + if(queryResult.size() > 1) { + StringBuilder b = new StringBuilder(); + boolean first = true; + for(Resource r : queryResult) { + if(first) + first = false; + else + b.append(", "); + b.append(NameUtils.getURIOrSafeNameInternal(graph, r)); + } + LOGGER.error("Found {} resources with the same GUID {}: {}.", queryResult.size(), guid, b); + } + return null; + } return getRVIPath(graph, variable, queryResult.iterator().next()); } @@ -127,16 +145,20 @@ public class StructuralRVIResolver extends StandardRVIResolver { @Override protected Variable resolveChild(ReadGraph graph, Variable variable, Resource resource) throws DatabaseException { Collection path = getRVIPath(graph, variable, resource); - if(path == null) throw new MissingVariableException("Didn't find a variable related to " + resource + ".", resource); - for(Resource r : path) variable = variable.browse(graph, r); + if (path == null) + throw new MissingVariableException("Didn't find a variable related to " + resource + ".", resource); + for (Resource r : path) + variable = variable.browse(graph, r); return variable; } - + @Override protected Variable resolveChild(ReadGraph graph, Variable variable, GuidRVIPart part) throws DatabaseException { Collection path = getRVIPath(graph, variable, part); - if(path == null) throw new MissingVariableException("Didn't find a variable related to " + part + "."); - for(Resource r : path) variable = variable.browse(graph, r); + if (path == null) + throw new MissingVariableException("Didn't find a variable related to " + part + ".", variable.getPossibleRepresents(graph)); + for (Resource r : path) + variable = variable.browse(graph, r); return variable; }