Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
vm_migrate is now part of the live_migration plugin \o/
[simgrid.git] / src / plugins / vm / VmLiveMigration.hpp
diff --git a/src/plugins/vm/VmLiveMigration.hpp b/src/plugins/vm/VmLiveMigration.hpp
new file mode 100644 (file)
index 0000000..7df29b4
--- /dev/null
@@ -0,0 +1,55 @@
+/* Copyright (c) 2004-2016. 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"
+
+#ifndef VM_LIVE_MIGRATION_HPP_
+#define VM_LIVE_MIGRATION_HPP_
+
+namespace simgrid {
+namespace vm {
+
+class MigrationRx {
+  /* The miration_rx process uses mbox_ctl to let the caller of do_migration()  know the completion of the migration. */
+  s4u::MailboxPtr mbox_ctl;
+  /* The migration_rx and migration_tx processes use mbox to transfer migration data. */
+  s4u::MailboxPtr mbox;
+  s4u::VirtualMachine* vm_;
+  s4u::Host* src_pm_ = nullptr;
+  s4u::Host* dst_pm_ = nullptr;
+
+public:
+  explicit MigrationRx(s4u::VirtualMachine* vm, s4u::Host* dst_pm) : vm_(vm), dst_pm_(dst_pm)
+  {
+    src_pm_ = vm_->getPm();
+
+    mbox_ctl = s4u::Mailbox::byName(std::string("__mbox_mig_ctl:") + vm_->getCname() + "(" + src_pm_->getCname() + "-" +
+                                    dst_pm_->getCname() + ")");
+    mbox = s4u::Mailbox::byName(std::string("__mbox_mig_src_dst:") + vm_->getCname() + "(" + src_pm_->getCname() + "-" +
+                                dst_pm_->getCname() + ")");
+  }
+  void operator()();
+};
+
+class MigrationTx {
+  /* The migration_rx and migration_tx processes use mbox to transfer migration data. */
+  s4u::MailboxPtr mbox;
+  s4u::VirtualMachine* vm_;
+  s4u::Host* src_pm_ = nullptr;
+  s4u::Host* dst_pm_ = nullptr;
+
+public:
+  explicit MigrationTx(s4u::VirtualMachine* vm, s4u::Host* dst_pm) : vm_(vm), dst_pm_(dst_pm)
+  {
+    src_pm_ = vm_->getPm();
+    mbox = s4u::Mailbox::byName(std::string("__mbox_mig_src_dst:") + vm_->getCname() + "(" + src_pm_->getCname() + "-" +
+                                dst_pm_->getCname() + ")");
+  }
+  void operator()();
+  sg_size_t sendMigrationData(sg_size_t size, int stage, int stage2_round, double mig_speed, double timeout);
+};
+}
+}
+#endif