summaryrefslogtreecommitdiff
path: root/Rx/v2/src
diff options
context:
space:
mode:
authorMartin Kodovský <martin.kodovsky@gmail.com>2017-12-14 06:02:38 +0100
committerKirk Shoop <kirk.shoop@microsoft.com>2017-12-13 21:02:38 -0800
commitb84db4278e54e722fbbae794f573d1142261e9a3 (patch)
tree42cb893608f8df99da9fbd5366ad89fd5a78c24a /Rx/v2/src
parent815e92158e3e0647b96d1331de1ecc5badcde3f8 (diff)
downloadRxCpp-b84db4278e54e722fbbae794f573d1142261e9a3.tar.gz
Add: Skip_while operator (#418)
* #378 adding skip_while operator * #378 adding tests + fixing CMakeLists.txt * #378 test completion * #378 fix includes * #378 fix assignment in a condition * #378 fix assignment in a condition 2
Diffstat (limited to 'Rx/v2/src')
-rw-r--r--Rx/v2/src/rxcpp/operators/rx-skip_while.hpp131
-rw-r--r--Rx/v2/src/rxcpp/rx-includes.hpp1
-rw-r--r--Rx/v2/src/rxcpp/rx-observable.hpp11
-rw-r--r--Rx/v2/src/rxcpp/rx-operators.hpp7
4 files changed, 150 insertions, 0 deletions
diff --git a/Rx/v2/src/rxcpp/operators/rx-skip_while.hpp b/Rx/v2/src/rxcpp/operators/rx-skip_while.hpp
new file mode 100644
index 0000000..fdd06b6
--- /dev/null
+++ b/Rx/v2/src/rxcpp/operators/rx-skip_while.hpp
@@ -0,0 +1,131 @@
+// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
+
+#pragma once
+
+/*! \file rx-skip_while.hpp
+
+ \brief Discards 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 discards the first items until condition emitted by the source Observable is not fulfilling the predicate, or all of the items from the source observable if the predicate never returns false
+
+ \sample
+ \snippet skip_while.cpp skip_while sample
+ \snippet output.txt skip_while sample
+*/
+
+#if !defined(RXCPP_OPERATORS_RX_SKIP_WHILE_HPP)
+#define RXCPP_OPERATORS_RX_SKIP_WHILE_HPP
+
+#include "../rx-includes.hpp"
+
+namespace rxcpp {
+
+namespace operators {
+
+namespace detail {
+
+template<class... AN>
+struct skip_while_invalid_arguments {};
+
+template<class... AN>
+struct skip_while_invalid : public rxo::operator_base<skip_while_invalid_arguments<AN...>> {
+ using type = observable<skip_while_invalid_arguments<AN...>, skip_while_invalid<AN...>>;
+};
+template<class... AN>
+using skip_while_invalid_t = typename skip_while_invalid<AN...>::type;
+
+template<class T, class Predicate>
+struct skip_while
+{
+ typedef rxu::decay_t<T> source_value_type;
+ typedef rxu::decay_t<Predicate> test_type;
+ test_type test;
+
+
+ skip_while(test_type t)
+ : test(std::move(t))
+ {
+ }
+
+ template<class Subscriber>
+ struct skip_while_observer
+ {
+ typedef skip_while_observer<Subscriber> this_type;
+ typedef source_value_type value_type;
+ typedef rxu::decay_t<Subscriber> dest_type;
+ typedef observer<value_type, this_type> observer_type;
+ dest_type dest;
+ test_type test;
+ bool pass;
+
+ skip_while_observer(dest_type d, test_type t)
+ : dest(std::move(d))
+ , test(std::move(t)),
+ pass(false)
+ {
+ }
+ void on_next(source_value_type v) {
+ if(pass || !test(v))
+ {
+ pass = true;
+ dest.on_next(v);
+ }
+ }
+ void on_error(std::exception_ptr e) const {
+ dest.on_error(e);
+ }
+ void on_completed() const {
+ dest.on_completed();
+ }
+
+ static subscriber<value_type, observer_type> make(dest_type d, test_type t) {
+ return make_subscriber<value_type>(d, this_type(d, std::move(t)));
+ }
+ };
+
+ template<class Subscriber>
+ auto operator()(Subscriber dest) const
+ -> decltype(skip_while_observer<Subscriber>::make(std::move(dest), test)) {
+ return skip_while_observer<Subscriber>::make(std::move(dest), test);
+ }
+};
+
+}
+
+/*! @copydoc rx-skip_while.hpp
+*/
+template<class... AN>
+auto skip_while(AN&&... an)
+ -> operator_factory<skip_while_tag, AN...> {
+ return operator_factory<skip_while_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
+ }
+
+}
+
+template<>
+struct member_overload<skip_while_tag>
+{
+ template<class Observable, class Predicate,
+ class SourceValue = rxu::value_type_t<Observable>,
+ class TakeWhile = rxo::detail::skip_while<SourceValue, rxu::decay_t<Predicate>>>
+ static auto member(Observable&& o, Predicate&& p)
+ -> decltype(o.template lift<SourceValue>(TakeWhile(std::forward<Predicate>(p)))) {
+ return o.template lift<SourceValue>(TakeWhile(std::forward<Predicate>(p)));
+ }
+
+ template<class... AN>
+ static operators::detail::skip_while_invalid_t<AN...> member(const AN&...) {
+ std::terminate();
+ return {};
+ static_assert(sizeof...(AN) == 10000, "skip_while takes (Predicate)");
+ }
+};
+
+
+}
+
+#endif
diff --git a/Rx/v2/src/rxcpp/rx-includes.hpp b/Rx/v2/src/rxcpp/rx-includes.hpp
index aefa190..5104565 100644
--- a/Rx/v2/src/rxcpp/rx-includes.hpp
+++ b/Rx/v2/src/rxcpp/rx-includes.hpp
@@ -221,6 +221,7 @@
#include "operators/rx-scan.hpp"
#include "operators/rx-sequence_equal.hpp"
#include "operators/rx-skip.hpp"
+#include "operators/rx-skip_while.hpp"
#include "operators/rx-skip_last.hpp"
#include "operators/rx-skip_until.hpp"
#include "operators/rx-start_with.hpp"
diff --git a/Rx/v2/src/rxcpp/rx-observable.hpp b/Rx/v2/src/rxcpp/rx-observable.hpp
index 3a31240..496db0b 100644
--- a/Rx/v2/src/rxcpp/rx-observable.hpp
+++ b/Rx/v2/src/rxcpp/rx-observable.hpp
@@ -1361,6 +1361,17 @@ public:
return observable_member(skip_tag{}, *this, std::forward<AN>(an)...);
}
+ /*! @copydoc rx-skip.hpp
+ */
+ template<class... AN>
+ auto skip_while(AN... an) const
+ /// \cond SHOW_SERVICE_MEMBERS
+ -> decltype(observable_member(skip_while_tag{}, *(this_type*)nullptr, std::forward<AN>(an)...))
+ /// \endcond
+ {
+ return observable_member(skip_while_tag{}, *this, std::forward<AN>(an)...);
+ }
+
/*! @copydoc rx-skip_last.hpp
*/
template<class... AN>
diff --git a/Rx/v2/src/rxcpp/rx-operators.hpp b/Rx/v2/src/rxcpp/rx-operators.hpp
index 15e8b54..9a5481a 100644
--- a/Rx/v2/src/rxcpp/rx-operators.hpp
+++ b/Rx/v2/src/rxcpp/rx-operators.hpp
@@ -377,6 +377,13 @@ struct skip_tag {
};
};
+struct skip_while_tag {
+ template<class Included>
+ struct include_header{
+ static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-skip_while.hpp>");
+ };
+};
+
struct skip_last_tag {
template<class Included>
struct include_header{