Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
mv examples/s4u examples/cpp
[simgrid.git] / examples / s4u / cloud-migration / s4u-cloud-migration.cpp
diff --git a/examples/s4u/cloud-migration/s4u-cloud-migration.cpp b/examples/s4u/cloud-migration/s4u-cloud-migration.cpp
deleted file mode 100644 (file)
index 7519fce..0000000
+++ /dev/null
@@ -1,100 +0,0 @@
-/* Copyright (c) 2007-2021. 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. */
-
-#include "simgrid/s4u.hpp"
-#include "simgrid/plugins/live_migration.h"
-#include "simgrid/s4u/VirtualMachine.hpp"
-
-XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_cloud_migration, "Messages specific for this example");
-
-static void vm_migrate(simgrid::s4u::VirtualMachine* vm, simgrid::s4u::Host* dst_pm)
-{
-  const simgrid::s4u::Host* src_pm = vm->get_pm();
-  double mig_sta             = simgrid::s4u::Engine::get_clock();
-  sg_vm_migrate(vm, dst_pm);
-  double mig_end = simgrid::s4u::Engine::get_clock();
-
-  XBT_INFO("%s migrated: %s->%s in %g s", vm->get_cname(), src_pm->get_cname(), dst_pm->get_cname(), mig_end - mig_sta);
-}
-
-static void vm_migrate_async(simgrid::s4u::VirtualMachine* vm, simgrid::s4u::Host* dst_pm)
-{
-  simgrid::s4u::Actor::create("mig_wrk", simgrid::s4u::Host::current(), vm_migrate, vm, dst_pm);
-}
-
-static void master_main()
-{
-  simgrid::s4u::Host* pm0 = simgrid::s4u::Host::by_name("Fafard");
-  simgrid::s4u::Host* pm1 = simgrid::s4u::Host::by_name("Tremblay");
-  simgrid::s4u::Host* pm2 = simgrid::s4u::Host::by_name("Bourassa");
-
-  auto* vm0 = new simgrid::s4u::VirtualMachine("VM0", pm0, 1);
-  vm0->set_ramsize(1e9); // 1Gbytes
-  vm0->start();
-
-  XBT_INFO("Test: Migrate a VM with %zu Mbytes RAM", vm0->get_ramsize() / 1000 / 1000);
-  vm_migrate(vm0, pm1);
-
-  vm0->destroy();
-
-  vm0 = new simgrid::s4u::VirtualMachine("VM0", pm0, 1);
-  vm0->set_ramsize(1e8); // 100Mbytes
-  vm0->start();
-
-  XBT_INFO("Test: Migrate a VM with %zu Mbytes RAM", vm0->get_ramsize() / 1000 / 1000);
-  vm_migrate(vm0, pm1);
-
-  vm0->destroy();
-
-  vm0       = new simgrid::s4u::VirtualMachine("VM0", pm0, 1);
-  auto* vm1 = new simgrid::s4u::VirtualMachine("VM1", pm0, 1);
-
-  vm0->set_ramsize(1e9); // 1Gbytes
-  vm1->set_ramsize(1e9); // 1Gbytes
-  vm0->start();
-  vm1->start();
-
-  XBT_INFO("Test: Migrate two VMs at once from PM0 to PM1");
-  vm_migrate_async(vm0, pm1);
-  vm_migrate_async(vm1, pm1);
-  simgrid::s4u::this_actor::sleep_for(10000);
-
-  vm0->destroy();
-  vm1->destroy();
-
-  vm0 = new simgrid::s4u::VirtualMachine("VM0", pm0, 1);
-  vm1 = new simgrid::s4u::VirtualMachine("VM1", pm0, 1);
-
-  vm0->set_ramsize(1e9); // 1Gbytes
-  vm1->set_ramsize(1e9); // 1Gbytes
-  vm0->start();
-  vm1->start();
-
-  XBT_INFO("Test: Migrate two VMs at once to different PMs");
-  vm_migrate_async(vm0, pm1);
-  vm_migrate_async(vm1, pm2);
-  simgrid::s4u::this_actor::sleep_for(10000);
-
-  vm0->destroy();
-  vm1->destroy();
-}
-
-int main(int argc, char* argv[])
-{
-  /* Get the arguments */
-  simgrid::s4u::Engine e(&argc, argv);
-  sg_vm_live_migration_plugin_init();
-
-  /* load the platform file */
-  e.load_platform(argv[1]);
-
-  simgrid::s4u::Actor::create("master_", simgrid::s4u::Host::by_name("Fafard"), master_main);
-
-  e.run();
-
-  XBT_INFO("Bye (simulation time %g)", simgrid::s4u::Engine::get_clock());
-
-  return 0;
-}