X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.db.impl%2Fsrc%2Forg%2Fsimantics%2Fdb%2Fimpl%2Fquery%2FURIToResource.java;h=918f882f179c2acd4ba8b79677f473abacf67deb;hb=4af843556485409e1c018e58eb2409f116e4d40c;hp=794bcc8edc3258fdee965278321c41f8e3789156;hpb=8744cc98e176b7f74f166fde5df76c84089a63b9;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/URIToResource.java b/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/URIToResource.java index 794bcc8ed..918f882f1 100644 --- a/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/URIToResource.java +++ b/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/URIToResource.java @@ -49,17 +49,46 @@ public class URIToResource extends StringQuery> { final String[] parts = URIStringUtils.splitURI(id); if (parts != null) { - Integer parentId = QueryCache.resultURIToResource(graph, parts[0], entry, null); - ObjectResourceIdMap map = QueryCache.resultChildMap(graph, parentId, entry, null); - if(map == null) { - procedure.execute(graph, 0); - if(entry != null) entry.addOrSet(graph, graph.processor, 0); - } else { - int result = map.getId(URIStringUtils.unescape(parts[1])); - if(entry != null) entry.addOrSet(graph, graph.processor, result); - procedure.execute(graph, result); - } + //Integer parentId = QueryCache.resultURIToResource(graph, parts[0], entry, null); + QueryCache.runnerURIToResource(graph, parts[0], entry, null, new InternalProcedure() { + + @Override + public void execute(ReadGraphImpl graph, Integer parentId) throws DatabaseException { + + ObjectResourceIdMap map = QueryCache.resultChildMap(graph, parentId, entry, null); + assert(map != null); +// if(map == null) { +// throw new DatabaseException("Internal Error, contact application support."); +// if(entry != null) entry.except(e); +// procedure.exception(graph, e); +//// procedure.execute(graph, 0); +//// if(entry != null) entry.addOrSet(graph, graph.processor, 0); +// } else { + int result = map.getId(URIStringUtils.unescape(parts[1])); + if(result == 0) { + ResourceNotFoundException e = new ResourceNotFoundException("No resource for URI: " + id); + if(entry != null) entry.except(e); + procedure.exception(graph, e); + } else { + if(entry != null) entry.addOrSet(graph, graph.processor, result); + procedure.execute(graph, result); + } +// } + + // TODO Auto-generated method stub + + } + + @Override + public void exception(ReadGraphImpl graph, Throwable throwable) throws DatabaseException { + if(entry != null) entry.except(throwable); + procedure.exception(graph, throwable); + } + + }); + + } else { ResourceNotFoundException e = new ResourceNotFoundException("No resource for URI: " + id); @@ -93,7 +122,7 @@ public class URIToResource extends StringQuery> { assert(isReady()); - if(handleException(graph, procedure)) return (Throwable)statusOrException; + if(handleException(graph, procedure)) return (Throwable)getResult(); Integer result = (Integer)getResult(); procedure.execute(graph, result);