1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.gwe.drivers.resManagers;
18
19 import org.apache.commons.logging.Log;
20 import org.apache.commons.logging.LogFactory;
21 import org.gwe.persistence.model.AllocationInfo;
22
23
24
25
26
27 public class MultiProcessesDriver extends CommandLineResourceManagerDriver {
28
29 private static Log log = LogFactory.getLog(MultiProcessesDriver.class);
30
31 public boolean isSupportedJobManagerAvailable() { return true; }
32
33 public MultiProcessesDriver() { super("ls", "sh", "rm-processes.vm"); }
34
35 public String queueAllocationRequest(final AllocationInfo alloc) throws ResourceAllocationException {
36
37 new Thread(new Runnable() {
38 public void run() {
39 try {
40 MultiProcessesDriver.super.queueAllocationRequest(alloc);
41 } catch (ResourceAllocationException e) {
42 }
43 }
44 }).start();
45 return "";
46 }
47
48 protected String extractIdFromSubmissionOutput(String[] results) {
49 if (results.length < 1) return "";
50 return results[results.length - 1];
51 }
52
53 public AllocationPhase killAllocation(AllocationInfo alloc) throws ResourceAllocationException {
54 return null;
55 }
56
57 public AllocationPhase checkAllocation(AllocationInfo alloc) throws ResourceAllocationException {
58 return null;
59 }
60 }
61