Salome HOME
The draft of the "Copy from existing study" action is added. The YACS step is introdu...
[tools/siman.git] / Workspace / Siman / src / org / splat / simer / ImportDocumentAction.java
1 package org.splat.simer;
2
3 import java.io.File;
4 import java.io.FileNotFoundException;
5 import java.text.SimpleDateFormat;
6 import java.util.ArrayList;
7 import java.util.Arrays;
8 import java.util.Date;
9 import java.util.List;
10 import java.util.ResourceBundle;
11
12 import org.splat.dal.bo.kernel.User;
13 import org.splat.dal.bo.som.Document;
14 import org.splat.dal.bo.som.DocumentType;
15 import org.splat.dal.bo.som.ProgressState;
16 import org.splat.dal.bo.som.Publication;
17 import org.splat.dal.bo.som.ValidationCycle;
18 import org.splat.dal.bo.som.ValidationStep;
19 import org.splat.manox.Reader;
20 import org.splat.manox.Toolbox;
21 import org.splat.service.DocumentService;
22 import org.splat.service.DocumentTypeService;
23 import org.splat.som.Revision;
24 import org.splat.som.Step;
25 import org.splat.wapp.Constants;
26
27 /**
28  * Action for adding a document into a study step.
29  */
30 public class ImportDocumentAction extends BaseUploadDocumentAction {
31
32         /**
33          * Serial version ID.
34          */
35         private static final long serialVersionUID = 2587822564883588556L;
36
37         /**
38          * Sorted list of document types for the selected study step.
39          */
40         private transient List<DocumentType> _documentTypes = null;
41         /**
42          * Sorted list of document types for the selected study step.
43          */
44         private transient final List<Boolean> _reviewable = new ArrayList<Boolean>();
45         /**
46          * The selected document type.
47          */
48         private long _documentType = 0;
49         /**
50          * Reference extracted from the imported file, if exist.
51          */
52         private String _reference = null;
53         /**
54          * Injected document service.
55          */
56         private DocumentService _documentService;
57         /**
58          * Injected document type service.
59          */
60         private DocumentTypeService _documentTypeService;
61
62         /**
63          * Initialize the operation.
64          * 
65          * @return SUCCESS in success, otherwise - ERROR
66          */
67         public String doInitialize() {
68
69                 File upfile = commonInitialize(Constants.FALSE);
70                 String[] table = _fileName.split("\\x2E");
71                 String filext = table[table.length - 1].toLowerCase();
72
73                 _mystudy = getOpenStudy();
74                 Step step = _mystudy.getSelectedStep();
75                 _documentTypes = getStepService().getValidDocumentTypes(step);
76                 // Set the document type by default
77                 _deftype = getApplicationSettings()
78                                 .getDefaultDocumentType(step, filext);
79                 if (_deftype != null) {
80                         setDefaultDocumentType(_deftype.getIndex());
81                 }
82                 _defuses = new ArrayList<Document>();
83                 _state = ProgressState.inWORK;
84
85                 String res = ERROR;
86                 if (extractProperties(upfile, filext)) {
87                         if (_docname == null) {
88                                 _docname = table[0];
89                                 for (int i = 1; i < table.length - 1; i++) {
90                                         _docname = _docname + "." + table[i];
91                                 }
92                         }
93                         if (_deftype != null) {
94                                 setupDefaultUses(_deftype);
95                         }
96
97                         DocumentType[] types = _documentTypes
98                                         .toArray(new DocumentType[_documentTypes.size()]);
99                         DocumentTypeComparator compare = new DocumentTypeComparator();
100                         Arrays.sort(types, compare);
101                         _documentTypes = Arrays.asList(types);
102                         res = SUCCESS;
103                 }
104
105                 // Initialize isReviewable: if a type has review state or not
106                 ValidationCycle cycle;
107                 boolean hasReview;
108                 for (DocumentType dtype : _documentTypes) {
109                         cycle = getStudyService().getValidationCycleOf(
110                                         _mystudy.getMystudy(), dtype);
111                         hasReview = (cycle != null) && cycle.enables(ValidationStep.REVIEW);
112                         _reviewable.add(hasReview);
113                 }
114                 return res;
115         }
116
117         /**
118          * Extract properties from the uploaded file.
119          * 
120          * @param upfile
121          *            the file to parse
122          * @param filext
123          *            the file extension
124          * @return true if succeeded, false if error
125          */
126         private boolean extractProperties(final File upfile, final String filext) {
127                 boolean isOk = true;
128                 Reader tool = Toolbox.getReader(upfile);
129                 if (tool == null) {
130                         if ("pdf".equals(filext)) {
131                                 _state = ProgressState.EXTERN; // TODO: Should external extensions be configurable ?
132                         }
133                 } else {
134                         // String fileref = tool.extractProperty("reference");
135                         // String filever = tool.extractProperty("version"); // Property kept even if the file is not referenced
136                         // String filetype = tool.extractProperty("type"); // Property kept even if the file is not referenced
137                         // for (Iterator<DocumentType> i = _documentTypes.iterator(); i
138                         // .hasNext();) {
139                         // DocumentType type = i.next();
140                         // if (type.getName().equals(filetype)) {
141                         // _deftype = type;
142                         // _documentType = type.getIndex(); // Disables the document type field
143                         // break;
144                         // }
145                         // }
146                         // if (fileref != null) {
147                         // isOk = findTypeByDocRef(fileref);
148                         // }
149                         // if (isOk) {
150                         // if (filever != null) {
151                         // try {
152                         // Revision.Format get = new Revision.Format(
153                         // getProjectSettings().getRevisionPattern());
154                         // Revision version = get.parse(filever);
155                         // if (version.isNull()) {
156                         // throw new ParseException(filever,
157                         // filever.length() - 1);
158                         // }
159                         // if (!version.isMinor()) {
160                         // _state = ProgressState.inCHECK;
161                         // }
162                         // setVersion(version.toString());
163                         // } catch (ParseException e) {
164                         // setErrorCode("message.error.format.version");
165                         // isOk = false;
166                         // }
167                         // }
168                         // if (isOk) {
169                         // _docname = tool.extractProperty("title"); // Property kept even if the file is not referenced
170                         // isOk = extractDate(tool);
171                         // }
172                         // }
173                 }
174                 return isOk;
175         }
176
177         /**
178          * Find document type by document reference.
179          * 
180          * @param fileref
181          *            the document reference
182          * @return true if succeeded, false if error
183          */
184         private boolean findTypeByDocRef(final String fileref) {
185                 boolean isOk = true;
186                 Document slot = getDocumentService().selectDocument(fileref,
187                                 new Revision().toString());
188                 if (slot == null) {
189                         setError("message.error.reference.undefined");
190                         isOk = false;
191                 } else {
192                         if (slot.isUndefined()) {
193                                 _reference = fileref; // Disables document name and state fields
194                                 _deftype = slot.getType(); // Just in case
195                                 _documentType = _deftype.getIndex(); // Disables the document type field
196                         } else {
197                                 setError("message.error.reference.duplicate");
198                                 isOk = false;
199                         }
200                 }
201                 return isOk;
202         }
203
204         /**
205          * Perform import of a document.
206          * 
207          * @return SUCCESS if ok, "cancel" - if canceled, ERROR - if error
208          */
209         public String doImport() {
210                 String res = ERROR;
211
212                 initializationScreenContext(Constants.STUDY_MENU, Constants.STUDY_MENU,
213                                 Constants.TRUE);
214
215                 if (_action == ToDo.cancel) {
216                         res = "cancel";
217                 } else if (_documentType == 0) {
218                         setErrorCode("message.error.import.type");
219
220                         initializationFullScreenContext(Constants.STUDY_MENU,
221                                         Constants.STUDY_MENU, Constants.TRUE, Constants.NONE,
222                                         Constants.STUDY_MENU);
223                 } else {
224                         try {
225                                 // Getting user inputs
226                                 _mystudy = getOpenStudy();
227                                 User user = getConnectedUser();
228                                 Step step = _mystudy.getSelectedStep();
229                                 Date aDate = null;
230                                 if (getDocumentDate().length() > 0) {
231                                         ResourceBundle locale = ResourceBundle.getBundle("som",
232                                                         getApplicationSettings().getCurrentLocale());
233                                         SimpleDateFormat get = new SimpleDateFormat(locale
234                                                         .getString("date.format"), getApplicationSettings()
235                                                         .getCurrentLocale());
236                                         aDate = get.parse(getDocumentDate());
237                                 }
238                                 // Creation of uses relations
239                                 List<Long> uses = new ArrayList<Long>();
240                                 if (_docuses != null) {
241                                         String[] list = _docuses.split(",");
242                                         for (int i = 0; i < list.length; i++) {
243                                                 uses.add(Long.valueOf(list[i].trim()));
244                                         }
245                                 }
246                                 if (LOG.isDebugEnabled()) {
247                                         LOG
248                                                         .debug("Document to be imported uses documents with following ids:");
249                                         for (Long usesId : uses) {
250                                                 LOG.debug("#" + usesId);
251                                         }
252                                 }
253                                 Publication addoc = getPublicationService().createDoc(
254                                                 _mystudy.getIndex(), step, _documentType,
255                                                 user.getIndex(), _fileName, _docname, _state,
256                                                 _reference, getVersion(), aDate, uses);
257
258                                 if (_reference.length() > 0) { // Importation of a not foreign document
259                                         _mystudy.updateSimulationContexts(); // In case of simulation contexts extracted from the imported document
260                                 }
261
262                                 // Creation of derived the document formats
263                                 // Document ndoc = addoc.value();
264                                 // Converter send = getApplicationSettings().getConverter(ndoc.getType(), ndoc.getFormat());
265                                 //
266                                 // if (send != null) send.converts(addoc); // Asynchronous process
267
268                                 _mystudy.add(addoc); // Updates the presentation
269                                 res = SUCCESS;
270                         } catch (FileNotFoundException error) {
271                                 LOG.error("Reason:", error);
272                                 setErrorCode("message.error.import.file");
273                         } catch (Exception error) {
274                                 LOG.error("Reason:", error);
275                                 setErrorCode("message.error.internal");
276                         }
277
278                         if (!SUCCESS.equals(res)) {
279                                 initializationFullScreenContext(Constants.STUDY_MENU,
280                                                 Constants.STUDY_MENU, Constants.TRUE, Constants.NONE,
281                                                 Constants.STUDY_MENU);
282                         }
283                 }
284
285                 return res;
286         }
287
288         // ==============================================================================================================================
289         // Getters and setters
290         // ==============================================================================================================================
291
292         /**
293          * Get sorted list of document types valid for the selected study step.
294          * 
295          * @return sorted list of document types
296          */
297         public List<DocumentType> getDocumentTypes() {
298                 return _documentTypes;
299         }
300
301         /**
302          * Get document type id.
303          * 
304          * @return document type id
305          */
306         public long getDocumentType() {
307                 return _documentType;
308         }
309
310         /**
311          * Get reference extracted from the imported file, if exist.
312          * 
313          * @return the document reference
314          */
315         public String getReference() {
316                 return _reference;
317         }
318
319         /**
320          * Set document name entered by the user if enabled.
321          * 
322          * @param name
323          *            the document name
324          */
325         public void setDocumentName(final String name) {
326                 this._docname = name; // Name entered by the user if enabled
327         }
328
329         /**
330          * Set the default title if no title was defined.
331          * 
332          * @param name
333          *            the default document title
334          */
335         public void setDocumentTitle(final String name) { // Called even if DocumentName is enabled
336                 if (this._docname == null) {
337                         this._docname = name;
338                 }
339         }
340
341         /**
342          * Set document type id.
343          * 
344          * @param value
345          *            the id as string
346          */
347         public void setDocumentType(final Long value) {
348                 this._documentType = value;
349         }
350
351         /**
352          * Set the default state if no state was selected.
353          * 
354          * @param state
355          *            the default state
356          */
357         public void setDefaultDocumentState(final String state) { // Called even if DocumentState is enabled
358                 if (this._state == null) {
359                         this._state = ProgressState.valueOf(state);
360                 }
361         }
362
363         /**
364          * Set the default type if no type was selected.
365          * 
366          * @param value
367          *            the default document type id
368          */
369         public void setDefaultDocumentType(final Long value) { // Called even if DocumentType is enabled
370                 if (this._documentType == 0) {
371                         this._documentType = value;
372                 }
373         }
374
375         /**
376          * Set document reference extracted from the imported file, if exist.
377          * 
378          * @param value
379          *            the reference
380          */
381         public void setReference(final String value) {
382                 this._reference = value;
383         }
384
385         /**
386          * Get the documentService.
387          * 
388          * @return the documentService
389          */
390         public DocumentService getDocumentService() {
391                 return _documentService;
392         }
393
394         /**
395          * Set the documentService.
396          * 
397          * @param documentService
398          *            the documentService to set
399          */
400         public void setDocumentService(final DocumentService documentService) {
401                 _documentService = documentService;
402         }
403
404         /**
405          * Get the documentTypeService.
406          * 
407          * @return the documentTypeService
408          */
409         public DocumentTypeService getDocumentTypeService() {
410                 return _documentTypeService;
411         }
412
413         /**
414          * Set the documentTypeService.
415          * 
416          * @param documentTypeService
417          *            the documentTypeService to set
418          */
419         public void setDocumentTypeService(
420                         final DocumentTypeService documentTypeService) {
421                 _documentTypeService = documentTypeService;
422         }
423
424         /**
425          * Get sorted list of available document states.
426          * 
427          * @return the documentStates
428          */
429         public List<ProgressState> getDocumentStates() {
430                 List<ProgressState> states = new ArrayList<ProgressState>();
431                 states.add(ProgressState.inWORK);
432                 states.add(ProgressState.inDRAFT);
433                 states.add(ProgressState.EXTERN);
434                 return states;
435         }
436
437         /**
438          * Get the isReviewable.
439          * 
440          * @return the isReviewable
441          */
442         public List<Boolean> getReviewable() {
443                 return _reviewable;
444         }
445 }