Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge of cpu_update_actions_state_full and net_update_actions_state_full
[simgrid.git] / src / surf / surf_private.h
1 /* Copyright (c) 2004, 2005, 2006, 2007, 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 #ifndef _SURF_SURF_PRIVATE_H
7 #define _SURF_SURF_PRIVATE_H
8
9 #include "surf/surf.h"
10 #include "surf/maxmin.h"
11 #include "surf/trace_mgr.h"
12 #include "xbt/log.h"
13 #include "surf/surfxml_parse.h"
14 #include "surf/random_mgr.h"
15 #include "instr/instr_private.h"
16 #include "surf/surfxml_parse_values.h"
17
18 #define NO_MAX_DURATION -1.0
19
20 /* user-visible parameters */
21 extern double sg_tcp_gamma;
22 extern double sg_sender_gap;
23 extern double sg_latency_factor;
24 extern double sg_bandwidth_factor;
25 extern double sg_weight_S_parameter;
26 extern int sg_maxmin_selective_update;
27 extern int sg_network_crosstraffic;
28 #ifdef HAVE_GTNETS
29 extern double sg_gtnets_jitter;
30 extern int sg_gtnets_jitter_seed;
31 #endif
32
33
34 extern const char *surf_action_state_names[6];
35
36 typedef enum {
37   UM_FULL,
38   UM_LAZY,
39   UM_UNDEFINED
40 } e_UM_t;
41
42 typedef struct surf_model_private {
43   int (*resource_used) (void *resource_id);
44   /* Share the resources to the actions and return in how much time
45      the next action may terminate */
46   double (*share_resources) (double now);
47   /* Update the actions' state */
48   void (*update_actions_state) (double now, double delta);
49   void (*update_resource_state) (void *id, tmgr_trace_event_t event_type,
50                                  double value, double time);
51   void (*finalize) (void);
52
53   lmm_system_t maxmin_system;
54   e_UM_t update_mechanism;
55   xbt_swag_t modified_set;
56   xbt_heap_t action_heap;
57   int selective_update;
58
59 } s_surf_model_private_t;
60
61 double generic_maxmin_share_resources(xbt_swag_t running_actions,
62                                       size_t offset,
63                                       lmm_system_t sys,
64                                       void (*solve) (lmm_system_t));
65 double generic_share_resources_lazy(double now, surf_model_t model);
66
67 /* Generic functions common to all models */
68 void surf_action_init(void);
69 void surf_action_exit(void);
70 e_surf_action_state_t surf_action_state_get(surf_action_t action);      /* cannot declare inline since we use a pointer to it */
71 double surf_action_get_start_time(surf_action_t action);        /* cannot declare inline since we use a pointer to it */
72 double surf_action_get_finish_time(surf_action_t action);       /* cannot declare inline since we use a pointer to it */
73 void surf_action_free(surf_action_t * action);
74 void surf_action_state_set(surf_action_t action,
75                            e_surf_action_state_t state);
76 void surf_action_data_set(surf_action_t action, void *data);    /* cannot declare inline since we use a pointer to it */
77
78 void surf_action_lmm_update_index_heap(void *action, int i); /* callback for heap management shared by cpu and net models */
79 void surf_action_lmm_heap_insert(xbt_heap_t heap, surf_action_lmm_t action,
80     double key, enum heap_action_type hat);
81 void surf_action_lmm_heap_remove(xbt_heap_t heap,surf_action_lmm_t action);
82
83 void surf_action_cancel(surf_action_t action);
84 int surf_action_unref(surf_action_t action);
85 void surf_action_suspend(surf_action_t action);
86 void surf_action_resume(surf_action_t action);
87 int surf_action_is_suspended(surf_action_t action);
88 void surf_action_set_max_duration(surf_action_t action, double duration);
89 void surf_action_set_priority(surf_action_t action, double priority);
90 #ifdef HAVE_TRACING
91 void surf_action_set_category(surf_action_t action,
92                                     const char *category);
93 #endif
94 double surf_action_get_remains(surf_action_t action);
95 void generic_update_action_remaining_lazy( surf_action_lmm_t action, double now);
96 void generic_update_actions_state_lazy(double now, double delta, surf_model_t model);
97 void generic_update_actions_state_full(double now, double delta, surf_model_t model);
98
99 FILE *surf_fopen(const char *name, const char *mode);
100
101 extern tmgr_history_t history;
102 extern xbt_dynar_t surf_path;
103
104 void surf_config_init(int *argc, char **argv);
105 void surf_config_finalize(void);
106 void surf_config(const char *name, va_list pa);
107
108 void net_action_recycle(surf_action_t action);
109 double net_action_get_remains(surf_action_t action);
110 #ifdef HAVE_LATENCY_BOUND_TRACKING
111 int net_get_link_latency_limited(surf_action_t action);
112 #endif
113
114 /*
115  * Returns the initial path. On Windows the initial path is
116  * the current directory for the current process in the other
117  * case the function returns "./" that represents the current
118  * directory on Unix/Linux platforms.
119  */
120 const char *__surf_get_initial_path(void);
121
122 /* The __surf_is_absolute_file_path() returns 1 if
123  * file_path is a absolute file path, in the other
124  * case the function returns 0.
125  */
126 int __surf_is_absolute_file_path(const char *file_path);
127
128 typedef struct s_as *AS_t;
129 typedef struct s_routing_edge {
130   AS_t rc_component;
131   e_surf_network_element_type_t rc_type;
132   int id;
133   char *name;
134 } s_network_element_t;
135
136 /*
137  * Link of lenght 1, alongside with its source and destination. This is mainly usefull in the bindings to gtnets and ns3
138  */
139 typedef struct s_onelink {
140   sg_routing_edge_t src;
141   sg_routing_edge_t dst;
142   void *link_ptr;
143 } s_onelink_t, *onelink_t;
144
145 /**
146  * Routing logic
147  */
148
149 typedef struct s_model_type {
150   const char *name;
151   const char *desc;
152   AS_t (*create) ();
153   void (*end) (AS_t as);
154 } s_routing_model_description_t, *routing_model_description_t;
155
156 typedef struct s_route {
157   xbt_dynar_t link_list;
158   sg_routing_edge_t src_gateway;
159   sg_routing_edge_t dst_gateway;
160 } s_route_t, *route_t;
161
162 /* This enum used in the routing structure helps knowing in which situation we are. */
163 typedef enum {
164   SURF_ROUTING_NULL = 0,   /**< Undefined type                                   */
165   SURF_ROUTING_BASE,       /**< Base case: use simple link lists for routing     */
166   SURF_ROUTING_RECURSIVE   /**< Recursive case: also return gateway informations */
167 } e_surf_routing_hierarchy_t;
168
169 typedef struct s_as {
170   xbt_dynar_t index_network_elm;
171   xbt_dict_t bypassRoutes;              /* store bypass routes */
172   routing_model_description_t model_desc;
173   e_surf_routing_hierarchy_t hierarchy;
174   char *name;
175   struct s_as *routing_father;
176   xbt_dict_t routing_sons;
177   sg_routing_edge_t net_elem;
178   xbt_dynar_t link_up_down_list;
179
180   void (*get_route_and_latency) (AS_t as, sg_routing_edge_t src, sg_routing_edge_t dst, route_t into, double *latency);
181
182   xbt_dynar_t(*get_onelink_routes) (AS_t as);
183   route_t(*get_bypass_route) (AS_t as, sg_routing_edge_t src, sg_routing_edge_t dst, double *lat);
184   void (*finalize) (AS_t as);
185
186
187   /* The parser calls the following functions to inform the routing models
188    * that a new element is added to the AS currently built.
189    *
190    * Of course, only the routing model of this AS is informed, not every ones */
191   int (*parse_PU) (AS_t as, sg_routing_edge_t elm); /* A host or a router, whatever */
192   int (*parse_AS) (AS_t as, sg_routing_edge_t elm);
193   void (*parse_route) (AS_t as, const char *src,
194                      const char *dst, route_t route);
195   void (*parse_ASroute) (AS_t as, const char *src,
196                        const char *dst, route_t route);
197   void (*parse_bypassroute) (AS_t as, const char *src,
198                            const char *dst, route_t e_route);
199 } s_as_t;
200
201 struct s_routing_platf {
202   AS_t root;
203   void *loopback;
204   xbt_dynar_t last_route;
205   xbt_dynar_t(*get_onelink_routes) (void);
206 };
207
208 XBT_PUBLIC(void) routing_model_create(void *loopback);
209 XBT_PUBLIC(void) routing_exit(void);
210 XBT_PUBLIC(void) storage_register_callbacks(void);
211 XBT_PUBLIC(void) routing_register_callbacks(void);
212 XBT_PUBLIC(void) generic_free_route(route_t route); // FIXME rename to routing_route_free
213  // FIXME: make previous function private to routing again?
214
215
216 XBT_PUBLIC(void) routing_get_route_and_latency(sg_routing_edge_t src, sg_routing_edge_t dst,
217                               xbt_dynar_t * route, double *latency);
218
219 /**
220  * Resource protected methods
221  */
222 static XBT_INLINE xbt_dict_t surf_resource_properties(const void *resource);
223
224 XBT_PUBLIC(void) surfxml_bufferstack_push(int new);
225 XBT_PUBLIC(void) surfxml_bufferstack_pop(int new);
226
227 XBT_PUBLIC_DATA(int) surfxml_bufferstack_size;
228
229 #endif                          /* _SURF_SURF_PRIVATE_H */