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] / src / msg / msg_actions.cpp
1 /* Copyright (c) 2009-2015. The SimGrid Team. All rights reserved.          */
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 "src/msg/msg_private.h"
7 #include "xbt/replay.h"
8
9 #include <errno.h>
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_action, msg, "MSG actions for trace driven simulation");
12
13 SG_BEGIN_DECL()
14
15 void MSG_action_init()
16 {
17   _xbt_replay_action_init();
18   MSG_function_register_default(xbt_replay_action_runner);
19 }
20
21 void MSG_action_exit()
22 {
23   _xbt_replay_action_exit();
24 }
25
26 /** \ingroup msg_trace_driven
27  * \brief A trace loader
28  *
29  *  If path!=nullptr, load a trace file containing actions, and execute them.
30  *  Else, assume that each process gets the path in its deployment file
31  */
32 msg_error_t MSG_action_trace_run(char *path)
33 {
34   msg_error_t res;
35   char *name;
36   xbt_dynar_t todo;
37   xbt_dict_cursor_t cursor;
38
39   xbt_action_fp=nullptr;
40   if (path) {
41     xbt_action_fp = fopen(path, "r");
42     xbt_assert(xbt_action_fp != nullptr, "Cannot open %s: %s", path, strerror(errno));
43   }
44   res = MSG_main();
45
46   if (!xbt_dict_is_empty(xbt_action_queues)) {
47     XBT_WARN("Not all actions got consumed. If the simulation ended successfully (without deadlock),"
48              " you may want to add new processes to your deployment file.");
49
50     xbt_dict_foreach(xbt_action_queues, cursor, name, todo) {
51       XBT_WARN("Still %lu actions for %s", xbt_dynar_length(todo), name);
52     }
53   }
54
55   if (path)
56     fclose(xbt_action_fp);
57   xbt_dict_free(&xbt_action_queues);
58   xbt_action_queues = xbt_dict_new_homogeneous(nullptr);
59
60   return res;
61 }
62
63 SG_END_DECL()