Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[surf] Move some code in a simgrid::surf namespace
[simgrid.git] / src / bindings / java / org / simgrid / surf / CpuModel.java
1 /* ----------------------------------------------------------------------------
2  * This file was automatically generated by SWIG (http://www.swig.org).
3  * Version 2.0.12
4  *
5  * Do not make changes to this file unless you know what you are doing--modify
6  * the SWIG interface file instead.
7  * ----------------------------------------------------------------------------- */
8
9 package org.simgrid.surf;
10
11 public class CpuModel extends Model {
12   private long swigCPtr;
13
14   protected CpuModel(long cPtr, boolean cMemoryOwn) {
15     super(SurfJNI.CpuModel_SWIGUpcast(cPtr), cMemoryOwn);
16     swigCPtr = cPtr;
17   }
18
19   protected static long getCPtr(CpuModel obj) {
20     return (obj == null) ? 0 : obj.swigCPtr;
21   }
22
23   protected void finalize() {
24     delete();
25   }
26
27   public synchronized void delete() {
28     if (swigCPtr != 0) {
29       if (swigCMemOwn) {
30         swigCMemOwn = false;
31         SurfJNI.delete_CpuModel(swigCPtr);
32       }
33       swigCPtr = 0;
34     }
35     super.delete();
36   }
37
38   protected void swigDirectorDisconnect() {
39     swigCMemOwn = false;
40     delete();
41   }
42
43   public void swigReleaseOwnership() {
44     swigCMemOwn = false;
45     SurfJNI.CpuModel_change_ownership(this, swigCPtr, false);
46   }
47
48   public void swigTakeOwnership() {
49     swigCMemOwn = true;
50     SurfJNI.CpuModel_change_ownership(this, swigCPtr, true);
51   }
52
53   public CpuModel() {
54     this(SurfJNI.new_CpuModel(), true);
55     SurfJNI.CpuModel_director_connect(this, swigCPtr, swigCMemOwn, true);
56   }
57
58   public Cpu createCpu(String name, double[] power_peak, int pstate, double power_scale, TmgrTrace power_trace, int core, ResourceState state_initial, TmgrTrace state_trace, XbtDict cpu_properties) {
59     long cPtr = SurfJNI.CpuModel_createCpu(swigCPtr, this, name, power_peak, pstate, power_scale, TmgrTrace.getCPtr(power_trace), power_trace, core, state_initial.swigValue(), TmgrTrace.getCPtr(state_trace), state_trace, XbtDict.getCPtr(cpu_properties), cpu_properties);
60     return (cPtr == 0) ? null : new Cpu(cPtr, false);
61   }
62
63 }