Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
MC: kill an unused field
[simgrid.git] / src / mc / ModelChecker.hpp
1 /* Copyright (c) 2007-2019. 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/sosp/PageStore.hpp"
10 #include "xbt/base.h"
11
12 #include <memory>
13 #include <set>
14 #include <string>
15
16 #include <event2/event.h>
17
18 namespace simgrid {
19 namespace mc {
20
21 /** State of the model-checker (global variables for the model checker)
22  */
23 class ModelChecker {
24   struct event_base *base_;
25   struct event* socket_event_;
26   struct event* signal_event_;
27   /** String pool for host names */
28   // TODO, use std::set with heterogeneous comparison lookup (C++14)?
29   std::set<std::string> hostnames_;
30   // This is the parent snapshot of the current state:
31   PageStore page_store_;
32   std::unique_ptr<RemoteClient> process_;
33   Checker* checker_ = nullptr;
34 public:
35
36   ModelChecker(ModelChecker const&) = delete;
37   ModelChecker& operator=(ModelChecker const&) = delete;
38   explicit ModelChecker(std::unique_ptr<RemoteClient> process);
39   ~ModelChecker();
40
41   RemoteClient& process() { return *process_; }
42   PageStore& page_store()
43   {
44     return page_store_;
45   }
46
47   std::string const& get_host_name(const char* hostname)
48   {
49     return *this->hostnames_.insert(hostname).first;
50   }
51   std::string const& get_host_name(std::string const& hostname)
52   {
53     return *this->hostnames_.insert(hostname).first;
54   }
55
56   void start();
57   void shutdown();
58   void resume(simgrid::mc::RemoteClient& process);
59   void loop();
60   void handle_events(int fd, short events);
61   void wait_for_requests();
62   void handle_simcall(Transition const& transition);
63   XBT_ATTRIB_NORETURN void exit(int status);
64
65   bool checkDeadlock();
66
67   Checker* getChecker() const { return checker_; }
68   void setChecker(Checker* checker) { checker_ = checker; }
69
70 private:
71   void setup_ignore();
72   bool handle_message(char* buffer, ssize_t size);
73   void handle_waitpid();
74   void on_signal(int signo);
75
76 public:
77   unsigned long visited_states = 0;
78   unsigned long executed_transitions = 0;
79 };
80
81 }
82 }
83
84 #endif