Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make MSG_process_yield visible from java, and test it
[simgrid.git] / src / bindings / java / org / simgrid / msg / Comm.java
1 /* Copyright (c) 2012-2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 package org.simgrid.msg;
8
9 /** Communication action, representing an ongoing communication between processes. */
10 public class Comm {
11         /** Indicates if the communication is a receiving communication */
12         protected boolean receiving;
13         /** Indicates if the communication is finished */
14         protected boolean finished = false;
15         /**
16          * Represents the bind between the java comm and the
17          * native C comm. You must never access it, since it is 
18          * automatically set.
19          */
20         private long bind = 0;
21         /** Represents the bind for the task object pointer. Don't touch it. */
22         private long taskBind = 0;
23         /** Task associated with the comm. Beware, it can be null */
24         protected Task task = null;
25         /**
26          * Protected constructor, used by Comm factories
27          * in Task.
28          */
29         protected Comm() {
30
31         }
32         /** Destroy the C communication object, when the GC reclaims the java part. */
33         protected void finalize() throws Throwable{
34                 nativeFinalize();
35         }
36         protected native void nativeFinalize();
37         /**
38          * Returns if the communication is finished or not.
39          * If the communication has finished and there was an error,
40          * raise an exception.
41          */
42         public native boolean test() throws TransferFailureException, HostFailureException, TimeoutException ;
43         /** Wait infinitely for the completion of the communication (infinite timeout) */
44         public void waitCompletion() throws TransferFailureException, HostFailureException, TimeoutException {
45                 waitCompletion(-1);
46         }
47         /**
48          * Wait for the completion of the communication.
49          * Throws an exception if there were an error in the communication.
50          * @param timeout Time before giving up (infinite time if negative)
51          */
52         public native void waitCompletion(double timeout) throws TransferFailureException, HostFailureException, TimeoutException;
53
54         /** Wait all of the communications */
55         public static native void waitAll(Comm[] comms, double timeout) throws TransferFailureException, HostFailureException, TimeoutException;
56         /** Wait all of the communications, with no maximal delay */
57         public static void waitAll(Comm[] comms) throws TransferFailureException, HostFailureException, TimeoutException {
58                 waitAll(comms, -1.);
59         }
60         /** Wait any of the communications, and return the rank of the terminating comm */
61         public static native void waitAny(Comm[] comms) throws TransferFailureException, HostFailureException, TimeoutException;
62         /**
63          * Returns the task associated with the communication.
64          * if the communication isn't finished yet, will return null.
65          */
66         public Task getTask() {
67                 return task;
68         }
69
70         /** Class initializer, to initialize various JNI stuff */
71         public static native void nativeInit();
72         static {
73                 org.simgrid.NativeLib.nativeInit();
74                 nativeInit();
75         }       
76 }