]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.common/src/org/simantics/db/common/request/TypedParent.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / bundles / org.simantics.db.common / src / org / simantics / db / common / request / TypedParent.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.AsyncReadGraph;
15 import org.simantics.db.Resource;
16 import org.simantics.db.exception.DatabaseException;
17 import org.simantics.db.procedure.AsyncProcedure;
18 import org.simantics.layer0.Layer0;
19
20 public class TypedParent extends ResourceAsyncRead2<Resource> {
21
22         public TypedParent(Resource resource, Resource type) {
23                 super(resource, type);
24         }
25
26         @Override
27         public void perform(AsyncReadGraph graph, final AsyncProcedure<Resource> procedure) {
28
29             final Layer0 l0 = graph.getService(Layer0.class);
30
31                 graph.forIsInstanceOf(resource, resource2, new AsyncProcedure<Boolean>() {
32
33                         @Override
34                         public void execute(AsyncReadGraph graph, Boolean isInstance) {
35                                 if(isInstance) {
36                                         procedure.execute(graph, resource);
37                                 } else {
38                                         graph.forPossibleObject(resource, l0.PartOf, new AsyncProcedure<Resource>() {
39
40                                                 @Override
41                                                 public void execute(AsyncReadGraph graph, final Resource parent) {
42
43                                                         if(parent == null) {
44                                                                 procedure.exception(graph, new DatabaseException("Typed parent was not found."));
45                                                         } else {
46                                                                 graph.asyncRequest(new TypedParent(parent, resource2), procedure);
47                                                         }
48                                                         
49                                                 }
50
51                                                 @Override
52                                                 public void exception(AsyncReadGraph graph, Throwable throwable) {
53                                                         procedure.exception(graph, throwable);
54                                                 }
55                                                 
56                                         });
57                                 }
58                         }
59
60                         @Override
61                         public void exception(AsyncReadGraph graph, Throwable throwable) {
62                                 procedure.exception(graph, throwable);
63                         }
64                 });
65                 
66                 
67         }
68
69 }