]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.castor/src/main/java/org/argeo/slc/xml/process/FileSlcExecutionNotifier.java
JCR UI can run processes
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.castor / src / main / java / org / argeo / slc / xml / process / FileSlcExecutionNotifier.java
1 /*
2 * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 package org.argeo.slc.xml.process;
18
19 import java.io.File;
20 import java.io.FileWriter;
21 import java.util.HashMap;
22 import java.util.List;
23 import java.util.Map;
24
25 import javax.xml.transform.stream.StreamResult;
26
27 import org.apache.commons.io.IOUtils;
28 import org.argeo.slc.SlcException;
29 import org.argeo.slc.execution.ExecutionProcess;
30 import org.argeo.slc.process.SlcExecution;
31 import org.argeo.slc.process.SlcExecutionNotifier;
32 import org.argeo.slc.process.SlcExecutionStep;
33 import org.springframework.oxm.Marshaller;
34
35 /** @deprecated Probably not even working anymore */
36 public class FileSlcExecutionNotifier implements SlcExecutionNotifier {
37 // private final static SimpleDateFormat sdf = new SimpleDateFormat(
38 // "yyyyMMdd-HHmmss");
39 //
40 // private String basePath;
41 private Marshaller marshaller;
42
43 private Map<String, String> uuidToDir = new HashMap<String, String>();
44
45 public void addSteps(ExecutionProcess slcExecution,
46 List<SlcExecutionStep> additionalSteps) {
47 writeSlcExecution(slcExecution);
48 }
49
50 public void updateStatus(ExecutionProcess slcExecution, String oldStatus,
51 String newStatus) {
52 writeSlcExecution(slcExecution);
53 }
54
55 protected void writeSlcExecution(ExecutionProcess process) {
56 if (!(process instanceof SlcExecution))
57 throw new SlcException("Unsupported process type "
58 + process.getClass());
59 SlcExecution slcExecution = (SlcExecution) process;
60 FileWriter out = null;
61 try {
62 out = new FileWriter(getFilePath(slcExecution));
63 marshaller.marshal(slcExecution, new StreamResult(out));
64 } catch (Exception e) {
65 throw new SlcException("Cannot marshall SlcExecution to "
66 + getFilePath(slcExecution), e);
67 } finally {
68 IOUtils.closeQuietly(out);
69 }
70 }
71
72 protected String getFileName(SlcExecution slcExecution) {
73 return "SlcExecution-" + slcExecution.getUuid() + ".xml";
74 }
75
76 protected String getFilePath(SlcExecution slcExecution) {
77 String dirPath = uuidToDir.get(slcExecution.getUuid());
78 return dirPath + File.separator + "SlcExecution-"
79 + slcExecution.getUuid() + ".xml";
80 }
81
82 public void setBasePath(String basePath) {
83 //this.basePath = basePath;
84 }
85
86 public void setMarshaller(Marshaller marshaller) {
87 this.marshaller = marshaller;
88 }
89
90 }