Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
don't pack the library into the jar until the library is built
[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 void Host::classInit()
83 {
84   if (!EXTENSION_ID.valid()) {
85     EXTENSION_ID = simgrid::Host::extension_create<simgrid::surf::Host>([](void *h) {
86         static_cast<simgrid::surf::Host*>(h)->destroy();
87     });
88     SURF_HOST_LEVEL = EXTENSION_ID.id(); // FIXME: KILLME
89   }
90 }
91
92 Host::Host(simgrid::surf::Model *model, const char *name, xbt_dict_t props,
93                                  xbt_dynar_t storage, RoutingEdge *netElm, Cpu *cpu)
94  : Resource(model, name)
95  , PropertyHolder(props)
96  , p_storage(storage), p_netElm(netElm), p_cpu(cpu)
97 {
98   p_params.ramsize = 0;
99 }
100
101 Host::Host(simgrid::surf::Model *model, const char *name, xbt_dict_t props, lmm_constraint_t constraint,
102                                          xbt_dynar_t storage, RoutingEdge *netElm, Cpu *cpu)
103  : Resource(model, name, constraint)
104  , PropertyHolder(props)
105  , p_storage(storage), p_netElm(netElm), p_cpu(cpu)
106 {
107   p_params.ramsize = 0;
108 }
109
110 /** @brief use destroy() instead of this destructor */
111 Host::~Host()
112 {
113         xbt_assert(currentlyDestroying_, "Don't delete Hosts directly. Call destroy() instead.");
114 }
115 /** @brief Fire the require callbacks and destroy the object
116  *
117  * Don't delete directly an Host, call h->destroy() instead.
118  */
119 void Host::destroy()
120 {
121         if (!currentlyDestroying_) {
122                 currentlyDestroying_ = true;
123                 onDestruction(this);
124                 delete this;
125         }
126 }
127
128 void Host::attach(simgrid::Host* host)
129 {
130   if (p_host != nullptr)
131     xbt_die("Already attached to host %s", host->getName().c_str());
132   host->extension_set(this);
133   p_host = host;
134   onCreation(this);
135 }
136
137 e_surf_resource_state_t Host::getState() {
138   return p_cpu->getState();
139 }
140 void Host::setState(e_surf_resource_state_t state){
141   e_surf_resource_state_t old = Resource::getState();
142   Resource::setState(state);
143   onStateChange(this, old, state);
144   p_cpu->setState(state);
145 }
146
147 Action *Host::execute(double size) {
148   return p_cpu->execute(size);
149 }
150 Action *Host::sleep(double duration) {
151   return p_cpu->sleep(duration);
152 }
153
154
155 simgrid::surf::Storage *Host::findStorageOnMountList(const char* mount)
156 {
157   simgrid::surf::Storage *st = NULL;
158   s_mount_t mnt;
159   unsigned int cursor;
160
161   XBT_DEBUG("Search for storage name '%s' on '%s'", mount, getName());
162   xbt_dynar_foreach(p_storage,cursor,mnt)
163   {
164     XBT_DEBUG("See '%s'",mnt.name);
165     if(!strcmp(mount,mnt.name)){
166       st = static_cast<simgrid::surf::Storage*>(mnt.storage);
167       break;
168     }
169   }
170   if(!st) xbt_die("Can't find mount '%s' for '%s'", mount, getName());
171   return st;
172 }
173
174 xbt_dict_t Host::getMountedStorageList()
175 {
176   s_mount_t mnt;
177   unsigned int i;
178   xbt_dict_t storage_list = xbt_dict_new_homogeneous(NULL);
179   char *storage_name = NULL;
180
181   xbt_dynar_foreach(p_storage,i,mnt){
182     storage_name = (char *)static_cast<simgrid::surf::Storage*>(mnt.storage)->getName();
183     xbt_dict_set(storage_list,mnt.name,storage_name,NULL);
184   }
185   return storage_list;
186 }
187
188 xbt_dynar_t Host::getAttachedStorageList()
189 {
190   xbt_lib_cursor_t cursor;
191   char *key;
192   void **data;
193   xbt_dynar_t result = xbt_dynar_new(sizeof(void*), NULL);
194   xbt_lib_foreach(storage_lib, cursor, key, data) {
195     if(xbt_lib_get_level(xbt_lib_get_elm_or_null(storage_lib, key), SURF_STORAGE_LEVEL) != NULL) {
196           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));
197           if(!strcmp((const char*)storage->p_attach,this->getName())){
198             xbt_dynar_push_as(result, void *, (void*)storage->getName());
199           }
200         }
201   }
202   return result;
203 }
204
205 Action *Host::open(const char* fullpath) {
206
207   simgrid::surf::Storage *st = NULL;
208   s_mount_t mnt;
209   unsigned int cursor;
210   size_t longest_prefix_length = 0;
211   char *path = NULL;
212   char *file_mount_name = NULL;
213   char *mount_name = NULL;
214
215   XBT_DEBUG("Search for storage name for '%s' on '%s'", fullpath, getName());
216   xbt_dynar_foreach(p_storage,cursor,mnt)
217   {
218     XBT_DEBUG("See '%s'",mnt.name);
219     file_mount_name = (char *) xbt_malloc ((strlen(mnt.name)+1));
220     strncpy(file_mount_name,fullpath,strlen(mnt.name)+1);
221     file_mount_name[strlen(mnt.name)] = '\0';
222
223     if(!strcmp(file_mount_name,mnt.name) && strlen(mnt.name)>longest_prefix_length)
224     {/* The current mount name is found in the full path and is bigger than the previous*/
225       longest_prefix_length = strlen(mnt.name);
226       st = static_cast<simgrid::surf::Storage*>(mnt.storage);
227     }
228     free(file_mount_name);
229   }
230   if(longest_prefix_length>0)
231   { /* Mount point found, split fullpath into mount_name and path+filename*/
232         path = (char *) xbt_malloc ((strlen(fullpath)-longest_prefix_length+1));
233         mount_name = (char *) xbt_malloc ((longest_prefix_length+1));
234         strncpy(mount_name, fullpath, longest_prefix_length+1);
235         strncpy(path, fullpath+longest_prefix_length, strlen(fullpath)-longest_prefix_length+1);
236         path[strlen(fullpath)-longest_prefix_length] = '\0';
237         mount_name[longest_prefix_length] = '\0';
238   }
239   else
240     xbt_die("Can't find mount point for '%s' on '%s'", fullpath, getName());
241
242   XBT_DEBUG("OPEN %s on disk '%s'",path, st->getName());
243   Action *action = st->open((const char*)mount_name, (const char*)path);
244   free((char*)path);
245   free((char*)mount_name);
246   return action;
247 }
248
249 Action *Host::close(surf_file_t fd) {
250   simgrid::surf::Storage *st = findStorageOnMountList(fd->mount);
251   XBT_DEBUG("CLOSE %s on disk '%s'",fd->name, st->getName());
252   return st->close(fd);
253 }
254
255 Action *Host::read(surf_file_t fd, sg_size_t size) {
256   simgrid::surf::Storage *st = findStorageOnMountList(fd->mount);
257   XBT_DEBUG("READ %s on disk '%s'",fd->name, st->getName());
258   return st->read(fd, size);
259 }
260
261 Action *Host::write(surf_file_t fd, sg_size_t size) {
262   simgrid::surf::Storage *st = findStorageOnMountList(fd->mount);
263   XBT_DEBUG("WRITE %s on disk '%s'",fd->name, st->getName());
264   return st->write(fd, size);
265 }
266
267 int Host::unlink(surf_file_t fd) {
268   if (!fd){
269     XBT_WARN("No such file descriptor. Impossible to unlink");
270     return -1;
271   } else {
272
273     simgrid::surf::Storage *st = findStorageOnMountList(fd->mount);
274     /* Check if the file is on this storage */
275     if (!xbt_dict_get_or_null(st->p_content, fd->name)){
276       XBT_WARN("File %s is not on disk %s. Impossible to unlink", fd->name,
277           st->getName());
278       return -1;
279     } else {
280       XBT_DEBUG("UNLINK %s on disk '%s'",fd->name, st->getName());
281       st->m_usedSize -= fd->size;
282
283       // Remove the file from storage
284       xbt_dict_remove(st->p_content, fd->name);
285
286       xbt_free(fd->name);
287       xbt_free(fd->mount);
288       xbt_free(fd);
289       return 0;
290     }
291   }
292 }
293
294 sg_size_t Host::getSize(surf_file_t fd){
295   return fd->size;
296 }
297
298 xbt_dynar_t Host::getInfo( surf_file_t fd)
299 {
300   simgrid::surf::Storage *st = findStorageOnMountList(fd->mount);
301   sg_size_t *psize = xbt_new(sg_size_t, 1);
302   *psize = fd->size;
303   xbt_dynar_t info = xbt_dynar_new(sizeof(void*), NULL);
304   xbt_dynar_push_as(info, sg_size_t *, psize);
305   xbt_dynar_push_as(info, void *, fd->mount);
306   xbt_dynar_push_as(info, void *, (void *)st->getName());
307   xbt_dynar_push_as(info, void *, st->p_typeId);
308   xbt_dynar_push_as(info, void *, st->p_contentType);
309
310   return info;
311 }
312
313 sg_size_t Host::fileTell(surf_file_t fd){
314   return fd->current_position;
315 }
316
317 int Host::fileSeek(surf_file_t fd, sg_offset_t offset, int origin){
318
319   switch (origin) {
320   case SEEK_SET:
321     fd->current_position = offset;
322     return 0;
323   case SEEK_CUR:
324     fd->current_position += offset;
325     return 0;
326   case SEEK_END:
327     fd->current_position = fd->size + offset;
328     return 0;
329   default:
330     return -1;
331   }
332 }
333
334 int Host::fileMove(surf_file_t fd, const char* fullpath){
335   /* Check if the new full path is on the same mount point */
336   if(!strncmp((const char*)fd->mount, fullpath, strlen(fd->mount))) {
337     sg_size_t *psize, *new_psize;
338     psize = (sg_size_t*)
339         xbt_dict_get_or_null(findStorageOnMountList(fd->mount)->p_content,
340                              fd->name);
341     new_psize = xbt_new(sg_size_t, 1);
342     *new_psize = *psize;
343     if (psize){// src file exists
344       xbt_dict_remove(findStorageOnMountList(fd->mount)->p_content, fd->name);
345       char *path = (char *) xbt_malloc ((strlen(fullpath)-strlen(fd->mount)+1));
346       strncpy(path, fullpath+strlen(fd->mount),
347               strlen(fullpath)-strlen(fd->mount)+1);
348       xbt_dict_set(findStorageOnMountList(fd->mount)->p_content, path,
349                    new_psize,NULL);
350       XBT_DEBUG("Move file from %s to %s, size '%llu'",fd->name, fullpath, *psize);
351       free(path);
352       return 0;
353     } else {
354       XBT_WARN("File %s doesn't exist", fd->name);
355       return -1;
356     }
357   } else {
358     XBT_WARN("New full path %s is not on the same mount point: %s. Action has been canceled.",
359              fullpath, fd->mount);
360     return -1;
361   }
362 }
363
364 xbt_dynar_t Host::getVms()
365 {
366   xbt_dynar_t dyn = xbt_dynar_new(sizeof(simgrid::surf::VirtualMachine*), NULL);
367
368   /* iterate for all virtual machines */
369   for (simgrid::surf::VMModel::vm_list_t::iterator iter =
370          simgrid::surf::VMModel::ws_vms.begin();
371        iter !=  simgrid::surf::VMModel::ws_vms.end(); ++iter) {
372
373     simgrid::surf::VirtualMachine *ws_vm = &*iter;
374     if (this == ws_vm->p_hostPM->extension(simgrid::surf::Host::EXTENSION_ID))
375       xbt_dynar_push(dyn, &ws_vm);
376   }
377
378   return dyn;
379 }
380
381 void Host::getParams(vm_params_t params)
382 {
383   *params = p_params;
384 }
385
386 void Host::setParams(vm_params_t params)
387 {
388   /* may check something here. */
389   p_params = *params;
390 }
391
392 }
393 }