Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines.
[simgrid.git] / examples / python / actor-daemon / actor-daemon.py
1 # Copyright (c) 2017-2021. 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 Actor, Engine, Host, this_actor
7 import sys
8
9
10 def worker():
11     """The worker process, working for a while before leaving"""
12     this_actor.info("Let's do some work (for 10 sec on Boivin).")
13     this_actor.execute(980.95e6)
14
15     this_actor.info("I'm done now. I leave even if it makes the daemon die.")
16
17
18 def my_daemon():
19     """The daemon, displaying a message every 3 seconds until all other processes stop"""
20     Actor.self().daemonize()
21
22     while True:
23         this_actor.info("Hello from the infinite loop")
24         this_actor.sleep_for(3.0)
25
26     this_actor.info(
27         "I will never reach that point: daemons are killed when regular processes are done")
28
29
30 if __name__ == '__main__':
31     e = Engine(sys.argv)
32     if len(sys.argv) < 2:
33         raise AssertionError(
34             "Usage: actor-daemon.py platform_file [other parameters]")
35
36     e.load_platform(sys.argv[1])
37     Actor.create("worker", Host.by_name("Boivin"), worker)
38     Actor.create("daemon", Host.by_name("Tremblay"), my_daemon)
39
40     e.run()