Logo AND Algorithmique Numérique Distribuée

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