Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move handle_waitpid from 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   std::unique_ptr<RemoteProcessMemory> remote_process_memory_;
22
23 public:
24   ModelChecker(ModelChecker const&) = delete;
25   ModelChecker& operator=(ModelChecker const&) = delete;
26   explicit ModelChecker(std::unique_ptr<RemoteProcessMemory> remote_simulation);
27
28   RemoteProcessMemory& get_remote_process_memory() { return *remote_process_memory_; }
29
30   bool handle_message(const char* buffer, ssize_t size); // FIXME move to RemoteApp
31 };
32
33 } // namespace simgrid::mc
34
35 #endif