Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix destroy() of vm_ws
[simgrid.git] / src / surf / vm_workstation.c
1 /* Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009, 2010. 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 "xbt/ex.h"
8 #include "xbt/dict.h"
9 #include "portable.h"
10 #include "surf_private.h"
11 #include "surf/surf_resource.h"
12 #include "simgrid/sg_config.h"
13
14 typedef struct workstation_VM2013 {
15   s_surf_resource_t generic_resource;   /* Must remain first to add this to a trace */
16   surf_resource_t physical_workstation;  // Pointer to the host OS
17   e_msg_vm_state_t current_state;            // See include/msg/datatypes.h
18 } s_workstation_VM2013_t, *workstation_VM2013_t;
19
20 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_vm_workstation, surf,
21                                 "Logging specific to the SURF VM workstation module");
22
23 surf_model_t surf_vm_workstation_model = NULL;
24
25 static void vm_ws_create (const char *name, void *phys_workstation)
26 {
27   workstation_VM2013_t vm_ws = xbt_new0(s_workstation_VM2013_t, 1);
28 // TODO Complete the surf vm workstation model
29   vm_ws->generic_resource.model = surf_vm_workstation_model;
30   vm_ws->generic_resource.name = xbt_strdup(name);
31   vm_ws->physical_workstation = phys_workstation;
32   vm_ws->current_state=msg_vm_state_created,
33   xbt_lib_set(host_lib, name, SURF_WKS_LEVEL, vm_ws);
34 }
35
36
37 /*
38  * A physical host does not disapper in the current SimGrid code, but a VM may
39  * disapper during a simulation.
40  */
41 static void vm_ws_destroy(smx_host_t host)
42
43         workstation_VM2013_t vm_ws = surf_workstation_resource_priv(host);
44         xbt_assert(vm_ws);
45         xbt_assert(vm_ws->generic_resource.model == surf_vm_workstation_model);
46
47         const char *name = vm_ws->generic_resource.name;
48         /* not defined yet, but we should have  */
49         /* this will call surf_resource_free() */
50         xbt_lib_unset(host_lib, name, SURF_WKS_LEVEL);
51
52         xbt_free(vm_ws->generic_resource.name);
53         xbt_free(vm_ws);
54 }
55
56 static int vm_ws_get_state(void *vm_ws){
57         return ((workstation_VM2013_t)vm_ws)->current_state;
58 }
59
60 static void vm_ws_set_state(void *vm_ws, int state){
61          ((workstation_VM2013_t)vm_ws)->current_state=state;
62 }
63 static void surf_vm_workstation_model_init_internal(void)
64 {
65   surf_vm_workstation_model = surf_model_init();
66
67   surf_vm_workstation_model->name = "Virtual Workstation";
68
69   surf_vm_workstation_model->extension.vm_workstation.create = vm_ws_create;
70   surf_vm_workstation_model->extension.vm_workstation.set_state = vm_ws_set_state;
71   surf_vm_workstation_model->extension.vm_workstation.get_state = vm_ws_get_state;
72   surf_vm_workstation_model->extension.vm_workstation.destroy = vm_ws_destroy;
73
74 }
75
76 void surf_vm_workstation_model_init()
77 {
78   surf_vm_workstation_model_init_internal();
79   xbt_dynar_push(model_list, &surf_vm_workstation_model);
80 }