]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling/src/org/simantics/modeling/ProceduralSubstructureMapRequest.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.modeling / src / org / simantics / modeling / ProceduralSubstructureMapRequest.java
diff --git a/bundles/org.simantics.modeling/src/org/simantics/modeling/ProceduralSubstructureMapRequest.java b/bundles/org.simantics.modeling/src/org/simantics/modeling/ProceduralSubstructureMapRequest.java
new file mode 100644 (file)
index 0000000..4a87bc2
--- /dev/null
@@ -0,0 +1,40 @@
+package org.simantics.modeling;\r
+\r
+import gnu.trove.map.hash.THashMap;\r
+\r
+import org.simantics.db.ReadGraph;\r
+import org.simantics.db.exception.DatabaseException;\r
+import org.simantics.db.layer0.request.PropertyInfo;\r
+import org.simantics.db.layer0.request.PropertyInfoRequest;\r
+import org.simantics.db.layer0.request.VariableRead;\r
+import org.simantics.db.layer0.variable.Variable;\r
+import org.simantics.scl.compiler.types.Type;\r
+import org.simantics.utils.datastructures.Pair;\r
+\r
+public class ProceduralSubstructureMapRequest extends VariableRead<THashMap<String, Pair<String,Type>>>{\r
+\r
+    public ProceduralSubstructureMapRequest(Variable composite) {\r
+        super(composite);\r
+    }\r
+\r
+    @Override\r
+    public THashMap<String, Pair<String,Type>> perform(ReadGraph graph) throws DatabaseException {\r
+        THashMap<String, Pair<String,Type>> propertyMap = new THashMap<String, Pair<String,Type>>();\r
+        for(Variable child : variable.getChildren(graph)) {\r
+               for(Variable property : child.getProperties(graph)) {\r
+                   PropertyInfo propertyInfo = graph.syncRequest(new PropertyInfoRequest(property.getPredicateResource(graph)));\r
+                propertyMap.put(child.getName(graph) + "." + propertyInfo.name,\r
+                        Pair.make("/" + child.getName(graph) + "#" + propertyInfo.name,\r
+                                SCLTypeUtils.getType(propertyInfo)));\r
+               }\r
+        }\r
+       for(Variable property : variable.getProperties(graph)) {\r
+           PropertyInfo propertyInfo = graph.syncRequest(new PropertyInfoRequest(property.getPredicateResource(graph)));\r
+            propertyMap.put(propertyInfo.name,\r
+                    Pair.make("#" + propertyInfo.name,\r
+                            SCLTypeUtils.getType(propertyInfo)));\r
+       }\r
+        return propertyMap;\r
+    }\r
+\r
+}\r