Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
788bf0f8645c69a6b17e5e314c8b33f3d1decdd2
[simgrid.git] / examples / s4u / actor-migration / s4u-actor-migration.cpp
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 /* This example demonstrate the actor migrations.
7  *
8  * The worker actor first move by itself, and then start an execution.
9  * During that execution, the monitor migrates the worker, that wakes up on another host.
10  * The execution was of the right amount of flops to take exactly 5 seconds on the first host
11  * and 5 other seconds on the second one, so it stops after 10 seconds.
12  *
13  * Then another migration is done by the monitor while the worker is suspended.
14  *
15  * Note that worker() takes an uncommon set of parameters,
16  * and that this is perfectly accepted by create().
17  */
18
19 #include <simgrid/s4u.hpp>
20 #include <simgrid/s4u/Mutex.hpp>
21
22 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_actor_migration, "Messages specific for this s4u example");
23
24 static void worker(simgrid::s4u::Host* first, simgrid::s4u::Host* second)
25 {
26   double flopAmount = first->get_speed() * 5 + second->get_speed() * 5;
27
28   XBT_INFO("Let's move to %s to execute %.2f Mflops (5sec on %s and 5sec on %s)", first->get_cname(), flopAmount / 1e6,
29            first->get_cname(), second->get_cname());
30
31   simgrid::s4u::this_actor::migrate(first);
32   simgrid::s4u::this_actor::execute(flopAmount);
33
34   XBT_INFO("I wake up on %s. Let's suspend a bit", simgrid::s4u::this_actor::get_host()->get_cname());
35
36   simgrid::s4u::this_actor::suspend();
37
38   XBT_INFO("I wake up on %s", simgrid::s4u::this_actor::get_host()->get_cname());
39   XBT_INFO("Done");
40 }
41
42 static void monitor()
43 {
44   simgrid::s4u::Host* boivin    = simgrid::s4u::Host::by_name("Boivin");
45   simgrid::s4u::Host* jacquelin = simgrid::s4u::Host::by_name("Jacquelin");
46   simgrid::s4u::Host* fafard    = simgrid::s4u::Host::by_name("Fafard");
47
48   simgrid::s4u::ActorPtr actor = simgrid::s4u::Actor::create("worker", fafard, worker, boivin, jacquelin);
49
50   simgrid::s4u::this_actor::sleep_for(5);
51
52   XBT_INFO("After 5 seconds, move the process to %s", jacquelin->get_cname());
53   actor->migrate(jacquelin);
54
55   simgrid::s4u::this_actor::sleep_until(15);
56   XBT_INFO("At t=15, move the process to %s and resume it.", fafard->get_cname());
57   actor->migrate(fafard);
58   actor->resume();
59 }
60
61 int main(int argc, char* argv[])
62 {
63   simgrid::s4u::Engine e(&argc, argv);
64   xbt_assert(argc == 2, "Usage: %s platform_file\n\tExample: %s msg_platform.xml\n", argv[0], argv[0]);
65   e.load_platform(argv[1]);
66
67   simgrid::s4u::Actor::create("monitor", simgrid::s4u::Host::by_name("Boivin"), monitor);
68   e.run();
69
70   return 0;
71 }