]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.modeling/src/org/simantics/modeling/ModelingUtils.java
Support tg discovery in export/import
[simantics/platform.git] / bundles / org.simantics.modeling / src / org / simantics / modeling / ModelingUtils.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
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
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.modeling;
13
14 import java.io.File;
15 import java.io.IOException;
16 import java.text.DateFormat;
17 import java.util.ArrayList;
18 import java.util.Collection;
19 import java.util.Collections;
20 import java.util.Date;
21 import java.util.HashMap;
22 import java.util.HashSet;
23 import java.util.List;
24 import java.util.Map;
25 import java.util.Set;
26 import java.util.TreeMap;
27
28 import org.eclipse.core.runtime.CoreException;
29 import org.eclipse.core.runtime.IProgressMonitor;
30 import org.eclipse.core.runtime.NullProgressMonitor;
31 import org.eclipse.core.runtime.Path;
32 import org.eclipse.jface.dialogs.Dialog;
33 import org.eclipse.jface.dialogs.IDialogConstants;
34 import org.eclipse.jface.dialogs.MessageDialog;
35 import org.eclipse.jface.layout.GridDataFactory;
36 import org.eclipse.jface.layout.GridLayoutFactory;
37 import org.eclipse.jface.resource.ImageDescriptor;
38 import org.eclipse.jface.viewers.IStructuredSelection;
39 import org.eclipse.jface.viewers.StructuredSelection;
40 import org.eclipse.jface.window.Window;
41 import org.eclipse.jface.wizard.WizardDialog;
42 import org.eclipse.swt.SWT;
43 import org.eclipse.swt.widgets.Composite;
44 import org.eclipse.swt.widgets.Control;
45 import org.eclipse.swt.widgets.Display;
46 import org.eclipse.swt.widgets.FileDialog;
47 import org.eclipse.swt.widgets.Shell;
48 import org.eclipse.ui.IWorkbenchWizard;
49 import org.eclipse.ui.PlatformUI;
50 import org.eclipse.ui.wizards.IWizardDescriptor;
51 import org.simantics.Simantics;
52 import org.simantics.annotation.ontology.AnnotationResource;
53 import org.simantics.databoard.Bindings;
54 import org.simantics.databoard.binding.Binding;
55 import org.simantics.databoard.binding.mutable.Variant;
56 import org.simantics.databoard.container.DataContainer;
57 import org.simantics.databoard.container.DataContainers;
58 import org.simantics.databoard.container.DataFormatException;
59 import org.simantics.databoard.container.FormatHandler;
60 import org.simantics.databoard.serialization.SerializationException;
61 import org.simantics.databoard.type.Datatype;
62 import org.simantics.databoard.util.URIStringUtils;
63 import org.simantics.datatypes.literal.GUID;
64 import org.simantics.db.ReadGraph;
65 import org.simantics.db.RequestProcessor;
66 import org.simantics.db.Resource;
67 import org.simantics.db.Statement;
68 import org.simantics.db.WriteGraph;
69 import org.simantics.db.common.NamedResource;
70 import org.simantics.db.common.QueryMemoryWatcher;
71 import org.simantics.db.common.primitiverequest.IsInstanceOf;
72 import org.simantics.db.common.procedure.adapter.TransientCacheAsyncListener;
73 import org.simantics.db.common.procedure.adapter.TransientCacheListener;
74 import org.simantics.db.common.request.IndexRoot;
75 import org.simantics.db.common.request.ObjectsWithType;
76 import org.simantics.db.common.request.PossibleIndexRoot;
77 import org.simantics.db.common.request.ReadRequest;
78 import org.simantics.db.common.request.ResourceRead2;
79 import org.simantics.db.common.request.WriteRequest;
80 import org.simantics.db.common.request.WriteResultRequest;
81 import org.simantics.db.common.utils.ListUtils;
82 import org.simantics.db.common.utils.Logger;
83 import org.simantics.db.common.utils.NameUtils;
84 import org.simantics.db.common.utils.OrderedSetUtils;
85 import org.simantics.db.common.utils.VersionInfo;
86 import org.simantics.db.common.utils.VersionInfoRequest;
87 import org.simantics.db.common.utils.Versions;
88 import org.simantics.db.exception.DatabaseException;
89 import org.simantics.db.layer0.SelectionHints;
90 import org.simantics.db.layer0.adapter.CopyHandler;
91 import org.simantics.db.layer0.adapter.GenericRelationIndex;
92 import org.simantics.db.layer0.adapter.Instances;
93 import org.simantics.db.layer0.adapter.impl.DefaultPasteImportAdvisor;
94 import org.simantics.db.layer0.adapter.impl.ImportAdvisorFactory;
95 import org.simantics.db.layer0.genericrelation.IndexedRelations;
96 import org.simantics.db.layer0.migration.MigrationUtils;
97 import org.simantics.db.layer0.request.ActivateModel;
98 import org.simantics.db.layer0.request.ActiveModels;
99 import org.simantics.db.layer0.request.Configuration;
100 import org.simantics.db.layer0.request.IsLinkedTo;
101 import org.simantics.db.layer0.request.PossibleModel;
102 import org.simantics.db.layer0.util.ClipboardUtils;
103 import org.simantics.db.layer0.util.DraftStatusBean;
104 import org.simantics.db.layer0.util.ExternalDownloadBean;
105 import org.simantics.db.layer0.util.Layer0Utils;
106 import org.simantics.db.layer0.util.ModelTransferableGraphSourceRequest;
107 import org.simantics.db.layer0.util.PasteEventHandler;
108 import org.simantics.db.layer0.util.RemoverUtil;
109 import org.simantics.db.layer0.util.SimanticsClipboard;
110 import org.simantics.db.layer0.util.SimanticsClipboard.Representation;
111 import org.simantics.db.layer0.util.SimanticsClipboardImpl;
112 import org.simantics.db.layer0.util.SimanticsKeys;
113 import org.simantics.db.layer0.util.TransferableGraphConfiguration2;
114 import org.simantics.db.layer0.variable.Variable;
115 import org.simantics.db.layer0.variable.Variables;
116 import org.simantics.db.request.Read;
117 import org.simantics.db.service.ClusterControl;
118 import org.simantics.db.service.CollectionSupport;
119 import org.simantics.db.service.QueryControl;
120 import org.simantics.db.service.VirtualGraphSupport;
121 import org.simantics.diagram.stubs.DiagramResource;
122 import org.simantics.diagram.stubs.G2DResource;
123 import org.simantics.diagram.synchronization.graph.AddElement;
124 import org.simantics.graph.db.IImportAdvisor2;
125 import org.simantics.graph.db.ImportAdvisors;
126 import org.simantics.graph.db.MissingDependencyException;
127 import org.simantics.graph.db.StreamingTransferableGraphFileReader;
128 import org.simantics.graph.db.TransferableGraphException;
129 import org.simantics.graph.db.TransferableGraphSource;
130 import org.simantics.graph.db.TransferableGraphs;
131 import org.simantics.graph.representation.Identity;
132 import org.simantics.graph.representation.Root;
133 import org.simantics.graph.representation.TransferableGraph1;
134 import org.simantics.graph.representation.TransferableGraphUtils;
135 import org.simantics.issues.common.IssueSourceUtils;
136 import org.simantics.issues.ontology.IssueResource;
137 import org.simantics.layer0.Layer0;
138 import org.simantics.layer0.utils.direct.GraphUtils;
139 import org.simantics.modeling.adapters.ChangeInformation;
140 import org.simantics.modeling.template2d.ontology.Template2dResource;
141 import org.simantics.operation.Layer0X;
142 import org.simantics.project.ontology.ProjectResource;
143 import org.simantics.scenegraph.profile.ProfileUtils;
144 import org.simantics.scl.runtime.function.Function1;
145 import org.simantics.scl.runtime.tuple.Tuple;
146 import org.simantics.simulation.ontology.SimulationResource;
147 import org.simantics.structural.stubs.StructuralResource2;
148 import org.simantics.structural2.scl.StructuralComponent;
149 import org.simantics.structural2.utils.StructuralUtils;
150 import org.simantics.ui.SimanticsUI;
151 import org.simantics.utils.ObjectUtils;
152 import org.simantics.utils.datastructures.Pair;
153 import org.simantics.utils.datastructures.Triple;
154 import org.simantics.utils.datastructures.hints.HintContext;
155 import org.simantics.utils.ui.dialogs.ListDialog;
156
157 /**
158  * @author Hannu Niemistö
159  */
160 public class ModelingUtils {
161
162         private ReadGraph g;
163         private WriteGraph wg;
164         public Layer0 b;
165         private StructuralResource2 sr;
166         private DiagramResource dr;
167         public ModelingResources mr;
168         public SimulationResource SIMU;
169
170         public ModelingUtils(WriteGraph g) {
171                 wg = g;
172                 this.g = g;
173                 b = Layer0.getInstance(g);
174                 sr = StructuralResource2.getInstance(g);
175                 dr = DiagramResource.getInstance(g);
176                 mr = ModelingResources.getInstance(g);
177                 SIMU = SimulationResource.getInstance(g);
178         }
179
180         @Deprecated
181         public Resource createSymbol2(String name) throws DatabaseException {
182                 return createSymbol2(name, dr.Composite);
183         }
184
185         @Deprecated
186         public Resource createSymbol2(String name, Resource type) throws DatabaseException {
187                 G2DResource g2d = G2DResource.getInstance(g);
188
189 //              Resource visibleTag = wg.newResource();
190 //              wg.claim(visibleTag, b.SubrelationOf, null, dr.IsVisible);
191 //              Resource focusableTag = wg.newResource();
192 //              wg.claim(focusableTag, b.SubrelationOf, null, dr.IsFocusable);
193
194                 Double boxDimension = 6.0;
195                 Collection<Statement> grid = g.getAssertedStatements(type, dr.HasGridSize);
196                 if(grid.size() == 1) {
197                         Double d = g.getPossibleValue(grid.iterator().next().getObject(), Bindings.DOUBLE);
198                         if(d != null) boxDimension = 2*d;
199                 }
200
201
202                 Resource element  = GraphUtils.create(wg,
203                                 b.InstanceOf, dr.SVGElement,
204                                 g2d.HasSVGDocument,
205                                 "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>" +
206                                                 // REMOVED by Tuukka, because This will cause
207                                                 // parsers to get on the net and get the doctype
208                                                 // definitions which can stall the UI for a long time.
209                                                 // Besides, we're not using the validation for anything
210                                                 // so it's useless to us.
211                                                 //"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">" +
212                                                 "<svg xmlns=\"http://www.w3.org/2000/svg\" overflow=\"visible\" version=\"1.1\">" +
213                                                 "<rect x=\"-" + boxDimension + "\" y=\"-" + boxDimension + "\" width=\"" + (2*boxDimension) + "\" height=\"" + (2*boxDimension) + "\" fill=\"none\" stroke=\"rgb(0,0,0)\" stroke-width=\"0.1\"/>" +
214                                                 "</svg>"
215                                 );
216
217 //              wg.claim(element, visibleTag, element);
218 //              wg.claim(element, focusableTag, element);
219
220                 Resource orderedSet = OrderedSetUtils.create(wg, type, element);
221
222 //              wg.claim(orderedSet, dr.HasLayer, GraphUtils.create2(wg, dr.Layer,
223 //                              b.HasName, "Default",
224 //                              dr.IsActive, Boolean.TRUE,
225 //                              dr.HasVisibleTag, visibleTag,
226 //                              dr.HasFocusableTag, focusableTag));
227
228                 Resource result = GraphUtils.create(wg,
229                                 b.HasName, name,
230                                 b.HasLabel, "",
231                                 sr.IsDefinedBy, orderedSet);
232
233                 wg.claim(result, b.ConsistsOf, orderedSet);
234                 wg.claimLiteral(orderedSet, b.HasName, "__DIAGRAM__", Bindings.STRING);
235                 AddElement.claimFreshElementName(wg, orderedSet, element);
236                 wg.claim(orderedSet, b.ConsistsOf, element);
237
238                 wg.claim(result, b.Inherits, null, dr.DefinedElement);
239                 return result;
240         }
241
242         public static Collection<Resource> getElementCorrespondendences(ReadGraph g, Resource element) throws DatabaseException {
243                 DiagramResource dr = DiagramResource.getInstance(g);
244                 ModelingResources mr = ModelingResources.getInstance(g);
245                 if(g.isInstanceOf(element, dr.Connection)) {
246                         Resource mappedComponent = g.getPossibleObject(element, mr.ElementToComponent);
247                         if(mappedComponent != null) return Collections.singletonList(mappedComponent);
248                         Resource mappedConnection = g.getPossibleObject(element, mr.DiagramConnectionToConnection);
249                         if(mappedConnection == null)
250                                 return Collections.emptyList();
251                         ArrayList<Resource> result = new ArrayList<Resource>();
252                         Collection<Resource> relatedMappedConnections = StructuralUtils.getRelatedConnections(g, mappedConnection);
253                         for(Resource relatedMappedConnection : relatedMappedConnections)
254                                 for(Resource relatedConnection : g.getObjects(relatedMappedConnection, mr.ConnectionToDiagramConnection))
255                                         result.addAll(g.getObjects(relatedConnection, mr.ElementToComponent));
256                         return result;
257                 }
258                 else
259                         return g.getObjects(element, mr.ElementToComponent);
260         }
261
262         public static Resource getPossibleElement(ReadGraph g, Resource component) throws DatabaseException {
263                 ModelingResources mr = ModelingResources.getInstance(g);
264                 return g.getPossibleObject(component, mr.ComponentToElement);
265         }
266
267         public static Resource getPossibleElementCorrespondendence(ReadGraph g, Resource element) throws DatabaseException {
268                 Collection<Resource> corrs = getElementCorrespondendences(g, element);
269                 if(corrs.size() != 1) return null;
270                 else return corrs.iterator().next();
271         }
272
273         public static Resource getSingleElementCorrespondendence(ReadGraph g, Resource element) throws DatabaseException {
274                 Collection<Resource> corrs = getElementCorrespondendences(g, element);
275                 if(corrs.size() != 1) throw new DatabaseException("Expected 1 element correspondence, got " + corrs.size());
276                 else return corrs.iterator().next();
277         }
278
279         public static Resource createExperiment(WriteGraph graph, Resource model) throws DatabaseException {
280
281                 Layer0 L0 = Layer0.getInstance(graph);
282                 SimulationResource SIMU = SimulationResource.getInstance(graph);
283                 Resource experiment = graph.newResource();
284                 graph.claim(experiment, L0.InstanceOf, SIMU.Experiment);
285                 graph.claimLiteral(experiment, L0.HasName, "Experiment");
286                 graph.claim(model, L0.ConsistsOf, experiment);
287                 return experiment;
288
289         }
290
291         public static Resource createModel(WriteGraph graph, Resource type) throws DatabaseException {
292                 return createModel(graph, type, Simantics.getProjectResource(), null);
293         }
294                 
295         public static Resource createModel(WriteGraph graph, Resource type, String name) throws DatabaseException {
296                 return createModel(graph, type, Simantics.getProjectResource(), name);
297         }
298
299         public static Resource createModel(WriteGraph graph, Resource type, final Resource target, String name) throws DatabaseException {
300
301                 Layer0 L0 = Layer0.getInstance(graph);
302                 SimulationResource SIMU = SimulationResource.getInstance(graph);
303                 StructuralResource2 STR = StructuralResource2.getInstance(graph);
304                 ModelingResources MOD = ModelingResources.getInstance(graph);
305
306                 if(name == null)
307                         name = NameUtils.findFreshName(graph, "Model", target, L0.ConsistsOf, "%s%d");
308
309                 final Resource model = graph.newResource();
310                 graph.newClusterSet(model);
311                 graph.claim(model, L0.InstanceOf, null, type);
312                 graph.claimLiteral(model, L0.HasName, name);
313
314                 graph.claim(target, L0.ConsistsOf, model);
315
316                 Resource configurationType = graph.getPossibleObject(model, MOD.StructuralModel_HasConfigurationType);
317                 if(configurationType == null) configurationType = STR.Composite;
318
319                 Resource configuration = graph.newResource();
320                 graph.claimLiteral(configuration, L0.HasName, "Configuration", Bindings.STRING);
321                 graph.claim(configuration, L0.InstanceOf, null, configurationType);
322                 graph.claim(model, L0.ConsistsOf, configuration);
323                 graph.claim(model, SIMU.HasConfiguration, configuration);
324
325                 Resource joinClusterSet = graph.newResource();
326                 graph.newClusterSet(joinClusterSet);
327                 graph.claim(joinClusterSet, L0.InstanceOf, L0.ClusterSet);
328                 graph.claim(model, STR.HasJoinClusterSet, joinClusterSet);
329
330                 linkOntologyDependenciesToModel(graph, model, target);
331                 
332                 Resource ontology = graph.syncRequest(new PossibleIndexRoot(type));
333                 if(ontology != null) {
334                         graph.claim(model, L0.IsLinkedTo, ontology);
335                 }
336
337                 VirtualGraphSupport support = graph.getService(VirtualGraphSupport.class);
338                 graph.asyncRequest(new WriteRequest(support.getWorkspacePersistent("activations")) {
339
340                         @Override
341                         public void perform(WriteGraph graph) throws DatabaseException {
342                                 Layer0X L0X = Layer0X.getInstance(graph);
343                                 Collection<Resource> actives = graph.syncRequest(new ActiveModels(target));
344                                 if(actives.isEmpty()) {
345                                         graph.claim(model,  L0X.IsActivatedBy, target);
346                                 }
347                         }
348
349                 });
350
351                 return model;
352
353         }
354         
355         public static void linkOntologyDependenciesToModel(WriteGraph graph, Resource model, Resource target) 
356                         throws DatabaseException {
357                 Layer0 L0 = Layer0.getInstance(graph);
358                 ProjectResource PROJ = ProjectResource.getInstance(graph);
359                 for(Resource dep : graph.getObjects(target, L0.IsLinkedTo)) {
360                         if(graph.isInstanceOf(dep, PROJ.NamespaceRequirement)) {
361                                 for(Resource req : graph.getObjects(dep, PROJ.RequiresNamespace)) {
362                                         String uri = graph.getPossibleValue(req, Bindings.STRING);
363                                         if(uri != null) {
364                                                 Resource ns = graph.getResource(uri);
365                                                 if(ns != null) {
366                                                         graph.claim(model, L0.IsLinkedTo, null, ns);
367                                                 }
368                                         }
369                                 }
370                         }
371                 }
372         }
373         
374         public static void addSCLMainToModel(WriteGraph graph, Resource model) 
375                         throws DatabaseException {
376                 addSCLMainToModel(graph, model, "SCLMain", "include \"Simantics/All\"\n");
377         }
378         
379         public static void addSCLMainToModel(WriteGraph graph, Resource model, String name, String contents) 
380                         throws DatabaseException {
381                 Layer0 L0 = Layer0.getInstance(graph);
382         Resource sclmain = GraphUtils.create2(graph, L0.SCLModule, L0.PartOf, model, L0.HasName, name);
383         graph.claimLiteral(sclmain, L0.SCLModule_definition, contents, Bindings.STRING);
384         }
385
386     public static Resource createLocalLibrary(WriteGraph graph, Resource container, String name) throws DatabaseException {
387         Layer0 L0 = Layer0.getInstance(graph);
388         ModelingResources MOD = ModelingResources.getInstance(graph);
389         Resource library = graph.newResource();
390         graph.claim(library, L0.InstanceOf, null, L0.Library);
391         graph.addLiteral(library, L0.HasName, L0.NameOf, "Library", Bindings.STRING);
392         if (container != null) {
393             graph.claim(container, L0.ConsistsOf, L0.PartOf, library);
394             graph.claim(container, MOD.HasLocalLibrary, MOD.IsLocalLibraryOf, library);
395         }
396         return library;
397     }
398
399         public static void importModel(String fileName) {
400
401                 Resource project = SimanticsUI.getProject().get();
402
403                 try {
404
405                         StreamingTransferableGraphFileReader importer = new StreamingTransferableGraphFileReader(new File(fileName));
406                         TransferableGraphSource tg = importer.readTG();
407
408                         final DefaultPasteImportAdvisor advisor = new DefaultPasteImportAdvisor(project) {
409                                 @Override
410                                 public void analyzeType(ReadGraph graph, Root root) throws DatabaseException {
411                                 }
412                                 @Override
413                                 public Resource analyzeRoot(ReadGraph graph, Root root) throws DatabaseException {
414                                         library = Simantics.getProjectResource();
415                                         String newName = newName(graph, library, root.name);
416                                         nameMappings.put(root.name, newName);
417                                         return null;
418                                 }
419                         };
420                         TransferableGraphs.importGraph1(Simantics.getSession(), tg, advisor);
421
422                 } catch (MissingDependencyException e) {
423
424                         final Set<String> missingURIs = e.getMissingURIs();
425
426                         class ErrorMessageDialog extends MessageDialog {
427
428                                 public ErrorMessageDialog(Shell shell) {
429                                         super(shell, 
430                                                         "Unsatisfied dependencies", null, 
431                                                         "The following dependencies were missing. Please import the dependencies and try again.", 
432                                                         MessageDialog.ERROR, new String[] { "Continue" }, 0);
433                                 }
434
435                                 @Override
436                                 protected Control createCustomArea(Composite composite) {
437                                         GridLayoutFactory.fillDefaults().applyTo(composite);
438                                         
439                                         org.eclipse.swt.widgets.List list = new org.eclipse.swt.widgets.List(composite, SWT.BORDER | SWT.READ_ONLY);
440                                         GridDataFactory.fillDefaults().grab(true, true).applyTo(list);
441                                         for(String s : missingURIs) list.add(s);
442                                         return composite;
443                                 }
444
445                         }
446
447                         Display display = Display.getCurrent();
448                         if(display != null) {
449                                 ErrorMessageDialog md = new ErrorMessageDialog(display.getActiveShell());
450                                 md.open();
451                         } else {
452                                 Display.getDefault().asyncExec(new Runnable() {
453
454                                         @Override
455                                         public void run() {
456                                                 Shell shell = Display.getCurrent().getActiveShell();
457                                                 ErrorMessageDialog md = new ErrorMessageDialog(shell);
458                                                 md.open();
459                                         }
460                                         
461                                 });
462                         }
463                         
464
465                 } catch (Exception e) {
466                         Logger.defaultLogError(e);
467                 }
468
469         }
470
471         public static void primeVirtualGraphs() {
472                 VirtualGraphSupport support = Simantics.getSession().getService(VirtualGraphSupport.class);
473                 support.getWorkspacePersistent("activations");
474                 support.getWorkspacePersistent("experiments");
475                 support.getWorkspacePersistent("issues");
476                 support.getWorkspacePersistent("preferences");
477         }
478
479         public static Resource createProfileEntry(WriteGraph graph, String name, Resource style, Resource group) throws DatabaseException {
480
481                 Layer0 L0 = Layer0.getInstance(graph);
482                 DiagramResource DIA = DiagramResource.getInstance(graph);
483
484                 Resource entry = graph.newResource();
485                 graph.claim(entry, L0.InstanceOf, null, DIA.GroupStyleProfileEntry);
486                 graph.claimLiteral(entry, L0.HasName, name);
487                 graph.claimLiteral(entry, L0.HasLabel, name);
488                 graph.claim(entry, DIA.ProfileEntry_HasStyle, style);
489                 graph.claim(entry, DIA.ProfileEntry_HasGroup, group);
490
491                 return entry;
492
493         }
494
495         public static Resource createProfile(WriteGraph graph, String profileName, Resource... entries) throws DatabaseException {
496
497                 Layer0 L0 = Layer0.getInstance(graph);
498                 DiagramResource DIA = DiagramResource.getInstance(graph);
499
500                 Resource list = ListUtils.create(graph, DIA.Profile, entries);
501
502                 Resource profile = graph.newResource();
503                 graph.claim(profile, L0.InstanceOf, null, DIA.Profile);
504                 graph.claimLiteral(profile, L0.HasName, profileName);
505                 graph.claim(profile, DIA.HasEntries, null, list);
506
507                 return profile;
508
509         }
510         
511         public static Resource createProfile(WriteGraph graph, String profileName, Collection<Resource> entries) throws DatabaseException {
512             return createProfile(graph, profileName, entries.toArray(new Resource[entries.size()]));
513         }
514
515         public static Resource createToplevelProfile(WriteGraph graph, Resource model, String name, Resource ... profiles) throws DatabaseException {
516
517                 Resource work = createProfile(graph, name, profiles);
518
519                 Layer0 L0 = Layer0.getInstance(graph);
520                 DiagramResource DIA = DiagramResource.getInstance(graph);
521
522                 graph.deny(model, DIA.HasActiveProfile);
523                 graph.claim(model, DIA.HasActiveProfile, work);
524                 graph.claim(model, L0.ConsistsOf, L0.PartOf, work);
525
526                 return work;
527
528         }
529         
530         public static Resource createToplevelProfile(WriteGraph graph, Resource model, String name, Collection<Resource> profiles) throws DatabaseException {
531             return createToplevelProfile(graph, model, name, profiles.toArray(new Resource[profiles.size()]));
532         }
533
534         public static void activateProfileEntries(WriteGraph graph, final Resource profile, final Resource ... entries) {
535
536                 VirtualGraphSupport support = graph.getService(VirtualGraphSupport.class);
537                 graph.asyncRequest(new WriteRequest(support.getWorkspacePersistent("profiles")) {
538
539                         @Override
540                         public void perform(WriteGraph graph) throws DatabaseException {
541                                 SimulationResource SIMU = SimulationResource.getInstance(graph);
542                                 for(Resource entry : entries)
543                                         graph.claim(profile, SIMU.IsActive, entry);
544                         }
545
546                 });
547
548         }
549         
550         public static void activateProfileEntries(WriteGraph graph, Resource profile, Collection<Resource> entries) {
551             activateProfileEntries(graph, profile, entries.toArray(new Resource[entries.size()]));
552         }
553         
554         public static void toggleProfileGroup(WriteGraph graph, Resource runtimeProfile, String groupName, boolean enabled) throws DatabaseException {
555                 Layer0 L0 = Layer0.getInstance(graph);
556                 for (Resource group : ProfileUtils.getProfileChildren(graph, runtimeProfile)) {
557                         String name = graph.getRelatedValue2(group, L0.HasName);
558                         if (name.equals(groupName)) {
559                                 toggleProfileGroup(graph, runtimeProfile, group, enabled);
560                                 return;
561                         }
562                 }
563         }
564         
565         public static void toggleProfileGroup(WriteGraph graph, Resource runtimeProfile, Resource group, boolean enabled) throws DatabaseException {
566         DiagramResource DIA = DiagramResource.getInstance(graph);
567                 
568         if(graph.isInstanceOf(group, DIA.Profile)) {
569                 
570                 for(Resource child : ProfileUtils.getProfileChildren(graph, group)) {
571                         toggleProfileGroup(graph, runtimeProfile, child, enabled);
572                 }
573                 
574         } else if(graph.isInstanceOf(group, DIA.ProfileEntry)) {
575
576             if(enabled) {
577                 graph.claim(runtimeProfile, SimulationResource.getInstance(graph).IsActive, null, group);
578             } else {
579                 graph.denyStatement(runtimeProfile, SimulationResource.getInstance(graph).IsActive, group);
580             }
581
582                 }
583         }
584
585     public static void untrackDependencies() {
586         untrackDependencies(Simantics.getSession());
587     }
588
589         public static void untrackDependencies(RequestProcessor processor) {
590         
591         try {
592             processor.syncRequest(new ReadRequest() {
593
594                 @Override
595                 public void run(ReadGraph graph) throws DatabaseException {
596                     Layer0X L0X = Layer0X.getInstance(graph);
597                     GenericRelationIndex index = graph.adapt(L0X.DependenciesRelation, GenericRelationIndex.class);
598                     index.untrack(graph.getSession(), graph.getRootLibrary());
599                 }
600                 
601             });
602         } catch (DatabaseException e) {
603             Logger.defaultLogError(e);
604         }
605
606     }
607
608     public static void trackDependencies() {
609         trackDependencies(Simantics.getSession());
610     }
611
612         public static void trackDependencies(RequestProcessor processor) {
613             
614             try {
615             processor.syncRequest(new ReadRequest() {
616
617                 @Override
618                 public void run(ReadGraph graph) throws DatabaseException {
619                     Layer0X L0X = Layer0X.getInstance(graph);
620                     GenericRelationIndex index = graph.adapt(L0X.DependenciesRelation, GenericRelationIndex.class);
621                     index.trackAndIndex(graph.getSession(), graph.getRootLibrary());
622                 }
623                 
624             });
625         } catch (DatabaseException e) {
626             Logger.defaultLogError(e);
627         }
628
629         }
630
631     public static void removeIndex(WriteGraph graph, Resource model) throws DatabaseException {
632         Layer0X L0X = Layer0X.getInstance(graph);
633         IndexedRelations ir = graph.getService(IndexedRelations.class);
634         // Deletes index files
635         ir.reset(null, graph, L0X.DependenciesRelation, model);
636     }
637     
638     public static void resetIssueSources(WriteGraph graph, Resource model) throws DatabaseException {
639         Layer0 L0 = Layer0.getInstance(graph);
640         IssueResource ISSUE = IssueResource.getInstance(graph);
641         for(Resource source : graph.sync(new ObjectsWithType(model, L0.ConsistsOf, ISSUE.ContinuousIssueSource))) {
642             IssueSourceUtils.update(graph, source);
643         }
644     }
645     
646     public static void copyAnnotationTypes(WriteGraph graph, Resource sourceModel, Resource targetModel) throws DatabaseException {
647
648         Layer0 L0 = Layer0.getInstance(graph);
649         AnnotationResource ANNO = AnnotationResource.getInstance(graph);
650
651         Instances query = graph.adapt(ANNO.AnnotationType, Instances.class);
652
653         Resource library = graph.getPossibleObject(targetModel, ANNO.HasAnnotationTypeRoot);
654         // HAXX:
655         if(library == null) {
656             library = graph.newResource();
657             graph.claim(library, L0.InstanceOf, null, ANNO.AnnotationTypeLibrary);
658             graph.claimLiteral(library, L0.HasName, L0.NameOf, L0.String, "Annotation types", Bindings.STRING);
659             graph.claim(library, L0.PartOf, L0.ConsistsOf, targetModel);
660             graph.claim(targetModel, ANNO.HasAnnotationTypeRoot, library);
661         }
662
663         for(Resource type : query.find(graph, sourceModel)) {
664             String name = graph.getRelatedValue(type, L0.HasName);
665             Resource existing = Layer0Utils.getPossibleChild(graph, library, name);
666             if(existing != null) {
667                 RemoverUtil.remove(graph, existing);
668             }
669             Layer0Utils.copyTo(graph, library, type);
670         }
671
672     }
673     
674         public static void deleteIndex(WriteGraph graph, Resource model) throws DatabaseException {
675                 Layer0X L0X = Layer0X.getInstance(graph);
676                 IndexedRelations ir = graph.getService(IndexedRelations.class);
677                 // Deletes index files
678                 ir.reset(null, graph, L0X.DependenciesRelation, model);
679         }
680     
681         public static void disableDependencies(WriteGraph graph, Resource dummy) {
682                 Layer0Utils.setDependenciesIndexingDisabled(graph, true);               
683         }
684
685     public static void releaseMemory(WriteGraph graph) {
686         
687                 QueryControl qc = graph.getService(QueryControl.class);
688                 ClusterControl cc = graph.getService(ClusterControl.class);
689                 cc.flushClusters();
690                 qc.flush(graph);
691         
692     }
693
694     public static List<Resource> filterByIndexRoot(ReadGraph graph, Resource indexRoot, List<Resource> resources) throws DatabaseException {
695         ArrayList<Resource> result =  new ArrayList<Resource>(resources.size());
696         for (Resource r : resources) {
697             Resource root = graph.syncRequest(new PossibleIndexRoot(r));
698             if (indexRoot.equals(root))
699                 result.add(r);
700         }
701         return result;
702     }
703
704     public static List<Resource> searchByTypeShallow(ReadGraph graph, Resource model, Resource type) throws DatabaseException {
705         return filterByIndexRoot(graph, model, searchByType(graph, model, type));
706     }
707
708     public static List<Resource> searchByType(ReadGraph graph, Resource model, Resource type) throws DatabaseException {
709         Instances query = graph.adapt(type, Instances.class);
710         return Layer0Utils.sortByCluster(graph, query.find(graph, model));
711     }
712
713     public static List<Resource> searchByGUID(ReadGraph graph, Resource indexRoot, GUID guid) throws DatabaseException {
714         return searchByGUID(graph, indexRoot, guid.indexString());
715     }
716     
717     public static List<Resource> searchByGUID(ReadGraph graph, Resource indexRoot, String indexString) throws DatabaseException {
718         return searchByQueryShallow(graph, indexRoot, "GUID:" + indexString);
719     }
720
721     public static List<Resource> searchByQueryShallow(ReadGraph graph, Resource model, String query) throws DatabaseException {
722         return filterByIndexRoot(graph, model, searchByQuery(graph, model, query));
723     }
724
725     public static List<Resource> searchByQuery(ReadGraph graph, Resource model, String query) throws DatabaseException {
726         Instances instances = graph.adapt(Layer0.getInstance(graph).Entity, Instances.class);
727         Collection<Resource> queryResult = instances.find(graph, model, query);
728         return Layer0Utils.sortByCluster(graph, queryResult);
729     }
730
731     public static List<Resource> searchByTypeAndFilter(ReadGraph graph, Resource model, Resource type, Function1<Resource,Boolean> filter) throws DatabaseException {
732         Instances query = graph.adapt(type, Instances.class);
733         ArrayList<Resource> result =  new ArrayList<Resource>();
734         for(Resource r : query.find(graph, model)) {
735                 if(filter.apply(r))
736                         result.add(r);
737         }
738         return result;
739     }
740
741     public static List<Triple<Resource, Resource, String>> getIndexEntries(ReadGraph graph, Resource model, String filter) throws DatabaseException {
742         Layer0 L0 = Layer0.getInstance(graph);
743         List<Resource> entries = searchByQuery(graph, model, filter);
744         List<Triple<Resource, Resource, String>> listOfTriples = new ArrayList<Triple<Resource,Resource,String>>();
745         for (Resource entry : entries) {
746                 Resource type = graph.getPossibleObject(entry, L0.InstanceOf);
747                 String name = NameUtils.getSafeName(graph, entry);
748                 listOfTriples.add(new Triple<Resource, Resource, String>(entry, type, name));
749         }
750                 return listOfTriples;
751     }
752     
753     public static String listIndexEntries(ReadGraph graph, Resource model, String filter) throws DatabaseException {
754         List<Triple<Resource, Resource, String>> listOfTriples = getIndexEntries(graph, model, filter);
755         StringBuilder sb = new StringBuilder();
756         sb.append("== LISTING INDEX ENTRIES OF INDEX: " + NameUtils.getSafeName(graph, model) + ". AMOUNT OF ENTRIES: " + listOfTriples.size() + " ==\n");
757         for (Triple<Resource, Resource, String> entry : listOfTriples) {
758                 String instanceOf = NameUtils.getSafeName(graph, entry.second);
759                 sb.append("Name: " + entry.third + " instanceOf: " + instanceOf + " Resource: " + entry.first.toString() + "\n");
760         }
761                 return sb.toString();
762     }
763
764     public static List<Resource> searchByTypeAndName(ReadGraph graph, Resource model, Resource type, String name) throws DatabaseException {
765         Instances query = graph.adapt(type, Instances.class);
766         ArrayList<Resource> result =  new ArrayList<Resource>();
767         for(Resource r : query.findByName(graph, model, name)) {
768                 if(graph.isInstanceOf(r, type))
769                         result.add(r);
770         }
771         return result;
772     }
773
774     public static List<Resource> searchByTypeAndNameShallow(ReadGraph graph, Resource model, Resource type, String name) throws DatabaseException {
775         return filterByIndexRoot(graph, model, searchByTypeAndName(graph, model, type, name));
776     }
777
778         /**
779          * @param graph
780          *            database write access
781          * @param sourceContainer
782          *            the source container to look for annotationProperty from to be
783          *            used as the copy source
784          * @param targetContainer
785          *            the target container for the copied annotationProperty
786          *            annotation
787          * @param annotationProperty
788          *            the annotation property relation
789          * @return created copy of the original annotation or <code>null</code> if
790          *         there was nothing to copy
791          * @throws DatabaseException
792          */
793         public static Resource copyPossibleAnnotation(WriteGraph graph, Resource sourceContainer, Resource targetContainer, Resource annotationProperty) throws DatabaseException {
794                 return copyPossibleAnnotation2(graph, sourceContainer, targetContainer, annotationProperty, null);
795         }
796
797         public static List<String> getPossibleNamePath(ReadGraph graph, Resource resource) throws DatabaseException {
798                 return getPossibleNamePath(graph, resource, null);
799         }
800          
801         private static List<String> getPossibleNamePath(ReadGraph graph, Resource resource, List<String> result) throws DatabaseException {
802                 
803                 Layer0 L0 = Layer0.getInstance(graph);
804                 String name = graph.getPossibleRelatedValue(resource, L0.HasName, Bindings.STRING);
805                 if(name == null) return null;
806
807                 if(result == null) result = new ArrayList<String>();
808                 
809                 SimulationResource SIMU = SimulationResource.getInstance(graph);
810                 if(graph.isInstanceOf(resource, SIMU.Model)) return result;
811                 
812                 Resource parent = graph.getPossibleObject(resource, L0.PartOf);
813                 if(parent != null) {
814                         getPossibleNamePath(graph, parent, result);
815                 } else {
816                         return null;
817                 }
818
819                 result.add(name);
820                 
821                 return result;
822
823         }
824         
825         public static Resource claimLibraryPath(WriteGraph graph, Resource resource, List<String> path) throws DatabaseException {
826                 Layer0 L0 = Layer0.getInstance(graph);
827                 for(int i=0;i<path.size()-1;i++) {
828                         String p = path.get(i);
829                         Resource child = Layer0Utils.getPossibleChild(graph, resource, p);
830                         if(child == null) {
831                                 child = graph.newResource();
832                                 graph.claim(child, L0.InstanceOf, L0.Library);
833                                 graph.addLiteral(child, L0.HasName, L0.NameOf, L0.String, p, Bindings.STRING);
834                                 graph.claim(resource, L0.ConsistsOf, L0.PartOf, child);
835                         }
836                         resource = child;
837                 }
838                 return resource;
839         }
840         
841         /**
842          * @param graph
843          *            database write access
844          * @param sourceContainer
845          *            the source container to look for annotationProperty from to be
846          *            used as the copy source
847          * @param targetContainer
848          *            the target container for the copied annotationProperty
849          *            annotation
850          * @param annotationProperty
851          *            the annotation property relation
852          * @param annotationProperty
853          *            the 2nd level annotation property relation or
854          *            <code>null</code> if no 2nd level annotation exists
855          * @return created copy of the original annotation or <code>null</code> if
856          *         there was nothing to copy
857          * @throws DatabaseException
858          */
859         public static Resource copyPossibleAnnotation2(WriteGraph graph,
860                         Resource sourceContainer, Resource targetContainer,
861                         Resource annotationProperty, Resource entryType) throws DatabaseException {
862
863                 // Delete existing target value first
864                 Layer0 L0 = Layer0.getInstance(graph);
865                 Resource targetValue = graph.getPossibleObject(targetContainer, annotationProperty);
866                 if (targetValue != null) {
867                         if(!graph.hasStatement(targetValue, L0.PartOf))
868                                 RemoverUtil.remove(graph, targetValue);
869                         graph.deny(targetContainer, annotationProperty);
870                 }
871
872                 Resource sourceValue = graph.getPossibleObject(sourceContainer, annotationProperty);
873                 if (sourceValue == null)
874                         return null;
875                 
876                 List<String> sourceValuePath = getPossibleNamePath(graph, sourceValue);
877                 if(sourceValuePath != null) {
878                         Resource targetModel = graph.sync(new PossibleModel(targetContainer));
879                         if(targetModel == null) throw new DatabaseException("No target model found for " + targetContainer);
880                         Resource library = claimLibraryPath(graph, targetModel, sourceValuePath);
881                         Resource existing = Layer0Utils.getPossibleChild(graph, library, sourceValuePath.get(sourceValuePath.size()-1));
882                         if(existing == null) {
883                                 existing = doCopyPossibleAnnotation2(graph, sourceContainer, targetContainer, annotationProperty, entryType);
884                                 graph.claim(library, L0.ConsistsOf, L0.PartOf, existing);
885                         }
886                         graph.claim(targetContainer, annotationProperty, existing);
887                         return existing;
888                 } else {
889                         return doCopyPossibleAnnotation2(graph, sourceContainer, targetContainer, annotationProperty, entryType);
890                 }
891
892         }
893
894         private static Resource doCopyPossibleAnnotation2(WriteGraph graph,
895                         Resource sourceContainer, Resource targetContainer,
896                         Resource annotationProperty, Resource entryType) throws DatabaseException {
897
898                 Resource sourceValue = graph.getPossibleObject(sourceContainer, annotationProperty);
899                 if (sourceValue == null)
900                         return null;
901                 
902                 // Copy 1st level annotation
903                 Resource targetValue = createAnnotation(graph, targetContainer, annotationProperty, sourceValue);
904
905                 // Copy possible 2nd level annotations and attach to 1st if entry
906                 // property is defined.
907                 Layer0 L0 = Layer0.getInstance(graph);
908                 if (entryType != null) {
909                         
910                         AnnotationResource ANNO = AnnotationResource.getInstance(graph);
911                         for (Resource entry : graph.getObjects(sourceValue, ANNO.Annotation_HasEntry)) {
912
913                                 String name = graph.getRelatedValue(entry, L0.HasName, Bindings.STRING);
914
915                                 List<String> entryPath = getPossibleNamePath(graph, entry);
916                                 if(entryPath != null) {
917                                         Resource targetModel = graph.sync(new PossibleModel(targetContainer));
918                                         if(targetModel == null) throw new DatabaseException("No target model found for " + targetContainer);
919                                         Resource library = claimLibraryPath(graph, targetModel, entryPath);
920                                         Resource existing = Layer0Utils.getPossibleChild(graph, library, entryPath.get(entryPath.size()-1));
921                                         if(existing == null) {
922                                                 existing = createTypedAnnotation(graph, null, null, entry, entryType, name);
923                                                 graph.claim(library, L0.ConsistsOf, L0.PartOf, existing);
924                                         }
925                                         graph.claim(targetValue, ANNO.Annotation_HasEntry, existing);
926                                 } else {
927                                         Resource result = createTypedAnnotation(graph, null, null, entry, entryType, name);
928                                         graph.claim(targetValue, ANNO.Annotation_HasEntry, result);
929                                 }
930                                 
931                         }
932                 }
933
934                 return targetValue;
935
936         }
937
938         /**
939          * @param graph
940          *            database write access
941          * @param container
942          *            the container resource to attach the new annotation to
943          * @param property
944          *            the annotation property relation. The type of the created
945          *            annotation is decided from this property relation's range
946          * @param sourceAnnotation
947          *            the annotation to copy data from or <code>null</code> if
948          *            nothing shall be copied
949          * @return the newly created annotation resource or <code>null</code> if the
950          *         annotation property relation didn't have a single range type
951          * @throws DatabaseException
952          */
953         public static Resource createAnnotation(WriteGraph graph, Resource container, Resource property, Resource sourceAnnotation) throws DatabaseException {
954                 return createAnnotation(graph, container, property, sourceAnnotation, null);
955         }
956
957         /**
958          * @param graph
959          *            database write access
960          * @param container
961          *            the container resource to attach the new annotation to
962          * @param property
963          *            the annotation property relation. The type of the created
964          *            annotation is decided from this property relation's range
965          * @param sourceAnnotation
966          *            the annotation to copy data from or <code>null</code> if
967          *            nothing shall be copied
968          * @param name
969          *            name for newly created annotation or <code>null</code> to copy
970          *            name from source if available
971          * @return the newly created annotation resource or <code>null</code> if the
972          *         annotation property relation didn't have a single range type
973          * @throws DatabaseException
974          */
975         public static Resource createAnnotation(WriteGraph graph, Resource container, Resource property, Resource sourceAnnotation, String name) throws DatabaseException {
976
977                 Layer0 L0 = Layer0.getInstance(graph);
978                 Resource annotationType = graph.getSingleObject(property, L0.HasRange);
979                 if (annotationType == null)
980                         return null;
981
982                 return createTypedAnnotation(graph, container, property, sourceAnnotation, annotationType, name);
983
984         }
985
986         /**
987          * @param graph
988          *            database write access
989          * @param container
990          *            the container resource to attach the new annotation to
991          * @param property
992          *            the annotation property relation
993          * @param sourceAnnotation
994          *            the annotation to copy data from or <code>null</code> if
995          *            nothing shall be copied
996          * @param annotationType
997          *            the type of the new annotation
998          * @return the newly created annotation resource
999          * @throws DatabaseException
1000          */
1001         public static Resource createTypedAnnotation(WriteGraph graph, Resource container, Resource property, Resource sourceAnnotation, Resource annotationType) throws DatabaseException {
1002                 return createTypedAnnotation(graph, container, property, sourceAnnotation, annotationType, null);
1003         }
1004
1005         /**
1006          * @param graph
1007          *            database write access
1008          * @param container
1009          *            the container resource to attach the new annotation to
1010          * @param property
1011          *            the annotation property relation
1012          * @param sourceAnnotation
1013          *            the annotation to copy data from or <code>null</code> if
1014          *            nothing shall be copied
1015          * @param annotationType
1016          *            the type of the new annotation
1017          * @param name
1018          *            name for newly created annotation or <code>null</code> to copy
1019          *            name from source if available
1020          * @return the newly created annotation resource
1021          * @throws DatabaseException
1022          */
1023         public static Resource createTypedAnnotation(WriteGraph graph, Resource container, Resource property, Resource sourceAnnotation, Resource annotationType, String name) throws DatabaseException {
1024
1025                 Layer0 L0 = Layer0.getInstance(graph);
1026
1027                 Resource anno = graph.newResource();
1028
1029                 graph.claim(anno, L0.InstanceOf, null, annotationType);
1030
1031                 if (name != null)
1032                         graph.addLiteral(anno, L0.HasName, L0.NameOf, L0.String, name, Bindings.STRING);
1033
1034                 if (sourceAnnotation != null) {
1035
1036                         if (name == null) {
1037                                 String sourceName = graph.getPossibleRelatedValue(sourceAnnotation, L0.HasName, Bindings.STRING);
1038                                 if(sourceName != null) graph.addLiteral(anno, L0.HasName, L0.NameOf, L0.String, sourceName, Bindings.STRING);
1039                         }
1040
1041                         Resource sourceType = graph.getSingleType(sourceAnnotation);
1042                         List<AnnotationMap> am = getAnnotationMap(graph, annotationType, sourceType);
1043                         for (AnnotationMap a : am) {
1044                                 Resource object = graph.getSingleObject(sourceAnnotation, a.sourcePredicate);
1045                                 Collection<Resource> objectTypes = graph.getTypes(object);
1046                                 if (objectTypes.contains(L0.Literal)) {
1047                                         Object value = graph.getValue(object, a.defaultValueBinding);
1048                                         if (!ObjectUtils.objectEquals(value, a.defaultValue)) {
1049                                                 graph.addLiteral(anno, a.annotationPredicate, a.annotationPredicateInverse, a.defaultValueType, value, a.defaultValueBinding);
1050                                         }
1051                                 }
1052                         }
1053                 }
1054
1055                 if (container != null && property != null) {
1056                         graph.claim(container, property, anno);
1057                 }
1058
1059                 return anno;
1060
1061         }
1062
1063         private static class AnnotationMap {
1064
1065                 final public Resource sourcePredicate;
1066                 final public Resource sourcePredicateInverse;
1067
1068                 final public Resource annotationPredicate;
1069                 final public Resource annotationPredicateInverse;
1070
1071                 final public Resource defaultValueType;
1072                 final public Object defaultValue;
1073                 final public Binding defaultValueBinding;
1074
1075                 public AnnotationMap(Resource sp, Resource spi, Resource tp, Resource tpi, Resource defaultValueType, Object defaultValue, Binding defaultValueBinding) {
1076                         sourcePredicate = sp;
1077                         sourcePredicateInverse = spi;
1078                         annotationPredicate = tp;
1079                         annotationPredicateInverse = tpi;
1080                         this.defaultValueType = defaultValueType;
1081                         this.defaultValue = defaultValue;
1082                         this.defaultValueBinding = defaultValueBinding;
1083                 }
1084
1085         }
1086
1087         public static List<AnnotationMap> getAnnotationMap(ReadGraph graph, Resource annotationType, Resource sourceType) throws DatabaseException {
1088                 return graph.syncRequest(new AnnotationMapRequest(annotationType, sourceType), TransientCacheListener.<List<AnnotationMap>>instance());
1089         }
1090
1091         static class AnnotationMapRequest extends ResourceRead2<List<AnnotationMap>> {
1092
1093                 public AnnotationMapRequest(Resource annotationType, Resource sourceType) {
1094                         super(annotationType, sourceType);
1095                 }
1096
1097                 @Override
1098                 public List<AnnotationMap> perform(ReadGraph graph) throws DatabaseException {
1099
1100                         Layer0 L0 = Layer0.getInstance(graph);
1101
1102                         ArrayList<AnnotationMap> result = new ArrayList<AnnotationMap>(); 
1103
1104                         Map<String, Resource> annotationPredicates = new HashMap<String, Resource>();
1105                         for(Resource predicate : graph.getObjects(resource, L0.DomainOf)) {
1106                                 String name = graph.getRelatedValue(predicate, L0.HasName, Bindings.STRING);
1107                                 annotationPredicates.put(name, predicate);
1108                         }
1109                         Map<String, Resource> sourcePredicates = new HashMap<String, Resource>();
1110                         for(Resource predicate : graph.getObjects(resource2, L0.DomainOf)) {
1111                                 String name = graph.getRelatedValue(predicate, L0.HasName, Bindings.STRING);
1112                                 sourcePredicates.put(name, predicate);
1113                         }
1114
1115                         for(String key : sourcePredicates.keySet()) {
1116                                 Resource sourcePredicate = sourcePredicates.get(key);
1117                                 Resource anno = annotationPredicates.get(key);
1118                                 if(sourcePredicate != null && anno != null) {
1119                                         Resource defaultValueType = graph.getSingleObject(anno, L0.HasRange);
1120                                         Binding defaultValueBinding = null;
1121                                         Object defaultValue = null;
1122                                         Resource assertion = graph.getPossibleObject(anno, L0.HasPredicateInverse);
1123                                         if (assertion != null) {
1124                                                 Resource object = graph.getPossibleObject(assertion, L0.HasObject);
1125                                                 if (object != null) {
1126                                                         if(graph.isInstanceOf(object, L0.Literal)) {
1127                                                                 Datatype dt = graph.getDataType(object);
1128                                                                 defaultValueBinding = Bindings.getBeanBinding(dt);
1129                                                                 defaultValue = graph.getPossibleValue(object);
1130                                                         }
1131                                                 }
1132                                         }
1133                                         result.add(new AnnotationMap(
1134                                                         sourcePredicate, graph.getInverse(sourcePredicate),
1135                                                         anno, graph.getInverse(anno),
1136                                                         defaultValueType, defaultValue, defaultValueBinding));
1137                                 }
1138                         }
1139
1140                         return result;
1141
1142                 }
1143
1144         }
1145
1146         public static final String DRAWING_TEMPLATE_FORMAT    = "drawingTemplate";
1147     public static final String DRAWING_TEMPLATE_FORMAT_V1 = DRAWING_TEMPLATE_FORMAT + ":1";
1148     public static final String DRAWING_TEMPLATE_FORMAT_V2 = DRAWING_TEMPLATE_FORMAT + ":2";
1149
1150     public static Resource importDrawingTemplate(final Resource model, final File file) throws IOException, SerializationException, DatabaseException, TransferableGraphException {
1151
1152                 try {
1153
1154                         final Resource library = Simantics.sync(new WriteResultRequest<Resource>() {
1155
1156                                 @Override
1157                                 public Resource perform(WriteGraph graph) throws DatabaseException {
1158                                         
1159                                         Layer0 L0 = Layer0.getInstance(graph);
1160                                         Template2dResource TEMPLATE = Template2dResource.getInstance(graph);
1161                                         Resource root = graph.getPossibleObject(model, TEMPLATE.HasDrawingTemplateRoot);
1162                                         if(root == null) {
1163                                                 Template2dResource TEMPLATE2D = Template2dResource.getInstance(graph);
1164                                                 root = graph.newResource();
1165                                                 graph.claim(root, L0.InstanceOf, null, TEMPLATE2D.DrawingTemplateLibrary);
1166                                                 graph.claim(root, L0.InstanceOf, null, TEMPLATE2D.DrawingTemplateLibraryUI);
1167                                                 graph.claimLiteral(root, L0.HasName, L0.NameOf, L0.String, "Diagram Templates", Bindings.STRING);
1168                                                 graph.claim(root, L0.PartOf, L0.ConsistsOf, model);
1169                                                 graph.claim(model, TEMPLATE2D.HasDrawingTemplateRoot, root);
1170                                         }
1171                                         
1172                                         String name = new Path(file.getAbsolutePath()).removeFileExtension().lastSegment();
1173                                         if(name != null) {
1174                                                 Resource existing = Layer0Utils.getPossibleChild(graph, root, name);
1175                                                 if(existing != null)
1176                                                         graph.deny(root, L0.ConsistsOf, existing);
1177                                         }
1178                                         
1179                                         return root;
1180                                         
1181                                 }
1182
1183                         });
1184
1185                         final DefaultPasteImportAdvisor advisor = new DefaultPasteImportAdvisor(library);
1186
1187                         try {
1188                                 HashMap<String, FormatHandler<Object>> handlers = new HashMap<String, FormatHandler<Object>>();
1189                                 FormatHandler<Object> handler = new FormatHandler<Object>() {
1190                                         @Override
1191                                         public Binding getBinding() {
1192                                                 return TransferableGraph1.BINDING;
1193                                         }
1194
1195                                         @Override
1196                                         public Object process(DataContainer container) throws Exception {
1197                                                 TransferableGraphs.importGraph1(Simantics.getSession(), (TransferableGraph1)container.content.getValue(), 
1198                                                                 advisor, null);
1199                                                 return null;
1200                                         }
1201                                 };
1202                                 handlers.put(DRAWING_TEMPLATE_FORMAT_V1, handler);
1203                                 handlers.put(DRAWING_TEMPLATE_FORMAT_V2, handler);
1204                                 try {
1205                                         DataContainers.readFile(file, handlers);
1206                                 } catch(DataFormatException e) {
1207                                         throw new IOException(e);
1208                                 } catch(IOException e) {
1209                                         throw e;
1210                                 } catch(Exception e) {
1211                                         if(e instanceof RuntimeException)
1212                                                 throw (RuntimeException)e;
1213                                         else
1214                                                 throw new RuntimeException(e);
1215                                 }
1216
1217                         } catch(IOException e) {
1218                         }
1219
1220                         return advisor.getRoot();
1221
1222                 } catch (Throwable t) {
1223                         Logger.defaultLogError("Unexpected exception while importing diagram template.", t);
1224                 } finally {
1225                 }
1226
1227                 return null;
1228
1229         }
1230     
1231     public static Collection<Variable> getMappedVariables(ReadGraph graph, Variable source) throws DatabaseException {
1232         
1233         ArrayList<Variable> result = new ArrayList<Variable>();
1234         Resource represents = source.getPossibleRepresents(graph);
1235         if(represents == null) return Collections.emptyList();
1236         ModelingResources MOD = ModelingResources.getInstance(graph);
1237         for(Resource r : getElementCorrespondendences(graph, represents)) {
1238             result.add(Variables.getVariable(graph, r));
1239         }
1240         for(Resource r : graph.getObjects(represents, MOD.ComponentToElement)) {
1241             result.add(Variables.getVariable(graph, r));
1242         }
1243         for(Resource r : graph.getObjects(represents, MOD.DiagramToComposite)) {
1244             result.add(Variables.getVariable(graph, r));
1245         }
1246         for(Resource r : graph.getObjects(represents, MOD.CompositeToDiagram)) {
1247             result.add(Variables.getVariable(graph, r));
1248         }
1249         return result;
1250         
1251     }
1252     
1253     public static Resource getPossibleModel(ReadGraph graph, Resource resource) throws DatabaseException {
1254         
1255         PossibleModel pm = new PossibleModel(resource);
1256         Resource model = pm.perform(graph);
1257         return model;
1258     }
1259     
1260     public static Resource possibleIndexRoot(ReadGraph graph, Resource resource) throws DatabaseException {
1261         return graph.syncRequest(new PossibleIndexRoot(resource));
1262     }
1263
1264     public static Object getMonitorValue(StructuralComponent _variable, ReadGraph graph, String path) throws DatabaseException {
1265         Variable variable = ((VariableStructuralContext)_variable).variable;
1266         Variable var = variable.browse(graph, path);
1267         return var.getValue(graph);
1268     }
1269     
1270     public static void createSharedOntologyWithUI(ReadGraph graph, Variable variable, Resource baseType) throws DatabaseException {
1271         createSharedOntologyWithUI(graph, baseType);
1272     }
1273
1274     public static void createSharedOntologyWithUI(ReadGraph graph, Resource baseType) throws DatabaseException {
1275         
1276 //      Resource indexRoot_ = variable.getPossibleRepresents(graph);
1277 //      if(indexRoot_ == null) return;
1278
1279             final Map<Resource, Pair<String,ImageDescriptor>> map = new HashMap<Resource, Pair<String,ImageDescriptor>>();
1280
1281         Layer0 L0 = Layer0.getInstance(graph);
1282         SimulationResource SIMU = SimulationResource.getInstance(graph);
1283         Instances query = graph.adapt(L0.IndexRootType, Instances.class);
1284         for(Resource ontology : Layer0Utils.listOntologies(graph)) {
1285                 for(Resource type : query.find(graph, ontology)) {
1286                         if(graph.isInheritedFrom(type, SIMU.Model)) continue;
1287                         if(graph.hasStatement(type, L0.Abstract)) continue;
1288                         if(!graph.isInheritedFrom(type, baseType)) continue;
1289                         String name = graph.getPossibleRelatedValue(type, L0.HasLabel, Bindings.STRING);
1290                         if(name == null) name = graph.getRelatedValue(type, L0.HasName, Bindings.STRING);
1291                         map.put(type, new Pair<String,ImageDescriptor>(name, null));
1292                 }
1293         }
1294         
1295         Display.getDefault().asyncExec(new Runnable() {
1296                         @Override
1297                         public void run() {
1298                                 Shell shell = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell();
1299                                 CreateSharedOntologyDialog page = new CreateSharedOntologyDialog(shell, map, "Select type and name of new shared library");
1300                                 if (page.open() == Window.OK) {
1301                                         Object[] result = page.getResult();
1302                                         if (result != null && result.length == 1) {
1303                                                 final Resource res = (Resource)result[0];
1304                                                 final String name = "http://" + page.getName();
1305                                                 Simantics.getSession().asyncRequest(new WriteRequest() {
1306
1307                                                         @Override
1308                                                         public void perform(WriteGraph graph) throws DatabaseException {
1309                                                                 graph.markUndoPoint();
1310                                                                 Resource target = Simantics.applySCL("Simantics/SharedOntologies", "createSharedOntology", graph, name+"@A", res);
1311                                                                 
1312                                                                 ProjectResource PROJ = ProjectResource.getInstance(graph);
1313                                                                 Layer0 L0 = Layer0.getInstance(graph);
1314                                                                 for(Resource dep : graph.getObjects(Simantics.getProjectResource(), L0.IsLinkedTo)) {
1315                                                                         if(graph.isInstanceOf(dep, PROJ.NamespaceRequirement)) {
1316                                                                                 for(Resource req : graph.getObjects(dep, PROJ.RequiresNamespace)) {
1317                                                                                         String uri = graph.getPossibleValue(req, Bindings.STRING);
1318                                                                                         if(uri != null) {
1319                                                                                                 Resource ns = graph.getResource(uri);
1320                                                                                                 if(ns != null) {
1321                                                                                                         graph.claim(target, L0.IsLinkedTo, null, ns);
1322                                                                                                 }
1323                                                                                         }
1324                                                                                 }
1325                                                                         }
1326                                                                 }
1327                                                                 
1328                                                         }
1329                                                         
1330                                                 });
1331                                         }
1332                                 }
1333                         }
1334                 });
1335         
1336     }
1337
1338     public static void unlinkSharedOntologyWithUI(ReadGraph graph, Variable variable, final List<Resource> libraries) throws DatabaseException {
1339         
1340         final Resource indexRoot = variable.getPossibleRepresents(graph);
1341         if(indexRoot == null) return;
1342         
1343         StructuralResource2 STR = StructuralResource2.getInstance(graph);
1344
1345         final List<String> instances = new ArrayList<String>();
1346         
1347         DiagramResource DIA = DiagramResource.getInstance(graph);
1348         
1349         for(Resource library : libraries) {
1350                 for(Resource type : ModelingUtils.searchByTypeShallow(graph, library, STR.ComponentType)) {
1351                         for(Resource instance : ModelingUtils.searchByTypeShallow(graph, indexRoot, type)) {
1352                                 // TODO: haxx
1353                                 if(graph.isInstanceOf(instance, DIA.Element)) continue;
1354                                 String name = Versions.getStandardPathNameString(graph, instance);
1355                                 instances.add(name);
1356                         }
1357                 }
1358         }
1359         
1360         if(instances.isEmpty()) {
1361                 graph.getSession().asyncRequest(new WriteRequest() {
1362                         
1363                                 @Override
1364                                 public void perform(WriteGraph graph) throws DatabaseException {
1365                                 Layer0 L0 = Layer0.getInstance(graph);
1366                                 for(Resource library : libraries)
1367                                         graph.deny(indexRoot, L0.IsLinkedTo, library);
1368                                 }
1369                         
1370                 });
1371                 return;
1372         }
1373         
1374         PlatformUI.getWorkbench().getDisplay().asyncExec(new Runnable() {
1375             @Override
1376             public void run() {
1377                 
1378                 if (!PlatformUI.isWorkbenchRunning())
1379                     return;
1380
1381                 Shell shell = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell();
1382                 ListDialog<String> dialog = new ListDialog<String>(
1383                         shell,
1384                         instances,
1385                         "Cannot unlink selected libraries",
1386                         "Libraries cannot be unlinked since the following instances are referring to them.") {
1387
1388                         protected void createButtonsForButtonBar(Composite parent) {
1389                                 createButton(parent, IDialogConstants.OK_ID, IDialogConstants.OK_LABEL,true);
1390                         }
1391                         
1392                 };
1393                 int result = dialog.open();
1394                 if (result != Dialog.OK)
1395                     return;
1396
1397             }
1398         });
1399         
1400     }
1401     
1402     public static void importSharedOntology(String fileName) throws Exception {
1403         try {
1404                 DataContainer dc = DataContainers.readFile(new File(fileName));
1405                 TransferableGraph1 tg = (TransferableGraph1)dc.content.getValue(TransferableGraph1.BINDING);
1406                 Variant draftStatus = dc.metadata.get(DraftStatusBean.EXTENSION_KEY);
1407                 MigrationUtils.importSharedOntology(Simantics.getSession(), tg, draftStatus == null);
1408         } catch (Exception e) {
1409                 Logger.defaultLogError(e);
1410                 throw e;
1411         }
1412     }
1413     
1414     public static void importSharedOntologyWithUI(ReadGraph graph, final Variable variable) throws DatabaseException {
1415         
1416         Display.getDefault().asyncExec(new Runnable() {
1417
1418                         @Override
1419                         public void run() {
1420                                 IStructuredSelection sel = new StructuredSelection(variable);
1421                         openWizard(Display.getCurrent(), sel, "org.simantics.modeling.ui.sharedOntologyImportWizard");
1422                         }
1423                         
1424                 });
1425         
1426     }
1427     
1428         public static class LibraryInfo implements Comparable<LibraryInfo> {
1429                 public NamedResource library;
1430                 public DraftStatusBean draft;
1431                 public LibraryInfo(String name, Resource r, DraftStatusBean draft) {
1432                         library = new NamedResource(name, r);
1433                         this.draft = draft;
1434                 }
1435                 @Override
1436                 public int compareTo(LibraryInfo o) {
1437                         return library.compareTo(o.library);
1438                 }
1439                 @Override
1440                 public int hashCode() {
1441                         return library.hashCode();
1442                 }
1443                 @Override
1444                 public boolean equals(Object object) {
1445                 if (this == object)
1446                     return true;
1447                 else if (object == null)
1448                     return false;
1449                 else if (!(object instanceof LibraryInfo))
1450                     return false;
1451                 LibraryInfo info = (LibraryInfo)object;
1452                 return info.library.equals(library);
1453                 }
1454                 
1455         }
1456         
1457     public static void exportSharedOntologyWithUI(final Resource sharedOntology) {
1458
1459         Display.getDefault().asyncExec(new Runnable() {
1460
1461                 @Override
1462                 public void run() {
1463                         HintContext hc = new HintContext();
1464                         hc.setHint(SelectionHints.KEY_MAIN, sharedOntology);
1465                         IStructuredSelection sel = new StructuredSelection(hc);
1466                 openWizard(Display.getCurrent(), sel, "org.simantics.modeling.ui.sharedOntologyExportWizard");
1467                 }
1468                 
1469         });
1470         
1471     }
1472         
1473     public static void exportSharedOntology(IProgressMonitor monitor, RequestProcessor processor, File location, String format, int version, final LibraryInfo info) throws DatabaseException, IOException {
1474         
1475         if(monitor == null) monitor = new NullProgressMonitor();
1476         
1477         // TODO: figure out a way to make the TG go directly into a file
1478         // instead of having it all in memory at once.
1479
1480         monitor.beginTask("Exporting shared library...", 100);
1481         SimanticsClipboard clipboard = processor.syncRequest(new Read<SimanticsClipboard>() {
1482             @Override
1483             public SimanticsClipboard perform(ReadGraph graph) throws DatabaseException {
1484                 CopyHandler ch = graph.adapt(info.library.getResource(), CopyHandler.class);
1485                 SimanticsClipboardImpl clipboard = new SimanticsClipboardImpl();
1486                 ch.copyToClipboard(graph, clipboard);
1487                 return clipboard;
1488             }
1489         });
1490         
1491         TreeMap<String,Variant> metadata = getExportMetadata();
1492         DraftStatusBean draft = info.draft;
1493         if(draft != null) {
1494                 metadata.put(DraftStatusBean.EXTENSION_KEY, new Variant(DraftStatusBean.BINDING ,draft));
1495         }
1496         
1497         for (Set<Representation> object : clipboard.getContents()) {
1498                 
1499             TransferableGraph1 tg = ClipboardUtils.accept(processor, object, SimanticsKeys.KEY_TRANSFERABLE_GRAPH);
1500             monitor.worked(95);
1501             
1502             Variant edb = tg.extensions.get(ExternalDownloadBean.EXTENSION_KEY);
1503             if(edb != null) {
1504                 metadata.put(ExternalDownloadBean.EXTENSION_KEY, edb);
1505             }
1506
1507             monitor.setTaskName("Writing transferable graph...");
1508             DataContainers.writeFile(location, new DataContainer(
1509                     format, version,
1510                     metadata, new Variant(TransferableGraph1.BINDING, tg)));
1511
1512             monitor.worked(5);
1513         }
1514     }
1515
1516     public static TreeMap<String, Variant> getExportMetadata() {
1517
1518         TreeMap<String,Variant> metadata = new TreeMap<String,Variant>();
1519         metadata.put("date", Variant.ofInstance(DateFormat.getDateTimeInstance(DateFormat.FULL, DateFormat.FULL).format(new Date())));
1520         metadata.put("author", Variant.ofInstance(System.getProperty("user.name", "")));
1521
1522         return metadata;
1523         
1524     }
1525     
1526     public static void createNewVersionWithoutUI(WriteGraph graph, Resource resource) throws DatabaseException {
1527         VersionInfo info = graph.syncRequest(new VersionInfoRequest(resource));
1528         int currentVersion = Integer.parseInt(info.version);
1529         String result = Integer.toString(currentVersion + 1);
1530         createNewVersion(graph, resource, info, result);
1531     }
1532     
1533     public static void createNewVersionWithUI(ReadGraph graph, final Resource resource) throws DatabaseException {
1534         
1535         final VersionInfo info = graph.syncRequest(new VersionInfoRequest(resource));
1536         
1537         Display.getDefault().asyncExec(new Runnable() {
1538                         @Override
1539                         public void run() {
1540                                 Shell shell = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell();
1541                                 CreateVersionDialog dialog = new CreateVersionDialog(shell, info);
1542                                 if (dialog.open() == Window.OK) {
1543                                         final String result = dialog.getResult();
1544                                         Simantics.getSession().asyncRequest(new WriteRequest() {
1545                                                 @Override
1546                                                 public void perform(WriteGraph graph) throws DatabaseException {
1547                                                     createNewVersion(graph, resource, info, result);
1548                                                 }
1549                                         });
1550                                 }
1551                         }
1552                 });
1553         
1554     }
1555     
1556     public static void createNewVersion(WriteGraph graph, Resource resource, final VersionInfo info, final String result) throws DatabaseException {
1557         graph.markUndoPoint();
1558         Layer0 L0 = Layer0.getInstance(graph);
1559         Resource parent = graph.getPossibleObject(resource, L0.PartOf);
1560         if(parent == null) return;
1561         final String parentURI = graph.getPossibleURI(parent);
1562         if(parentURI == null) return;
1563         Layer0Utils.copyTo(graph, parent, resource, new PasteEventHandler() {
1564
1565             @Override
1566             public void postProcess(WriteGraph graph, Resource root) throws DatabaseException {
1567                 Layer0 L0 = Layer0.getInstance(graph);
1568                 graph.deny(root, L0.Entity_published);
1569             }
1570             
1571             @Override
1572             public IImportAdvisor2 createAdvisor(ReadGraph graph, ImportAdvisorFactory factory, Resource target) throws DatabaseException {
1573                 Map<String,Object> context = new HashMap<String,Object>();
1574                 String base = parentURI + "/" + URIStringUtils.escape( info.baseName ) + "@";
1575                 Map<String,String> renameMap = new HashMap<String,String>();
1576                 renameMap.put(base + info.version, base + result);
1577                 renameMap.put(info.baseName + "@" + info.version, info.baseName + "@" + result);
1578                 context.put(ImportAdvisors.RENAME_MAP, renameMap);
1579                 return factory.create(graph, target, context);
1580             }
1581             
1582         });
1583         Layer0Utils.addCommentMetadata(graph, "Created new version of " + info.baseName);
1584     }
1585     
1586     public static boolean isUserComponent(ReadGraph graph, Resource type) throws DatabaseException {
1587         StructuralResource2 STR = StructuralResource2.getInstance(graph);
1588         if(graph.isInstanceOf(type, STR.ProceduralComponentType)) return true;
1589         else if (graph.hasStatement(type, STR.IsDefinedBy)) return true;
1590         return false;
1591     }
1592     
1593     public static void publishComponentTypeWithUI(WriteGraph graph, final Resource componentType) throws DatabaseException {
1594
1595         Layer0 L0 = Layer0.getInstance(graph);
1596         StructuralResource2 STR = StructuralResource2.getInstance(graph);
1597         Resource composite = graph.getPossibleObject(componentType, STR.IsDefinedBy);
1598         final List<String> instances = new ArrayList<String>();
1599         if(composite != null) {
1600                 for(Resource component : graph.syncRequest(new ObjectsWithType(composite, L0.ConsistsOf, STR.Component))) {
1601                 Resource type = graph.getPossibleType(component, STR.Component);
1602                         if(type != null && isUserComponent(graph, type)) {
1603                                 if(!Layer0Utils.isPublished(graph, type)) instances.add(Versions.getStandardPathNameString(graph, component));
1604                         }
1605                 }
1606         }
1607
1608         if(instances.isEmpty()) {
1609                 graph.getSession().asyncRequest(new WriteRequest() {
1610                         
1611                                 @Override
1612                                 public void perform(WriteGraph graph) throws DatabaseException {
1613                                 graph.markUndoPoint();
1614                                 publish(graph, componentType);
1615                                 }
1616                         
1617                 });
1618                 return;
1619         }
1620         
1621         PlatformUI.getWorkbench().getDisplay().asyncExec(new Runnable() {
1622             @Override
1623             public void run() {
1624                 
1625                 if (!PlatformUI.isWorkbenchRunning())
1626                     return;
1627
1628                 Shell shell = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell();
1629                 ListDialog<String> dialog = new ListDialog<String>(
1630                         shell,
1631                         instances,
1632                         "Cannot publish user component",
1633                         "The following instances are referring to unpublished user components.") {
1634
1635                         protected void createButtonsForButtonBar(Composite parent) {
1636                                 createButton(parent, IDialogConstants.OK_ID, IDialogConstants.OK_LABEL,true);
1637                         }
1638                         
1639                 };
1640                 int result = dialog.open();
1641                 if (result != Dialog.OK)
1642                     return;
1643
1644             }
1645         });
1646         
1647     }
1648
1649     public static void publishSharedOntologyWithUI(WriteGraph graph, final Resource sharedOntology) throws DatabaseException {
1650         
1651         Layer0 L0 = Layer0.getInstance(graph);
1652         DiagramResource DIA = DiagramResource.getInstance(graph);
1653         StructuralResource2 STR = StructuralResource2.getInstance(graph);
1654         final List<String> instances = new ArrayList<String>();
1655         for(Resource type : searchByTypeShallow(graph, sharedOntology, STR.ComponentType)) {
1656                         // TODO: haxx
1657                         if(graph.isInheritedFrom(type, DIA.Element)) continue;
1658                 if(!Layer0Utils.isPublished(graph, type)) instances.add(Versions.getStandardPathNameString(graph, type));
1659         }
1660         for(Resource dep : graph.syncRequest(new ObjectsWithType(sharedOntology, L0.IsLinkedTo, L0.SharedOntology))) {
1661                 if(!Layer0Utils.isPublished(graph, dep)) instances.add(Versions.getStandardPathNameString(graph, dep));
1662         }
1663         
1664         if(instances.isEmpty()) {
1665                 graph.getSession().asyncRequest(new WriteRequest() {
1666                         
1667                                 @Override
1668                                 public void perform(WriteGraph graph) throws DatabaseException {
1669                                 graph.markUndoPoint();
1670                                 publish(graph, sharedOntology);
1671                                 }
1672                         
1673                 });
1674                 return;
1675         }
1676         
1677         PlatformUI.getWorkbench().getDisplay().asyncExec(new Runnable() {
1678             @Override
1679             public void run() {
1680                 
1681                 if (!PlatformUI.isWorkbenchRunning())
1682                     return;
1683
1684                 Shell shell = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell();
1685                 ListDialog<String> dialog = new ListDialog<String>(
1686                         shell,
1687                         instances,
1688                         "Cannot publish shared library",
1689                         "The following dependencies are unpublished.") {
1690
1691                         protected void createButtonsForButtonBar(Composite parent) {
1692                                 createButton(parent, IDialogConstants.OK_ID, IDialogConstants.OK_LABEL,true);
1693                         }
1694                         
1695                 };
1696                 int result = dialog.open();
1697                 if (result != Dialog.OK)
1698                     return;
1699
1700             }
1701         });
1702         
1703     }
1704
1705     
1706     public static void createSCLModuleDefault(WriteGraph graph, Resource target) throws DatabaseException {
1707         String name = NameUtils.findFreshEscapedName(graph, "SCLModule", target);
1708         createSCLModule(graph, target, name);
1709     }
1710
1711     public static void createSCLModule(WriteGraph graph, Resource target, String name) throws DatabaseException {
1712         graph.markUndoPoint();
1713         Layer0 L0 = Layer0.getInstance(graph);
1714         Resource sclModule = GraphUtils.create2(graph, L0.SCLModule,
1715                 L0.HasName, name,
1716                 L0.PartOf, target,
1717                 L0.SCLModule_definition, "");
1718         Layer0Utils.addCommentMetadata(graph, "Created SCL Module " + name + " " + sclModule.toString());
1719     }
1720
1721     public static void createPGraphDefault(WriteGraph graph, Resource target) throws DatabaseException {
1722         String name = NameUtils.findFreshEscapedName(graph, "Ontology Definition File", target);
1723         createPGraph(graph, target, name);
1724     }
1725
1726     public static void createPGraph(WriteGraph graph, Resource target, String name) throws DatabaseException {
1727         graph.markUndoPoint();
1728         Layer0 L0 = Layer0.getInstance(graph);
1729         Resource file = GraphUtils.create2(graph, L0.PGraph,
1730                 L0.HasName, name,
1731                 L0.PartOf, target,
1732                 L0.PGraph_definition, "");
1733         Layer0Utils.addCommentMetadata(graph, "Created Ontology Definition File " + name + " " + file.toString());
1734     }
1735     
1736     public static void publish(WriteGraph graph, Resource target) throws DatabaseException {
1737         Layer0 L0 = Layer0.getInstance(graph);
1738         graph.claimLiteral(target, L0.Entity_published, true, Bindings.BOOLEAN);
1739         Layer0Utils.addCommentMetadata(graph, "Published " + graph.getPossibleRelatedValue2(target, L0.HasName, Bindings.STRING) + " " + target.toString());
1740     }
1741
1742     public static boolean isLinkedToDeep(ReadGraph graph, Resource r1, Resource r2) throws DatabaseException {
1743         return graph.syncRequest(new IsLinkedTo(r1, r2));
1744     }
1745     
1746     public static void openWizard(Display display, IStructuredSelection selection, String id) {
1747         // First see if this is a "new wizard".
1748         IWizardDescriptor descriptor = PlatformUI.getWorkbench()
1749                         .getNewWizardRegistry().findWizard(id);
1750         // If not check if it is an "import wizard".
1751         if  (descriptor == null) {
1752                 descriptor = PlatformUI.getWorkbench().getImportWizardRegistry()
1753                                 .findWizard(id);
1754         }
1755         // Or maybe an export wizard
1756         if  (descriptor == null) {
1757                 descriptor = PlatformUI.getWorkbench().getExportWizardRegistry()
1758                                 .findWizard(id);
1759         }
1760         try  {
1761                 // Then if we have a wizard, open it.
1762                 if  (descriptor != null) {
1763                         IWorkbenchWizard wizard = descriptor.createWizard();
1764                         wizard.init(PlatformUI.getWorkbench(), selection);
1765                         WizardDialog wd = new  WizardDialog(display.getActiveShell(), wizard);
1766                         wd.setTitle(wizard.getWindowTitle());
1767                         wd.open();
1768                 }
1769         } catch  (CoreException e) {
1770                 e.printStackTrace();
1771         }
1772     }
1773     
1774     public static String withinEpsilon(double value, double reference, double epsilon) {
1775         if(Math.abs(value-reference) < epsilon) return "True";
1776         else return "Not within epsilon value=" + value + ", reference=" + reference + " , epsilon=" + epsilon; 
1777     }
1778     
1779     public static boolean needsIdentifier(ReadGraph graph, Resource r) throws DatabaseException {
1780         Layer0 L0 = Layer0.getInstance(graph);
1781         Collection<Resource> types = graph.getPrincipalTypes(r);
1782         for(Resource type : types)
1783                 if(graph.syncRequest(new IsInstanceOf(type, L0.TypeWithIdentifier), TransientCacheAsyncListener.<Boolean>instance()))
1784                                 return true;
1785         return false;
1786     }
1787
1788     public static boolean needsModificationInfo(ReadGraph graph, Resource r) throws DatabaseException {
1789         ModelingResources MOD = ModelingResources.getInstance(graph);
1790         Collection<Resource> types = graph.getPrincipalTypes(r);
1791         for(Resource type : types)
1792                 if(graph.syncRequest(new IsInstanceOf(type, MOD.TypeWithChangeInformation), TransientCacheAsyncListener.<Boolean>instance()))
1793                                 return true;
1794         return false;
1795     }
1796
1797     public static void attachCreationInformation(IProgressMonitor monitor, WriteGraph graph, Resource model) throws DatabaseException {
1798         
1799         if(monitor == null) monitor = new NullProgressMonitor();
1800         
1801         final String author = System.getProperty("user.name", "");
1802         final long time = System.currentTimeMillis();
1803         
1804         monitor.setTaskName("Attach creation information");
1805
1806         ModelingResources MOD = ModelingResources.getInstance(graph);
1807         Collection<Resource> rs = ModelingUtils.searchByType(graph, model, MOD.TypeWithChangeInformation);
1808         Collection<Resource> supers = ModelingUtils.getMostUnspecificTypes(graph, rs);
1809         
1810         CollectionSupport cs = graph.getService(CollectionSupport.class);
1811         Collection<Resource> set = cs.createSet();
1812         for(Resource type : supers) {
1813                 set.addAll(ModelingUtils.searchByTypeShallow(graph, model, type));
1814         }
1815         Collection<Resource> instances = Layer0Utils.sortByCluster(graph, set);
1816
1817         int pc = instances.size() / 100;
1818         int done = 0;
1819         int stint = pc;
1820
1821         for(Resource instance : instances) {
1822                 ChangeInformation info = graph.getPossibleRelatedValue(instance, MOD.changeInformation, ChangeInformation.BINDING);
1823                 if(info == null) {
1824                         info = new ChangeInformation();
1825                         info.createdAt = time;
1826                         info.createdBy = author;
1827                         info.modifiedAt = time;
1828                         info.modifiedBy = author;
1829                         graph.claimLiteral(instance, MOD.changeInformation, MOD.changeInformation_Inverse, MOD.ChangeInformation, info, ChangeInformation.BINDING);
1830                 }
1831                 done++;
1832                 stint--;
1833                 if(stint == 0) {
1834                         Double d = (100.0*done)/instances.size();
1835                         monitor.setTaskName("Attach creation information " +  d.intValue() + "%");
1836                         stint = pc;
1837                 }
1838         }
1839         
1840                 monitor.setTaskName("Attach creation information - commit");
1841         
1842     }
1843
1844     public static class DiagramComponentInfo {
1845
1846         private static String CHILD_PREFIX             = "child:";
1847
1848                 final private String compositePathAndName;
1849                 final private String componentName;
1850                 final private GUID guid;
1851                 
1852                 public DiagramComponentInfo(String compositePathAndName, String componentName, GUID guid) {
1853                         this.compositePathAndName = compositePathAndName;
1854                         this.componentName = componentName;
1855                         this.guid = guid;
1856                 }
1857                 
1858                 public static boolean isDiagramComponent(String tgName) {
1859                         return tgName.startsWith(CHILD_PREFIX);
1860                 }
1861
1862                 public String getTGName(CompositeInfo info) {
1863                         return CHILD_PREFIX + info.getOriginalPath() + ModelingUtils.COMPOSITE_SEPARATOR_CHAR + info.getEscapedName() + ModelingUtils.COMPOSITE_SEPARATOR_CHAR + getEscapedComponentName() + ModelingUtils.COMPOSITE_SEPARATOR_CHAR + guid.indexString();
1864                 }
1865                 
1866                 public boolean existsGUID(ReadGraph graph, Resource indexRoot) throws DatabaseException {
1867                         Collection<Resource> res = ModelingUtils.searchByGUID(graph, indexRoot, guid);
1868                         return !res.isEmpty();
1869                 }
1870
1871                 public static DiagramComponentInfo fromResource(ReadGraph graph, CompositeInfo info, Resource resource) throws DatabaseException {
1872                         Layer0 L0 = Layer0.getInstance(graph);
1873                 GUID childId = graph.getRelatedValue(resource, L0.identifier, GUID.BINDING);
1874             String childName = graph.getRelatedValue(resource, L0.HasName, Bindings.STRING);
1875             return new DiagramComponentInfo(info.getStateKey(), URIStringUtils.escape(childName), childId);
1876                 }
1877                 
1878                 public GUID getGUID() {
1879                         return guid;
1880                 }
1881                 
1882                 public String getEscapedCompositePathAndName() {
1883                         return compositePathAndName;
1884                 }
1885                 
1886                 public String getEscapedComponentName() {
1887                         return componentName;
1888                 }
1889                 
1890                 public String getUnescapedComponentName() {
1891                         return URIStringUtils.unescape(getEscapedComponentName());
1892                 }
1893                 
1894                 // "child:path#compositeName#componentName#guid"
1895                 public static DiagramComponentInfo parse(String tgName) {
1896                         
1897             String name = tgName.substring(CHILD_PREFIX.length());
1898             String compositePathAndName = "";
1899             String moduleName = name;
1900             GUID guid = GUID.invalid();
1901             int lastHash = name.lastIndexOf(ModelingUtils.COMPOSITE_SEPARATOR_CHAR);
1902             if(lastHash >= 0) {
1903                 String first = name.substring(0, lastHash);
1904                 String second = name.substring(lastHash+1);
1905                 lastHash = first.lastIndexOf(ModelingUtils.COMPOSITE_SEPARATOR_CHAR);
1906                 if(lastHash >= 0) {
1907                         compositePathAndName = first.substring(0, lastHash);
1908                         moduleName = first.substring(lastHash+1);
1909                         guid = GUID.parseIndexString(second);
1910                 } else {
1911                         compositePathAndName = first;
1912                         moduleName = second;
1913                 }
1914             }
1915             return new DiagramComponentInfo(compositePathAndName, moduleName, guid); 
1916                         
1917                 }
1918
1919
1920         @Override
1921                 public int hashCode() {
1922                         final int prime = 31;
1923                         int result = 1;
1924                         result = prime * result + ((compositePathAndName == null) ? 0 : compositePathAndName.hashCode());
1925                         result = prime * result + ((componentName == null) ? 0 : componentName.hashCode());
1926                         return result;
1927                 }
1928
1929                 @Override
1930                 public boolean equals(Object obj) {
1931                         if (this == obj)
1932                                 return true;
1933                         if (obj == null)
1934                                 return false;
1935                         if (getClass() != obj.getClass())
1936                                 return false;
1937                         DiagramComponentInfo other = (DiagramComponentInfo) obj;
1938                         if (compositePathAndName == null) {
1939                                 if (other.compositePathAndName != null)
1940                                         return false;
1941                         } else if (!compositePathAndName.equals(other.compositePathAndName))
1942                                 return false;
1943                         if (componentName == null) {
1944                                 if (other.componentName != null)
1945                                         return false;
1946                         } else if (!componentName.equals(other.componentName))
1947                                 return false;
1948                         return true;
1949                 }
1950                 
1951     }
1952     
1953         public static class CompositeInfo {
1954
1955             public static String COMPOSITE_PREFIX         = "composite:";
1956
1957                 final private boolean useGuids;
1958                 final private boolean applyPaths;
1959                 final private String path;
1960                 final private String name;
1961                 final private GUID guid;
1962                 
1963                 private CompositeInfo(boolean useGuids, boolean applyPaths, String path, String name, GUID guid) {
1964                         this.useGuids = useGuids;
1965                         this.applyPaths = applyPaths;
1966                         this.path = path;
1967                         this.name = name;
1968                         this.guid = guid;
1969                 }
1970
1971                 @Override
1972                 public String toString() {
1973                         return "CompositeInfo[useGuids=" + useGuids + ", applyPaths=" + applyPaths + ", path=" + path + ", name=" + name + ", guid=" + guid.indexString() + "]";
1974                 }
1975
1976                 public static boolean isComposite(String tgName) {
1977                         return tgName.startsWith(COMPOSITE_PREFIX);
1978                 }
1979
1980                 public String getTGName() {
1981                         return COMPOSITE_PREFIX + getOriginalPath() + ModelingUtils.COMPOSITE_SEPARATOR_CHAR + getEscapedName() + ModelingUtils.COMPOSITE_SEPARATOR_CHAR + guid.indexString();
1982                 }
1983                 
1984                 public boolean existsGUID(ReadGraph graph, Resource indexRoot) throws DatabaseException {
1985                         Collection<Resource> res = ModelingUtils.searchByGUID(graph, indexRoot, guid);
1986                         return !res.isEmpty();
1987                 }
1988
1989                 public static CompositeInfo fromResource(ReadGraph graph, Resource resource) throws DatabaseException {
1990                         
1991                         Layer0 L0 = Layer0.getInstance(graph);
1992             GUID rootId = graph.getRelatedValue(resource, L0.identifier, GUID.BINDING);
1993             String rootName = graph.getRelatedValue(resource, L0.HasName, Bindings.STRING);
1994             String escapedRootName = URIStringUtils.escape(rootName);
1995             String escapedPath = ModelingUtils.getDiagramCompositePath(graph, resource);
1996             return new CompositeInfo(true, true, escapedPath, escapedRootName, rootId);
1997                         
1998                 }
1999
2000             public static CompositeInfo parse(String tgName) {
2001                 return parse(tgName, true, true);
2002             }
2003
2004             /*
2005              * Index 0 is root-relative folder path separated with '/' or null if target-relative positioning is used
2006              * Index 1 is diagram name
2007              */
2008             public static CompositeInfo parse(String tgName, boolean applyPaths, boolean useGuids) {
2009                 if(!tgName.startsWith(COMPOSITE_PREFIX)) return null;
2010                 tgName = tgName.substring(COMPOSITE_PREFIX.length());
2011                 if(!tgName.contains(COMPOSITE_SEPARATOR)) {
2012                         if(useGuids) throw new IllegalStateException("GUID identifiers were not found for diagrams.");
2013                         return new CompositeInfo(useGuids, applyPaths, null, tgName, null);
2014                 }
2015                 String[] parts = tgName.split(COMPOSITE_SEPARATOR);
2016                 if(parts.length == 2) {
2017                         String name = parts[1];
2018                         String path = applyPaths ? parts[0] : null;
2019                         if(useGuids) throw new IllegalStateException("GUID identifiers were not found for diagrams.");
2020                         return new CompositeInfo(useGuids, applyPaths, path, name, null);
2021                 } else if(parts.length == 3) {
2022                         String path = parts[0];
2023                         String name = parts[1];
2024                         GUID guid = GUID.parseIndexString(parts[2]);
2025                         return new CompositeInfo(useGuids, applyPaths, path, name, guid);
2026                 } else {
2027                         return null;
2028                 }
2029             }
2030
2031                 public GUID getGUID() {
2032                         return guid;
2033                 }
2034
2035                 public String getEscapedName() {
2036                         return name;
2037                 }
2038                 
2039                 public String getUnescapedName() {
2040                         return URIStringUtils.unescape(name);
2041                 }
2042                 
2043                 public String getOriginalPath() {
2044                         return path;
2045                 }
2046                 
2047                 public String getFinalPath() {
2048                         if(applyPaths) return path;
2049                         else return null;
2050                 }
2051                 
2052                 public CompositeInfo renamed(String newName) {
2053                         return new CompositeInfo(useGuids, applyPaths, path, newName, guid);
2054                 }
2055                 
2056                 public String getStateKey() {
2057                         return path + "#" + getEscapedName();
2058                 }
2059                 
2060                 private Resource getFromFolder(ReadGraph graph, Resource target) throws DatabaseException {
2061             Resource diagram = Layer0Utils.getPossibleChild(graph, target, URIStringUtils.unescape(name));
2062             if(diagram == null) return null;
2063             StructuralResource2 STR = StructuralResource2.getInstance(graph);
2064             return graph.isInstanceOf(diagram, STR.Composite) ? diagram : null;
2065                 }
2066                 
2067                 public Resource resolve(ReadGraph graph, Resource target) throws DatabaseException {
2068
2069                         if(useGuids && guid != null) {
2070                                 Resource indexRoot = graph.syncRequest(new IndexRoot(target));
2071                                 Collection<Resource> queryResult = searchByGUID(graph, indexRoot, guid);
2072                                 if(queryResult.size() == 1) {
2073                                         Resource composite = queryResult.iterator().next(); 
2074                             StructuralResource2 STR = StructuralResource2.getInstance(graph);
2075                             if(!graph.isInstanceOf(composite, STR.Composite)) return null;
2076                             return composite;
2077                                 }
2078                         }
2079                         
2080                         if(applyPaths) {
2081                                 Resource folder = resolveFolder(graph, target);
2082                                 if(folder == null) return null;
2083                         return getFromFolder(graph, folder);
2084                         } else {
2085                         return getFromFolder(graph, target);
2086                         }
2087                         
2088                 }
2089                 
2090                 public Resource resolveFolder(ReadGraph graph, Resource target) throws DatabaseException {
2091                         
2092                         String path = getFinalPath();
2093                         if(path == null) return target;
2094                         
2095                 Resource folder = graph.syncRequest(new Configuration(target));
2096                 String[] segments = path.split("/");
2097                 for(int i=0;i<segments.length;i++) {
2098                         if(segments[i].isEmpty()) continue;
2099                         folder = Layer0Utils.getPossibleChild(graph, folder, URIStringUtils.unescape(segments[i]));
2100                         if(folder == null) return null;
2101                 }
2102                 
2103                 return folder;
2104                         
2105                 }
2106                 
2107                 
2108                 @Override
2109                 public int hashCode() {
2110                         
2111                         if(useGuids) return guid.hashCode();
2112                         
2113                         final int prime = 31;
2114                         int result = name.hashCode();
2115                         result = prime * result + ((path == null) ? 0 : path.hashCode());
2116                         return result;
2117                         
2118                 }
2119
2120                 @Override
2121                 public boolean equals(Object obj) {
2122                         
2123                         if (this == obj)
2124                                 return true;
2125                         if (obj == null)
2126                                 return false;
2127                         if (getClass() != obj.getClass())
2128                                 return false;
2129                         
2130                         CompositeInfo other = (CompositeInfo) obj;
2131                         
2132                         if(useGuids) return guid.equals(other.guid);
2133                         
2134                         if (!name.equals(other.name))
2135                                 return false;
2136                         
2137                         if(applyPaths)
2138                                 if (!path.equals(other.path))
2139                                         return false;
2140                         
2141                         return true;
2142                         
2143                 }
2144                 
2145         }
2146         
2147     public static char   COMPOSITE_SEPARATOR_CHAR = '#';
2148     public static String COMPOSITE_SEPARATOR      = String.valueOf(COMPOSITE_SEPARATOR_CHAR);
2149     
2150     public static CompositeInfo parseCompositeNameFromRoot(Root root, boolean applyPaths, boolean useGuids) {
2151         return CompositeInfo.parse(root.name, applyPaths, useGuids);
2152     }
2153
2154     public static CompositeInfo parseCompositeNameFromRoot(Identity root, boolean applyPaths, boolean useGuids) {
2155         String coded = TransferableGraphUtils.getName(root);
2156         return CompositeInfo.parse(coded, applyPaths, useGuids);
2157     }
2158     
2159         private static StringBuilder getDiagramCompositePathInternal(ReadGraph graph, Resource folder, StringBuilder builder) throws DatabaseException {
2160                 SimulationResource SIMU = SimulationResource.getInstance(graph);
2161                 Resource model = graph.getPossibleObject(folder, SIMU.IsConfigurationOf);
2162                 if (model != null) return builder;
2163
2164                 Layer0 L0 = Layer0.getInstance(graph);
2165                 String name = graph.getPossibleRelatedValue(folder, L0.HasName, Bindings.STRING);
2166                 if (name == null) return null;
2167                 Resource parent = graph.getPossibleObject(folder, L0.PartOf);
2168                 if (parent == null) return null;
2169
2170                 StringBuilder sb = getDiagramCompositePathInternal(graph, parent, builder);
2171                 if (sb == null) return null;
2172                 if (sb.length() > 0)
2173                         sb.append(URIStringUtils.NAMESPACE_PATH_SEPARATOR);
2174                 sb.append( URIStringUtils.escape(name) );
2175                 return sb;
2176         }
2177
2178         /**
2179          * @param graph
2180          * @param diagram
2181          * @return diagram/folder path up until model configuration root with each
2182          *         segment escaped using {@link URIStringUtils#escape(String)} and
2183          *         {@value URIStringUtils#NAMESPACE_PATH_SEPARATOR} between each
2184          *         segment or <code>null</code> if the specified diagram composite
2185          *         is not part of any model configuration structure.
2186          * @throws DatabaseException
2187          */
2188         public static String getDiagramCompositePath(ReadGraph graph, Resource diagram) throws DatabaseException {
2189                 Layer0 L0 = Layer0.getInstance(graph);
2190                 Resource parent = graph.getPossibleObject(diagram, L0.PartOf);
2191                 if(parent == null) return null;
2192                 StringBuilder sb = getDiagramCompositePathInternal(graph, parent, new StringBuilder());
2193                 return sb != null ? sb.toString() : null;
2194         }
2195         
2196         public static void exportModel(ReadGraph graph, Resource model, String fileName, String format, int version) throws DatabaseException {
2197         
2198                 try {
2199                         TransferableGraphConfiguration2 conf = new TransferableGraphConfiguration2(graph, model, true, false);
2200                 TransferableGraphSource s = graph.syncRequest(new ModelTransferableGraphSourceRequest(conf));
2201                         TransferableGraphs.writeTransferableGraph(graph, format, version, s, new File(fileName));
2202                 } catch (Exception e) {
2203                         throw new DatabaseException(e);
2204                 }
2205
2206         }
2207
2208         public static void exportSharedOntology(ReadGraph graph, Resource library, String fileName, String format, int version) throws DatabaseException {
2209                 
2210         Layer0 L0 = Layer0.getInstance(graph);
2211         String name = graph.getRelatedValue(library, L0.HasName, Bindings.STRING);
2212
2213         DraftStatusBean draft = null;
2214         boolean published = Layer0Utils.isPublished(graph, library);
2215         if(!published) draft = new DraftStatusBean(new String[0]);
2216         
2217         LibraryInfo info = new LibraryInfo(name, library, draft);
2218                 
2219         try {
2220                         exportSharedOntology(new NullProgressMonitor(), graph, new File(fileName), format, version, info);
2221                 } catch (IOException e) {
2222                         throw new DatabaseException(e);
2223                 }
2224
2225         }
2226
2227     public static DraftStatusBean getDependencyDraftStatus(ReadGraph graph, Resource library) throws DatabaseException {
2228         Layer0 L0 = Layer0.getInstance(graph);
2229         List<String> drafts = new ArrayList<>();
2230         for (Resource shared : graph.syncRequest(new ObjectsWithType(library, L0.IsLinkedTo, L0.SharedOntology))) {
2231             boolean published = Layer0Utils.isPublished(graph, shared);
2232             if (!published)
2233                 drafts.add(graph.getURI(shared));
2234         }
2235         return drafts.isEmpty() ? null : new DraftStatusBean(drafts);
2236     }
2237
2238         public static Set<Resource> getMostUnspecificTypes(final ReadGraph graph, Collection<Resource> types) throws DatabaseException {
2239                 
2240                 final Set<Resource> work = new HashSet<Resource>(types);
2241                 for(Resource type : types) {
2242                         Set<Resource> supers = graph.getSupertypes(type);
2243                         if(!Collections.disjoint(supers, work)) work.remove(type);
2244                 }
2245
2246                 return work;
2247                 
2248         }
2249         
2250         public static void rewriteGUIDS(WriteGraph graph, Resource root, boolean deep) throws DatabaseException {
2251                 List<Resource> todo = new ArrayList<Resource>();
2252                 todo.add(root);
2253                 Layer0 L0 = Layer0.getInstance(graph);
2254                 while(!todo.isEmpty()) {
2255                         Resource resource = todo.remove(todo.size()-1);
2256             graph.claimLiteral(resource, L0.identifier, L0.GUID, GUID.random(), GUID.BINDING);
2257             if(deep)
2258                 todo.addAll(graph.getObjects(resource, L0.ConsistsOf));
2259                 }
2260         }
2261         
2262         public static void createMissingGUIDs(IProgressMonitor monitor, WriteGraph graph, Collection<Resource> roots) throws DatabaseException {
2263                 
2264         if(monitor == null) monitor = new NullProgressMonitor();
2265         
2266                 Layer0 L0 = Layer0.getInstance(graph);
2267                 
2268         // Allow this process to make 50k queries
2269         QueryMemoryWatcher memory = new QueryMemoryWatcher(graph, 50000);
2270
2271                 for(Resource root : roots) {
2272                         
2273                         boolean madeChanges = false;
2274                         
2275                 monitor.setTaskName("Creating missing GUID identifiers " + NameUtils.getSafeName(graph, root));
2276                         Resource indexRoot = graph.syncRequest(new PossibleIndexRoot(root));
2277                         for(Resource r : searchByType(graph, indexRoot, L0.Entity)) {
2278
2279                                 memory.maintain();
2280
2281                                 if(graph.isImmutable(r)) continue;
2282
2283                                 if(!ModelingUtils.needsIdentifier(graph, r)) continue;
2284                                 
2285                                 GUID existing = graph.getPossibleRelatedValue(r, L0.identifier, GUID.BINDING);
2286                                 if(existing == null) {
2287                                         graph.addLiteral(r, L0.identifier, L0.identifier_Inverse, L0.GUID, GUID.random(), GUID.BINDING);
2288                                         madeChanges = true;
2289                                 }
2290                                 
2291                         }
2292                         
2293                         if(madeChanges)
2294                                 ModelingUtils.deleteIndex(graph, root);
2295                         
2296                 }
2297                 
2298                 
2299         }
2300         
2301         public static boolean activateModel(WriteGraph graph, Resource model) throws DatabaseException {
2302                 return graph.syncRequest(new ActivateModel(Simantics.getProjectResource(), model));
2303         }
2304         
2305         public static File fileDialog(String title, List<Tuple> namesAndExtensions) {
2306                 
2307                 Display display = Display.getCurrent();
2308                 Shell shell = display.getActiveShell();
2309                 
2310         FileDialog dialog = new FileDialog(shell, SWT.OPEN);
2311         dialog.setText(title);
2312         
2313         String[] extensions = new String[namesAndExtensions.size()];
2314         String[] filterNames = new String[namesAndExtensions.size()];
2315         int index = 0;
2316         for(Tuple t : namesAndExtensions) {
2317                 String filterName = (String)t.get(0);
2318                 String extension = (String)t.get(1);
2319                 filterNames[index] = filterName;
2320                 extensions[index] = extension;
2321                 index++;
2322         }
2323         
2324         dialog.setFilterExtensions(extensions);
2325         dialog.setFilterNames(filterNames);
2326         final String fileName = dialog.open();
2327         if (fileName == null) return null;
2328         
2329         return new File(fileName);
2330
2331         }
2332         
2333         public static Resource createLibrary(WriteGraph graph, Resource parent) throws DatabaseException {
2334         Layer0 l0 = Layer0.getInstance(graph);
2335         return createLibrary(graph, parent, NameUtils.findFreshName(graph, "Library", parent, l0.ConsistsOf));
2336     }
2337     
2338     public static Resource createLibrary(WriteGraph graph, Resource parent, String name) throws DatabaseException {
2339         graph.markUndoPoint();
2340         Layer0 l0 = Layer0.getInstance(graph);
2341
2342         Resource library = graph.newResource();
2343         graph.claim(library, l0.InstanceOf, null, l0.Library);
2344         graph.addLiteral(library, l0.HasName, l0.NameOf, l0.String, name, Bindings.STRING);
2345         graph.claim(library, l0.PartOf, parent);
2346
2347         Layer0Utils.addCommentMetadata(graph, "Created new Library named " + name + ", resource " + library);
2348
2349         return library;
2350     }
2351
2352
2353 }