// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. #pragma once /*! \file rx-take_while.hpp \brief For the first items fulfilling the predicate from this observable emit them from the new observable that is returned. \tparam Predicate the type of the predicate \param t the predicate \return An observable that emits only the first items emitted by the source Observable fulfilling the predicate, or all of the items from the source observable if the predicate never returns false \sample \snippet take_while.cpp take_while sample \snippet output.txt take_while sample */ #if !defined(RXCPP_OPERATORS_RX_TAKE_WHILE_HPP) #define RXCPP_OPERATORS_RX_TAKE_WHILE_HPP #include "../rx-includes.hpp" namespace rxcpp { namespace operators { namespace detail { template struct take_while_invalid_arguments {}; template struct take_while_invalid : public rxo::operator_base> { using type = observable, take_while_invalid>; }; template using take_while_invalid_t = typename take_while_invalid::type; template struct take_while { typedef rxu::decay_t source_value_type; typedef rxu::decay_t test_type; test_type test; take_while(test_type t) : test(std::move(t)) { } template struct take_while_observer { typedef take_while_observer this_type; typedef source_value_type value_type; typedef rxu::decay_t dest_type; typedef observer observer_type; dest_type dest; test_type test; take_while_observer(dest_type d, test_type t) : dest(std::move(d)) , test(std::move(t)) { } void on_next(source_value_type v) const { if (test(v)) { dest.on_next(v); } else { dest.on_completed(); } } void on_error(rxu::error_ptr e) const { dest.on_error(e); } void on_completed() const { dest.on_completed(); } static subscriber make(dest_type d, test_type t) { return make_subscriber(d, this_type(d, std::move(t))); } }; template auto operator()(Subscriber dest) const -> decltype(take_while_observer::make(std::move(dest), test)) { return take_while_observer::make(std::move(dest), test); } }; } /*! @copydoc rx-take_while.hpp */ template auto take_while(AN&&... an) -> operator_factory { return operator_factory(std::make_tuple(std::forward(an)...)); } } template<> struct member_overload { template, class TakeWhile = rxo::detail::take_while>> static auto member(Observable&& o, Predicate&& p) -> decltype(o.template lift(TakeWhile(std::forward(p)))) { return o.template lift(TakeWhile(std::forward(p))); } template static operators::detail::take_while_invalid_t member(const AN&...) { std::terminate(); return {}; static_assert(sizeof...(AN) == 10000, "take_while takes (Predicate)"); } }; } #endif