Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into mc-process
[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   p_cpu->setState(state);
129 }
130
131 int Workstation::getCore(){
132   return p_cpu->getCore();
133 }
134
135 double Workstation::getSpeed(double load){
136   return p_cpu->getSpeed(load);
137 }
138
139 double Workstation::getAvailableSpeed(){
140   return p_cpu->getAvailableSpeed();
141 }
142
143 double Workstation::getCurrentPowerPeak()
144 {
145   return p_cpu->getCurrentPowerPeak();
146 }
147
148 double Workstation::getPowerPeakAt(int pstate_index)
149 {
150   return p_cpu->getPowerPeakAt(pstate_index);
151 }
152
153 int Workstation::getNbPstates()
154 {
155   return p_cpu->getNbPstates();
156 }
157
158 void Workstation::setPowerPeakAt(int pstate_index)
159 {
160         p_cpu->setPowerPeakAt(pstate_index);
161 }
162
163 xbt_dict_t Workstation::getProperties()
164 {
165   return p_cpu->getProperties();
166 }
167
168 StoragePtr Workstation::findStorageOnMountList(const char* mount)
169 {
170   StoragePtr st = NULL;
171   s_mount_t mnt;
172   unsigned int cursor;
173
174   XBT_DEBUG("Search for storage name '%s' on '%s'", mount, getName());
175   xbt_dynar_foreach(p_storage,cursor,mnt)
176   {
177     XBT_DEBUG("See '%s'",mnt.name);
178     if(!strcmp(mount,mnt.name)){
179       st = static_cast<StoragePtr>(mnt.storage);
180       break;
181     }
182   }
183   if(!st) xbt_die("Can't find mount '%s' for '%s'", mount, getName());
184   return st;
185 }
186
187 xbt_dict_t Workstation::getMountedStorageList()
188 {
189   s_mount_t mnt;
190   unsigned int i;
191   xbt_dict_t storage_list = xbt_dict_new_homogeneous(NULL);
192   char *storage_name = NULL;
193
194   xbt_dynar_foreach(p_storage,i,mnt){
195     storage_name = (char *)static_cast<StoragePtr>(mnt.storage)->getName();
196     xbt_dict_set(storage_list,mnt.name,storage_name,NULL);
197   }
198   return storage_list;
199 }
200
201 xbt_dynar_t Workstation::getAttachedStorageList()
202 {
203   xbt_lib_cursor_t cursor;
204   char *key;
205   void **data;
206   xbt_dynar_t result = xbt_dynar_new(sizeof(void*), NULL);
207   xbt_lib_foreach(storage_lib, cursor, key, data) {
208     if(xbt_lib_get_level(xbt_lib_get_elm_or_null(storage_lib, key), SURF_STORAGE_LEVEL) != NULL) {
209           StoragePtr storage = static_cast<StoragePtr>(xbt_lib_get_level(xbt_lib_get_elm_or_null(storage_lib, key), SURF_STORAGE_LEVEL));
210           if(!strcmp((const char*)storage->p_attach,this->getName())){
211             xbt_dynar_push_as(result, void *, (void*)storage->getName());
212           }
213         }
214   }
215   return result;
216 }
217
218 ActionPtr Workstation::open(const char* fullpath) {
219
220   StoragePtr st = NULL;
221   s_mount_t mnt;
222   unsigned int cursor;
223   size_t longest_prefix_length = 0;
224   char *path = NULL;
225   char *file_mount_name = NULL;
226   char *mount_name = NULL;
227
228   XBT_DEBUG("Search for storage name for '%s' on '%s'", fullpath, getName());
229   xbt_dynar_foreach(p_storage,cursor,mnt)
230   {
231     XBT_DEBUG("See '%s'",mnt.name);
232     file_mount_name = (char *) xbt_malloc ((strlen(mnt.name)+1));
233     strncpy(file_mount_name,fullpath,strlen(mnt.name)+1);
234     file_mount_name[strlen(mnt.name)] = '\0';
235
236     if(!strcmp(file_mount_name,mnt.name) && strlen(mnt.name)>longest_prefix_length)
237     {/* The current mount name is found in the full path and is bigger than the previous*/
238       longest_prefix_length = strlen(mnt.name);
239       st = static_cast<StoragePtr>(mnt.storage);
240     }
241     free(file_mount_name);
242   }
243   if(longest_prefix_length>0)
244   { /* Mount point found, split fullpath into mount_name and path+filename*/
245         path = (char *) xbt_malloc ((strlen(fullpath)-longest_prefix_length+1));
246         mount_name = (char *) xbt_malloc ((longest_prefix_length+1));
247         strncpy(mount_name, fullpath, longest_prefix_length+1);
248         strncpy(path, fullpath+longest_prefix_length, strlen(fullpath)-longest_prefix_length+1);
249         path[strlen(fullpath)-longest_prefix_length] = '\0';
250         mount_name[longest_prefix_length] = '\0';
251   }
252   else
253     xbt_die("Can't find mount point for '%s' on '%s'", fullpath, getName());
254
255   XBT_DEBUG("OPEN %s on disk '%s'",path, st->getName());
256   ActionPtr action = st->open((const char*)mount_name, (const char*)path);
257   free((char*)path);
258   free((char*)mount_name);
259   return action;
260 }
261
262 ActionPtr Workstation::close(surf_file_t fd) {
263   StoragePtr st = findStorageOnMountList(fd->mount);
264   XBT_DEBUG("CLOSE %s on disk '%s'",fd->name, st->getName());
265   return st->close(fd);
266 }
267
268 ActionPtr Workstation::read(surf_file_t fd, sg_size_t size) {
269   StoragePtr st = findStorageOnMountList(fd->mount);
270   XBT_DEBUG("READ %s on disk '%s'",fd->name, st->getName());
271   return st->read(fd, size);
272 }
273
274 ActionPtr Workstation::write(surf_file_t fd, sg_size_t size) {
275   StoragePtr st = findStorageOnMountList(fd->mount);
276   XBT_DEBUG("WRITE %s on disk '%s'",fd->name, st->getName());
277   return st->write(fd, size);
278 }
279
280 int Workstation::unlink(surf_file_t fd) {
281   if (!fd){
282     XBT_WARN("No such file descriptor. Impossible to unlink");
283     return -1;
284   } else {
285
286     StoragePtr st = findStorageOnMountList(fd->mount);
287     /* Check if the file is on this storage */
288     if (!xbt_dict_get_or_null(st->p_content, fd->name)){
289       XBT_WARN("File %s is not on disk %s. Impossible to unlink", fd->name,
290           st->getName());
291       return -1;
292     } else {
293       XBT_DEBUG("UNLINK %s on disk '%s'",fd->name, st->getName());
294       st->m_usedSize -= fd->size;
295
296       // Remove the file from storage
297       xbt_dict_remove(st->p_content, fd->name);
298
299       xbt_free(fd->name);
300       xbt_free(fd->mount);
301       xbt_free(fd);
302       return 0;
303     }
304   }
305 }
306
307 sg_size_t Workstation::getSize(surf_file_t fd){
308   return fd->size;
309 }
310
311 xbt_dynar_t Workstation::getInfo( surf_file_t fd)
312 {
313   StoragePtr st = findStorageOnMountList(fd->mount);
314   sg_size_t *psize = xbt_new(sg_size_t, 1);
315   *psize = fd->size;
316   xbt_dynar_t info = xbt_dynar_new(sizeof(void*), NULL);
317   xbt_dynar_push_as(info, sg_size_t *, psize);
318   xbt_dynar_push_as(info, void *, fd->mount);
319   xbt_dynar_push_as(info, void *, (void *)st->getName());
320   xbt_dynar_push_as(info, void *, st->p_typeId);
321   xbt_dynar_push_as(info, void *, st->p_contentType);
322
323   return info;
324 }
325
326 sg_size_t Workstation::fileTell(surf_file_t fd){
327   return fd->current_position;
328 }
329
330 int Workstation::fileSeek(surf_file_t fd, sg_offset_t offset, int origin){
331
332   switch (origin) {
333   case SEEK_SET:
334     fd->current_position = offset;
335     return 0;
336   case SEEK_CUR:
337     fd->current_position += offset;
338     return 0;
339   case SEEK_END:
340     fd->current_position = fd->size + offset;
341     return 0;
342   default:
343     return -1;
344   }
345 }
346
347 int Workstation::fileMove(surf_file_t fd, const char* fullpath){
348   /* Check if the new full path is on the same mount point */
349   if(!strncmp((const char*)fd->mount, fullpath, strlen(fd->mount))) {
350     sg_size_t *psize, *new_psize;
351     psize = (sg_size_t*)
352         xbt_dict_get_or_null(findStorageOnMountList(fd->mount)->p_content,
353                              fd->name);
354     new_psize = xbt_new(sg_size_t, 1);
355     *new_psize = *psize;
356     if (psize){// src file exists
357       xbt_dict_remove(findStorageOnMountList(fd->mount)->p_content, fd->name);
358       char *path = (char *) xbt_malloc ((strlen(fullpath)-strlen(fd->mount)+1));
359       strncpy(path, fullpath+strlen(fd->mount),
360               strlen(fullpath)-strlen(fd->mount)+1);
361       xbt_dict_set(findStorageOnMountList(fd->mount)->p_content, path,
362                    new_psize,NULL);
363       XBT_DEBUG("Move file from %s to %s, size '%llu'",fd->name, fullpath, *psize);
364       free(path);
365       return 0;
366     } else {
367       XBT_WARN("File %s doesn't exist", fd->name);
368       return -1;
369     }
370   } else {
371     XBT_WARN("New full path %s is not on the same mount point: %s. Action has been canceled.",
372              fullpath, fd->mount);
373     return -1;
374   }
375 }
376
377 xbt_dynar_t Workstation::getVms()
378 {
379   xbt_dynar_t dyn = xbt_dynar_new(sizeof(WorkstationVMPtr), NULL);
380
381   /* iterate for all virtual machines */
382   for (WorkstationVMModel::vm_list_t::iterator iter =
383          WorkstationVMModel::ws_vms.begin();
384        iter !=  WorkstationVMModel::ws_vms.end(); ++iter) {
385
386     WorkstationVMPtr ws_vm = &*iter;
387     if (this == ws_vm->p_subWs)
388       xbt_dynar_push(dyn, &ws_vm);
389   }
390
391   return dyn;
392 }
393
394 void Workstation::getParams(ws_params_t params)
395 {
396   *params = p_params;
397 }
398
399 void Workstation::setParams(ws_params_t params)
400 {
401   /* may check something here. */
402   p_params = *params;
403 }
404
405 /**********
406  * Action *
407  **********/
408
409 void WorkstationAction::setState(e_surf_action_state_t state){
410   e_surf_action_state_t old = getState();
411   Action::setState(state);
412   surf_callback_emit(workstationActionStateChangedCallbacks, this, old, state);
413 }