1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.gwe.persistence.model.order;
18
19 import java.io.Serializable;
20 import java.util.List;
21 import java.util.Map;
22
23 import org.gwe.persistence.model.DaemonConfigDesc;
24 import org.gwe.persistence.model.JobInfo;
25 import org.gwe.persistence.model.live.JobLive;
26
27
28
29
30
31 public abstract class JobDescriptor implements Serializable {
32
33 protected transient JobLive jobLive;
34 private transient Map<JobSideWorkerType, JobSideWorker> processors;
35
36 public void initExecution(JobLive jobLive) throws Exception {
37 this.jobLive = jobLive;
38 this.processors = initExecutionInternal(jobLive);
39 }
40
41 protected abstract Map<JobSideWorkerType, JobSideWorker> initExecutionInternal(JobLive jobLive) throws Exception;
42
43 public abstract Map<String, Object> getPermutationValues();
44
45 public StringBuffer toCSV(List<String> varNames) {
46 StringBuffer result = new StringBuffer("");
47 Map<String, Object> vars = getPermutationValues();
48
49 for (String varName : varNames) {
50 if (result.length() > 0) result.append(",");
51 Object varValue = vars.get(varName);
52 result.append("\"").append(varValue == null ? "" : varValue).append("\"");
53 }
54 return result;
55 }
56
57 public void preProcess() throws Throwable {
58 processors.get(JobSideWorkerType.PRE).execute(jobLive);
59 }
60
61 public void postProcess() throws Throwable {
62 processors.get(JobSideWorkerType.POST).execute(jobLive);
63 }
64
65 public void finalizeExecution(JobLive jobLive) {}
66
67 public abstract void processSystemDependencies(DaemonConfigDesc config, JobInfo job);
68 }
69