]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.diagram/src/org/simantics/diagram/flag/FlagPropertyTester.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.diagram / src / org / simantics / diagram / flag / FlagPropertyTester.java
index 67b5808fb7f97eebb042387e9bb3bbfb46ec7948..ade5987ab85398b502b76adf215808858131e657 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.flag;\r
-\r
-import org.eclipse.core.expressions.PropertyTester;\r
-import org.simantics.DatabaseJob;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.Session;\r
-import org.simantics.db.common.request.UniqueRead;\r
-import org.simantics.db.common.utils.RequestUtil;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.ui.SimanticsUI;\r
-import org.simantics.ui.utils.ResourceAdaptionUtils;\r
-\r
-/**\r
- * An Eclipse property tester for flag elements.\r
- * \r
- * @author Tuukka Lehtonen\r
- */\r
-public class FlagPropertyTester extends PropertyTester {\r
-\r
-    /**\r
-     * Tests if the received flag resource is connected to a counterpart.\r
-     * Default expected value is true.\r
-     */\r
-    private static final String CONNECTED = "connected";\r
-\r
-    /**\r
-     * Tests if the received flag resource is connected to a counterpart.\r
-     * Default expected value is true.\r
-     */\r
-    private static final String LOCALLY_CONNECTED = "locallyConnected";\r
-\r
-    /**\r
-     * Tests if the received flag resource is marked as an external flag.\r
-     */\r
-    private static final String EXTERNAL = "external";\r
-\r
-    /**\r
-     * Tests if the received flag resource is a merged flag with more than 1\r
-     * counterpart.\r
-     */\r
-    private static final String MERGED = "merged";\r
-\r
-    @Override\r
-    public boolean test(Object receiver, final String property, final Object[] args, final Object expectedValue) {\r
-        final Resource resource = ResourceAdaptionUtils.toSingleResource(receiver);\r
-        if (resource == null)\r
-            return false;\r
-\r
-        Session session = SimanticsUI.peekSession();\r
-        if (session == null)\r
-            return false;\r
-\r
-        if (DatabaseJob.inProgress())\r
-            return false;\r
-\r
-        try {\r
-            return RequestUtil.trySyncRequest(\r
-                    session,\r
-                    SimanticsUI.UI_THREAD_REQUEST_START_TIMEOUT,\r
-                    SimanticsUI.UI_THREAD_REQUEST_EXECUTION_TIMEOUT,\r
-                    false,\r
-                    new UniqueRead<Boolean>() {\r
-                @Override\r
-                public Boolean perform(ReadGraph g) throws DatabaseException {\r
-                    return Boolean.valueOf(doTest(g, resource, property, args, expectedValue));\r
-                }\r
-            });\r
-        } catch (DatabaseException | InterruptedException e) {\r
-            // Purposefully not logging these exceptions, there might be way too\r
-            // many even under normal circumstances.\r
-            // TODO: add debug tracing options controlling the printing of these exceptions\r
-            return false;\r
-        }\r
-    }\r
-\r
-    private boolean doTest(ReadGraph graph, Resource resource, String property, Object[] args, Object expectedValue) throws DatabaseException {\r
-        if (EXTERNAL.equals(property)) {\r
-            boolean expected = parseBoolean(expectedValue, true);\r
-            boolean ext = FlagUtil.isExternal(graph, resource);\r
-            return ext ? expected : expected;\r
-        } else if (CONNECTED.equals(property)) {\r
-            boolean expected = parseBoolean(expectedValue, true);\r
-            boolean isConnected = \r
-                FlagUtil.countCounterparts(graph, resource) > 0 ||\r
-                FlagUtil.isLifted(graph, resource);\r
-            return isConnected == expected;\r
-        } else if (LOCALLY_CONNECTED.equals(property)) {\r
-            boolean expected = parseBoolean(expectedValue, true);\r
-            boolean isLocallyConnected = \r
-                FlagUtil.isJoinedInSingleDiagram(graph, resource);\r
-            return isLocallyConnected == expected;\r
-        } else if (MERGED.equals(property)) {\r
-            boolean expected = parseBoolean(expectedValue, true);\r
-            boolean isMerged = FlagUtil.countCounterparts(graph, resource) > 1;\r
-            return isMerged == expected;\r
-        }\r
-        return false;\r
-    }\r
-\r
-    boolean parseBoolean(Object value, boolean defaultValue) {\r
-        if (value instanceof Boolean)\r
-            return (Boolean) value;\r
-        if (value instanceof String)\r
-            return Boolean.parseBoolean((String) value);\r
-        return defaultValue;\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.flag;
+
+import org.eclipse.core.expressions.PropertyTester;
+import org.simantics.DatabaseJob;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.Session;
+import org.simantics.db.common.request.UniqueRead;
+import org.simantics.db.common.utils.RequestUtil;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.ui.SimanticsUI;
+import org.simantics.ui.utils.ResourceAdaptionUtils;
+
+/**
+ * An Eclipse property tester for flag elements.
+ * 
+ * @author Tuukka Lehtonen
+ */
+public class FlagPropertyTester extends PropertyTester {
+
+    /**
+     * Tests if the received flag resource is connected to a counterpart.
+     * Default expected value is true.
+     */
+    private static final String CONNECTED = "connected";
+
+    /**
+     * Tests if the received flag resource is connected to a counterpart.
+     * Default expected value is true.
+     */
+    private static final String LOCALLY_CONNECTED = "locallyConnected";
+
+    /**
+     * Tests if the received flag resource is marked as an external flag.
+     */
+    private static final String EXTERNAL = "external";
+
+    /**
+     * Tests if the received flag resource is a merged flag with more than 1
+     * counterpart.
+     */
+    private static final String MERGED = "merged";
+
+    @Override
+    public boolean test(Object receiver, final String property, final Object[] args, final Object expectedValue) {
+        final Resource resource = ResourceAdaptionUtils.toSingleResource(receiver);
+        if (resource == null)
+            return false;
+
+        Session session = SimanticsUI.peekSession();
+        if (session == null)
+            return false;
+
+        if (DatabaseJob.inProgress())
+            return false;
+
+        try {
+            return RequestUtil.trySyncRequest(
+                    session,
+                    SimanticsUI.UI_THREAD_REQUEST_START_TIMEOUT,
+                    SimanticsUI.UI_THREAD_REQUEST_EXECUTION_TIMEOUT,
+                    false,
+                    new UniqueRead<Boolean>() {
+                @Override
+                public Boolean perform(ReadGraph g) throws DatabaseException {
+                    return Boolean.valueOf(doTest(g, resource, property, args, expectedValue));
+                }
+            });
+        } catch (DatabaseException | InterruptedException e) {
+            // Purposefully not logging these exceptions, there might be way too
+            // many even under normal circumstances.
+            // TODO: add debug tracing options controlling the printing of these exceptions
+            return false;
+        }
+    }
+
+    private boolean doTest(ReadGraph graph, Resource resource, String property, Object[] args, Object expectedValue) throws DatabaseException {
+        if (EXTERNAL.equals(property)) {
+            boolean expected = parseBoolean(expectedValue, true);
+            boolean ext = FlagUtil.isExternal(graph, resource);
+            return ext ? expected : expected;
+        } else if (CONNECTED.equals(property)) {
+            boolean expected = parseBoolean(expectedValue, true);
+            boolean isConnected = 
+                FlagUtil.countCounterparts(graph, resource) > 0 ||
+                FlagUtil.isLifted(graph, resource);
+            return isConnected == expected;
+        } else if (LOCALLY_CONNECTED.equals(property)) {
+            boolean expected = parseBoolean(expectedValue, true);
+            boolean isLocallyConnected = 
+                FlagUtil.isJoinedInSingleDiagram(graph, resource);
+            return isLocallyConnected == expected;
+        } else if (MERGED.equals(property)) {
+            boolean expected = parseBoolean(expectedValue, true);
+            boolean isMerged = FlagUtil.countCounterparts(graph, resource) > 1;
+            return isMerged == expected;
+        }
+        return false;
+    }
+
+    boolean parseBoolean(Object value, boolean defaultValue) {
+        if (value instanceof Boolean)
+            return (Boolean) value;
+        if (value instanceof String)
+            return Boolean.parseBoolean((String) value);
+        return defaultValue;
+    }
+
+}