Logo AND Algorithmique Numérique Distribuée

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