Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move handle_waitpid from ModelChecker to RemoteProcessMemory
[simgrid.git] / src / mc / ModelChecker.hpp
index e9741ec..d75a38d 100644 (file)
@@ -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. */
@@ -7,68 +7,29 @@
 #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 <memory>
-#include <set>
-#include <string>
 
-namespace simgrid {
-namespace mc {
+namespace simgrid::mc {
 
 /** State of the model-checker (global variables for the model checker)
  */
 class ModelChecker {
-  CheckerSide event_loop_;
-  /** String pool for host names */
-  std::set<std::string> hostnames_;
-  // This is the parent snapshot of the current state:
-  PageStore page_store_{500};
-  std::unique_ptr<RemoteClient> process_;
-  Checker* checker_ = nullptr;
+  std::unique_ptr<RemoteProcessMemory> remote_process_memory_;
 
 public:
   ModelChecker(ModelChecker const&) = delete;
   ModelChecker& operator=(ModelChecker const&) = delete;
-  explicit ModelChecker(std::unique_ptr<RemoteClient> process);
+  explicit ModelChecker(std::unique_ptr<RemoteProcessMemory> remote_simulation);
 
-  RemoteClient& process() { return *process_; }
-  PageStore& page_store()
-  {
-    return page_store_;
-  }
+  RemoteProcessMemory& get_remote_process_memory() { return *remote_process_memory_; }
 
-  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 handle_events(int fd, short events);
-  void wait_for_requests();
-  void handle_simcall(Transition const& transition);
-
-  XBT_ATTRIB_NORETURN void exit(int status);
-
-  bool checkDeadlock();
-
-  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();
-
-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