1 /*******************************************************************************
2 * Copyright (c) 2012 Association for Decentralized Information Management in
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
10 * VTT Technical Research Centre of Finland - initial API and implementation
11 *******************************************************************************/
12 package org.simantics.modeling.ui.componentTypeEditor;
14 import java.util.ArrayList;
15 import java.util.Collections;
16 import java.util.List;
18 import org.eclipse.jface.dialogs.IMessageProvider;
19 import org.eclipse.jface.resource.JFaceResources;
20 import org.eclipse.jface.resource.LocalResourceManager;
21 import org.eclipse.jface.resource.ResourceManager;
22 import org.eclipse.swt.SWT;
23 import org.eclipse.swt.events.SelectionAdapter;
24 import org.eclipse.swt.events.SelectionEvent;
25 import org.eclipse.swt.layout.FormAttachment;
26 import org.eclipse.swt.layout.FormData;
27 import org.eclipse.swt.layout.FormLayout;
28 import org.eclipse.swt.widgets.Composite;
29 import org.eclipse.swt.widgets.Sash;
30 import org.eclipse.ui.forms.IMessageManager;
31 import org.eclipse.ui.forms.widgets.Form;
32 import org.eclipse.ui.forms.widgets.FormToolkit;
33 import org.osgi.framework.BundleContext;
34 import org.osgi.framework.InvalidSyntaxException;
35 import org.osgi.framework.ServiceReference;
36 import org.simantics.Simantics;
37 import org.simantics.databoard.Bindings;
38 import org.simantics.databoard.binding.Binding;
39 import org.simantics.databoard.binding.error.BindingException;
40 import org.simantics.databoard.type.Datatype;
41 import org.simantics.databoard.type.NumberType;
42 import org.simantics.db.ReadGraph;
43 import org.simantics.db.Resource;
44 import org.simantics.db.common.NamedResource;
45 import org.simantics.db.common.request.UniqueRead;
46 import org.simantics.db.common.utils.NameUtils;
47 import org.simantics.db.exception.DatabaseException;
48 import org.simantics.db.layer0.util.Layer0Utils;
49 import org.simantics.db.procedure.Listener;
50 import org.simantics.db.request.Read;
51 import org.simantics.layer0.Layer0;
52 import org.simantics.modeling.ui.Activator;
53 import org.simantics.operation.Layer0X;
54 import org.simantics.structural.stubs.StructuralResource2;
55 import org.simantics.utils.ui.ErrorLogger;
56 import org.simantics.utils.ui.SWTUtils;
58 public class ComponentTypeViewer {
60 ComponentTypeViewerData data;
62 ResourceManager resourceManager;
64 ArrayList<ComponentTypeViewerSection> sections = new ArrayList<ComponentTypeViewerSection>(3);
66 public ComponentTypeViewer(Composite parent, Resource _componentType, String formTitle) {
68 FormToolkit tk = new FormToolkit(parent.getDisplay());
69 Form form = tk.createForm(parent);
70 tk.decorateFormHeading(form);
71 resourceManager = new LocalResourceManager(JFaceResources.getResources(), form);
72 form.setText(formTitle);
73 form.setImage(resourceManager.createImage(Activator.COMPONENT_TYPE_ICON));
75 FormLayout layout = new FormLayout();
76 layout.marginBottom = 10;
77 layout.marginTop = 10;
78 layout.marginLeft = 10;
79 layout.marginRight = 10;
80 form.getBody().setLayout(layout);
84 data = new ComponentTypeViewerData(tk, _componentType, form);
88 sections.add(new ConfigurationPropertiesSection(data));
89 sections.add(new DerivedPropertiesSection(data));
91 BundleContext bundleContext = Activator.getContext();
93 ArrayList<ComponentTypeViewerSectionFactory> factories =
94 Simantics.getSession().syncRequest(new Read<ArrayList<ComponentTypeViewerSectionFactory>>() {
96 public ArrayList<ComponentTypeViewerSectionFactory> perform(
97 ReadGraph graph) throws DatabaseException {
98 ArrayList<ComponentTypeViewerSectionFactory> factories =
99 new ArrayList<ComponentTypeViewerSectionFactory>(3);
101 String className = ComponentTypeViewerSectionFactory.class.getName();
102 ServiceReference<?>[] references = bundleContext.getAllServiceReferences(className, null);
103 if(references != null)
104 for(ServiceReference<?> reference : references) {
105 ComponentTypeViewerSectionFactory factory = (ComponentTypeViewerSectionFactory)bundleContext.getService(reference);
106 if(factory.doesSupport(graph, _componentType))
107 factories.add(factory);
109 } catch (InvalidSyntaxException e) {
115 for(ComponentTypeViewerSectionFactory factory : factories)
116 sections.add(factory.create(data));
117 } catch(DatabaseException e) {
121 sections.sort((a,b) -> { return Double.compare(a.getPriority(), b.getPriority()); });
125 Sash[] sashes = new Sash[sections.size()-1];
126 for(int i=0;i<sections.size()-1;++i) {
127 Sash sash = new Sash(form.getBody(), SWT.HORIZONTAL);
128 sash.setBackground(sash.getDisplay().getSystemColor(SWT.COLOR_WHITE));
130 FormData data = new FormData();
131 data.top = new FormAttachment(100*(i+1)/sections.size(), 0);
132 data.left = new FormAttachment(0, 0);
133 data.right = new FormAttachment(100, 0);
135 sash.setLayoutData(data);
137 sash.addSelectionListener(new SelectionAdapter() {
138 public void widgetSelected(SelectionEvent e) {
139 sash.setBounds(e.x, e.y, e.width, e.height);
140 FormData data = new FormData();
141 data.top = new FormAttachment(0, e.y);
142 data.left = new FormAttachment(0, 0);
143 data.right = new FormAttachment(100, 0);
145 sash.setLayoutData(data);
146 form.getBody().layout(true);
151 for(int i=0;i<sections.size();++i) {
153 FormData formData = new FormData();
154 formData.top = i > 0 ? new FormAttachment(sashes[i-1]) : new FormAttachment(0, 0);
155 formData.left = new FormAttachment(0, 0);
156 formData.right = new FormAttachment(100, 0);
157 formData.bottom = i < sections.size()-1
158 ? new FormAttachment(sashes[i]) : new FormAttachment(100, 0);
159 sections.get(i).getSection().setLayoutData(formData);
164 createGraphListener();
167 private void createGraphListener() {
168 Simantics.getSession().asyncRequest(new UniqueRead<ComponentTypePropertiesResult>() {
170 public ComponentTypePropertiesResult perform(ReadGraph graph) throws DatabaseException {
171 List<ComponentTypeViewerPropertyInfo> result = new ArrayList<>();
172 List<NamedResource> connectionPoints = new ArrayList<>();
173 Layer0 L0 = Layer0.getInstance(graph);
174 Layer0X L0X = Layer0X.getInstance(graph);
175 StructuralResource2 STR = StructuralResource2.getInstance(graph);
177 boolean typeIsImmutable = graph.isImmutable(data.componentType)
178 || graph.hasStatement(data.componentType, STR.ComponentType_Locked)
179 || Layer0Utils.isPublished(graph, data.componentType)
180 || Layer0Utils.isContainerPublished(graph, data.componentType);
182 for(Resource relation : graph.getObjects(data.componentType, L0.DomainOf)) {
183 if(graph.isSubrelationOf(relation, L0.HasProperty)) {
184 String name = graph.getRelatedValue(relation, L0.HasName);
185 String type = graph.getPossibleRelatedValue(relation, L0.RequiresValueType);
186 String label = graph.getPossibleRelatedValue(relation, L0.HasLabel);
189 String description = graph.getPossibleRelatedValue(relation, L0.HasDescription);
190 if (description == null)
192 NumberType numberType = null;
195 String unit = graph.getPossibleRelatedValue(relation, L0X.HasUnit, Bindings.STRING);
196 String defaultValue = "0";
197 String expression = null;
199 for(Resource assertion : graph.getAssertedObjects(data.componentType, relation)) {
201 expression = graph.getPossibleRelatedValue(assertion, L0.SCLValue_expression, Bindings.STRING);
202 if(expression != null) {
203 defaultValue = "=" + expression;
205 Datatype dt = getPossibleDatatype(graph, assertion);
208 if (dt instanceof NumberType)
209 numberType = (NumberType) dt;
210 Binding binding = Bindings.getBinding(dt);
211 Object value = graph.getValue(assertion, binding);
213 defaultValue = binding.toString(value, true);
214 } catch (BindingException e) {
215 ErrorLogger.defaultLogError(e);
218 } catch(DatabaseException e) {
219 ErrorLogger.defaultLogError(e);
223 String valid = expression != null ? DerivedPropertiesSection.validateMonitorExpression(graph, data.componentType, relation, expression) : null;
225 boolean immutable = typeIsImmutable || graph.isImmutable(relation);
226 ComponentTypeViewerPropertyInfo info =
227 new ComponentTypeViewerPropertyInfo(relation, name, type, defaultValue, numberType, unit, label, description, expression, valid, immutable);
229 Object sectionSpecificData = null;
230 double priority = Double.NEGATIVE_INFINITY;
231 for(ComponentTypeViewerSection section : sections) {
232 Object temp = section.getSectionSpecificData(graph, info);
234 double sectionPriority = section.getDataPriority();
235 if(sectionPriority > priority) {
236 sectionSpecificData = temp;
237 priority = sectionPriority;
241 info.sectionSpecificData = sectionSpecificData;
245 } else if (graph.isInstanceOf(relation, STR.ConnectionRelation)) {
246 NamedResource nr = new NamedResource(NameUtils.getSafeName(graph, relation), relation);
247 connectionPoints.add(nr);
250 Collections.sort(result);
251 return new ComponentTypePropertiesResult(result, connectionPoints, typeIsImmutable);
253 }, new Listener<ComponentTypePropertiesResult>() {
255 public void execute(final ComponentTypePropertiesResult result) {
256 SWTUtils.asyncExec(data.form.getDisplay(), new Runnable() {
259 // Store loaded properties
260 data.properties = result.getProperties().toArray(new ComponentTypeViewerPropertyInfo[result.getProperties().size()]);
261 data.connectionPoints = result.getConnectionPoints().toArray(new NamedResource[result.getConnectionPoints().size()]);
263 for(ComponentTypeViewerSection section : sections)
264 section.update(result);
265 setReadOnly(result.isImmutable());
271 public void exception(Throwable t) {
272 ErrorLogger.defaultLogError(t);
276 public boolean isDisposed() {
277 return data.form.isDisposed();
283 protected Datatype getPossibleDatatype(ReadGraph graph, Resource literal) throws DatabaseException {
284 Binding binding = Bindings.getBindingUnchecked(Datatype.class);
285 for (Resource dataTypeResource : graph.getObjects(literal, Layer0.getInstance(graph).HasDataType)) {
286 Datatype dt = graph.getPossibleValue(dataTypeResource, binding);
293 public void setFocus() {
294 data.form.setFocus();
301 private void setReadOnly(boolean readOnly) {
302 if (readOnly == data.readOnly)
304 data.readOnly = readOnly;
305 for(ComponentTypeViewerSection section : sections)
306 section.setReadOnly(readOnly);
307 IMessageManager mm = data.form.getMessageManager();
309 mm.addMessage("readonly", "(Opened in read-only mode)", null, IMessageProvider.INFORMATION);
311 mm.removeMessage("readonly");