Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into mc
[simgrid.git] / src / surf / workstation_interface.cpp
1 /* Copyright (c) 2013-2014. 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 "simix/smx_private.h"
8 #include "workstation_interface.hpp"
9 #include "vm_workstation_interface.hpp"
10 #include "cpu_cas01.hpp"
11 #include "simgrid/sg_config.h"
12
13 #include "network_interface.hpp"
14
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_workstation, surf,
16                                 "Logging specific to the SURF workstation module");
17
18 WorkstationModelPtr surf_workstation_model = NULL;
19
20 /*************
21  * Callbacks *
22  *************/
23
24 surf_callback(void, WorkstationPtr) workstationCreatedCallbacks;
25 surf_callback(void, WorkstationPtr) workstationDestructedCallbacks;
26 surf_callback(void, WorkstationPtr, e_surf_resource_state_t, e_surf_resource_state_t) workstationStateChangedCallbacks;
27 surf_callback(void, WorkstationActionPtr, e_surf_action_state_t, e_surf_action_state_t) workstationActionStateChangedCallbacks;
28
29 void workstation_parse_init(sg_platf_host_cbarg_t host)
30 {
31   surf_workstation_model->createWorkstation(host->id);
32 }
33
34 void workstation_add_traces(){
35   surf_workstation_model->addTraces();
36 }
37
38 /*********
39  * Model *
40  *********/
41 WorkstationModel::WorkstationModel(const char *name)
42  : Model(name)
43 {
44   p_cpuModel = surf_cpu_model_pm;
45 }
46
47 WorkstationModel::WorkstationModel()
48 : Model("Workstation") {
49   p_cpuModel = surf_cpu_model_pm;
50 }
51
52 WorkstationModel::~WorkstationModel() {
53 }
54
55 /* Each VM has a dummy CPU action on the PM layer. This CPU action works as the
56  * constraint (capacity) of the VM in the PM layer. If the VM does not have any
57  * active task, the dummy CPU action must be deactivated, so that the VM does
58  * not get any CPU share in the PM layer. */
59 void WorkstationModel::adjustWeightOfDummyCpuActions()
60 {
61   /* iterate for all virtual machines */
62   for (WorkstationVMModel::vm_list_t::iterator iter =
63          WorkstationVMModel::ws_vms.begin();
64        iter !=  WorkstationVMModel::ws_vms.end(); ++iter) {
65
66     WorkstationVMPtr ws_vm = &*iter;
67     CpuCas01Ptr cpu_cas01 = static_cast<CpuCas01Ptr>(ws_vm->p_cpu);
68     xbt_assert(cpu_cas01, "cpu-less workstation");
69
70     int is_active = lmm_constraint_used(cpu_cas01->getModel()->getMaxminSystem(), cpu_cas01->getConstraint());
71     // int is_active_old = constraint_is_active(cpu_cas01);
72
73     // {
74     //   xbt_assert(is_active == is_active_old, "%d %d", is_active, is_active_old);
75     // }
76
77     if (is_active) {
78       /* some tasks exist on this VM */
79       XBT_DEBUG("set the weight of the dummy CPU action on PM to 1");
80
81       /* FIXME: we shoud use lmm_update_variable_weight() ? */
82       /* FIXME: If we assgign 1.05 and 0.05, the system makes apparently wrong values. */
83       ws_vm->p_action->setPriority(1);
84
85     } else {
86       /* no task exits on this VM */
87       XBT_DEBUG("set the weight of the dummy CPU action on PM to 0");
88
89       ws_vm->p_action->setPriority(0);
90     }
91   }
92 }
93
94 /************
95  * Resource *
96  ************/
97 Workstation::Workstation()
98 {
99   surf_callback_emit(workstationCreatedCallbacks, this);
100 }
101
102 Workstation::Workstation(ModelPtr model, const char *name, xbt_dict_t props,
103                                  xbt_dynar_t storage, RoutingEdgePtr netElm, CpuPtr cpu)
104  : Resource(model, name, props)
105  , p_storage(storage), p_netElm(netElm), p_cpu(cpu)
106 {
107   p_params.ramsize = 0;
108   surf_callback_emit(workstationCreatedCallbacks, this);
109 }
110
111 Workstation::Workstation(ModelPtr model, const char *name, xbt_dict_t props, lmm_constraint_t constraint,
112                                          xbt_dynar_t storage, RoutingEdgePtr netElm, CpuPtr cpu)
113  : Resource(model, name, props, constraint)
114  , p_storage(storage), p_netElm(netElm), p_cpu(cpu)
115 {
116   p_params.ramsize = 0;
117   surf_callback_emit(workstationCreatedCallbacks, this);
118 }
119
120 Workstation::~Workstation(){
121   surf_callback_emit(workstationDestructedCallbacks, this);
122 }
123
124 void Workstation::setState(e_surf_resource_state_t state){
125   e_surf_resource_state_t old = Resource::getState();
126   Resource::setState(state);
127   surf_callback_emit(workstationStateChangedCallbacks, this, old, state);
128 }
129
130 int Workstation::getCore(){
131   return p_cpu->getCore();
132 }
133
134 double Workstation::getSpeed(double load){
135   return p_cpu->getSpeed(load);
136 }
137
138 double Workstation::getAvailableSpeed(){
139   return p_cpu->getAvailableSpeed();
140 }
141
142 double Workstation::getCurrentPowerPeak()
143 {
144   return p_cpu->getCurrentPowerPeak();
145 }
146
147 double Workstation::getPowerPeakAt(int pstate_index)
148 {
149   return p_cpu->getPowerPeakAt(pstate_index);
150 }
151
152 int Workstation::getNbPstates()
153 {
154   return p_cpu->getNbPstates();
155 }
156
157 void Workstation::setPowerPeakAt(int pstate_index)
158 {
159         p_cpu->setPowerPeakAt(pstate_index);
160 }
161
162 xbt_dict_t Workstation::getProperties()
163 {
164   return p_cpu->getProperties();
165 }
166
167 StoragePtr Workstation::findStorageOnMountList(const char* mount)
168 {
169   StoragePtr st = NULL;
170   s_mount_t mnt;
171   unsigned int cursor;
172
173   XBT_DEBUG("Search for storage name '%s' on '%s'", mount, getName());
174   xbt_dynar_foreach(p_storage,cursor,mnt)
175   {
176     XBT_DEBUG("See '%s'",mnt.name);
177     if(!strcmp(mount,mnt.name)){
178       st = static_cast<StoragePtr>(mnt.storage);
179       break;
180     }
181   }
182   if(!st) xbt_die("Can't find mount '%s' for '%s'", mount, getName());
183   return st;
184 }
185
186 xbt_dict_t Workstation::getMountedStorageList()
187 {
188   s_mount_t mnt;
189   unsigned int i;
190   xbt_dict_t storage_list = xbt_dict_new_homogeneous(NULL);
191   char *storage_name = NULL;
192
193   xbt_dynar_foreach(p_storage,i,mnt){
194     storage_name = (char *)static_cast<StoragePtr>(mnt.storage)->getName();
195     xbt_dict_set(storage_list,mnt.name,storage_name,NULL);
196   }
197   return storage_list;
198 }
199
200 xbt_dynar_t Workstation::getAttachedStorageList()
201 {
202   xbt_lib_cursor_t cursor;
203   char *key;
204   void **data;
205   xbt_dynar_t result = xbt_dynar_new(sizeof(void*), NULL);
206   xbt_lib_foreach(storage_lib, cursor, key, data) {
207     if(xbt_lib_get_level(xbt_lib_get_elm_or_null(storage_lib, key), SURF_STORAGE_LEVEL) != NULL) {
208           StoragePtr storage = static_cast<StoragePtr>(xbt_lib_get_level(xbt_lib_get_elm_or_null(storage_lib, key), SURF_STORAGE_LEVEL));
209           if(!strcmp((const char*)storage->p_attach,this->getName())){
210             xbt_dynar_push_as(result, void *, (void*)storage->getName());
211           }
212         }
213   }
214   return result;
215 }
216
217 ActionPtr Workstation::open(const char* fullpath) {
218
219   StoragePtr st = NULL;
220   s_mount_t mnt;
221   unsigned int cursor;
222   size_t longest_prefix_length = 0;
223   char *path = NULL;
224   char *file_mount_name = NULL;
225   char *mount_name = NULL;
226
227   XBT_DEBUG("Search for storage name for '%s' on '%s'", fullpath, getName());
228   xbt_dynar_foreach(p_storage,cursor,mnt)
229   {
230     XBT_DEBUG("See '%s'",mnt.name);
231     file_mount_name = (char *) xbt_malloc ((strlen(mnt.name)+1));
232     strncpy(file_mount_name,fullpath,strlen(mnt.name)+1);
233     file_mount_name[strlen(mnt.name)] = '\0';
234
235     if(!strcmp(file_mount_name,mnt.name) && strlen(mnt.name)>longest_prefix_length)
236     {/* The current mount name is found in the full path and is bigger than the previous*/
237       longest_prefix_length = strlen(mnt.name);
238       st = static_cast<StoragePtr>(mnt.storage);
239     }
240     free(file_mount_name);
241   }
242   if(longest_prefix_length>0)
243   { /* Mount point found, split fullpath into mount_name and path+filename*/
244         path = (char *) xbt_malloc ((strlen(fullpath)-longest_prefix_length+1));
245         mount_name = (char *) xbt_malloc ((longest_prefix_length+1));
246         strncpy(mount_name, fullpath, longest_prefix_length+1);
247         strncpy(path, fullpath+longest_prefix_length, strlen(fullpath)-longest_prefix_length+1);
248         path[strlen(fullpath)-longest_prefix_length] = '\0';
249         mount_name[longest_prefix_length] = '\0';
250   }
251   else
252     xbt_die("Can't find mount point for '%s' on '%s'", fullpath, getName());
253
254   ActionPtr action = st->open((const char*)mount_name, (const char*)path);
255   free((char*)path);
256   free((char*)mount_name);
257   return action;
258 }
259
260 ActionPtr Workstation::close(surf_file_t fd) {
261   StoragePtr st = findStorageOnMountList(fd->mount);
262   XBT_DEBUG("CLOSE on disk '%s'",st->getName());
263   return st->close(fd);
264 }
265
266 ActionPtr Workstation::read(surf_file_t fd, sg_size_t size) {
267   StoragePtr st = findStorageOnMountList(fd->mount);
268   XBT_DEBUG("READ on disk '%s'",st->getName());
269   return st->read(fd, size);
270 }
271
272 ActionPtr Workstation::write(surf_file_t fd, sg_size_t size) {
273   StoragePtr st = findStorageOnMountList(fd->mount);
274   XBT_DEBUG("WRITE on disk '%s'",st->getName());
275   return st->write(fd, size);
276 }
277
278 int Workstation::unlink(surf_file_t fd) {
279   if (!fd){
280     XBT_WARN("No such file descriptor. Impossible to unlink");
281     return -1;
282   } else {
283
284     StoragePtr st = findStorageOnMountList(fd->mount);
285     /* Check if the file is on this storage */
286     if (!xbt_dict_get_or_null(st->p_content, fd->name)){
287       XBT_WARN("File %s is not on disk %s. Impossible to unlink", fd->name,
288           st->getName());
289       return -1;
290     } else {
291       XBT_DEBUG("UNLINK on disk '%s'",st->getName());
292       st->m_usedSize -= fd->size;
293
294       // Remove the file from storage
295       xbt_dict_remove(st->p_content, fd->name);
296
297       xbt_free(fd->name);
298       xbt_free(fd->mount);
299       xbt_free(fd);
300       return 0;
301     }
302   }
303 }
304
305 sg_size_t Workstation::getSize(surf_file_t fd){
306   return fd->size;
307 }
308
309 xbt_dynar_t Workstation::getInfo( surf_file_t fd)
310 {
311   StoragePtr st = findStorageOnMountList(fd->mount);
312   sg_size_t *psize = xbt_new(sg_size_t, 1);
313   *psize = fd->size;
314   xbt_dynar_t info = xbt_dynar_new(sizeof(void*), NULL);
315   xbt_dynar_push_as(info, sg_size_t *, psize);
316   xbt_dynar_push_as(info, void *, fd->mount);
317   xbt_dynar_push_as(info, void *, (void *)st->getName());
318   xbt_dynar_push_as(info, void *, st->p_typeId);
319   xbt_dynar_push_as(info, void *, st->p_contentType);
320
321   return info;
322 }
323
324 sg_size_t Workstation::fileTell(surf_file_t fd){
325   return fd->current_position;
326 }
327
328 int Workstation::fileSeek(surf_file_t fd, sg_size_t offset, int origin){
329
330   switch (origin) {
331   case SEEK_SET:
332     fd->current_position = offset;
333     return 0;
334   case SEEK_CUR:
335     fd->current_position += offset;
336     return 0;
337   case SEEK_END:
338     fd->current_position = fd->size + offset;
339     return 0;
340   default:
341     return -1;
342   }
343 }
344
345 int Workstation::fileMove(surf_file_t fd, const char* fullpath){
346   /* Check if the new full path is on the same mount point */
347   if(!strncmp((const char*)fd->mount, fullpath, strlen(fd->mount))) {
348     sg_size_t *psize, *new_psize;
349     psize = (sg_size_t*)
350         xbt_dict_get_or_null(findStorageOnMountList(fd->mount)->p_content,
351                              fd->name);
352     new_psize = xbt_new(sg_size_t, 1);
353     *new_psize = *psize;
354     if (psize){// src file exists
355       xbt_dict_remove(findStorageOnMountList(fd->mount)->p_content, fd->name);
356       char *path = (char *) xbt_malloc ((strlen(fullpath)-strlen(fd->mount)+1));;
357       strncpy(path, fullpath+strlen(fd->mount),
358               strlen(fullpath)-strlen(fd->mount)+1);
359       xbt_dict_set(findStorageOnMountList(fd->mount)->p_content, path,
360                    new_psize,NULL);
361       XBT_DEBUG("Move file from %s to %s, size '%llu'",fd->name, fullpath, *psize);
362       free(path);
363       return 0;
364     } else {
365       XBT_WARN("File %s doesn't exist", fd->name);
366       return -1;
367     }
368   } else {
369     XBT_WARN("New full path %s is not on the same mount point: %s. Action has been canceled.",
370              fullpath, fd->mount);
371     return -1;
372   }
373 }
374
375 xbt_dynar_t Workstation::getVms()
376 {
377   xbt_dynar_t dyn = xbt_dynar_new(sizeof(smx_host_t), NULL);
378
379   /* iterate for all virtual machines */
380   for (WorkstationVMModel::vm_list_t::iterator iter =
381          WorkstationVMModel::ws_vms.begin();
382        iter !=  WorkstationVMModel::ws_vms.end(); ++iter) {
383
384     WorkstationVMPtr ws_vm = &*iter;
385     if (this == ws_vm-> p_subWs)
386       xbt_dynar_push(dyn, &ws_vm->p_subWs);
387   }
388
389   return dyn;
390 }
391
392 void Workstation::getParams(ws_params_t params)
393 {
394   *params = p_params;
395 }
396
397 void Workstation::setParams(ws_params_t params)
398 {
399   /* may check something here. */
400   p_params = *params;
401 }
402
403 /**********
404  * Action *
405  **********/
406
407 void WorkstationAction::setState(e_surf_action_state_t state){
408   e_surf_action_state_t old = getState();
409   Action::setState(state);
410   surf_callback_emit(workstationActionStateChangedCallbacks, this, old, state);
411 }