X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ca7c3dad3ba4bf984682f19d82c4daf9d7db0962..a6d5fdeb22df5f5b1ca02a3dad8ba6094202a4f3:/src/mc/api/RemoteApp.hpp diff --git a/src/mc/api/RemoteApp.hpp b/src/mc/api/RemoteApp.hpp index f1c60f70f4..d6e5eee825 100644 --- a/src/mc/api/RemoteApp.hpp +++ b/src/mc/api/RemoteApp.hpp @@ -7,9 +7,10 @@ #define SIMGRID_MC_REMOTE_APP_HPP #include "simgrid/forward.h" -#include "src/mc/ModelChecker.hpp" #include "src/mc/api/ActorState.hpp" +#include "src/mc/remote/CheckerSide.hpp" #include "src/mc/remote/RemotePtr.hpp" +#include "src/mc/sosp/PageStore.hpp" #include @@ -17,15 +18,15 @@ namespace simgrid::mc { /** High-level view of the verified application, from the model-checker POV * - * 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. + * This is expected to become the interface used by model-checking algorithms to control the execution of + * the application process during the exploration of the execution graph. + * + * One day, this will allow parallel exploration, ie, the handling of several application processes (each encapsulated + * in a separate CheckerSide objects) that explore several parts of the exploration graph. */ class XBT_PUBLIC RemoteApp { private: - std::unique_ptr model_checker_; + std::unique_ptr checker_side_; PageStore page_store_{500}; std::shared_ptr initial_snapshot_; @@ -46,6 +47,7 @@ public: ~RemoteApp(); 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; @@ -61,8 +63,11 @@ public: /* Get the list of actors that are ready to run at that step. Usually shorter than maxpid */ void get_actors_status(std::map& whereto) const; + /** 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(); } + RemoteProcessMemory& get_remote_process_memory() { return checker_side_->get_remote_memory(); } PageStore& get_page_store() { return page_store_; } };