X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2e6a2f4d67dd98932d53dade7d9f4a01ded1401d..ce2d9960deb26e9c6216164a37f7c3d2382035c4:/src/mc/ModelChecker.hpp diff --git a/src/mc/ModelChecker.hpp b/src/mc/ModelChecker.hpp index e9741ec8d4..d75a38d4ba 100644 --- a/src/mc/ModelChecker.hpp +++ b/src/mc/ModelChecker.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2023. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -7,68 +7,29 @@ #define SIMGRID_MC_MODEL_CHECKER_HPP #include "src/mc/remote/CheckerSide.hpp" +#include "src/mc/remote/RemotePtr.hpp" #include "src/mc/sosp/PageStore.hpp" #include "xbt/base.h" #include -#include -#include -namespace simgrid { -namespace mc { +namespace simgrid::mc { /** State of the model-checker (global variables for the model checker) */ class ModelChecker { - CheckerSide event_loop_; - /** String pool for host names */ - std::set hostnames_; - // This is the parent snapshot of the current state: - PageStore page_store_{500}; - std::unique_ptr process_; - Checker* checker_ = nullptr; + std::unique_ptr remote_process_memory_; public: ModelChecker(ModelChecker const&) = delete; ModelChecker& operator=(ModelChecker const&) = delete; - explicit ModelChecker(std::unique_ptr process); + explicit ModelChecker(std::unique_ptr remote_simulation); - RemoteClient& process() { return *process_; } - PageStore& page_store() - { - return page_store_; - } + RemoteProcessMemory& get_remote_process_memory() { return *remote_process_memory_; } - std::string const& get_host_name(std::string const& hostname) - { - return *this->hostnames_.insert(hostname).first; - } - - void start(); - void shutdown(); - void resume(simgrid::mc::RemoteClient& process); - void handle_events(int fd, short events); - void wait_for_requests(); - void handle_simcall(Transition const& transition); - - XBT_ATTRIB_NORETURN void exit(int status); - - bool checkDeadlock(); - - Checker* getChecker() const { return checker_; } - void setChecker(Checker* checker) { checker_ = checker; } - -private: - void setup_ignore(); - bool handle_message(const char* buffer, ssize_t size); - void handle_waitpid(); - -public: - unsigned long visited_states = 0; - unsigned long executed_transitions = 0; + bool handle_message(const char* buffer, ssize_t size); // FIXME move to RemoteApp }; -} -} +} // namespace simgrid::mc #endif