2#include <ossia/detail/config.hpp>
5#define OSSIA_EXECUTION_LOG 1
6#include <ossia/dataflow/graph/graph_utils.hpp>
7#include <ossia/dataflow/graph_node.hpp>
8#include <ossia/dataflow/token_request.hpp>
9#include <ossia/detail/json.hpp>
11#include <rapidjson/prettywriter.h>
18 std::function<void()> dest;
20 inline on_destruct(F t): dest{std::move(t)} { }
21 inline on_destruct(on_destruct&& t): dest{std::move(t.dest)} { t.dest = [] {}; }
22 inline on_destruct& operator=(on_destruct&& t) { dest = std::move(t.dest); t.dest = [] {};
return *
this; }
24 inline on_destruct() =
delete;
25 inline on_destruct(
const on_destruct& t) =
delete;
26 inline on_destruct& operator=(
const on_destruct& t) =
delete;
28 inline ~on_destruct() { dest(); }
30struct OSSIA_EXPORT execution_log
32 rapidjson::StringBuffer buf;
33 rapidjson::PrettyWriter<rapidjson::StringBuffer> w{buf};
40 on_destruct start_tick();
43 on_destruct start_temporal();
46 on_destruct interval_start_start_tick(
const std::string& name);
49 on_destruct interval_start_run_tick(
const std::string& name, time_value old_date, time_value new_date, time_value offset);
52 on_destruct process_state(
const std::string& name);
55 on_destruct start_dataflow();
58 on_destruct log_executed_nodes(
const ossia::graph_t&,
const std::vector<graph_node*>& );
61 on_destruct start_commit();
67extern OSSIA_EXPORT execution_log g_exec_log;