Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
leak--
[simgrid.git] / examples / scala / masterslave / Masterslave.scala
1 /*
2  * Copyright (c) 2006-2013. The SimGrid Team.
3  * 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
9 package masterslave
10
11 import org.simgrid.msg.Msg
12 import org.simgrid.msg.NativeException
13 import org.simgrid.msg.Task
14
15 object Masterslave extends App {
16    val TASK_COMP_SIZE = 10000000
17    val TASK_COMM_SIZE = 10000000
18    /* This only contains the launcher. If you do nothing more than than you can run 
19     *   scala simgrid.msg.Msg
20     * which also contains such a launcher
21     */
22
23      /* initialize the MSG simulation. Must be done before anything else (even logging). */
24      Msg.init(args)
25         
26      if (args.length < 2) {             
27         Msg.info("Usage   : Masterslave platform_file deployment_file")
28         Msg.info("example : Masterslave basic_platform.xml basic_deployment.xml")
29         System.exit(1)
30      }
31                 
32      /* construct the platform and deploy the application */
33      Msg.createEnvironment(args(0))
34      Msg.deployApplication(args(1))
35      /*  execute the simulation. */
36      Msg.run()
37 }