]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.views.swt/src/org/simantics/views/swt/ModelledSupport.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.views.swt / src / org / simantics / views / swt / ModelledSupport.java
index f262ce7e032f487baad65de28914ec4358a0f80d..2147af5a1335fd61eb7b2e8a26eefc4aa4185521 100644 (file)
-/*******************************************************************************\r
- * Copyright (c) 2007, 2012 Association for Decentralized Information Management in\r
- * 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.views.swt;\r
-\r
-import org.eclipse.jface.viewers.ISelection;\r
-import org.simantics.Simantics;\r
-import org.simantics.browsing.ui.swt.widgets.impl.Widget;\r
-import org.simantics.browsing.ui.swt.widgets.impl.WidgetSupportImpl;\r
-import org.simantics.databoard.Bindings;\r
-import org.simantics.db.AsyncReadGraph;\r
-import org.simantics.db.Disposable;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.Session;\r
-import org.simantics.db.VirtualGraph;\r
-import org.simantics.db.WriteGraph;\r
-import org.simantics.db.common.request.UniqueRead;\r
-import org.simantics.db.common.request.WriteRequest;\r
-import org.simantics.db.common.utils.Logger;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.layer0.variable.Variable;\r
-import org.simantics.db.management.ISessionContext;\r
-import org.simantics.db.procedure.AsyncListener;\r
-import org.simantics.db.procedure.Listener;\r
-import org.simantics.scenegraph.ontology.ScenegraphResources;\r
-import org.simantics.ui.selection.AnyResource;\r
-import org.simantics.ui.selection.AnyVariable;\r
-import org.simantics.ui.selection.WorkbenchSelectionElement;\r
-import org.simantics.utils.datastructures.Pair;\r
-import org.simantics.utils.ui.ISelectionUtils;\r
-\r
-/**\r
- * @author Antti Villberg\r
- */\r
-public class ModelledSupport extends WidgetSupportImpl implements Disposable {\r
-\r
-    private final ModelledView view;\r
-    private InputListener listener;\r
-    private boolean disposed = false;\r
-    private Pair<Variable, Resource> previous = null;\r
-\r
-    /**\r
-     * @param modelledConfigurationComposite\r
-     */\r
-    public ModelledSupport(ModelledView view) {\r
-        this.view = view;\r
-    }\r
-\r
-    @Override\r
-    public void dispose() {\r
-       \r
-        disposed = true;\r
-        \r
-        if (listener != null)\r
-            listener.dispose();\r
-        \r
-    }\r
-\r
-    class InputListener implements AsyncListener<Pair<Variable, Resource>> {\r
-\r
-        private boolean disposed = false;\r
-\r
-        @Override\r
-        public boolean isDisposed() {\r
-            return this.disposed || ModelledSupport.this.disposed;\r
-        }\r
-\r
-        public void dispose() {\r
-            this.disposed = true;\r
-        }\r
-\r
-        @Override\r
-        public String toString() {\r
-            return "InputListener@ModelledSupport@" + view; \r
-        }\r
-\r
-        @Override\r
-        public void execute(AsyncReadGraph graph, final Pair<Variable, Resource> result) {\r
-\r
-            if(previous != null && previous.equals(result)) return;\r
-            previous = result;\r
-\r
-            graph.getSession().async(new WriteRequest(Simantics.getSession().getService(VirtualGraph.class)) {\r
-\r
-                @Override\r
-                public void perform(WriteGraph graph) throws DatabaseException {\r
-\r
-                    ScenegraphResources SG = ScenegraphResources.getInstance(graph);\r
-\r
-                    Resource runtime = view.runtime;\r
-\r
-                    if(result.first != null) {\r
-                        String uri = result.first.getURI(graph);\r
-                        graph.claimLiteral(runtime, SG.Runtime_HasVariable, uri, Bindings.STRING);\r
-                    } else {\r
-                        graph.deny(runtime, SG.Runtime_HasVariable);\r
-                    }\r
-\r
-                    if(result.second != null) {\r
-                        graph.deny(runtime, SG.Runtime_HasResource);\r
-                        graph.claim(runtime, SG.Runtime_HasResource, result.second);\r
-                    } else {\r
-                        graph.deny(runtime, SG.Runtime_HasResource);\r
-                    }\r
-\r
-                    view.fireInput();\r
-\r
-                }\r
-\r
-            });\r
-\r
-        }\r
-\r
-        @Override\r
-        public void exception(AsyncReadGraph graph, Throwable throwable) {\r
-            Logger.defaultLogError(throwable);\r
-        }\r
-\r
-    }\r
-\r
-    @SuppressWarnings({ "unchecked", "rawtypes" })\r
-    @Override\r
-    public void fireInput(final ISessionContext context, final Object input) {\r
-\r
-        lastInput = input;\r
-        lastContext = context;\r
-\r
-        if (listener != null)\r
-            listener.dispose();\r
-\r
-        if (context == null)\r
-            return;\r
-\r
-        Session session = context.peekSession();\r
-        if (session == null)\r
-            return;\r
-\r
-        listener = new InputListener();\r
-\r
-        if(view.runtime != null) {\r
-\r
-            session.async(new UniqueRead<Pair<Variable, Resource>>() {\r
-\r
-                private Variable extractVariable(ReadGraph graph, ISelection selection) throws DatabaseException {\r
-\r
-                    WorkbenchSelectionElement single = ISelectionUtils.filterSingleSelection(selection, WorkbenchSelectionElement.class);\r
-                    if(single != null) return single.getContent(new AnyVariable(graph));\r
-                    return ISelectionUtils.filterSingleSelection((ISelection)lastInput, Variable.class);\r
-\r
-                }\r
-\r
-                private Resource extractResource(ReadGraph graph, ISelection selection) throws DatabaseException {\r
-\r
-                    WorkbenchSelectionElement single = ISelectionUtils.filterSingleSelection(selection, WorkbenchSelectionElement.class);\r
-                    if(single != null) return single.getContent(new AnyResource(graph));\r
-                    return ISelectionUtils.filterSingleSelection((ISelection)lastInput, Resource.class);\r
-\r
-                }\r
-\r
-                @Override\r
-                public Pair<Variable, Resource> perform(ReadGraph graph) throws DatabaseException {\r
-\r
-                    Variable resultVariable = null;\r
-                    Resource resultResource = null; \r
-\r
-                    if(lastInput instanceof ISelection) {\r
-                        Variable var = extractVariable(graph, (ISelection)lastInput);\r
-                        if(var != null) resultVariable = var;\r
-                        Resource res = extractResource(graph, (ISelection)lastInput);\r
-                        if(res != null) resultResource = res;\r
-                    } else if (lastInput instanceof Resource) {\r
-                        resultResource = (Resource)lastInput;\r
-                    }\r
-\r
-                    return Pair.make(resultVariable, resultResource);\r
-\r
-                }\r
-\r
-            }, listener);\r
-\r
-        } else {\r
-\r
-            for(Widget widget : widgets) {\r
-                widget.setInput(context, input);\r
-                for (Listener listener : listeners)\r
-                    listener.execute(input);\r
-            }\r
-\r
-        }\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2012 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.views.swt;
+
+import org.eclipse.jface.viewers.ISelection;
+import org.simantics.Simantics;
+import org.simantics.browsing.ui.swt.widgets.impl.Widget;
+import org.simantics.browsing.ui.swt.widgets.impl.WidgetSupportImpl;
+import org.simantics.databoard.Bindings;
+import org.simantics.db.AsyncReadGraph;
+import org.simantics.db.Disposable;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.Session;
+import org.simantics.db.VirtualGraph;
+import org.simantics.db.WriteGraph;
+import org.simantics.db.common.request.UniqueRead;
+import org.simantics.db.common.request.WriteRequest;
+import org.simantics.db.common.utils.Logger;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.layer0.variable.Variable;
+import org.simantics.db.management.ISessionContext;
+import org.simantics.db.procedure.AsyncListener;
+import org.simantics.db.procedure.Listener;
+import org.simantics.scenegraph.ontology.ScenegraphResources;
+import org.simantics.ui.selection.AnyResource;
+import org.simantics.ui.selection.AnyVariable;
+import org.simantics.ui.selection.WorkbenchSelectionElement;
+import org.simantics.utils.datastructures.Pair;
+import org.simantics.utils.ui.ISelectionUtils;
+
+/**
+ * @author Antti Villberg
+ */
+public class ModelledSupport extends WidgetSupportImpl implements Disposable {
+
+    private final ModelledView view;
+    private InputListener listener;
+    private boolean disposed = false;
+    private Pair<Variable, Resource> previous = null;
+
+    /**
+     * @param modelledConfigurationComposite
+     */
+    public ModelledSupport(ModelledView view) {
+        this.view = view;
+    }
+
+    @Override
+    public void dispose() {
+       
+        disposed = true;
+        
+        if (listener != null)
+            listener.dispose();
+        
+    }
+
+    class InputListener implements AsyncListener<Pair<Variable, Resource>> {
+
+        private boolean disposed = false;
+
+        @Override
+        public boolean isDisposed() {
+            return this.disposed || ModelledSupport.this.disposed;
+        }
+
+        public void dispose() {
+            this.disposed = true;
+        }
+
+        @Override
+        public String toString() {
+            return "InputListener@ModelledSupport@" + view; 
+        }
+
+        @Override
+        public void execute(AsyncReadGraph graph, final Pair<Variable, Resource> result) {
+
+            if(previous != null && previous.equals(result)) return;
+            previous = result;
+
+            graph.getSession().async(new WriteRequest(Simantics.getSession().getService(VirtualGraph.class)) {
+
+                @Override
+                public void perform(WriteGraph graph) throws DatabaseException {
+
+                    ScenegraphResources SG = ScenegraphResources.getInstance(graph);
+
+                    Resource runtime = view.runtime;
+
+                    if(result.first != null) {
+                        String uri = result.first.getURI(graph);
+                        graph.claimLiteral(runtime, SG.Runtime_HasVariable, uri, Bindings.STRING);
+                    } else {
+                        graph.deny(runtime, SG.Runtime_HasVariable);
+                    }
+
+                    if(result.second != null) {
+                        graph.deny(runtime, SG.Runtime_HasResource);
+                        graph.claim(runtime, SG.Runtime_HasResource, result.second);
+                    } else {
+                        graph.deny(runtime, SG.Runtime_HasResource);
+                    }
+
+                    view.fireInput();
+
+                }
+
+            });
+
+        }
+
+        @Override
+        public void exception(AsyncReadGraph graph, Throwable throwable) {
+            Logger.defaultLogError(throwable);
+        }
+
+    }
+
+    @SuppressWarnings({ "unchecked", "rawtypes" })
+    @Override
+    public void fireInput(final ISessionContext context, final Object input) {
+
+        lastInput = input;
+        lastContext = context;
+
+        if (listener != null)
+            listener.dispose();
+
+        if (context == null)
+            return;
+
+        Session session = context.peekSession();
+        if (session == null)
+            return;
+
+        listener = new InputListener();
+
+        if(view.runtime != null) {
+
+            session.async(new UniqueRead<Pair<Variable, Resource>>() {
+
+                private Variable extractVariable(ReadGraph graph, ISelection selection) throws DatabaseException {
+
+                    WorkbenchSelectionElement single = ISelectionUtils.filterSingleSelection(selection, WorkbenchSelectionElement.class);
+                    if(single != null) return single.getContent(new AnyVariable(graph));
+                    return ISelectionUtils.filterSingleSelection((ISelection)lastInput, Variable.class);
+
+                }
+
+                private Resource extractResource(ReadGraph graph, ISelection selection) throws DatabaseException {
+
+                    WorkbenchSelectionElement single = ISelectionUtils.filterSingleSelection(selection, WorkbenchSelectionElement.class);
+                    if(single != null) return single.getContent(new AnyResource(graph));
+                    return ISelectionUtils.filterSingleSelection((ISelection)lastInput, Resource.class);
+
+                }
+
+                @Override
+                public Pair<Variable, Resource> perform(ReadGraph graph) throws DatabaseException {
+
+                    Variable resultVariable = null;
+                    Resource resultResource = null; 
+
+                    if(lastInput instanceof ISelection) {
+                        Variable var = extractVariable(graph, (ISelection)lastInput);
+                        if(var != null) resultVariable = var;
+                        Resource res = extractResource(graph, (ISelection)lastInput);
+                        if(res != null) resultResource = res;
+                    } else if (lastInput instanceof Resource) {
+                        resultResource = (Resource)lastInput;
+                    }
+
+                    return Pair.make(resultVariable, resultResource);
+
+                }
+
+            }, listener);
+
+        } else {
+
+            for(Widget widget : widgets) {
+                widget.setInput(context, input);
+                for (Listener listener : listeners)
+                    listener.execute(input);
+            }
+
+        }
+    }
+
+}