Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
3b4341d010ece3bef54ea9c29dfea774b2196924
[simgrid.git] / src / surf / workstation_interface.cpp
1 #include "workstation_interface.hpp"
2 #include "vm_workstation_interface.hpp"
3 #include "cpu_cas01.hpp"
4 #include "simgrid/sg_config.h"
5
6 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_workstation, surf,
7                                 "Logging specific to the SURF workstation module");
8
9 WorkstationModelPtr surf_workstation_model = NULL;
10
11 /*********
12  * Model *
13  *********/
14 WorkstationModel::WorkstationModel(string name)
15  : Model(name)
16 {
17   p_cpuModel = surf_cpu_model_pm;
18 }
19
20 WorkstationModel::WorkstationModel()
21 : Model("Workstation") {
22   p_cpuModel = surf_cpu_model_pm;
23 }
24
25 WorkstationModel::~WorkstationModel() {
26 }
27
28
29
30 /* Each VM has a dummy CPU action on the PM layer. This CPU action works as the
31  * constraint (capacity) of the VM in the PM layer. If the VM does not have any
32  * active task, the dummy CPU action must be deactivated, so that the VM does
33  * not get any CPU share in the PM layer. */
34 void WorkstationModel::adjustWeightOfDummyCpuActions()
35 {
36   /* iterate for all hosts including virtual machines */
37   xbt_lib_cursor_t cursor;
38   char *key;
39   void **ind_host;
40
41   xbt_lib_foreach(host_lib, cursor, key, ind_host) {
42     WorkstationPtr ws = dynamic_cast<WorkstationPtr>(
43                                        static_cast<ResourcePtr>(ind_host[SURF_WKS_LEVEL]));
44     CpuCas01LmmPtr cpu_cas01 = dynamic_cast<CpuCas01LmmPtr>(
45                                static_cast<ResourcePtr>(ind_host[SURF_CPU_LEVEL]));
46
47     if (!ws)
48       continue;
49     /* skip if it is not a virtual machine */
50     if (ws->p_model != static_cast<ModelPtr>(surf_vm_workstation_model))
51       continue;
52     xbt_assert(cpu_cas01, "cpu-less workstation");
53
54     /* It is a virtual machine, so we can cast it to workstation_VM2013_t */
55     WorkstationVMLmmPtr ws_vm = dynamic_cast<WorkstationVMLmmPtr>(ws);
56
57     int is_active = lmm_constraint_used(cpu_cas01->p_model->p_maxminSystem, cpu_cas01->p_constraint);
58     // int is_active_old = constraint_is_active(cpu_cas01);
59
60     // {
61     //   xbt_assert(is_active == is_active_old, "%d %d", is_active, is_active_old);
62     // }
63
64     if (is_active) {
65       /* some tasks exist on this VM */
66       XBT_DEBUG("set the weight of the dummy CPU action on PM to 1");
67
68       /* FIXME: we shoud use lmm_update_variable_weight() ? */
69       /* FIXME: If we assgign 1.05 and 0.05, the system makes apparently wrong values. */
70       ws_vm->p_action->setPriority(1);
71
72     } else {
73       /* no task exits on this VM */
74       XBT_DEBUG("set the weight of the dummy CPU action on PM to 0");
75
76       ws_vm->p_action->setPriority(0);
77     }
78   }
79 }
80
81 /************
82  * Resource *
83  ************/
84 Workstation::Workstation(xbt_dynar_t storage, RoutingEdgePtr netElm, CpuPtr cpu)
85  : p_storage(storage), p_netElm(netElm), p_cpu(cpu)
86 {}
87
88 int Workstation::getCore(){
89   return p_cpu->getCore();
90 }
91
92 double Workstation::getSpeed(double load){
93   return p_cpu->getSpeed(load);
94 }
95
96 double Workstation::getAvailableSpeed(){
97   return p_cpu->getAvailableSpeed();
98 }
99
100 double Workstation::getCurrentPowerPeak()
101 {
102   return p_cpu->getCurrentPowerPeak();
103 }
104
105 double Workstation::getPowerPeakAt(int pstate_index)
106 {
107   return p_cpu->getPowerPeakAt(pstate_index);
108 }
109
110 int Workstation::getNbPstates()
111 {
112   return p_cpu->getNbPstates();
113 }
114
115 void Workstation::setPowerPeakAt(int pstate_index)
116 {
117         p_cpu->setPowerPeakAt(pstate_index);
118 }
119
120 double Workstation::getConsumedEnergy()
121 {
122   return p_cpu->getConsumedEnergy();
123 }
124
125 xbt_dict_t Workstation::getProperties()
126 {
127   return p_cpu->m_properties;
128 }
129
130
131 StoragePtr Workstation::findStorageOnMountList(const char* mount)
132 {
133   StoragePtr st = NULL;
134   s_mount_t mnt;
135   unsigned int cursor;
136
137   XBT_DEBUG("Search for storage name '%s' on '%s'", mount, m_name);
138   xbt_dynar_foreach(p_storage,cursor,mnt)
139   {
140     XBT_DEBUG("See '%s'",mnt.name);
141     if(!strcmp(mount,mnt.name)){
142       st = dynamic_cast<StoragePtr>(static_cast<ResourcePtr>(mnt.storage));
143       break;
144     }
145   }
146   if(!st) xbt_die("Can't find mount '%s' for '%s'", mount, m_name);
147   return st;
148 }
149
150 xbt_dict_t Workstation::getStorageList()
151 {
152   s_mount_t mnt;
153   unsigned int i;
154   xbt_dict_t storage_list = xbt_dict_new_homogeneous(NULL);
155   char *storage_name = NULL;
156
157   xbt_dynar_foreach(p_storage,i,mnt){
158     storage_name = (char *)dynamic_cast<StoragePtr>(static_cast<ResourcePtr>(mnt.storage))->m_name;
159     xbt_dict_set(storage_list,mnt.name,storage_name,NULL);
160   }
161   return storage_list;
162 }
163
164 ActionPtr Workstation::open(const char* mount, const char* path) {
165   StoragePtr st = findStorageOnMountList(mount);
166   XBT_DEBUG("OPEN on disk '%s'", st->m_name);
167   return st->open(mount, path);
168 }
169
170 ActionPtr Workstation::close(surf_file_t fd) {
171   StoragePtr st = findStorageOnMountList(fd->mount);
172   XBT_DEBUG("CLOSE on disk '%s'",st->m_name);
173   return st->close(fd);
174 }
175
176 ActionPtr Workstation::read(surf_file_t fd, sg_size_t size) {
177   StoragePtr st = findStorageOnMountList(fd->mount);
178   XBT_DEBUG("READ on disk '%s'",st->m_name);
179   return st->read(fd, size);
180 }
181
182 ActionPtr Workstation::write(surf_file_t fd, sg_size_t size) {
183   StoragePtr st = findStorageOnMountList(fd->mount);
184   XBT_DEBUG("WRITE on disk '%s'",st->m_name);
185   return st->write(fd, size);
186 }
187
188 int Workstation::unlink(surf_file_t fd) {
189   if (!fd){
190     XBT_WARN("No such file descriptor. Impossible to unlink");
191     return 0;
192   } else {
193 //    XBT_INFO("%s %zu", fd->storage, fd->size);
194     StoragePtr st = findStorageOnMountList(fd->mount);
195     /* Check if the file is on this storage */
196     if (!xbt_dict_get_or_null(st->p_content, fd->name)){
197       XBT_WARN("File %s is not on disk %s. Impossible to unlink", fd->name,
198           st->m_name);
199       return 0;
200     } else {
201       XBT_DEBUG("UNLINK on disk '%s'",st->m_name);
202       st->m_usedSize -= fd->size;
203
204       // Remove the file from storage
205       xbt_dict_remove(st->p_content, fd->name);
206
207       free(fd->name);
208       free(fd->mount);
209       xbt_free(fd);
210       return 1;
211     }
212   }
213 }
214
215 ActionPtr Workstation::ls(const char* mount, const char *path){
216   XBT_DEBUG("LS on mount '%s' and file '%s'", mount, path);
217   StoragePtr st = findStorageOnMountList(mount);
218   return st->ls(path);
219 }
220
221 sg_size_t Workstation::getSize(surf_file_t fd){
222   return fd->size;
223 }
224
225 xbt_dynar_t Workstation::getInfo( surf_file_t fd)
226 {
227   StoragePtr st = findStorageOnMountList(fd->mount);
228   sg_size_t *psize = xbt_new(sg_size_t, 1);
229   *psize = fd->size;
230   xbt_dynar_t info = xbt_dynar_new(sizeof(void*), NULL);
231   xbt_dynar_push_as(info, sg_size_t *, psize);
232   xbt_dynar_push_as(info, void *, fd->mount);
233   xbt_dynar_push_as(info, void *, (void *)st->m_name);
234   xbt_dynar_push_as(info, void *, st->p_typeId);
235   xbt_dynar_push_as(info, void *, st->p_contentType);
236
237   return info;
238 }
239
240 sg_size_t Workstation::fileTell(surf_file_t fd){
241   return fd->current_position;
242 }
243
244 int Workstation::fileSeek(surf_file_t fd, sg_size_t offset, int origin){
245
246   switch (origin) {
247   case SEEK_SET:
248     fd->current_position = 0;
249         return MSG_OK;
250   case SEEK_CUR:
251         if(offset > fd->size)
252           offset = fd->size;
253         fd->current_position = offset;
254         return MSG_OK;
255   case SEEK_END:
256         fd->current_position = fd->size;
257         return MSG_OK;
258   default:
259         return MSG_TASK_CANCELED;
260   }
261 }
262
263 sg_size_t Workstation::getFreeSize(const char* name)
264 {
265   StoragePtr st = findStorageOnMountList(name);
266   return st->m_size - st->m_usedSize;
267 }
268
269 sg_size_t Workstation::getUsedSize(const char* name)
270 {
271   StoragePtr st = findStorageOnMountList(name);
272   return st->m_usedSize;
273 }
274
275 xbt_dynar_t Workstation::getVms()
276 {
277   xbt_dynar_t dyn = xbt_dynar_new(sizeof(smx_host_t), NULL);
278
279   /* iterate for all hosts including virtual machines */
280   xbt_lib_cursor_t cursor;
281   char *key;
282   void **ind_host;
283   xbt_lib_foreach(host_lib, cursor, key, ind_host) {
284     WorkstationPtr ws = dynamic_cast<WorkstationPtr>(static_cast<ResourcePtr>(ind_host[SURF_WKS_LEVEL]));
285     if (!ws)
286       continue;
287     /* skip if it is not a virtual machine */
288     if (ws->p_model != static_cast<ModelPtr>(surf_vm_workstation_model))
289       continue;
290
291     /* It is a virtual machine, so we can cast it to workstation_VM2013_t */
292     WorkstationVMPtr ws_vm = dynamic_cast<WorkstationVMPtr>(ws);
293     if (this == ws_vm-> p_subWs)
294       xbt_dynar_push(dyn, &ws_vm->p_subWs);
295   }
296
297   return dyn;
298 }
299
300 void Workstation::getParams(ws_params_t params)
301 {
302   memcpy(params, &p_params, sizeof(s_ws_params_t));
303 }
304
305 void Workstation::setParams(ws_params_t params)
306 {
307   /* may check something here. */
308   memcpy(&p_params, params, sizeof(s_ws_params_t));
309 }
310
311 /**********
312  * Action *
313  **********/