X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/76264ed1928b146602ee73794d86798739cd1209..4fb3673da5b0ac154b2f70e40ccd11cf8993da32:/include/simgrid/simix.hpp diff --git a/include/simgrid/simix.hpp b/include/simgrid/simix.hpp index 8888fb81ce..2f19728b8d 100644 --- a/include/simgrid/simix.hpp +++ b/include/simgrid/simix.hpp @@ -7,29 +7,90 @@ #ifndef SIMGRID_SIMIX_HPP #define SIMGRID_SIMIX_HPP +#include + +#include #include #include +#include +#include +#include #include #include +XBT_PUBLIC(void) simcall_run_kernel(std::function const& code); + namespace simgrid { namespace simix { +/** Fulfill a promise by executing a given code */ +template +void fulfill_promise(std::promise& promise, F&& code) +{ + try { + promise.set_value(std::forward(code)()); + } + catch(...) { + promise.set_exception(std::current_exception()); + } +} + +/** Fulfill a promise by executing a given code + * + * This is a special version for `std::promise` because the default + * version does not compile in this case. + */ +template +void fulfill_promise(std::promise& promise, F&& code) +{ + try { + std::forward(code)(); + promise.set_value(); + } + catch(...) { + promise.set_exception(std::current_exception()); + } +} + +/** Execute some code in the kernel/maestro + * + * This can be used to enforce mutual exclusion with other simcall. + * More importantly, this enforces a deterministic/reproducible ordering + * of the operation with respect to other simcalls. + */ +template +typename std::result_of::type kernel(F&& code) +{ + // If we are in the maestro, we take the fast path and execute the + // code directly without simcall mashalling/unmarshalling/dispatch: + if (SIMIX_is_maestro()) + return std::forward(code)(); + + // If we are in the application, pass the code to the maestro which is + // executes it for us and reports the result. We use a std::future which + // conveniently handles the success/failure value for us. + typedef typename std::result_of::type R; + std::promise promise; + simcall_run_kernel([&]{ + xbt_assert(SIMIX_is_maestro(), "Not in maestro"); + fulfill_promise(promise, std::forward(code)); + }); + return promise.get_future().get(); +} + class Context; class ContextFactory; -class ContextFactory { +XBT_PUBLIC_CLASS ContextFactory { private: std::string name_; public: ContextFactory(std::string name) : name_(std::move(name)) {} virtual ~ContextFactory(); - virtual Context* create_context( - xbt_main_func_t, int, char **, void_pfn_smxprocess_t, - smx_process_t process - ) = 0; + virtual Context* create_context(std::function code, + void_pfn_smxprocess_t cleanup, smx_process_t process) = 0; virtual void run_all() = 0; virtual Context* self(); std::string const& name() const @@ -48,29 +109,33 @@ protected: } }; -class Context { -protected: - xbt_main_func_t code_ = nullptr; - int argc_ = 0; - char **argv_ = nullptr; +XBT_PUBLIC_CLASS Context { private: + std::function code_; void_pfn_smxprocess_t cleanup_func_ = nullptr; smx_process_t process_ = nullptr; public: bool iwannadie; public: - Context(xbt_main_func_t code, - int argc, char **argv, + Context(std::function code, void_pfn_smxprocess_t cleanup_func, smx_process_t process); - int operator()() + void operator()() { - return code_(argc_, argv_); + code_(); + } + bool has_code() const + { + return (bool) code_; } smx_process_t process() { return this->process_; } + void set_cleanup(void_pfn_smxprocess_t cleanup) + { + cleanup_func_ = cleanup; + } // Virtual methods virtual ~Context(); @@ -81,4 +146,4 @@ public: } } -#endif \ No newline at end of file +#endif