Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
inline all VM tracing functions
[simgrid.git] / src / msg / instr_msg_vm.cpp
diff --git a/src/msg/instr_msg_vm.cpp b/src/msg/instr_msg_vm.cpp
deleted file mode 100644 (file)
index 1ddf437..0000000
+++ /dev/null
@@ -1,108 +0,0 @@
-/* Copyright (c) 2012-2015. 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 "msg_private.h"
-#include "simgrid/s4u/VirtualMachine.hpp"
-
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_msg_vm, instr, "MSG VM");
-
-/*
- * Instrumentation functions to trace MSG VMs (msg_vm_t)
- */
-void TRACE_msg_vm_change_host(msg_vm_t vm, msg_host_t old_host, msg_host_t new_host)
-{
-  if (TRACE_msg_vm_is_enabled()){
-    static long long int counter = 0;
-    char key[INSTR_DEFAULT_STR_SIZE];
-    snprintf (key, INSTR_DEFAULT_STR_SIZE, "%lld", counter++);
-
-    //start link
-    container_t msg = PJ_container_get(vm->name().c_str());
-    type_t type = PJ_type_get ("MSG_VM_LINK", PJ_type_get_root());
-    new_pajeStartLink (MSG_get_clock(), PJ_container_get_root(), type, msg, "M", key);
-
-    //destroy existing container of this vm
-    container_t existing_container = PJ_container_get(vm->name().c_str());
-    PJ_container_remove_from_parent (existing_container);
-    PJ_container_free(existing_container);
-
-    //create new container on the new_host location
-    PJ_container_new(vm->name().c_str(), INSTR_MSG_VM, PJ_container_get(sg_host_get_name(new_host)));
-
-    //end link
-    msg  = PJ_container_get(vm->name().c_str());
-    type = PJ_type_get ("MSG_VM_LINK", PJ_type_get_root());
-    new_pajeEndLink (MSG_get_clock(), PJ_container_get_root(), type, msg, "M", key);
-  }
-}
-
-void TRACE_msg_vm_start(msg_vm_t vm)
-{
-  if (TRACE_msg_vm_is_enabled()){
-    container_t vm_container = PJ_container_get(vm->name().c_str());
-    type_t type = PJ_type_get ("MSG_VM_STATE", vm_container->type);
-    val_t value = PJ_value_get_or_new ("start", "0 0 1", type); //start is blue
-    new_pajePushState (MSG_get_clock(), vm_container, type, value);
-  }
-
-}
-
-void TRACE_msg_vm_kill(msg_vm_t vm) {
-  if (TRACE_msg_vm_is_enabled()) {
-    //kill means that this vm no longer exists, let's destroy it
-    container_t process = PJ_container_get(vm->name().c_str());
-    PJ_container_remove_from_parent (process);
-    PJ_container_free (process);
-  }
-}
-
-void TRACE_msg_vm_suspend(msg_vm_t vm)
-{
-  if (TRACE_msg_vm_is_enabled()){
-    container_t vm_container = PJ_container_get(vm->name().c_str());
-    type_t type = PJ_type_get ("MSG_VM_STATE", vm_container->type);
-    val_t value = PJ_value_get_or_new ("suspend", "1 0 0", type); //suspend is red
-    new_pajePushState (MSG_get_clock(), vm_container, type, value);
-  }
-}
-
-void TRACE_msg_vm_resume(msg_vm_t vm)
-{
-  if (TRACE_msg_vm_is_enabled()){
-    container_t vm_container = PJ_container_get(vm->name().c_str());
-    type_t type = PJ_type_get ("MSG_VM_STATE", vm_container->type);
-    new_pajePopState (MSG_get_clock(), vm_container, type);
-  }
-}
-
-void TRACE_msg_vm_save(msg_vm_t vm)
-{
-  if (TRACE_msg_vm_is_enabled()){
-    container_t vm_container = PJ_container_get(vm->name().c_str());
-    type_t type = PJ_type_get ("MSG_VM_STATE", vm_container->type);
-    val_t value = PJ_value_get_or_new ("save", "0 1 0", type); //save is green
-    new_pajePushState (MSG_get_clock(), vm_container, type, value);
-  }
-}
-
-void TRACE_msg_vm_restore(msg_vm_t vm)
-{
-  if (TRACE_msg_vm_is_enabled()){
-    container_t vm_container = PJ_container_get(vm->name().c_str());
-    type_t type = PJ_type_get ("MSG_VM_STATE", vm_container->type);
-    new_pajePopState (MSG_get_clock(), vm_container, type);
-  }
-}
-
-// that's the end, let's destroy it
-void TRACE_msg_vm_end(msg_vm_t vm)
-{
-  if (TRACE_msg_vm_is_enabled()) {
-    container_t container = PJ_container_get(vm->name().c_str());
-    PJ_container_remove_from_parent (container);
-    PJ_container_free (container);
-  }
-}