1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
/* xbt/replay.hpp -- Tools to parse a replay file */
/* Copyright (c) 2010-2025. The SimGrid Team. All rights reserved. */
/* This program is free software; you can redistribute it and/or modify it
* under the terms of the license (GNU LGPL) which comes with this package. */
#ifndef XBT_REPLAY_HPP
#define XBT_REPLAY_HPP
#include <xbt/misc.h> /* SG_BEGIN_DECL */
#include <fstream>
#include <functional>
#include <queue>
#include <unordered_map>
namespace simgrid::xbt {
/* To split the file if a unique one is given (specific variable for the other case live in runner()) */
using ReplayAction = std::vector<std::string>;
/** Launch a replaying actor of the given name.
*
* If trace_filename is nullptr, then the tracefile is shared between all instances, and was passed using
* xbt_replay_set_tracefile(). If trace_filename is not nullptr, then it's not shared and this trace file is for this
* actor only */
XBT_PUBLIC int replay_runner(const char* actor_name, const char* trace_filename = nullptr);
} // namespace simgrid::xbt
using action_fun = std::function<void(simgrid::xbt::ReplayAction&)>;
XBT_PUBLIC void xbt_replay_action_register(const char* action_name, const action_fun& function);
XBT_PUBLIC action_fun xbt_replay_action_get(const char* action_name);
XBT_PUBLIC void xbt_replay_set_tracefile(const std::string& filename);
#endif
|