Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
8c1326c8b309f03ea63dca15b0f02f91d76fa311
[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 ind_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 *ind_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  // ind means ''indirect'' that this is a reference on the whole dict_elm structure (i.e not on the surf_resource_private infos)
32   vm_ws->ind_physical_workstation = ind_phys_workstation;
33   vm_ws->current_state=msg_vm_state_created,
34   xbt_lib_set(host_lib, name, SURF_WKS_LEVEL, vm_ws);
35 }
36
37
38 /*
39  * A physical host does not disapper in the current SimGrid code, but a VM may
40  * disapper during a simulation.
41  */
42 static void vm_ws_destroy(void *ind_phys_workstation)
43
44         /* ind_phys_workstation equals to smx_host_t */
45         workstation_VM2013_t vm_ws = surf_workstation_resource_priv(ind_phys_workstation);
46         xbt_assert(vm_ws);
47         xbt_assert(vm_ws->generic_resource.model == surf_vm_workstation_model);
48
49         const char *name = vm_ws->generic_resource.name;
50         /* this will call surf_resource_free() */
51         xbt_lib_unset(host_lib, name, SURF_WKS_LEVEL);
52
53         xbt_free(vm_ws->generic_resource.name);
54         xbt_free(vm_ws);
55 }
56
57 static int vm_ws_get_state(void *ind_vm_ws){
58         return ((workstation_VM2013_t) surf_workstation_resource_priv(ind_vm_ws))->current_state;
59 }
60
61 static void vm_ws_set_state(void *ind_vm_ws, int state){
62          ((workstation_VM2013_t) surf_workstation_resource_priv(ind_vm_ws))->current_state=state;
63 }
64 static void surf_vm_workstation_model_init_internal(void)
65 {
66   surf_vm_workstation_model = surf_model_init();
67
68   surf_vm_workstation_model->name = "Virtual Workstation";
69
70   surf_vm_workstation_model->extension.vm_workstation.create = vm_ws_create;
71   surf_vm_workstation_model->extension.vm_workstation.set_state = vm_ws_set_state;
72   surf_vm_workstation_model->extension.vm_workstation.get_state = vm_ws_get_state;
73   surf_vm_workstation_model->extension.vm_workstation.destroy = vm_ws_destroy;
74
75 }
76
77 void surf_vm_workstation_model_init()
78 {
79   surf_vm_workstation_model_init_internal();
80   xbt_dynar_push(model_list, &surf_vm_workstation_model);
81 }