X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.diagram%2Fsrc%2Forg%2Fsimantics%2Fdiagram%2Fsynchronization%2Fgraph%2Flayer%2FGraphLayerUtil.java;h=6a4ecd667bc1190f7576d64b3c340da3fe86f18b;hp=e3cf13527469ff7092f128d95f184dca5bd02122;hb=d11fef0101853949671492de5b49ea94892ced78;hpb=969bd23cab98a79ca9101af33334000879fb60c5 diff --git a/bundles/org.simantics.diagram/src/org/simantics/diagram/synchronization/graph/layer/GraphLayerUtil.java b/bundles/org.simantics.diagram/src/org/simantics/diagram/synchronization/graph/layer/GraphLayerUtil.java index e3cf13527..6a4ecd667 100644 --- a/bundles/org.simantics.diagram/src/org/simantics/diagram/synchronization/graph/layer/GraphLayerUtil.java +++ b/bundles/org.simantics.diagram/src/org/simantics/diagram/synchronization/graph/layer/GraphLayerUtil.java @@ -1,74 +1,94 @@ -/******************************************************************************* - * 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.synchronization.graph.layer; - -import org.simantics.db.Resource; -import org.simantics.db.WriteGraph; -import org.simantics.db.exception.DatabaseException; -import org.simantics.db.exception.ManyObjectsForFunctionalRelationException; -import org.simantics.db.exception.ServiceException; -import org.simantics.diagram.stubs.DiagramResource; -import org.simantics.layer0.Layer0; - -/** - * Utilities for manipulating diagram layers in the graph. - * - * @author Tuukka Lehtonen - */ -public final class GraphLayerUtil { - - WriteGraph graph; - Layer0 l0; - DiagramResource dia; - - public GraphLayerUtil(WriteGraph graph) { - this.graph = graph; - this.l0 = Layer0.getInstance(graph); - this.dia = DiagramResource.getInstance(graph); - } - - public GraphLayer createLayer(String layerName, boolean active) throws DatabaseException { - Resource layer = graph.newResource(); - graph.claim(layer, l0.InstanceOf, null, dia.Layer); - - // Assign tagging relations - Resource visibleTag = newTag(dia.IsVisible); - Resource focusableTag = newTag(dia.IsFocusable); - graph.claim(layer, dia.HasVisibleTag, visibleTag); - graph.claim(layer, dia.HasFocusableTag, focusableTag); - - // Assign shared name property for all, the layer and the tags - Resource name = graph.newResource(); - graph.claim(name, l0.InstanceOf, null, l0.String); - graph.claimValue(name, layerName); - - graph.claim(layer, l0.HasName, name); - graph.claim(visibleTag, l0.HasName, name); - graph.claim(focusableTag, l0.HasName, name); - - setLayerActive(layer, active); - - return new GraphLayer(layerName, layer, visibleTag, focusableTag); - } - - public Resource newTag(Resource baseTag) throws DatabaseException { - Resource tag = graph.newResource(); - graph.claim(tag, l0.SubrelationOf, baseTag); - graph.claim(tag, l0.InverseOf, tag); - return tag; - } - - public void setLayerActive(Resource layer, boolean active) throws ManyObjectsForFunctionalRelationException, ServiceException { - graph.claimLiteral(layer, dia.IsActive, Boolean.valueOf(active)); - } - -} +/******************************************************************************* + * 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.synchronization.graph.layer; + +import java.util.HashMap; +import java.util.Map; + +import org.simantics.db.ReadGraph; +import org.simantics.db.Resource; +import org.simantics.db.WriteGraph; +import org.simantics.db.exception.DatabaseException; +import org.simantics.db.exception.ManyObjectsForFunctionalRelationException; +import org.simantics.db.exception.ServiceException; +import org.simantics.diagram.stubs.DiagramResource; +import org.simantics.layer0.Layer0; + +/** + * Utilities for manipulating diagram layers in the graph. + * + * @author Tuukka Lehtonen + */ +public final class GraphLayerUtil implements IGraphLayerUtil { + + public GraphLayerUtil(Resource layer) { + } + + @Override + public GraphLayer createLayer(WriteGraph graph, String layerName, boolean active) throws DatabaseException { + Layer0 L0 = Layer0.getInstance(graph); + DiagramResource DIA = DiagramResource.getInstance(graph); + + Resource layer = graph.newResource(); + graph.claim(layer, L0.InstanceOf, null, DIA.Layer); + + // Assign tagging relations + Resource visibleTag = newTag(graph, L0, DIA.IsVisible); + Resource focusableTag = newTag(graph, L0, DIA.IsFocusable); + graph.claim(layer, DIA.HasVisibleTag, visibleTag); + graph.claim(layer, DIA.HasFocusableTag, focusableTag); + + // Assign shared name property for all, the layer and the tags + Resource name = graph.newResource(); + graph.claim(name, L0.InstanceOf, null, L0.String); + graph.claimValue(name, layerName); + + graph.claim(layer, L0.HasName, name); + graph.claim(visibleTag, L0.HasName, name); + graph.claim(focusableTag, L0.HasName, name); + + setLayerActive(graph, DIA, layer, active); + + Map properties = new HashMap<>(); + properties.put(GraphLayer.PROP_FOCUSABLE, focusableTag); + properties.put(GraphLayer.PROP_VISIBLE, visibleTag); + + return new GraphLayer(layerName, layer, properties); + } + + public static Resource newTag(WriteGraph graph, Layer0 L0, Resource baseTag) throws DatabaseException { + Resource tag = graph.newResource(); + graph.claim(tag, L0.SubrelationOf, baseTag); + graph.claim(tag, L0.InverseOf, tag); + return tag; + } + + public static void setLayerActive(WriteGraph graph, DiagramResource DIA, Resource layer, boolean active) throws ManyObjectsForFunctionalRelationException, ServiceException { + graph.claimLiteral(layer, DIA.IsActive, Boolean.valueOf(active)); + } + + @Override + public GraphLayer loadLayer(ReadGraph graph, Resource layer) throws DatabaseException { + Layer0 L0 = Layer0.getInstance(graph); + DiagramResource DIA = DiagramResource.getInstance(graph); + String name = graph.getRelatedValue(layer, L0.HasName); + Resource visible = graph.getSingleObject(layer, DIA.HasVisibleTag); + Resource focusable = graph.getSingleObject(layer, DIA.HasFocusableTag); + + Map properties = new HashMap<>(); + properties.put(GraphLayer.PROP_FOCUSABLE, focusable); + properties.put(GraphLayer.PROP_VISIBLE, visible); + + return new GraphLayer(name, layer, properties); + } + +}