Logo AND Algorithmique Numérique Distribuée

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