Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
8d07c51b9d82badf063842fb0f675b3f9eaf576a
[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 /**
10  * Communication action, representing an ongoing communication
11  * between processes.
12  */
13 public class Comm {
14         /** Indicates if the communication is a receiving communication */
15         protected boolean receiving;
16         /** Indicates if the communication is finished */
17         protected boolean finished = false;
18         /**
19          * Represents the bind between the java comm and the
20          * native C comm. You must never access it, since it is 
21          * automatically set.
22          */
23         private long bind = 0;
24         /** Represents the bind for the task object pointer. Don't touch it. */
25         private long taskBind = 0;
26         /** Task associated with the comm. Beware, it can be null */
27         protected Task task = null;
28         /**
29          * Protected constructor, used by Comm factories
30          * in Task.
31          */
32         protected Comm() {
33
34         }
35         /** Destroy the C communication object, when the GC reclaims the java part. */
36         @Override
37         protected void finalize() {
38                 try {
39                         nativeFinalize();
40                 } catch (Throwable e) {
41                         e.printStackTrace();
42                 }
43         }
44         protected native void nativeFinalize();
45         /**
46          * Returns if the communication is finished or not.
47          * If the communication has finished and there was an error,
48          * raise an exception.
49          */
50         public native boolean test() throws TransferFailureException, HostFailureException, TimeoutException ;
51         /** Wait infinitely for the completion of the communication (infinite timeout) */
52         public void waitCompletion() throws TransferFailureException, HostFailureException, TimeoutException {
53                 waitCompletion(-1);
54         }
55         /**
56          * Wait for the completion of the communication.
57          * Throws an exception if there were an error in the communication.
58          * @param timeout Time before giving up (infinite time if negative)
59          */
60         public native void waitCompletion(double timeout) throws TransferFailureException, HostFailureException, TimeoutException;
61
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 }