]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.diagram/src/org/simantics/diagram/adapter/ConnectionRequest.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / bundles / org.simantics.diagram / src / org / simantics / diagram / adapter / ConnectionRequest.java
index 2529e43d125f5a025743281e5be3f971c3491431..cd9080f1219b34fd36a6a604d4387e50fa35511a 100644 (file)
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.diagram.adapter;\r
-\r
-import org.simantics.db.AsyncReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.common.primitiverequest.Adapter;\r
-import org.simantics.db.common.procedure.adapter.TransientCacheAsyncListener;\r
-import org.simantics.db.procedure.AsyncProcedure;\r
-import org.simantics.db.procedure.Listener;\r
-import org.simantics.diagram.synchronization.ErrorHandler;\r
-import org.simantics.g2d.canvas.ICanvasContext;\r
-import org.simantics.g2d.diagram.IDiagram;\r
-import org.simantics.g2d.element.ElementClass;\r
-import org.simantics.g2d.element.IElement;\r
-\r
-/**\r
- * @author Antti Villberg\r
- */\r
-public class ConnectionRequest extends BaseRequest2<Resource, IElement> {\r
-\r
-    final IDiagram diagram;\r
-    final Listener<IElement> loadListener;\r
-    final ErrorHandler errorHandler;\r
-\r
-    public ConnectionRequest(ICanvasContext canvas, IDiagram diagram, Resource resource, ErrorHandler errorHandler, Listener<IElement> loadListener) {\r
-        super(canvas, resource);\r
-        this.diagram = diagram;\r
-        this.errorHandler = errorHandler;\r
-        this.loadListener = loadListener;\r
-    }\r
-\r
-    @Override\r
-    public void perform(AsyncReadGraph graph, final AsyncProcedure<IElement> procedure) {\r
-\r
-        graph.forHasStatement(data, new AsyncProcedure<Boolean>() {\r
-\r
-            @Override\r
-            public void exception(AsyncReadGraph graph, Throwable throwable) {\r
-                procedure.exception(graph, throwable);\r
-            }\r
-\r
-            @Override\r
-            public void execute(AsyncReadGraph graph, Boolean result) {\r
-\r
-                if (!result) {\r
-                    procedure.execute(graph, null);\r
-                    return;\r
-                }\r
-\r
-                graph.asyncRequest(new Adapter<ElementFactory>(data, ElementFactory.class), new TransientCacheAsyncListener<ElementFactory>() {\r
-\r
-                    @Override\r
-                    public void exception(AsyncReadGraph graph, Throwable throwable) {\r
-                        errorHandler.error("Unexpected ElementFactory adaption failure", throwable);\r
-                        procedure.execute(graph, null);\r
-                    }\r
-\r
-                    @Override\r
-                    public void execute(AsyncReadGraph graph, final ElementFactory factory) {\r
-\r
-                        graph.asyncRequest(new GetElementClassRequest(factory, data, canvas, diagram), new TransientCacheAsyncListener<ElementClass>() {\r
-\r
-                            @Override\r
-                            public void exception(AsyncReadGraph graph, Throwable throwable) {\r
-                                errorHandler.error("Unexpected ElementClass creation failure", throwable);\r
-                                procedure.execute(graph, null);\r
-                            }\r
-\r
-                            @Override\r
-                            public void execute(AsyncReadGraph graph, final ElementClass ec) {\r
-\r
-                                graph.asyncRequest(new SpawnRequest(canvas, ec, data), new TransientCacheAsyncListener<IElement>() {\r
-\r
-                                    @Override\r
-                                    public void exception(AsyncReadGraph graph, Throwable throwable) {\r
-                                        errorHandler.error("Unexpected SpawnRequest failure", throwable);\r
-                                        procedure.execute(graph, null);\r
-                                    }\r
-\r
-                                    @Override\r
-                                    public void execute(AsyncReadGraph graph, IElement element) {\r
-\r
-                                        procedure.execute(graph, element);\r
-\r
-                                        if (loadListener != null) {\r
-                                            //System.out.println("LoadRequest[" + (loadCounter++) + "] for " + data + ": " + element);\r
-                                            graph.asyncRequest(new LoadRequest(canvas, diagram, factory, ec, data), loadListener);\r
-                                        } else {\r
-                                            //System.out.println("Spawn[" + (spawnCounter++) + "] for " + data + ": " + element);\r
-                                            factory.load(graph, canvas, diagram, data, element, new AsyncProcedure<IElement>() {\r
-                                                @Override\r
-                                                public void exception(AsyncReadGraph graph, Throwable throwable) {\r
-                                                    errorHandler.error("Unexpected ElementFactory.load failure", throwable);\r
-                                                }\r
-                                                @Override\r
-                                                public void execute(AsyncReadGraph graph, IElement result) {\r
-                                                    // Loading complete, don't care.\r
-                                                }\r
-                                            });\r
-                                        }\r
-                                    }\r
-                                });\r
-                            }\r
-                        });\r
-                    }\r
-                });\r
-            }\r
-        });\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * 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
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.diagram.adapter;
+
+import org.simantics.db.AsyncReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.common.primitiverequest.Adapter;
+import org.simantics.db.common.procedure.adapter.TransientCacheAsyncListener;
+import org.simantics.db.procedure.AsyncProcedure;
+import org.simantics.db.procedure.Listener;
+import org.simantics.diagram.synchronization.ErrorHandler;
+import org.simantics.g2d.canvas.ICanvasContext;
+import org.simantics.g2d.diagram.IDiagram;
+import org.simantics.g2d.element.ElementClass;
+import org.simantics.g2d.element.IElement;
+
+/**
+ * @author Antti Villberg
+ */
+public class ConnectionRequest extends BaseRequest2<Resource, IElement> {
+
+    final IDiagram diagram;
+    final Listener<IElement> loadListener;
+    final ErrorHandler errorHandler;
+
+    public ConnectionRequest(ICanvasContext canvas, IDiagram diagram, Resource resource, ErrorHandler errorHandler, Listener<IElement> loadListener) {
+        super(canvas, resource);
+        this.diagram = diagram;
+        this.errorHandler = errorHandler;
+        this.loadListener = loadListener;
+    }
+
+    @Override
+    public void perform(AsyncReadGraph graph, final AsyncProcedure<IElement> procedure) {
+
+        graph.forHasStatement(data, new AsyncProcedure<Boolean>() {
+
+            @Override
+            public void exception(AsyncReadGraph graph, Throwable throwable) {
+                procedure.exception(graph, throwable);
+            }
+
+            @Override
+            public void execute(AsyncReadGraph graph, Boolean result) {
+
+                if (!result) {
+                    procedure.execute(graph, null);
+                    return;
+                }
+
+                graph.asyncRequest(new Adapter<ElementFactory>(data, ElementFactory.class), new TransientCacheAsyncListener<ElementFactory>() {
+
+                    @Override
+                    public void exception(AsyncReadGraph graph, Throwable throwable) {
+                        errorHandler.error("Unexpected ElementFactory adaption failure", throwable);
+                        procedure.execute(graph, null);
+                    }
+
+                    @Override
+                    public void execute(AsyncReadGraph graph, final ElementFactory factory) {
+
+                        graph.asyncRequest(new GetElementClassRequest(factory, data, canvas, diagram), new TransientCacheAsyncListener<ElementClass>() {
+
+                            @Override
+                            public void exception(AsyncReadGraph graph, Throwable throwable) {
+                                errorHandler.error("Unexpected ElementClass creation failure", throwable);
+                                procedure.execute(graph, null);
+                            }
+
+                            @Override
+                            public void execute(AsyncReadGraph graph, final ElementClass ec) {
+
+                                graph.asyncRequest(new SpawnRequest(canvas, ec, data), new TransientCacheAsyncListener<IElement>() {
+
+                                    @Override
+                                    public void exception(AsyncReadGraph graph, Throwable throwable) {
+                                        errorHandler.error("Unexpected SpawnRequest failure", throwable);
+                                        procedure.execute(graph, null);
+                                    }
+
+                                    @Override
+                                    public void execute(AsyncReadGraph graph, IElement element) {
+
+                                        procedure.execute(graph, element);
+
+                                        if (loadListener != null) {
+                                            //System.out.println("LoadRequest[" + (loadCounter++) + "] for " + data + ": " + element);
+                                            graph.asyncRequest(new LoadRequest(canvas, diagram, factory, ec, data), loadListener);
+                                        } else {
+                                            //System.out.println("Spawn[" + (spawnCounter++) + "] for " + data + ": " + element);
+                                            factory.load(graph, canvas, diagram, data, element, new AsyncProcedure<IElement>() {
+                                                @Override
+                                                public void exception(AsyncReadGraph graph, Throwable throwable) {
+                                                    errorHandler.error("Unexpected ElementFactory.load failure", throwable);
+                                                }
+                                                @Override
+                                                public void execute(AsyncReadGraph graph, IElement result) {
+                                                    // Loading complete, don't care.
+                                                }
+                                            });
+                                        }
+                                    }
+                                });
+                            }
+                        });
+                    }
+                });
+            }
+        });
+    }
+
+}