Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove references to undefined log categories.
[simgrid.git] / src / surf / trace_mgr.c
1 /* Copyright (c) 2004, 2005, 2007, 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 "xbt/sysdep.h"
8 #include "xbt/log.h"
9 #include "xbt/str.h"
10 #include "xbt/dict.h"
11 #include "trace_mgr_private.h"
12 #include "surf_private.h"
13
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_trace, surf, "Surf trace management");
15
16 static xbt_dict_t trace_list = NULL;
17
18 XBT_INLINE tmgr_history_t tmgr_history_new(void)
19 {
20   tmgr_history_t h;
21
22   h = xbt_new0(s_tmgr_history_t, 1);
23
24   h->heap = xbt_heap_new(8, xbt_free_f);        /* Why 8 ? Well, why not... */
25
26   return h;
27 }
28
29 XBT_INLINE void tmgr_history_free(tmgr_history_t h)
30 {
31   xbt_heap_free(h->heap);
32   free(h);
33 }
34
35 tmgr_trace_t tmgr_trace_new_from_string(const char *id, const char *input,
36                                         double periodicity)
37 {
38   tmgr_trace_t trace = NULL;
39   int linecount = 0;
40   s_tmgr_event_t event;
41   tmgr_event_t last_event = NULL;
42   xbt_dynar_t list;
43   unsigned int cpt;
44   char *val;
45
46   if (trace_list) {
47     trace = xbt_dict_get_or_null(trace_list, id);
48     if (trace) {
49       XBT_WARN("Ignoring redefinition of trace %s", id);
50       return trace;
51     }
52   }
53
54   xbt_assert(periodicity >= 0,
55               "Invalid periodicity %lg (must be positive)", periodicity);
56
57   trace = xbt_new0(s_tmgr_trace_t, 1);
58   trace->event_list = xbt_dynar_new(sizeof(s_tmgr_event_t), NULL);
59
60   list = xbt_str_split(input, "\n\r");
61
62   xbt_dynar_foreach(list, cpt, val) {
63     linecount++;
64     xbt_str_trim(val, " \t\n\r\x0B");
65     if (val[0] == '#' || val[0] == '\0' || val[0] == '%')
66       continue;
67
68     if (sscanf(val, "PERIODICITY " "%lg" "\n", &periodicity) == 1)
69       continue;
70
71     if (sscanf(val, "%lg" " " "%lg" "\n", &event.delta, &event.value) != 2)
72       xbt_die("%s:%d: Syntax error in trace\n%s", id, linecount, input);
73
74     if (last_event) {
75       if (last_event->delta > event.delta) {
76         xbt_die("%s:%d: Invalid trace: Events must be sorted, "
77                 "but time %lg > time %lg.\n%s",
78                 id, linecount, last_event->delta, event.delta, input);
79       }
80       last_event->delta = event.delta - last_event->delta;
81     }
82     xbt_dynar_push(trace->event_list, &event);
83     last_event =
84         xbt_dynar_get_ptr(trace->event_list,
85                           xbt_dynar_length(trace->event_list) - 1);
86   }
87   if (last_event)
88     last_event->delta = periodicity;
89
90   if (!trace_list)
91     trace_list = xbt_dict_new_homogeneous((void (*)(void *)) tmgr_trace_free);
92
93   xbt_dict_set(trace_list, id, (void *) trace, NULL);
94
95   xbt_dynar_free(&list);
96   return trace;
97 }
98
99 tmgr_trace_t tmgr_trace_new(const char *filename)
100 {
101   char *tstr = NULL;
102   FILE *f = NULL;
103   tmgr_trace_t trace = NULL;
104
105   if ((!filename) || (strcmp(filename, "") == 0))
106     return NULL;
107
108   if (trace_list) {
109     trace = xbt_dict_get_or_null(trace_list, filename);
110     if (trace) {
111       XBT_WARN("Ignoring redefinition of trace %s", filename);
112       return trace;
113     }
114   }
115
116   f = surf_fopen(filename, "r");
117   xbt_assert(f != NULL, "Cannot open file '%s' (path=%s)", filename,
118               xbt_str_join(surf_path, ":"));
119
120   tstr = xbt_str_from_file(f);
121   fclose(f);
122   trace = tmgr_trace_new_from_string(filename, tstr, 0.);
123   xbt_free(tstr);
124
125   return trace;
126 }
127
128 tmgr_trace_t tmgr_empty_trace_new(void)
129 {
130   tmgr_trace_t trace = NULL;
131   s_tmgr_event_t event;
132
133   trace = xbt_new0(s_tmgr_trace_t, 1);
134   trace->event_list = xbt_dynar_new(sizeof(s_tmgr_event_t), NULL);
135
136   event.delta = 0.0;
137   event.value = 0.0;
138   xbt_dynar_push(trace->event_list, &event);
139
140   return trace;
141 }
142
143 XBT_INLINE void tmgr_trace_free(tmgr_trace_t trace)
144 {
145   if (!trace)
146     return;
147   xbt_dynar_free(&(trace->event_list));
148   free(trace);
149 }
150
151 tmgr_trace_event_t tmgr_history_add_trace(tmgr_history_t h,
152                                           tmgr_trace_t trace,
153                                           double start_time,
154                                           unsigned int offset, void *model)
155 {
156   tmgr_trace_event_t trace_event = NULL;
157
158   trace_event = xbt_new0(s_tmgr_trace_event_t, 1);
159   trace_event->trace = trace;
160   trace_event->idx = offset;
161   trace_event->model = model;
162
163   xbt_assert((trace_event->idx < xbt_dynar_length(trace->event_list)),
164               "You're referring to an event that does not exist!");
165
166   xbt_heap_push(h->heap, trace_event, start_time);
167
168   return trace_event;
169 }
170
171 XBT_INLINE double tmgr_history_next_date(tmgr_history_t h)
172 {
173   if (xbt_heap_size(h->heap))
174     return (xbt_heap_maxkey(h->heap));
175   else
176     return -1.0;
177 }
178
179 tmgr_trace_event_t tmgr_history_get_next_event_leq(tmgr_history_t h,
180                                                    double date,
181                                                    double *value,
182                                                    void **model)
183 {
184   double event_date = tmgr_history_next_date(h);
185   tmgr_trace_event_t trace_event = NULL;
186   tmgr_event_t event = NULL;
187   tmgr_trace_t trace = NULL;
188
189   if (event_date > date)
190     return NULL;
191
192   if (!(trace_event = xbt_heap_pop(h->heap)))
193     return NULL;
194
195   trace = trace_event->trace;
196   event = xbt_dynar_get_ptr(trace->event_list, trace_event->idx);
197
198   *value = event->value;
199   *model = trace_event->model;
200
201   if (trace_event->idx < xbt_dynar_length(trace->event_list) - 1) {
202     xbt_heap_push(h->heap, trace_event, event_date + event->delta);
203     trace_event->idx++;
204   } else if (event->delta > 0) {        /* Last element, checking for periodicity */
205     xbt_heap_push(h->heap, trace_event, event_date + event->delta);
206     trace_event->idx = 0;
207   } else {                      /* We don't need this trace_event anymore */
208     trace_event->free_me = 1;
209   }
210
211   return trace_event;
212 }
213
214 XBT_INLINE void tmgr_finalize(void)
215 {
216   xbt_dict_free(&trace_list);
217 }
218
219 int tmgr_trace_event_free(tmgr_trace_event_t trace_event)
220 {
221   if (trace_event->free_me) {
222     xbt_free(trace_event);
223     return 1;
224   }
225   return 0;
226 }