X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2d2995483b57463581ffdc4365fe1999ddc306c2..27ef78997bbc722303efdb9826ea745a3814a82a:/src/mc/ModelChecker.hpp diff --git a/src/mc/ModelChecker.hpp b/src/mc/ModelChecker.hpp index d3bcbcb935..0f33b43f66 100644 --- a/src/mc/ModelChecker.hpp +++ b/src/mc/ModelChecker.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2020. 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,7 +6,8 @@ #ifndef SIMGRID_MC_MODEL_CHECKER_HPP #define SIMGRID_MC_MODEL_CHECKER_HPP -#include +#include "src/mc/sosp/PageStore.hpp" +#include "xbt/base.h" #include #include @@ -14,31 +15,23 @@ #include -#include - -#include "src/mc/mc_forward.hpp" -#include "src/mc/remote/mc_protocol.h" -#include "src/mc/sosp/PageStore.hpp" - namespace simgrid { namespace mc { /** State of the model-checker (global variables for the model checker) */ class ModelChecker { - struct event_base *base_; - struct event* socket_event_; - struct event* signal_event_; + struct event_base* base_ = nullptr; + struct event* socket_event_ = nullptr; + struct event* signal_event_ = nullptr; /** String pool for host names */ - // TODO, use std::set with heterogeneous comparison lookup (C++14)? std::set hostnames_; // This is the parent snapshot of the current state: - PageStore page_store_; + PageStore page_store_{500}; std::unique_ptr process_; Checker* checker_ = nullptr; -public: - std::shared_ptr parent_snapshot_; +public: ModelChecker(ModelChecker const&) = delete; ModelChecker& operator=(ModelChecker const&) = delete; explicit ModelChecker(std::unique_ptr process); @@ -50,10 +43,6 @@ public: return page_store_; } - std::string const& get_host_name(const char* hostname) - { - return *this->hostnames_.insert(hostname).first; - } std::string const& get_host_name(std::string const& hostname) { return *this->hostnames_.insert(hostname).first; @@ -66,7 +55,7 @@ public: void handle_events(int fd, short events); void wait_for_requests(); void handle_simcall(Transition const& transition); - void exit(int status); + XBT_ATTRIB_NORETURN void exit(int status); bool checkDeadlock(); @@ -75,7 +64,7 @@ public: private: void setup_ignore(); - bool handle_message(char* buffer, ssize_t size); + bool handle_message(const char* buffer, ssize_t size); void handle_waitpid(); void on_signal(int signo);