]> gerrit.simantics Code Review - simantics/sysdyn.git/blob
0ddf1a3b8ea2295c99bc7f38acdbadd73bc0934a
[simantics/sysdyn.git] /
1 /*******************************************************************************\r
2  * Copyright (c) 2010, 2011 Association for Decentralized Information Management in\r
3  * Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.sysdyn.ui.handlers.newComponents;\r
13 \r
14 import java.util.UUID;\r
15 \r
16 import org.eclipse.core.commands.AbstractHandler;\r
17 import org.eclipse.core.commands.ExecutionEvent;\r
18 import org.eclipse.core.commands.ExecutionException;\r
19 import org.eclipse.jface.viewers.ISelection;\r
20 import org.eclipse.ui.handlers.HandlerUtil;\r
21 import org.simantics.db.ReadGraph;\r
22 import org.simantics.db.Resource;\r
23 import org.simantics.db.WriteGraph;\r
24 import org.simantics.db.common.request.WriteRequest;\r
25 import org.simantics.db.common.utils.NameUtils;\r
26 import org.simantics.db.exception.DatabaseException;\r
27 import org.simantics.layer0.Layer0;\r
28 import org.simantics.layer0.utils.direct.GraphUtils;\r
29 import org.simantics.sysdyn.SysdynResource;\r
30 import org.simantics.sysdyn.ui.browser.nodes.ExperimentsFolder;\r
31 import org.simantics.ui.SimanticsUI;\r
32 import org.simantics.utils.ui.AdaptionUtils;\r
33 \r
34 /**\r
35  * Creates a new normal SysDyn experiment\r
36  * \r
37  * @author Teemu Lempinen\r
38  *\r
39  */\r
40 public class NewExperimentNodeHandler extends AbstractHandler {\r
41 \r
42     /**\r
43      * Assumes that it is called from a node that has a SysDyn model as its resource.\r
44      */\r
45     @Override\r
46     public Object execute(ExecutionEvent event) throws ExecutionException {\r
47         ISelection sel = HandlerUtil.getCurrentSelection(event);\r
48         \r
49         ExperimentsFolder node = AdaptionUtils.adaptToSingle(sel, ExperimentsFolder.class);\r
50         if (node == null)\r
51             return null;\r
52 \r
53         final Resource model = node.data;\r
54 \r
55         SimanticsUI.getSession().asyncRequest(new WriteRequest() {\r
56 \r
57             @Override\r
58             public void perform(WriteGraph g) throws DatabaseException {\r
59                 Layer0 l0 = Layer0.getInstance(g);\r
60                 String label = NameUtils.findFreshName(g, getNameSuggestion(), model, l0.ConsistsOf, l0.HasLabel, "%s%d");\r
61                 Resource experiment = GraphUtils.create2(g, getExperimentType(g),\r
62                         l0.HasName, UUID.randomUUID().toString(),\r
63                         l0.HasLabel, label,\r
64                         l0.PartOf, model);\r
65                 configureExperiment(g, experiment);\r
66             }\r
67         });\r
68         return null;\r
69     }\r
70     \r
71     /**\r
72      * Override to do experiment-specific alterations\r
73      */\r
74     protected void configureExperiment(WriteGraph graph, Resource experiment) throws DatabaseException {\r
75         \r
76     }\r
77     \r
78     /**\r
79      * Get the type of this experiment.\r
80      * \r
81      * @param g ReadGraph\r
82      * @return The type resource of this experiment\r
83      */\r
84     protected Resource getExperimentType(ReadGraph g) {\r
85         return SysdynResource.getInstance(g).BasicExperiment;\r
86     }\r
87     \r
88     /**\r
89      * Returns the suggested name for this experiment.\r
90      * If the name has already been taken, appropriate prefix needs to be added. \r
91      *  \r
92      * @return Suggested name for this experiment. \r
93      */\r
94     protected String getNameSuggestion() {\r
95         return "Experiment";\r
96     }\r
97 \r
98 }\r