File: actor_daemon.java

package info (click to toggle)
simgrid 4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 38,980 kB
  • sloc: cpp: 123,583; ansic: 66,779; python: 8,358; java: 6,406; fortran: 6,079; f90: 5,123; xml: 4,587; sh: 2,337; perl: 1,436; makefile: 105; lisp: 49; javascript: 7; sed: 6
file content (45 lines) | stat: -rw-r--r-- 1,228 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* Copyright (c) 2017-2025. The SimGrid Team. All rights reserved.          */

/* This program is free software; you can redistribute it and/or modify it
 * under the terms of the license (GNU LGPL) which comes with this package. */

import org.simgrid.s4u.*;

/* The worker actor, working for a while before leaving */
class worker extends Actor {
  public void run()
  {
    Engine.info("Let's do some work (for 10 sec on Boivin).");
    execute(980.95e6);

    Engine.info("I'm done now. I leave even if it makes the daemon die.");
  }
}

/* The daemon, displaying a message every 3 seconds until all other actors stop */
class my_daemon extends Actor {
  public void run()
  {
    Actor.self().daemonize();

    while (get_host().is_on()) {
      Engine.info("Hello from the infinite loop");
      sleep_for(3.0);
    }

    Engine.info("I will never reach that point: daemons are killed when regular actors are done");
  }
}

public class actor_daemon {
  public static void main(String[] args)
  {
    Engine e = new Engine(args);

    e.load_platform(args[0]);
    e.add_actor("worker", e.host_by_name("Boivin"), new worker());
    e.add_actor("daemon", e.host_by_name("Tremblay"), new my_daemon());

    e.run();
  }
}