Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
c8dc581d17d47dfcc409f7932f53859b8a25fd49
[simgrid.git] / examples / python / actor-daemon / actor-daemon.py
1 # Copyright (c) 2017-2018. The SimGrid Team. All rights reserved.          
2 #
3 # This program is free software you can redistribute it and/or modify it
4 # under the terms of the license (GNU LGPL) which comes with this package.
5
6 from simgrid import *
7 import sys
8
9 # The worker process, working for a while before leaving
10 def worker():
11     this_actor.info("Let's do some work (for 10 sec on Boivin).")
12     this_actor.execute(980.95e6)
13
14     this_actor.info("I'm done now. I leave even if it makes the daemon die.")
15
16 # The daemon, displaying a message every 3 seconds until all other processes stop
17 def my_daemon():
18     Actor.self().daemonize()
19
20     while True:
21         this_actor.info("Hello from the infinite loop")
22         this_actor.sleep_for(3.0)
23
24     this_actor.info("I will never reach that point: daemons are killed when regular processes are done")
25
26 if __name__ == '__main__':
27     e = Engine(sys.argv)
28     if len(sys.argv) < 2: raise AssertionError("Usage: actor-daemon.py platform_file [other parameters]")
29
30     e.load_platform(sys.argv[1])
31     Actor.create("worker", Host.by_name("Boivin"), worker)
32     Actor.create("daemon", Host.by_name("Tremblay"), my_daemon)
33
34     e.run()