File: SimpleJsv.java

package info (click to toggle)
gridengine 8.1.9%2Bdfsg-13.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 57,140 kB
  • sloc: ansic: 432,689; java: 87,068; cpp: 31,958; sh: 29,445; jsp: 7,757; perl: 6,336; xml: 5,828; makefile: 4,704; csh: 3,934; ruby: 2,221; tcl: 1,676; lisp: 669; yacc: 519; python: 503; lex: 361; javascript: 200
file content (127 lines) | stat: -rw-r--r-- 4,471 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/*___INFO__MARK_BEGIN__*/
/*************************************************************************
 *
 *  The Contents of this file are made available subject to the terms of
 *  the Sun Industry Standards Source License Version 1.2
 *
 *  Sun Microsystems Inc., March, 2001
 *
 *
 *  Sun Industry Standards Source License Version 1.2
 *  =================================================
 *  The contents of this file are subject to the Sun Industry Standards
 *  Source License Version 1.2 (the "License"); You may not use this file
 *  except in compliance with the License. You may obtain a copy of the
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 *
 *  Software provided under this License is provided on an "AS IS" basis,
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 *  See the License for the specific provisions governing your rights and
 *  obligations concerning the Software.
 *
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 *
 *   Copyright: 2009 by Sun Microsystems, Inc.
 *
 *   All Rights Reserved.
 *
 ************************************************************************/
/*___INFO__MARK_END__*/
package com.sun.grid.jsv.examples;

import com.sun.grid.jsv.JsvManager;
import com.sun.grid.jsv.Jsv;
import com.sun.grid.jsv.JobDescription;
import java.io.IOException;
import java.util.Map;

/**
 * This is a simple JSV that:
 * <ul>
 * <li>Rejects binary jobs</li>
 * <li>Rejects parallel jobs that don't request a multiple of 16 processes</li>
 * <li>Temporarily reject jobs that request h_vmem</li>
 * <li>Removes request for h_data</li>
 * <li>Increments the job context variable "a"</li>
 * <li>Removes the job context variable "b"</li>
 * <li>Removes the job context variable "c"</li>
 * <li>Adds a job context variable d=5</li>
 * </ul>
 */
public class SimpleJsv implements Jsv {
    /**
     * Run this JSV.
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        SimpleJsv simple = new SimpleJsv();
        JsvManager jsv = new JsvManager();

        try {
            jsv.parse(simple);
        } catch (IOException e) {
            System.err.println("Unable to communication with client: " + e.getMessage());
        }
    }

    public void onStart(JsvManager jsv) {
        jsv.requestEnvironment(true);
    }

    public void onVerify(JsvManager jsv) {
        JobDescription params = jsv.getJobDescription();

        if ((params.isBinary() != null) && params.isBinary()) {
            jsv.reject("Binary job is rejected.");
        } else if ((params.getParallelEnvironment() != null) &&
                ((params.getParallelEnvironment().getRangeMin() % 16) != 0)) {
            jsv.reject("Parallel job does not request a multiple of 16 slots");
        } else {
            Map<String,String> hard = params.getHardResourceRequirements();
            boolean wait = false;
            boolean mod = false;

            if (hard != null) {
                if (hard.containsKey("h_vmem")) {
                    wait = true;
                }

                if (hard.remove("h_data") != null) {
                    mod = true;

                    if (params.getContext().equalsIgnoreCase("client")) {
                        jsv.log(JsvManager.LogLevel.INFO, "h_data as hard resource requirement has been deleted");
                    }

                    params.setHardResourceRequirements(hard);
                }
            }

            Map<String,String> context = params.getJobContext();

            if (context != null) {
                if (context.containsKey("a")) {
                    context.put("a", Integer.toString(Integer.parseInt(context.get("a")) + 1));
                } else {
                    context.put("a", "1");
                }

                context.remove("b");
                context.remove("c");
                context.put("d", "5");

                params.setJobContext(context);
            }

            if (wait) {
                jsv.rejectWait("Job is rejected. It might be submitted later.");
            } else if (mod) {
                jsv.modify("Job was modified before it was accepted.");
            } else {
                jsv.accept("Job is accepted.");
            }
        }
    }
}