1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.gwe.persistence.model;
18
19 import java.io.PrintWriter;
20 import java.io.Serializable;
21 import java.io.StringWriter;
22 import java.io.Writer;
23 import java.sql.Timestamp;
24
25 import javax.persistence.Column;
26 import javax.persistence.Entity;
27 import javax.persistence.GeneratedValue;
28 import javax.persistence.Id;
29 import javax.persistence.Lob;
30 import javax.persistence.ManyToOne;
31
32 import org.apache.commons.logging.Log;
33 import org.apache.commons.logging.LogFactory;
34 import org.gwe.utils.CompressedObject;
35 import org.hibernate.annotations.GenericGenerator;
36
37
38
39
40
41 @GenericGenerator(name = "jobExecutionInfoIdGenerator", strategy = "org.gwe.persistence.model.JobExecutionInfoIdGenerator")
42 @Entity
43 public class JobExecutionInfo extends BaseModelInfo<String> {
44
45 private static Log log = LogFactory.getLog(JobExecutionInfo.class);
46
47
48 @Id
49 @GeneratedValue(generator = "jobExecutionInfoIdGenerator")
50 private String id;
51
52 @ManyToOne
53 private JobInfo job;
54
55 private int executionNum;
56
57
58 @ManyToOne
59 protected HeadResourceInfo runningDaemon;
60
61
62 @ManyToOne
63 protected AllocationInfo allocation = null;
64
65
66 private Timestamp whenPrepared = null;
67 private Timestamp whenAssigned = null;
68 private Timestamp whenDispatched = null;
69 private Timestamp whenProcessed = null;
70 private Timestamp whenCompleted = null;
71
72 private Timestamp whenFailed = null;
73
74 @Lob @Column(length = 327680)
75 private CompressedObject compressedResult = new CompressedObject();
76
77 @Lob @Column(length = 327680)
78 private CompressedObject<Throwable> compressedException = new CompressedObject<Throwable>();
79
80 public JobExecutionInfo() {}
81
82 public JobExecutionInfo(JobInfo job) {
83 this.job = job;
84 this.executionNum = job.getFailures() + 1;
85 this.job.setExecution(this);
86 }
87
88 public String getId() {
89 return id;
90 }
91
92 public JobInfo getJob() {
93 return job;
94 }
95
96 public void setJob(JobInfo job) {
97 this.job = job;
98 }
99
100 public void setExecutionNum(int executionNum) {
101 this.executionNum = executionNum;
102 }
103
104 public int getExecutionNum() {
105 return executionNum;
106 }
107
108 public HeadResourceInfo getRunningDaemon() {
109 return runningDaemon;
110 }
111
112 public void setRunningDaemon(HeadResourceInfo runningDaemon) {
113 this.runningDaemon = runningDaemon;
114 }
115
116 public AllocationInfo getAllocation() {
117 return allocation;
118 }
119
120 public boolean hasFailed() {
121 return whenFailed != null;
122 }
123
124 public boolean hasCompleted() {
125 return whenCompleted != null;
126 }
127
128 public void setAllocation(AllocationInfo alloc) {
129 allocation = alloc;
130 whenAssigned = logExecutionEvent(EventType.JOB_ASSIGNED);
131 }
132
133 public void flagAsDispatched() {
134 whenDispatched = logExecutionEvent(EventType.JOB_DISPATCHED);
135 }
136
137 public Serializable getRequestResult() {
138 return compressedResult.getTargetBlindly();
139 }
140
141 public void setRequestResult(Serializable result) {
142 compressedResult.setTargetBlindly(result);
143 }
144
145 public Throwable getRequestException() {
146 return compressedException.getTargetBlindly();
147 }
148
149 public String getRequestExceptionStackTrace() {
150 Throwable exception = getRequestException();
151 if (exception == null) return null;
152 Writer result = new StringWriter();
153 exception.printStackTrace(new PrintWriter(result));
154 return result.toString();
155 }
156
157 public void setRequestException(Throwable result) {
158 compressedException.setTargetBlindly(result);
159 }
160
161 public Timestamp getWhenPrepared() { return clone(whenPrepared); }
162 public Timestamp getWhenAssigned() { return clone(whenAssigned); }
163 public Timestamp getWhenDispatched() { return clone(whenDispatched); }
164 public Timestamp getWhenProcessed() { return clone(whenProcessed); }
165 public Timestamp getWhenCompleted() { return clone(whenCompleted); }
166 public Timestamp getWhenFailed() { return clone(whenFailed); }
167
168 public String getStatus() {
169 if (whenCompleted != null) return "COMPLETED";
170 if (whenFailed != null) return "FAILED";
171 if (whenDispatched != null) return "RUNNING";
172 return "WAITING";
173 }
174
175 private Timestamp clone(Timestamp source) {
176 return (source != null) ? new Timestamp(source.getTime()) : null;
177 }
178
179 public void logExecutionPhase(EventType evType, Serializable result) {
180 setRequestResult(result);
181 Timestamp evTime = logExecutionEvent(evType);
182 switch (evType) {
183 case JOB_PREPARED : whenPrepared = evTime; break;
184 case JOB_PROCESSED : whenProcessed = evTime; break;
185 case JOB_COMPLETED : whenCompleted = evTime; break;
186 }
187 }
188
189 public void logFailure(Throwable result) {
190 setRequestException(result);
191 whenFailed = logExecutionEvent(EventType.JOB_FAILED);
192 log.warn("Job execution '" + id + "' failed!", (Exception)result);
193 }
194
195 private Timestamp logExecutionEvent(EventType evType) {
196
197 Timestamp result = logEvent(evType, job, job.getOrder());
198
199
200
201
202 return result;
203 }
204 }