Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
mv simgrid_config.h simgrid/config
[simgrid.git] / src / mc / ModelChecker.hpp
1 /* Copyright (c) 2007-2018. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef SIMGRID_MC_MODEL_CHECKER_HPP
8 #define SIMGRID_MC_MODEL_CHECKER_HPP
9
10 #include <sys/types.h>
11
12 #include <memory>
13 #include <set>
14 #include <string>
15
16 #include <event2/event.h>
17
18 #include "xbt/base.h"
19 #include <sys/types.h>
20
21 #include "src/mc/PageStore.hpp"
22 #include "src/mc/Transition.hpp"
23 #include "src/mc/mc_forward.hpp"
24 #include "src/mc/remote/RemoteClient.hpp"
25 #include "src/mc/remote/mc_protocol.h"
26
27 namespace simgrid {
28 namespace mc {
29
30 /** State of the model-checker (global variables for the model checker)
31  */
32 class ModelChecker {
33   struct event_base *base_;
34   struct event* socket_event_;
35   struct event* signal_event_;
36   /** String pool for host names */
37   // TODO, use std::set with heterogeneous comparison lookup (C++14)?
38   std::set<std::string> hostnames_;
39   // This is the parent snapshot of the current state:
40   PageStore page_store_;
41   std::unique_ptr<RemoteClient> process_;
42   Checker* checker_ = nullptr;
43 public:
44   std::shared_ptr<simgrid::mc::Snapshot> parent_snapshot_;
45
46   ModelChecker(ModelChecker const&) = delete;
47   ModelChecker& operator=(ModelChecker const&) = delete;
48   explicit ModelChecker(std::unique_ptr<RemoteClient> process);
49   ~ModelChecker();
50
51   RemoteClient& process() { return *process_; }
52   PageStore& page_store()
53   {
54     return page_store_;
55   }
56
57   std::string const& get_host_name(const char* hostname)
58   {
59     return *this->hostnames_.insert(hostname).first;
60   }
61   std::string const& get_host_name(std::string const& hostname)
62   {
63     return *this->hostnames_.insert(hostname).first;
64   }
65
66   void start();
67   void shutdown();
68   void resume(simgrid::mc::RemoteClient& process);
69   void loop();
70   void handle_events(int fd, short events);
71   void wait_for_requests();
72   void handle_simcall(Transition const& transition);
73   void exit(int status);
74
75   bool checkDeadlock();
76
77   Checker* getChecker() const { return checker_; }
78   void setChecker(Checker* checker) { checker_ = checker; }
79
80 private:
81   void setup_ignore();
82   bool handle_message(char* buffer, ssize_t size);
83   void handle_waitpid();
84   void on_signal(int signo);
85
86 public:
87   unsigned long visited_states = 0;
88   unsigned long executed_transitions = 0;
89 };
90
91 }
92 }
93
94 #endif