Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Don't leave model-checked processes around
[simgrid.git] / src / mc / ModelChecker.hpp
1 /* Copyright (c) 2007-2015. 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 <poll.h>
13 #include <memory>
14
15 #include <simgrid_config.h>
16 #include <xbt/dict.h>
17 #include <xbt/base.h>
18 #include <sys/types.h>
19
20 #include "src/mc/mc_forward.hpp"
21 #include "src/mc/Process.hpp"
22 #include "src/mc/PageStore.hpp"
23 #include "src/mc/mc_protocol.h"
24
25 namespace simgrid {
26 namespace mc {
27
28 /** State of the model-checker (global variables for the model checker)
29  */
30 class ModelChecker {
31   struct pollfd fds_[2];
32   /** String pool for host names */
33   // TODO, use std::unordered_set with heterogeneous comparison lookup (C++14)
34   xbt_dict_t /* <hostname, NULL> */ hostnames_;
35   // This is the parent snapshot of the current state:
36   PageStore page_store_;
37   std::unique_ptr<Process> process_;
38 public:
39   mc_snapshot_t parent_snapshot_;
40
41 public:
42   ModelChecker(ModelChecker const&) = delete;
43   ModelChecker& operator=(ModelChecker const&) = delete;
44   ModelChecker(std::unique_ptr<Process> process);
45   ~ModelChecker();
46
47   Process& process()
48   {
49     return *process_;
50   }
51   PageStore& page_store()
52   {
53     return page_store_;
54   }
55   const char* get_host_name(const char* name);
56
57   bool is_important_snapshot(Snapshot const& snapshot) const
58   {
59     return &snapshot == this->parent_snapshot_;
60   }
61
62   void start();
63   void shutdown();
64   void resume(simgrid::mc::Process& process);
65   void loop();
66   bool handle_events();
67   void wait_client(simgrid::mc::Process& process);
68   void simcall_handle(simgrid::mc::Process& process, unsigned long pid, int value);
69   void wait_for_requests()
70   {
71     mc_model_checker->wait_client(mc_model_checker->process());
72   }
73   void exit(int status);
74 private:
75   void setup_ignore();
76   bool handle_message(char* buffer, ssize_t size);
77   void handle_signals();
78   void handle_waitpid();
79   void on_signal(const struct signalfd_siginfo* info);
80
81 };
82
83 }
84 }
85
86 #endif