Salome HOME
95fd4cbfd00c9a6f6c52b21a64ac479ff17aeb3d
[tools/siman.git] / Workspace / Siman / src / org / splat / simer / NewStudyAction.java
1 package org.splat.simer;
2
3 import java.util.List;
4 import java.util.ResourceBundle;
5
6 import org.splat.dal.bo.som.Scenario;
7 import org.splat.dal.bo.som.SimulationContext;
8 import org.splat.dal.bo.som.SimulationContextType;
9 import org.splat.dal.bo.som.Study;
10 import org.splat.kernel.InvalidPropertyException;
11 import org.splat.kernel.MissedPropertyException;
12 import org.splat.kernel.MultiplyDefinedException;
13 import org.splat.service.ScenarioService;
14 import org.splat.service.SimulationContextService;
15 import org.splat.wapp.Constants;
16
17 /**
18  * Action for creation of a new study.
19  */
20 public class NewStudyAction extends Action {
21
22         /**
23          * Serial version ID.
24          */
25         private static final long serialVersionUID = 693943641800113782L;
26         /**
27          * Sequential number of the new study for appending to its default title.
28          */
29         private static int number = 0;
30
31         /**
32          * Title of the new study.
33          */
34         private String _title = null;
35         /**
36          * List of available project contexts for selection for the new study.
37          */
38         private transient List<SimulationContext> _contelm = null;
39         /**
40          * Project context.
41          */
42         private String _projectContext = null;
43
44         /**
45          * Injected simulation context service.
46          */
47         private SimulationContextService _simulationContextService;
48         /**
49          * Injected scenario service.
50          */
51         private ScenarioService _scenarioService;
52
53         // ==============================================================================================================================
54         // Action methods
55         // ==============================================================================================================================
56
57         /**
58          * Fill the values of the drop-down list, and initialize a menu.
59          * 
60          * @return SUCCESS
61          */
62         public String doInitialize() {
63
64                 // get the list of the simulation contexts of the study
65                 _contelm = getSimulationContextService().getSimulationContextList();
66
67                 // set the default name of the new study
68                 ResourceBundle locale = ResourceBundle.getBundle("labels",
69                                 getApplicationSettings().getCurrentLocale());
70                 _title = locale.getString("label.study") + " "
71                                 + String.valueOf(number + 1);
72
73                 initializationFullScreenContext(Constants.CREATE_MENU, Constants.NONE,
74                                 Constants.OPEN);
75
76                 return SUCCESS;
77         }
78
79         /**
80          * Create a new study.
81          * 
82          * @return SUCCESS if the new study is created, INPUT if project context is not defined, ERROR if failed
83          * @throws InvalidPropertyException
84          *             if some property has invalid value
85          * @throws MultiplyDefinedException
86          *             if some property is defined several times
87          * @throws MissedPropertyException
88          *             if properties of the new study are invalid
89          */
90         public String doCreate() throws InvalidPropertyException,
91                         MissedPropertyException, MultiplyDefinedException {
92                 String[] input = _projectContext.split(",");
93                 int valid = Integer.valueOf(input[0]);
94                 String value = ""; // input[1] if exists
95
96                 Study.Properties sprop = new Study.Properties();
97
98                 // Check arguments and creation of the study
99                 if (valid == -1) {
100                         SimulationContext.Properties cprop = new SimulationContext.Properties();
101                         SimulationContextType product = getSimulationContextService()
102                                         .selectType("product");
103                         _contelm = getSimulationContextService()
104                                         .selectSimulationContextsWhere(cprop.setType(product));
105                         return INPUT; // Title empty, simply wait for input without error message
106                 }
107                 if (valid == 0) {
108                         value = input[1].trim();
109                         if (value.length() == 0) {
110                                 initializationScreenContext(Constants.CREATE_MENU);
111                                 return INPUT; // No need to reinitialize the list of existing products
112                         }
113                 }
114                 sprop.setTitle(_title).setManager(getConnectedUser());
115                 sprop.checkValidity();
116                 sprop.disableCheck();
117                 try {
118                         // Addition of a default scenario
119                         ResourceBundle locale = ResourceBundle.getBundle("labels",
120                                         getApplicationSettings().getCurrentLocale());
121                         Scenario.Properties oprop = new Scenario.Properties();
122                         oprop.setTitle(locale.getString("label.scenario") + " 1");
123
124                         // Addition of the entered project context
125                         SimulationContext.Properties cprop = new SimulationContext.Properties();
126                         
127                         SimulationContextType product = getSimulationContextService()
128                                         .selectType("product");
129                         
130                         SimulationContext testContext = getSimulationContextService().selectSimulationContext(product, value);
131                         
132                         if (valid == 0) { // Input of new project context
133                                 if (testContext == null) {
134                                 cprop.setType(
135                                                 getSimulationContextService().selectType("product"))
136                                                 .setValue(value);
137                                 } else {
138                                         cprop.setIndex(testContext.getIndex());
139                                 }
140                         } else { // Selection of existing project context
141                                 cprop.setIndex(valid);
142                         }
143                         Study study = getScenarioService().createStudy(sprop, oprop, cprop);
144                         // Update of the session
145                         number += 1;
146                         open(study); // Opens the study,
147
148                         initializationFullScreenContext(Constants.STUDY_MENU,
149                                         Constants.NONE, Constants.OPEN);
150
151                         return SUCCESS;
152                 } catch (Exception error) {
153                         LOG.error("Unable to save the study, reason:", error);
154                         setErrorCode("message.error.newstudy");
155                         initializationScreenContext(Constants.NONE);
156                         return ERROR;
157                 }
158         }
159         
160         /**
161          * 
162          * {@inheritDoc}
163          * @see com.opensymphony.xwork2.ActionSupport#validate()
164          */
165         @Override
166         public void validate() {
167                 
168                 if( LOG.isDebugEnabled() ) {
169                         LOG.debug("--- validate");
170                 }
171                 com.opensymphony.xwork2.ActionContext context = 
172                         com.opensymphony.xwork2.ActionContext.getContext();
173                 
174                 if( LOG.isDebugEnabled() ) {
175                         LOG.debug("======> MKA test");
176                         LOG.debug(context.getName());
177                 }
178         }
179
180         // ==============================================================================================================================
181         // Getters and setters
182         // ==============================================================================================================================
183
184         /**
185          * Get the selected project context for the new study.
186          * 
187          * @return the selected project context
188          */
189         public String getProjectContext() {
190                 return _projectContext;
191         }
192
193         /**
194          * Get the list of available project contexts.
195          * 
196          * @return the list of context values
197          */
198         public List<SimulationContext> getProjectContextValues() {
199                 return _contelm;
200         }
201
202         /**
203          * Get the title of the new study.
204          * 
205          * @return the title
206          */
207         public String getTitle() {
208                 return _title;
209         }
210
211         /**
212          * Set the project context for the new study.
213          * 
214          * @param value
215          *            the project context value.
216          */
217         public void setProjectContext(final String value) {
218                 this._projectContext = value;
219         }
220
221         /**
222          * Set the title of the new study.
223          * 
224          * @param value
225          *            the title to set
226          */
227         public void setTitle(final String value) {
228                 this._title = value;
229         }
230
231         /**
232          * Get the simulationContextService.
233          * 
234          * @return the simulationContextService
235          */
236         public SimulationContextService getSimulationContextService() {
237                 return _simulationContextService;
238         }
239
240         /**
241          * Set the simulationContextService.
242          * 
243          * @param simulationContextService
244          *            the simulationContextService to set
245          */
246         public void setSimulationContextService(
247                         final SimulationContextService simulationContextService) {
248                 _simulationContextService = simulationContextService;
249         }
250
251         /**
252          * Get the scenarioService.
253          * 
254          * @return the scenarioService
255          */
256         public ScenarioService getScenarioService() {
257                 return _scenarioService;
258         }
259
260         /**
261          * Set the scenarioService.
262          * 
263          * @param scenarioService
264          *            the scenarioService to set
265          */
266         public void setScenarioService(final ScenarioService scenarioService) {
267                 _scenarioService = scenarioService;
268         }
269 }