File: java_jni_jgdi.jsp

package info (click to toggle)
gridengine 8.1.9%2Bdfsg-9
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 56,756 kB
  • sloc: ansic: 432,689; java: 87,068; cpp: 31,958; sh: 29,429; jsp: 7,757; perl: 6,336; xml: 5,828; makefile: 4,701; csh: 3,934; ruby: 2,221; tcl: 1,676; lisp: 669; yacc: 519; python: 503; lex: 361
file content (553 lines) | stat: -rw-r--r-- 19,459 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
/*___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: 2001 by Sun Microsystems, Inc.
 *
 *   All Rights Reserved.
 *
 ************************************************************************/
/*___INFO__MARK_END__*/
/**
 *  Generated from java_jni_jgdi.jsp
 *  !!! DO NOT EDIT THIS FILE !!!
 */
<%
  final com.sun.grid.cull.JavaHelper jh = (com.sun.grid.cull.JavaHelper)params.get("javaHelper");
  final com.sun.grid.cull.CullDefinition cullDef = (com.sun.grid.cull.CullDefinition)params.get("cullDef");
  
  class JGDIJniGenerator extends com.sun.grid.cull.AbstractGDIGenerator {

     private String cullname;
     public JGDIJniGenerator(com.sun.grid.cull.CullObject cullObject) {
        super(cullObject.getIdlName(), jh.getClassName(cullObject), cullObject);
        this.cullname = cullObject.getName();
        addPrimaryKeys(cullObject, jh);
     }

     public void genImport() {
        if(!(cullObject.getType() == cullObject.TYPE_PRIMITIVE ||
             cullObject.getType() == cullObject.TYPE_MAPPED)) {
%>// for <%=name%>
import com.sun.grid.jgdi.configuration.<%=classname%>;
import com.sun.grid.jgdi.configuration.<%=classname%>Impl;        
<%        
        }
     } // end of genImport
     private boolean hasFillMethod;
     private void genFillMethod() {
        if(!hasFillMethod) {
%>        
   private native void fill<%=name%>ListWithAnswer(List< <%=classname%> > list, JGDIFilter filter, List<JGDIAnswer> answers) throws JGDIException;
   
   private void fill<%=name%>List(List< <%=classname%> > list, JGDIFilter filter) throws JGDIException {
      fill<%=name%>ListWithAnswer(list, filter, null);
   }
   
   private void fill<%=name%>List(List< <%=classname%> > list) throws JGDIException {
      fill<%=name%>ListWithAnswer(list, null, null);
   }
   
   private void fill<%=name%>ListWithAnswer(List< <%=classname%> > list, List<JGDIAnswer> answers) throws JGDIException {
      fill<%=name%>ListWithAnswer(list, null, answers);
   }

   
<%        
           hasFillMethod = true;
        } 
     } // end of genFillMethod
     
     protected void genGetMethod() {
        genFillMethod();
%>
   /**
    *   Get the <code><%=name%></code> object
    *   @return the <code><%=name%></code> object
    *   @throws JGDIException on any error on the GDI layer
    */
   public <%=classname%> get<%=name%>() throws JGDIException {
      List< <%=classname%> > ret = new LinkedList< <%=classname%> >();
      fill<%=name%>List(ret);
      switch(ret.size()) {
         case 0: throw new IllegalStateException("static  <%=name%> object not found");
         case 1: return (<%=classname%>)ret.get(0);
         default:
           throw new IllegalStateException("Got more than 1 static <%=name%> objects");
      }
   }

   /**
    *   Get the <code><%=name%></code> object.
    *   @param  answers the <code>answer list</code> object
    *   @return the <code><%=name%></code> object.
    *   @throws JGDIException on any error on the GDI layer
    */
   public <%=classname%> get<%=name%>WithAnswer(List<JGDIAnswer> answers) throws JGDIException {
      List< <%=classname%> > ret = new LinkedList< <%=classname%> >();
      fill<%=name%>ListWithAnswer(ret, answers);
      switch(ret.size()) {
         case 0: throw new IllegalStateException("static  <%=name%> object not found");
         case 1: return (<%=classname%>)ret.get(0);
         default:
           throw new IllegalStateException("Got more than 1 static <%=name%> objects");
      }
   }
<%
     } // end of genGetMethod

     public void genGetListMethod() {
        genFillMethod();
%>        
   /**
    *   Get the list of all defined <code><%=name%></code> objects.
    *   @return list of <code><%=name%></code> objects
    *   @throws JGDIException on any error on the GDI layer
    */
   public List get<%=name%>List() throws JGDIException {
      List< <%=classname%> > ret = new LinkedList< <%=classname%> >();
      fill<%=name%>List(ret);
      return ret;
   }
   /**
    *   Get the list of all defined <code><%=name%></code> objects.
    *   @param  answers the <code>answer list</code> object
    *   @return list of <code><%=name%></code> objects
    *   @throws JGDIException on any error on the GDI layer
    */
   public List get<%=name%>ListWithAnswer(List<JGDIAnswer> answers) throws JGDIException {
      List< <%=classname%> > ret = new LinkedList< <%=classname%> >();
      fill<%=name%>ListWithAnswer(ret, answers);
      return ret;
   }

<%        
     } // end of genGetMethod
     
     public void genGetByPrimaryKeyMethod() {
        genFillMethod();
%>        
   /**
    *  Get a <%=name%> by its primary key
    *
    *  @return the <%=name%>
<%
    for (java.util.Map.Entry<String, String> entry: primaryKeys.entrySet()) {
       String pkName = entry.getKey();
       String pkType = entry.getValue();
%>    *  @param <%=pkName%>   the <%=pkName%> of the <code><%=name%></code> object
<%
    }    
%>    *  @return the found <code><%=name%></code> object of <code>null</code>    
    *  @throws JGDIException on any error on the GDI layer
    */
   public <%=classname%> get<%=name%>(<%
      boolean first = true;
      for (java.util.Map.Entry<String, String> entry: primaryKeys.entrySet()) {
         String pkName = entry.getKey();
         String pkType = entry.getValue();
         if (first) {
            first = false;
         } else {
             %>, <%
         }
         %> <%=pkType%> <%=pkName%> <%
    }
   %>) throws JGDIException {
    
        List< <%=classname%> > ret = new LinkedList< <%=classname%> >();
        PrimaryKeyFilter filter = new PrimaryKeyFilter("<%=cullname%>");
<%
    for (java.util.Map.Entry<String, String> entry: primaryKeys.entrySet()) {
       String pkName = entry.getKey();
       String pkType = entry.getValue();
%>
        filter.include(CullConstants.<%=pkName%>, <%=pkName%>);
<% 
    }
%>
        fill<%=name%>List(ret, filter);

        switch(ret.size()) {
           case 0:  return null;
           case 1:  return (<%=classname%>)ret.get(0);
           default:
                throw new IllegalStateException("Duplicate primary key");
        }
   }
   
   /**
    *  Get a <%=name%> by its primary key
    *
    *  @return the <%=name%>
<%
    for (java.util.Map.Entry<String, String> entry: primaryKeys.entrySet()) {
       String pkName = entry.getKey();
       String pkType = entry.getValue();
%>    *  @param <%=pkName%>   the <%=pkName%> of the <code><%=name%></code> object
<%
    }
%>   *  @param  answers the <code>answer list</code> object
    *  @return the found <code><%=name%></code> object of <code>null</code>    
    *  @throws JGDIException on any error on the GDI layer
    */
   public <%=classname%> get<%=name%>WithAnswer(<%
    first = true;
    for (java.util.Map.Entry<String, String> entry: primaryKeys.entrySet()) {
       String pkName = entry.getKey();
       String pkType = entry.getValue();
       if (first) {
          first = false;
       } else {
         %>, <%
       }
       %> <%=pkType%> <%=pkName%> <%
    }
       %>, List<JGDIAnswer> answers) throws JGDIException {
    
        List< <%=classname%> >  ret = new LinkedList< <%=classname%> >();
        
        PrimaryKeyFilter filter = new PrimaryKeyFilter("<%=cullname%>");<%
    for (java.util.Map.Entry<String, String> entry: primaryKeys.entrySet()) {
       String pkName = entry.getKey();
       String pkType = entry.getValue();%>
        filter.include(CullConstants.<%=pkName%>, <%=pkName%>); <% 
    }
%>
        fill<%=name%>ListWithAnswer(ret, filter, answers);

        switch(ret.size()) {
           case 0:  return null;
           case 1:  return (<%=classname%>)ret.get(0);
           default:
                throw new IllegalStateException("Duplicate primary key");
        }
   }
   
<%
    } // genGetByPrimaryKeyMethod
  
    public void genAddMethod() {
%>
   /**
    *   Add a new <code><%=name%></code> object.
    *   @param  obj the new <code><%=name%></code> object
    *   @throws JGDIException on any error on the GDI layer
    */
   public native void add<%=name%>(<%=classname%> obj) throws JGDIException;

   /**
    *   Add a new <code><%=name%></code> object.
    *   @param  obj the new <code><%=name%></code> object
    *   @param  answers the <code>answer list</code> object
    *   @throws JGDIException on any error on the GDI layer
    */
   public native void add<%=name%>WithAnswer(<%=classname%> obj, List<JGDIAnswer> answers) throws JGDIException;

<% if ((name.equals("Manager")) || 
       (name.equals("Operator")) ||
       (name.equals("AdminHost")) || 
       (name.equals("SubmitHost"))) { %>
   /**
    *   Add a new <code><%=name%></code> object.
    *   @param  name the new <code>String</code> object
    *   @throws JGDIException on any error on the GDI layer
    */
   public void add<%=name%>(String name) throws JGDIException {
      <%=name%> obj = new <%=name%>Impl(name);
      add<%=name%>(obj);
   }

   /**
    *   Add a new <code><%=name%></code> object.
    *   @param  name the new <code>String</code> object
    *   @param  answers the <code>answer list</code> object
    *   @throws JGDIException on any error on the GDI layer
    */
   public void add<%=name%>WithAnswer(String name, List<JGDIAnswer> answers) throws JGDIException {
      <%=name%> obj = new <%=name%>Impl(name);
       add<%=name%>WithAnswer(obj, answers);
   }
   
<%   
       } //end if classname     
     } // end of genAddMethod
     
     public void genDeleteMethod() {
%>        
   /**
    *   Delete a <code><%=name%></code> object.
    *   @param obj  <code><%=name%></code> object with the primary key information
    *   @throws JGDIException on any error on the GDI layer
    */
   public native void delete<%=name%>(<%=classname%> obj) throws JGDIException;

   /**
    *   Delete a <code><%=name%></code> object.
    *   @param obj  <code><%=name%></code> object with the primary key information
    *   @param answers  <code>answer list</code> object
    *   @throws JGDIException on any error on the GDI layer
    */
   public native void delete<%=name%>WithAnswer(<%=classname%> obj, List<JGDIAnswer> answers) throws JGDIException;
   
   /**
    *   Delete several <code><%=name%></code> objects.
    *   @param objs  <code><%=name%></code> object array with the primary key information
    *   @param force  <code>force</code> delete flag
    *   @param userFilter  delete object for users contained in userFilter
    *   @param answers  <code>answer list</code> object
    *   @throws JGDIException on any error on the GDI layer
    */
   public native void delete<%=name%>sWithAnswer(Object[] objs, boolean force, UserFilter userFilter, List<JGDIAnswer> answers) throws JGDIException;
   
<%
     } // end of genDeleteMethod

     public void genDeleteByPrimaryKeyMethod() {
%>

   /**
    *   Delete a <code><%=name%></code> object by its primary key
<%
    for (java.util.Map.Entry<String, String> entry: primaryKeys.entrySet()) {
       String pkName = entry.getKey();
       String pkType = entry.getValue();
%>    *   @param <%=pkName%>   the <%=pkName%> of the <code><%=name%></code> object
<%
    }    
%>    *   @throws JGDIException on any error on the GDI layer
    */
   public void delete<%=name%>(<%
    boolean first = true;
    for (java.util.Map.Entry<String, String> entry: primaryKeys.entrySet()) {
       String pkName = entry.getKey();
       String pkType = entry.getValue();
       if(first) {
         first = false;
       } else {
            %>, <%
       }
       %><%=pkType%> <%=pkName%><%
    }
    %>) throws JGDIException {
       <%=classname%> obj = new <%=classname%>Impl(<%
      first = true;
      for (java.util.Map.Entry<String, String> entry: primaryKeys.entrySet()) {
         String pkName = entry.getKey();
         String pkType = entry.getValue();
         if (first) {
            first = false;
         } else {
            %> , <%           
         }
         %><%=pkName%><%
      }
    %>);
       delete<%=name%>(obj);
    }

   /**
    *   Delete a <code><%=name%></code> object by its primary key
<%
    for (java.util.Map.Entry<String, String> entry: primaryKeys.entrySet()) {
       String pkName = entry.getKey();
       String pkType = entry.getValue();
%>    *   @param <%=pkName%>   the <%=pkName%> of the <code><%=name%></code> object

<%
    }    
%>       *   @param answers  <code>answer list</code> object
    *   @throws JGDIException on any error on the GDI layer
    */
   public void delete<%=name%>WithAnswer(<%
    first = true;  
    for (java.util.Map.Entry<String, String> entry: primaryKeys.entrySet()) {
       String pkName = entry.getKey();
       String pkType = entry.getValue();
       if(first) {
         first = false;
       } else {
            %> , <%           
       }
       %><%=pkType%> <%=pkName%><%
    } // end of for  
    %>, List<JGDIAnswer> answers) throws JGDIException {
       <%=classname%> obj = new <%=classname%>Impl(<%
    first = true;  
    for (java.util.Map.Entry<String, String> entry: primaryKeys.entrySet()) {
       String pkName = entry.getKey();
       String pkType = entry.getValue();
       if(first) {
         first = false;
       } else {
            %> , <%           
       }
       %><%=pkName%><%
    } // end of for
    %>);
       delete<%=name%>WithAnswer(obj, answers);
    }

   /**
    *   Delete several <code><%=name%></code> objects by its primary key
<%
    for (java.util.Map.Entry<String, String> entry: primaryKeys.entrySet()) {
       String pkName = entry.getKey();
       String pkType = entry.getValue();
%>    *   @param <%=pkName%>s   the <%=pkName%> of the <code><%=name%></code> object
<%
    }
if (name.equals("Job") || name.equals("AdvanceReservation")) {%>    
    *   @param forced  <code>forced</code> delete flag
    *   @param userFilter  delete objects owned by users contained in userFilter 
<%}%>    *   @param answers  <code>answer list</code> object  
    *   @throws JGDIException on any error on the GDI layer
    */
   public void delete<%=name%>sWithAnswer(<%
    first = true;  
    for (java.util.Map.Entry<String, String> entry: primaryKeys.entrySet()) {
       String pkName = entry.getKey();
       // String pkType = entry.getValue();
       if(first) {
         first = false;
       } else {
            %> , <%           
       }
       %>String[] <%=pkName%>s<%
    } // end of for
    if (name.equals("Job") || name.equals("AdvanceReservation")) {%>, boolean forced, UserFilter userFilter
    <%}%>, List<JGDIAnswer> answers) throws JGDIException {

    <%
    if (name.equals("Job") || name.equals("AdvanceReservation")) {
       first = true;
       for (java.util.Map.Entry<String, String> entry: primaryKeys.entrySet()) {
          String pkName = entry.getKey();
    %>
         delete<%=name%>sWithAnswer(  
         <% if (first) {
            first = false;%>
            (Object[])<%=pkName%>s
         <%} else {%>
            , (Object[])<%=pkName%>s
         <%}%>
       <%
        } // end of for 
       %>, forced, userFilter, answers);
<%} else {
      first = true;  
    for (java.util.Map.Entry<String, String> entry: primaryKeys.entrySet()) {
       String pkName = entry.getKey();
       if (first) {%>
       // Other objects
       List< <%=classname%> > list = new LinkedList< <%=classname%> >();

       for (int i=0; <%=pkName%>s != null && i < <%=pkName%>s.length; i++) {
             <%=classname%> obj = new <%=classname%>Impl(
       <%} else {%> , <%}%>
       <%=pkName%>s[i]
  <%} // end of for 
         %>);
         list.add(obj);
       }
       delete<%=name%>sWithAnswer(list.toArray(), false, null, answers);      
<%}%>    
  }
<%
    } // end of genDeleteByPrimaryKeyMethod
     public void genUpdateMethod() { 
%>       
   /**
    *   Update a <code><%=name%></code> object.
    *   @param obj   the <code><%=name%></code> object with the new values
    *   @throws JGDIException on any error on the GDI layer
    */
   public native void update<%=name%>(<%=classname%> obj) throws JGDIException;

   /**
    *   Update a <code><%=name%></code> object.
    *   @param obj      the <code><%=name%></code> object with the new values
    *   @param answers  the <code>answer list</code> object
    *   @throws JGDIException on any error on the GDI layer
    */
   public native void update<%=name%>WithAnswer(<%=classname%> obj, List<JGDIAnswer> answers) throws JGDIException;
<%   
     } // end of getUpdateMethod 
  } // end of JGDIGenerator  
  // ---------------------------------------------------------------------------
  // Build generators
  // ---------------------------------------------------------------------------
  java.util.List<JGDIJniGenerator> generators = new java.util.LinkedList<JGDIJniGenerator>();
  for (String name : cullDef.getObjectNames()) {
      com.sun.grid.cull.CullObject cullObj = cullDef.getCullObject(name);
      generators.add(new JGDIJniGenerator(cullObj));
  } // end of for
%>
package com.sun.grid.jgdi.jni;

import com.sun.grid.jgdi.JGDIException;
import com.sun.grid.jgdi.filter.*;
import java.util.List;
import java.util.LinkedList;
import com.sun.grid.jgdi.CullConstants;
import com.sun.grid.jgdi.configuration.JGDIAnswer;
import com.sun.grid.jgdi.monitoring.filter.UserFilter;

<%  
    for (JGDIJniGenerator gen : generators) {
      gen.genImport();
    }
%>
/**
 *  JNI implementation of {@link com.sun.grid.jgdi.JGDI}
 * 
 */
public class JGDIImpl extends JGDIBaseImpl implements com.sun.grid.jgdi.JGDI {

<%
    //  We can not move the getRealExecHostList into JGDIBase, because
    //  it uses fillExecHostList.
%>   
    /**
     * Get the list of real exec hosts (excludes "template" and "global").
     *
     * @throws com.sun.grid.jgdi.JGDIException 
     * @return the list of real exec hosts
     */
   public List getRealExecHostList() throws com.sun.grid.jgdi.JGDIException {
        List<ExecHost> ret = new LinkedList<ExecHost>();
        PrimaryKeyFilter filter = new PrimaryKeyFilter("EH_Type");
        filter.exclude(CullConstants.EH_name, "template" ); 
        filter.exclude(CullConstants.EH_name, "global" );
        fillExecHostList(ret, filter);
        return ret;
   }

<%  
    for (JGDIJniGenerator gen : generators) {
      gen.genMethods();
    }
%>

}