Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
kill dead code
[simgrid.git] / src / simdag / sd_workstation.c
1 /* Copyright (c) 2006-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 "private.h"
8 #include "simgrid/simdag.h"
9 #include "xbt/dict.h"
10 #include "xbt/lib.h"
11 #include "xbt/sysdep.h"
12 #include "surf/surf.h"
13 #include "simgrid/msg.h" //FIXME: why?
14
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(sd_workstation, sd,
16                                 "Logging specific to SimDag (workstation)");
17
18 /* Creates a workstation and registers it in SD.
19  */
20 SD_workstation_t __SD_workstation_create(void *surf_workstation,
21                                          void *data)
22 {
23
24   SD_workstation_priv_t workstation;
25   const char *name;
26
27   workstation = xbt_new(s_SD_workstation_priv_t, 1);
28   workstation->access_mode = SD_WORKSTATION_SHARED_ACCESS;      /* default mode is shared */
29   workstation->task_fifo = NULL;
30   workstation->current_task = NULL;
31
32   name = surf_resource_name(surf_workstation);
33   sg_host_t sg_host = sg_host_by_name(name);
34   sg_host_sd_set(sg_host,workstation);
35   sg_host_user_set(sg_host,data);
36   return sg_host;
37 }
38
39 /* Creates a storage and registers it in SD.
40  */
41 SD_storage_t __SD_storage_create(void *surf_storage, void *data)
42 {
43
44   SD_storage_priv_t storage;
45   const char *name;
46
47   storage = xbt_new(s_SD_storage_priv_t, 1);
48   storage->data = data;     /* user data */
49   name = surf_resource_name(surf_storage);
50   storage->host = surf_storage_get_host(surf_storage_resource_by_name(name));
51   xbt_lib_set(storage_lib,name, SD_STORAGE_LEVEL, storage);
52   return xbt_lib_get_elm_or_null(storage_lib, name);
53 }
54
55 /* Destroys a storage.
56  */
57 void __SD_storage_destroy(void *storage)
58 {
59   SD_storage_priv_t s;
60
61   s = (SD_storage_priv_t) storage;
62   xbt_free(s);
63 }
64
65 /**
66  * \brief Returns a workstation given its name
67  *
68  * If there is no such workstation, the function returns \c NULL.
69  *
70  * \param name workstation name
71  * \return the workstation, or \c NULL if there is no such workstation
72  */
73 SD_workstation_t SD_workstation_get_by_name(const char *name)
74 {
75   return sg_host_by_name(name);
76 }
77
78 /**
79  * \brief Returns the workstation list
80  *
81  * Use SD_workstation_get_number() to know the array size.
82  * 
83  * \return an array of \ref SD_workstation_t containing all workstations
84  * \remark The workstation order in the returned array is generally different from the workstation creation/declaration order in the XML platform (we use a hash table internally).
85  * \see SD_workstation_get_number()
86  */
87 const SD_workstation_t *SD_workstation_get_list(void) {
88   xbt_assert(SD_workstation_get_number() > 0, "There is no workstation!");
89
90   if (sd_global->workstation_list == NULL)     /* this is the first time the function is called */
91     sd_global->workstation_list = xbt_dynar_to_array(sg_hosts_as_dynar());
92
93   return sd_global->workstation_list;
94 }
95
96 /**
97  * \brief Returns the number of workstations
98  *
99  * \return the number of existing workstations
100  * \see SD_workstation_get_list()
101  */
102 int SD_workstation_get_number(void)
103 {
104   return sg_host_count();
105 }
106
107 /**
108  * \brief Returns the user data of a workstation
109  *
110  * \param workstation a workstation
111  * \return the user data associated with this workstation (can be \c NULL)
112  * \see SD_workstation_set_data()
113  */
114 void *SD_workstation_get_data(SD_workstation_t workstation)
115 {
116   return sg_host_user(workstation);
117 }
118
119 /**
120  * \brief Sets the user data of a workstation
121  *
122  * The new data can be \c NULL. The old data should have been freed first
123  * if it was not \c NULL.
124  *
125  * \param workstation a workstation
126  * \param data the new data you want to associate with this workstation
127  * \see SD_workstation_get_data()
128  */
129 void SD_workstation_set_data(SD_workstation_t workstation, void *data)
130 {
131         sg_host_user_set(workstation, data);
132 }
133
134 /**
135  * \brief Returns the name of a workstation
136  *
137  * \param workstation a workstation
138  * \return the name of this workstation (cannot be \c NULL)
139  */
140 const char *SD_workstation_get_name(SD_workstation_t workstation)
141 {
142   return sg_host_get_name(workstation);
143 }
144
145 /**
146  * \brief Returns the value of a given workstation property
147  *
148  * \param ws a workstation
149  * \param name a property name
150  * \return value of a property (or NULL if property not set)
151  */
152 const char *SD_workstation_get_property_value(SD_workstation_t ws,
153                                               const char *name)
154 {
155   return xbt_dict_get_or_null(SD_workstation_get_properties(ws), name);
156 }
157
158
159 /**
160  * \brief Returns a #xbt_dict_t consisting of the list of properties assigned to this workstation
161  *
162  * \param workstation a workstation
163  * \return the dictionary containing the properties associated with the workstation
164  */
165 xbt_dict_t SD_workstation_get_properties(SD_workstation_t workstation)
166 {
167   return sg_host_get_properties(workstation);
168 }
169
170
171 /** @brief Displays debugging informations about a workstation */
172 void SD_workstation_dump(SD_workstation_t ws)
173 {
174   xbt_dict_t props;
175   xbt_dict_cursor_t cursor=NULL;
176   char *key,*data;
177   SD_task_t task = NULL;
178   
179   XBT_INFO("Displaying workstation %s", SD_workstation_get_name(ws));
180   XBT_INFO("  - power: %.0f", SD_workstation_get_power(ws));
181   XBT_INFO("  - available power: %.2f", SD_workstation_get_available_power(ws));
182   switch (sg_host_sd(ws)->access_mode){
183   case SD_WORKSTATION_SHARED_ACCESS:
184       XBT_INFO("  - access mode: Space shared");
185       break;
186   case SD_WORKSTATION_SEQUENTIAL_ACCESS:
187       XBT_INFO("  - access mode: Exclusive");
188     task = SD_workstation_get_current_task(ws);
189     if(task)
190       XBT_INFO("    current running task: %s",
191                SD_task_get_name(task));
192     else
193       XBT_INFO("    no task running");
194       break;
195   default: break;
196   }
197   props = SD_workstation_get_properties(ws);
198   
199   if (!xbt_dict_is_empty(props)){
200     XBT_INFO("  - properties:");
201
202     xbt_dict_foreach(props,cursor,key,data) {
203       XBT_INFO("    %s->%s",key,data);
204     }
205   }
206 }
207
208 /**
209  * \brief Returns the route between two workstations
210  *
211  * Use SD_route_get_size() to know the array size.
212  *
213  * \param src a workstation
214  * \param dst another workstation
215  * \return a new array of \ref SD_link_t representating the route between these two workstations
216  * \see SD_route_get_size(), SD_link_t
217  */
218 const SD_link_t *SD_route_get_list(SD_workstation_t src,
219                                    SD_workstation_t dst)
220 {
221   void *surf_src;
222   void *surf_dst;
223   xbt_dynar_t surf_route;
224   void *surf_link;
225   unsigned int cpt;
226
227   if (sd_global->recyclable_route == NULL) {
228     /* first run */
229     sd_global->recyclable_route = xbt_new(SD_link_t, SD_link_get_number());
230   }
231
232   surf_src = src;
233   surf_dst = dst;
234
235   surf_route = surf_host_model_get_route((surf_host_model_t)surf_host_model,
236                                                         surf_src, surf_dst);
237
238   xbt_dynar_foreach(surf_route, cpt, surf_link) {
239     sd_global->recyclable_route[cpt] = surf_link;
240   }
241   return sd_global->recyclable_route;
242 }
243
244 /**
245  * \brief Returns the number of links on the route between two workstations
246  *
247  * \param src a workstation
248  * \param dst another workstation
249  * \return the number of links on the route between these two workstations
250  * \see SD_route_get_list()
251  */
252 int SD_route_get_size(SD_workstation_t src, SD_workstation_t dst)
253 {
254   return xbt_dynar_length(surf_host_model_get_route(
255                     (surf_host_model_t)surf_host_model, src, dst));
256 }
257
258 /**
259  * \brief Returns the total power of a workstation
260  *
261  * \param workstation a workstation
262  * \return the total power of this workstation
263  * \see SD_workstation_get_available_power()
264  */
265 double SD_workstation_get_power(SD_workstation_t workstation)
266 {
267   return surf_host_get_speed(workstation, 1.0);
268 }
269 /**
270  * \brief Returns the amount of cores of a workstation
271  *
272  * \param workstation a workstation
273  * \return the amount of cores of this workstation
274  */
275 int SD_workstation_get_cores(SD_workstation_t workstation) {
276   return surf_host_get_core(workstation);
277 }
278
279 /**
280  * \brief Returns the proportion of available power in a workstation
281  *
282  * \param workstation a workstation
283  * \return the proportion of power currently available in this workstation (normally a number between 0 and 1)
284  * \see SD_workstation_get_power()
285  */
286 double SD_workstation_get_available_power(SD_workstation_t workstation)
287 {
288   return surf_host_get_available_speed(workstation);
289 }
290
291 /**
292  * \brief Returns an approximative estimated time for the given computation amount on a workstation
293  *
294  * \param workstation a workstation
295  * \param flops_amount the computation amount you want to evaluate (in flops)
296  * \return an approximative estimated computation time for the given computation amount on this workstation (in seconds)
297  */
298 double SD_workstation_get_computation_time(SD_workstation_t workstation,
299                                            double flops_amount)
300 {
301   xbt_assert(flops_amount >= 0,
302               "flops_amount must be greater than or equal to zero");
303   return flops_amount / SD_workstation_get_power(workstation);
304 }
305
306 /**
307  * \brief Returns the latency of the route between two workstations, i.e. the sum of all link latencies
308  * between the workstations.
309  *
310  * \param src the first workstation
311  * \param dst the second workstation
312  * \return the latency of the route between the two workstations (in seconds)
313  * \see SD_route_get_current_bandwidth()
314  */
315 double SD_route_get_current_latency(SD_workstation_t src,
316                                     SD_workstation_t dst)
317 {
318
319   const SD_link_t *links;
320   int nb_links;
321   double latency;
322   int i;
323
324   links = SD_route_get_list(src, dst);
325   nb_links = SD_route_get_size(src, dst);
326   latency = 0.0;
327
328   for (i = 0; i < nb_links; i++) {
329     latency += SD_link_get_current_latency(links[i]);
330   }
331
332   return latency;
333 }
334
335 /**
336  * \brief Returns the bandwidth of the route between two workstations, i.e. the minimum link bandwidth of all
337  * between the workstations.
338  *
339  * \param src the first workstation
340  * \param dst the second workstation
341  * \return the bandwidth of the route between the two workstations (in bytes/second)
342  * \see SD_route_get_current_latency()
343  */
344 double SD_route_get_current_bandwidth(SD_workstation_t src,
345                                       SD_workstation_t dst)
346 {
347
348   const SD_link_t *links;
349   int nb_links;
350   double bandwidth;
351   double min_bandwidth;
352   int i;
353
354   links = SD_route_get_list(src, dst);
355   nb_links = SD_route_get_size(src, dst);
356   min_bandwidth = -1.0;
357
358   for (i = 0; i < nb_links; i++) {
359     bandwidth = SD_link_get_current_bandwidth(links[i]);
360     if (bandwidth < min_bandwidth || min_bandwidth == -1.0)
361       min_bandwidth = bandwidth;
362   }
363
364   return min_bandwidth;
365 }
366
367 /**
368  * \brief Returns an approximative estimated time for the given
369  * communication amount between two workstations
370  *
371  * \param src the first workstation
372  * \param dst the second workstation
373  * \param bytes_amount the communication amount you want to evaluate (in bytes)
374  * \return an approximative estimated communication time for the given bytes amount
375  * between the workstations (in seconds)
376  */
377 double SD_route_get_communication_time(SD_workstation_t src,
378                                        SD_workstation_t dst,
379                                        double bytes_amount)
380 {
381
382
383   /* total time = latency + transmission time of the slowest link
384      transmission time of a link = communication amount / link bandwidth */
385
386   const SD_link_t *links;
387   int nb_links;
388   double bandwidth, min_bandwidth;
389   double latency;
390   int i;
391
392   xbt_assert(bytes_amount >= 0, "bytes_amount must be greater than or equal to zero");
393
394
395   if (bytes_amount == 0.0)
396     return 0.0;
397
398   links = SD_route_get_list(src, dst);
399   nb_links = SD_route_get_size(src, dst);
400   min_bandwidth = -1.0;
401   latency = 0;
402
403   for (i = 0; i < nb_links; i++) {
404     latency += SD_link_get_current_latency(links[i]);
405     bandwidth = SD_link_get_current_bandwidth(links[i]);
406     if (bandwidth < min_bandwidth || min_bandwidth == -1.0)
407       min_bandwidth = bandwidth;
408   }
409
410   return latency + (bytes_amount / min_bandwidth);
411 }
412
413 /**
414  * \brief Returns the access mode of this workstation.
415  *
416  * \param workstation a workstation
417  * \return the access mode for the tasks running on this workstation:
418  * SD_WORKSTATION_SHARED_ACCESS or SD_WORKSTATION_SEQUENTIAL_ACCESS
419  *
420  * \see SD_workstation_set_access_mode(), e_SD_workstation_access_mode_t
421  */
422 e_SD_workstation_access_mode_t
423 SD_workstation_get_access_mode(SD_workstation_t workstation)
424 {
425   return sg_host_sd(workstation)->access_mode;
426 }
427
428 /**
429  * \brief Sets the access mode for the tasks that will be executed on a workstation
430  *
431  * By default, a workstation model is shared, i.e. several tasks
432  * can be executed at the same time on a workstation. The CPU power of
433  * the workstation is shared between the running tasks on the workstation.
434  * In sequential mode, only one task can use the workstation, and the other
435  * tasks wait in a FIFO.
436  *
437  * \param workstation a workstation
438  * \param access_mode the access mode you want to set to this workstation:
439  * SD_WORKSTATION_SHARED_ACCESS or SD_WORKSTATION_SEQUENTIAL_ACCESS
440  *
441  * \see SD_workstation_get_access_mode(), e_SD_workstation_access_mode_t
442  */
443 void SD_workstation_set_access_mode(SD_workstation_t workstation,
444                                     e_SD_workstation_access_mode_t
445                                     access_mode)
446 {
447   xbt_assert(access_mode != SD_WORKSTATION_SEQUENTIAL_ACCESS ||
448              access_mode != SD_WORKSTATION_SHARED_ACCESS,
449              "Trying to set an invalid access mode");
450
451   if (access_mode == sg_host_sd(workstation)->access_mode) {
452     return;                     // nothing is changed
453   }
454
455   sg_host_sd(workstation)->access_mode = access_mode;
456
457   if (access_mode == SD_WORKSTATION_SHARED_ACCESS) {
458     xbt_fifo_free(sg_host_sd(workstation)->task_fifo);
459     sg_host_sd(workstation)->task_fifo = NULL;
460   } else {
461           sg_host_sd(workstation)->task_fifo = xbt_fifo_new();
462   }
463 }
464
465 /**
466  * \brief Return the list of mounted storages on a workstation.
467  *
468  * \param workstation a workstation
469  * \return a dynar containing all mounted storages on the workstation
470  */
471 xbt_dict_t SD_workstation_get_mounted_storage_list(SD_workstation_t workstation){
472   return surf_host_get_mounted_storage_list(workstation);
473 }
474
475 /**
476  * \brief Return the list of mounted storages on a workstation.
477  *
478  * \param workstation a workstation
479  * \return a dynar containing all mounted storages on the workstation
480  */
481 xbt_dynar_t SD_workstation_get_attached_storage_list(SD_workstation_t workstation){
482   return surf_host_get_attached_storage_list(workstation);
483 }
484
485 /**
486  * \brief Returns the host name the storage is attached to
487  *
488  * This functions checks whether a storage is a valid pointer or not and return its name.
489  */
490 const char *SD_storage_get_host(msg_storage_t storage) {
491   xbt_assert((storage != NULL), "Invalid parameters");
492   SD_storage_priv_t priv = SD_storage_priv(storage);
493   return priv->host;
494 }
495
496 /* Returns whether a task can start now on a workstation*/
497 /*
498   int __SD_workstation_can_start(SD_workstation_t workstation, SD_task_t task) {
499   SD_CHECK_INIT_DONE();
500   xbt_assert(workstation != NULL && task != NULL, "Invalid parameter");
501
502   return !__SD_workstation_is_busy(workstation) &&
503   (xbt_fifo_size(workstation->task_fifo) == 0) || xbt_fifo_get_first_item(workstation->task_fifo) == task);
504   }
505 */
506
507 /* Returns whether a workstation is busy. A workstation is busy is it is
508  * in sequential mode and a task is running on it or the fifo is not empty.
509  */
510 int __SD_workstation_is_busy(SD_workstation_t workstation)
511 {
512   XBT_DEBUG
513       ("Workstation '%s' access mode: '%s', current task: %s, fifo size: %d",
514        SD_workstation_get_name(workstation),
515        (sg_host_sd(workstation)->access_mode ==
516         SD_WORKSTATION_SHARED_ACCESS) ? "SHARED" : "FIFO",
517        (sg_host_sd(workstation)->current_task ?
518         SD_task_get_name(sg_host_sd(workstation)->current_task)
519         : "none"),
520        (sg_host_sd(workstation)->task_fifo ? xbt_fifo_size(sg_host_sd(workstation)->task_fifo) :
521         0));
522
523   return sg_host_sd(workstation)->access_mode == SD_WORKSTATION_SEQUENTIAL_ACCESS &&
524       (sg_host_sd(workstation)->current_task != NULL
525        || xbt_fifo_size(sg_host_sd(workstation)->task_fifo) > 0);
526 }
527
528 /* Destroys a workstation.
529  */
530 void __SD_workstation_destroy(void *workstation)
531 {
532
533   if (workstation==NULL)
534           return;
535   SD_workstation_priv_t w;
536
537   /* workstation->surf_workstation is freed by surf_exit and workstation->data is freed by the user */
538
539   w = (SD_workstation_priv_t) workstation;
540
541   if (w->access_mode == SD_WORKSTATION_SEQUENTIAL_ACCESS) {
542     xbt_fifo_free(w->task_fifo);
543   }
544   xbt_free(w);
545 }
546
547 /** 
548  * \brief Returns the kind of the task currently running on a workstation
549  * Only call this with sequential access mode set
550  * \param workstation a workstation */
551 SD_task_t SD_workstation_get_current_task(SD_workstation_t workstation)
552 {
553   xbt_assert(sg_host_sd(workstation)->access_mode == SD_WORKSTATION_SEQUENTIAL_ACCESS,
554               "Access mode must be set to SD_WORKSTATION_SEQUENTIAL_ACCESS"
555               " to use this function");
556
557   return (sg_host_sd(workstation)->current_task);
558 }
559
560 /**
561  * \brief Returns a #xbt_dict_t consisting of the list of properties assigned to the AS
562  * or router
563  *
564  * \param AS, router name
565  * \return the xbt_dict_t properties of the AS
566  */
567 xbt_dict_t SD_as_router_get_properties(const char *asr)
568 {
569   return get_as_router_properties(asr);
570 }
571 /**
572  * \brief Returns a #xbt_dict_t consisting of the list of properties assigned to the AS
573  * or router
574  *
575  * \param AS, router name
576  * \param The name of a properties
577  * \return value of the properties
578  */
579 const char* SD_as_router_get_property_value(const char *asr, const char *name)
580 {
581   xbt_dict_t dict = get_as_router_properties(asr);
582   if(!dict) return NULL;
583   return xbt_dict_get_or_null(dict,name);
584 }