X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c52b563defdd521c601ba1c591dc3a5f7f369761..96d605fde63f72480bf570f7bc7609e2954cb2d7:/src/mc/Session.hpp diff --git a/src/mc/Session.hpp b/src/mc/Session.hpp deleted file mode 100644 index 16294c87c4..0000000000 --- a/src/mc/Session.hpp +++ /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 - -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 model_checker_; - std::shared_ptr 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& 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& whereto); -}; -} // namespace simgrid::mc - -#endif