Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'actor-yield' of github.com:Takishipp/simgrid into actor-yield
[simgrid.git] / src / bindings / java / org / simgrid / msg / Msg.java
1 /* JNI interface to C code for MSG. */
2
3 /* Copyright (c) 2006-2017. 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
10 public final class Msg {
11
12         /** Retrieves the simulation time */
13         public static final native double getClock();
14         /** Issue a debug logging message. */
15         public static final native void debug(String msg);
16         /** Issue a verbose logging message. */
17         public static final native void verb(String msg);
18         /** Issue an information logging message */
19         public static final native void info(String msg);
20         /** Issue a warning logging message. */
21         public static final native void warn(String msg);
22         /** Issue an error logging message. */
23         public static final native void error(String msg);
24         /** Issue a critical logging message. */
25         public static final native void critical(String s);
26
27         private Msg() {
28                 throw new IllegalAccessError("Utility class");
29         }
30
31         /*********************************************************************************
32          * Deployment and initialization related functions                               *
33          *********************************************************************************/
34
35         /** Initialize a MSG simulation.
36          *
37          * @param args            The arguments of the command line of the simulation.
38          */
39         public static final native void init(String[]args);
40         
41         /** Tell the kernel that you want to use the energy plugin */
42         public static final native void energyInit();
43
44         /** Run the MSG simulation.
45          *
46          * After the simulation, you can freely retrieve the information that you want.. 
47          * In particular, retrieving the status of a process or the current date is perfectly ok. 
48          */
49         public static final native void run() ;
50
51         /** Create the simulation environment by parsing a platform file. */
52         public static final native void createEnvironment(String platformFile);
53
54         public static final native As environmentGetRoutingRoot();
55
56         /** Starts your processes by parsing a deployment file. */
57         public static final native void deployApplication(String deploymentFile);
58
59         /** Example launcher. You can use it or provide your own launcher, as you wish
60          * @param args
61          */
62         public static void main(String[]args) {
63                 /* initialize the MSG simulation. Must be done before anything else (even logging). */
64                 Msg.init(args);
65
66                 if (args.length < 2) {
67                         Msg.info("Usage: Msg platform_file deployment_file");
68                         System.exit(1);
69                 }
70
71                 /* Load the platform and deploy the application */
72                 Msg.createEnvironment(args[0]);
73                 Msg.deployApplication(args[1]);
74                 /* Execute the simulation */
75                 Msg.run();
76         }
77         
78         /* Class initializer, to initialize various JNI stuff */
79         static {
80                 org.simgrid.NativeLib.nativeInit();
81         }
82 }