]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/process/SlcExecutionStep.java
Improve logging
[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 public String getUuid() {
64 return uuid;
65 }
66
67 public void setUuid(String uuid) {
68 this.uuid = uuid;
69 }
70
71 public void setType(String type) {
72 this.type = type;
73 }
74
75 public void setTimestamp(Date begin) {
76 this.timestamp = begin;
77 }
78
79 public void setThread(String thread) {
80 this.thread = thread;
81 }
82
83 public List<String> getLogLines() {
84 return logLines;
85 }
86
87 public void setLogLines(List<String> logLines) {
88 this.logLines = logLines;
89 }
90
91 protected String addLog(String log) {
92 if (logLines == null)
93 logLines = new ArrayList<String>();
94
95 if (log == null)
96 return null;
97
98 StringTokenizer st = new StringTokenizer(log, "\n");
99 while (st.hasMoreTokens())
100 logLines.add(removeNonXmlChars(st.nextToken()));
101 return null;
102 }
103
104 /**
105 * Removes non XML compliant characters (from
106 * http://stackoverflow.com/questions
107 * /20762/how-do-you-remove-invalid-hexadecimal
108 * -characters-from-an-xml-based-data-source-pr)
109 */
110 private static String removeNonXmlChars(String inString) {
111 if (inString == null)
112 return null;
113
114 StringBuilder newString = new StringBuilder();
115 char ch;
116
117 for (int i = 0; i < inString.length(); i++) {
118
119 ch = inString.charAt(i);
120 // remove any characters outside the valid UTF-8 range as well as
121 // all control characters
122 // except tabs and new lines
123 if ((ch < 0x00FD && ch > 0x001F) || ch == '\t' || ch == '\n'
124 || ch == '\r') {
125 newString.append(ch);
126 }
127 }
128 return newString.toString();
129
130 }
131
132 @Override
133 public String toString() {
134 return getClass().getSimpleName() + "#" + uuid;
135 }
136
137 }