Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
finish the conversion C++ of simix::MailboxImpl
[simgrid.git] / include / xbt / replay.h
1 /* xbt/replay_reader.h -- Tools to parse a replay file                */
2
3 /* Copyright (c) 2010, 2012-2015. 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) xbt_action_funs;
19 XBT_PUBLIC_DATA(xbt_dict_t) xbt_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 *) xbt_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
28 XBT_PUBLIC(void) xbt_replay_action_register(const char *action_name, action_fun function);
29 XBT_PUBLIC(int) xbt_replay_action_runner(int argc, char *argv[]);
30
31 XBT_PUBLIC(int) _xbt_replay_is_active();
32 XBT_PUBLIC(int) _xbt_replay_action_init();
33 XBT_PUBLIC(void) _xbt_replay_action_exit();
34
35 SG_END_DECL()
36
37 #endif /* XBT_REPLAY_H */