Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
First attempt on SURF design. I'd like a 5'10" short board with a swallow
[simgrid.git] / src / surf / trace_mgr.c
1 /* Authors: Arnaud Legrand                                                  */
2
3 /* This program is free software; you can redistribute it and/or modify it
4    under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "xbt/sysdep.h"
7 #include "xbt/error.h"
8 #include "xbt/dict.h"
9 #include "trace_mgr_private.h"
10 #include <stdlib.h>
11
12 static xbt_dict_t trace_list = NULL;
13 static void _tmgr_trace_free(void *trace)
14 {
15   tmgr_trace_free(trace);
16 }
17
18 tmgr_history_t tmgr_history_new(void)
19 {
20   tmgr_history_t history;
21
22   history = xbt_new0(s_tmgr_history_t, 1);
23
24   history->heap = xbt_heap_new(8, xbt_free);    /* Why 8 ? Well, why not... */
25
26   return history;
27 }
28
29 void tmgr_history_free(tmgr_history_t history)
30 {
31   xbt_heap_free(history->heap);
32   xbt_free(history);
33 }
34
35 tmgr_trace_t tmgr_trace_new(const char *filename)
36 {
37   tmgr_trace_t trace = NULL;
38   FILE *f = NULL;
39   int linecount = 0;
40   char line[256];
41   xbt_heap_float_t current_time = 0.0, previous_time = 0.0;
42   xbt_maxmin_float_t value = -1.0;
43   xbt_heap_float_t periodicity = -1.0;  /* No periodicity by default */
44   s_tmgr_event_t event;
45   tmgr_event_t last_event = NULL;
46
47   if (trace_list) {
48     xbt_dict_get(trace_list, filename, (void **) &trace);
49     if (trace)
50       return trace;
51   }
52
53   /* Parsing et création de la trace */
54
55   if ((f = fopen(filename, "r")) == NULL) {
56     fprintf(stderr, "Cannot open file '%s'\n", filename);
57     return NULL;
58   }
59
60   trace = xbt_new0(s_tmgr_trace_t, 1);
61   trace->event_list = xbt_dynar_new(sizeof(s_tmgr_event_t), NULL);
62
63   while (fgets(line, 256, f)) {
64     linecount++;
65     if ((line[0] == '#') || (line[0] == '\n') || (line[0] == '%'))
66       continue;
67
68     if (sscanf(line, "PERIODICITY " XBT_HEAP_FLOAT_T "\n", &(periodicity))
69         == 1) {
70       if (periodicity <= 0) {
71         fprintf(stderr,
72                 "%s,%d: Syntax error. Periodicity has to be positive\n",
73                 filename, linecount);
74         abort();
75 /*      xbt_dynar_free(&(trace->event_list)); */
76 /*      xbt_free(trace);         */
77 /*      return NULL; */
78       }
79       continue;
80     }
81
82     if (sscanf
83         (line, XBT_HEAP_FLOAT_T " " XBT_MAXMIN_FLOAT_T "\n", &event.delta,
84          &event.value) != 2) {
85       fprintf(stderr, "%s,%d: Syntax error\n", filename, linecount);
86       abort();
87 /*       xbt_dynar_free(&(trace->event_list)); */
88 /*       xbt_free(trace);        */
89 /*       return NULL; */
90     }
91
92     if (last_event) {
93       if ((last_event->delta = event.delta - last_event->delta) <= 0) {
94         fprintf(stderr,
95                 "%s,%d: Invalid trace value, events have to be sorted\n",
96                 filename, linecount);
97         abort();
98       }
99     }
100     xbt_dynar_push(trace->event_list, &event);
101     last_event = xbt_dynar_get_ptr(trace->event_list,
102                                    xbt_dynar_length(trace->event_list) -
103                                    1);
104     printf(XBT_HEAP_FLOAT_T " " XBT_MAXMIN_FLOAT_T "\n", event.delta,
105            event.value);
106   }
107
108   if (periodicity > 0) {
109     if (last_event)
110       last_event->delta = periodicity;
111   }
112
113   if (!trace_list)
114     trace_list = xbt_dict_new();
115
116   xbt_dict_set(trace_list, filename, (void *) trace, _tmgr_trace_free);
117
118   fclose(f);
119
120   return trace;
121 }
122
123
124 void tmgr_trace_free(tmgr_trace_t trace)
125 {
126   if (!trace)
127     return;
128   xbt_dynar_free(&(trace->event_list));
129   xbt_free(trace);
130 }
131
132 void tmgr_history_add_trace(tmgr_history_t history, tmgr_trace_t trace,
133                             xbt_heap_float_t start_time, int offset,
134                             void *resource)
135 {
136   tmgr_trace_event_t trace_event = NULL;
137
138
139   trace_event = xbt_new0(s_tmgr_trace_event_t, 1);
140   trace_event->trace = trace;
141   trace_event->idx = offset;
142   trace_event->resource = resource;
143
144   if (trace_event->idx >= xbt_dynar_length(trace->event_list))
145     abort();
146
147   xbt_heap_push(history->heap, trace_event, start_time);
148 }
149
150 xbt_heap_float_t tmgr_history_next_date(tmgr_history_t history)
151 {
152   if (xbt_heap_size(history->heap))
153     return (xbt_heap_maxkey(history->heap));
154   else
155     return -1.0;
156 }
157
158 int tmgr_history_get_next_event_leq(tmgr_history_t history,
159                                     xbt_heap_float_t date,
160                                     xbt_maxmin_float_t * value,
161                                     void **resource)
162 {
163   xbt_heap_float_t event_date = xbt_heap_maxkey(history->heap);
164   tmgr_trace_event_t trace_event = NULL;
165   tmgr_event_t event = NULL;
166   tmgr_trace_t trace = NULL;
167
168   if (event_date > date)
169     return 0;
170
171   if (!(trace_event = xbt_heap_pop(history->heap)))
172     return 0;
173
174   trace = trace_event->trace;
175   event = xbt_dynar_get_ptr(trace->event_list, trace_event->idx);
176
177
178   *value = event->value;
179   *resource = trace_event->resource;
180
181   if (trace_event->idx < xbt_dynar_length(trace->event_list) - 1) {
182     xbt_heap_push(history->heap, trace_event, event_date + event->delta);
183     trace_event->idx++;
184   } else if (event->delta > 0) {        /* Last element, checking for periodicity */
185     xbt_heap_push(history->heap, trace_event, event_date + event->delta);
186     trace_event->idx = 0;
187   } else {                      /* We don't need this trace_event anymore */
188     xbt_free(trace_event);
189   }
190
191   return 1;
192 }