Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
5a0cbad452ae56f4570760d4ba5ccae1b4dff72c
[simgrid.git] / src / surf / network_constant.c
1 /* Copyright (c) 2008, 2009, 2010. 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 "surf_private.h"
8 #include "surf/random_mgr.h"
9 #include "xbt/dict.h"
10 #include "xbt/str.h"
11 #include "xbt/log.h"
12
13 typedef struct surf_action_network_Constant {
14   s_surf_action_t generic_action;
15   double latency;
16   double lat_init;
17   int suspended;
18 } s_surf_action_network_Constant_t, *surf_action_network_Constant_t;
19
20 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_network);
21 static random_data_t random_latency = NULL;
22 static int host_number_int = 0;
23
24 static void netcste_count_hosts(void)
25 {
26   host_number_int++;
27 }
28
29 static void netcste_define_callbacks(const char *file)
30 {
31   surfxml_add_callback(STag_surfxml_host_cb_list, &netcste_count_hosts);
32 }
33
34 static int netcste_resource_used(void *resource_id)
35 {
36   return 0;
37 }
38
39 static int netcste_action_unref(surf_action_t action)
40 {
41   action->refcount--;
42   if (!action->refcount) {
43     xbt_swag_remove(action, action->state_set);
44     free(action);
45     return 1;
46   }
47   return 0;
48 }
49
50 static void netcste_action_cancel(surf_action_t action)
51 {
52   return;
53 }
54
55 static double netcste_share_resources(double now)
56 {
57   surf_action_network_Constant_t action = NULL;
58   xbt_swag_t running_actions =
59       surf_network_model->states.running_action_set;
60   double min = -1.0;
61
62   xbt_swag_foreach(action, running_actions) {
63     if (action->latency > 0) {
64       if (min < 0)
65         min = action->latency;
66       else if (action->latency < min)
67         min = action->latency;
68     }
69   }
70
71   return min;
72 }
73
74 static void netcste_update_actions_state(double now, double delta)
75 {
76   surf_action_network_Constant_t action = NULL;
77   surf_action_network_Constant_t next_action = NULL;
78   xbt_swag_t running_actions =
79       surf_network_model->states.running_action_set;
80
81   xbt_swag_foreach_safe(action, next_action, running_actions) {
82     if (action->latency > 0) {
83       if (action->latency > delta) {
84         double_update(&(action->latency), delta);
85       } else {
86         action->latency = 0.0;
87       }
88     }
89     double_update(&(action->generic_action.remains),
90                   action->generic_action.cost * delta / action->lat_init);
91     if (action->generic_action.max_duration != NO_MAX_DURATION)
92       double_update(&(action->generic_action.max_duration), delta);
93
94     if (action->generic_action.remains <= 0) {
95       action->generic_action.finish = surf_get_clock();
96       surf_network_model->action_state_set((surf_action_t) action,
97                                            SURF_ACTION_DONE);
98     } else if ((action->generic_action.max_duration != NO_MAX_DURATION)
99                && (action->generic_action.max_duration <= 0)) {
100       action->generic_action.finish = surf_get_clock();
101       surf_network_model->action_state_set((surf_action_t) action,
102                                            SURF_ACTION_DONE);
103     }
104   }
105 }
106
107 static void netcste_update_resource_state(void *id,
108                                           tmgr_trace_event_t event_type,
109                                           double value, double time)
110 {
111   DIE_IMPOSSIBLE;
112 }
113
114 static surf_action_t netcste_communicate(const char *src_name,
115                                          const char *dst_name, double size,
116                                          double rate)
117 {
118   surf_action_network_Constant_t action = NULL;
119
120   XBT_IN4("(%s,%s,%g,%g)", src_name, dst_name, size, rate);
121
122   action =
123       surf_action_new(sizeof(s_surf_action_network_Constant_t), size,
124                       surf_network_model, 0);
125
126   action->suspended = 0;
127
128   action->latency = 1;          //random_generate(random_latency);
129   action->lat_init = action->latency;
130
131   if (action->latency <= 0.0) {
132     action->generic_action.state_set =
133         surf_network_model->states.done_action_set;
134     xbt_swag_insert(action, action->generic_action.state_set);
135   }
136
137   XBT_OUT;
138
139   return (surf_action_t) action;
140 }
141
142 /* returns an array of link_Constant_t */
143 static xbt_dynar_t netcste_get_route(void *src, void *dst)
144 {
145   xbt_die("Calling this function does not make any sense");
146 }
147
148 static double netcste_get_link_bandwidth(const void *link)
149 {
150   DIE_IMPOSSIBLE;
151 }
152
153 static double netcste_get_link_latency(const void *link)
154 {
155   DIE_IMPOSSIBLE;
156 }
157
158 static int link_shared(const void *link)
159 {
160   DIE_IMPOSSIBLE;
161 }
162
163 static void netcste_action_suspend(surf_action_t action)
164 {
165   ((surf_action_network_Constant_t) action)->suspended = 1;
166 }
167
168 static void netcste_action_resume(surf_action_t action)
169 {
170   if (((surf_action_network_Constant_t) action)->suspended)
171     ((surf_action_network_Constant_t) action)->suspended = 0;
172 }
173
174 static int netcste_action_is_suspended(surf_action_t action)
175 {
176   return ((surf_action_network_Constant_t) action)->suspended;
177 }
178
179 static void netcste_finalize(void)
180 {
181   surf_model_exit(surf_network_model);
182   surf_network_model = NULL;
183 }
184
185
186
187 void surf_network_model_init_Constant(const char *filename)
188 {
189   xbt_assert(surf_network_model == NULL);
190   if (surf_network_model)
191     return;
192   surf_network_model = surf_model_init();
193
194   surf_network_model->name = "constant time network";
195   surf_network_model->action_unref = netcste_action_unref;
196   surf_network_model->action_cancel = netcste_action_cancel;
197   surf_network_model->action_recycle = net_action_recycle;
198   surf_network_model->get_remains = net_action_get_remains;
199 #ifdef HAVE_LATENCY_BOUND_TRACKING
200   surf_network_model->get_latency_limited = net_get_link_latency_limited;
201 #endif
202
203   surf_network_model->model_private->resource_used = netcste_resource_used;
204   surf_network_model->model_private->share_resources =
205       netcste_share_resources;
206   surf_network_model->model_private->update_actions_state =
207       netcste_update_actions_state;
208   surf_network_model->model_private->update_resource_state =
209       netcste_update_resource_state;
210   surf_network_model->model_private->finalize = netcste_finalize;
211
212   surf_network_model->suspend = netcste_action_suspend;
213   surf_network_model->resume = netcste_action_resume;
214   surf_network_model->is_suspended = netcste_action_is_suspended;
215   surf_cpu_model->set_max_duration = net_action_set_max_duration;
216
217   surf_network_model->extension.network.communicate = netcste_communicate;
218   surf_network_model->extension.network.get_link_bandwidth =
219       netcste_get_link_bandwidth;
220   surf_network_model->extension.network.get_link_latency =
221       netcste_get_link_latency;
222   surf_network_model->extension.network.link_shared = link_shared;
223
224   if (!random_latency)
225     random_latency = random_new(RAND, 100, 0.0, 1.0, .125, .034);
226   netcste_define_callbacks(filename);
227   xbt_dynar_push(model_list, &surf_network_model);
228
229   update_model_description(surf_network_model_description,
230                            "Constant", surf_network_model);
231
232   xbt_cfg_set_string(_surf_cfg_set, "routing", "none");
233   routing_model_create(sizeof(double), NULL);
234 }