Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
abe9f26e7e8763bc6564d9715b08f0c49ccfed53
[simgrid.git] / src / mc / explo / udpor / Unfolding.cpp
1 /* Copyright (c) 2008-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 #include "src/mc/explo/udpor/Unfolding.hpp"
7
8 #include <stdexcept>
9
10 namespace simgrid::mc::udpor {
11
12 void Unfolding::remove(UnfoldingEvent* e)
13 {
14   if (e == nullptr) {
15     throw std::invalid_argument("Expected a non-null pointer to an event, but received NULL");
16   }
17   this->global_events_.erase(e);
18 }
19
20 void Unfolding::insert(std::unique_ptr<UnfoldingEvent> e)
21 {
22   UnfoldingEvent* handle = e.get();
23   auto loc               = this->global_events_.find(handle);
24   if (loc != this->global_events_.end()) {
25     // This is bad: someone wrapped the raw event address twice
26     // in two different unique ptrs and attempted to
27     // insert it into the unfolding...
28     throw std::invalid_argument("Attempted to insert an unfolding event owned twice."
29                                 "This will result in a  double free error and must be fixed.");
30   }
31
32   // Map the handle to its owner
33   this->global_events_[handle] = std::move(e);
34 }
35
36 } // namespace simgrid::mc::udpor