X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/60037b3f9ba9d856ccebf7a2211b51b82f4a557a..1b89437671ba572a199dd4ff5766ba82720cdf03:/include/xbt/functional.hpp diff --git a/include/xbt/functional.hpp b/include/xbt/functional.hpp index a2ddfa7280..b16e9471fe 100644 --- a/include/xbt/functional.hpp +++ b/include/xbt/functional.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2015-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2015-2020. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -7,7 +7,6 @@ #define XBT_FUNCTIONAL_HPP #include -#include #include #include @@ -41,7 +40,7 @@ public: std::vector args = *args_; if (not args.empty()) { char noarg[] = {'\0'}; - std::unique_ptr argv(new char*[argc + 1]); + auto argv = std::make_unique(argc + 1); for (int i = 0; i != argc; ++i) argv[i] = args[i].empty() ? noarg : &args[i].front(); argv[argc] = nullptr; @@ -64,8 +63,8 @@ template inline std::function wrap_main(F code, int argc, cons namespace bits { template -constexpr auto apply(F&& f, Tuple&& t, simgrid::xbt::index_sequence) - -> decltype(std::forward(f)(std::get(std::forward(t))...)) +constexpr auto apply(F&& f, Tuple&& t, std::index_sequence) + -> decltype(std::forward(f)(std::get(std::forward(t))...)) { return std::forward(f)(std::get(std::forward(t))...); } @@ -81,20 +80,13 @@ constexpr auto apply(F&& f, Tuple&& t, simgrid::xbt::index_sequence) * @endcode **/ template -constexpr auto apply(F&& f, Tuple&& t) - -> decltype(simgrid::xbt::bits::apply( - std::forward(f), - std::forward(t), - simgrid::xbt::make_index_sequence< - std::tuple_size::type>::value - >())) +constexpr auto apply(F&& f, Tuple&& t) -> decltype( + simgrid::xbt::bits::apply(std::forward(f), std::forward(t), + std::make_index_sequence::type>::value>())) { return simgrid::xbt::bits::apply( - std::forward(f), - std::forward(t), - simgrid::xbt::make_index_sequence< - std::tuple_size::type>::value - >()); + std::forward(f), std::forward(t), + std::make_index_sequence::type>::value>()); } template class Task; @@ -162,25 +154,24 @@ public: Task(Task const&) = delete; - Task(Task&& that) + Task(Task&& that) noexcept { if (that.vtable_ && that.vtable_->move) that.vtable_->move(buffer_, that.buffer_); else std::memcpy(static_cast(&buffer_), static_cast(&that.buffer_), sizeof(buffer_)); - - vtable_ = that.vtable_; + vtable_ = std::move(that.vtable_); that.vtable_ = nullptr; } Task& operator=(Task const& that) = delete; - Task& operator=(Task&& that) + Task& operator=(Task&& that) noexcept { this->clear(); if (that.vtable_ && that.vtable_->move) that.vtable_->move(buffer_, that.buffer_); else std::memcpy(static_cast(&buffer_), static_cast(&that.buffer_), sizeof(buffer_)); - vtable_ = that.vtable_; + vtable_ = std::move(that.vtable_); that.vtable_ = nullptr; return *this; } @@ -193,22 +184,23 @@ private: const static TaskVtable vtable { // Call: [](TaskUnion& buffer, Args... args) { - F* src = reinterpret_cast(&buffer); + auto* src = reinterpret_cast(&buffer); F code = std::move(*src); src->~F(); + // NOTE: std::forward(args)... is correct. return code(std::forward(args)...); }, // Destroy: std::is_trivially_destructible::value ? static_cast(nullptr) : [](TaskUnion& buffer) { - F* code = reinterpret_cast(&buffer); + auto* code = reinterpret_cast(&buffer); code->~F(); }, // Move: [](TaskUnion& dst, TaskUnion& src) { - F* src_code = reinterpret_cast(&src); - F* dst_code = reinterpret_cast(&dst); + auto* src_code = reinterpret_cast(&src); + auto* dst_code = reinterpret_cast(&dst); new(dst_code) F(std::move(*src_code)); src_code->~F(); } @@ -224,6 +216,7 @@ private: [](TaskUnion& buffer, Args... args) { // Delete F when we go out of scope: std::unique_ptr code(*reinterpret_cast(&buffer)); + // NOTE: std::forward(args)... is correct. return (*code)(std::forward(args)...); }, // Destroy: @@ -250,6 +243,8 @@ public: throw std::bad_function_call(); const TaskVtable* vtable = vtable_; vtable_ = nullptr; + // NOTE: std::forward(args)... is correct. + // see C++ [func.wrap.func.inv] for an example return vtable->call(buffer_, std::forward(args)...); } };