Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
java: rename an internal method
[simgrid.git] / src / bindings / java / org / simgrid / msg / VM.java
1 /* JNI interface to virtual machine in Simgrid */
2
3 /* Copyright (c) 2006-2014. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 package org.simgrid.msg;
9 import java.util.ArrayList;
10
11 public class VM extends Host {
12         // No need to declare a new bind variable: we use the one inherited from the super class Host
13
14         /* Static functions */ 
15
16         private static ArrayList<VM> vms= new ArrayList<>();
17         private Host currentHost; 
18
19         /** Create a `basic' VM (i.e. 1GB of RAM, other values are not taken into account). */
20         public VM(Host host, String name) {
21                 this(host,name,1024, 0, 0);
22         }
23
24         /**
25          * Create a VM
26          * @param host Host node
27          * @param name name of the machine
28          * @param ramSize size of the RAM that should be allocated (in MBytes)
29          * @param migNetSpeed (network bandwith allocated for migrations in MB/s, if you don't know put zero ;))
30          * @param dpIntensity (dirty page percentage according to migNetSpeed, [0-100], if you don't know put zero ;))
31          */
32         public VM(Host host, String name, int ramSize, int migNetSpeed, int dpIntensity){
33                 super();
34                 super.name = name;
35                 this.currentHost = host; 
36                 create(host, name, ramSize, migNetSpeed, dpIntensity);
37                 vms.add(this);
38         }
39
40         public static VM[] all(){
41                 VM[] allvms = new VM[vms.size()];
42                 vms.toArray(allvms);
43                 return allvms;
44         }
45
46         public static VM getVMByName(String name){
47                 for (VM vm : vms){
48                         if (vm.getName().equals(name))
49                                 return vm;
50                 }
51                 return null; 
52         }
53         
54         /** Shutdown and unref the VM. 
55          * 
56          * Actually, this strictly equivalent to shutdown().
57          * In C and in libvirt, the destroy function also releases the memory associated to the VM, 
58          * but this is not the way it goes in Java. The VM will only get destroyed by the garbage 
59          * collector when it is not referenced anymore by your variables. So, to see the VM really 
60          * destroyed, don't call this function but simply release any ref you have on it. 
61          */
62         public void destroy() {
63                 shutdown();
64 ///             vms.remove(this);
65         }
66
67         /* Make sure that the GC also destroys the C object */
68         protected void finalize() throws Throwable {
69                 nativeFinalize();
70         }
71         public native void nativeFinalize();
72
73         /** Returns whether the given VM is currently suspended */      
74         public native int isCreated();
75
76         /** Returns whether the given VM is currently running */
77         public native int isRunning();
78
79         /** Returns whether the given VM is currently running */
80         public native int isMigrating();
81
82         /** Returns whether the given VM is currently suspended */      
83         public native int isSuspended();
84
85         /**
86          * Natively implemented method create the VM.
87          * @param ramSize size of the RAM that should be allocated (in MB)
88          * @param migNetSpeed (network bandwith allocated for migrations in MB/s, if you don't know put zero ;))
89          * @param dpIntensity (dirty page intensity, a percentage of migNetSpeed [0-100],  if you don't know put zero ;))
90          */
91         private native void create(Host host, String name, int ramSize, int migNetSpeed, int dpIntensity);
92
93
94         /**
95          * Set a CPU bound for a given VM.
96          * @param bound in flops/s
97          */
98         public native void setBound(double bound);
99
100         /**  start the VM */
101         public native void start();
102
103
104         /**
105          * Immediately kills all processes within the given VM. 
106          * 
107          * No extra delay occurs. If you want to simulate this too, you want to use a MSG_process_sleep()
108          */
109         public native void shutdown();
110
111         /** native migration routine */
112         private native void nativeMigration(Host destination) throws Exception;
113
114         /** Change the host on which all processes are running
115          * (pre-copy is implemented)
116          */     
117         public void migrate(Host destination) throws HostFailureException{
118                 try {
119                         this.nativeMigration(destination);
120                 } catch (Exception e){
121                   Msg.info("Migration of VM "+this.getName()+" to "+destination.getName()+" is impossible ("+e.getMessage()+")");
122                   throw new HostFailureException();
123                 }
124                 // If the migration correcly returned, then we should change the currentHost value. 
125                 this.currentHost = destination; 
126         }
127
128         /** Immediately suspend the execution of all processes within the given VM
129          *
130          * No suspension cost occurs. If you want to simulate this too, you want to
131          * use a \ref File.write() before or after, depending on the exact semantic
132          * of VM suspend to you.
133          */     
134         public native void suspend();
135
136         /** Immediately resumes the execution of all processes within the given VM
137          *
138          * No resume cost occurs. If you want to simulate this too, you want to
139          * use a \ref File.read() before or after, depending on the exact semantic
140          * of VM resume to you.
141          */
142         public native void resume();
143
144         /**  Class initializer (for JNI), don't do it yourself */
145         public static native void nativeInit();
146         static {
147                 nativeInit();
148         }
149 }