Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / include / xbt / replay.h
1 /* xbt/replay_reader.h -- Tools to parse a replay file                */
2
3 /* Copyright (c) 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #ifndef XBT_REPLAY_H
10 #define XBT_REPLAY_H
11 #include "xbt/misc.h"           /* SG_BEGIN_DECL */
12
13 SG_BEGIN_DECL()
14
15 typedef struct s_replay_reader *xbt_replay_reader_t;
16 typedef void (*action_fun) (const char *const *args);
17
18 XBT_PUBLIC_DATA(xbt_dict_t) action_funs;
19 XBT_PUBLIC_DATA(xbt_dict_t) action_queues;
20
21 /* To split the file if a unique one is given (specific variable for the other case live in runner()) */
22 XBT_PUBLIC_DATA(FILE *) action_fp;
23
24 XBT_PUBLIC(xbt_replay_reader_t) xbt_replay_reader_new(const char*filename);
25 XBT_PUBLIC(const char **) xbt_replay_reader_get(xbt_replay_reader_t reader);
26 XBT_PUBLIC(void) xbt_replay_reader_free(xbt_replay_reader_t *reader);
27 XBT_PUBLIC(const char *) xbt_replay_reader_position(xbt_replay_reader_t reader);
28
29 XBT_PUBLIC(int) xbt_replay_action_runner(int argc, char *argv[]);
30
31 XBT_PUBLIC(void) _xbt_replay_action_init(void);
32 XBT_PUBLIC(void) _xbt_replay_action_exit(void);
33
34 XBT_PUBLIC(void) xbt_replay_action_register(const char *action_name,
35                                             action_fun function);
36 XBT_PUBLIC(void) xbt_replay_action_unregister(const char *action_name);
37
38 SG_END_DECL()
39
40 #endif /* XBT_REPLAY_H */