X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e67875d46730d8bf3f40f025d2ae6848f0bb47cf..1cce0801abcad7c884f9e72ceda87e36d6635104:/include/xbt/functional.hpp diff --git a/include/xbt/functional.hpp b/include/xbt/functional.hpp index d9146a3f0a..f37b9dd0d7 100644 --- a/include/xbt/functional.hpp +++ b/include/xbt/functional.hpp @@ -7,13 +7,16 @@ #ifndef XBT_FUNCTIONAL_HPP #define XBT_FUNCTIONAL_HPP +#include #include #include #include -#include -#include +#include +#include #include +#include +#include #include #include @@ -21,102 +24,39 @@ namespace simgrid { namespace xbt { -class args { +template +class MainFunction { private: - int argc_ = 0; - char** argv_ = nullptr; + F code_; + std::shared_ptr> args_; public: - - // Main constructors - args() {} - - void assign(int argc, const char*const* argv) - { - clear(); - char** new_argv = xbt_new(char*,argc + 1); - for (int i = 0; i < argc; i++) - new_argv[i] = xbt_strdup(argv[i]); - new_argv[argc] = nullptr; - this->argc_ = argc; - this->argv_ = new_argv; - } - args(int argc, const char*const* argv) + MainFunction(F code, std::vector args) : + code_(std::move(code)), + args_(std::make_shared>(std::move(args))) + {} + int operator()() const { - this->assign(argc, argv); - } - - char** to_argv() const - { - const int argc = argc_; - char** argv = xbt_new(char*, argc + 1); - for (int i=0; i< argc; i++) - argv[i] = xbt_strdup(argv_[i]); + const int argc = args_->size(); + std::vector args = *args_; + std::unique_ptr argv(new char*[argc + 1]); + for (int i = 0; i != argc; ++i) + argv[i] = args[i].empty() ? const_cast(""): &args[i].front(); argv[argc] = nullptr; - return argv; - } - - // Free - void clear() - { - for (int i = 0; i < this->argc_; i++) - std::free(this->argv_[i]); - std::free(this->argv_); - this->argc_ = 0; - this->argv_ = nullptr; - } - ~args() { clear(); } - - // Copy - args(args const& that) - { - this->assign(that.argc(), that.argv()); - } - args& operator=(args const& that) - { - this->assign(that.argc(), that.argv()); - return *this; - } - - // Move: - args(args&& that) : argc_(that.argc_), argv_(that.argv_) - { - that.argc_ = 0; - that.argv_ = nullptr; - } - args& operator=(args&& that) - { - this->argc_ = that.argc_; - this->argv_ = that.argv_; - that.argc_ = 0; - that.argv_ = nullptr; - return *this; + return code_(argc, argv.get()); } - - int argc() const { return argc_; } - char** argv() { return argv_; } - const char*const* argv() const { return argv_; } - char* operator[](std::size_t i) { return argv_[i]; } }; template inline -std::function wrapMain(F code, std::shared_ptr args) -{ - return [=]() { - code(args->argc(), args->argv()); - }; -} - -template inline -std::function wrapMain(F code, simgrid::xbt::args args) +std::function wrapMain(F code, std::vector args) { - return wrapMain(std::move(code), - std::unique_ptr(new simgrid::xbt::args(std::move(args)))); + return MainFunction(std::move(code), std::move(args)); } template inline -std::function wrapMain(F code, int argc, const char*const* argv) +std::function wrapMain(F code, int argc, const char*const argv[]) { - return wrapMain(std::move(code), args(argc, argv)); + std::vector args(argv, argv + argc); + return MainFunction(std::move(code), std::move(args)); } namespace bits { @@ -205,27 +145,29 @@ public: } }; +template +class TaskImpl { +private: + F code_; + std::tuple args_; + typedef decltype(simgrid::xbt::apply(std::move(code_), std::move(args_))) result_type; +public: + TaskImpl(F code, std::tuple args) : + code_(std::move(code)), + args_(std::move(args)) + {} + result_type operator()() + { + return simgrid::xbt::apply(std::move(code_), std::move(args_)); + } +}; + template auto makeTask(F code, Args... args) -> Task< decltype(code(std::move(args)...))() > { - typedef decltype(code(std::move(args)...)) result_type; - - class Impl { - private: - F code_; - std::tuple args_; - public: - Impl(F code, std::tuple args) : - code_(std::move(code)), - args_(std::move(args)) {} - result_type operator()() - { - return simgrid::xbt::apply(std::move(code_), std::move(args_)); - } - }; - - return Impl(std::move(code), std::make_tuple(std::move(args)...)); + TaskImpl task(std::move(code), std::make_tuple(std::move(args)...)); + return std::move(task); } }