Logo AND Algorithmique Numérique Distribuée

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