]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/process/SlcExecutionStep.java
Minimal Hello World execution module
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / process / SlcExecutionStep.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.process;
18
19 import java.util.ArrayList;
20 import java.util.Date;
21 import java.util.List;
22 import java.util.StringTokenizer;
23 import java.util.UUID;
24
25 import org.argeo.slc.execution.ExecutionStep;
26
27 /**
28 * An atomic step to be notified in during an {@link SlcExecution}. Can be a log
29 * or the start/end of a phase, etc.
30 *
31 * @deprecated use {@link ExecutionStep} instead
32 */
33 public class SlcExecutionStep extends ExecutionStep {
34 private static final long serialVersionUID = -7308643628104726471L;
35
36 private String uuid = UUID.randomUUID().toString();
37 private List<String> logLines = new ArrayList<String>();
38
39 /** Empty constructor */
40 public SlcExecutionStep() {
41 }
42
43 /** Creates a step at the current date of type INFO */
44 public SlcExecutionStep(String log) {
45 this(new Date(), INFO, log);
46 }
47
48 /** Creates a step at the current date */
49 public SlcExecutionStep(String type, String log) {
50 this(new Date(), type, log);
51 }
52
53 /** Creates a step of the given type. */
54 public SlcExecutionStep(Date timestamp, String type, String log) {
55 this(timestamp, type, log, Thread.currentThread().getName());
56 }
57
58 public SlcExecutionStep(Date timestamp, String type, String log,
59 String thread) {
60 super(timestamp, type, log, thread);
61 }
62
63
64
65 public String getUuid() {
66 return uuid;
67 }
68
69 public void setUuid(String uuid) {
70 this.uuid = uuid;
71 }
72
73 public void setType(String type) {
74 this.type = type;
75 }
76
77 public void setTimestamp(Date begin) {
78 this.timestamp = begin;
79 }
80
81 public void setThread(String thread) {
82 this.thread = thread;
83 }
84
85 public List<String> getLogLines() {
86 return logLines;
87 }
88
89 public void setLogLines(List<String> logLines) {
90 this.logLines = logLines;
91 }
92
93 /** public for legacy reasons*/
94 public String addLog(String log) {
95 if (logLines == null)
96 logLines = new ArrayList<String>();
97
98 if (log == null)
99 return null;
100
101 StringTokenizer st = new StringTokenizer(log, "\n");
102 while (st.hasMoreTokens())
103 logLines.add(removeNonXmlChars(st.nextToken()));
104 return null;
105 }
106
107 /**
108 * Removes non XML compliant characters (from
109 * http://stackoverflow.com/questions
110 * /20762/how-do-you-remove-invalid-hexadecimal
111 * -characters-from-an-xml-based-data-source-pr)
112 */
113 private static String removeNonXmlChars(String inString) {
114 if (inString == null)
115 return null;
116
117 StringBuilder newString = new StringBuilder();
118 char ch;
119
120 for (int i = 0; i < inString.length(); i++) {
121
122 ch = inString.charAt(i);
123 // remove any characters outside the valid UTF-8 range as well as
124 // all control characters
125 // except tabs and new lines
126 if ((ch < 0x00FD && ch > 0x001F) || ch == '\t' || ch == '\n'
127 || ch == '\r') {
128 newString.append(ch);
129 }
130 }
131 return newString.toString();
132
133 }
134
135 @Override
136 public String toString() {
137 return getClass().getSimpleName() + "#" + uuid;
138 }
139
140 }