Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rename mc::Session into mc::api::RemoteApp
[simgrid.git] / src / mc / Session.hpp
diff --git a/src/mc/Session.hpp b/src/mc/Session.hpp
deleted file mode 100644 (file)
index 16294c8..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-/* Copyright (c) 2016-2022. 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. */
-
-#ifndef SIMGRID_MC_SESSION_HPP
-#define SIMGRID_MC_SESSION_HPP
-
-#include "simgrid/forward.h"
-#include "src/mc/ModelChecker.hpp"
-#include "src/mc/api/ActorState.hpp"
-#include "src/mc/remote/RemotePtr.hpp"
-
-#include <functional>
-
-namespace simgrid::mc {
-
-/** A model-checking session
- *
- *  This is expected to become the interface used by model-checking
- *  algorithms to control the execution of the model-checked process
- *  and the exploration of the execution graph. Model-checking
- *  algorithms should be able to be written in high-level languages
- *  (e.g. Python) using bindings on this interface.
- */
-class XBT_PUBLIC Session {
-private:
-  std::unique_ptr<ModelChecker> model_checker_;
-  std::shared_ptr<simgrid::mc::Snapshot> initial_snapshot_;
-
-  // No copy:
-  Session(Session const&) = delete;
-  Session& operator=(Session const&) = delete;
-
-public:
-  /** Create a new session by executing the provided code in a fork()
-   *
-   *  This sets up the environment for the model-checked process
-   *  (environment variables, sockets, etc.).
-   *
-   *  The code is expected to `exec` the model-checked application.
-   */
-  explicit Session(const std::function<void()>& code);
-
-  ~Session();
-  void close();
-
-  void take_initial_snapshot();
-  void restore_initial_state() const;
-
-  /** Ask to the application to check for a deadlock. If so, do an error message and throw a DeadlockError. */
-  void check_deadlock() const;
-
-  void log_state() const;
-
-  void get_actors_status(std::map<aid_t, ActorState>& whereto);
-};
-} // namespace simgrid::mc
-
-#endif