Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
please sonar
[simgrid.git] / teshsuite / s4u / cloud-interrupt-migration / cloud-interrupt-migration.cpp
1 /* Copyright (c) 2017. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "simgrid/plugins/live_migration.h"
8 #include "simgrid/s4u.hpp"
9 #include "simgrid/s4u/VirtualMachine.hpp"
10
11 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_cloud_interrupt_migration, "Messages specific for this example");
12
13 static void vm_migrate(simgrid::s4u::VirtualMachine* vm, simgrid::s4u::Host* dst_pm)
14 {
15   simgrid::s4u::Host* src_pm = vm->getPm();
16   double mig_sta             = simgrid::s4u::Engine::getClock();
17   sg_vm_migrate(vm, dst_pm);
18   double mig_end = simgrid::s4u::Engine::getClock();
19
20   XBT_INFO("%s migrated: %s->%s in %g s", vm->getCname(), src_pm->getCname(), dst_pm->getCname(), mig_end - mig_sta);
21 }
22
23 static simgrid::s4u::ActorPtr vm_migrate_async(simgrid::s4u::VirtualMachine* vm, simgrid::s4u::Host* dst_pm)
24 {
25   return simgrid::s4u::Actor::createActor("mig_wrk", simgrid::s4u::Host::current(), vm_migrate, vm, dst_pm);
26 }
27
28 static void master_main()
29 {
30   simgrid::s4u::Host* pm0 = simgrid::s4u::Host::by_name("Fafard");
31   simgrid::s4u::Host* pm1 = simgrid::s4u::Host::by_name("Tremblay");
32
33   simgrid::s4u::VirtualMachine* vm0 = new simgrid::s4u::VirtualMachine("VM0", pm0, 1);
34   vm0->setRamsize(1e9); // 1Gbytes
35   vm0->start();
36
37   XBT_INFO("Start the migration of %s from %s to %s", vm0->getCname(), pm0->getCname(), pm1->getCname());
38   vm_migrate_async(vm0, pm1);
39
40   simgrid::s4u::this_actor::sleep_for(2);
41   XBT_INFO("Wait! change my mind, shutdown %s. This ends the migration", vm0->getCname());
42   vm0->shutdown();
43
44   simgrid::s4u::this_actor::sleep_for(8);
45
46   XBT_INFO("Start again the migration of %s from %s to %s", vm0->getCname(), pm0->getCname(), pm1->getCname());
47
48   vm0->start();
49   vm_migrate_async(vm0, pm1);
50
51   XBT_INFO("Wait for the completion of the migration this time");
52   simgrid::s4u::this_actor::sleep_for(200);
53   vm0->destroy();
54 }
55
56 int main(int argc, char* argv[])
57 {
58   /* Get the arguments */
59   simgrid::s4u::Engine e(&argc, argv);
60   sg_vm_live_migration_plugin_init();
61
62   /* load the platform file */
63   e.loadPlatform(argv[1]);
64
65   simgrid::s4u::Actor::createActor("master_", simgrid::s4u::Host::by_name("Fafard"), master_main);
66
67   e.run();
68
69   XBT_INFO("Bye (simulation time %g)", simgrid::s4u::Engine::getClock());
70
71   return 0;
72 }