X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3b12e64243918b9f086546bb55cadb11c1ec7ef4..77385a2b4bc1518d701cbf33acc04d16ae3b640b:/src/mc/api.hpp diff --git a/src/mc/api.hpp b/src/mc/api.hpp index 9da3c6d5c3..9a47ed89bf 100644 --- a/src/mc/api.hpp +++ b/src/mc/api.hpp @@ -10,28 +10,14 @@ #include #include "simgrid/forward.h" +#include "src/mc/api/RemoteApp.hpp" #include "src/mc/api/State.hpp" #include "src/mc/mc_forward.hpp" #include "src/mc/mc_record.hpp" #include "xbt/automaton.hpp" #include "xbt/base.h" -namespace simgrid { -namespace mc { - -XBT_DECLARE_ENUM_CLASS(CheckerAlgorithm, Safety, UDPOR, Liveness, CommDeterminism); - -/** - * @brief Maintains the transition's information. - */ -struct s_transition_detail { - simgrid::simix::Simcall call_ = simgrid::simix::Simcall::NONE; - long issuer_id = -1; - RemotePtr mbox_remote_addr {}; // used to represent mailbox remote address for isend and ireceive transitions - RemotePtr comm_remote_addr {}; // the communication this transition concerns (to be used only for isend, ireceive, wait and test) -}; - -using transition_detail_t = std::unique_ptr; +namespace simgrid::mc { /* ** This class aimes to implement FACADE APIs for simgrid. The FACADE layer sits between the CheckerSide @@ -48,103 +34,24 @@ private: struct DerefAndCompareByActorsCountAndUsedHeap { template bool operator()(X const& a, Y const& b) const { - return std::make_pair(a->actors_count, a->heap_bytes_used) < std::make_pair(b->actors_count, b->heap_bytes_used); + return std::make_pair(a->actor_count_, a->heap_bytes_used) < std::make_pair(b->actor_count_, b->heap_bytes_used); } }; - bool request_depend_asymmetric(smx_simcall_t r1, smx_simcall_t r2) const; - simgrid::mc::ActorInformation* actor_info_cast(smx_actor_t actor) const; - public: - std::string get_actor_string(smx_actor_t actor) const; - std::string get_actor_dot_label(smx_actor_t actor) const; - - // No copy: - Api(Api const&) = delete; - void operator=(Api const&) = delete; - static Api& get() { static Api api; return api; } - simgrid::mc::Checker* initialize(char** argv, simgrid::mc::CheckerAlgorithm algo) const; - - // ACTOR APIs - std::vector& get_actors() const; - unsigned long get_maxpid() const; - int get_actors_size() const; - - // COMMUNICATION APIs - RemotePtr get_comm_isend_raw_addr(smx_simcall_t request) const; - RemotePtr get_comm_waitany_raw_addr(smx_simcall_t request, int value) const; - std::string get_pattern_comm_rdv(RemotePtr const& addr) const; - unsigned long get_pattern_comm_src_proc(RemotePtr const& addr) const; - unsigned long get_pattern_comm_dst_proc(RemotePtr const& addr) const; - std::vector get_pattern_comm_data(RemotePtr const& addr) const; - xbt::string const& get_actor_name(smx_actor_t actor) const; - xbt::string const& get_actor_host_name(smx_actor_t actor) const; -#if HAVE_SMPI - bool check_send_request_detached(smx_simcall_t const& simcall) const; -#endif - smx_actor_t get_src_actor(RemotePtr const& comm_addr) const; - smx_actor_t get_dst_actor(RemotePtr const& comm_addr) const; - - // REMOTE APIs - std::size_t get_remote_heap_bytes() const; - - // MODEL CHECKER APIs - void mc_inc_visited_states() const; - unsigned long mc_get_visited_states() const; - void mc_check_deadlock() const; - XBT_ATTRIB_NORETURN void mc_exit(int status) const; - - // SIMCALL APIs - std::string request_get_dot_output(const Transition* t) const; - smx_actor_t simcall_get_issuer(s_smx_simcall const* req) const; - RemotePtr get_mbox_remote_addr(smx_simcall_t const req) const; - RemotePtr get_comm_remote_addr(smx_simcall_t const req) const; - -#if HAVE_SMPI - int get_smpi_request_tag(smx_simcall_t const& simcall, simgrid::simix::Simcall type) const; -#endif - - // STATE APIs - void restore_state(std::shared_ptr system_state) const; - void log_state() const; - - // SNAPSHOT APIs - bool snapshot_equal(const Snapshot* s1, const Snapshot* s2) const; - simgrid::mc::Snapshot* take_snapshot(long num_state) const; - - // SESSION APIs - void s_close() const; - -// AUTOMATION APIs -#if SIMGRID_HAVE_MC - void automaton_load(const char* file) const; -#endif - std::vector automaton_propositional_symbol_evaluate() const; - std::vector get_automaton_state() const; - int compare_automaton_exp_label(const xbt_automaton_exp_label* l) const; - void set_property_automaton(xbt_automaton_state_t const& automaton_state) const; + // AUTOMATION APIs inline DerefAndCompareByActorsCountAndUsedHeap compare_pair() const { return DerefAndCompareByActorsCountAndUsedHeap(); } - inline int automaton_state_compare(const_xbt_automaton_state_t const& s1, const_xbt_automaton_state_t const& s2) const - { - return xbt_automaton_state_compare(s1, s2); - } - xbt_automaton_exp_label_t get_automaton_transition_label(xbt_dynar_t const& dynar, int index) const; - xbt_automaton_state_t get_automaton_transition_dst(xbt_dynar_t const& dynar, int index) const; - - // DYNAR APIs - inline unsigned long get_dynar_length(const_xbt_dynar_t const& dynar) const { return xbt_dynar_length(dynar); } }; -} // namespace mc -} // namespace simgrid +} // namespace simgrid::mc #endif