View Javadoc

1   /*
2    * Copyright 2007-2008 the original author or authors.
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.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   * @author Marco Ruiz
39   * @since Sep 15, 2008
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  	// Creation Time
48  	@Id
49  	@GeneratedValue(generator = "jobExecutionInfoIdGenerator")
50  	private String id;
51  	
52  	@ManyToOne
53  	private JobInfo job;
54  
55  	private int executionNum;
56  	
57  	// Schedule Time
58  	@ManyToOne
59  	protected HeadResourceInfo runningDaemon;
60  
61  	// Schedule Time
62  	@ManyToOne
63  	protected AllocationInfo allocation = null;
64  
65  //	private Timestamp whenStarted    = null; // Allocation is ready and started working on the job - CREATED!!!
66  	private Timestamp whenPrepared   = null; // Prepared in the compute resource assigned (file transfers complete and such)
67  	private Timestamp whenAssigned   = null; // Assigned a compute resource (allocation) for processing
68  	private Timestamp whenDispatched = null; // Dispatched to a compute resource / agent for processing
69  	private Timestamp whenProcessed  = null; // Processed by compute resource / agent
70  	private Timestamp whenCompleted  = null; // Compute resource cleaned up and job closed!
71  
72  	private Timestamp whenFailed     = null; // This job was aborted. Reasons: user request, preparing error, ...
73  
74  	@Lob @Column(length = 327680)
75  	private CompressedObject compressedResult = new CompressedObject(); // Meaningful only when whenCompleted != null
76  
77  	@Lob @Column(length = 327680)
78  	private CompressedObject<Throwable> compressedException = new CompressedObject<Throwable>(); // Meaningful only when whenFailed != null
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 //		OrderInfo or = job.getOrder();
197 		Timestamp result = logEvent(evType, job, job.getOrder());
198 /*
199 		if (evType.equals(EventType.JOB_COMPLETED) || evType.equals(EventType.JOB_ABORTED))
200 			or.incrementJobsFinished();
201 */
202 		return result;
203 	}
204 }