Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
9af820b2d201883a5f6a5aa4da0434d619560d5e
[simgrid.git] / src / surf / workstation_interface.cpp
1 #include "workstation_interface.hpp"
2 #include "vm_workstation_interface.hpp"
3 #include "cpu_cas01.hpp"
4 #include "simgrid/sg_config.h"
5
6 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_workstation, surf,
7                                 "Logging specific to the SURF workstation module");
8
9 WorkstationModelPtr surf_workstation_model = NULL;
10
11 /*********
12  * Model *
13  *********/
14 WorkstationModel::WorkstationModel(const char *name)
15  : Model(name)
16 {
17   p_cpuModel = surf_cpu_model_pm;
18 }
19
20 WorkstationModel::WorkstationModel()
21 : Model("Workstation") {
22   p_cpuModel = surf_cpu_model_pm;
23 }
24
25 WorkstationModel::~WorkstationModel() {
26 }
27
28
29
30 /* Each VM has a dummy CPU action on the PM layer. This CPU action works as the
31  * constraint (capacity) of the VM in the PM layer. If the VM does not have any
32  * active task, the dummy CPU action must be deactivated, so that the VM does
33  * not get any CPU share in the PM layer. */
34 void WorkstationModel::adjustWeightOfDummyCpuActions()
35 {
36   /* iterate for all hosts including virtual machines */
37   xbt_lib_cursor_t cursor;
38   char *key;
39   void **ind_host;
40
41   xbt_lib_foreach(host_lib, cursor, key, ind_host) {
42     WorkstationPtr ws = static_cast<WorkstationPtr>(ind_host[SURF_WKS_LEVEL]);
43     CpuCas01Ptr cpu_cas01 = static_cast<CpuCas01Ptr>(ind_host[SURF_CPU_LEVEL]);
44
45     if (!ws)
46       continue;
47     /* skip if it is not a virtual machine */
48     if (ws->getModel() != static_cast<ModelPtr>(surf_vm_workstation_model))
49       continue;
50     xbt_assert(cpu_cas01, "cpu-less workstation");
51
52     /* It is a virtual machine, so we can cast it to workstation_VM2013_t */
53     WorkstationVMPtr ws_vm = static_cast<WorkstationVMPtr>(ws);
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     // {
59     //   xbt_assert(is_active == is_active_old, "%d %d", is_active, is_active_old);
60     // }
61
62     if (is_active) {
63       /* some tasks exist on this VM */
64       XBT_DEBUG("set the weight of the dummy CPU action on PM to 1");
65
66       /* FIXME: we shoud use lmm_update_variable_weight() ? */
67       /* FIXME: If we assgign 1.05 and 0.05, the system makes apparently wrong values. */
68       ws_vm->p_action->setPriority(1);
69
70     } else {
71       /* no task exits on this VM */
72       XBT_DEBUG("set the weight of the dummy CPU action on PM to 0");
73
74       ws_vm->p_action->setPriority(0);
75     }
76   }
77 }
78
79 /************
80  * Resource *
81  ************/
82 Workstation::Workstation(ModelPtr model, const char *name, xbt_dict_t props,
83                                  xbt_dynar_t storage, RoutingEdgePtr netElm, CpuPtr cpu)
84  : Resource(model, name, props)
85  , p_storage(storage), p_netElm(netElm), p_cpu(cpu)
86 {}
87
88 Workstation::Workstation(ModelPtr model, const char *name, xbt_dict_t props, lmm_constraint_t constraint,
89                                          xbt_dynar_t storage, RoutingEdgePtr netElm, CpuPtr cpu)
90  : Resource(model, name, props, constraint)
91  , p_storage(storage), p_netElm(netElm), p_cpu(cpu)
92 {}
93
94 int Workstation::getCore(){
95   return p_cpu->getCore();
96 }
97
98 double Workstation::getSpeed(double load){
99   return p_cpu->getSpeed(load);
100 }
101
102 double Workstation::getAvailableSpeed(){
103   return p_cpu->getAvailableSpeed();
104 }
105
106 double Workstation::getCurrentPowerPeak()
107 {
108   return p_cpu->getCurrentPowerPeak();
109 }
110
111 double Workstation::getPowerPeakAt(int pstate_index)
112 {
113   return p_cpu->getPowerPeakAt(pstate_index);
114 }
115
116 int Workstation::getNbPstates()
117 {
118   return p_cpu->getNbPstates();
119 }
120
121 void Workstation::setPowerPeakAt(int pstate_index)
122 {
123         p_cpu->setPowerPeakAt(pstate_index);
124 }
125
126 xbt_dict_t Workstation::getProperties()
127 {
128   return p_cpu->getProperties();
129 }
130
131 StoragePtr Workstation::findStorageOnMountList(const char* mount)
132 {
133   StoragePtr st = NULL;
134   s_mount_t mnt;
135   unsigned int cursor;
136
137   XBT_DEBUG("Search for storage name '%s' on '%s'", mount, getName());
138   xbt_dynar_foreach(p_storage,cursor,mnt)
139   {
140     XBT_DEBUG("See '%s'",mnt.name);
141     if(!strcmp(mount,mnt.name)){
142       st = static_cast<StoragePtr>(mnt.storage);
143       break;
144     }
145   }
146   if(!st) xbt_die("Can't find mount '%s' for '%s'", mount, getName());
147   return st;
148 }
149
150 xbt_dict_t Workstation::getStorageList()
151 {
152   s_mount_t mnt;
153   unsigned int i;
154   xbt_dict_t storage_list = xbt_dict_new_homogeneous(NULL);
155   char *storage_name = NULL;
156
157   xbt_dynar_foreach(p_storage,i,mnt){
158     storage_name = (char *)static_cast<StoragePtr>(mnt.storage)->getName();
159     xbt_dict_set(storage_list,mnt.name,storage_name,NULL);
160   }
161   return storage_list;
162 }
163
164 ActionPtr Workstation::open(const char* mount, const char* path) {
165   StoragePtr st = findStorageOnMountList(mount);
166   XBT_DEBUG("OPEN on disk '%s'", st->getName());
167   return st->open(mount, path);
168 }
169
170 ActionPtr Workstation::close(surf_file_t fd) {
171   StoragePtr st = findStorageOnMountList(fd->mount);
172   XBT_DEBUG("CLOSE on disk '%s'",st->getName());
173   return st->close(fd);
174 }
175
176 ActionPtr Workstation::read(surf_file_t fd, sg_size_t size) {
177   StoragePtr st = findStorageOnMountList(fd->mount);
178   XBT_DEBUG("READ on disk '%s'",st->getName());
179   return st->read(fd, size);
180 }
181
182 ActionPtr Workstation::write(surf_file_t fd, sg_size_t size) {
183   StoragePtr st = findStorageOnMountList(fd->mount);
184   XBT_DEBUG("WRITE on disk '%s'",st->getName());
185   return st->write(fd, size);
186 }
187
188 int Workstation::unlink(surf_file_t fd) {
189   if (!fd){
190     XBT_WARN("No such file descriptor. Impossible to unlink");
191     return 0;
192   } else {
193 //    XBT_INFO("%s %zu", fd->storage, fd->size);
194     StoragePtr st = findStorageOnMountList(fd->mount);
195     /* Check if the file is on this storage */
196     if (!xbt_dict_get_or_null(st->p_content, fd->name)){
197       XBT_WARN("File %s is not on disk %s. Impossible to unlink", fd->name,
198           st->getName());
199       return 0;
200     } else {
201       XBT_DEBUG("UNLINK on disk '%s'",st->getName());
202       st->m_usedSize -= fd->size;
203
204       // Remove the file from storage
205       xbt_dict_remove(st->p_content, fd->name);
206
207       free(fd->name);
208       free(fd->mount);
209       xbt_free(fd);
210       return 1;
211     }
212   }
213 }
214
215 ActionPtr Workstation::ls(const char* mount, const char *path){
216   XBT_DEBUG("LS on mount '%s' and file '%s'", mount, path);
217   StoragePtr st = findStorageOnMountList(mount);
218   return st->ls(path);
219 }
220
221 sg_size_t Workstation::getSize(surf_file_t fd){
222   return fd->size;
223 }
224
225 xbt_dynar_t Workstation::getInfo( surf_file_t fd)
226 {
227   StoragePtr st = findStorageOnMountList(fd->mount);
228   sg_size_t *psize = xbt_new(sg_size_t, 1);
229   *psize = fd->size;
230   xbt_dynar_t info = xbt_dynar_new(sizeof(void*), NULL);
231   xbt_dynar_push_as(info, sg_size_t *, psize);
232   xbt_dynar_push_as(info, void *, fd->mount);
233   xbt_dynar_push_as(info, void *, (void *)st->getName());
234   xbt_dynar_push_as(info, void *, st->p_typeId);
235   xbt_dynar_push_as(info, void *, st->p_contentType);
236
237   return info;
238 }
239
240 sg_size_t Workstation::fileTell(surf_file_t fd){
241   return fd->current_position;
242 }
243
244 int Workstation::fileSeek(surf_file_t fd, sg_size_t offset, int origin){
245
246   switch (origin) {
247   case SEEK_SET:
248     fd->current_position = 0;
249         return MSG_OK;
250   case SEEK_CUR:
251         if(offset > fd->size)
252           offset = fd->size;
253         fd->current_position = offset;
254         return MSG_OK;
255   case SEEK_END:
256         fd->current_position = fd->size;
257         return MSG_OK;
258   default:
259         return MSG_TASK_CANCELED;
260   }
261 }
262
263 sg_size_t Workstation::getFreeSize(const char* name)
264 {
265   StoragePtr st = findStorageOnMountList(name);
266   return st->m_size - st->m_usedSize;
267 }
268
269 sg_size_t Workstation::getUsedSize(const char* name)
270 {
271   StoragePtr st = findStorageOnMountList(name);
272   return st->m_usedSize;
273 }
274
275 xbt_dynar_t Workstation::getVms()
276 {
277   xbt_dynar_t dyn = xbt_dynar_new(sizeof(smx_host_t), NULL);
278
279   /* iterate for all hosts including virtual machines */
280   xbt_lib_cursor_t cursor;
281   char *key;
282   void **ind_host;
283   xbt_lib_foreach(host_lib, cursor, key, ind_host) {
284     WorkstationPtr ws = static_cast<WorkstationPtr>(ind_host[SURF_WKS_LEVEL]);
285     if (!ws)
286       continue;
287     /* skip if it is not a virtual machine */
288     if (ws->getModel() != static_cast<ModelPtr>(surf_vm_workstation_model))
289       continue;
290
291     /* It is a virtual machine, so we can cast it to workstation_VM2013_t */
292     WorkstationVMPtr ws_vm = static_cast<WorkstationVMPtr>(ws);
293     if (this == ws_vm-> p_subWs)
294       xbt_dynar_push(dyn, &ws_vm->p_subWs);
295   }
296
297   return dyn;
298 }
299
300 void Workstation::getParams(ws_params_t params)
301 {
302   memcpy(params, &p_params, sizeof(s_ws_params_t));
303 }
304
305 void Workstation::setParams(ws_params_t params)
306 {
307   /* may check something here. */
308   memcpy(&p_params, params, sizeof(s_ws_params_t));
309 }
310
311 /**********
312  * Action *
313  **********/