Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ba424e99c3101311eae830e11dbe3144df171ea6
[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   XBT_DEBUG("OPEN %s on disk '%s'",path, st->getName());
255   ActionPtr action = st->open((const char*)mount_name, (const char*)path);
256   free((char*)path);
257   free((char*)mount_name);
258   return action;
259 }
260
261 ActionPtr Workstation::close(surf_file_t fd) {
262   StoragePtr st = findStorageOnMountList(fd->mount);
263   XBT_DEBUG("CLOSE %s on disk '%s'",fd->name, st->getName());
264   return st->close(fd);
265 }
266
267 ActionPtr Workstation::read(surf_file_t fd, sg_size_t size) {
268   StoragePtr st = findStorageOnMountList(fd->mount);
269   XBT_DEBUG("READ %s on disk '%s'",fd->name, st->getName());
270   return st->read(fd, size);
271 }
272
273 ActionPtr Workstation::write(surf_file_t fd, sg_size_t size) {
274   StoragePtr st = findStorageOnMountList(fd->mount);
275   XBT_DEBUG("WRITE %s on disk '%s'",fd->name, st->getName());
276   return st->write(fd, size);
277 }
278
279 int Workstation::unlink(surf_file_t fd) {
280   if (!fd){
281     XBT_WARN("No such file descriptor. Impossible to unlink");
282     return -1;
283   } else {
284
285     StoragePtr st = findStorageOnMountList(fd->mount);
286     /* Check if the file is on this storage */
287     if (!xbt_dict_get_or_null(st->p_content, fd->name)){
288       XBT_WARN("File %s is not on disk %s. Impossible to unlink", fd->name,
289           st->getName());
290       return -1;
291     } else {
292       XBT_DEBUG("UNLINK %s on disk '%s'",fd->name, st->getName());
293       st->m_usedSize -= fd->size;
294
295       // Remove the file from storage
296       xbt_dict_remove(st->p_content, fd->name);
297
298       xbt_free(fd->name);
299       xbt_free(fd->mount);
300       xbt_free(fd);
301       return 0;
302     }
303   }
304 }
305
306 sg_size_t Workstation::getSize(surf_file_t fd){
307   return fd->size;
308 }
309
310 xbt_dynar_t Workstation::getInfo( surf_file_t fd)
311 {
312   StoragePtr st = findStorageOnMountList(fd->mount);
313   sg_size_t *psize = xbt_new(sg_size_t, 1);
314   *psize = fd->size;
315   xbt_dynar_t info = xbt_dynar_new(sizeof(void*), NULL);
316   xbt_dynar_push_as(info, sg_size_t *, psize);
317   xbt_dynar_push_as(info, void *, fd->mount);
318   xbt_dynar_push_as(info, void *, (void *)st->getName());
319   xbt_dynar_push_as(info, void *, st->p_typeId);
320   xbt_dynar_push_as(info, void *, st->p_contentType);
321
322   return info;
323 }
324
325 sg_size_t Workstation::fileTell(surf_file_t fd){
326   return fd->current_position;
327 }
328
329 int Workstation::fileSeek(surf_file_t fd, sg_offset_t offset, int origin){
330
331   switch (origin) {
332   case SEEK_SET:
333     fd->current_position = offset;
334     return 0;
335   case SEEK_CUR:
336     fd->current_position += offset;
337     return 0;
338   case SEEK_END:
339     fd->current_position = fd->size + offset;
340     return 0;
341   default:
342     return -1;
343   }
344 }
345
346 int Workstation::fileMove(surf_file_t fd, const char* fullpath){
347   /* Check if the new full path is on the same mount point */
348   if(!strncmp((const char*)fd->mount, fullpath, strlen(fd->mount))) {
349     sg_size_t *psize, *new_psize;
350     psize = (sg_size_t*)
351         xbt_dict_get_or_null(findStorageOnMountList(fd->mount)->p_content,
352                              fd->name);
353     new_psize = xbt_new(sg_size_t, 1);
354     *new_psize = *psize;
355     if (psize){// src file exists
356       xbt_dict_remove(findStorageOnMountList(fd->mount)->p_content, fd->name);
357       char *path = (char *) xbt_malloc ((strlen(fullpath)-strlen(fd->mount)+1));
358       strncpy(path, fullpath+strlen(fd->mount),
359               strlen(fullpath)-strlen(fd->mount)+1);
360       xbt_dict_set(findStorageOnMountList(fd->mount)->p_content, path,
361                    new_psize,NULL);
362       XBT_DEBUG("Move file from %s to %s, size '%llu'",fd->name, fullpath, *psize);
363       free(path);
364       return 0;
365     } else {
366       XBT_WARN("File %s doesn't exist", fd->name);
367       return -1;
368     }
369   } else {
370     XBT_WARN("New full path %s is not on the same mount point: %s. Action has been canceled.",
371              fullpath, fd->mount);
372     return -1;
373   }
374 }
375
376 xbt_dynar_t Workstation::getVms()
377 {
378   xbt_dynar_t dyn = xbt_dynar_new(sizeof(smx_host_t), NULL);
379
380   /* iterate for all virtual machines */
381   for (WorkstationVMModel::vm_list_t::iterator iter =
382          WorkstationVMModel::ws_vms.begin();
383        iter !=  WorkstationVMModel::ws_vms.end(); ++iter) {
384
385     WorkstationVMPtr ws_vm = &*iter;
386     if (this == ws_vm-> p_subWs)
387       xbt_dynar_push(dyn, &ws_vm->p_subWs);
388   }
389
390   return dyn;
391 }
392
393 void Workstation::getParams(ws_params_t params)
394 {
395   *params = p_params;
396 }
397
398 void Workstation::setParams(ws_params_t params)
399 {
400   /* may check something here. */
401   p_params = *params;
402 }
403
404 /**********
405  * Action *
406  **********/
407
408 void WorkstationAction::setState(e_surf_action_state_t state){
409   e_surf_action_state_t old = getState();
410   Action::setState(state);
411   surf_callback_emit(workstationActionStateChangedCallbacks, this, old, state);
412 }