Logo AND Algorithmique Numérique Distribuée

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