X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9104957deccc59e0e804215d5db498fabfd40d29..ce2d9960deb26e9c6216164a37f7c3d2382035c4:/src/mc/ModelChecker.hpp diff --git a/src/mc/ModelChecker.hpp b/src/mc/ModelChecker.hpp index 0f33b43f66..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. */ @@ -6,74 +6,30 @@ #ifndef SIMGRID_MC_MODEL_CHECKER_HPP #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 -#include - -namespace simgrid { -namespace mc { +namespace simgrid::mc { /** State of the model-checker (global variables for the model checker) */ class ModelChecker { - struct event_base* base_ = nullptr; - struct event* socket_event_ = nullptr; - struct event* signal_event_ = nullptr; - /** 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); - ~ModelChecker(); - - RemoteClient& process() { return *process_; } - PageStore& page_store() - { - return page_store_; - } - - 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 loop(); - void handle_events(int fd, short events); - void wait_for_requests(); - void handle_simcall(Transition const& transition); - XBT_ATTRIB_NORETURN void exit(int status); + explicit ModelChecker(std::unique_ptr remote_simulation); - bool checkDeadlock(); + RemoteProcessMemory& get_remote_process_memory() { return *remote_process_memory_; } - 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(); - void on_signal(int signo); - -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