Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics from patch review
[simgrid.git] / src / mc / mc_record.h
1 /* Copyright (c) 2014-2015. 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
7 /** \file
8  *  This file contains the MC replay/record functionnality.
9  *  A MC path may be recorded by using ``-cfg=model-check/record:1`'`.
10  *  The path is written in the log output and an be replayed with MC disabled
11  *  (even with an non-LC build) with `--cfg=model-check/replay:$replayPath`.
12  *
13  *  The same version of Simgrid should be used and the same arguments should be
14  *  passed to the application (without the MC specific arguments).
15  */
16
17 #ifndef SIMGRID_MC_RECORD_H
18 #define SIMGRID_MC_RECORD_H
19
20 #include <string>
21 #include <vector>
22
23 #include <xbt/base.h>
24
25 #include "src/mc/Transition.hpp"
26
27 namespace simgrid {
28 namespace mc {
29
30 typedef std::vector<Transition> RecordTrace;
31
32 /** Convert a string representation of the path into a array of `simgrid::mc::Transition`
33  */
34 XBT_PRIVATE RecordTrace parseRecordTrace(const char* data);
35 XBT_PRIVATE std::string traceToString(simgrid::mc::RecordTrace const& trace);
36 XBT_PRIVATE void dumpRecordPath();
37
38 XBT_PRIVATE void replay(RecordTrace const& trace);
39 XBT_PRIVATE void replay(const char* trace);
40
41 }
42 }
43
44 SG_BEGIN_DECL()
45
46 /** Whether the MC record mode is enabled
47  *
48  *  The behaviour is not changed. The only real difference is that
49  *  the path is writtent in the log when an interesting path is found.
50  */
51 #define MC_record_is_active() _sg_do_model_check_record
52
53 // **** Data conversion
54
55 SG_END_DECL()
56
57 #endif