Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move the checker_side_ from the ModelChecker to the RemoteApp
[simgrid.git] / src / mc / api / RemoteApp.hpp
index f920da6f75ffbf6ff00a34969a5cfb1c91841102..77e07f693e14f2fd0233d4222864a222f2735afa 100644 (file)
@@ -25,6 +25,7 @@ namespace simgrid::mc {
  */
 class XBT_PUBLIC RemoteApp {
 private:
+  std::unique_ptr<CheckerSide> checker_side_;
   std::unique_ptr<ModelChecker> model_checker_;
   PageStore page_store_{500};
   std::shared_ptr<simgrid::mc::Snapshot> initial_snapshot_;
@@ -45,19 +46,29 @@ public:
 
   ~RemoteApp();
 
+  void start();
   void restore_initial_state() const;
+  void wait_for_requests();
 
   /** Ask to the application to check for a deadlock. If so, do an error message and throw a DeadlockError. */
   void check_deadlock() const;
 
+  /** Ask the application to run post-mortem analysis, and maybe to stop ASAP */
+  void finalize_app(bool terminate_asap = false);
+  /** Forcefully kill the application (after running post-mortem analysis)*/
+  void shutdown();
+
   /** Retrieve the max PID of the running actors */
   unsigned long get_maxpid() const;
 
   /* Get the list of actors that are ready to run at that step. Usually shorter than maxpid */
   void get_actors_status(std::map<aid_t, simgrid::mc::ActorState>& whereto) const;
 
-  /* Get the remote process */
-  RemoteProcess& get_remote_process() { return model_checker_->get_remote_process(); }
+  /** Take a transition. A new Transition is created iff the last parameter is true */
+  Transition* handle_simcall(aid_t aid, int times_considered, bool new_transition);
+
+  /* Get the memory of the remote process */
+  RemoteProcessMemory& get_remote_process_memory() { return model_checker_->get_remote_process_memory(); }
 
   PageStore& get_page_store() { return page_store_; }
 };