X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9b1267b59e70deb98dbf69b1231f597ed292aaaf..500f2123a1cc27f0727a1da2f7f9917e36f63ad5:/src/mc/api/RemoteApp.hpp diff --git a/src/mc/api/RemoteApp.hpp b/src/mc/api/RemoteApp.hpp index 1b862bcfd0..77e07f693e 100644 --- a/src/mc/api/RemoteApp.hpp +++ b/src/mc/api/RemoteApp.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2016-2022. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2016-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. */ @@ -25,7 +25,9 @@ namespace simgrid::mc { */ class XBT_PUBLIC RemoteApp { private: + std::unique_ptr checker_side_; std::unique_ptr model_checker_; + PageStore page_store_{500}; std::shared_ptr initial_snapshot_; // No copy: @@ -40,19 +42,35 @@ public: * * The code is expected to `exec` the model-checked application. */ - explicit RemoteApp(const std::function& code); + explicit RemoteApp(const std::vector& args); ~RemoteApp(); - void close(); + 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; - void log_state() 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(); - void get_actors_status(std::map& whereto); + /** 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& 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(); } + + PageStore& get_page_store() { return page_store_; } }; } // namespace simgrid::mc