/* * Copyright 2017-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include #include #include #include namespace folly { /** * Argument tuple for variadic emplace/constructor calls. Stores arguments by * (decayed) value. Restores original argument types with reference qualifiers * and adornments at unpack time to emulate perfect forwarding. * * Uses inheritance instead of a type alias to std::tuple so that emplace * iterators with implicit unpacking disabled can distinguish between * emplace_args and std::tuple parameters. * * @seealso folly::make_emplace_args * @seealso folly::get_emplace_arg */ template struct emplace_args : public std::tuple...> { using storage_type = std::tuple...>; using storage_type::storage_type; }; /** * Pack arguments in a tuple for assignment to a folly::emplace_iterator, * folly::front_emplace_iterator, or folly::back_emplace_iterator. The * iterator's operator= will unpack the tuple and pass the unpacked arguments * to the container's emplace function, which in turn forwards the arguments to * the (multi-argument) constructor of the target class. * * Argument tuples generated with folly::make_emplace_args will be unpacked * before being passed to the container's emplace function, even for iterators * where implicit_unpack is set to false (so they will not implicitly unpack * std::pair or std::tuple arguments to operator=). * * Arguments are copied (lvalues) or moved (rvalues). To avoid copies and moves, * wrap references using std::ref(), std::cref(), and folly::rref(). Beware of * dangling references, especially references to temporary objects created with * folly::rref(). * * Note that an argument pack created with folly::make_emplace_args is different * from an argument pack created with std::make_pair or std::make_tuple. * Specifically, passing a std::pair&& or std::tuple&& to an emplace iterator's * operator= will pass rvalue references to all fields of that tuple to the * container's emplace function, while passing an emplace_args&& to operator= * will cast those field references to the exact argument types as passed to * folly::make_emplace_args previously. If all arguments have been wrapped by * std::reference_wrappers or folly::rvalue_reference_wrappers, the result will * be the same as if the container's emplace function had been called directly * (perfect forwarding), with no temporary copies of the arguments. * * @seealso folly::rref * * @example * class Widget { Widget(int, int); }; * std::vector makeWidgets(const std::vector& in) { * std::vector out; * std::transform( * in.begin(), * in.end(), * folly::back_emplacer(out), * [](int i) { return folly::make_emplace_args(i, i); }); * return out; * } */ template emplace_args make_emplace_args(Args&&... args) noexcept( noexcept(emplace_args(std::forward(args)...))) { return emplace_args(std::forward(args)...); } namespace detail { template decltype(auto) unwrap_emplace_arg(Arg&& arg) noexcept { return std::forward(arg); } template decltype(auto) unwrap_emplace_arg(std::reference_wrapper arg) noexcept { return arg.get(); } template decltype(auto) unwrap_emplace_arg( folly::rvalue_reference_wrapper arg) noexcept { return std::move(arg).get(); } } // namespace detail /** * Getter function for unpacking a single emplace argument. * * Calling get_emplace_arg on an emplace_args rvalue reference results in * perfect forwarding of the original input types. A special case are * std::reference_wrapper and folly::rvalue_reference_wrapper objects within * folly::emplace_args. These are also unwrapped so that the bare reference is * returned. * * std::get is not a customization point in the standard library, so the * cleanest solution was to define our own getter function. */ template decltype(auto) get_emplace_arg(emplace_args&& args) noexcept { using Out = std::tuple; return detail::unwrap_emplace_arg( std::forward>(std::get(args))); } template decltype(auto) get_emplace_arg(emplace_args& args) noexcept { return detail::unwrap_emplace_arg(std::get(args)); } template decltype(auto) get_emplace_arg(const emplace_args& args) noexcept { return detail::unwrap_emplace_arg(std::get(args)); } template decltype(auto) get_emplace_arg(Args&& args) noexcept { return std::get(std::move(args)); } template decltype(auto) get_emplace_arg(Args& args) noexcept { return std::get(args); } template decltype(auto) get_emplace_arg(const Args& args) noexcept { return std::get(args); } namespace detail { /** * Emplace implementation class for folly::emplace_iterator. */ template struct Emplace { Emplace(Container& c, typename Container::iterator i) : container(std::addressof(c)), iter(std::move(i)) {} template void emplace(Args&&... args) { iter = container->emplace(iter, std::forward(args)...); ++iter; } Container* container; typename Container::iterator iter; }; /** * Emplace implementation class for folly::hint_emplace_iterator. */ template struct EmplaceHint { EmplaceHint(Container& c, typename Container::iterator i) : container(std::addressof(c)), iter(std::move(i)) {} template void emplace(Args&&... args) { iter = container->emplace_hint(iter, std::forward(args)...); ++iter; } Container* container; typename Container::iterator iter; }; /** * Emplace implementation class for folly::front_emplace_iterator. */ template struct EmplaceFront { explicit EmplaceFront(Container& c) : container(std::addressof(c)) {} template void emplace(Args&&... args) { container->emplace_front(std::forward(args)...); } Container* container; }; /** * Emplace implementation class for folly::back_emplace_iterator. */ template struct EmplaceBack { explicit EmplaceBack(Container& c) : container(std::addressof(c)) {} template void emplace(Args&&... args) { container->emplace_back(std::forward(args)...); } Container* container; }; /** * Generic base class and implementation of all emplace iterator classes. * * Uses the curiously recurring template pattern (CRTP) to cast `this*` to * `Derived*`; i.e., to implement covariant return types in a generic manner. */ template class emplace_iterator_base; /** * Partial specialization of emplace_iterator_base with implicit unpacking * disabled. */ template class emplace_iterator_base : protected EmplaceImpl /* protected implementation inheritance */ { public: // Iterator traits. using iterator_category = std::output_iterator_tag; using value_type = void; using difference_type = void; using pointer = void; using reference = void; using container_type = std::remove_reference_t; using EmplaceImpl::EmplaceImpl; /** * Canonical output operator. Forwards single argument straight to container's * emplace function. */ template Derived& operator=(T&& arg) { this->emplace(std::forward(arg)); return static_cast(*this); } /** * Special output operator for packed arguments. Unpacks args and performs * variadic call to container's emplace function. */ template Derived& operator=(emplace_args& args) { return unpackAndEmplace(args, index_sequence_for{}); } template Derived& operator=(const emplace_args& args) { return unpackAndEmplace(args, index_sequence_for{}); } template Derived& operator=(emplace_args&& args) { return unpackAndEmplace(std::move(args), index_sequence_for{}); } // No-ops. Derived& operator*() { return static_cast(*this); } Derived& operator++() { return static_cast(*this); } Derived& operator++(int) { return static_cast(*this); } // We need all of these explicit defaults because the custom operator= // overloads disable implicit generation of these functions. emplace_iterator_base(const emplace_iterator_base&) = default; emplace_iterator_base(emplace_iterator_base&&) noexcept = default; emplace_iterator_base& operator=(emplace_iterator_base&) = default; emplace_iterator_base& operator=(const emplace_iterator_base&) = default; emplace_iterator_base& operator=(emplace_iterator_base&&) noexcept = default; protected: template Derived& unpackAndEmplace(Args& args, index_sequence) { this->emplace(get_emplace_arg(args)...); return static_cast(*this); } template Derived& unpackAndEmplace(const Args& args, index_sequence) { this->emplace(get_emplace_arg(args)...); return static_cast(*this); } template Derived& unpackAndEmplace(Args&& args, index_sequence) { this->emplace(get_emplace_arg(std::move(args))...); return static_cast(*this); } }; /** * Partial specialization of emplace_iterator_base with implicit unpacking * enabled. * * Uses inheritance rather than SFINAE. operator= requires a single argument, * which makes it very tricky to use std::enable_if or similar. */ template class emplace_iterator_base : public emplace_iterator_base { private: using Base = emplace_iterator_base; public: using Base::Base; using Base::operator=; /** * Special output operator for arguments packed into a std::pair. Unpacks * the pair and performs variadic call to container's emplace function. */ template Derived& operator=(std::pair& args) { return this->unpackAndEmplace(args, index_sequence_for{}); } template Derived& operator=(const std::pair& args) { return this->unpackAndEmplace(args, index_sequence_for{}); } template Derived& operator=(std::pair&& args) { return this->unpackAndEmplace( std::move(args), index_sequence_for{}); } /** * Special output operator for arguments packed into a std::tuple. Unpacks * the tuple and performs variadic call to container's emplace function. */ template Derived& operator=(std::tuple& args) { return this->unpackAndEmplace(args, index_sequence_for{}); } template Derived& operator=(const std::tuple& args) { return this->unpackAndEmplace(args, index_sequence_for{}); } template Derived& operator=(std::tuple&& args) { return this->unpackAndEmplace( std::move(args), index_sequence_for{}); } // We need all of these explicit defaults because the custom operator= // overloads disable implicit generation of these functions. emplace_iterator_base(const emplace_iterator_base&) = default; emplace_iterator_base(emplace_iterator_base&&) noexcept = default; emplace_iterator_base& operator=(emplace_iterator_base&) = default; emplace_iterator_base& operator=(const emplace_iterator_base&) = default; emplace_iterator_base& operator=(emplace_iterator_base&&) noexcept = default; }; /** * Concrete instantiation of emplace_iterator_base. All emplace iterator * classes; folly::emplace_iterator, folly::hint_emplace_iterator, * folly::front_emplace_iterator, and folly::back_emplace_iterator; are just * type aliases of this class. * * It is not possible to alias emplace_iterator_base directly, because type * aliases cannot be used for CRTP. */ template < template class EmplaceImplT, typename Container, bool implicit_unpack> class emplace_iterator_impl : public emplace_iterator_base< emplace_iterator_impl, EmplaceImplT, implicit_unpack> { private: using Base = emplace_iterator_base< emplace_iterator_impl, EmplaceImplT, implicit_unpack>; public: using Base::Base; using Base::operator=; // We need all of these explicit defaults because the custom operator= // overloads disable implicit generation of these functions. emplace_iterator_impl(const emplace_iterator_impl&) = default; emplace_iterator_impl(emplace_iterator_impl&&) noexcept = default; emplace_iterator_impl& operator=(emplace_iterator_impl&) = default; emplace_iterator_impl& operator=(const emplace_iterator_impl&) = default; emplace_iterator_impl& operator=(emplace_iterator_impl&&) noexcept = default; }; } // namespace detail /** * Behaves just like std::insert_iterator except that it calls emplace() * instead of insert(). Uses perfect forwarding. */ template using emplace_iterator = detail::emplace_iterator_impl; /** * Behaves just like std::insert_iterator except that it calls emplace_hint() * instead of insert(). Uses perfect forwarding. */ template using hint_emplace_iterator = detail:: emplace_iterator_impl; /** * Behaves just like std::front_insert_iterator except that it calls * emplace_front() instead of insert(). Uses perfect forwarding. */ template using front_emplace_iterator = detail:: emplace_iterator_impl; /** * Behaves just like std::back_insert_iterator except that it calls * emplace_back() instead of insert(). Uses perfect forwarding. */ template using back_emplace_iterator = detail:: emplace_iterator_impl; /** * Convenience function to construct a folly::emplace_iterator, analogous to * std::inserter(). * * Setting implicit_unpack to false will disable implicit unpacking of * single std::pair and std::tuple arguments to the iterator's operator=. That * may be desirable in case of constructors that expect a std::pair or * std::tuple argument. */ template emplace_iterator emplacer( Container& c, typename Container::iterator i) { return emplace_iterator(c, std::move(i)); } /** * Convenience function to construct a folly::hint_emplace_iterator, analogous * to std::inserter(). * * Setting implicit_unpack to false will disable implicit unpacking of * single std::pair and std::tuple arguments to the iterator's operator=. That * may be desirable in case of constructors that expect a std::pair or * std::tuple argument. */ template hint_emplace_iterator hint_emplacer( Container& c, typename Container::iterator i) { return hint_emplace_iterator(c, std::move(i)); } /** * Convenience function to construct a folly::front_emplace_iterator, analogous * to std::front_inserter(). * * Setting implicit_unpack to false will disable implicit unpacking of * single std::pair and std::tuple arguments to the iterator's operator=. That * may be desirable in case of constructors that expect a std::pair or * std::tuple argument. */ template front_emplace_iterator front_emplacer( Container& c) { return front_emplace_iterator(c); } /** * Convenience function to construct a folly::back_emplace_iterator, analogous * to std::back_inserter(). * * Setting implicit_unpack to false will disable implicit unpacking of * single std::pair and std::tuple arguments to the iterator's operator=. That * may be desirable in case of constructors that expect a std::pair or * std::tuple argument. */ template back_emplace_iterator back_emplacer(Container& c) { return back_emplace_iterator(c); } } // namespace folly