Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Finish post-order travesal with WakeupTreeIterator
[simgrid.git] / src / mc / explo / odpor / WakeupTree.hpp
1 /* Copyright (c) 2007-2023. 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 #ifndef SIMGRID_MC_ODPOR_WAKEUP_TREE_HPP
7 #define SIMGRID_MC_ODPOR_WAKEUP_TREE_HPP
8
9 #include "src/mc/explo/odpor/WakeupTreeIterator.hpp"
10 #include "src/mc/explo/odpor/odpor_forward.hpp"
11
12 #include <memory>
13 #include <unordered_map>
14
15 namespace simgrid::mc::odpor {
16
17 class WakeupTreeNode {
18 private:
19   explicit WakeupTreeNode(const PartialExecution& u) : seq_(u) {}
20   explicit WakeupTreeNode(PartialExecution&& u) : seq_(std::move(u)) {}
21
22   /** An ordered list of children of for this node in the tree */
23   std::list<WakeupTreeNode*> children_;
24
25   /** @brief The contents of the node */
26   PartialExecution seq_;
27
28   /** Allows the owning tree to insert directly into the child */
29   friend WakeupTree;
30   friend WakeupTreeIterator;
31
32 public:
33   WakeupTreeNode(const WakeupTreeNode&)            = delete;
34   WakeupTreeNode(WakeupTreeNode&&)                 = default;
35   WakeupTreeNode& operator=(const WakeupTreeNode&) = delete;
36   WakeupTreeNode& operator=(WakeupTreeNode&&)      = default;
37
38   const auto begin() const { return this->children_.begin(); }
39   const auto end() const { return this->children_.end(); }
40   const auto rbegin() const { return this->children_.rbegin(); }
41   const auto rend() const { return this->children_.rend(); }
42
43   const PartialExecution& get_sequence() const { return seq_; }
44   const std::list<WakeupTreeNode*>& get_ordered_children() const { return children_; }
45   bool is_leaf() const { return children_.empty(); }
46   bool is_single_process() const { return children_.size() == static_cast<size_t>(1); }
47
48   /** Insert a node `node` as a new child of this node */
49   void add_child(WakeupTreeNode* node) { this->children_.push_back(node); }
50 };
51
52 class WakeupTree {
53 private:
54   /** @brief The root node of the tree */
55   WakeupTreeNode* const root_;
56
57   /**
58    * @brief All of the nodes that are currently are a part of the tree
59    *
60    * @invariant Each node event maps itself to the owner of that node,
61    * i.e. the unique pointer that manages the data at the address. The tree owns all
62    * of the addresses that are referenced by the nodes WakeupTreeNode and Configuration.
63    * ODPOR guarantees that nodes are persisted as long as needed.
64    */
65   std::unordered_map<WakeupTreeNode*, std::unique_ptr<WakeupTreeNode>> nodes_;
66
67   /**
68    * @brief Transfers the lifetime of node `node` to the tree
69    */
70   void insert_node(std::unique_ptr<WakeupTreeNode> node);
71
72   /**
73    * @brief Creates a new, disconnected node in this tree
74    */
75   WakeupTreeNode* make_node(const PartialExecution& u);
76
77   /* Allow the iterator to access the contents of the tree */
78   friend WakeupTreeIterator;
79
80 public:
81   WakeupTree();
82   explicit WakeupTree(std::unique_ptr<WakeupTreeNode> root);
83   static WakeupTree new_subtree_rooted_at(WakeupTreeNode* root);
84
85   auto begin() const { return WakeupTreeIterator(*this); }
86   auto end() const { return WakeupTreeIterator(); }
87
88   /**
89    * @brief Inserts an sequence `seq` of processes into the tree
90    * such that that this tree is a wakeup tree relative to the
91    * given execution
92    */
93   void insert(const Execution& E, const PartialExecution& seq);
94 };
95
96 } // namespace simgrid::mc::odpor
97 #endif