Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move another function of ModelChecker to RemoteProcessMemory
[simgrid.git] / src / mc / ModelChecker.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_MODEL_CHECKER_HPP
7 #define SIMGRID_MC_MODEL_CHECKER_HPP
8
9 #include "src/mc/remote/CheckerSide.hpp"
10 #include "src/mc/remote/RemotePtr.hpp"
11 #include "src/mc/sosp/PageStore.hpp"
12 #include "xbt/base.h"
13
14 #include <memory>
15
16 namespace simgrid::mc {
17
18 /** State of the model-checker (global variables for the model checker)
19  */
20 class ModelChecker {
21   CheckerSide checker_side_;
22   std::unique_ptr<RemoteProcessMemory> remote_process_memory_;
23   Exploration* exploration_ = nullptr;
24
25 public:
26   ModelChecker(ModelChecker const&) = delete;
27   ModelChecker& operator=(ModelChecker const&) = delete;
28   explicit ModelChecker(std::unique_ptr<RemoteProcessMemory> remote_simulation, int sockfd);
29
30   RemoteProcessMemory& get_remote_process_memory() { return *remote_process_memory_; }
31   Channel& get_channel() { return checker_side_.get_channel(); }
32   void channel_handle_events() { checker_side_.dispatch(); }
33
34   void start();
35
36   /** Let the application take a transition. A new Transition is created iff the last parameter is true */
37   Transition* handle_simcall(aid_t aid, int times_considered, bool new_transition);
38
39   Exploration* get_exploration() const { return exploration_; }
40   void set_exploration(Exploration* exploration) { exploration_ = exploration; }
41
42 private:
43   bool handle_message(const char* buffer, ssize_t size);
44   void handle_waitpid();
45 };
46
47 } // namespace simgrid::mc
48
49 #endif