Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
please sonar and override finalize methods
[simgrid.git] / src / bindings / java / org / simgrid / msg / Task.java
1 /* Copyright (c) 2006-2016. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 package org.simgrid.msg;
7
8 /**
9  * A task is either something to compute somewhere, or something to exchange between two hosts (or both).
10  * It is defined by a computing amount and a message size.
11  *
12  */
13 public class Task {
14         /**
15          * This attribute represents a bind between a java task object and
16          * a native task. Even if this attribute is public you must never
17          * access to it. It is set automatically during the build of the object.
18          */
19         private long bind = 0;
20         /**
21          * Task name
22          */
23         protected String name;
24
25         private double messageSize;
26
27         /** Default constructor (all fields to 0 or null) */
28         public Task() {
29                 create(null, 0, 0);
30                 this.messageSize = 0;
31         }
32
33         /* *              * *
34          * * Constructors * *
35          * *              * */
36         /**
37          * Construct a new task with the specified processing amount and amount
38          * of data needed.
39          *
40          * @param name  Task's name
41          *
42          * @param flopsAmount   A value of the processing amount (in flop) needed to process the task. 
43          *                              If 0, then it cannot be executed with the execute() method.
44          *                              This value has to be ≥ 0.
45          *
46          * @param bytesAmount           A value of amount of data (in bytes) needed to transfert this task.
47          *                              If 0, then it cannot be transfered with the get() and put() methods.
48          *                              This value has to be ≥ 0.
49          */ 
50         public Task(String name, double flopsAmount, double bytesAmount) {
51                 create(name, flopsAmount, bytesAmount);
52                 this.messageSize = bytesAmount;
53         }
54         /**
55          * Construct a new parallel task with the specified processing amount and amount for each host
56          * implied.
57          *
58          * @param name          The name of the parallel task.
59          * @param hosts         The list of hosts implied by the parallel task.
60          * @param flopsAmount   The amount of operations to be performed by each host of hosts. 
61          *                      flopsAmount[i] is the total number of operations that have to be 
62          *                      performed on hosts[i].
63          * @param bytesAmount   A matrix describing the amount of data to exchange between hosts. The 
64          *                      length of this array must be hosts.length * hosts.length. It is actually 
65          *                      used as a matrix with the lines being the source and the columns being 
66          *                      the destination of the communications.
67          */ 
68         public Task(String name, Host[]hosts, double[]flopsAmount, double[]bytesAmount) {
69                 parallelCreate(name, hosts, flopsAmount, bytesAmount);
70         }
71
72         /**
73          * The natively implemented method to create a MSG task.
74          *
75          * @param name            The name of the task.
76          * @param flopsAmount    A value of the processing amount (in flop) needed 
77          *                        to process the task. If 0, then it cannot be executed
78          *                        with the execute() method. This value has to be >= 0.
79          * @param bytesAmount        A value of amount of data (in bytes) needed to transfert 
80          *                        this task. If 0, then it cannot be transfered this task. 
81          *                        If 0, then it cannot be transfered with the get() and put() 
82          *                        methods. This value has to be >= 0.
83          * @exception             IllegalArgumentException if compute duration <0 or message size <0
84          */
85         private final native void create(String name,
86                         double flopsAmount,
87                         double bytesAmount);
88         /**
89          * The natively implemented method to create a MSG parallel task.
90          *
91          * @param name                The name of the parallel task.
92          * @param hosts               The list of hosts implied by the parallel task.
93          * @param flopsAmount         The total number of operations that have to be performed
94          *                            on the hosts.
95          * @param bytesAmount        An array of doubles
96          *
97          */
98         private final native void parallelCreate(String name,
99                         Host[]hosts,
100                         double[]flopsAmount,
101                         double[]bytesAmount);
102         /* *                   * *
103          * * Getters / Setters * *
104          * *                   * */
105         /** Gets the name of the task */
106         public String getName() {
107                 return name;
108         }
109
110         /** Gets the sender of the task (or null if not sent yet) */
111         public native Process getSender();
112
113         /** Gets the source of the task (or null if not sent yet). */
114         public native Host getSource();   
115
116         /** Gets the remaining amount of flops to execute in this task
117          * 
118          * If it's ongoing, you get the exact amount at the present time. If it's already done, it's 0.
119          */
120         public native double getFlopsAmount();
121         /**
122          * Sets the name of the task
123          * @param name the new task name
124          */
125         public native void setName(String name);
126         /**
127          * This method sets the priority of the computation of the task.
128          * The priority doesn't affect the transfer rate. For example a
129          * priority of 2 will make the task receive two times more cpu than
130          * the other ones.
131          *
132          * @param priority      The new priority of the task.
133          */ 
134         public native void setPriority(double priority);
135
136         /** Set the computation amount needed to process the task
137          * 
138          * Warning if the execution is already started and ongoing, this call does nothing.
139          * @param flopsAmount the amount of computation needed to process the task
140          */
141         public native void setFlopsAmount(double flopsAmount);
142         /**
143          * Set the amount of bytes to exchange the task
144          * 
145          * Warning if the communication is already started and ongoing, this call does nothing.
146          * @param bytesAmount the size of the task
147          */
148         public native void setBytesAmount(double bytesAmount);
149         /* *                     * *
150          * * Computation-related * *
151          * *                     * */
152         /**
153          * Executes a task on the location on which the current process is running.
154          *
155          * @throws HostFailureException
156          * @throws TaskCancelledException
157          */
158         public native void execute() throws HostFailureException,TaskCancelledException;
159
160         /** Changes the maximum CPU utilization of a computation task. Unit is flops/s. */
161         public native void setBound(double bound); 
162
163         /** Cancels a task. */ 
164         public native void cancel();
165
166         /** Deletes a task once the garbage collector reclaims it */
167         @Override
168         protected void finalize() throws Throwable{
169                 nativeFinalize();
170                 bind=0; // to avoid segfaults if the impossible happens yet again making this task surviving its finalize()
171         }
172         protected native void nativeFinalize();
173         /* *                       * *
174          * * Communication-related * *
175          * *                       * */
176
177         /** Send the task asynchronously on the specified mailbox, 
178          *  with no way to retrieve whether the communication succeeded or not
179          * 
180          */
181         public native void dsendBounded(String mailbox, double maxrate);
182
183
184         /** Send the task asynchronously on the specified mailbox, 
185          *  with no way to retrieve whether the communication succeeded or not
186          * 
187          */
188         public native void dsend(String mailbox);
189
190         /**
191          * Sends the task on the specified mailbox 
192          *
193          * @param mailbox where to send the message
194          * @throws TimeoutException
195          * @throws HostFailureException 
196          * @throws TransferFailureException 
197          */
198         public void send(String mailbox) throws TransferFailureException, HostFailureException, TimeoutException {
199                 send(mailbox, -1);
200         } 
201
202         /**
203          * Sends the task on the specified mailbox (wait at most \a timeout seconds)
204          *
205          * @param mailbox where to send the message
206          * @param timeout
207          * @throws TimeoutException 
208          * @throws HostFailureException 
209          * @throws TransferFailureException 
210          */
211         public native void send(String mailbox, double timeout) throws TransferFailureException, HostFailureException, TimeoutException;
212
213         /** Sends the task on the specified mailbox (capping the sending rate to \a maxrate) 
214          *
215          * @param mailbox where to send the message
216          * @param maxrate 
217          * @throws TransferFailureException
218          * @throws HostFailureException
219          * @throws TimeoutException
220          */
221         public void sendBounded(String mailbox, double maxrate) throws TransferFailureException, HostFailureException, TimeoutException {
222                 sendBounded(mailbox,-1,maxrate);
223         }
224
225
226         /** Sends the task on the specified mailbox (capping the sending rate to \a maxrate) with a timeout
227          *
228          * @param mailbox where to send the message
229          * @param timeout
230          * @param maxrate 
231          * @throws TransferFailureException
232          * @throws HostFailureException
233          * @throws TimeoutException
234          */
235         public native void sendBounded(String mailbox, double timeout, double maxrate) throws TransferFailureException, HostFailureException, TimeoutException;
236
237
238         /**
239          * Sends the task on the mailbox asynchronously
240          */
241         public native Comm isend(String mailbox);
242
243         /**
244          * Sends the task on the mailbox asynchronously (capping the sending rate to \a maxrate)
245          */
246         public native Comm isendBounded(String mailbox, double maxrate);
247
248
249         /**
250          * Starts listening for receiving a task from an asynchronous communication
251          * @param mailbox
252          * @return a Comm handler
253          */
254         public static native Comm irecv(String mailbox);
255         /**
256          * Retrieves next task from the mailbox identified by the specified name
257          *
258          * @param mailbox
259          * @return a Task
260          */
261
262         public static Task receive(String mailbox) throws TransferFailureException, HostFailureException, TimeoutException {
263                 return receive(mailbox, -1.0, null);
264         }
265
266         /**
267          * Retrieves next task on the mailbox identified by the specified name (wait at most \a timeout seconds)
268          *
269          * @param mailbox
270          * @param timeout
271          * @return a Task
272          */
273         public static Task receive(String mailbox, double timeout) throws  TransferFailureException, HostFailureException, TimeoutException {
274                 return receive(mailbox, timeout, null);
275         }
276
277         /**
278          * Retrieves next task sent by a given host on the mailbox identified by the specified alias 
279          *
280          * @param mailbox
281          * @param host
282          * @return a Task
283          */
284
285         public static Task receive(String mailbox, Host host) throws TransferFailureException, HostFailureException, TimeoutException {
286                 return receive(mailbox, -1.0, host);
287         }
288
289         /**
290          * Retrieves next task sent by a given host on the mailbox identified by the specified alias (wait at most \a timeout seconds)
291          *
292          * @param mailbox
293          * @param timeout 
294          * @param host
295          * @return a Task
296          */
297         public static native Task receive(String mailbox, double timeout, Host host) throws TransferFailureException, HostFailureException, TimeoutException;
298
299         /**
300          * Starts listening for receiving a task from an asynchronous communication with a capped rate
301          * @param mailbox
302          * @return a Comm handler
303          */
304         public static native Comm irecvBounded(String mailbox, double rate);
305         /**
306          * Retrieves next task from the mailbox identified by the specified name with a capped rate
307          *
308          * @param mailbox
309          * @return a Task
310          */
311
312         public static Task receiveBounded(String mailbox, double rate) throws TransferFailureException, HostFailureException, TimeoutException {
313                 return receiveBounded(mailbox, -1.0, null, rate);
314         }
315
316         /**
317          * Retrieves next task on the mailbox identified by the specified name (wait at most \a timeout seconds) with a capped rate
318          *
319          * @param mailbox
320          * @param timeout
321          * @return a Task
322          */
323         public static Task receiveBounded(String mailbox, double timeout, double rate) throws  TransferFailureException, HostFailureException, TimeoutException {
324                 return receiveBounded(mailbox, timeout, null, rate);
325         }
326
327         /**
328          * Retrieves next task sent by a given host on the mailbox identified by the specified alias with a capped rate
329          *
330          * @param mailbox
331          * @param host
332          * @return a Task
333          */
334
335         public static Task receiveBounded(String mailbox, Host host, double rate) throws TransferFailureException, HostFailureException, TimeoutException {
336                 return receiveBounded(mailbox, -1.0, host, rate);
337         }
338
339         /**
340          * Retrieves next task sent by a given host on the mailbox identified by the specified alias (wait at most \a timeout seconds)
341          * with a capped rate
342          *
343          * @param mailbox
344          * @param timeout 
345          * @param host
346          * @return a Task
347          */
348         public static native Task receiveBounded(String mailbox, double timeout, Host host, double rate) throws TransferFailureException, HostFailureException, TimeoutException;
349
350
351
352         /**
353          * Tests whether there is a pending communication on the mailbox identified by the specified alias, and who sent it
354          */
355         public static native int listenFrom(String mailbox);
356         /**
357          * Listen whether there is a task waiting (either for a send or a recv) on the mailbox identified by the specified alias
358          */
359         public static native boolean listen(String mailbox);
360
361         /**
362          * Class initializer, to initialize various JNI stuff
363          */
364         public static native void nativeInit();
365         static {
366                 org.simgrid.NativeLib.nativeInit();
367                 nativeInit();
368         }
369
370         public double getMessageSize() {
371                 return this.messageSize;
372         }
373 }