Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Swig only in maintainer mode
[simgrid.git] / src / bindings / java / org / simgrid / surf / Cpu.java
diff --git a/src/bindings/java/org/simgrid/surf/Cpu.java b/src/bindings/java/org/simgrid/surf/Cpu.java
new file mode 100644 (file)
index 0000000..6c20206
--- /dev/null
@@ -0,0 +1,105 @@
+/* ----------------------------------------------------------------------------
+ * This file was automatically generated by SWIG (http://www.swig.org).
+ * Version 2.0.11
+ *
+ * Do not make changes to this file unless you know what you are doing--modify
+ * the SWIG interface file instead.
+ * ----------------------------------------------------------------------------- */
+
+package org.simgrid.surf;
+
+public class Cpu extends Resource {
+  private long swigCPtr;
+
+  protected Cpu(long cPtr, boolean cMemoryOwn) {
+    super(SurfJNI.Cpu_SWIGUpcast(cPtr), cMemoryOwn);
+    swigCPtr = cPtr;
+  }
+
+  protected static long getCPtr(Cpu obj) {
+    return (obj == null) ? 0 : obj.swigCPtr;
+  }
+
+  protected void finalize() {
+    delete();
+  }
+
+  public synchronized void delete() {
+    if (swigCPtr != 0) {
+      if (swigCMemOwn) {
+        swigCMemOwn = false;
+        SurfJNI.delete_Cpu(swigCPtr);
+      }
+      swigCPtr = 0;
+    }
+    super.delete();
+  }
+
+  protected void swigDirectorDisconnect() {
+    swigCMemOwn = false;
+    delete();
+  }
+
+  public void swigReleaseOwnership() {
+    swigCMemOwn = false;
+    SurfJNI.Cpu_change_ownership(this, swigCPtr, false);
+  }
+
+  public void swigTakeOwnership() {
+    swigCMemOwn = true;
+    SurfJNI.Cpu_change_ownership(this, swigCPtr, true);
+  }
+
+  public Cpu(Model model, String name, XbtDict props, LmmConstraint constraint, int core, double powerPeak, double powerScale) {
+    this(SurfJNI.new_Cpu__SWIG_0(Model.getCPtr(model), model, name, XbtDict.getCPtr(props), props, LmmConstraint.getCPtr(constraint), constraint, core, powerPeak, powerScale), true);
+    SurfJNI.Cpu_director_connect(this, swigCPtr, swigCMemOwn, true);
+  }
+
+  public Cpu(Model model, String name, XbtDict props, int core, double powerPeak, double powerScale) {
+    this(SurfJNI.new_Cpu__SWIG_1(Model.getCPtr(model), model, name, XbtDict.getCPtr(props), props, core, powerPeak, powerScale), true);
+    SurfJNI.Cpu_director_connect(this, swigCPtr, swigCMemOwn, true);
+  }
+
+  public double getCurrentPowerPeak() {
+    return (getClass() == Cpu.class) ? SurfJNI.Cpu_getCurrentPowerPeak(swigCPtr, this) : SurfJNI.Cpu_getCurrentPowerPeakSwigExplicitCpu(swigCPtr, this);
+  }
+
+  public CpuAction execute(double size) {
+  long cPtr = SurfJNI.Cpu_execute(swigCPtr, this, size);
+  return (CpuAction)Surf.getCpuDirector(cPtr);
+}
+
+  public CpuAction sleep(double duration) {
+  long cPtr = SurfJNI.Cpu_sleep(swigCPtr, this, duration);
+  return (CpuAction)Surf.getCpuDirector(cPtr);
+}
+
+  public int getCore() {
+    return (getClass() == Cpu.class) ? SurfJNI.Cpu_getCore(swigCPtr, this) : SurfJNI.Cpu_getCoreSwigExplicitCpu(swigCPtr, this);
+  }
+
+  public double getSpeed(double load) {
+    return (getClass() == Cpu.class) ? SurfJNI.Cpu_getSpeed(swigCPtr, this, load) : SurfJNI.Cpu_getSpeedSwigExplicitCpu(swigCPtr, this, load);
+  }
+
+  public double getAvailableSpeed() {
+    return (getClass() == Cpu.class) ? SurfJNI.Cpu_getAvailableSpeed(swigCPtr, this) : SurfJNI.Cpu_getAvailableSpeedSwigExplicitCpu(swigCPtr, this);
+  }
+
+  public double getPowerPeakAt(int pstate_index) {
+    return SurfJNI.Cpu_getPowerPeakAt(swigCPtr, this, pstate_index);
+  }
+
+  public int getNbPstates() {
+    return SurfJNI.Cpu_getNbPstates(swigCPtr, this);
+  }
+
+  public void setPowerPeakAt(int pstate_index) {
+    SurfJNI.Cpu_setPowerPeakAt(swigCPtr, this, pstate_index);
+  }
+
+  public void setState(ResourceState state) {
+    SurfJNI.Cpu_setState(swigCPtr, this, state.swigValue());
+  }
+
+}