Logo AND Algorithmique Numérique Distribuée

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