Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Correctly disable DPOR when StateEq reduction is enabled
[simgrid.git] / src / mc / mc_record.hpp
1 /* Copyright (c) 2014-2022. 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 /** \file mc_record.hpp
7  *
8  *  This file contains the MC replay/record functionality.
9  *  The recorded path is written in the log output and can be replayed with MC disabled
10  *  (even with a non-MC build) using `--cfg=model-check/replay:$replayPath`.
11  *
12  *  The same version of Simgrid should be used and the same arguments should be
13  *  passed to the application (without the MC specific arguments).
14  */
15
16 #ifndef SIMGRID_MC_RECORD_HPP
17 #define SIMGRID_MC_RECORD_HPP
18
19 #include "src/mc/mc_forward.hpp"
20 #include "xbt/base.h"
21
22 #include <string>
23 #include <vector>
24
25 namespace simgrid::mc {
26
27 class RecordTrace {
28   std::vector<Transition*> transitions_;
29
30 public:
31   RecordTrace() = default;
32
33   /** Build a trace that can be replayed from a string representation */
34   explicit RecordTrace(const char* data);
35   /** Make a string representation that can later be used to create a new trace */
36   std::string to_string() const;
37
38   void push_back(Transition* t) { transitions_.push_back(t); }
39
40   /** Replay all transitions of a trace */
41   void replay() const;
42
43   /** Parse and replay a string representation */
44   static void replay(const std::string& trace);
45 };
46
47 } // namespace simgrid::mc
48
49 #endif