]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.common/src/org/simantics/db/common/request/SingleObjectWithType.java
Ignore NoSingleResultException in DependenciesRelation
[simantics/platform.git] / bundles / org.simantics.db.common / src / org / simantics / db / common / request / SingleObjectWithType.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.db.common.request;
13
14 import org.simantics.db.ReadGraph;
15 import org.simantics.db.Resource;
16 import org.simantics.db.common.utils.NameUtils;
17 import org.simantics.db.exception.DatabaseException;
18 import org.simantics.db.exception.NoSingleResultException;
19
20 /**
21  * @author Tuukka Lehtonen
22  */
23 public final class SingleObjectWithType extends ResourceRead3<Resource> {
24
25     public SingleObjectWithType(Resource resource, Resource predicate, Resource type) {
26         super(resource, predicate, type);
27     }
28
29     @Override
30     public Resource perform(ReadGraph graph) throws DatabaseException {
31         Resource result = null;
32         int resultCount = 0;
33         for (Resource object : graph.getObjects(resource, resource2)) {
34             if (graph.isInstanceOf(object, resource3)) {
35                 if (result == null) {
36                     result = object;
37                 } else {
38                     // okay, too many results but lets calculate for debug
39                     resultCount++;
40                 }
41             }
42         }
43         
44         if (resultCount != 1) {
45             String reason = resultCount == 0 ? "No objects for relation " : "Multiple objects for relation ";
46             throw new NoSingleResultException(reason
47                     + NameUtils.getSafeName(graph, resource2) + " with type "
48                     + NameUtils.getSafeName(graph, resource3) + " at "
49                     + NameUtils.getSafeName(graph, resource), resultCount);
50         }
51
52         return result;
53     }
54
55 }