X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dc73616ca24f512539b44e13bab2ec7749ed2317..f9b13d923d31bb0336aeeaab6d5b7ba33812f3f7:/src/kernel/actor/SimcallObserver.hpp diff --git a/src/kernel/actor/SimcallObserver.hpp b/src/kernel/actor/SimcallObserver.hpp index 77f94f8de4..95f6e25036 100644 --- a/src/kernel/actor/SimcallObserver.hpp +++ b/src/kernel/actor/SimcallObserver.hpp @@ -8,6 +8,7 @@ #include "simgrid/forward.h" #include "xbt/asserts.h" +#include "xbt/utility.hpp" #include @@ -19,6 +20,8 @@ class SimcallObserver { ActorImpl* const issuer_; public: + XBT_DECLARE_ENUM_CLASS(Simcall, UNKNOWN, RANDOM, ISEND, IRECV, COMM_WAIT, COMM_TEST); + explicit SimcallObserver(ActorImpl* issuer) : issuer_(issuer) {} ActorImpl* get_issuer() const { return issuer_; } /** Whether this transition can currently be taken without blocking. @@ -56,10 +59,12 @@ public: /** Computes the dependency relation */ virtual bool depends(SimcallObserver* other); + /** Serialize to the given buffer */ + virtual void serialize(Simcall& type, char* buffer) { type = Simcall::UNKNOWN; } + /** Some simcalls may only be observable under some conditions. * Most simcalls are not visible from the MC because they don't have an observer at all. */ virtual bool is_visible() const { return true; } - virtual std::string to_string(int times_considered) const = 0; virtual std::string dot_label(int times_considered) const = 0; }; @@ -67,6 +72,7 @@ template class ResultingSimcall : public SimcallObserver { T result_; public: + ResultingSimcall() = default; ResultingSimcall(ActorImpl* actor, T default_result) : SimcallObserver(actor), result_(default_result) {} void set_result(T res) { result_ = res; } T get_result() const { return result_; } @@ -88,9 +94,9 @@ public: res->next_value_ = next_value_; return res; } + void serialize(Simcall& type, char* buffer) override; int get_max_consider() const override; void prepare(int times_considered) override; - std::string to_string(int times_considered) const override; std::string dot_label(int times_considered) const override; int get_value() const { return next_value_; } bool depends(SimcallObserver* other) override; @@ -110,7 +116,6 @@ class MutexUnlockSimcall : public MutexSimcall { public: SimcallObserver* clone() override { return new MutexUnlockSimcall(get_issuer(), get_mutex()); } - std::string to_string(int times_considered) const override; std::string dot_label(int times_considered) const override; }; @@ -124,7 +129,6 @@ public: } SimcallObserver* clone() override { return new MutexLockSimcall(get_issuer(), get_mutex(), blocking_); } bool is_enabled() const override; - std::string to_string(int times_considered) const override; std::string dot_label(int times_considered) const override; }; @@ -142,7 +146,6 @@ public: SimcallObserver* clone() override { return new ConditionWaitSimcall(get_issuer(), cond_, mutex_, timeout_); } bool is_enabled() const override; bool is_visible() const override { return false; } - std::string to_string(int times_considered) const override; std::string dot_label(int times_considered) const override; activity::ConditionVariableImpl* get_cond() const { return cond_; } activity::MutexImpl* get_mutex() const { return mutex_; } @@ -161,7 +164,6 @@ public: SimcallObserver* clone() override { return new SemAcquireSimcall(get_issuer(), sem_, timeout_); } bool is_enabled() const override; bool is_visible() const override { return false; } - std::string to_string(int times_considered) const override; std::string dot_label(int times_considered) const override; activity::SemaphoreImpl* get_sem() const { return sem_; } double get_timeout() const { return timeout_; } @@ -178,7 +180,6 @@ public: SimcallObserver* clone() override { return new ActivityTestSimcall(get_issuer(), activity_); } bool is_visible() const override { return true; } bool depends(SimcallObserver* other) override; - std::string to_string(int times_considered) const override; std::string dot_label(int times_considered) const override; activity::ActivityImpl* get_activity() const { return activity_; } }; @@ -196,7 +197,6 @@ public: bool is_visible() const override { return true; } int get_max_consider() const override; void prepare(int times_considered) override; - std::string to_string(int times_considered) const override; std::string dot_label(int times_considered) const override; const std::vector& get_activities() const { return activities_; } int get_value() const { return next_value_; } @@ -212,10 +212,9 @@ public: { } SimcallObserver* clone() override { return new ActivityWaitSimcall(get_issuer(), activity_, timeout_); } + void serialize(Simcall& type, char* buffer) override; bool is_visible() const override { return true; } bool is_enabled() const override; - bool depends(SimcallObserver* other) override; - std::string to_string(int times_considered) const override; std::string dot_label(int times_considered) const override; activity::ActivityImpl* get_activity() const { return activity_; } void set_activity(activity::ActivityImpl* activity) { activity_ = activity; } @@ -237,13 +236,106 @@ public: bool is_visible() const override { return true; } void prepare(int times_considered) override; int get_max_consider() const override; - std::string to_string(int times_considered) const override; std::string dot_label(int times_considered) const override; const std::vector& get_activities() const { return activities_; } double get_timeout() const { return timeout_; } int get_value() const { return next_value_; } }; +class CommIsendSimcall : public SimcallObserver { + activity::MailboxImpl* mbox_; + double payload_size_; + double rate_; + unsigned char* src_buff_; + size_t src_buff_size_; + void* payload_; + bool detached_; + +public: + bool (*match_fun_)(void*, void*, activity::CommImpl*); + void (*clean_fun_)(void*); // used to free the synchro in case of problem after a detached send + void (*copy_data_fun_)(activity::CommImpl*, void*, size_t); // used to copy data if not default one + + CommIsendSimcall(ActorImpl* actor, activity::MailboxImpl* mbox, double payload_size, double rate, + unsigned char* src_buff, size_t src_buff_size, bool (*match_fun)(void*, void*, activity::CommImpl*), + void (*clean_fun)(void*), // used to free the synchro in case of problem after a detached send + void (*copy_data_fun)(activity::CommImpl*, void*, size_t), // used to copy data if not default one + void* payload, bool detached) + : SimcallObserver(actor) + , mbox_(mbox) + , payload_size_(payload_size) + , rate_(rate) + , src_buff_(src_buff) + , src_buff_size_(src_buff_size) + , payload_(payload) + , detached_(detached) + , match_fun_(match_fun) + , clean_fun_(clean_fun) + , copy_data_fun_(copy_data_fun) + { + } + void serialize(Simcall& type, char* buffer) override; + CommIsendSimcall* clone() override + { + return new CommIsendSimcall(get_issuer(), mbox_, payload_size_, rate_, src_buff_, src_buff_size_, match_fun_, + clean_fun_, copy_data_fun_, payload_, detached_); + } + bool is_visible() const override { return true; } + std::string dot_label(int times_considered) const override + { + return SimcallObserver::dot_label(times_considered) + "iSend"; + } + activity::MailboxImpl* get_mailbox() const { return mbox_; } + double get_payload_size() const { return payload_size_; } + double get_rate() const { return rate_; } + unsigned char* get_src_buff() const { return src_buff_; } + size_t get_src_buff_size() const { return src_buff_size_; } + void* get_payload() const { return payload_; } + bool is_detached() const { return detached_; } +}; + +class CommIrecvSimcall : public SimcallObserver { + activity::MailboxImpl* mbox_; + unsigned char* dst_buff_; + size_t* dst_buff_size_; + void* payload_; + double rate_; + +public: + bool (*match_fun_)(void*, void*, activity::CommImpl*); + void (*copy_data_fun_)(activity::CommImpl*, void*, size_t); // used to copy data if not default one + + CommIrecvSimcall(ActorImpl* actor, activity::MailboxImpl* mbox, unsigned char* dst_buff, size_t* dst_buff_size, + bool (*match_fun)(void*, void*, activity::CommImpl*), + void (*copy_data_fun)(activity::CommImpl*, void*, size_t), void* payload, double rate) + : SimcallObserver(actor) + , mbox_(mbox) + , dst_buff_(dst_buff) + , dst_buff_size_(dst_buff_size) + , payload_(payload) + , rate_(rate) + , match_fun_(match_fun) + , copy_data_fun_(copy_data_fun) + { + } + CommIrecvSimcall* clone() override + { + return new CommIrecvSimcall(get_issuer(), mbox_, dst_buff_, dst_buff_size_, match_fun_, copy_data_fun_, payload_, + rate_); + } + void serialize(Simcall& type, char* buffer) override; + bool is_visible() const override { return true; } + std::string dot_label(int times_considered) const override + { + return SimcallObserver::dot_label(times_considered) + "iRecv"; + } + activity::MailboxImpl* get_mailbox() const { return mbox_; } + double get_rate() const { return rate_; } + unsigned char* get_dst_buff() const { return dst_buff_; } + size_t* get_dst_buff_size() const { return dst_buff_size_; } + void* get_payload() const { return payload_; } +}; + } // namespace actor } // namespace kernel } // namespace simgrid