]> 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
fdc373e65e135079caecd26b7fe13fb8de057923
[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.text.SimpleDateFormat;
22 import java.util.Date;
23 import java.util.HashMap;
24 import java.util.List;
25 import java.util.Map;
26
27 import javax.xml.transform.stream.StreamResult;
28
29 import org.apache.commons.io.IOUtils;
30 import org.argeo.slc.SlcException;
31 import org.argeo.slc.process.SlcExecution;
32 import org.argeo.slc.process.SlcExecutionNotifier;
33 import org.argeo.slc.process.SlcExecutionStep;
34 import org.springframework.oxm.Marshaller;
35
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(SlcExecution slcExecution,
46 List<SlcExecutionStep> additionalSteps) {
47 writeSlcExecution(slcExecution);
48 }
49
50 public void newExecution(SlcExecution slcExecution) {
51 String dirPath = basePath + File.separator + sdf.format(new Date())
52 + '-' + slcExecution.getUuid();
53 File dir = new File(dirPath);
54 dir.mkdirs();
55
56 uuidToDir.put(slcExecution.getUuid(), dirPath);
57
58 writeSlcExecution(slcExecution);
59 }
60
61 public void updateExecution(SlcExecution slcExecution) {
62 writeSlcExecution(slcExecution);
63 }
64
65 public void updateStatus(SlcExecution slcExecution, String oldStatus,
66 String newStatus) {
67 writeSlcExecution(slcExecution);
68 }
69
70 protected void writeSlcExecution(SlcExecution slcExecution) {
71 FileWriter out = null;
72 try {
73 out = new FileWriter(getFilePath(slcExecution));
74 marshaller.marshal(slcExecution, new StreamResult(out));
75 } catch (Exception e) {
76 throw new SlcException("Cannot marshall SlcExecution to "
77 + getFilePath(slcExecution), e);
78 } finally {
79 IOUtils.closeQuietly(out);
80 }
81 }
82
83 protected String getFileName(SlcExecution slcExecution) {
84 return "SlcExecution-" + slcExecution.getUuid() + ".xml";
85 }
86
87 protected String getFilePath(SlcExecution slcExecution) {
88 String dirPath = uuidToDir.get(slcExecution.getUuid());
89 return dirPath + File.separator + "SlcExecution-"
90 + slcExecution.getUuid() + ".xml";
91 }
92
93 public void setBasePath(String basePath) {
94 this.basePath = basePath;
95 }
96
97 public void setMarshaller(Marshaller marshaller) {
98 this.marshaller = marshaller;
99 }
100
101 }