X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/76264ed1928b146602ee73794d86798739cd1209..f9d7b35c174d52377ef297f786129e0340ae0778:/include/simgrid/simix.hpp diff --git a/include/simgrid/simix.hpp b/include/simgrid/simix.hpp index 8888fb81ce..5fbc4d5fd8 100644 --- a/include/simgrid/simix.hpp +++ b/include/simgrid/simix.hpp @@ -7,15 +7,39 @@ #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 { +template +typename std::result_of::type kernel(F&& code) +{ + typedef typename std::result_of::type R; + std::promise promise; + simcall_run_kernel([&]{ + try { + promise.set_value(code()); + } + catch(...) { + promise.set_exception(std::current_exception()); + } + }); + return promise.get_future().get(); +} + class Context; class ContextFactory; @@ -26,10 +50,8 @@ 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 @@ -49,28 +71,32 @@ protected: }; class Context { -protected: - xbt_main_func_t code_ = nullptr; - int argc_ = 0; - char **argv_ = nullptr; 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();