Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Define variables in C file.
[simgrid.git] / src / xbt / xbt_replay.c
1 /* Copyright (c) 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 #include "simgrid_config.h" //For getline, keep that include first
7
8 #include "gras_config.h"
9 #include <errno.h>
10 #include "xbt/sysdep.h"
11 #include "xbt/log.h"
12 #include "xbt/str.h"
13 #include "xbt/replay.h"
14
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(replay,xbt,"Replay trace reader");
16
17 typedef struct s_replay_reader {
18   FILE *fp;
19   char *line;
20   size_t line_len;
21   char *position; /* stable storage */
22   char *filename; int linenum;
23 } s_xbt_replay_reader_t;
24
25 FILE *action_fp;
26
27 xbt_dict_t action_funs;
28 xbt_dict_t action_queues;
29
30 static char *action_line = NULL;
31 static size_t action_len = 0;
32
33 static const char **action_get_action(char *name);
34
35 xbt_replay_reader_t xbt_replay_reader_new(const char *filename)
36 {
37   xbt_replay_reader_t res = xbt_new0(s_xbt_replay_reader_t,1);
38   res->fp = fopen(filename, "r");
39   xbt_assert(res->fp != NULL, "Cannot open %s: %s", filename,
40       strerror(errno));
41   res->filename = xbt_strdup(filename);
42   return res;
43 }
44
45 const char *xbt_replay_reader_position(xbt_replay_reader_t reader)
46 {
47   free(reader->position);
48   reader->position = bprintf("%s:%d",reader->filename,reader->linenum);
49   return reader->position;
50 }
51
52 const char **xbt_replay_reader_get(xbt_replay_reader_t reader)
53 {
54   ssize_t read;
55   xbt_dynar_t d;
56   read = getline(&reader->line, &reader->line_len, reader->fp);
57   //XBT_INFO("got from trace: %s",reader->line);
58   reader->linenum++;
59   if (read==-1)
60     return NULL; /* end of file */
61   char *comment = strchr(reader->line, '#');
62   if (comment != NULL)
63     *comment = '\0';
64   xbt_str_trim(reader->line, NULL);
65   if (reader->line[0] == '\0')
66     return xbt_replay_reader_get(reader); /* Get next line */
67
68   d=xbt_str_split_quoted_in_place(reader->line);
69   if (xbt_dynar_is_empty(d)) {
70     xbt_dynar_free(&d);
71     return xbt_replay_reader_get(reader); /* Get next line */
72   }
73   return xbt_dynar_to_array(d);
74 }
75
76 void xbt_replay_reader_free(xbt_replay_reader_t *reader)
77 {
78   free((*reader)->filename);
79   free((*reader)->position);
80   fclose((*reader)->fp);
81   free((*reader)->line);
82   free(*reader);
83   *reader=NULL;
84 }
85
86 /** \ingroup xbt_replay
87  * \brief Registers a function to handle a kind of action
88  *
89  * Registers a function to handle a kind of action
90  * This table is then used by #xbt_replay_action_run
91  *
92  * The argument of the function is the line describing the action, splitted on spaces with xbt_str_split_quoted()
93  *
94  * \param action_name the reference name of the action.
95  * \param function prototype given by the type: void...(xbt_dynar_t action)
96  */
97 void xbt_replay_action_register(const char *action_name, action_fun function)
98 {
99   xbt_dict_set(action_funs, action_name, function, NULL);
100 }
101
102 /** \ingroup xbt_replay
103  * \brief Unregisters a function, which handled a kind of action
104  *
105  * \param action_name the reference name of the action.
106  */
107 void xbt_replay_action_unregister(const char *action_name)
108 {
109   xbt_dict_remove(action_funs, action_name);
110 }
111
112 void _xbt_replay_action_init(void)
113 {
114   action_funs = xbt_dict_new_homogeneous(NULL);
115   action_queues = xbt_dict_new_homogeneous(NULL);
116 }
117
118 void _xbt_replay_action_exit(void)
119 {
120   xbt_dict_free(&action_queues);
121   xbt_dict_free(&action_funs);
122   free(action_line);
123 }
124
125 int xbt_replay_action_runner(int argc, char *argv[])
126 {
127   const char **evt;
128   if (action_fp) {              // A unique trace file
129
130     while ((evt = action_get_action(argv[0]))) {
131       action_fun function =
132         (action_fun)xbt_dict_get(action_funs, evt[1]);
133       function(evt);
134       free(evt);
135     }
136   } else {                      // Should have got my trace file in argument
137     xbt_assert(argc >= 2,
138                 "No '%s' agent function provided, no simulation-wide trace file provided, "
139                 "and no process-wide trace file provided in deployment file. Aborting.",
140                 argv[0]
141         );
142     xbt_replay_reader_t reader = xbt_replay_reader_new(argv[1]);
143     while ((evt=xbt_replay_reader_get(reader))) {
144       if (!strcmp(argv[0],evt[0])) {
145         action_fun function =
146           (action_fun)xbt_dict_get(action_funs, evt[1]);
147         function(evt);
148         free(evt);
149       } else {
150         XBT_WARN("%s: Ignore trace element not for me",
151               xbt_replay_reader_position(reader));
152       }
153     }
154     xbt_replay_reader_free(&reader);
155   }
156   return 0;
157 }
158
159
160 static const char **action_get_action(char *name)
161 {
162   xbt_dynar_t evt = NULL;
163   char *evtname = NULL;
164
165   xbt_dynar_t myqueue = xbt_dict_get_or_null(action_queues, name);
166   if (myqueue == NULL || xbt_dynar_is_empty(myqueue)) {      // nothing stored for me. Read the file further
167
168     if (action_fp == NULL) {    // File closed now. There's nothing more to read. I'm out of here
169       goto todo_done;
170     }
171     // Read lines until I reach something for me (which breaks in loop body)
172     // or end of file reached
173     while (getline(&action_line, &action_len, action_fp) != -1) {
174       // cleanup and split the string I just read
175       char *comment = strchr(action_line, '#');
176       if (comment != NULL)
177         *comment = '\0';
178       xbt_str_trim(action_line, NULL);
179       if (action_line[0] == '\0')
180         continue;
181       /* we cannot split in place here because we parse&store several lines for
182        * the colleagues... */
183       evt = xbt_str_split_quoted(action_line);
184
185       // if it's for me, I'm done
186       evtname = xbt_dynar_get_as(evt, 0, char *);
187       if (!strcmp(name, evtname)) {
188         return xbt_dynar_to_array(evt);
189       } else {
190         // Else, I have to store it for the relevant colleague
191         xbt_dynar_t otherqueue =
192             xbt_dict_get_or_null(action_queues, evtname);
193         if (otherqueue == NULL) {       // Damn. Create the queue of that guy
194           otherqueue =
195               xbt_dynar_new(sizeof(xbt_dynar_t), xbt_dynar_free_voidp);
196           xbt_dict_set(action_queues, evtname, otherqueue, NULL);
197         }
198         xbt_dynar_push(otherqueue, &evt);
199       }
200     }
201     goto todo_done;             // end of file reached while searching in vain for more work
202   } else {
203     // Get something from my queue and return it
204     xbt_dynar_shift(myqueue, &evt);
205     return xbt_dynar_to_array(evt);
206   }
207
208
209   // I did all my actions for me in the file (either I closed the file, or a colleague did)
210   // Let's cleanup before leaving
211 todo_done:
212   if (myqueue != NULL) {
213     xbt_dynar_free(&myqueue);
214     xbt_dict_remove(action_queues, name);
215   }
216   return NULL;
217 }