Skip to content

Instantly share code, notes, and snippets.

@Endilll
Created July 31, 2022 09:25
Show Gist options
  • Save Endilll/5c6c5bb89c3d6396c29c8584dfaec23f to your computer and use it in GitHub Desktop.
Save Endilll/5c6c5bb89c3d6396c29c8584dfaec23f to your computer and use it in GitHub Desktop.
RxCpp v2 single header (commit 761b932a80e2be6e2b62d232e754bd96fc448946)
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#pragma once
#if !defined(RXCPP_RX_INCLUDES_HPP)
#define RXCPP_RX_INCLUDES_HPP
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_TRACE_HPP)
#define RXCPP_RX_TRACE_HPP
#include <iostream>
#include <exception>
#include <atomic>
namespace rxcpp {
struct trace_id
{
static inline trace_id make_next_id_subscriber() {
static std::atomic<unsigned long> id(0xB0000000);
return trace_id{++id};
}
unsigned long id;
};
inline bool operator==(const trace_id& lhs, const trace_id& rhs) {
return lhs.id == rhs.id;
}
inline bool operator!=(const trace_id& lhs, const trace_id& rhs) {
return !(lhs==rhs);
}
inline bool operator<(const trace_id& lhs, const trace_id& rhs) {
if ((lhs.id & 0xF0000000) != (rhs.id & 0xF0000000)) std::terminate();
return lhs.id < rhs.id;
}
inline bool operator>(const trace_id& lhs, const trace_id& rhs) {
return rhs<lhs;
}
inline std::ostream& operator<< (std::ostream& os, const trace_id& id) {
return os << std::hex << id.id << std::dec;
}
struct trace_noop
{
template<class Worker, class Schedulable>
inline void schedule_enter(const Worker&, const Schedulable&) {}
template<class Worker>
inline void schedule_return(const Worker&) {}
template<class Worker, class When, class Schedulable>
inline void schedule_when_enter(const Worker&, const When&, const Schedulable&) {}
template<class Worker>
inline void schedule_when_return(const Worker&) {}
template<class Schedulable>
inline void action_enter(const Schedulable&) {}
template<class Schedulable>
inline void action_return(const Schedulable&) {}
template<class Schedulable>
inline void action_recurse(const Schedulable&) {}
template<class Observable, class Subscriber>
inline void subscribe_enter(const Observable& , const Subscriber& ) {}
template<class Observable>
inline void subscribe_return(const Observable& ) {}
template<class SubscriberFrom, class SubscriberTo>
inline void connect(const SubscriberFrom&, const SubscriberTo&) {}
template<class OperatorSource, class OperatorChain, class Subscriber, class SubscriberLifted>
inline void lift_enter(const OperatorSource&, const OperatorChain&, const Subscriber&, const SubscriberLifted&) {}
template<class OperatorSource, class OperatorChain>
inline void lift_return(const OperatorSource&, const OperatorChain&) {}
template<class SubscriptionState>
inline void unsubscribe_enter(const SubscriptionState&) {}
template<class SubscriptionState>
inline void unsubscribe_return(const SubscriptionState&) {}
template<class SubscriptionState, class Subscription>
inline void subscription_add_enter(const SubscriptionState&, const Subscription&) {}
template<class SubscriptionState>
inline void subscription_add_return(const SubscriptionState&) {}
template<class SubscriptionState, class WeakSubscription>
inline void subscription_remove_enter(const SubscriptionState&, const WeakSubscription&) {}
template<class SubscriptionState>
inline void subscription_remove_return(const SubscriptionState&) {}
template<class Subscriber>
inline void create_subscriber(const Subscriber&) {}
template<class Subscriber, class T>
inline void on_next_enter(const Subscriber&, const T&) {}
template<class Subscriber>
inline void on_next_return(const Subscriber&) {}
template<class Subscriber, class ErrorPtr>
inline void on_error_enter(const Subscriber&, const ErrorPtr&) {}
template<class Subscriber>
inline void on_error_return(const Subscriber&) {}
template<class Subscriber>
inline void on_completed_enter(const Subscriber&) {}
template<class Subscriber>
inline void on_completed_return(const Subscriber&) {}
};
struct trace_tag {};
}
inline auto rxcpp_trace_activity(...) -> rxcpp::trace_noop;
#endif
// some configuration macros
#if defined(_MSC_VER)
#if _MSC_VER > 1600
#pragma warning(disable: 4348) // false positives on : redefinition of default parameter : parameter 2
#define RXCPP_USE_RVALUEREF 1
#endif
#if _MSC_VER >= 1800
#define RXCPP_USE_VARIADIC_TEMPLATES 1
#endif
#if _CPPRTTI
#define RXCPP_USE_RTTI 1
#endif
#if _HAS_EXCEPTIONS
#define RXCPP_USE_EXCEPTIONS 1
#endif
#define RXCPP_NORETURN __declspec(noreturn)
#elif defined(__clang__)
#if __has_feature(cxx_rvalue_references)
#define RXCPP_USE_RVALUEREF 1
#endif
#if __has_feature(cxx_rtti)
#define RXCPP_USE_RTTI 1
#endif
#if __has_feature(cxx_variadic_templates)
#define RXCPP_USE_VARIADIC_TEMPLATES 1
#endif
#if __has_feature(cxx_exceptions)
#define RXCPP_USE_EXCEPTIONS 1
#endif
#if __has_feature(cxx_attributes)
#define RXCPP_NORETURN [[noreturn]]
#else
#define RXCPP_NORETURN __attribute__ ((noreturn))
#endif
#elif defined(__GNUG__)
#define GCC_VERSION (__GNUC__ * 10000 + \
__GNUC_MINOR__ * 100 + \
__GNUC_PATCHLEVEL__)
#if GCC_VERSION >= 40801
#define RXCPP_USE_RVALUEREF 1
#endif
#if GCC_VERSION >= 40400
#define RXCPP_USE_VARIADIC_TEMPLATES 1
#endif
#if defined(__GXX_RTTI)
#define RXCPP_USE_RTTI 1
#endif
#if defined(__EXCEPTIONS)
#define RXCPP_USE_EXCEPTIONS 1
#endif
#define RXCPP_NORETURN __attribute__ ((noreturn))
#endif
//
// control std::hash<> of enum
// force with RXCPP_FORCE_HASH_ENUM & RXCPP_FORCE_HASH_ENUM_UNDERLYING
// in time use ifdef to detect library support for std::hash<> of enum
//
#define RXCPP_HASH_ENUM 0
#define RXCPP_HASH_ENUM_UNDERLYING 1
#if !defined(WINAPI_FAMILY) || (WINAPI_FAMILY == WINAPI_FAMILY_DESKTOP_APP)
#define RXCPP_USE_WINRT 0
#else
#define RXCPP_USE_WINRT 1
#endif
#if defined(__APPLE__) && defined(__MACH__)
#include <TargetConditionals.h>
#if (TARGET_OS_IPHONE == 1) || (TARGET_IPHONE_SIMULATOR == 1)
#define RXCPP_ON_IOS
#endif
#endif
#if defined(__ANDROID__)
#define RXCPP_ON_ANDROID
#endif
#if defined(RXCPP_FORCE_USE_VARIADIC_TEMPLATES)
#undef RXCPP_USE_VARIADIC_TEMPLATES
#define RXCPP_USE_VARIADIC_TEMPLATES RXCPP_FORCE_USE_VARIADIC_TEMPLATES
#endif
#if defined(RXCPP_FORCE_USE_RVALUEREF)
#undef RXCPP_USE_RVALUEREF
#define RXCPP_USE_RVALUEREF RXCPP_FORCE_USE_RVALUEREF
#endif
#if defined(RXCPP_FORCE_USE_RTTI)
#undef RXCPP_USE_RTTI
#define RXCPP_USE_RTTI RXCPP_FORCE_USE_RTTI
#endif
#if defined(RXCPP_FORCE_USE_EXCEPTIONS)
#undef RXCPP_USE_EXCEPTIONS
#define RXCPP_USE_EXCEPTIONS RXCPP_FORCE_USE_EXCEPTIONS
#endif
#if defined(RXCPP_FORCE_USE_WINRT)
#undef RXCPP_USE_WINRT
#define RXCPP_USE_WINRT RXCPP_FORCE_USE_WINRT
#endif
#if defined(RXCPP_FORCE_HASH_ENUM)
#undef RXCPP_HASH_ENUM
#define RXCPP_HASH_ENUM RXCPP_FORCE_HASH_ENUM
#endif
#if defined(RXCPP_FORCE_HASH_ENUM_UNDERLYING)
#undef RXCPP_HASH_ENUM_UNDERLYING
#define RXCPP_HASH_ENUM_UNDERLYING RXCPP_FORCE_HASH_ENUM_UNDERLYING
#endif
#if defined(RXCPP_FORCE_ON_IOS)
#undef RXCPP_ON_IOS
#define RXCPP_ON_IOS RXCPP_FORCE_ON_IOS
#endif
#if defined(RXCPP_FORCE_ON_ANDROID)
#undef RXCPP_ON_ANDROID
#define RXCPP_ON_ANDROID RXCPP_FORCE_ON_ANDROID
#endif
#if defined(_MSC_VER) && !RXCPP_USE_VARIADIC_TEMPLATES
// resolve args needs enough to store all the possible resolved args
#define _VARIADIC_MAX 10
#endif
#if defined(_MSC_VER) && (_MSC_VER <= 1800)
#define RXCPP_NOEXCEPT
#else
#define RXCPP_NOEXCEPT noexcept
#endif
#pragma push_macro("min")
#pragma push_macro("max")
#undef min
#undef max
#include <stdlib.h>
#include <cstddef>
#include <string>
#include <iostream>
#include <iomanip>
#include <exception>
#include <functional>
#include <memory>
#include <array>
#include <vector>
#include <algorithm>
#include <atomic>
#include <map>
#include <set>
#include <mutex>
#include <deque>
#include <thread>
#include <future>
#include <list>
#include <queue>
#include <chrono>
#include <condition_variable>
#include <initializer_list>
#include <typeinfo>
#include <tuple>
#include <unordered_set>
#include <type_traits>
#include <utility>
#if defined(RXCPP_ON_IOS) || defined(RXCPP_ON_ANDROID)
#include <pthread.h>
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_UTIL_HPP)
#define RXCPP_RX_UTIL_HPP
#if !defined(RXCPP_ON_IOS) && !defined(RXCPP_ON_ANDROID) && !defined(RXCPP_THREAD_LOCAL)
#if defined(_MSC_VER)
#define RXCPP_THREAD_LOCAL __declspec(thread)
#else
#define RXCPP_THREAD_LOCAL __thread
#endif
#endif
#if !defined(RXCPP_DELETE)
#if defined(_MSC_VER)
#define RXCPP_DELETE __pragma(warning(disable: 4822)) =delete
#else
#define RXCPP_DELETE =delete
#endif
#endif
#define RXCPP_CONCAT(Prefix, Suffix) Prefix ## Suffix
#define RXCPP_CONCAT_EVALUATE(Prefix, Suffix) RXCPP_CONCAT(Prefix, Suffix)
#define RXCPP_MAKE_IDENTIFIER(Prefix) RXCPP_CONCAT_EVALUATE(Prefix, __LINE__)
#define RXCPP_DECLVAL(...) static_cast<__VA_ARGS__ (*)() noexcept>(nullptr)()
// Provide replacements for try/catch keywords, using which is a compilation error
// when exceptions are disabled with -fno-exceptions.
#if RXCPP_USE_EXCEPTIONS
#define RXCPP_TRY try
#define RXCPP_CATCH(...) catch(__VA_ARGS__)
// See also rxu::throw_exception for 'throw' keyword replacement.
#else
#define RXCPP_TRY if ((true))
#define RXCPP_CATCH(...) if ((false))
// See also rxu::throw_exception, which will std::terminate without exceptions.
#endif
namespace rxcpp {
namespace util {
template<class T> using value_type_t = typename std::decay<T>::type::value_type;
template<class T> using decay_t = typename std::decay<T>::type;
template <typename Fn, typename... ArgTypes>
struct callable_result {
using type = decltype(RXCPP_DECLVAL(Fn&&)(RXCPP_DECLVAL(ArgTypes&&)...));
};
template <typename Fn, typename... ArgTypes>
using callable_result_t = typename callable_result<Fn, ArgTypes...>::type;
template<class T, std::size_t size>
std::vector<T> to_vector(const T (&arr) [size]) {
return std::vector<T>(std::begin(arr), std::end(arr));
}
template<class T>
std::vector<T> to_vector(std::initializer_list<T> il) {
return std::vector<T>(il);
}
template<class T0, class... TN>
typename std::enable_if<!std::is_array<T0>::value && std::is_trivial<T0>::value && std::is_standard_layout<T0>::value, std::vector<T0>>::type to_vector(T0 t0, TN... tn) {
return to_vector({t0, tn...});
}
// lifted from https://github.com/ericniebler/range-v3/blob/630fc70baa07cbfd222f329e44a3122ab64ce364/include/range/v3/range_fwd.hpp
// removed constexpr & noexcept to support older VC compilers
template<typename T>
/*constexpr*/ T const &as_const(T & t) /*noexcept*/
{
return t;
}
template<typename T>
void as_const(T const &&) = delete;
template<class T, T... ValueN>
struct values {};
template<class T, std::size_t Remaining, T Step = 1, T Cursor = 0, T... ValueN>
struct values_from;
template<class T, T Step, T Cursor, T... ValueN>
struct values_from<T, 0, Step, Cursor, ValueN...>
{
using type = values<T, ValueN...>;
};
template<class T, std::size_t Remaining, T Step, T Cursor, T... ValueN>
struct values_from
{
using type = typename values_from<T, Remaining - 1, Step, Cursor + Step, ValueN..., Cursor>::type;
};
template<bool... BN>
struct all_true;
template<bool B>
struct all_true<B>
{
static const bool value = B;
};
template<bool B, bool... BN>
struct all_true<B, BN...>
{
static const bool value = B && all_true<BN...>::value;
};
template<bool... BN>
using enable_if_all_true_t = typename std::enable_if<all_true<BN...>::value>::type;
template<class... BN>
struct all_true_type;
template<class B>
struct all_true_type<B>
{
static const bool value = B::value;
};
template<class B, class... BN>
struct all_true_type<B, BN...>
{
static const bool value = B::value && all_true_type<BN...>::value;
};
template<class... BN>
using enable_if_all_true_type_t = typename std::enable_if<all_true_type<BN...>::value>::type;
struct all_values_true {
template<class... ValueN>
bool operator()(const ValueN&... vn) const;
template<class Value0>
bool operator()(const Value0& v0) const {
return v0;
}
template<class Value0, class... ValueN>
bool operator()(const Value0& v0, const ValueN&... vn) const {
return v0 && all_values_true()(vn...);
}
};
struct any_value_true {
template<class... ValueN>
bool operator()(const ValueN&... vn) const;
template<class Value0>
bool operator()(const Value0& v0) const {
return v0;
}
template<class Value0, class... ValueN>
bool operator()(const Value0& v0, const ValueN&... vn) const {
return v0 || any_value_true()(vn...);
}
};
template<class... TN>
struct types {};
//
// based on Walter Brown's void_t proposal
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n3911.pdf
//
struct types_checked {};
namespace detail {
template<class... TN> struct types_checked_from { using type = types_checked; };
}
template<class... TN>
struct types_checked_from { using type = typename detail::types_checked_from<TN...>::type; };
template<class... TN>
using types_checked_t = typename types_checked_from<TN...>::type;
template<class Types, class =types_checked>
struct expand_value_types { struct type; };
template<class... TN>
struct expand_value_types<types<TN...>, types_checked_t<typename std::decay<TN>::type::value_type...>>
{
using type = types<typename std::decay<TN>::type::value_type...>;
};
template<class... TN>
using value_types_t = typename expand_value_types<types<TN...>>::type;
template<class T, class C = types_checked>
struct value_type_from : public std::false_type { using type = types_checked; };
template<class T>
struct value_type_from<T, typename types_checked_from<value_type_t<T>>::type>
: public std::true_type { using type = value_type_t<T>; };
namespace detail {
template<class F, class Tuple, int... IndexN>
auto apply(Tuple&& p, values<int, IndexN...>, F&& f)
-> decltype(f(std::get<IndexN>(std::forward<Tuple>(p))...)) {
return f(std::get<IndexN>(std::forward<Tuple>(p))...);
}
template<class F_inner, class F_outer, class... ParamN, int... IndexN>
auto apply_to_each(std::tuple<ParamN...>& p, values<int, IndexN...>, F_inner& f_inner, F_outer& f_outer)
-> decltype(f_outer(std::move(f_inner(std::get<IndexN>(p)))...)) {
return f_outer(std::move(f_inner(std::get<IndexN>(p)))...);
}
template<class F_inner, class F_outer, class... ParamN, int... IndexN>
auto apply_to_each(std::tuple<ParamN...>& p, values<int, IndexN...>, const F_inner& f_inner, const F_outer& f_outer)
-> decltype(f_outer(std::move(f_inner(std::get<IndexN>(p)))...)) {
return f_outer(std::move(f_inner(std::get<IndexN>(p)))...);
}
}
template<class F, class... ParamN>
auto apply(std::tuple<ParamN...>&& p, F&& f)
-> decltype(detail::apply(std::move(p), typename values_from<int, sizeof...(ParamN)>::type(), std::forward<F>(f))) {
return detail::apply(std::move(p), typename values_from<int, sizeof...(ParamN)>::type(), std::forward<F>(f));
}
template<class F, class... ParamN>
auto apply(const std::tuple<ParamN...>& p, F&& f)
-> decltype(detail::apply(p, typename values_from<int, sizeof...(ParamN)>::type(), std::forward<F>(f))) {
return detail::apply(p, typename values_from<int, sizeof...(ParamN)>::type(), std::forward<F>(f));
}
template<class F_inner, class F_outer, class... ParamN>
auto apply_to_each(std::tuple<ParamN...>& p, F_inner& f_inner, F_outer& f_outer)
-> decltype(detail::apply_to_each(p, typename values_from<int, sizeof...(ParamN)>::type(), f_inner, f_outer)) {
return detail::apply_to_each(p, typename values_from<int, sizeof...(ParamN)>::type(), f_inner, f_outer);
}
template<class F_inner, class F_outer, class... ParamN>
auto apply_to_each(std::tuple<ParamN...>& p, const F_inner& f_inner, const F_outer& f_outer)
-> decltype(detail::apply_to_each(p, typename values_from<int, sizeof...(ParamN)>::type(), f_inner, f_outer)) {
return detail::apply_to_each(p, typename values_from<int, sizeof...(ParamN)>::type(), f_inner, f_outer);
}
namespace detail {
template<class F>
struct apply_to
{
F to;
explicit apply_to(F f)
: to(std::move(f))
{
}
template<class... ParamN>
auto operator()(std::tuple<ParamN...> p)
-> decltype(rxcpp::util::apply(std::move(p), to)) {
return rxcpp::util::apply(std::move(p), to);
}
template<class... ParamN>
auto operator()(std::tuple<ParamN...> p) const
-> decltype(rxcpp::util::apply(std::move(p), to)) {
return rxcpp::util::apply(std::move(p), to);
}
};
}
template<class F>
auto apply_to(F f)
-> detail::apply_to<F> {
return detail::apply_to<F>(std::move(f));
}
namespace detail {
struct pack
{
template<class... ParamN>
auto operator()(ParamN... pn)
-> decltype(std::make_tuple(std::move(pn)...)) {
return std::make_tuple(std::move(pn)...);
}
template<class... ParamN>
auto operator()(ParamN... pn) const
-> decltype(std::make_tuple(std::move(pn)...)) {
return std::make_tuple(std::move(pn)...);
}
};
}
inline auto pack()
-> detail::pack {
return detail::pack();
}
namespace detail {
template<int Index>
struct take_at
{
template<class... ParamN>
auto operator()(const ParamN&... pn) const
-> typename std::tuple_element<Index, std::tuple<decay_t<ParamN>...>>::type {
return std::get<Index>(std::tie(pn...));
}
};
}
template<int Index>
inline auto take_at()
-> detail::take_at<Index> {
return detail::take_at<Index>();
}
template <class D>
struct resolve_type;
template <template<class... TN> class Deferred, class... AN>
struct defer_trait
{
template<bool R>
struct tag_valid {static const bool valid = true; static const bool value = R;};
struct tag_not_valid {static const bool valid = false; static const bool value = false;};
using resolved_type = Deferred<typename resolve_type<AN>::type...>;
template<class... CN>
static auto check(int) -> tag_valid<resolved_type::value>;
template<class... CN>
static tag_not_valid check(...);
using tag_type = decltype(check<AN...>(0));
static const bool valid = tag_type::valid;
static const bool value = tag_type::value;
static const bool not_value = valid && !value;
};
template <template<class... TN> class Deferred, class... AN>
struct defer_type
{
template<class R>
struct tag_valid { using type = R; static const bool value = true;};
struct tag_not_valid { using type = void; static const bool value = false;};
using resolved_type = Deferred<typename resolve_type<AN>::type...>;
template<class... CN>
static auto check(int) -> tag_valid<resolved_type>;
template<class... CN>
static tag_not_valid check(...);
using tag_type = decltype(check<AN...>(0));
using type = typename tag_type::type;
static const bool value = tag_type::value;
};
template <template<class... TN> class Deferred, class... AN>
struct defer_value_type
{
template<class R>
struct tag_valid { using type = R; static const bool value = true;};
struct tag_not_valid { using type = void; static const bool value = false;};
using resolved_type = Deferred<typename resolve_type<AN>::type...>;
template<class... CN>
static auto check(int) -> tag_valid<value_type_t<resolved_type>>;
template<class... CN>
static tag_not_valid check(...);
using tag_type = decltype(check<AN...>(0));
using type = typename tag_type::type;
static const bool value = tag_type::value;
};
template <template<class... TN> class Deferred, class... AN>
struct defer_seed_type
{
template<class R>
struct tag_valid { using type = R; static const bool value = true;};
struct tag_not_valid { using type = void; static const bool value = false;};
using resolved_type = Deferred<typename resolve_type<AN>::type...>;
template<class... CN>
static auto check(int) -> tag_valid<typename resolved_type::seed_type>;
template<class... CN>
static tag_not_valid check(...);
using tag_type = decltype(check<AN...>(0));
using type = typename tag_type::type;
static const bool value = tag_type::value;
};
template <class D>
struct resolve_type
{
using type = D;
};
template <template<class... TN> class Deferred, class... AN>
struct resolve_type<defer_type<Deferred, AN...>>
{
using type = typename defer_type<Deferred, AN...>::type;
};
template <template<class... TN> class Deferred, class... AN>
struct resolve_type<defer_value_type<Deferred, AN...>>
{
using type = typename defer_value_type<Deferred, AN...>::type;
};
template <template<class... TN> class Deferred, class... AN>
struct resolve_type<defer_seed_type<Deferred, AN...>>
{
using type = typename defer_seed_type<Deferred, AN...>::type;
};
struct plus
{
template <class LHS, class RHS>
auto operator()(LHS&& lhs, RHS&& rhs) const
-> decltype(std::forward<LHS>(lhs) + std::forward<RHS>(rhs))
{ return std::forward<LHS>(lhs) + std::forward<RHS>(rhs); }
};
struct count
{
template <class T>
int operator()(int cnt, T&&) const
{ return cnt + 1; }
};
struct less
{
template <class LHS, class RHS>
auto operator()(LHS&& lhs, RHS&& rhs) const
-> decltype(std::forward<LHS>(lhs) < std::forward<RHS>(rhs))
{ return std::forward<LHS>(lhs) < std::forward<RHS>(rhs); }
};
template <class T>
struct ret
{
template <class LHS>
auto operator()(LHS&& ) const
-> decltype(T())
{ return T(); }
};
template<class T = void>
struct equal_to
{
bool operator()(const T& lhs, const T& rhs) const { return lhs == rhs; }
};
template<>
struct equal_to<void>
{
template<class LHS, class RHS>
auto operator()(LHS&& lhs, RHS&& rhs) const
-> decltype(std::forward<LHS>(lhs) == std::forward<RHS>(rhs))
{ return std::forward<LHS>(lhs) == std::forward<RHS>(rhs); }
};
namespace detail {
template<class OStream, class Delimit>
struct print_function
{
OStream& os;
Delimit delimit;
print_function(OStream& os, Delimit d) : os(os), delimit(std::move(d)) {}
template<class... TN>
void operator()(const TN&... tn) const {
bool inserts[] = {(os << tn, true)...};
inserts[0] = *reinterpret_cast<bool*>(inserts); // silence warning
delimit();
}
template<class... TN>
void operator()(const std::tuple<TN...>& tpl) const {
rxcpp::util::apply(tpl, *this);
}
};
template<class OStream>
struct endline
{
OStream& os;
endline(OStream& os) : os(os) {}
void operator()() const {
os << std::endl;
}
private:
endline& operator=(const endline&) RXCPP_DELETE;
};
template<class OStream, class ValueType>
struct insert_value
{
OStream& os;
ValueType value;
insert_value(OStream& os, ValueType v) : os(os), value(std::move(v)) {}
void operator()() const {
os << value;
}
private:
insert_value& operator=(const insert_value&) RXCPP_DELETE;
};
template<class OStream, class Function>
struct insert_function
{
OStream& os;
Function call;
insert_function(OStream& os, Function f) : os(os), call(std::move(f)) {}
void operator()() const {
call(os);
}
private:
insert_function& operator=(const insert_function&) RXCPP_DELETE;
};
template<class OStream, class Delimit>
auto print_followed_with(OStream& os, Delimit d)
-> detail::print_function<OStream, Delimit> {
return detail::print_function<OStream, Delimit>(os, std::move(d));
}
}
template<class OStream>
auto endline(OStream& os)
-> detail::endline<OStream> {
return detail::endline<OStream>(os);
}
template<class OStream>
auto println(OStream& os)
-> decltype(detail::print_followed_with(os, endline(os))) {
return detail::print_followed_with(os, endline(os));
}
template<class OStream, class Delimit>
auto print_followed_with(OStream& os, Delimit d)
-> decltype(detail::print_followed_with(os, detail::insert_function<OStream, Delimit>(os, std::move(d)))) {
return detail::print_followed_with(os, detail::insert_function<OStream, Delimit>(os, std::move(d)));
}
template<class OStream, class DelimitValue>
auto print_followed_by(OStream& os, DelimitValue dv)
-> decltype(detail::print_followed_with(os, detail::insert_value<OStream, DelimitValue>(os, std::move(dv)))) {
return detail::print_followed_with(os, detail::insert_value<OStream, DelimitValue>(os, std::move(dv)));
}
inline std::string what(std::exception_ptr ep) {
#if RXCPP_USE_EXCEPTIONS
try {std::rethrow_exception(ep);}
catch (const std::exception& ex) {
return ex.what();
} catch (...) {
return std::string("<not derived from std::exception>");
}
#endif
(void)ep;
return std::string("<exceptions are disabled>");
}
namespace detail {
template <class T>
class maybe
{
bool is_set;
typename std::aligned_storage<sizeof(T), std::alignment_of<T>::value>::type
storage;
public:
maybe()
: is_set(false)
{
}
maybe(const T& value)
: is_set(false)
{
new (reinterpret_cast<T*>(&storage)) T(value);
is_set = true;
}
maybe(T&& value)
: is_set(false)
{
new (reinterpret_cast<T*>(&storage)) T(std::move(value));
is_set = true;
}
maybe(const maybe& other)
: is_set(false)
{
if (other.is_set) {
new (reinterpret_cast<T*>(&storage)) T(other.get());
is_set = true;
}
}
maybe(maybe&& other)
: is_set(false)
{
if (other.is_set) {
new (reinterpret_cast<T*>(&storage)) T(std::move(other.get()));
is_set = true;
other.reset();
}
}
~maybe()
{
reset();
}
using value_type = T;
using iterator = T *;
using const_iterator = const T *;
bool empty() const {
return !is_set;
}
std::size_t size() const {
return is_set ? 1 : 0;
}
iterator begin() {
return reinterpret_cast<T*>(&storage);
}
const_iterator begin() const {
return reinterpret_cast<T*>(&storage);
}
iterator end() {
return reinterpret_cast<T*>(&storage) + size();
}
const_iterator end() const {
return reinterpret_cast<T*>(&storage) + size();
}
T* operator->() {
if (!is_set) std::terminate();
return reinterpret_cast<T*>(&storage);
}
const T* operator->() const {
if (!is_set) std::terminate();
return reinterpret_cast<T*>(&storage);
}
T& operator*() {
if (!is_set) std::terminate();
return *reinterpret_cast<T*>(&storage);
}
const T& operator*() const {
if (!is_set) std::terminate();
return *reinterpret_cast<T*>(&storage);
}
T& get() {
if (!is_set) std::terminate();
return *reinterpret_cast<T*>(&storage);
}
const T& get() const {
if (!is_set) std::terminate();
return *reinterpret_cast<const T*>(&storage);
}
void reset()
{
if (is_set) {
is_set = false;
reinterpret_cast<T*>(&storage)->~T();
//std::fill_n(reinterpret_cast<char*>(&storage), sizeof(T), 0);
}
}
template<class U>
void reset(U&& value) {
reset();
new (reinterpret_cast<T*>(&storage)) T(std::forward<U>(value));
is_set = true;
}
maybe& operator=(const T& other) {
reset(other);
return *this;
}
maybe& operator=(const maybe& other) {
if (!other.empty()) {
reset(other.get());
} else {
reset();
}
return *this;
}
};
}
using detail::maybe;
namespace detail {
struct surely
{
template<class... T>
auto operator()(const T&... t) const
-> decltype(std::make_tuple(t.get()...)) {
return std::make_tuple(t.get()...);
}
};
}
template<class... T>
inline auto surely(const std::tuple<T...>& tpl)
-> decltype(apply(tpl, detail::surely())) {
return apply(tpl, detail::surely());
}
namespace detail {
template<typename Function>
class unwinder
{
public:
~unwinder()
{
if (!!function)
{
RXCPP_TRY {
(*function)();
} RXCPP_CATCH(...) {
std::terminate();
}
}
}
explicit unwinder(Function* functionArg)
: function(functionArg)
{
}
void dismiss()
{
function = nullptr;
}
private:
unwinder();
unwinder(const unwinder&);
unwinder& operator=(const unwinder&);
Function* function;
};
}
#if !defined(RXCPP_THREAD_LOCAL)
template<typename T>
class thread_local_storage
{
private:
pthread_key_t key;
public:
thread_local_storage()
{
pthread_key_create(&key, NULL);
}
~thread_local_storage()
{
pthread_key_delete(key);
}
thread_local_storage& operator =(T* p)
{
pthread_setspecific(key, p);
return *this;
}
bool operator !()
{
return pthread_getspecific(key) == NULL;
}
T* operator ->()
{
return static_cast<T*>(pthread_getspecific(key));
}
T* get()
{
return static_cast<T*>(pthread_getspecific(key));
}
};
#endif
template<typename, typename C = types_checked>
struct is_string : std::false_type {
};
template <typename T>
struct is_string<T,
typename types_checked_from<
typename T::value_type,
typename T::traits_type,
typename T::allocator_type>::type>
: std::is_base_of<
std::basic_string<
typename T::value_type,
typename T::traits_type,
typename T::allocator_type>, T> {
};
namespace detail {
template <class T, class = types_checked>
struct is_duration : std::false_type {};
template <class T>
struct is_duration<T, types_checked_t<T, typename T::rep, typename T::period>>
: std::is_convertible<T*, std::chrono::duration<typename T::rep, typename T::period>*> {};
}
template <class T, class Decayed = decay_t<T>>
struct is_duration : detail::is_duration<Decayed> {};
// C++17 negation
namespace detail {
template<class T>
struct not_value : std::conditional_t<T::value, std::false_type, std::true_type> {
};
}
template <class T>
struct negation : detail::not_value<T> {};
}
#if !RXCPP_USE_EXCEPTIONS
namespace util {
namespace detail {
struct error_base {
virtual const char* what() = 0;
virtual ~error_base() {}
};
// Use the "Type Erasure" idiom to wrap an std::exception-like
// value into an error pointer.
//
// Supported types:
// exception, bad_exception, bad_alloc.
template <class E>
struct error_specific : public error_base {
error_specific(const E& e) : data(e) {}
error_specific(E&& e) : data(std::move(e)) {}
virtual ~error_specific() {}
virtual const char* what() {
return data.what();
}
E data;
};
}
}
#endif
namespace util {
#if RXCPP_USE_EXCEPTIONS
using error_ptr = std::exception_ptr;
#else
// Note: std::exception_ptr cannot be used directly when exceptions are disabled.
// Any attempt to 'throw' or to call into any of the std functions accepting
// an std::exception_ptr will either fail to compile or result in an abort at runtime.
using error_ptr = std::shared_ptr<util::detail::error_base>;
inline std::string what(error_ptr ep) {
return std::string(ep->what());
}
#endif
// TODO: Do we really need an identity make?
// (It was causing some compilation errors deep inside templates).
inline error_ptr make_error_ptr(error_ptr e) {
return e;
}
// Replace std::make_exception_ptr (which would immediately terminate
// when exceptions are disabled).
template <class E>
error_ptr make_error_ptr(E&& e) {
#if RXCPP_USE_EXCEPTIONS
return std::make_exception_ptr(std::forward<E>(e));
#else
using e_type = rxcpp::util::decay_t<E>;
using pointed_to_type = rxcpp::util::detail::error_specific<e_type>;
auto sp = std::make_shared<pointed_to_type>(std::forward<E>(e));
return std::static_pointer_cast<rxcpp::util::detail::error_base>(sp);
#endif
}
// Replace std::rethrow_exception to be compatible with our error_ptr typedef.
RXCPP_NORETURN inline void rethrow_exception(error_ptr e) {
#if RXCPP_USE_EXCEPTIONS
std::rethrow_exception(e);
#else
// error_ptr != std::exception_ptr so we can't use std::rethrow_exception
//
// However even if we could, calling std::rethrow_exception just terminates if exceptions are disabled.
//
// Therefore this function should only be called when we are completely giving up and have no idea
// how to handle the error.
(void)e;
std::terminate();
#endif
}
// A replacement for the "throw" keyword which is illegal when
// exceptions are disabled with -fno-exceptions.
template <typename E>
RXCPP_NORETURN inline void throw_exception(E&& e) {
#if RXCPP_USE_EXCEPTIONS
throw std::forward<E>(e);
#else
// "throw" keyword is unsupported when exceptions are disabled.
// Immediately terminate instead.
(void)e;
std::terminate();
#endif
}
// TODO: Do we really need this? rxu::rethrow_exception(rxu::current_exception())
// would have the same semantics in either case.
RXCPP_NORETURN inline void rethrow_current_exception() {
#if RXCPP_USE_EXCEPTIONS
std::rethrow_exception(std::current_exception());
#else
std::terminate();
#endif
}
// If called during exception handling, return the currently caught exception.
// Otherwise return null.
inline error_ptr current_exception() {
#if RXCPP_USE_EXCEPTIONS
return std::current_exception();
#else
// When exceptions are disabled, we can never be inside of a catch block.
// Return null similar to std::current_exception returning null outside of catch.
return nullptr;
#endif
}
}
namespace rxu=util;
//
// due to an noisy static_assert issue in more than one std lib impl,
// rxcpp maintains a whitelist filter for the types that are allowed
// to be hashed. this allows is_hashable<T> to work.
//
// NOTE: this should eventually be removed!
//
template <class T, typename = void>
struct filtered_hash;
#if RXCPP_HASH_ENUM
template <class T>
struct filtered_hash<T, typename std::enable_if<std::is_enum<T>::value>::type> : std::hash<T> {
};
#elif RXCPP_HASH_ENUM_UNDERLYING
template <class T>
struct filtered_hash<T, typename std::enable_if<std::is_enum<T>::value>::type> : std::hash<typename std::underlying_type<T>::type> {
};
#endif
template <class T>
struct filtered_hash<T, typename std::enable_if<std::is_integral<T>::value>::type> : std::hash<T> {
};
template <class T>
struct filtered_hash<T, typename std::enable_if<std::is_pointer<T>::value>::type> : std::hash<T> {
};
template <class T>
struct filtered_hash<T, typename std::enable_if<rxu::is_string<T>::value>::type> : std::hash<T> {
};
template <class T>
struct filtered_hash<T, typename std::enable_if<std::is_convertible<T, std::chrono::duration<typename T::rep, typename T::period>>::value>::type> {
using argument_type = T;
using result_type = std::size_t;
result_type operator()(argument_type const & dur) const
{
return std::hash<typename argument_type::rep>{}(dur.count());
}
};
template <class T>
struct filtered_hash<T, typename std::enable_if<std::is_convertible<T, std::chrono::time_point<typename T::clock, typename T::duration>>::value>::type> {
using argument_type = T;
using result_type = std::size_t;
result_type operator()(argument_type const & tp) const
{
return std::hash<typename argument_type::rep>{}(tp.time_since_epoch().count());
}
};
template<typename, typename C = rxu::types_checked>
struct is_hashable
: std::false_type {};
template<typename T>
struct is_hashable<T,
typename rxu::types_checked_from<
typename filtered_hash<T>::result_type,
typename filtered_hash<T>::argument_type,
typename rxu::callable_result<filtered_hash<T>, T>::type>::type>
: std::true_type {};
}
#define RXCPP_UNWIND(Name, Function) \
RXCPP_UNWIND_EXPLICIT(uwfunc_ ## Name, Name, Function)
#define RXCPP_UNWIND_AUTO(Function) \
RXCPP_UNWIND_EXPLICIT(RXCPP_MAKE_IDENTIFIER(uwfunc_), RXCPP_MAKE_IDENTIFIER(unwind_), Function)
#define RXCPP_UNWIND_EXPLICIT(FunctionName, UnwinderName, Function) \
auto FunctionName = (Function); \
rxcpp::util::detail::unwinder<decltype(FunctionName)> UnwinderName(std::addressof(FunctionName))
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_PREDEF_HPP)
#define RXCPP_RX_PREDEF_HPP
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_OBSERVABLE_FWD_HPP)
#define RXCPP_RX_OBSERVABLE_FWD_HPP
#include <type_traits>
namespace rxcpp {
template<class T>
class dynamic_observable;
template<
class T = void,
class SourceObservable = typename std::conditional_t<std::is_same_v<T, void>, void, dynamic_observable<T>>>
class observable;
template<class T, class Source>
observable<T> make_observable_dynamic(Source&&);
}
#endif
namespace rxcpp {
//
// create a typedef for rxcpp_trace_type to override the default
//
inline auto trace_activity() -> decltype(rxcpp_trace_activity(trace_tag()))& {
static decltype(rxcpp_trace_activity(trace_tag())) trace;
return trace;
}
struct tag_action {};
template<class T, class C = rxu::types_checked>
struct is_action : public std::false_type {};
template<class T>
struct is_action<T, typename rxu::types_checked_from<typename T::action_tag>::type>
: public std::is_convertible<typename T::action_tag*, tag_action*> {};
struct tag_worker {};
template<class T>
class is_worker
{
struct not_void {};
template<class C>
static typename C::worker_tag* check(int);
template<class C>
static not_void check(...);
public:
static const bool value = std::is_convertible<decltype(check<rxu::decay_t<T>>(0)), tag_worker*>::value;
};
struct tag_scheduler {};
template<class T>
class is_scheduler
{
struct not_void {};
template<class C>
static typename C::scheduler_tag* check(int);
template<class C>
static not_void check(...);
public:
static const bool value = std::is_convertible<decltype(check<rxu::decay_t<T>>(0)), tag_scheduler*>::value;
};
struct tag_schedulable {};
template<class T>
class is_schedulable
{
struct not_void {};
template<class C>
static typename C::schedulable_tag* check(int);
template<class C>
static not_void check(...);
public:
static const bool value = std::is_convertible<decltype(check<rxu::decay_t<T>>(0)), tag_schedulable*>::value;
};
namespace detail
{
struct stateless_observer_tag {};
}
// state with optional overrides
template<class T, class State = void, class OnNext = void, class OnError = void, class OnCompleted = void>
class observer;
// no state with optional overrides
template<class T, class OnNext, class OnError, class OnCompleted>
class observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>;
// virtual functions forward to dynamically allocated shared observer instance.
template<class T>
class observer<T, void, void, void, void>;
struct tag_observer {};
template<class T>
class is_observer
{
template<class C>
static typename C::observer_tag* check(int);
template<class C>
static void check(...);
public:
static const bool value = std::is_convertible<decltype(check<rxu::decay_t<T>>(0)), tag_observer*>::value;
};
struct tag_dynamic_observer {};
template<class T>
class is_dynamic_observer
{
struct not_void {};
template<class C>
static typename C::dynamic_observer_tag* check(int);
template<class C>
static not_void check(...);
public:
static const bool value = std::is_convertible<decltype(check<rxu::decay_t<T>>(0)), tag_dynamic_observer*>::value;
};
struct tag_subscriber {};
template<class T>
class is_subscriber
{
struct not_void {};
template<class C>
static typename C::subscriber_tag* check(int);
template<class C>
static not_void check(...);
public:
static const bool value = std::is_convertible<decltype(check<rxu::decay_t<T>>(0)), tag_subscriber*>::value;
};
struct tag_dynamic_observable {};
template<class T>
class is_dynamic_observable
{
struct not_void {};
template<class C>
static typename C::dynamic_observable_tag* check(int);
template<class C>
static not_void check(...);
public:
static const bool value = std::is_convertible<decltype(check<rxu::decay_t<T>>(0)), tag_dynamic_observable*>::value;
};
template<class Selector, class Default, template<class... TN> class SO, class... AN>
struct defer_observable;
struct tag_observable {};
template<class T>
struct observable_base {
using observable_tag = tag_observable;
using value_type = T;
};
namespace detail {
template<class T, class =rxu::types_checked>
struct is_observable : std::false_type
{
};
template<class T>
struct is_observable<T, rxu::types_checked_t<typename T::observable_tag>>
: std::is_convertible<typename T::observable_tag*, tag_observable*>
{
};
}
template<class T, class Decayed = rxu::decay_t<T>>
struct is_observable : detail::is_observable<Decayed>
{
};
template<class Observable, class DecayedObservable = rxu::decay_t<Observable>>
using observable_tag_t = typename DecayedObservable::observable_tag;
// extra indirection for vs2013 support
template<class Types, class =rxu::types_checked>
struct expand_observable_tags { struct type; };
template<class... ObservableN>
struct expand_observable_tags<rxu::types<ObservableN...>, rxu::types_checked_t<typename ObservableN::observable_tag...>>
{
using type = rxu::types<typename ObservableN::observable_tag...>;
};
template<class... ObservableN>
using observable_tags_t = typename expand_observable_tags<rxu::types<ObservableN...>>::type;
template<class... ObservableN>
using all_observables = rxu::all_true_type<is_observable<ObservableN>...>;
struct tag_dynamic_connectable_observable : public tag_dynamic_observable {};
template<class T>
class is_dynamic_connectable_observable
{
struct not_void {};
template<class C>
static typename C::dynamic_observable_tag* check(int);
template<class C>
static not_void check(...);
public:
static const bool value = std::is_convertible<decltype(check<rxu::decay_t<T>>(0)), tag_dynamic_connectable_observable*>::value;
};
template<class T>
class dynamic_connectable_observable;
template<class T,
class SourceObservable = typename std::conditional_t<std::is_same_v<T, void>, void, dynamic_connectable_observable<T>>>
class connectable_observable;
struct tag_connectable_observable : public tag_observable {};
template<class T>
class is_connectable_observable
{
template<class C>
static typename C::observable_tag check(int);
template<class C>
static void check(...);
public:
static const bool value = std::is_convertible<decltype(check<rxu::decay_t<T>>(0)), tag_connectable_observable>::value;
};
struct tag_dynamic_grouped_observable : public tag_dynamic_observable {};
template<class T>
class is_dynamic_grouped_observable
{
struct not_void {};
template<class C>
static typename C::dynamic_observable_tag* check(int);
template<class C>
static not_void check(...);
public:
static const bool value = std::is_convertible<decltype(check<rxu::decay_t<T>>(0)), tag_dynamic_grouped_observable*>::value;
};
template<class K, class T>
class dynamic_grouped_observable;
template<class K, class T,
class SourceObservable = typename std::conditional_t<std::is_same_v<T, void>, void, dynamic_grouped_observable<K, T>>>
class grouped_observable;
template<class K, class T, class Source>
grouped_observable<K, T> make_dynamic_grouped_observable(Source&& s);
struct tag_grouped_observable : public tag_observable {};
template<class T>
class is_grouped_observable
{
template<class C>
static typename C::observable_tag check(int);
template<class C>
static void check(...);
public:
static const bool value = std::is_convertible<decltype(check<rxu::decay_t<T>>(0)), tag_grouped_observable>::value;
};
template<class Source, class Function>
struct is_operator_factory_for {
using function_type = rxu::decay_t<Function>;
using source_type = rxu::decay_t<Source>;
// check methods instead of void_t for vs2013 support
struct tag_not_valid;
template<class CS, class CO>
static auto check(int) -> decltype(std::declval<CS>()(std::declval<CO>()));
template<class CS, class CO>
static tag_not_valid check(...);
using type = decltype(check<function_type, source_type>(0));
static const bool value = !std::is_same_v<type, tag_not_valid> && is_observable<source_type>::value;
};
//
// this type is the default used by operators that subscribe to
// multiple sources. It assumes that the sources are already synchronized
//
struct identity_observable
{
template<class Observable>
auto operator()(Observable o)
-> Observable {
return std::move(o);
static_assert(is_observable<Observable>::value, "only support observables");
}
};
template<class T>
struct identity_for
{
T operator()(T t) {
return std::move(t);
}
};
template<class T, class Seed, class Accumulator>
struct is_accumulate_function_for {
using accumulator_type = rxu::decay_t<Accumulator>;
using seed_type = rxu::decay_t<Seed>;
using source_value_type = T;
struct tag_not_valid {};
template<class CS, class CV, class CRS>
static auto check(int) -> decltype(std::declval<CRS>()(std::declval<CS>(), std::declval<CV>()));
template<class CS, class CV, class CRS>
static tag_not_valid check(...);
using type = decltype(check<seed_type, source_value_type, accumulator_type>(0));
static const bool value = std::is_same_v<type, seed_type>;
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_SUBSCRIPTION_HPP)
#define RXCPP_RX_SUBSCRIPTION_HPP
namespace rxcpp {
namespace detail {
template<class F>
struct is_unsubscribe_function
{
struct not_void {};
template<class CF>
static auto check(int) -> decltype(std::declval<CF>()());
template<class CF>
static not_void check(...);
static const bool value = std::is_same_v<decltype(check<rxu::decay_t<F>>(0)), void>;
};
}
struct tag_subscription {};
struct subscription_base { using subscription_tag = tag_subscription; };
template<class T>
class is_subscription
{
template<class C>
static typename C::subscription_tag* check(int);
template<class C>
static void check(...);
public:
static const bool value = std::is_convertible<decltype(check<rxu::decay_t<T>>(0)), tag_subscription*>::value;
};
template<class Unsubscribe>
class static_subscription
{
using unsubscribe_call_type = rxu::decay_t<Unsubscribe>;
unsubscribe_call_type unsubscribe_call;
static_subscription()
{
}
public:
static_subscription(const static_subscription& o)
: unsubscribe_call(o.unsubscribe_call)
{
}
static_subscription(static_subscription&& o)
: unsubscribe_call(std::move(o.unsubscribe_call))
{
}
static_subscription(unsubscribe_call_type s)
: unsubscribe_call(std::move(s))
{
}
void unsubscribe() const {
unsubscribe_call();
}
};
class subscription : public subscription_base
{
class base_subscription_state : public std::enable_shared_from_this<base_subscription_state>
{
base_subscription_state();
public:
explicit base_subscription_state(bool initial)
: issubscribed(initial)
{
}
virtual ~base_subscription_state() {}
virtual void unsubscribe() {
}
std::atomic<bool> issubscribed;
};
public:
using weak_state_type = std::weak_ptr<base_subscription_state>;
private:
template<class I>
struct subscription_state : public base_subscription_state
{
using inner_t = rxu::decay_t<I>;
subscription_state(inner_t i)
: base_subscription_state(true)
, inner(std::move(i))
{
}
virtual void unsubscribe() {
if (issubscribed.exchange(false)) {
trace_activity().unsubscribe_enter(*this);
inner.unsubscribe();
trace_activity().unsubscribe_return(*this);
}
}
inner_t inner;
};
protected:
std::shared_ptr<base_subscription_state> state;
friend bool operator<(const subscription&, const subscription&);
friend bool operator==(const subscription&, const subscription&);
private:
subscription(weak_state_type w)
: state(w.lock())
{
if (!state) {
std::terminate();
}
}
explicit subscription(std::shared_ptr<base_subscription_state> s)
: state(std::move(s))
{
if (!state) {
std::terminate();
}
}
public:
subscription()
: state(std::make_shared<base_subscription_state>(false))
{
if (!state) {
std::terminate();
}
}
template<class U>
explicit subscription(U u, typename std::enable_if<!is_subscription<U>::value, void**>::type = nullptr)
: state(std::make_shared<subscription_state<U>>(std::move(u)))
{
if (!state) {
std::terminate();
}
}
template<class U>
explicit subscription(U u, typename std::enable_if<!std::is_same_v<subscription, U> && is_subscription<U>::value, void**>::type = nullptr)
// intentionally slice
: state(std::move((*static_cast<subscription*>(&u)).state))
{
if (!state) {
std::terminate();
}
}
subscription(const subscription& o)
: state(o.state)
{
if (!state) {
std::terminate();
}
}
subscription(subscription&& o)
: state(std::move(o.state))
{
if (!state) {
std::terminate();
}
}
subscription& operator=(subscription o) {
state = std::move(o.state);
return *this;
}
bool is_subscribed() const {
if (!state) {
std::terminate();
}
return state->issubscribed;
}
void unsubscribe() const {
if (!state) {
std::terminate();
}
auto keepAlive = state;
state->unsubscribe();
}
weak_state_type get_weak() {
return state;
}
// Atomically promote weak subscription to strong.
// Calls std::terminate if w has already expired.
static subscription lock(weak_state_type w) {
return subscription(w);
}
// Atomically try to promote weak subscription to strong.
// Returns an empty maybe<> if w has already expired.
static rxu::maybe<subscription> maybe_lock(weak_state_type w) {
auto strong_subscription = w.lock();
if (!strong_subscription) {
return rxu::detail::maybe<subscription>{};
} else {
return rxu::detail::maybe<subscription>{subscription{std::move(strong_subscription)}};
}
}
};
inline bool operator<(const subscription& lhs, const subscription& rhs) {
return lhs.state < rhs.state;
}
inline bool operator==(const subscription& lhs, const subscription& rhs) {
return lhs.state == rhs.state;
}
inline bool operator!=(const subscription& lhs, const subscription& rhs) {
return !(lhs == rhs);
}
inline auto make_subscription()
-> subscription {
return subscription();
}
template<class I>
auto make_subscription(I&& i)
-> typename std::enable_if<!is_subscription<I>::value && !detail::is_unsubscribe_function<I>::value,
subscription>::type {
return subscription(std::forward<I>(i));
}
template<class Unsubscribe>
auto make_subscription(Unsubscribe&& u)
-> typename std::enable_if<detail::is_unsubscribe_function<Unsubscribe>::value,
subscription>::type {
return subscription(static_subscription<Unsubscribe>(std::forward<Unsubscribe>(u)));
}
class composite_subscription;
namespace detail {
struct tag_composite_subscription_empty {};
class composite_subscription_inner
{
private:
using weak_subscription = subscription::weak_state_type;
struct composite_subscription_state : public std::enable_shared_from_this<composite_subscription_state>
{
// invariant: cannot access this data without the lock held.
std::set<subscription> subscriptions;
// double checked locking:
// issubscribed must be loaded again after each lock acquisition.
// invariant:
// never call subscription::unsubscribe with lock held.
std::mutex lock;
// invariant: transitions from 'true' to 'false' exactly once, at any time.
std::atomic<bool> issubscribed;
~composite_subscription_state()
{
std::unique_lock<decltype(lock)> guard(lock);
subscriptions.clear();
}
composite_subscription_state()
: issubscribed(true)
{
}
composite_subscription_state(tag_composite_subscription_empty)
: issubscribed(false)
{
}
// Atomically add 's' to the set of subscriptions.
//
// If unsubscribe() has already occurred, this immediately
// calls s.unsubscribe().
//
// cs.unsubscribe() [must] happens-before s.unsubscribe()
//
// Due to the un-atomic nature of calling 's.unsubscribe()',
// it is possible to observe the unintuitive
// add(s)=>s.unsubscribe() prior
// to any of the unsubscribe()=>sN.unsubscribe().
inline weak_subscription add(subscription s) {
if (!issubscribed) { // load.acq [seq_cst]
s.unsubscribe();
} else if (s.is_subscribed()) {
std::unique_lock<decltype(lock)> guard(lock);
if (!issubscribed) { // load.acq [seq_cst]
// unsubscribe was called concurrently.
guard.unlock();
// invariant: do not call unsubscribe with lock held.
s.unsubscribe();
} else {
subscriptions.insert(s);
}
}
return s.get_weak();
}
// Atomically remove 'w' from the set of subscriptions.
//
// This does nothing if 'w' was already previously removed,
// or refers to an expired value.
inline void remove(weak_subscription w) {
if (issubscribed) { // load.acq [seq_cst]
rxu::maybe<subscription> maybe_subscription = subscription::maybe_lock(w);
if (maybe_subscription.empty()) {
// Do nothing if the subscription has already expired.
return;
}
std::unique_lock<decltype(lock)> guard(lock);
// invariant: subscriptions must be accessed under the lock.
if (issubscribed) { // load.acq [seq_cst]
subscription& s = maybe_subscription.get();
subscriptions.erase(std::move(s));
} // else unsubscribe() was called concurrently; this becomes a no-op.
}
}
// Atomically clear all subscriptions that were observably added
// (and not subsequently observably removed).
//
// Un-atomically call unsubscribe on those subscriptions.
//
// forall subscriptions in {add(s1),add(s2),...}
// - {remove(s3), remove(s4), ...}:
// cs.unsubscribe() || cs.clear() happens before s.unsubscribe()
//
// cs.unsubscribe() observed-before cs.clear ==> do nothing.
inline void clear() {
if (issubscribed) { // load.acq [seq_cst]
std::unique_lock<decltype(lock)> guard(lock);
if (!issubscribed) { // load.acq [seq_cst]
// unsubscribe was called concurrently.
return;
}
std::set<subscription> v(std::move(subscriptions));
// invariant: do not call unsubscribe with lock held.
guard.unlock();
std::for_each(v.begin(), v.end(),
[](const subscription& s) {
s.unsubscribe(); });
}
}
// Atomically clear all subscriptions that were observably added
// (and not subsequently observably removed).
//
// Un-atomically call unsubscribe on those subscriptions.
//
// Switches to an 'unsubscribed' state, all subsequent
// adds are immediately unsubscribed.
//
// cs.unsubscribe() [must] happens-before
// cs.add(s) ==> s.unsubscribe()
//
// forall subscriptions in {add(s1),add(s2),...}
// - {remove(s3), remove(s4), ...}:
// cs.unsubscribe() || cs.clear() happens before s.unsubscribe()
inline void unsubscribe() {
if (issubscribed.exchange(false)) { // cas.acq_rel [seq_cst]
std::unique_lock<decltype(lock)> guard(lock);
// is_subscribed can only transition to 'false' once,
// does not need an extra atomic access here.
std::set<subscription> v(std::move(subscriptions));
// invariant: do not call unsubscribe with lock held.
guard.unlock();
std::for_each(v.begin(), v.end(),
[](const subscription& s) {
s.unsubscribe(); });
}
}
};
public:
using shared_state_type = std::shared_ptr<composite_subscription_state>;
protected:
mutable shared_state_type state;
public:
composite_subscription_inner()
: state(std::make_shared<composite_subscription_state>())
{
}
composite_subscription_inner(tag_composite_subscription_empty et)
: state(std::make_shared<composite_subscription_state>(et))
{
}
composite_subscription_inner(const composite_subscription_inner& o)
: state(o.state)
{
if (!state) {
std::terminate();
}
}
composite_subscription_inner(composite_subscription_inner&& o)
: state(std::move(o.state))
{
if (!state) {
std::terminate();
}
}
composite_subscription_inner& operator=(composite_subscription_inner o)
{
state = std::move(o.state);
if (!state) {
std::terminate();
}
return *this;
}
inline weak_subscription add(subscription s) const {
if (!state) {
std::terminate();
}
return state->add(std::move(s));
}
inline void remove(weak_subscription w) const {
if (!state) {
std::terminate();
}
state->remove(std::move(w));
}
inline void clear() const {
if (!state) {
std::terminate();
}
state->clear();
}
inline void unsubscribe() {
if (!state) {
std::terminate();
}
state->unsubscribe();
}
};
inline composite_subscription shared_empty();
}
/*!
\brief controls lifetime for scheduler::schedule and observable<T, SourceOperator>::subscribe.
\ingroup group-core
*/
class composite_subscription
: protected detail::composite_subscription_inner
, public subscription
{
using inner_type = detail::composite_subscription_inner;
public:
using weak_subscription = subscription::weak_state_type;
composite_subscription(detail::tag_composite_subscription_empty et)
: inner_type(et)
, subscription() // use empty base
{
}
public:
composite_subscription()
: inner_type()
, subscription(*static_cast<const inner_type*>(this))
{
}
composite_subscription(const composite_subscription& o)
: inner_type(o)
, subscription(static_cast<const subscription&>(o))
{
}
composite_subscription(composite_subscription&& o)
: inner_type(std::move(o))
, subscription(std::move(static_cast<subscription&>(o)))
{
}
composite_subscription& operator=(composite_subscription o)
{
inner_type::operator=(std::move(o));
subscription::operator=(std::move(*static_cast<subscription*>(&o)));
return *this;
}
static inline composite_subscription empty() {
return detail::shared_empty();
}
using subscription::is_subscribed;
using subscription::unsubscribe;
using inner_type::clear;
inline weak_subscription add(subscription s) const {
if (s == static_cast<const subscription&>(*this)) {
// do not nest the same subscription
std::terminate();
//return s.get_weak();
}
auto that = this->subscription::state.get();
trace_activity().subscription_add_enter(*that, s);
auto w = inner_type::add(std::move(s));
trace_activity().subscription_add_return(*that);
return w;
}
template<class F>
auto add(F f) const
-> typename std::enable_if<detail::is_unsubscribe_function<F>::value, weak_subscription>::type {
return add(make_subscription(std::move(f)));
}
inline void remove(weak_subscription w) const {
auto that = this->subscription::state.get();
trace_activity().subscription_remove_enter(*that, w);
inner_type::remove(w);
trace_activity().subscription_remove_return(*that);
}
};
inline bool operator<(const composite_subscription& lhs, const composite_subscription& rhs) {
return static_cast<const subscription&>(lhs) < static_cast<const subscription&>(rhs);
}
inline bool operator==(const composite_subscription& lhs, const composite_subscription& rhs) {
return static_cast<const subscription&>(lhs) == static_cast<const subscription&>(rhs);
}
inline bool operator!=(const composite_subscription& lhs, const composite_subscription& rhs) {
return !(lhs == rhs);
}
namespace detail {
inline composite_subscription shared_empty() {
static composite_subscription shared_empty = composite_subscription(tag_composite_subscription_empty());
return shared_empty;
}
}
template<class T>
class resource : public subscription_base
{
public:
using weak_subscription = typename composite_subscription::weak_subscription;
resource()
: lifetime(composite_subscription())
, value(std::make_shared<rxu::detail::maybe<T>>())
{
}
explicit resource(T t, composite_subscription cs = composite_subscription())
: lifetime(std::move(cs))
, value(std::make_shared<rxu::detail::maybe<T>>(rxu::detail::maybe<T>(std::move(t))))
{
auto localValue = value;
lifetime.add(
[localValue](){
localValue->reset();
}
);
}
T& get() {
return value.get()->get();
}
composite_subscription& get_subscription() {
return lifetime;
}
bool is_subscribed() const {
return lifetime.is_subscribed();
}
weak_subscription add(subscription s) const {
return lifetime.add(std::move(s));
}
template<class F>
auto add(F f) const
-> typename std::enable_if<detail::is_unsubscribe_function<F>::value, weak_subscription>::type {
return lifetime.add(make_subscription(std::move(f)));
}
void remove(weak_subscription w) const {
return lifetime.remove(std::move(w));
}
void clear() const {
return lifetime.clear();
}
void unsubscribe() const {
return lifetime.unsubscribe();
}
protected:
composite_subscription lifetime;
std::shared_ptr<rxu::detail::maybe<T>> value;
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_OBSERVER_HPP)
#define RXCPP_RX_OBSERVER_HPP
namespace rxcpp {
template<class T>
struct observer_base
{
using value_type = T;
using observer_tag = tag_observer;
};
namespace detail {
template<class T>
struct OnNextEmpty
{
void operator()(const T&) const {}
};
struct OnErrorEmpty
{
void operator()(rxu::error_ptr) const {
// error implicitly ignored, abort
std::terminate();
}
};
struct OnErrorIgnore
{
void operator()(rxu::error_ptr) const {
}
};
struct OnCompletedEmpty
{
void operator()() const {}
};
template<class T, class State, class OnNext>
struct OnNextForward
{
using state_t = rxu::decay_t<State>;
using onnext_t = rxu::decay_t<OnNext>;
OnNextForward() : onnext() {}
explicit OnNextForward(onnext_t on) : onnext(std::move(on)) {}
onnext_t onnext;
void operator()(state_t& s, const T& t) const {
onnext(s, t);
}
void operator()(state_t& s, T&& t) const {
onnext(s, std::move(t));
}
};
template<class T, class State>
struct OnNextForward<T, State, void>
{
using state_t = rxu::decay_t<State>;
OnNextForward() {}
void operator()(state_t& s, const T& t) const {
s.on_next(t);
}
void operator()(state_t& s, T&& t) const {
s.on_next(std::move(t));
}
};
template<class State, class OnError>
struct OnErrorForward
{
using state_t = rxu::decay_t<State>;
using onerror_t = rxu::decay_t<OnError>;
OnErrorForward() : onerror() {}
explicit OnErrorForward(onerror_t oe) : onerror(std::move(oe)) {}
onerror_t onerror;
void operator()(state_t& s, rxu::error_ptr ep) const {
onerror(s, ep);
}
};
template<class State>
struct OnErrorForward<State, void>
{
using state_t = rxu::decay_t<State>;
OnErrorForward() {}
void operator()(state_t& s, rxu::error_ptr ep) const {
s.on_error(ep);
}
};
template<class State, class OnCompleted>
struct OnCompletedForward
{
using state_t = rxu::decay_t<State>;
using oncompleted_t = rxu::decay_t<OnCompleted>;
OnCompletedForward() : oncompleted() {}
explicit OnCompletedForward(oncompleted_t oc) : oncompleted(std::move(oc)) {}
oncompleted_t oncompleted;
void operator()(state_t& s) const {
oncompleted(s);
}
};
template<class State>
struct OnCompletedForward<State, void>
{
OnCompletedForward() {}
void operator()(State& s) const {
s.on_completed();
}
};
template<class T, class F>
struct is_on_next_of
{
struct not_void {};
template<class CT, class CF>
static auto check(int) -> decltype(std::declval<CF>()(std::declval<CT>()));
template<class CT, class CF>
static not_void check(...);
using detail_result = decltype(check<T, rxu::decay_t < F>>(0));
static const bool value = std::is_same_v<detail_result, void>;
};
template<class F>
struct is_on_error
{
struct not_void {};
template<class CF>
static auto check(int) -> decltype(std::declval<CF>()(std::declval<rxu::error_ptr>()));
template<class CF>
static not_void check(...);
static const bool value = std::is_same_v<decltype(check<rxu::decay_t<F>>(0)), void>;
};
template<class State, class F>
struct is_on_error_for
{
struct not_void {};
template<class CF>
static auto check(int) -> decltype(std::declval<CF>()(std::declval<State>(), std::declval<rxu::error_ptr>()));
template<class CF>
static not_void check(...);
static const bool value = std::is_same_v<decltype(check<rxu::decay_t<F>>(0)), void>;
};
template<class F>
struct is_on_completed
{
struct not_void {};
template<class CF>
static auto check(int) -> decltype(std::declval<CF>()());
template<class CF>
static not_void check(...);
static const bool value = std::is_same_v<decltype(check<rxu::decay_t<F>>(0)), void>;
};
}
/*!
\brief consumes values from an observable using `State` that may implement on_next, on_error and on_completed with optional overrides of each function.
\tparam T - the type of value in the stream
\tparam State - the type of the stored state
\tparam OnNext - the type of a function that matches `void(State&, T)`. Called 0 or more times. If `void` State::on_next will be called.
\tparam OnError - the type of a function that matches `void(State&, rxu::error_ptr)`. Called 0 or 1 times, no further calls will be made. If `void` State::on_error will be called.
\tparam OnCompleted - the type of a function that matches `void(State&)`. Called 0 or 1 times, no further calls will be made. If `void` State::on_completed will be called.
\ingroup group-core
*/
template<class T, class State, class OnNext, class OnError, class OnCompleted>
class observer : public observer_base<T>
{
public:
using this_type = observer<T, State, OnNext, OnError, OnCompleted>;
using state_t = rxu::decay_t<State>;
using on_next_t = typename std::conditional_t<!std::is_same_v<void, OnNext>, rxu::decay_t<OnNext>, detail::OnNextForward<T, State, OnNext>>;
using on_error_t = typename std::conditional_t<!std::is_same_v<void, OnError>, rxu::decay_t<OnError>, detail::OnErrorForward<State, OnError>>;
using on_completed_t = typename std::conditional_t<!std::is_same_v<void, OnCompleted>, rxu::decay_t<OnCompleted>, detail::OnCompletedForward<State, OnCompleted>>;
private:
mutable state_t state;
on_next_t onnext;
on_error_t onerror;
on_completed_t oncompleted;
public:
explicit observer(state_t s, on_next_t n = on_next_t(), on_error_t e = on_error_t(), on_completed_t c = on_completed_t())
: state(std::move(s))
, onnext(std::move(n))
, onerror(std::move(e))
, oncompleted(std::move(c))
{
}
explicit observer(state_t s, on_next_t n, on_completed_t c)
: state(std::move(s))
, onnext(std::move(n))
, onerror(on_error_t())
, oncompleted(std::move(c))
{
}
observer(const this_type& o)
: state(o.state)
, onnext(o.onnext)
, onerror(o.onerror)
, oncompleted(o.oncompleted)
{
}
observer(this_type&& o)
: state(std::move(o.state))
, onnext(std::move(o.onnext))
, onerror(std::move(o.onerror))
, oncompleted(std::move(o.oncompleted))
{
}
this_type& operator=(this_type o) {
state = std::move(o.state);
onnext = std::move(o.onnext);
onerror = std::move(o.onerror);
oncompleted = std::move(o.oncompleted);
return *this;
}
void on_next(const T& t) const {
onnext(state, t);
}
void on_next(T&& t) const {
onnext(state, std::move(t));
}
void on_error(rxu::error_ptr e) const {
onerror(state, e);
}
void on_completed() const {
oncompleted(state);
}
observer<T> as_dynamic() const {
return observer<T>(*this);
}
};
/*!
\brief consumes values from an observable using default empty method implementations with optional overrides of each function.
\tparam T - the type of value in the stream
\tparam OnNext - the type of a function that matches `void(T)`. Called 0 or more times. If `void` OnNextEmpty<T> is used.
\tparam OnError - the type of a function that matches `void(rxu::error_ptr)`. Called 0 or 1 times, no further calls will be made. If `void` OnErrorEmpty is used.
\tparam OnCompleted - the type of a function that matches `void()`. Called 0 or 1 times, no further calls will be made. If `void` OnCompletedEmpty is used.
\ingroup group-core
*/
template<class T, class OnNext, class OnError, class OnCompleted>
class observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted> : public observer_base<T>
{
public:
using this_type = observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>;
using on_next_t = typename std::conditional_t<!std::is_same_v<void, OnNext>, rxu::decay_t<OnNext>, detail::OnNextEmpty<T>>;
using on_error_t = typename std::conditional_t<!std::is_same_v<void, OnError>, rxu::decay_t<OnError>, detail::OnErrorEmpty>;
using on_completed_t = typename std::conditional_t<!std::is_same_v<void, OnCompleted>, rxu::decay_t<OnCompleted>, detail::OnCompletedEmpty>;
private:
on_next_t onnext;
on_error_t onerror;
on_completed_t oncompleted;
public:
static_assert(detail::is_on_next_of<T, on_next_t>::value, "Function supplied for on_next must be a function with the signature void(T);");
static_assert(detail::is_on_error<on_error_t>::value, "Function supplied for on_error must be a function with the signature void(rxu::error_ptr);");
static_assert(detail::is_on_completed<on_completed_t>::value, "Function supplied for on_completed must be a function with the signature void();");
observer()
: onnext(on_next_t())
, onerror(on_error_t())
, oncompleted(on_completed_t())
{
}
explicit observer(on_next_t n, on_error_t e = on_error_t(), on_completed_t c = on_completed_t())
: onnext(std::move(n))
, onerror(std::move(e))
, oncompleted(std::move(c))
{
}
observer(const this_type& o)
: onnext(o.onnext)
, onerror(o.onerror)
, oncompleted(o.oncompleted)
{
}
observer(this_type&& o)
: onnext(std::move(o.onnext))
, onerror(std::move(o.onerror))
, oncompleted(std::move(o.oncompleted))
{
}
this_type& operator=(this_type o) {
onnext = std::move(o.onnext);
onerror = std::move(o.onerror);
oncompleted = std::move(o.oncompleted);
return *this;
}
void on_next(const T& t) const {
onnext(t);
}
void on_next(T&& t) const {
onnext(std::move(t));
}
void on_error(rxu::error_ptr e) const {
onerror(e);
}
void on_completed() const {
oncompleted();
}
observer<T> as_dynamic() const {
return observer<T>(*this);
}
};
namespace detail
{
template<class T>
struct virtual_observer : public std::enable_shared_from_this<virtual_observer<T>>
{
virtual ~virtual_observer() {}
virtual void on_next(const T&) const {};
virtual void on_next(T&&) const {};
virtual void on_error(rxu::error_ptr) const {};
virtual void on_completed() const {};
};
template<class T, class Observer>
struct specific_observer : public virtual_observer<T>
{
explicit specific_observer(Observer o)
: destination(std::move(o))
{
}
Observer destination;
void on_next(const T& t) const override {
destination.on_next(t);
}
void on_next(T&& t) const override{
destination.on_next(std::move(t));
}
void on_error(rxu::error_ptr e) const override{
destination.on_error(e);
}
void on_completed() const override {
destination.on_completed();
}
};
}
/*!
\brief consumes values from an observable using type-forgetting (shared allocated state with virtual methods)
\tparam T - the type of value in the stream
\ingroup group-core
*/
template<class T>
class observer<T, void, void, void, void> : public observer_base<T>
{
public:
using dynamic_observer_tag = tag_dynamic_observer;
private:
using this_type = observer<T, void, void, void, void>;
using base_type = observer_base<T>;
using virtual_observer = detail::virtual_observer<T>;
std::shared_ptr<virtual_observer> destination;
template<class Observer>
static auto make_destination(Observer o)
-> std::shared_ptr<virtual_observer> {
return std::make_shared<detail::specific_observer<T, Observer>>(std::move(o));
}
public:
observer()
{
}
observer(const this_type& o)
: destination(o.destination)
{
}
observer(this_type&& o)
: destination(std::move(o.destination))
{
}
template<class Observer>
explicit observer(Observer o)
: destination(make_destination(std::move(o)))
{
}
this_type& operator=(this_type o) {
destination = std::move(o.destination);
return *this;
}
// perfect forwarding delays the copy of the value.
template<class V>
void on_next(V&& v) const {
if (destination) {
destination->on_next(std::forward<V>(v));
}
}
void on_error(rxu::error_ptr e) const {
if (destination) {
destination->on_error(e);
}
}
void on_completed() const {
if (destination) {
destination->on_completed();
}
}
observer<T> as_dynamic() const {
return *this;
}
};
template<class T, class DefaultOnError = detail::OnErrorEmpty>
auto make_observer()
-> observer<T, detail::stateless_observer_tag, detail::OnNextEmpty<T>, DefaultOnError> {
return observer<T, detail::stateless_observer_tag, detail::OnNextEmpty<T>, DefaultOnError>();
}
template<class T, class DefaultOnError = detail::OnErrorEmpty, class U, class State, class OnNext, class OnError, class OnCompleted>
auto make_observer(observer<U, State, OnNext, OnError, OnCompleted> o)
-> observer<T, State, OnNext, OnError, OnCompleted> {
return observer<T, State, OnNext, OnError, OnCompleted>(std::move(o));
}
template<class T, class DefaultOnError = detail::OnErrorEmpty, class Observer>
auto make_observer(Observer ob)
-> typename std::enable_if<
!detail::is_on_next_of<T, Observer>::value &&
!detail::is_on_error<Observer>::value &&
is_observer<Observer>::value,
Observer>::type {
return std::move(ob);
}
template<class T, class DefaultOnError = detail::OnErrorEmpty, class Observer>
auto make_observer(Observer ob)
-> typename std::enable_if<
!detail::is_on_next_of<T, Observer>::value &&
!detail::is_on_error<Observer>::value &&
!is_observer<Observer>::value,
observer<T, Observer>>::type {
return observer<T, Observer>(std::move(ob));
}
template<class T, class DefaultOnError = detail::OnErrorEmpty, class OnNext>
auto make_observer(OnNext on)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value,
observer<T, detail::stateless_observer_tag, OnNext, DefaultOnError>>::type {
return observer<T, detail::stateless_observer_tag, OnNext, DefaultOnError>(
std::move(on));
}
template<class T, class DefaultOnError = detail::OnErrorEmpty, class OnError>
auto make_observer(OnError oe)
-> typename std::enable_if<
!detail::is_on_next_of<T, OnError>::value &&
detail::is_on_error<OnError>::value,
observer<T, detail::stateless_observer_tag, detail::OnNextEmpty<T>, OnError>>::type {
return observer<T, detail::stateless_observer_tag, detail::OnNextEmpty<T>, OnError>(
detail::OnNextEmpty<T>(), std::move(oe));
}
template<class T, class DefaultOnError = detail::OnErrorEmpty, class OnNext, class OnError>
auto make_observer(OnNext on, OnError oe)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_error<OnError>::value,
observer<T, detail::stateless_observer_tag, OnNext, OnError>>::type {
return observer<T, detail::stateless_observer_tag, OnNext, OnError>(
std::move(on), std::move(oe));
}
template<class T, class DefaultOnError = detail::OnErrorEmpty, class OnNext, class OnCompleted>
auto make_observer(OnNext on, OnCompleted oc)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_completed<OnCompleted>::value,
observer<T, detail::stateless_observer_tag, OnNext, DefaultOnError, OnCompleted>>::type {
return observer<T, detail::stateless_observer_tag, OnNext, DefaultOnError, OnCompleted>(
std::move(on), DefaultOnError(), std::move(oc));
}
template<class T, class DefaultOnError = detail::OnErrorEmpty, class OnNext, class OnError, class OnCompleted>
auto make_observer(OnNext on, OnError oe, OnCompleted oc)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_error<OnError>::value &&
detail::is_on_completed<OnCompleted>::value,
observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>>::type {
return observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>(
std::move(on), std::move(oe), std::move(oc));
}
template<class T, class State, class OnNext>
auto make_observer(State os, OnNext on)
-> typename std::enable_if<
!detail::is_on_next_of<T, State>::value &&
!detail::is_on_error<State>::value,
observer<T, State, OnNext>>::type {
return observer<T, State, OnNext>(
std::move(os), std::move(on));
}
template<class T, class State, class OnError>
auto make_observer(State os, OnError oe)
-> typename std::enable_if<
!detail::is_on_next_of<T, State>::value &&
!detail::is_on_error<State>::value &&
detail::is_on_error_for<State, OnError>::value,
observer<T, State, detail::OnNextEmpty<T>, OnError>>::type {
return observer<T, State, detail::OnNextEmpty<T>, OnError>(
std::move(os), detail::OnNextEmpty<T>(), std::move(oe));
}
template<class T, class State, class OnNext, class OnError>
auto make_observer(State os, OnNext on, OnError oe)
-> typename std::enable_if<
!detail::is_on_next_of<T, State>::value &&
!detail::is_on_error<State>::value &&
detail::is_on_error_for<State, OnError>::value,
observer<T, State, OnNext, OnError>>::type {
return observer<T, State, OnNext, OnError>(
std::move(os), std::move(on), std::move(oe));
}
template<class T, class State, class OnNext, class OnCompleted>
auto make_observer(State os, OnNext on, OnCompleted oc)
-> typename std::enable_if<
!detail::is_on_next_of<T, State>::value &&
!detail::is_on_error<State>::value,
observer<T, State, OnNext, void, OnCompleted>>::type {
return observer<T, State, OnNext, void, OnCompleted>(
std::move(os), std::move(on), std::move(oc));
}
template<class T, class State, class OnNext, class OnError, class OnCompleted>
auto make_observer(State os, OnNext on, OnError oe, OnCompleted oc)
-> typename std::enable_if<
!detail::is_on_next_of<T, State>::value &&
!detail::is_on_error<State>::value &&
detail::is_on_error_for<State, OnError>::value,
observer<T, State, OnNext, OnError, OnCompleted>>::type {
return observer<T, State, OnNext, OnError, OnCompleted>(
std::move(os), std::move(on), std::move(oe), std::move(oc));
}
template<class T, class Observer>
auto make_observer_dynamic(Observer o)
-> typename std::enable_if<
!detail::is_on_next_of<T, Observer>::value,
observer<T>>::type {
return observer<T>(std::move(o));
}
template<class T, class OnNext>
auto make_observer_dynamic(OnNext&& on)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value,
observer<T>>::type {
return observer<T>(
make_observer<T>(std::forward<OnNext>(on)));
}
template<class T, class OnNext, class OnError>
auto make_observer_dynamic(OnNext&& on, OnError&& oe)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_error<OnError>::value,
observer<T>>::type {
return observer<T>(
make_observer<T>(std::forward<OnNext>(on), std::forward<OnError>(oe)));
}
template<class T, class OnNext, class OnCompleted>
auto make_observer_dynamic(OnNext&& on, OnCompleted&& oc)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_completed<OnCompleted>::value,
observer<T>>::type {
return observer<T>(
make_observer<T>(std::forward<OnNext>(on), std::forward<OnCompleted>(oc)));
}
template<class T, class OnNext, class OnError, class OnCompleted>
auto make_observer_dynamic(OnNext&& on, OnError&& oe, OnCompleted&& oc)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_error<OnError>::value &&
detail::is_on_completed<OnCompleted>::value,
observer<T>>::type {
return observer<T>(
make_observer<T>(std::forward<OnNext>(on), std::forward<OnError>(oe), std::forward<OnCompleted>(oc)));
}
namespace detail {
template<class F>
struct maybe_from_result
{
using decl_result_type = decltype(std::declval<F>()());
using result_type = rxu::decay_t<decl_result_type>;
using type = rxu::maybe<result_type>;
};
}
template<class F, class OnError>
auto on_exception(const F& f, const OnError& c)
-> typename std::enable_if<detail::is_on_error<OnError>::value, typename detail::maybe_from_result<F>::type>::type {
RXCPP_TRY {
return f();
} RXCPP_CATCH(...) {
c(rxu::current_exception());
}
return {};
}
template<class F, class Subscriber>
auto on_exception(const F& f, const Subscriber& s)
-> typename std::enable_if<is_subscriber<Subscriber>::value, typename detail::maybe_from_result<F>::type>::type {
RXCPP_TRY {
return f();
} RXCPP_CATCH(...) {
s.on_error(rxu::current_exception());
}
return {};
}
template<class F, class OnError>
auto on_exception_no_return(const F& f, const OnError& c)
-> typename std::enable_if<detail::is_on_error<OnError>::value, void>::type {
RXCPP_TRY {
f();
} RXCPP_CATCH(...) {
c(rxu::current_exception());
};
}
template<class F, class Subscriber>
auto on_exception_no_return(const F& f, const Subscriber& s)
-> typename std::enable_if<is_subscriber<Subscriber>::value, void>::type {
RXCPP_TRY {
f();
} RXCPP_CATCH(...) {
s.on_error(rxu::current_exception());
}
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_SCHEDULER_HPP)
#define RXCPP_RX_SCHEDULER_HPP
namespace rxcpp {
namespace schedulers {
class worker_interface;
class scheduler_interface;
namespace detail {
class action_type;
using action_ptr = std::shared_ptr<action_type>;
using worker_interface_ptr = std::shared_ptr<worker_interface>;
using const_worker_interface_ptr = std::shared_ptr<const worker_interface>;
using worker_interface_weak_ptr = std::weak_ptr<worker_interface>;
using const_worker_interface_weak_ptr = std::weak_ptr<const worker_interface>;
using scheduler_interface_ptr = std::shared_ptr<scheduler_interface>;
using const_scheduler_interface_ptr = std::shared_ptr<const scheduler_interface>;
inline action_ptr shared_empty() {
static action_ptr shared_empty = std::make_shared<detail::action_type>();
return shared_empty;
}
}
// It is essential to keep virtual function calls out of an inner loop.
// To make tail-recursion work efficiently the recursion objects create
// a space on the stack inside the virtual function call in the actor that
// allows the callback and the scheduler to share stack space that records
// the request and the allowance without any virtual calls in the loop.
/// recursed is set on a schedulable by the action to allow the called
/// function to request to be rescheduled.
class recursed
{
bool& isrequested;
recursed operator=(const recursed&);
public:
explicit recursed(bool& r)
: isrequested(r)
{
}
/// request to be rescheduled
inline void operator()() const {
isrequested = true;
}
};
/// recurse is passed to the action by the scheduler.
/// the action uses recurse to coordinate the scheduler and the function.
class recurse
{
std::atomic<bool>& isallowed;
mutable bool isrequested;
recursed requestor;
recurse operator=(const recurse&);
public:
explicit recurse(std::atomic<bool>& a)
: isallowed(a)
, isrequested(true)
, requestor(isrequested)
{
}
/// does the scheduler allow tail-recursion now?
inline bool is_allowed() const {
return isallowed;
}
/// did the function request to be recursed?
inline bool is_requested() const {
return isrequested;
}
/// reset the function request. call before each call to the function.
inline void reset() const {
isrequested = false;
}
/// get the recursed to set into the schedulable for the function to use to request recursion
inline const recursed& get_recursed() const {
return requestor;
}
};
/// recursion is used by the scheduler to signal to each action whether tail recursion is allowed.
class recursion
{
mutable std::atomic<bool> isallowed;
recurse recursor;
recursion operator=(const recursion&);
public:
recursion()
: isallowed(true)
, recursor(isallowed)
{
}
explicit recursion(bool b)
: isallowed(b)
, recursor(isallowed)
{
}
/// set whether tail-recursion is allowed
inline void reset(bool b = true) const {
isallowed = b;
}
/// get the recurse to pass into each action being called
inline const recurse& get_recurse() const {
return recursor;
}
};
struct action_base
{
using action_tag = tag_action;
};
class schedulable;
/// action provides type-forgetting for a potentially recursive set of calls to a function that takes a schedulable
class action : public action_base
{
using this_type = action;
detail::action_ptr inner;
public:
action()
{
}
explicit action(detail::action_ptr i)
: inner(std::move(i))
{
}
/// return the empty action
inline static action empty() {
return action(detail::shared_empty());
}
/// call the function
inline void operator()(const schedulable& s, const recurse& r) const;
};
struct scheduler_base
{
using clock_type = std::chrono::steady_clock;
using scheduler_tag = tag_scheduler;
};
struct worker_base : public subscription_base
{
using worker_tag = tag_worker;
};
class worker_interface
: public std::enable_shared_from_this<worker_interface>
{
using this_type = worker_interface;
public:
using clock_type = scheduler_base::clock_type;
virtual ~worker_interface() {}
virtual clock_type::time_point now() const = 0;
virtual void schedule(const schedulable& scbl) const = 0;
virtual void schedule(clock_type::time_point when, const schedulable& scbl) const = 0;
};
namespace detail {
template<class F>
struct is_action_function
{
struct not_void {};
template<class CF>
static auto check(int) -> decltype(std::declval<CF>()(std::declval<schedulable>()));
template<class CF>
static not_void check(...);
static const bool value = std::is_same_v<decltype(check<rxu::decay_t<F>>(0)), void>;
};
}
class weak_worker;
/// a worker ensures that all scheduled actions on the same instance are executed in-order with no overlap
/// a worker ensures that all scheduled actions are unsubscribed when it is unsubscribed
/// some inner implementations will impose additional constraints on the execution of items.
class worker : public worker_base
{
using this_type = worker;
detail::worker_interface_ptr inner;
composite_subscription lifetime;
friend bool operator==(const worker&, const worker&);
friend class weak_worker;
public:
using clock_type = scheduler_base::clock_type;
using weak_subscription = composite_subscription::weak_subscription;
worker()
{
}
worker(composite_subscription cs, detail::const_worker_interface_ptr i)
: inner(std::const_pointer_cast<worker_interface>(i))
, lifetime(std::move(cs))
{
}
worker(composite_subscription cs, worker o)
: inner(o.inner)
, lifetime(std::move(cs))
{
}
inline const composite_subscription& get_subscription() const {
return lifetime;
}
inline composite_subscription& get_subscription() {
return lifetime;
}
// composite_subscription
//
inline bool is_subscribed() const {
return lifetime.is_subscribed();
}
inline weak_subscription add(subscription s) const {
return lifetime.add(std::move(s));
}
inline void remove(weak_subscription w) const {
return lifetime.remove(std::move(w));
}
inline void clear() const {
return lifetime.clear();
}
inline void unsubscribe() const {
return lifetime.unsubscribe();
}
// worker_interface
//
/// return the current time for this worker
inline clock_type::time_point now() const {
return inner->now();
}
/// insert the supplied schedulable to be run as soon as possible
inline void schedule(const schedulable& scbl) const {
// force rebinding scbl to this worker
schedule_rebind(scbl);
}
/// insert the supplied schedulable to be run at the time specified
inline void schedule(clock_type::time_point when, const schedulable& scbl) const {
// force rebinding scbl to this worker
schedule_rebind(when, scbl);
}
// helpers
//
/// insert the supplied schedulable to be run at now() + the delay specified
inline void schedule(clock_type::duration when, const schedulable& scbl) const {
// force rebinding scbl to this worker
schedule_rebind(now() + when, scbl);
}
/// insert the supplied schedulable to be run at the initial time specified and then again at initial + (N * period)
/// this will continue until the worker or schedulable is unsubscribed.
inline void schedule_periodically(clock_type::time_point initial, clock_type::duration period, const schedulable& scbl) const {
// force rebinding scbl to this worker
schedule_periodically_rebind(initial, period, scbl);
}
/// insert the supplied schedulable to be run at now() + the initial delay specified and then again at now() + initial + (N * period)
/// this will continue until the worker or schedulable is unsubscribed.
inline void schedule_periodically(clock_type::duration initial, clock_type::duration period, const schedulable& scbl) const {
// force rebinding scbl to this worker
schedule_periodically_rebind(now() + initial, period, scbl);
}
/// use the supplied arguments to make a schedulable and then insert it to be run
template<class Arg0, class... ArgN>
auto schedule(Arg0&& a0, ArgN&&... an) const
-> typename std::enable_if<
(detail::is_action_function<Arg0>::value ||
is_subscription<Arg0>::value) &&
!is_schedulable<Arg0>::value>::type;
template<class... ArgN>
/// use the supplied arguments to make a schedulable and then insert it to be run
void schedule_rebind(const schedulable& scbl, ArgN&&... an) const;
/// use the supplied arguments to make a schedulable and then insert it to be run
template<class Arg0, class... ArgN>
auto schedule(clock_type::time_point when, Arg0&& a0, ArgN&&... an) const
-> typename std::enable_if<
(detail::is_action_function<Arg0>::value ||
is_subscription<Arg0>::value) &&
!is_schedulable<Arg0>::value>::type;
/// use the supplied arguments to make a schedulable and then insert it to be run
template<class... ArgN>
void schedule_rebind(clock_type::time_point when, const schedulable& scbl, ArgN&&... an) const;
/// use the supplied arguments to make a schedulable and then insert it to be run
template<class Arg0, class... ArgN>
auto schedule_periodically(clock_type::time_point initial, clock_type::duration period, Arg0&& a0, ArgN&&... an) const
-> typename std::enable_if<
(detail::is_action_function<Arg0>::value ||
is_subscription<Arg0>::value) &&
!is_schedulable<Arg0>::value>::type;
/// use the supplied arguments to make a schedulable and then insert it to be run
template<class... ArgN>
void schedule_periodically_rebind(clock_type::time_point initial, clock_type::duration period, const schedulable& scbl, ArgN&&... an) const;
};
inline bool operator==(const worker& lhs, const worker& rhs) {
return lhs.inner == rhs.inner && lhs.lifetime == rhs.lifetime;
}
inline bool operator!=(const worker& lhs, const worker& rhs) {
return !(lhs == rhs);
}
class weak_worker
{
detail::worker_interface_weak_ptr inner;
composite_subscription lifetime;
public:
weak_worker()
{
}
explicit weak_worker(worker& owner)
: inner(owner.inner)
, lifetime(owner.lifetime)
{
}
worker lock() const {
return worker(lifetime, inner.lock());
}
};
class scheduler_interface
: public std::enable_shared_from_this<scheduler_interface>
{
using this_type = scheduler_interface;
public:
using clock_type = scheduler_base::clock_type;
virtual ~scheduler_interface() {}
virtual clock_type::time_point now() const = 0;
virtual worker create_worker(composite_subscription cs) const = 0;
};
struct schedulable_base :
// public subscription_base, <- already in worker base
public worker_base,
public action_base
{
using schedulable_tag = tag_schedulable;
};
/*!
\brief allows functions to be called at specified times and possibly in other contexts.
\ingroup group-core
*/
class scheduler : public scheduler_base
{
using this_type = scheduler;
detail::scheduler_interface_ptr inner;
friend bool operator==(const scheduler&, const scheduler&);
public:
using clock_type = scheduler_base::clock_type;
scheduler()
{
}
explicit scheduler(detail::scheduler_interface_ptr i)
: inner(std::move(i))
{
}
explicit scheduler(detail::const_scheduler_interface_ptr i)
: inner(std::const_pointer_cast<scheduler_interface>(i))
{
}
/// return the current time for this scheduler
inline clock_type::time_point now() const {
return inner->now();
}
/// create a worker with a lifetime.
/// when the worker is unsubscribed all scheduled items will be unsubscribed.
/// items scheduled to a worker will be run one at a time.
/// scheduling order is preserved: when more than one item is scheduled for
/// time T then at time T they will be run in the order that they were scheduled.
inline worker create_worker(composite_subscription cs = composite_subscription()) const {
return inner->create_worker(cs);
}
};
template<class Scheduler, class... ArgN>
inline scheduler make_scheduler(ArgN&&... an) {
return scheduler(std::static_pointer_cast<scheduler_interface>(std::make_shared<Scheduler>(std::forward<ArgN>(an)...)));
}
inline scheduler make_scheduler(std::shared_ptr<scheduler_interface> si) {
return scheduler(si);
}
class schedulable : public schedulable_base
{
using this_type = schedulable;
composite_subscription lifetime;
weak_worker controller;
action activity;
bool scoped;
composite_subscription::weak_subscription action_scope;
struct detacher
{
~detacher()
{
if (that) {
that->unsubscribe();
}
}
detacher(const this_type* that)
: that(that)
{
}
const this_type* that;
};
class recursed_scope_type
{
mutable const recursed* requestor;
class exit_recursed_scope_type
{
const recursed_scope_type* that;
public:
~exit_recursed_scope_type()
{
if (that != nullptr) {
that->requestor = nullptr;
}
}
exit_recursed_scope_type(const recursed_scope_type* that)
: that(that)
{
}
exit_recursed_scope_type(exit_recursed_scope_type && other) RXCPP_NOEXCEPT
: that(other.that)
{
other.that = nullptr;
}
};
public:
recursed_scope_type()
: requestor(nullptr)
{
}
recursed_scope_type(const recursed_scope_type&)
: requestor(nullptr)
{
// does not aquire recursion scope
}
recursed_scope_type& operator=(const recursed_scope_type& )
{
// no change in recursion scope
return *this;
}
exit_recursed_scope_type reset(const recurse& r) const {
requestor = std::addressof(r.get_recursed());
return exit_recursed_scope_type(this);
}
bool is_recursed() const {
return !!requestor;
}
void operator()() const {
(*requestor)();
}
};
recursed_scope_type recursed_scope;
public:
using weak_subscription = composite_subscription::weak_subscription;
using clock_type = scheduler_base::clock_type;
~schedulable()
{
if (scoped) {
controller.lock().remove(action_scope);
}
}
schedulable()
: scoped(false)
{
}
/// action and worker share lifetime
schedulable(worker q, action a)
: lifetime(q.get_subscription())
, controller(q)
, activity(std::move(a))
, scoped(false)
{
}
/// action and worker have independent lifetimes
schedulable(composite_subscription cs, worker q, action a)
: lifetime(std::move(cs))
, controller(q)
, activity(std::move(a))
, scoped(true)
, action_scope(controller.lock().add(lifetime))
{
}
/// inherit lifetimes
schedulable(schedulable scbl, worker q, action a)
: lifetime(scbl.get_subscription())
, controller(q)
, activity(std::move(a))
, scoped(scbl.scoped)
, action_scope(scbl.scoped ? controller.lock().add(lifetime) : weak_subscription())
{
}
inline const composite_subscription& get_subscription() const {
return lifetime;
}
inline composite_subscription& get_subscription() {
return lifetime;
}
inline const worker get_worker() const {
return controller.lock();
}
inline worker get_worker() {
return controller.lock();
}
inline const action& get_action() const {
return activity;
}
inline action& get_action() {
return activity;
}
inline static schedulable empty(worker sc) {
return schedulable(composite_subscription::empty(), sc, action::empty());
}
inline auto set_recursed(const recurse& r) const
-> decltype(recursed_scope.reset(r)) {
return recursed_scope.reset(r);
}
// recursed
//
bool is_recursed() const {
return recursed_scope.is_recursed();
}
/// requests tail-recursion of the same action
/// this will exit the process if called when
/// is_recursed() is false.
/// Note: to improve perf it is not required
/// to call is_recursed() before calling this
/// operator. Context is sufficient. The schedulable
/// passed to the action by the scheduler will return
/// true from is_recursed()
inline void operator()() const {
recursed_scope();
}
// composite_subscription
//
inline bool is_subscribed() const {
return lifetime.is_subscribed();
}
inline weak_subscription add(subscription s) const {
return lifetime.add(std::move(s));
}
template<class F>
auto add(F f) const
-> typename std::enable_if<rxcpp::detail::is_unsubscribe_function<F>::value, weak_subscription>::type {
return lifetime.add(make_subscription(std::move(f)));
}
inline void remove(weak_subscription w) const {
return lifetime.remove(std::move(w));
}
inline void clear() const {
return lifetime.clear();
}
inline void unsubscribe() const {
return lifetime.unsubscribe();
}
// scheduler
//
inline clock_type::time_point now() const {
return controller.lock().now();
}
/// put this on the queue of the stored scheduler to run asap
inline void schedule() const {
if (is_subscribed()) {
get_worker().schedule(*this);
}
}
/// put this on the queue of the stored scheduler to run at the specified time
inline void schedule(clock_type::time_point when) const {
if (is_subscribed()) {
get_worker().schedule(when, *this);
}
}
/// put this on the queue of the stored scheduler to run after a delay from now
inline void schedule(clock_type::duration when) const {
if (is_subscribed()) {
get_worker().schedule(when, *this);
}
}
// action
//
/// invokes the action
inline void operator()(const recurse& r) const {
if (!is_subscribed()) {
return;
}
detacher protect(this);
activity(*this, r);
protect.that = nullptr;
}
};
struct current_thread;
namespace detail {
class action_type
: public std::enable_shared_from_this<action_type>
{
using this_type = action_type;
public:
using function_type = std::function<void(const schedulable &, const recurse &)>;
private:
function_type f;
public:
action_type()
{
}
action_type(function_type f)
: f(std::move(f))
{
}
inline void operator()(const schedulable& s, const recurse& r) {
if (!f) {
std::terminate();
}
f(s, r);
}
};
class action_tailrecurser
: public std::enable_shared_from_this<action_type>
{
using this_type = action_type;
public:
using function_type = std::function<void(const schedulable &)>;
private:
function_type f;
public:
action_tailrecurser()
{
}
action_tailrecurser(function_type f)
: f(std::move(f))
{
}
inline void operator()(const schedulable& s, const recurse& r) {
if (!f) {
std::terminate();
}
trace_activity().action_enter(s);
auto scope = s.set_recursed(r);
while (s.is_subscribed()) {
r.reset();
f(s);
if (!r.is_allowed() || !r.is_requested()) {
if (r.is_requested()) {
s.schedule();
}
break;
}
trace_activity().action_recurse(s);
}
trace_activity().action_return(s);
}
};
}
inline void action::operator()(const schedulable& s, const recurse& r) const {
(*inner)(s, r);
}
inline action make_action_empty() {
return action::empty();
}
template<class F>
inline action make_action(F&& f) {
static_assert(detail::is_action_function<F>::value, "action function must be void(schedulable)");
auto fn = std::forward<F>(f);
return action(std::make_shared<detail::action_type>(detail::action_tailrecurser(fn)));
}
// copy
inline auto make_schedulable(
const schedulable& scbl)
-> schedulable {
return schedulable(scbl);
}
// move
inline auto make_schedulable(
schedulable&& scbl)
-> schedulable {
return schedulable(std::move(scbl));
}
inline schedulable make_schedulable(worker sc, action a) {
return schedulable(sc, a);
}
inline schedulable make_schedulable(worker sc, composite_subscription cs, action a) {
return schedulable(cs, sc, a);
}
template<class F>
auto make_schedulable(worker sc, F&& f)
-> typename std::enable_if<detail::is_action_function<F>::value, schedulable>::type {
return schedulable(sc, make_action(std::forward<F>(f)));
}
template<class F>
auto make_schedulable(worker sc, composite_subscription cs, F&& f)
-> typename std::enable_if<detail::is_action_function<F>::value, schedulable>::type {
return schedulable(cs, sc, make_action(std::forward<F>(f)));
}
template<class F>
auto make_schedulable(schedulable scbl, composite_subscription cs, F&& f)
-> typename std::enable_if<detail::is_action_function<F>::value, schedulable>::type {
return schedulable(cs, scbl.get_worker(), make_action(std::forward<F>(f)));
}
template<class F>
auto make_schedulable(schedulable scbl, worker sc, F&& f)
-> typename std::enable_if<detail::is_action_function<F>::value, schedulable>::type {
return schedulable(scbl, sc, make_action(std::forward<F>(f)));
}
template<class F>
auto make_schedulable(schedulable scbl, F&& f)
-> typename std::enable_if<detail::is_action_function<F>::value, schedulable>::type {
return schedulable(scbl, scbl.get_worker(), make_action(std::forward<F>(f)));
}
inline auto make_schedulable(schedulable scbl, composite_subscription cs)
-> schedulable {
return schedulable(cs, scbl.get_worker(), scbl.get_action());
}
inline auto make_schedulable(schedulable scbl, worker sc, composite_subscription cs)
-> schedulable {
return schedulable(cs, sc, scbl.get_action());
}
inline auto make_schedulable(schedulable scbl, worker sc)
-> schedulable {
return schedulable(scbl, sc, scbl.get_action());
}
template<class Arg0, class... ArgN>
auto worker::schedule(Arg0&& a0, ArgN&&... an) const
-> typename std::enable_if<
(detail::is_action_function<Arg0>::value ||
is_subscription<Arg0>::value) &&
!is_schedulable<Arg0>::value>::type {
auto scbl = make_schedulable(*this, std::forward<Arg0>(a0), std::forward<ArgN>(an)...);
trace_activity().schedule_enter(*inner.get(), scbl);
inner->schedule(std::move(scbl));
trace_activity().schedule_return(*inner.get());
}
template<class... ArgN>
void worker::schedule_rebind(const schedulable& scbl, ArgN&&... an) const {
auto rescbl = make_schedulable(scbl, *this, std::forward<ArgN>(an)...);
trace_activity().schedule_enter(*inner.get(), rescbl);
inner->schedule(std::move(rescbl));
trace_activity().schedule_return(*inner.get());
}
template<class Arg0, class... ArgN>
auto worker::schedule(clock_type::time_point when, Arg0&& a0, ArgN&&... an) const
-> typename std::enable_if<
(detail::is_action_function<Arg0>::value ||
is_subscription<Arg0>::value) &&
!is_schedulable<Arg0>::value>::type {
auto scbl = make_schedulable(*this, std::forward<Arg0>(a0), std::forward<ArgN>(an)...);
trace_activity().schedule_when_enter(*inner.get(), when, scbl);
inner->schedule(when, std::move(scbl));
trace_activity().schedule_when_return(*inner.get());
}
template<class... ArgN>
void worker::schedule_rebind(clock_type::time_point when, const schedulable& scbl, ArgN&&... an) const {
auto rescbl = make_schedulable(scbl, *this, std::forward<ArgN>(an)...);
trace_activity().schedule_when_enter(*inner.get(), when, rescbl);
inner->schedule(when, std::move(rescbl));
trace_activity().schedule_when_return(*inner.get());
}
template<class Arg0, class... ArgN>
auto worker::schedule_periodically(clock_type::time_point initial, clock_type::duration period, Arg0&& a0, ArgN&&... an) const
-> typename std::enable_if<
(detail::is_action_function<Arg0>::value ||
is_subscription<Arg0>::value) &&
!is_schedulable<Arg0>::value>::type {
schedule_periodically_rebind(initial, period, make_schedulable(*this, std::forward<Arg0>(a0), std::forward<ArgN>(an)...));
}
template<class... ArgN>
void worker::schedule_periodically_rebind(clock_type::time_point initial, clock_type::duration period, const schedulable& scbl, ArgN&&... an) const {
auto keepAlive = *this;
auto target = std::make_shared<clock_type::time_point>(initial);
auto activity = make_schedulable(scbl, keepAlive, std::forward<ArgN>(an)...);
auto periodic = make_schedulable(
activity,
[keepAlive, target, period, activity](schedulable self) {
// any recursion requests will be pushed to the scheduler queue
recursion r(false);
// call action
activity(r.get_recurse());
// schedule next occurance (if the action took longer than 'period' target will be in the past)
*target += period;
self.schedule(*target);
});
trace_activity().schedule_when_enter(*inner.get(), *target, periodic);
inner->schedule(*target, periodic);
trace_activity().schedule_when_return(*inner.get());
}
namespace detail {
template<class TimePoint>
struct time_schedulable
{
using time_point_type = TimePoint;
time_schedulable(TimePoint when, schedulable a)
: when(when)
, what(std::move(a))
{
}
TimePoint when;
schedulable what;
};
// Sorts time_schedulable items in priority order sorted
// on value of time_schedulable.when. Items with equal
// values for when are sorted in fifo order.
template<class TimePoint>
class schedulable_queue {
public:
using item_type = time_schedulable<TimePoint>;
using elem_type = std::pair<item_type, int64_t>;
using container_type = std::vector<elem_type>;
using const_reference = const item_type &;
private:
struct compare_elem
{
bool operator()(const elem_type& lhs, const elem_type& rhs) const {
if (lhs.first.when == rhs.first.when) {
return lhs.second > rhs.second;
}
else {
return lhs.first.when > rhs.first.when;
}
}
};
using queue_type = std::priority_queue<elem_type, container_type, compare_elem>;
queue_type q;
int64_t ordinal;
public:
schedulable_queue()
: ordinal(0)
{
}
const_reference top() const {
return q.top().first;
}
void pop() {
q.pop();
}
bool empty() const {
return q.empty();
}
void push(const item_type& value) {
q.push(elem_type(value, ordinal++));
}
void push(item_type&& value) {
q.push(elem_type(std::move(value), ordinal++));
}
};
}
}
namespace rxsc=schedulers;
}
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_SCHEDULER_CURRENT_THREAD_HPP)
#define RXCPP_RX_SCHEDULER_CURRENT_THREAD_HPP
namespace rxcpp {
namespace schedulers {
namespace detail {
struct action_queue
{
using this_type = action_queue;
using clock = scheduler_base::clock_type;
using item_type = time_schedulable<clock::time_point>;
private:
using queue_item_time = schedulable_queue<item_type::time_point_type>;
public:
struct current_thread_queue_type {
std::shared_ptr<worker_interface> w;
recursion r;
queue_item_time q;
};
private:
#if defined(RXCPP_THREAD_LOCAL)
static current_thread_queue_type*& current_thread_queue() {
static RXCPP_THREAD_LOCAL current_thread_queue_type* q;
return q;
}
#else
static rxu::thread_local_storage<current_thread_queue_type>& current_thread_queue() {
static rxu::thread_local_storage<current_thread_queue_type> q;
return q;
}
#endif
public:
static bool owned() {
return !!current_thread_queue();
}
static const std::shared_ptr<worker_interface>& get_worker_interface() {
return current_thread_queue()->w;
}
static recursion& get_recursion() {
return current_thread_queue()->r;
}
static bool empty() {
if (!current_thread_queue()) {
std::terminate();
}
return current_thread_queue()->q.empty();
}
static queue_item_time::const_reference top() {
if (!current_thread_queue()) {
std::terminate();
}
return current_thread_queue()->q.top();
}
static void pop() {
auto& state = current_thread_queue();
if (!state) {
std::terminate();
}
state->q.pop();
if (state->q.empty()) {
// allow recursion
state->r.reset(true);
}
}
static void push(item_type item) {
auto& state = current_thread_queue();
if (!state) {
std::terminate();
}
if (!item.what.is_subscribed()) {
return;
}
state->q.push(std::move(item));
// disallow recursion
state->r.reset(false);
}
static std::shared_ptr<worker_interface> ensure(std::shared_ptr<worker_interface> w) {
if (!!current_thread_queue()) {
std::terminate();
}
// create and publish new queue
current_thread_queue() = new current_thread_queue_type();
current_thread_queue()->w = w;
return w;
}
static std::unique_ptr<current_thread_queue_type> create(std::shared_ptr<worker_interface> w) {
std::unique_ptr<current_thread_queue_type> result(new current_thread_queue_type());
result->w = std::move(w);
return result;
}
static void set(current_thread_queue_type* q) {
if (!!current_thread_queue()) {
std::terminate();
}
// publish new queue
current_thread_queue() = q;
}
static void destroy(current_thread_queue_type* q) {
delete q;
}
static void destroy() {
if (!current_thread_queue()) {
std::terminate();
}
#if defined(RXCPP_THREAD_LOCAL)
destroy(current_thread_queue());
#else
destroy(current_thread_queue().get());
#endif
current_thread_queue() = nullptr;
}
};
}
struct current_thread : public scheduler_interface
{
private:
using this_type = current_thread;
current_thread(const this_type&);
using queue_type = detail::action_queue;
struct derecurser : public worker_interface
{
private:
using this_type = current_thread;
derecurser(const this_type&);
public:
derecurser()
{
}
virtual ~derecurser()
{
}
virtual clock_type::time_point now() const {
return clock_type::now();
}
virtual void schedule(const schedulable& scbl) const {
queue_type::push(queue_type::item_type(now(), scbl));
}
virtual void schedule(clock_type::time_point when, const schedulable& scbl) const {
queue_type::push(queue_type::item_type(when, scbl));
}
};
struct current_worker : public worker_interface
{
private:
using this_type = current_thread;
current_worker(const this_type&);
public:
current_worker()
{
}
virtual ~current_worker()
{
}
virtual clock_type::time_point now() const {
return clock_type::now();
}
virtual void schedule(const schedulable& scbl) const {
schedule(now(), scbl);
}
virtual void schedule(clock_type::time_point when, const schedulable& scbl) const {
if (!scbl.is_subscribed()) {
return;
}
{
// check ownership
if (queue_type::owned()) {
// already has an owner - delegate
queue_type::get_worker_interface()->schedule(when, scbl);
return;
}
// take ownership
queue_type::ensure(std::make_shared<derecurser>());
}
// release ownership
RXCPP_UNWIND_AUTO([]{
queue_type::destroy();
});
const auto& recursor = queue_type::get_recursion().get_recurse();
std::this_thread::sleep_until(when);
if (scbl.is_subscribed()) {
scbl(recursor);
}
if (queue_type::empty()) {
return;
}
// loop until queue is empty
for (
auto next = queue_type::top().when;
(std::this_thread::sleep_until(next), true);
next = queue_type::top().when
) {
auto what = queue_type::top().what;
queue_type::pop();
if (what.is_subscribed()) {
what(recursor);
}
if (queue_type::empty()) {
break;
}
}
}
};
std::shared_ptr<current_worker> wi;
public:
current_thread()
: wi(std::make_shared<current_worker>())
{
}
virtual ~current_thread()
{
}
static bool is_schedule_required() { return !queue_type::owned(); }
inline bool is_tail_recursion_allowed() const {
return queue_type::empty();
}
virtual clock_type::time_point now() const {
return clock_type::now();
}
virtual worker create_worker(composite_subscription cs) const {
return worker(std::move(cs), wi);
}
};
inline const scheduler& make_current_thread() {
static scheduler instance = make_scheduler<current_thread>();
return instance;
}
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_SCHEDULER_RUN_LOOP_HPP)
#define RXCPP_RX_SCHEDULER_RUN_LOOP_HPP
namespace rxcpp {
namespace schedulers {
namespace detail {
struct run_loop_state : public std::enable_shared_from_this<run_loop_state>
{
using clock_type = scheduler::clock_type;
using queue_item_time = detail::schedulable_queue<clock_type::time_point>;
using item_type = queue_item_time::item_type;
using const_reference_item_type = queue_item_time::const_reference;
virtual ~run_loop_state()
{
}
run_loop_state()
{
}
composite_subscription lifetime;
mutable std::mutex lock;
mutable queue_item_time q;
recursion r;
std::function<void(clock_type::time_point)> notify_earlier_wakeup;
};
}
struct run_loop_scheduler : public scheduler_interface
{
private:
using this_type = run_loop_scheduler;
run_loop_scheduler(const this_type&);
struct run_loop_worker : public worker_interface
{
private:
using this_type = run_loop_worker;
run_loop_worker(const this_type&);
public:
std::weak_ptr<detail::run_loop_state> state;
virtual ~run_loop_worker()
{
}
explicit run_loop_worker(std::weak_ptr<detail::run_loop_state> ws)
: state(ws)
{
}
virtual clock_type::time_point now() const {
return clock_type::now();
}
virtual void schedule(const schedulable& scbl) const {
schedule(now(), scbl);
}
virtual void schedule(clock_type::time_point when, const schedulable& scbl) const {
if (scbl.is_subscribed()) {
auto st = state.lock();
std::unique_lock<std::mutex> guard(st->lock);
const bool need_earlier_wakeup_notification = st->notify_earlier_wakeup &&
(st->q.empty() || when < st->q.top().when);
st->q.push(detail::run_loop_state::item_type(when, scbl));
st->r.reset(false);
if (need_earlier_wakeup_notification) st->notify_earlier_wakeup(when);
guard.unlock(); // So we can't get attempt to recursively lock the state
}
}
};
std::weak_ptr<detail::run_loop_state> state;
public:
explicit run_loop_scheduler(std::weak_ptr<detail::run_loop_state> ws)
: state(ws)
{
}
virtual ~run_loop_scheduler()
{
}
virtual clock_type::time_point now() const {
return clock_type::now();
}
virtual worker create_worker(composite_subscription cs) const {
auto lifetime = state.lock()->lifetime;
auto token = lifetime.add(cs);
cs.add([=](){lifetime.remove(token);});
return worker(cs, create_worker_interface());
}
std::shared_ptr<worker_interface> create_worker_interface() const {
return std::make_shared<run_loop_worker>(state);
}
};
class run_loop
{
private:
using this_type = run_loop;
// don't allow this instance to copy/move since it owns current_thread queue
// for the thread it is constructed on.
run_loop(const this_type&);
run_loop(this_type&&);
using queue_type = detail::action_queue;
using item_type = detail::run_loop_state::item_type;
using const_reference_item_type = detail::run_loop_state::const_reference_item_type;
std::shared_ptr<detail::run_loop_state> state;
std::shared_ptr<run_loop_scheduler> sc;
public:
using clock_type = scheduler::clock_type;
run_loop()
: state(std::make_shared<detail::run_loop_state>())
, sc(std::make_shared<run_loop_scheduler>(state))
{
// take ownership so that the current_thread scheduler
// uses the same queue on this thread
queue_type::ensure(sc->create_worker_interface());
}
~run_loop()
{
state->lifetime.unsubscribe();
std::unique_lock<std::mutex> guard(state->lock);
// release ownership
queue_type::destroy();
auto expired = std::move(state->q);
if (!state->q.empty()) std::terminate();
}
clock_type::time_point now() const {
return clock_type::now();
}
composite_subscription get_subscription() const {
return state->lifetime;
}
bool empty() const {
std::unique_lock<std::mutex> guard(state->lock);
return state->q.empty();
}
const_reference_item_type peek() const {
std::unique_lock<std::mutex> guard(state->lock);
return state->q.top();
}
void dispatch() const {
std::unique_lock<std::mutex> guard(state->lock);
if (state->q.empty()) {
return;
}
auto& peek = state->q.top();
if (!peek.what.is_subscribed()) {
state->q.pop();
return;
}
if (clock_type::now() < peek.when) {
return;
}
auto what = peek.what;
state->q.pop();
state->r.reset(state->q.empty());
guard.unlock();
what(state->r.get_recurse());
}
scheduler get_scheduler() const {
return make_scheduler(sc);
}
void set_notify_earlier_wakeup(std::function<void(clock_type::time_point)> const& f) {
std::unique_lock<std::mutex> guard(state->lock);
state->notify_earlier_wakeup = f;
}
};
inline scheduler make_run_loop(const run_loop& r) {
return r.get_scheduler();
}
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_SCHEDULER_NEW_THREAD_HPP)
#define RXCPP_RX_SCHEDULER_NEW_THREAD_HPP
namespace rxcpp {
namespace schedulers {
using thread_factory = std::function<std::thread(std::function<void()>)>;
struct new_thread : public scheduler_interface
{
private:
using this_type = new_thread;
new_thread(const this_type&);
struct new_worker : public worker_interface
{
private:
using this_type = new_worker;
using queue_type = detail::action_queue;
new_worker(const this_type&);
struct new_worker_state : public std::enable_shared_from_this<new_worker_state>
{
using queue_item_time = detail::schedulable_queue<typename clock_type::time_point>;
using item_type = queue_item_time::item_type;
virtual ~new_worker_state()
{
}
explicit new_worker_state(composite_subscription cs)
: lifetime(cs)
{
}
composite_subscription lifetime;
mutable std::mutex lock;
mutable std::condition_variable wake;
mutable queue_item_time q;
std::thread worker;
recursion r;
};
std::shared_ptr<new_worker_state> state;
public:
virtual ~new_worker()
{
}
explicit new_worker(std::shared_ptr<new_worker_state> ws)
: state(ws)
{
}
new_worker(composite_subscription cs, thread_factory& tf)
: state(std::make_shared<new_worker_state>(cs))
{
auto keepAlive = state;
state->lifetime.add([keepAlive](){
std::unique_lock<std::mutex> guard(keepAlive->lock);
auto expired = std::move(keepAlive->q);
keepAlive->q = new_worker_state::queue_item_time{};
if (!keepAlive->q.empty()) std::terminate();
keepAlive->wake.notify_one();
if (keepAlive->worker.joinable() && keepAlive->worker.get_id() != std::this_thread::get_id()) {
guard.unlock();
keepAlive->worker.join();
}
else {
keepAlive->worker.detach();
}
});
state->worker = tf([keepAlive](){
// take ownership
queue_type::ensure(std::make_shared<new_worker>(keepAlive));
// release ownership
RXCPP_UNWIND_AUTO([]{
queue_type::destroy();
});
for(;;) {
std::unique_lock<std::mutex> guard(keepAlive->lock);
if (keepAlive->q.empty()) {
keepAlive->wake.wait(guard, [keepAlive](){
return !keepAlive->lifetime.is_subscribed() || !keepAlive->q.empty();
});
}
if (!keepAlive->lifetime.is_subscribed()) {
break;
}
auto& peek = keepAlive->q.top();
if (!peek.what.is_subscribed()) {
keepAlive->q.pop();
continue;
}
auto when = peek.when;
if (clock_type::now() < when) {
keepAlive->wake.wait_until(guard, when);
continue;
}
auto what = peek.what;
keepAlive->q.pop();
keepAlive->r.reset(keepAlive->q.empty());
guard.unlock();
what(keepAlive->r.get_recurse());
}
});
}
virtual clock_type::time_point now() const {
return clock_type::now();
}
virtual void schedule(const schedulable& scbl) const {
schedule(now(), scbl);
}
virtual void schedule(clock_type::time_point when, const schedulable& scbl) const {
if (scbl.is_subscribed()) {
std::unique_lock<std::mutex> guard(state->lock);
state->q.push(new_worker_state::item_type(when, scbl));
state->r.reset(false);
}
state->wake.notify_one();
}
};
mutable thread_factory factory;
public:
new_thread()
: factory([](std::function<void()> start){
return std::thread(std::move(start));
})
{
}
explicit new_thread(thread_factory tf)
: factory(tf)
{
}
virtual ~new_thread()
{
}
virtual clock_type::time_point now() const {
return clock_type::now();
}
virtual worker create_worker(composite_subscription cs) const {
return worker(cs, std::make_shared<new_worker>(cs, factory));
}
};
inline scheduler make_new_thread() {
static scheduler instance = make_scheduler<new_thread>();
return instance;
}
inline scheduler make_new_thread(thread_factory tf) {
return make_scheduler<new_thread>(tf);
}
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_SCHEDULER_EVENT_LOOP_HPP)
#define RXCPP_RX_SCHEDULER_EVENT_LOOP_HPP
namespace rxcpp {
namespace schedulers {
struct event_loop : public scheduler_interface
{
private:
using this_type = event_loop;
event_loop(const this_type&);
struct loop_worker : public worker_interface
{
private:
using this_type = loop_worker;
loop_worker(const this_type&);
using queue_item_time = detail::schedulable_queue<typename clock_type::time_point>;
using item_type = queue_item_time::item_type;
composite_subscription lifetime;
worker controller;
std::shared_ptr<const scheduler_interface> alive;
public:
virtual ~loop_worker()
{
}
loop_worker(composite_subscription cs, worker w, std::shared_ptr<const scheduler_interface> alive)
: lifetime(cs)
, controller(w)
, alive(alive)
{
auto token = controller.add(cs);
cs.add([token, w](){
w.remove(token);
});
}
virtual clock_type::time_point now() const {
return clock_type::now();
}
virtual void schedule(const schedulable& scbl) const {
controller.schedule(lifetime, scbl.get_action());
}
virtual void schedule(clock_type::time_point when, const schedulable& scbl) const {
controller.schedule(when, lifetime, scbl.get_action());
}
};
mutable thread_factory factory;
scheduler newthread;
mutable std::atomic<std::size_t> count;
composite_subscription loops_lifetime;
std::vector<worker> loops;
public:
event_loop()
: factory([](std::function<void()> start){
return std::thread(std::move(start));
})
, newthread(make_new_thread())
, count(0)
{
auto remaining = std::max(std::thread::hardware_concurrency(), unsigned(4));
while (remaining--) {
loops.push_back(newthread.create_worker(loops_lifetime));
}
}
explicit event_loop(thread_factory tf)
: factory(tf)
, newthread(make_new_thread(tf))
, count(0)
{
auto remaining = std::max(std::thread::hardware_concurrency(), unsigned(4));
while (remaining--) {
loops.push_back(newthread.create_worker(loops_lifetime));
}
}
virtual ~event_loop()
{
loops_lifetime.unsubscribe();
}
virtual clock_type::time_point now() const {
return clock_type::now();
}
virtual worker create_worker(composite_subscription cs) const {
return worker(cs, std::make_shared<loop_worker>(cs, loops[++count % loops.size()], this->shared_from_this()));
}
};
inline scheduler make_event_loop() {
static scheduler instance = make_scheduler<event_loop>();
return instance;
}
inline scheduler make_event_loop(thread_factory tf) {
return make_scheduler<event_loop>(tf);
}
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_SCHEDULER_IMMEDIATE_HPP)
#define RXCPP_RX_SCHEDULER_IMMEDIATE_HPP
namespace rxcpp {
namespace schedulers {
struct immediate : public scheduler_interface
{
private:
using this_type = immediate;
immediate(const this_type&);
struct immediate_worker : public worker_interface
{
private:
using this_type = immediate_worker;
immediate_worker(const this_type&);
public:
virtual ~immediate_worker()
{
}
immediate_worker()
{
}
virtual clock_type::time_point now() const {
return clock_type::now();
}
virtual void schedule(const schedulable& scbl) const {
if (scbl.is_subscribed()) {
// allow recursion
recursion r(true);
scbl(r.get_recurse());
}
}
virtual void schedule(clock_type::time_point when, const schedulable& scbl) const {
std::this_thread::sleep_until(when);
if (scbl.is_subscribed()) {
// allow recursion
recursion r(true);
scbl(r.get_recurse());
}
}
};
std::shared_ptr<immediate_worker> wi;
public:
immediate()
: wi(std::make_shared<immediate_worker>())
{
}
virtual ~immediate()
{
}
virtual clock_type::time_point now() const {
return clock_type::now();
}
virtual worker create_worker(composite_subscription cs) const {
return worker(std::move(cs), wi);
}
};
inline const scheduler& make_immediate() {
static scheduler instance = make_scheduler<immediate>();
return instance;
}
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_SCHEDULER_VIRTUAL_TIME_HPP)
#define RXCPP_RX_SCHEDULER_VIRTUAL_TIME_HPP
namespace rxcpp {
namespace schedulers {
namespace detail {
template<class Absolute, class Relative>
struct virtual_time_base : std::enable_shared_from_this<virtual_time_base<Absolute, Relative>>
{
private:
using this_type = virtual_time_base<Absolute, Relative>;
virtual_time_base(const virtual_time_base&);
mutable bool isenabled;
public:
using absolute = Absolute;
using relative = Relative;
virtual ~virtual_time_base()
{
}
protected:
virtual_time_base()
: isenabled(false)
, clock_now(0)
{
}
explicit virtual_time_base(absolute initialClock)
: isenabled(false)
, clock_now(initialClock)
{
}
mutable absolute clock_now;
using item_type = time_schedulable<long>;
virtual absolute add(absolute, relative) const =0;
virtual typename scheduler_base::clock_type::time_point to_time_point(absolute) const =0;
virtual relative to_relative(typename scheduler_base::clock_type::duration) const =0;
virtual item_type top() const =0;
virtual void pop() const =0;
virtual bool empty() const =0;
public:
virtual void schedule_absolute(absolute, const schedulable&) const =0;
virtual void schedule_relative(relative when, const schedulable& a) const {
auto at = add(clock_now, when);
return schedule_absolute(at, a);
}
bool is_enabled() const {return isenabled;}
absolute clock() const {return clock_now;}
void start() const
{
if (!isenabled) {
isenabled = true;
rxsc::recursion r;
r.reset(false);
while (!empty() && isenabled) {
auto next = top();
pop();
if (next.what.is_subscribed()) {
if (next.when > clock_now) {
clock_now = next.when;
}
next.what(r.get_recurse());
}
}
isenabled = false;
}
}
void stop() const
{
isenabled = false;
}
void advance_to(absolute time) const
{
if (time < clock_now) {
std::terminate();
}
if (time == clock_now) {
return;
}
if (!isenabled) {
isenabled = true;
rxsc::recursion r;
while (!empty() && isenabled) {
auto next = top();
if (next.when <= time) {
pop();
if (!next.what.is_subscribed()) {
continue;
}
if (next.when > clock_now) {
clock_now = next.when;
}
next.what(r.get_recurse());
}
else {
break;
}
}
isenabled = false;
clock_now = time;
}
else {
std::terminate();
}
}
void advance_by(relative time) const
{
auto dt = add(clock_now, time);
if (dt < clock_now) {
std::terminate();
}
if (dt == clock_now) {
return;
}
if (!isenabled) {
advance_to(dt);
}
else {
std::terminate();
}
}
void sleep(relative time) const
{
auto dt = add(clock_now, time);
if (dt < clock_now) {
std::terminate();
}
clock_now = dt;
}
};
}
template<class Absolute, class Relative>
struct virtual_time : public detail::virtual_time_base<Absolute, Relative>
{
using base = detail::virtual_time_base<Absolute, Relative>;
using item_type = typename base::item_type;
using queue_item_time = detail::schedulable_queue<typename item_type::time_point_type>;
mutable queue_item_time q;
public:
virtual ~virtual_time()
{
}
protected:
virtual_time()
{
}
explicit virtual_time(typename base::absolute initialClock)
: base(initialClock)
{
}
virtual item_type top() const {
return q.top();
}
virtual void pop() const {
q.pop();
}
virtual bool empty() const {
return q.empty();
}
using base::schedule_absolute;
using base::schedule_relative;
virtual void schedule_absolute(typename base::absolute when, const schedulable& a) const
{
// use a separate subscription here so that a's subscription is not affected
auto run = make_schedulable(
a.get_worker(),
composite_subscription(),
[a](const schedulable& scbl) {
rxsc::recursion r;
r.reset(false);
if (scbl.is_subscribed()) {
scbl.unsubscribe(); // unsubscribe() run, not a;
a(r.get_recurse());
}
});
q.push(item_type(when, run));
}
};
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_SCHEDULER_SAME_WORKER_HPP)
#define RXCPP_RX_SCHEDULER_SAME_WORKER_HPP
namespace rxcpp {
namespace schedulers {
struct same_worker : public scheduler_interface
{
private:
using this_type = same_worker;
same_worker(const this_type&);
rxsc::worker controller;
public:
explicit same_worker(rxsc::worker w)
: controller(std::move(w))
{
}
virtual ~same_worker()
{
}
virtual clock_type::time_point now() const {
return controller.now();
}
virtual worker create_worker(composite_subscription cs) const {
// use different lifetime
auto inner_lifetime = controller.get_subscription();
auto token = inner_lifetime.add(cs);
cs.add([inner_lifetime, token](){inner_lifetime.remove(token);});
return worker(cs, controller);
}
};
inline scheduler make_same_worker(rxsc::worker w) {
return make_scheduler<same_worker>(std::move(w));
}
}
}
#endif
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_SUBSCRIBER_HPP)
#define RXCPP_RX_SUBSCRIBER_HPP
namespace rxcpp {
template<class T>
struct subscriber_base : public observer_base<T>, public subscription_base
{
using subscriber_tag = tag_subscriber;
};
/*!
\brief binds an observer that consumes values with a composite_subscription that controls lifetime.
\ingroup group-core
*/
template<class T, class Observer = observer<T>>
class subscriber : public subscriber_base<T>
{
static_assert(!is_subscriber<Observer>::value, "not allowed to nest subscribers");
static_assert(is_observer<Observer>::value, "subscriber must contain an observer<T, ...>");
using this_type = subscriber<T, Observer>;
using observer_type = rxu::decay_t<Observer>;
composite_subscription lifetime;
observer_type destination;
trace_id id;
struct nextdetacher
{
~nextdetacher()
{
trace_activity().on_next_return(*that);
if (do_unsubscribe) {
that->unsubscribe();
}
}
nextdetacher(const this_type* that)
: that(that)
, do_unsubscribe(true)
{
}
template<class U>
void operator()(U&& u) {
trace_activity().on_next_enter(*that, u);
RXCPP_TRY {
that->destination.on_next(std::forward<U>(u));
do_unsubscribe = false;
} RXCPP_CATCH(...) {
auto ex = rxu::current_exception();
trace_activity().on_error_enter(*that, ex);
that->destination.on_error(std::move(ex));
trace_activity().on_error_return(*that);
}
}
const this_type* that;
volatile bool do_unsubscribe;
};
struct errordetacher
{
~errordetacher()
{
trace_activity().on_error_return(*that);
that->unsubscribe();
}
errordetacher(const this_type* that)
: that(that)
{
}
inline void operator()(rxu::error_ptr ex) {
trace_activity().on_error_enter(*that, ex);
that->destination.on_error(std::move(ex));
}
const this_type* that;
};
struct completeddetacher
{
~completeddetacher()
{
trace_activity().on_completed_return(*that);
that->unsubscribe();
}
completeddetacher(const this_type* that)
: that(that)
{
}
inline void operator()() {
trace_activity().on_completed_enter(*that);
that->destination.on_completed();
}
const this_type* that;
};
subscriber();
public:
using weak_subscription = typename composite_subscription::weak_subscription;
subscriber(const this_type& o)
: lifetime(o.lifetime)
, destination(o.destination)
, id(o.id)
{
}
subscriber(this_type&& o)
: lifetime(std::move(o.lifetime))
, destination(std::move(o.destination))
, id(std::move(o.id))
{
}
template<class U, class O>
friend class subscriber;
template<class O>
subscriber(
const subscriber<T, O>& o,
typename std::enable_if<
!std::is_same_v<O, observer<T>> &&
std::is_same_v<Observer, observer<T>>, void**>::type = nullptr)
: lifetime(o.lifetime)
, destination(o.destination.as_dynamic())
, id(o.id)
{
}
template<class U>
subscriber(trace_id id, composite_subscription cs, U&& o)
: lifetime(std::move(cs))
, destination(std::forward<U>(o))
, id(std::move(id))
{
static_assert(!is_subscriber<U>::value, "cannot nest subscribers");
static_assert(is_observer<U>::value, "must pass observer to subscriber");
trace_activity().create_subscriber(*this);
}
this_type& operator=(this_type o) {
lifetime = std::move(o.lifetime);
destination = std::move(o.destination);
id = std::move(o.id);
return *this;
}
const observer_type& get_observer() const {
return destination;
}
observer_type& get_observer() {
return destination;
}
const composite_subscription& get_subscription() const {
return lifetime;
}
composite_subscription& get_subscription() {
return lifetime;
}
trace_id get_id() const {
return id;
}
subscriber<T> as_dynamic() const {
return subscriber<T>(id, lifetime, destination.as_dynamic());
}
// observer
//
template<class V>
void on_next(V&& v) const {
if (!is_subscribed()) {
return;
}
nextdetacher protect(this);
protect(std::forward<V>(v));
}
void on_error(rxu::error_ptr e) const {
if (!is_subscribed()) {
return;
}
errordetacher protect(this);
protect(std::move(e));
}
void on_completed() const {
if (!is_subscribed()) {
return;
}
completeddetacher protect(this);
protect();
}
// composite_subscription
//
bool is_subscribed() const {
return lifetime.is_subscribed();
}
weak_subscription add(subscription s) const {
return lifetime.add(std::move(s));
}
template<class F>
auto add(F f) const
-> typename std::enable_if<detail::is_unsubscribe_function<F>::value, weak_subscription>::type {
return lifetime.add(make_subscription(std::move(f)));
}
void remove(weak_subscription w) const {
return lifetime.remove(std::move(w));
}
void clear() const {
return lifetime.clear();
}
void unsubscribe() const {
return lifetime.unsubscribe();
}
};
template<class T, class Observer>
auto make_subscriber(
subscriber<T, Observer> o)
-> subscriber<T, Observer> {
return subscriber<T, Observer>(std::move(o));
}
// observer
//
template<class T>
auto make_subscriber()
-> typename std::enable_if<
detail::is_on_next_of<T, detail::OnNextEmpty<T>>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, detail::OnNextEmpty<T>>>>::type {
return subscriber<T, observer<T, detail::stateless_observer_tag, detail::OnNextEmpty<T>>>(trace_id::make_next_id_subscriber(), composite_subscription(),
observer<T, detail::stateless_observer_tag, detail::OnNextEmpty<T>>(detail::OnNextEmpty<T>()));
}
template<class T, class I>
auto make_subscriber(
const observer<T, I>& o)
-> subscriber<T, observer<T, I>> {
return subscriber<T, observer<T, I>>(trace_id::make_next_id_subscriber(), composite_subscription(), o);
}
template<class T, class Observer>
auto make_subscriber(const Observer& o)
-> typename std::enable_if<
is_observer<Observer>::value &&
!is_subscriber<Observer>::value,
subscriber<T, Observer>>::type {
return subscriber<T, Observer>(trace_id::make_next_id_subscriber(), composite_subscription(), o);
}
template<class T, class Observer>
auto make_subscriber(const Observer& o)
-> typename std::enable_if<
!detail::is_on_next_of<T, Observer>::value &&
!is_subscriber<Observer>::value &&
!is_subscription<Observer>::value &&
!is_observer<Observer>::value,
subscriber<T, observer<T, Observer>>>::type {
return subscriber<T, observer<T, Observer>>(trace_id::make_next_id_subscriber(), composite_subscription(), o);
}
template<class T, class OnNext>
auto make_subscriber(const OnNext& on)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext>>>::type {
return subscriber<T, observer<T, detail::stateless_observer_tag, OnNext>>(trace_id::make_next_id_subscriber(), composite_subscription(),
observer<T, detail::stateless_observer_tag, OnNext>(on));
}
template<class T, class OnNext, class OnError>
auto make_subscriber(const OnNext& on, const OnError& oe)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_error<OnError>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError>>>::type {
return subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError>>(trace_id::make_next_id_subscriber(), composite_subscription(),
observer<T, detail::stateless_observer_tag, OnNext, OnError>(on, oe));
}
template<class T, class OnNext, class OnCompleted>
auto make_subscriber(const OnNext& on, const OnCompleted& oc)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_completed<OnCompleted>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>>>::type {
return subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>>(trace_id::make_next_id_subscriber(), composite_subscription(),
observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>(on, detail::OnErrorEmpty(), oc));
}
template<class T, class OnNext, class OnError, class OnCompleted>
auto make_subscriber(const OnNext& on, const OnError& oe, const OnCompleted& oc)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_error<OnError>::value &&
detail::is_on_completed<OnCompleted>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>>>::type {
return subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>>(trace_id::make_next_id_subscriber(), composite_subscription(),
observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>(on, oe, oc));
}
// explicit lifetime
//
template<class T>
auto make_subscriber(const composite_subscription& cs)
-> subscriber<T, observer<T, detail::stateless_observer_tag, detail::OnNextEmpty<T>>> {
return subscriber<T, observer<T, detail::stateless_observer_tag, detail::OnNextEmpty<T>>>(trace_id::make_next_id_subscriber(), cs,
observer<T, detail::stateless_observer_tag, detail::OnNextEmpty<T>>(detail::OnNextEmpty<T>()));
}
template<class T, class I>
auto make_subscriber(const composite_subscription& cs,
const observer<T, I>& o)
-> subscriber<T, observer<T, I>> {
return subscriber<T, observer<T, I>>(trace_id::make_next_id_subscriber(), cs, o);
}
template<class T, class I>
auto make_subscriber(const composite_subscription& cs,
const subscriber<T, I>& s)
-> subscriber<T, I> {
return subscriber<T, I>(trace_id::make_next_id_subscriber(), cs, s.get_observer());
}
template<class T, class Observer>
auto make_subscriber(const composite_subscription& cs, const Observer& o)
-> typename std::enable_if<
!is_subscriber<Observer>::value &&
is_observer<Observer>::value,
subscriber<T, Observer>>::type {
return subscriber<T, Observer>(trace_id::make_next_id_subscriber(), cs, o);
}
template<class T, class Observer>
auto make_subscriber(const composite_subscription& cs, const Observer& o)
-> typename std::enable_if<
!detail::is_on_next_of<T, Observer>::value &&
!is_subscriber<Observer>::value &&
!is_subscription<Observer>::value &&
!is_observer<Observer>::value,
subscriber<T, observer<T, Observer>>>::type {
return subscriber<T, observer<T, Observer>>(trace_id::make_next_id_subscriber(), cs, make_observer<T>(o));
}
template<class T, class OnNext>
auto make_subscriber(const composite_subscription& cs, const OnNext& on)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext>>>::type {
return subscriber<T, observer<T, detail::stateless_observer_tag, OnNext>>(trace_id::make_next_id_subscriber(), cs,
observer<T, detail::stateless_observer_tag, OnNext>(on));
}
template<class T, class OnNext, class OnError>
auto make_subscriber(const composite_subscription& cs, const OnNext& on, const OnError& oe)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_error<OnError>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError>>>::type {
return subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError>>(trace_id::make_next_id_subscriber(), cs,
observer<T, detail::stateless_observer_tag, OnNext, OnError>(on, oe));
}
template<class T, class OnNext, class OnCompleted>
auto make_subscriber(const composite_subscription& cs, const OnNext& on, const OnCompleted& oc)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_completed<OnCompleted>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>>>::type {
return subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>>(trace_id::make_next_id_subscriber(), cs,
observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>(on, detail::OnErrorEmpty(), oc));
}
template<class T, class OnNext, class OnError, class OnCompleted>
auto make_subscriber(const composite_subscription& cs, const OnNext& on, const OnError& oe, const OnCompleted& oc)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_error<OnError>::value &&
detail::is_on_completed<OnCompleted>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>>>::type {
return subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>>(trace_id::make_next_id_subscriber(), cs,
observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>(on, oe, oc));
}
// explicit id
//
template<class T>
auto make_subscriber(trace_id id)
-> subscriber<T, observer<T, detail::stateless_observer_tag, detail::OnNextEmpty<T>>> {
return subscriber<T, observer<T, detail::stateless_observer_tag, detail::OnNextEmpty<T>>>(std::move(id), composite_subscription(),
observer<T, detail::stateless_observer_tag, detail::OnNextEmpty<T>>(detail::OnNextEmpty<T>()));
}
template<class T>
auto make_subscriber(trace_id id, const composite_subscription& cs)
-> subscriber<T, observer<T, detail::stateless_observer_tag, detail::OnNextEmpty<T>>> {
return subscriber<T, observer<T, detail::stateless_observer_tag, detail::OnNextEmpty<T>>>(std::move(id), cs,
observer<T, detail::stateless_observer_tag, detail::OnNextEmpty<T>>(detail::OnNextEmpty<T>()));
}
template<class T, class I>
auto make_subscriber(trace_id id,
const observer<T, I>& o)
-> subscriber<T, observer<T, I>> {
return subscriber<T, observer<T, I>>(std::move(id), composite_subscription(), o);
}
template<class T, class I>
auto make_subscriber(trace_id id, const composite_subscription& cs,
const observer<T, I>& o)
-> subscriber<T, observer<T, I>> {
return subscriber<T, observer<T, I>>(std::move(id), cs, o);
}
template<class T, class Observer>
auto make_subscriber(trace_id id, const Observer& o)
-> typename std::enable_if<
is_observer<Observer>::value,
subscriber<T, Observer>>::type {
return subscriber<T, Observer>(std::move(id), composite_subscription(), o);
}
template<class T, class Observer>
auto make_subscriber(trace_id id, const composite_subscription& cs, const Observer& o)
-> typename std::enable_if<
is_observer<Observer>::value,
subscriber<T, Observer>>::type {
return subscriber<T, Observer>(std::move(id), cs, o);
}
template<class T, class Observer>
auto make_subscriber(trace_id id, const Observer& o)
-> typename std::enable_if<
!detail::is_on_next_of<T, Observer>::value &&
!is_subscriber<Observer>::value &&
!is_subscription<Observer>::value &&
!is_observer<Observer>::value,
subscriber<T, observer<T, Observer>>>::type {
return subscriber<T, observer<T, Observer>>(std::move(id), composite_subscription(), o);
}
template<class T, class Observer>
auto make_subscriber(trace_id id, const composite_subscription& cs, const Observer& o)
-> typename std::enable_if<
!detail::is_on_next_of<T, Observer>::value &&
!is_subscriber<Observer>::value &&
!is_subscription<Observer>::value &&
!is_observer<Observer>::value,
subscriber<T, observer<T, Observer>>>::type {
return subscriber<T, observer<T, Observer>>(std::move(id), cs, o);
}
template<class T, class OnNext>
auto make_subscriber(trace_id id, const OnNext& on)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext>>>::type {
return subscriber<T, observer<T, detail::stateless_observer_tag, OnNext>>(std::move(id), composite_subscription(),
observer<T, detail::stateless_observer_tag, OnNext>(on));
}
template<class T, class OnNext>
auto make_subscriber(trace_id id, const composite_subscription& cs, const OnNext& on)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext>>>::type {
return subscriber<T, observer<T, detail::stateless_observer_tag, OnNext>>(std::move(id), cs,
observer<T, detail::stateless_observer_tag, OnNext>(on));
}
template<class T, class OnNext, class OnError>
auto make_subscriber(trace_id id, const OnNext& on, const OnError& oe)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_error<OnError>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError>>>::type {
return subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError>>(std::move(id), composite_subscription(),
observer<T, detail::stateless_observer_tag, OnNext, OnError>(on, oe));
}
template<class T, class OnNext, class OnError>
auto make_subscriber(trace_id id, const composite_subscription& cs, const OnNext& on, const OnError& oe)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_error<OnError>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError>>>::type {
return subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError>>(std::move(id), cs,
observer<T, detail::stateless_observer_tag, OnNext, OnError>(on, oe));
}
template<class T, class OnNext, class OnCompleted>
auto make_subscriber(trace_id id, const OnNext& on, const OnCompleted& oc)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_completed<OnCompleted>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>>>::type {
return subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>>(std::move(id), composite_subscription(),
observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>(on, detail::OnErrorEmpty(), oc));
}
template<class T, class OnNext, class OnCompleted>
auto make_subscriber(trace_id id, const composite_subscription& cs, const OnNext& on, const OnCompleted& oc)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_completed<OnCompleted>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>>>::type {
return subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>>(std::move(id), cs,
observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>(on, detail::OnErrorEmpty(), oc));
}
template<class T, class OnNext, class OnError, class OnCompleted>
auto make_subscriber(trace_id id, const OnNext& on, const OnError& oe, const OnCompleted& oc)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_error<OnError>::value &&
detail::is_on_completed<OnCompleted>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>>>::type {
return subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>>(std::move(id), composite_subscription(),
observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>(on, oe, oc));
}
template<class T, class OnNext, class OnError, class OnCompleted>
auto make_subscriber(trace_id id, const composite_subscription& cs, const OnNext& on, const OnError& oe, const OnCompleted& oc)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_error<OnError>::value &&
detail::is_on_completed<OnCompleted>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>>>::type {
return subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>>(std::move(id), cs,
observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>(on, oe, oc));
}
// chain defaults from subscriber
//
template<class T, class OtherT, class OtherObserver, class I>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr,
const observer<T, I>& o)
-> subscriber<T, observer<T, I>> {
auto r = subscriber<T, observer<T, I>>(trace_id::make_next_id_subscriber(), scbr.get_subscription(), o);
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class I>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, trace_id id,
const observer<T, I>& o)
-> subscriber<T, observer<T, I>> {
auto r = subscriber<T, observer<T, I>>(std::move(id), scbr.get_subscription(), o);
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class Observer>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, trace_id id, const Observer& o)
-> typename std::enable_if<
is_observer<Observer>::value,
subscriber<T, Observer>>::type {
auto r = subscriber<T, Observer>(std::move(id), scbr.get_subscription(), o);
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class Observer>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, const Observer& o)
-> typename std::enable_if<
!is_subscription<Observer>::value &&
is_observer<Observer>::value,
subscriber<T, Observer>>::type {
auto r = subscriber<T, Observer>(trace_id::make_next_id_subscriber(), scbr.get_subscription(), o);
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class Observer>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, const Observer& o)
-> typename std::enable_if<
!detail::is_on_next_of<T, Observer>::value &&
!is_subscriber<Observer>::value &&
!is_subscription<Observer>::value &&
!is_observer<Observer>::value,
subscriber<T, observer<T, Observer>>>::type {
auto r = subscriber<T, observer<T, Observer>>(trace_id::make_next_id_subscriber(), scbr.get_subscription(), make_observer<T>(o));
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class Observer>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, trace_id id, const Observer& o)
-> typename std::enable_if<
!detail::is_on_next_of<T, Observer>::value &&
!is_subscriber<Observer>::value &&
!is_subscription<Observer>::value &&
!is_observer<Observer>::value,
subscriber<T, observer<T, Observer>>>::type {
auto r = subscriber<T, observer<T, Observer>>(std::move(id), scbr.get_subscription(), o);
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class OnNext>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, const OnNext& on)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext>>>::type {
auto r = subscriber<T, observer<T, detail::stateless_observer_tag, OnNext>>(trace_id::make_next_id_subscriber(), scbr.get_subscription(),
observer<T, detail::stateless_observer_tag, OnNext>(on));
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class OnNext>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, trace_id id, const OnNext& on)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext>>>::type {
auto r = subscriber<T, observer<T, detail::stateless_observer_tag, OnNext>>(std::move(id), scbr.get_subscription(),
observer<T, detail::stateless_observer_tag, OnNext>(on));
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class OnNext, class OnError>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, const OnNext& on, const OnError& oe)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_error<OnError>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError>>>::type {
auto r = subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError>>(trace_id::make_next_id_subscriber(), scbr.get_subscription(),
observer<T, detail::stateless_observer_tag, OnNext, OnError>(on, oe));
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class OnNext, class OnError>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, trace_id id, const OnNext& on, const OnError& oe)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_error<OnError>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError>>>::type {
auto r = subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError>>(std::move(id), scbr.get_subscription(),
observer<T, detail::stateless_observer_tag, OnNext, OnError>(on, oe));
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class OnNext, class OnCompleted>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, const OnNext& on, const OnCompleted& oc)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_completed<OnCompleted>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>>>::type {
auto r = subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>>(trace_id::make_next_id_subscriber(), scbr.get_subscription(),
observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>(on, detail::OnErrorEmpty(), oc));
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class OnNext, class OnCompleted>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, trace_id id, const OnNext& on, const OnCompleted& oc)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_completed<OnCompleted>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>>>::type {
auto r = subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>>(std::move(id), scbr.get_subscription(),
observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>(on, detail::OnErrorEmpty(), oc));
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class OnNext, class OnError, class OnCompleted>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, const OnNext& on, const OnError& oe, const OnCompleted& oc)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_error<OnError>::value &&
detail::is_on_completed<OnCompleted>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>>>::type {
auto r = subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>>(trace_id::make_next_id_subscriber(), scbr.get_subscription(),
observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>(on, oe, oc));
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class OnNext, class OnError, class OnCompleted>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, trace_id id, const OnNext& on, const OnError& oe, const OnCompleted& oc)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_error<OnError>::value &&
detail::is_on_completed<OnCompleted>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>>>::type {
auto r = subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>>(std::move(id), scbr.get_subscription(),
observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>(on, oe, oc));
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class I>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& , const composite_subscription& cs,
const observer<T, I>& o)
-> subscriber<T, observer<T, I>> {
return subscriber<T, observer<T, I>>(trace_id::make_next_id_subscriber(), cs, o);
}
template<class T, class OtherT, class OtherObserver, class I>
auto make_subscriber(const subscriber<OtherT, OtherObserver>&, trace_id id, const composite_subscription& cs,
const observer<T, I>& o)
-> subscriber<T, observer<T, I>> {
return subscriber<T, observer<T, I>>(std::move(id), cs, o);
}
template<class T, class OtherT, class OtherObserver, class Observer>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, const composite_subscription& cs, const Observer& o)
-> typename std::enable_if<
is_observer<Observer>::value,
subscriber<T, Observer>>::type {
auto r = subscriber<T, Observer>(trace_id::make_next_id_subscriber(), cs, o);
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class Observer>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, trace_id id, const composite_subscription& cs, const Observer& o)
-> typename std::enable_if<
is_observer<Observer>::value,
subscriber<T, Observer>>::type {
auto r = subscriber<T, Observer>(std::move(id), cs, o);
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class Observer>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, const composite_subscription& cs, const Observer& o)
-> typename std::enable_if<
!detail::is_on_next_of<T, Observer>::value &&
!is_subscriber<Observer>::value &&
!is_subscription<Observer>::value &&
!is_observer<Observer>::value,
subscriber<T, observer<T, Observer>>>::type {
auto r = subscriber<T, observer<T, Observer>>(trace_id::make_next_id_subscriber(), cs, o);
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class Observer>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, trace_id id, const composite_subscription& cs, const Observer& o)
-> typename std::enable_if<
!detail::is_on_next_of<T, Observer>::value &&
!is_subscriber<Observer>::value &&
!is_subscription<Observer>::value &&
!is_observer<Observer>::value,
subscriber<T, observer<T, Observer>>>::type {
auto r = subscriber<T, observer<T, Observer>>(std::move(id), cs, o);
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class OnNext>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, const composite_subscription& cs, const OnNext& on)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext>>>::type {
auto r = subscriber<T, observer<T, detail::stateless_observer_tag, OnNext>>(trace_id::make_next_id_subscriber(), cs,
observer<T, detail::stateless_observer_tag, OnNext>(on));
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class OnNext>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, trace_id id, const composite_subscription& cs, const OnNext& on)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext>>>::type {
auto r = subscriber<T, observer<T, detail::stateless_observer_tag, OnNext>>(std::move(id), cs,
observer<T, detail::stateless_observer_tag, OnNext>(on));
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class OnNext, class OnError>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, const composite_subscription& cs, const OnNext& on, const OnError& oe)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_error<OnError>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError>>>::type {
auto r = subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError>>(trace_id::make_next_id_subscriber(), cs,
observer<T, detail::stateless_observer_tag, OnNext, OnError>(on, oe));
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class OnNext, class OnError>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, trace_id id, const composite_subscription& cs, const OnNext& on, const OnError& oe)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_error<OnError>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError>>>::type {
auto r = subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError>>(std::move(id), cs,
observer<T, detail::stateless_observer_tag, OnNext, OnError>(on, oe));
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class OnNext, class OnCompleted>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, const composite_subscription& cs, const OnNext& on, const OnCompleted& oc)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_completed<OnCompleted>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>>>::type {
auto r = subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>>(trace_id::make_next_id_subscriber(), cs,
observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>(on, detail::OnErrorEmpty(), oc));
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class OnNext, class OnCompleted>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, trace_id id, const composite_subscription& cs, const OnNext& on, const OnCompleted& oc)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_completed<OnCompleted>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>>>::type {
auto r = subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>>(std::move(id), cs,
observer<T, detail::stateless_observer_tag, OnNext, detail::OnErrorEmpty, OnCompleted>(on, detail::OnErrorEmpty(), oc));
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class OnNext, class OnError, class OnCompleted>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, const composite_subscription& cs, const OnNext& on, const OnError& oe, const OnCompleted& oc)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_error<OnError>::value &&
detail::is_on_completed<OnCompleted>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>>>::type {
auto r = subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>>(trace_id::make_next_id_subscriber(), cs,
observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>(on, oe, oc));
trace_activity().connect(r, scbr);
return r;
}
template<class T, class OtherT, class OtherObserver, class OnNext, class OnError, class OnCompleted>
auto make_subscriber(const subscriber<OtherT, OtherObserver>& scbr, trace_id id, const composite_subscription& cs, const OnNext& on, const OnError& oe, const OnCompleted& oc)
-> typename std::enable_if<
detail::is_on_next_of<T, OnNext>::value &&
detail::is_on_error<OnError>::value &&
detail::is_on_completed<OnCompleted>::value,
subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>>>::type {
auto r = subscriber<T, observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>>(std::move(id), cs,
observer<T, detail::stateless_observer_tag, OnNext, OnError, OnCompleted>(on, oe, oc));
trace_activity().connect(r, scbr);
return r;
}
template<class T, class Observer>
auto make_subscriber(const subscriber<T, Observer>& scbr, const composite_subscription& cs)
-> subscriber<T, Observer> {
auto r = subscriber<T, Observer>(scbr.get_id(), cs, scbr.get_observer());
trace_activity().connect(r, scbr);
return r;
}
template<class T, class Observer>
auto make_subscriber(const subscriber<T, Observer>& scbr, trace_id id, const composite_subscription& cs)
-> subscriber<T, Observer> {
auto r = subscriber<T, Observer>(std::move(id), cs, scbr.get_observer());
trace_activity().connect(r, scbr);
return r;
}
template<class T, class Observer>
auto make_subscriber(const subscriber<T, Observer>& scbr, trace_id id)
-> subscriber<T, Observer> {
auto r = subscriber<T, Observer>(std::move(id), scbr.get_subscription(), scbr.get_observer());
trace_activity().connect(r, scbr);
return r;
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_NOTIFICATION_HPP)
#define RXCPP_RX_NOTIFICATION_HPP
namespace rxcpp {
namespace notifications {
class subscription
{
long s;
long u;
public:
explicit inline subscription(long s)
: s(s), u(std::numeric_limits<long>::max()) {
}
inline subscription(long s, long u)
: s(s), u(u) {
}
inline long subscribe() const {
return s;
}
inline long unsubscribe() const {
return u;
}
};
inline bool operator == (subscription lhs, subscription rhs) {
return lhs.subscribe() == rhs.subscribe() && lhs.unsubscribe() == rhs.unsubscribe();
}
inline std::ostream& operator<< (std::ostream& out, const subscription& s) {
out << s.subscribe() << "-" << s.unsubscribe();
return out;
}
namespace detail {
template<typename T>
struct notification_base
: public std::enable_shared_from_this<notification_base<T>>
{
using observer_type = subscriber<T>;
using type = std::shared_ptr<notification_base<T>>;
virtual ~notification_base() {}
virtual void out(std::ostream& out) const =0;
virtual bool equals(const type& other) const = 0;
virtual void accept(const observer_type& o) const & =0;
virtual void accept(const observer_type& o) && =0;
};
template<class T>
std::ostream& operator<< (std::ostream& out, const std::vector<T>& v);
template<class T>
auto to_stream(std::ostream& os, const T& t, int, int)
-> decltype(os << t) {
return os << t;
}
#if RXCPP_USE_RTTI
template<class T>
std::ostream& to_stream(std::ostream& os, const T&, int, ...) {
return os << "< " << typeid(T).name() << " does not support ostream>";
}
#endif
template<class T>
std::ostream& to_stream(std::ostream& os, const T&, ...) {
return os << "<the value does not support ostream>";
}
template<class T>
inline std::ostream& ostreamvector (std::ostream& os, const std::vector<T>& v) {
os << "[";
bool doemit = false;
for(auto& i : v) {
if (doemit) {
os << ", ";
} else {
doemit = true;
}
to_stream(os, i, 0, 0);
}
os << "]";
return os;
}
template<class T>
inline std::ostream& operator<< (std::ostream& os, const std::vector<T>& v) {
return ostreamvector(os, v);
}
template<class T>
auto equals(const T& lhs, const T& rhs, int)
-> decltype(bool(lhs == rhs)) {
return lhs == rhs;
}
template<class T>
bool equals(const T&, const T&, ...) {
rxu::throw_exception(std::runtime_error("value does not support equality tests"));
return false;
}
}
template<typename T>
struct notification
{
using type = typename detail::notification_base<T>::type;
using observer_type = typename detail::notification_base<T>::observer_type;
private:
using base = detail::notification_base<T>;
struct on_next_notification : public base {
on_next_notification(T&& value) : value(std::move(value)) {}
on_next_notification(const T& value) : value(value) {}
on_next_notification(const on_next_notification& o) : value(o.value) {}
on_next_notification(const on_next_notification&& o) : value(std::move(o.value)) {}
on_next_notification& operator=(on_next_notification o) { value = std::move(o.value); return *this; }
void out(std::ostream& os) const override {
os << "on_next( ";
detail::to_stream(os, value, 0, 0);
os << ")";
}
bool equals(const typename base::type& other) const override {
bool result = false;
other->accept(make_subscriber<T>(make_observer_dynamic<T>([this, &result](T v) {
result = detail::equals(this->value, v, 0);
})));
return result;
}
void accept(const typename base::observer_type& o) const & override{
o.on_next(value);
}
void accept(const typename base::observer_type& o) && override {
o.on_next(std::move(value));
}
T value;
};
struct on_error_notification : public base {
on_error_notification(rxu::error_ptr ep) : ep(ep) {
}
on_error_notification(const on_error_notification& o) : ep(o.ep) {}
on_error_notification(const on_error_notification&& o) : ep(std::move(o.ep)) {}
on_error_notification& operator=(on_error_notification o) { ep = std::move(o.ep); return *this; }
void out(std::ostream& os) const override {
os << "on_error(";
os << rxu::what(ep);
os << ")";
}
bool equals(const typename base::type& other) const override {
bool result = false;
// not trying to compare exceptions
other->accept(make_subscriber<T>(make_observer_dynamic<T>([](T){}, [&result](rxu::error_ptr){
result = true;
})));
return result;
}
void accept(const typename base::observer_type& o) const & override{
o.on_error(ep);
}
void accept(const typename base::observer_type& o) && override{
o.on_error(ep);
}
const rxu::error_ptr ep;
};
struct on_completed_notification : public base {
on_completed_notification() {
}
void out(std::ostream& os) const override {
os << "on_completed()";
}
bool equals(const typename base::type& other) const override {
bool result = false;
other->accept(make_subscriber<T>(make_observer_dynamic<T>([](T){}, [&result](){
result = true;
})));
return result;
}
void accept(const typename base::observer_type& o) const & override{
o.on_completed();
}
void accept(const typename base::observer_type& o) && override{
o.on_completed();
}
};
struct exception_tag {};
template<typename Exception>
static
type make_on_error(exception_tag&&, Exception&& e) {
rxu::error_ptr ep = rxu::make_error_ptr(std::forward<Exception>(e));
return std::make_shared<on_error_notification>(ep);
}
struct exception_ptr_tag {};
static
type make_on_error(exception_ptr_tag&&, rxu::error_ptr ep) {
return std::make_shared<on_error_notification>(ep);
}
public:
template<typename U>
static type on_next(U&& value) {
return std::make_shared<on_next_notification>(std::forward<U>(value));
}
static type on_completed() {
return std::make_shared<on_completed_notification>();
}
template<typename Exception>
static type on_error(Exception&& e) {
return make_on_error(typename std::conditional_t<std::is_same_v<rxu::decay_t<Exception>, rxu::error_ptr>, exception_ptr_tag, exception_tag>(), std::forward<Exception>(e));
}
};
template<class T>
bool operator == (const std::shared_ptr<detail::notification_base<T>>& lhs, const std::shared_ptr<detail::notification_base<T>>& rhs) {
if (!lhs && !rhs) {return true;}
if (!lhs || !rhs) {return false;}
return lhs->equals(rhs);
}
template<class T>
std::ostream& operator<< (std::ostream& os, const std::shared_ptr<detail::notification_base<T>>& n) {
n->out(os);
return os;
}
template<class T>
class recorded
{
long t;
T v;
public:
recorded(long t, T v)
: t(t), v(v) {
}
long time() const {
return t;
}
const T& value() const {
return v;
}
};
template<class T>
bool operator == (recorded<T> lhs, recorded<T> rhs) {
return lhs.time() == rhs.time() && lhs.value() == rhs.value();
}
template<class T>
std::ostream& operator<< (std::ostream& out, const recorded<T>& r) {
out << "@" << r.time() << "-" << r.value();
return out;
}
}
namespace rxn=notifications;
inline std::ostream& operator<< (std::ostream& out, const std::vector<rxcpp::notifications::subscription>& vs) {
return rxcpp::notifications::detail::ostreamvector(out, vs);
}
template<class T>
inline std::ostream& operator<< (std::ostream& out, const std::vector<rxcpp::notifications::recorded<T>>& vr) {
return rxcpp::notifications::detail::ostreamvector(out, vr);
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_COORDINATION_HPP)
#define RXCPP_RX_COORDINATION_HPP
namespace rxcpp {
struct tag_coordinator {};
struct coordinator_base { using coordinator_tag = tag_coordinator; };
template<class T, class C = rxu::types_checked>
struct is_coordinator : public std::false_type {};
template<class T>
struct is_coordinator<T, typename rxu::types_checked_from<typename T::coordinator_tag>::type>
: public std::is_convertible<typename T::coordinator_tag*, tag_coordinator*> {};
struct tag_coordination {};
struct coordination_base { using coordination_tag = tag_coordination; };
namespace detail {
template<class T, class C = rxu::types_checked>
struct is_coordination : public std::false_type {};
template<class T>
struct is_coordination<T, typename rxu::types_checked_from<typename T::coordination_tag>::type>
: public std::is_convertible<typename T::coordination_tag*, tag_coordination*> {};
}
template<class T, class Decayed = rxu::decay_t<T>>
struct is_coordination : detail::is_coordination<Decayed>
{
};
template<class Coordination, class DecayedCoordination = rxu::decay_t<Coordination>>
using coordination_tag_t = typename DecayedCoordination::coordination_tag;
template<class Input>
class coordinator : public coordinator_base
{
public:
using input_type = Input;
private:
struct not_supported { using type = not_supported; };
template<class Observable>
struct get_observable
{
using type = decltype(std::declval<input_type>().in(std::declval<Observable>()));
};
template<class Subscriber>
struct get_subscriber
{
using type = decltype(std::declval<input_type>().out(std::declval<Subscriber>()));
};
template<class F>
struct get_action_function
{
using type = decltype(std::declval<input_type>().act(std::declval<F>()));
};
public:
input_type input;
template<class T>
struct get
{
using type = typename std::conditional_t<rxsc::detail::is_action_function<T>::value, get_action_function<T>,
typename std::conditional_t<is_observable<T>::value, get_observable<T>,
typename std::conditional_t<is_subscriber<T>::value, get_subscriber<T>, not_supported>>>::type;
};
coordinator(Input i) : input(i) {}
rxsc::worker get_worker() const {
return input.get_worker();
}
rxsc::scheduler get_scheduler() const {
return input.get_scheduler();
}
template<class Observable>
auto in(Observable o) const
-> typename get_observable<Observable>::type {
return input.in(std::move(o));
static_assert(is_observable<Observable>::value, "can only synchronize observables");
}
template<class Subscriber>
auto out(Subscriber s) const
-> typename get_subscriber<Subscriber>::type {
return input.out(std::move(s));
static_assert(is_subscriber<Subscriber>::value, "can only synchronize subscribers");
}
template<class F>
auto act(F f) const
-> typename get_action_function<F>::type {
return input.act(std::move(f));
static_assert(rxsc::detail::is_action_function<F>::value, "can only synchronize action functions");
}
};
class identity_one_worker : public coordination_base
{
rxsc::scheduler factory;
class input_type
{
rxsc::worker controller;
rxsc::scheduler factory;
public:
explicit input_type(rxsc::worker w)
: controller(w)
, factory(rxsc::make_same_worker(w))
{
}
inline rxsc::worker get_worker() const {
return controller;
}
inline rxsc::scheduler get_scheduler() const {
return factory;
}
inline rxsc::scheduler::clock_type::time_point now() const {
return factory.now();
}
template<class Observable>
auto in(Observable o) const
-> Observable {
return o;
}
template<class Subscriber>
auto out(Subscriber s) const
-> Subscriber {
return s;
}
template<class F>
auto act(F f) const
-> F {
return f;
}
};
public:
explicit identity_one_worker(rxsc::scheduler sc) : factory(sc) {}
using coordinator_type = coordinator<input_type>;
inline rxsc::scheduler::clock_type::time_point now() const {
return factory.now();
}
inline coordinator_type create_coordinator(composite_subscription cs = composite_subscription()) const {
auto w = factory.create_worker(std::move(cs));
return coordinator_type(input_type(std::move(w)));
}
};
inline identity_one_worker identity_immediate() {
static identity_one_worker r(rxsc::make_immediate());
return r;
}
inline identity_one_worker identity_current_thread() {
static identity_one_worker r(rxsc::make_current_thread());
return r;
}
inline identity_one_worker identity_same_worker(rxsc::worker w) {
return identity_one_worker(rxsc::make_same_worker(w));
}
class serialize_one_worker : public coordination_base
{
rxsc::scheduler factory;
template<class F>
struct serialize_action
{
F dest;
std::shared_ptr<std::mutex> lock;
serialize_action(F d, std::shared_ptr<std::mutex> m)
: dest(std::move(d))
, lock(std::move(m))
{
if (!lock) {
std::terminate();
}
}
auto operator()(const rxsc::schedulable& scbl) const
-> decltype(dest(scbl)) {
std::unique_lock<std::mutex> guard(*lock);
return dest(scbl);
}
};
template<class Observer>
struct serialize_observer
{
using this_type = serialize_observer<Observer>;
using dest_type = rxu::decay_t<Observer>;
using value_type = typename dest_type::value_type;
using observer_type = observer<value_type, this_type>;
dest_type dest;
std::shared_ptr<std::mutex> lock;
serialize_observer(dest_type d, std::shared_ptr<std::mutex> m)
: dest(std::move(d))
, lock(std::move(m))
{
if (!lock) {
std::terminate();
}
}
void on_next(value_type v) const {
std::unique_lock<std::mutex> guard(*lock);
dest.on_next(v);
}
void on_error(rxu::error_ptr e) const {
std::unique_lock<std::mutex> guard(*lock);
dest.on_error(e);
}
void on_completed() const {
std::unique_lock<std::mutex> guard(*lock);
dest.on_completed();
}
template<class Subscriber>
static subscriber<value_type, observer_type> make(const Subscriber& s, std::shared_ptr<std::mutex> m) {
return make_subscriber<value_type>(s, observer_type(this_type(s.get_observer(), std::move(m))));
}
};
class input_type
{
rxsc::worker controller;
rxsc::scheduler factory;
std::shared_ptr<std::mutex> lock;
public:
explicit input_type(rxsc::worker w, std::shared_ptr<std::mutex> m)
: controller(w)
, factory(rxsc::make_same_worker(w))
, lock(std::move(m))
{
}
inline rxsc::worker get_worker() const {
return controller;
}
inline rxsc::scheduler get_scheduler() const {
return factory;
}
inline rxsc::scheduler::clock_type::time_point now() const {
return factory.now();
}
template<class Observable>
auto in(Observable o) const
-> Observable {
return o;
}
template<class Subscriber>
auto out(const Subscriber& s) const
-> decltype(serialize_observer<decltype(s.get_observer())>::make(s, lock)) {
return serialize_observer<decltype(s.get_observer())>::make(s, lock);
}
template<class F>
auto act(F f) const
-> serialize_action<F> {
return serialize_action<F>(std::move(f), lock);
}
};
public:
explicit serialize_one_worker(rxsc::scheduler sc) : factory(sc) {}
using coordinator_type = coordinator<input_type>;
inline rxsc::scheduler::clock_type::time_point now() const {
return factory.now();
}
inline coordinator_type create_coordinator(composite_subscription cs = composite_subscription()) const {
auto w = factory.create_worker(std::move(cs));
std::shared_ptr<std::mutex> lock = std::make_shared<std::mutex>();
return coordinator_type(input_type(std::move(w), std::move(lock)));
}
};
inline serialize_one_worker serialize_event_loop() {
static serialize_one_worker r(rxsc::make_event_loop());
return r;
}
inline serialize_one_worker serialize_new_thread() {
static serialize_one_worker r(rxsc::make_new_thread());
return r;
}
inline serialize_one_worker serialize_same_worker(rxsc::worker w) {
return serialize_one_worker(rxsc::make_same_worker(w));
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_SOURCES_HPP)
#define RXCPP_RX_SOURCES_HPP
namespace rxcpp {
namespace sources {
struct tag_source {};
template<class T>
struct source_base
{
using value_type = T;
using source_tag = tag_source;
};
template<class T>
class is_source
{
template<class C>
static typename C::source_tag* check(int);
template<class C>
static void check(...);
public:
static const bool value = std::is_convertible<decltype(check<rxu::decay_t<T>>(0)), tag_source*>::value;
};
}
namespace rxs=sources;
}
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_SOURCES_RX_CREATE_HPP)
#define RXCPP_SOURCES_RX_CREATE_HPP
/*! \file rx-create.hpp
\brief Returns an observable that executes the specified function when a subscriber subscribes to it.
\tparam T the type of the items that this observable emits
\tparam OnSubscribe the type of OnSubscribe handler function
\param os OnSubscribe event handler
\return Observable that executes the specified function when a Subscriber subscribes to it.
\sample
\snippet create.cpp Create sample
\snippet output.txt Create sample
\warning
It is good practice to check the observer's is_subscribed state from within the function you pass to create
so that your observable can stop emitting items or doing expensive calculations when there is no longer an interested observer.
\badcode
\snippet create.cpp Create bad code
\snippet output.txt Create bad code
\goodcode
\snippet create.cpp Create good code
\snippet output.txt Create good code
\warning
It is good practice to use operators like observable::take to control lifetime rather than use the subscription explicitly.
\goodcode
\snippet create.cpp Create great code
\snippet output.txt Create great code
*/
namespace rxcpp {
namespace sources {
namespace detail {
template<class T, class OnSubscribe>
struct create : public source_base<T>
{
using this_type = create<T, OnSubscribe>;
using on_subscribe_type = rxu::decay_t<OnSubscribe>;
on_subscribe_type on_subscribe_function;
create(on_subscribe_type os)
: on_subscribe_function(std::move(os))
{
}
template<class Subscriber>
void on_subscribe(Subscriber o) const {
on_exception(
[&](){
this->on_subscribe_function(o);
return true;
},
o);
}
};
}
/*! @copydoc rx-create.hpp
*/
template<class T, class OnSubscribe>
auto create(OnSubscribe os)
-> observable<T, detail::create<T, OnSubscribe>> {
return observable<T, detail::create<T, OnSubscribe>>(
detail::create<T, OnSubscribe>(std::move(os)));
}
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_SOURCES_RX_RANGE_HPP)
#define RXCPP_SOURCES_RX_RANGE_HPP
/*! \file rx-range.hpp
\brief Returns an observable that sends values in the range ```first```-```last``` by adding ```step``` to the previous value. The values are sent on the specified scheduler.
\tparam T the type of the values that this observable emits
\tparam Coordination the type of the scheduler (optional)
\param first first value to send (optional)
\param last last value to send (optional)
\param step value to add to the previous value to get the next value (optional)
\param cn the scheduler to run the generator loop on (optional)
\return Observable that sends values in the range ```first```-```last``` by adding ```step``` to the previous value using the specified scheduler.
\sample
\snippet range.cpp threaded range sample
\snippet output.txt threaded range sample
An alternative way to specify the scheduler for emitted values is to use observable::subscribe_on operator
\snippet range.cpp subscribe_on range sample
\snippet output.txt subscribe_on range sample
*/
namespace rxcpp {
namespace sources {
namespace detail {
template<class T, class Coordination>
struct range : public source_base<T>
{
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
struct range_state_type
{
range_state_type(T f, T l, std::ptrdiff_t s, coordination_type cn)
: next(f)
, last(l)
, step(s)
, coordination(std::move(cn))
{
}
mutable T next;
T last;
std::ptrdiff_t step;
coordination_type coordination;
};
range_state_type initial;
range(T f, T l, std::ptrdiff_t s, coordination_type cn)
: initial(f, l, s, std::move(cn))
{
}
template<class Subscriber>
void on_subscribe(Subscriber o) const {
static_assert(is_subscriber<Subscriber>::value, "subscribe must be passed a subscriber");
// creates a worker whose lifetime is the same as this subscription
auto coordinator = initial.coordination.create_coordinator(o.get_subscription());
auto controller = coordinator.get_worker();
auto state = initial;
auto producer = [=](const rxsc::schedulable& self){
auto& dest = o;
if (!dest.is_subscribed()) {
// terminate loop
return;
}
// send next value
dest.on_next(state.next);
if (!dest.is_subscribed()) {
// terminate loop
return;
}
if (std::max(state.last, state.next) - std::min(state.last, state.next) < std::abs(state.step)) {
if (state.last != state.next) {
dest.on_next(state.last);
}
dest.on_completed();
// o is unsubscribed
return;
}
state.next = static_cast<T>(state.step + state.next);
// tail recurse this same action to continue loop
self();
};
auto selectedProducer = on_exception(
[&](){return coordinator.act(producer);},
o);
if (selectedProducer.empty()) {
return;
}
controller.schedule(selectedProducer.get());
}
};
}
/*! @copydoc rx-create.hpp
*/
template<class T>
auto range(T first = 0, T last = std::numeric_limits<T>::max(), std::ptrdiff_t step = 1)
-> observable<T, detail::range<T, identity_one_worker>> {
return observable<T, detail::range<T, identity_one_worker>>(
detail::range<T, identity_one_worker>(first, last, step, identity_current_thread()));
}
/*! @copydoc rx-create.hpp
*/
template<class T, class Coordination>
auto range(T first, T last, std::ptrdiff_t step, Coordination cn)
-> observable<T, detail::range<T, Coordination>> {
return observable<T, detail::range<T, Coordination>>(
detail::range<T, Coordination>(first, last, step, std::move(cn)));
}
/*! @copydoc rx-create.hpp
*/
template<class T, class Coordination>
auto range(T first, T last, Coordination cn)
-> typename std::enable_if<is_coordination<Coordination>::value,
observable<T, detail::range<T, Coordination>>>::type {
return observable<T, detail::range<T, Coordination>>(
detail::range<T, Coordination>(first, last, 1, std::move(cn)));
}
/*! @copydoc rx-create.hpp
*/
template<class T, class Coordination>
auto range(T first, Coordination cn)
-> typename std::enable_if<is_coordination<Coordination>::value,
observable<T, detail::range<T, Coordination>>>::type {
return observable<T, detail::range<T, Coordination>>(
detail::range<T, Coordination>(first, std::numeric_limits<T>::max(), 1, std::move(cn)));
}
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_SOURCES_RX_ITERATE_HPP)
#define RXCPP_SOURCES_RX_ITERATE_HPP
/*! \file rx-iterate.hpp
\brief Returns an observable that sends each value in the collection, on the specified scheduler.
\tparam Collection the type of the collection of values that this observable emits
\tparam Coordination the type of the scheduler (optional)
\param c collection containing values to send
\param cn the scheduler to use for scheduling the items (optional)
\return Observable that sends each value in the collection.
\sample
\snippet iterate.cpp iterate sample
\snippet output.txt iterate sample
\sample
\snippet iterate.cpp threaded iterate sample
\snippet output.txt threaded iterate sample
*/
namespace rxcpp {
namespace sources {
namespace detail {
template<class Collection>
struct is_iterable
{
using collection_type = rxu::decay_t<Collection>;
struct not_void {};
template<class CC>
static auto check(int) -> decltype(std::begin(std::declval<CC>()));
template<class CC>
static not_void check(...);
static const bool value = !std::is_same_v<decltype(check<collection_type>(0)), not_void>;
};
template<class Collection>
struct iterate_traits
{
// add const due to we don't want to modify original values!
using collection_type = std::add_const_t<rxu::decay_t<Collection>>;
using iterator_type = rxu::decay_t<decltype(std::begin(std::declval<collection_type>()))>;
using value_type = rxu::value_type_t<std::iterator_traits<iterator_type>>;
};
template<class Collection, class Coordination>
struct iterate : public source_base<rxu::value_type_t<iterate_traits<Collection>>>
{
using this_type = iterate<Collection, Coordination>;
using traits = iterate_traits<Collection>;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
using collection_type = typename traits::collection_type;
using collection_type_ptr = std::shared_ptr<collection_type>;
using iterator_type = typename traits::iterator_type;
struct iterate_initial_type
{
iterate_initial_type(Collection&& c, coordination_type cn)
: collection_ptr(std::make_shared<collection_type>(std::move(c)))
, coordination(std::move(cn)) { }
iterate_initial_type(const Collection& c, coordination_type cn)
: collection_ptr(std::make_shared<collection_type>(c))
, coordination(std::move(cn)) { }
collection_type_ptr collection_ptr;
coordination_type coordination;
};
iterate_initial_type initial;
iterate(Collection&& c, coordination_type cn)
: initial(std::move(c), std::move(cn)) { }
iterate(const Collection& c, coordination_type cn)
: initial(c, std::move(cn)) { }
template<class Subscriber>
void on_subscribe(Subscriber o) const {
static_assert(is_subscriber<Subscriber>::value, "subscribe must be passed a subscriber");
using output_type = typename coordinator_type::template get<Subscriber>::type;
struct iterate_state_type
: public iterate_initial_type
{
iterate_state_type(const iterate_initial_type& i, output_type o)
: iterate_initial_type(i)
, cursor(std::begin(*iterate_initial_type::collection_ptr))
, end(std::end(*iterate_initial_type::collection_ptr))
, out(std::move(o))
{
}
iterate_state_type(const iterate_state_type& o)
: iterate_initial_type(o)
, cursor(std::begin(*iterate_initial_type::collection_ptr))
, end(std::end(*iterate_initial_type::collection_ptr))
, out(std::move(o.out)) // since lambda capture does not yet support move
{
}
mutable iterator_type cursor;
iterator_type end;
mutable output_type out;
};
// creates a worker whose lifetime is the same as this subscription
auto coordinator = initial.coordination.create_coordinator(o.get_subscription());
iterate_state_type state(initial, o);
auto controller = coordinator.get_worker();
auto producer = [state](const rxsc::schedulable& self){
if (!state.out.is_subscribed()) {
// terminate loop
return;
}
if (state.cursor != state.end) {
// send next value
state.out.on_next(*state.cursor);
++state.cursor;
}
if (state.cursor == state.end) {
state.out.on_completed();
// o is unsubscribed
return;
}
// tail recurse this same action to continue loop
self();
};
auto selectedProducer = on_exception(
[&](){return coordinator.act(producer);},
o);
if (selectedProducer.empty()) {
return;
}
controller.schedule(selectedProducer.get());
}
};
}
/*! @copydoc rx-iterate.hpp
*/
template<class Collection>
auto iterate(Collection&& c)
-> observable<rxu::value_type_t<detail::iterate_traits<rxu::decay_t<Collection>>>, detail::iterate<rxu::decay_t<Collection>, identity_one_worker>> {
return observable<rxu::value_type_t<detail::iterate_traits<rxu::decay_t<Collection>>>, detail::iterate<rxu::decay_t<Collection>, identity_one_worker>>(
detail::iterate<rxu::decay_t<Collection>, identity_one_worker>(std::forward<Collection>(c), identity_immediate()));
}
/*! @copydoc rx-iterate.hpp
*/
template<class Collection, class Coordination>
auto iterate(Collection&& c, Coordination cn)
-> observable<rxu::value_type_t<detail::iterate_traits<rxu::decay_t<Collection>>>, detail::iterate<rxu::decay_t<Collection>, Coordination>> {
return observable<rxu::value_type_t<detail::iterate_traits<rxu::decay_t<Collection>>>, detail::iterate<rxu::decay_t<Collection>, Coordination>>(
detail::iterate<rxu::decay_t<Collection>, Coordination>(std::forward<Collection>(c), std::move(cn)));
}
/*! Returns an observable that sends an empty set of values and then completes.
\tparam T the type of elements (not) to be sent
\return Observable that sends an empty set of values and then completes.
This is a degenerate case of rxcpp::observable<void,void>#from(Value0,ValueN...) operator.
\note This is a degenerate case of ```from(Value0 v0, ValueN... vn)``` operator.
*/
template<class T>
auto from()
-> decltype(iterate(std::initializer_list<T>(), identity_immediate())) {
return iterate(std::initializer_list<T>(), identity_immediate());
}
/*! Returns an observable that sends an empty set of values and then completes, on the specified scheduler.
\tparam T the type of elements (not) to be sent
\tparam Coordination the type of the scheduler
\return Observable that sends an empty set of values and then completes.
\note This is a degenerate case of ```from(Coordination cn, Value0 v0, ValueN... vn)``` operator.
*/
template<class T, class Coordination>
auto from(Coordination cn)
-> typename std::enable_if<is_coordination<Coordination>::value,
decltype( iterate(std::initializer_list<T>(), std::move(cn)))>::type {
return iterate(std::initializer_list<T>(), std::move(cn));
}
/*! Returns an observable that sends each value from its arguments list.
\tparam Value0 ...
\tparam ValueN the type of sending values
\param v0 ...
\param vn values to send
\return Observable that sends each value from its arguments list.
\sample
\snippet from.cpp from sample
\snippet output.txt from sample
\note This operator is useful to send separated values. If they are stored as a collection, use observable<void,void>::iterate instead.
*/
template<class Value0, class... ValueN>
auto from(Value0&& v0, ValueN&&... vn)
-> typename std::enable_if<!is_coordination<rxu::decay_t<Value0>>::value,
decltype(iterate(std::declval<std::array<rxu::decay_t<Value0>, sizeof...(ValueN) + 1>>(), identity_immediate()))>::type {
std::array<rxu::decay_t<Value0>, sizeof...(ValueN) + 1> c{{std::forward<Value0>(v0), std::forward<ValueN>(vn)...}};
return iterate(std::move(c), identity_immediate());
}
/*! Returns an observable that sends each value from its arguments list, on the specified scheduler.
\tparam Coordination the type of the scheduler
\tparam Value0 ...
\tparam ValueN the type of sending values
\param cn the scheduler to use for scheduling the items
\param v0 ...
\param vn values to send
\return Observable that sends each value from its arguments list.
\sample
\snippet from.cpp threaded from sample
\snippet output.txt threaded from sample
\note This operator is useful to send separated values. If they are stored as a collection, use observable<void,void>::iterate instead.
*/
template<class Coordination, class Value0, class... ValueN>
auto from(Coordination cn, Value0&& v0, ValueN&&... vn)
-> typename std::enable_if<is_coordination<Coordination>::value,
decltype(iterate(std::declval<std::array<rxu::decay_t<Value0>, sizeof...(ValueN) + 1>>(), std::move(cn)))>::type {
std::array<rxu::decay_t<Value0>, sizeof...(ValueN) + 1> c{{std::forward<Value0>(v0), std::forward<ValueN>(vn)...}};
return iterate(std::move(c), std::move(cn));
}
/*! Returns an observable that sends the specified item to observer and then completes.
\tparam T the type of the emitted item
\param v the value to send
\return Observable that sends the specified item to observer and then completes.
\sample
\snippet just.cpp just sample
\snippet output.txt just sample
*/
template<class Value0>
auto just(Value0&& v0)
-> typename std::enable_if<!is_coordination<rxu::decay_t<Value0>>::value,
decltype(iterate(std::declval<std::array<rxu::decay_t<Value0>, 1>>(), identity_immediate()))>::type {
std::array<rxu::decay_t<Value0>, 1> c{{std::forward<Value0>(v0)}};
return iterate(std::move(c), identity_immediate());
}
/*! Returns an observable that sends the specified item to observer and then completes, on the specified scheduler.
\tparam T the type of the emitted item
\tparam Coordination the type of the scheduler
\param v the value to send
\param cn the scheduler to use for scheduling the items
\return Observable that sends the specified item to observer and then completes.
\sample
\snippet just.cpp threaded just sample
\snippet output.txt threaded just sample
*/
template<class Value0, class Coordination>
auto just(Value0&& v0, Coordination cn)
-> typename std::enable_if<is_coordination<Coordination>::value,
decltype(iterate(std::declval<std::array<rxu::decay_t<Value0>, 1>>(), std::move(cn)))>::type {
std::array<rxu::decay_t<Value0>, 1> c{{std::forward<Value0>(v0)}};
return iterate(std::move(c), std::move(cn));
}
/*! Returns an observable that sends the specified values before it begins to send items emitted by the given observable.
\tparam Observable the type of the observable that emits values for resending
\tparam Value0 ...
\tparam ValueN the type of sending values
\param o the observable that emits values for resending
\param v0 ...
\param vn values to send
\return Observable that sends the specified values before it begins to send items emitted by the given observable.
\sample
\snippet start_with.cpp full start_with sample
\snippet output.txt full start_with sample
Instead of passing the observable as a parameter, you can use rxcpp::observable<T, SourceOperator>::start_with method of the existing observable:
\snippet start_with.cpp short start_with sample
\snippet output.txt short start_with sample
*/
template<class Observable, class Value0, class... ValueN>
auto start_with(Observable o, Value0&& v0, ValueN&&... vn)
-> decltype(from(rxu::value_type_t<Observable>(std::forward<Value0>(v0)), rxu::value_type_t<Observable>(std::forward<ValueN>(vn))...).concat(o)) {
return from(rxu::value_type_t<Observable>(std::forward<Value0>(v0)), rxu::value_type_t<Observable>(std::forward<ValueN>(vn))...).concat(o);
}
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_SOURCES_RX_INTERVAL_HPP)
#define RXCPP_SOURCES_RX_INTERVAL_HPP
/*! \file rx-interval.hpp
\brief Returns an observable that emits a sequential integer every specified time interval, on the specified scheduler.
\tparam Coordination the type of the scheduler (optional)
\param period period between emitted values
\param cn the scheduler to use for scheduling the items (optional)
\return Observable that sends a sequential integer each time interval
\sample
\snippet interval.cpp interval sample
\snippet output.txt interval sample
\sample
\snippet interval.cpp immediate interval sample
\snippet output.txt immediate interval sample
\sample
\snippet interval.cpp threaded interval sample
\snippet output.txt threaded interval sample
\sample
\snippet interval.cpp threaded immediate interval sample
\snippet output.txt threaded immediate interval sample
*/
namespace rxcpp {
namespace sources {
namespace detail {
template<class Coordination>
struct interval : public source_base<long>
{
using this_type = interval<Coordination>;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
struct interval_initial_type
{
interval_initial_type(rxsc::scheduler::clock_type::time_point i, rxsc::scheduler::clock_type::duration p, coordination_type cn)
: initial(i)
, period(p)
, coordination(std::move(cn))
{
}
rxsc::scheduler::clock_type::time_point initial;
rxsc::scheduler::clock_type::duration period;
coordination_type coordination;
};
interval_initial_type initial;
interval(rxsc::scheduler::clock_type::time_point i, rxsc::scheduler::clock_type::duration p, coordination_type cn)
: initial(i, p, std::move(cn))
{
}
template<class Subscriber>
void on_subscribe(Subscriber o) const {
static_assert(is_subscriber<Subscriber>::value, "subscribe must be passed a subscriber");
// creates a worker whose lifetime is the same as this subscription
auto coordinator = initial.coordination.create_coordinator(o.get_subscription());
auto controller = coordinator.get_worker();
auto counter = std::make_shared<long>(0);
auto producer = [o, counter](const rxsc::schedulable&) {
// send next value
o.on_next(++(*counter));
};
auto selectedProducer = on_exception(
[&](){return coordinator.act(producer);},
o);
if (selectedProducer.empty()) {
return;
}
controller.schedule_periodically(initial.initial, initial.period, selectedProducer.get());
}
};
template<class Duration, class Coordination>
struct defer_interval : public defer_observable<
rxu::all_true<
std::is_convertible<Duration, rxsc::scheduler::clock_type::duration>::value,
is_coordination<Coordination>::value>,
void,
interval, Coordination>
{
};
}
/*! @copydoc rx-interval.hpp
*/
template<class Duration>
auto interval(Duration period)
-> typename std::enable_if<
detail::defer_interval<Duration, identity_one_worker>::value,
typename detail::defer_interval<Duration, identity_one_worker>::observable_type>::type {
return detail::defer_interval<Duration, identity_one_worker>::make(identity_current_thread().now(), period, identity_current_thread());
}
/*! @copydoc rx-interval.hpp
*/
template<class Coordination>
auto interval(rxsc::scheduler::clock_type::duration period, Coordination cn)
-> typename std::enable_if<
detail::defer_interval<rxsc::scheduler::clock_type::duration, Coordination>::value,
typename detail::defer_interval<rxsc::scheduler::clock_type::duration, Coordination>::observable_type>::type {
return detail::defer_interval<rxsc::scheduler::clock_type::duration, Coordination>::make(cn.now(), period, std::move(cn));
}
/*! @copydoc rx-interval.hpp
*/
template<class Duration>
auto interval(rxsc::scheduler::clock_type::time_point when, Duration period)
-> typename std::enable_if<
detail::defer_interval<Duration, identity_one_worker>::value,
typename detail::defer_interval<Duration, identity_one_worker>::observable_type>::type {
return detail::defer_interval<Duration, identity_one_worker>::make(when, period, identity_current_thread());
}
/*! @copydoc rx-interval.hpp
*/
template<class Coordination>
auto interval(rxsc::scheduler::clock_type::time_point when, rxsc::scheduler::clock_type::duration period, Coordination cn)
-> typename std::enable_if<
detail::defer_interval<rxsc::scheduler::clock_type::duration, Coordination>::value,
typename detail::defer_interval<rxsc::scheduler::clock_type::duration, Coordination>::observable_type>::type {
return detail::defer_interval<rxsc::scheduler::clock_type::duration, Coordination>::make(when, period, std::move(cn));
}
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_SOURCES_RX_EMPTY_HPP)
#define RXCPP_SOURCES_RX_EMPTY_HPP
/*! \file rx-empty.hpp
\brief Returns an observable that sends no items to observer and immediately completes, on the specified scheduler.
\tparam T the type of (not) emitted items
\tparam Coordination the type of the scheduler (optional)
\param cn the scheduler to use for scheduling the items (optional)
\return Observable that sends no items to observer and immediately completes.
\sample
\snippet empty.cpp empty sample
\snippet output.txt empty sample
\sample
\snippet empty.cpp threaded empty sample
\snippet output.txt threaded empty sample
*/
namespace rxcpp {
namespace sources {
/*! @copydoc rx-empty.hpp
*/
template<class T>
auto empty()
-> decltype(from<T>()) {
return from<T>();
}
/*! @copydoc rx-empty.hpp
*/
template<class T, class Coordination>
auto empty(Coordination cn)
-> decltype(from<T>(std::move(cn))) {
return from<T>(std::move(cn));
}
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_SOURCES_RX_DEFER_HPP)
#define RXCPP_SOURCES_RX_DEFER_HPP
/*! \file rx-defer.hpp
\brief Returns an observable that calls the specified observable factory to create an observable for each new observer that subscribes.
\tparam ObservableFactory the type of the observable factory
\param of the observable factory function to invoke for each observer that subscribes to the resulting observable
\return observable whose observers' subscriptions trigger an invocation of the given observable factory function
\sample
\snippet defer.cpp defer sample
\snippet output.txt defer sample
*/
namespace rxcpp {
namespace sources {
namespace detail {
template<class ObservableFactory>
struct defer_traits
{
using observable_factory_type = rxu::decay_t<ObservableFactory>;
using collection_type = decltype(std::declval<observable_factory_type>()());
using value_type = typename collection_type::value_type;
};
template<class ObservableFactory>
struct defer : public source_base<rxu::value_type_t<defer_traits<ObservableFactory>>>
{
using this_type = defer<ObservableFactory>;
using traits = defer_traits<ObservableFactory>;
using observable_factory_type = typename traits::observable_factory_type;
using collection_type = typename traits::collection_type;
observable_factory_type observable_factory;
defer(observable_factory_type of)
: observable_factory(std::move(of))
{
}
template<class Subscriber>
void on_subscribe(Subscriber o) const {
auto selectedCollection = on_exception(
[this](){return this->observable_factory();},
o);
if (selectedCollection.empty()) {
return;
}
selectedCollection->subscribe(o);
}
};
}
/*! @copydoc rx-defer.hpp
*/
template<class ObservableFactory>
auto defer(ObservableFactory of)
-> observable<rxu::value_type_t<detail::defer_traits<ObservableFactory>>, detail::defer<ObservableFactory>> {
return observable<rxu::value_type_t<detail::defer_traits<ObservableFactory>>, detail::defer<ObservableFactory>>(
detail::defer<ObservableFactory>(std::move(of)));
}
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_SOURCES_RX_NEVER_HPP)
#define RXCPP_SOURCES_RX_NEVER_HPP
/*! \file rx-never.hpp
\brief Returns an observable that never sends any items or notifications to observer.
\tparam T the type of (not) emitted items
\return Observable that never sends any items or notifications to observer.
\sample
\snippet never.cpp never sample
\snippet output.txt never sample
*/
namespace rxcpp {
namespace sources {
namespace detail {
template<class T>
struct never : public source_base<T>
{
template<class Subscriber>
void on_subscribe(Subscriber) const {
}
};
}
/*! @copydoc rx-never.hpp
*/
template<class T>
auto never()
-> observable<T, detail::never<T>> {
return observable<T, detail::never<T>>(detail::never<T>());
}
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_SOURCES_RX_ERROR_HPP)
#define RXCPP_SOURCES_RX_ERROR_HPP
/*! \file rx-error.hpp
\brief Returns an observable that sends no items to observer and immediately generates an error, on the specified scheduler.
\tparam T the type of (not) emitted items
\tparam Exception the type of the error
\tparam Coordination the type of the scheduler (optional)
\param e the error to be passed to observers
\param cn the scheduler to use for scheduling the items (optional)
\return Observable that sends no items to observer and immediately generates an error.
\sample
\snippet error.cpp error sample
\snippet output.txt error sample
\sample
\snippet error.cpp threaded error sample
\snippet output.txt threaded error sample
*/
namespace rxcpp {
namespace sources {
namespace detail {
template<class T, class Coordination>
struct error : public source_base<T>
{
using this_type = error<T, Coordination>;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
struct error_initial_type
{
error_initial_type(rxu::error_ptr e, coordination_type cn)
: exception(e)
, coordination(std::move(cn))
{
}
rxu::error_ptr exception;
coordination_type coordination;
};
error_initial_type initial;
error(rxu::error_ptr e, coordination_type cn)
: initial(e, std::move(cn))
{
}
template<class Subscriber>
void on_subscribe(Subscriber o) const {
// creates a worker whose lifetime is the same as this subscription
auto coordinator = initial.coordination.create_coordinator(o.get_subscription());
auto controller = coordinator.get_worker();
auto exception = initial.exception;
auto producer = [=](const rxsc::schedulable&){
auto& dest = o;
if (!dest.is_subscribed()) {
// terminate loop
return;
}
dest.on_error(exception);
// o is unsubscribed
};
auto selectedProducer = on_exception(
[&](){return coordinator.act(producer);},
o);
if (selectedProducer.empty()) {
return;
}
controller.schedule(selectedProducer.get());
}
};
struct throw_ptr_tag{};
struct throw_instance_tag{};
template <class T, class Coordination>
auto make_error(throw_ptr_tag&&, rxu::error_ptr exception, Coordination cn)
-> observable<T, error<T, Coordination>> {
return observable<T, error<T, Coordination>>(error<T, Coordination>(std::move(exception), std::move(cn)));
}
template <class T, class E, class Coordination>
auto make_error(throw_instance_tag&&, E e, Coordination cn)
-> observable<T, error<T, Coordination>> {
rxu::error_ptr ep = rxu::make_error_ptr(e);
return observable<T, error<T, Coordination>>(error<T, Coordination>(std::move(ep), std::move(cn)));
}
}
}
namespace sources {
/*! @copydoc rx-error.hpp
*/
template<class T, class E>
auto error(E e)
-> decltype(detail::make_error<T>(typename std::conditional_t<std::is_same_v<rxu::error_ptr, rxu::decay_t<E>>, detail::throw_ptr_tag, detail::throw_instance_tag>(), std::move(e), identity_immediate())) {
return detail::make_error<T>(typename std::conditional_t<std::is_same_v<rxu::error_ptr, rxu::decay_t<E>>, detail::throw_ptr_tag, detail::throw_instance_tag>(), std::move(e), identity_immediate());
}
/*! @copydoc rx-error.hpp
*/
template<class T, class E, class Coordination>
auto error(E e, Coordination cn)
-> decltype(detail::make_error<T>(typename std::conditional_t<std::is_same_v<rxu::error_ptr, rxu::decay_t<E>>, detail::throw_ptr_tag, detail::throw_instance_tag>(), std::move(e), std::move(cn))) {
return detail::make_error<T>(typename std::conditional_t<std::is_same_v<rxu::error_ptr, rxu::decay_t<E>>, detail::throw_ptr_tag, detail::throw_instance_tag>(), std::move(e), std::move(cn));
}
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_SOURCES_RX_SCOPE_HPP)
#define RXCPP_SOURCES_RX_SCOPE_HPP
/*! \file rx-scope.hpp
\brief Returns an observable that makes an observable by the specified observable factory using the resource provided by the specified resource factory for each new observer that subscribes.
\tparam ResourceFactory the type of the resource factory
\tparam ObservableFactory the type of the observable factory
\param rf the resource factory function that resturn the rxcpp::resource that is used as a resource by the observable factory
\param of the observable factory function to invoke for each observer that subscribes to the resulting observable
\return observable that makes an observable by the specified observable factory using the resource provided by the specified resource factory for each new observer that subscribes.
\sample
\snippet scope.cpp scope sample
\snippet output.txt scope sample
*/
namespace rxcpp {
namespace sources {
namespace detail {
template<class ResourceFactory, class ObservableFactory>
struct scope_traits
{
using resource_factory_type = rxu::decay_t<ResourceFactory>;
using observable_factory_type = rxu::decay_t<ObservableFactory>;
using resource_type = decltype((std::declval<resource_factory_type>())());
using collection_type = decltype(std::declval<observable_factory_type>()(resource_type()));
using value_type = typename collection_type::value_type;
static_assert(is_subscription<resource_type>::value, "ResourceFactory must return a subscription");
};
template<class ResourceFactory, class ObservableFactory>
struct scope : public source_base<rxu::value_type_t<scope_traits<ResourceFactory, ObservableFactory>>>
{
using traits = scope_traits<ResourceFactory, ObservableFactory>;
using resource_factory_type = typename traits::resource_factory_type;
using observable_factory_type = typename traits::observable_factory_type;
using resource_type = typename traits::resource_type;
using value_type = typename traits::value_type;
struct values
{
values(resource_factory_type rf, observable_factory_type of)
: resource_factory(std::move(rf))
, observable_factory(std::move(of))
{
}
resource_factory_type resource_factory;
observable_factory_type observable_factory;
};
values initial;
scope(resource_factory_type rf, observable_factory_type of)
: initial(std::move(rf), std::move(of))
{
}
template<class Subscriber>
void on_subscribe(Subscriber o) const {
struct state_type
: public std::enable_shared_from_this<state_type>
, public values
{
state_type(values i, Subscriber o)
: values(i)
, out(std::move(o))
{
}
Subscriber out;
rxu::detail::maybe<resource_type> resource;
};
auto state = std::make_shared<state_type>(state_type(initial, std::move(o)));
state->resource = on_exception(
[&](){return state->resource_factory(); },
state->out);
if (state->resource.empty()) {
return;
}
state->out.add(state->resource->get_subscription());
auto selectedCollection = on_exception(
[state](){return state->observable_factory(state->resource.get()); },
state->out);
if (selectedCollection.empty()) {
return;
}
selectedCollection->subscribe(state->out);
}
};
}
/*! @copydoc rx-scope.hpp
*/
template<class ResourceFactory, class ObservableFactory>
auto scope(ResourceFactory rf, ObservableFactory of)
-> observable<rxu::value_type_t<detail::scope_traits<ResourceFactory, ObservableFactory>>, detail::scope<ResourceFactory, ObservableFactory>> {
return observable<rxu::value_type_t<detail::scope_traits<ResourceFactory, ObservableFactory>>, detail::scope<ResourceFactory, ObservableFactory>>(
detail::scope<ResourceFactory, ObservableFactory>(std::move(rf), std::move(of)));
}
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_SOURCES_RX_TIMER_HPP)
#define RXCPP_SOURCES_RX_TIMER_HPP
/*! \file rx-timer.hpp
\brief Returns an observable that emits an integer at the specified time point.
\tparam Coordination the type of the scheduler (optional)
\param when time point when the value is emitted
\param cn the scheduler to use for scheduling the items (optional)
\return Observable that emits an integer at the specified time point
\sample
\snippet timer.cpp timepoint timer sample
\snippet output.txt timepoint timer sample
\sample
\snippet timer.cpp duration timer sample
\snippet output.txt duration timer sample
\sample
\snippet timer.cpp threaded timepoint timer sample
\snippet output.txt threaded timepoint timer sample
\sample
\snippet timer.cpp threaded duration timer sample
\snippet output.txt threaded duration timer sample
*/
namespace rxcpp {
namespace sources {
namespace detail {
template<class Coordination>
struct timer : public source_base<long>
{
using this_type = timer<Coordination>;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
struct timer_initial_type
{
timer_initial_type(rxsc::scheduler::clock_type::time_point t, coordination_type cn)
: when(t)
, coordination(std::move(cn))
{
}
rxsc::scheduler::clock_type::time_point when;
coordination_type coordination;
};
timer_initial_type initial;
timer(rxsc::scheduler::clock_type::time_point t, coordination_type cn)
: initial(t, std::move(cn))
{
}
timer(rxsc::scheduler::clock_type::duration p, coordination_type cn)
: initial(rxsc::scheduler::clock_type::time_point(), std::move(cn))
{
initial.when = initial.coordination.now() + p;
}
template<class Subscriber>
void on_subscribe(Subscriber o) const {
static_assert(is_subscriber<Subscriber>::value, "subscribe must be passed a subscriber");
// creates a worker whose lifetime is the same as this subscription
auto coordinator = initial.coordination.create_coordinator(o.get_subscription());
auto controller = coordinator.get_worker();
auto producer = [o](const rxsc::schedulable&) {
// send the value and complete
o.on_next(1L);
o.on_completed();
};
auto selectedProducer = on_exception(
[&](){return coordinator.act(producer);},
o);
if (selectedProducer.empty()) {
return;
}
controller.schedule(initial.when, selectedProducer.get());
}
};
template<class TimePointOrDuration, class Coordination>
struct defer_timer : public defer_observable<
rxu::all_true<
std::is_convertible<TimePointOrDuration, rxsc::scheduler::clock_type::time_point>::value ||
std::is_convertible<TimePointOrDuration, rxsc::scheduler::clock_type::duration>::value,
is_coordination<Coordination>::value>,
void,
timer, Coordination>
{
};
}
/*! @copydoc rx-timer.hpp
*/
template<class TimePointOrDuration>
auto timer(TimePointOrDuration when)
-> typename std::enable_if<
detail::defer_timer<TimePointOrDuration, identity_one_worker>::value,
typename detail::defer_timer<TimePointOrDuration, identity_one_worker>::observable_type>::type {
return detail::defer_timer<TimePointOrDuration, identity_one_worker>::make(when, identity_current_thread());
}
/*! @copydoc rx-timer.hpp
*/
template<class TimePointOrDuration, class Coordination>
auto timer(TimePointOrDuration when, Coordination cn)
-> typename std::enable_if<
detail::defer_timer<TimePointOrDuration, Coordination>::value,
typename detail::defer_timer<TimePointOrDuration, Coordination>::observable_type>::type {
return detail::defer_timer<TimePointOrDuration, Coordination>::make(when, std::move(cn));
}
}
}
#endif
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_SCHEDULER_SUBJECTS_HPP)
#define RXCPP_RX_SCHEDULER_SUBJECTS_HPP
namespace rxcpp {
namespace subjects {
}
namespace rxsub=subjects;
}
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_SUBJECT_HPP)
#define RXCPP_RX_SUBJECT_HPP
namespace rxcpp {
namespace subjects {
namespace detail {
template<class T>
class multicast_observer
{
using observer_type = subscriber<T>;
using list_type = std::vector<observer_type>;
struct mode
{
enum type {
Invalid = 0,
Casting,
Disposed,
Completed,
Errored
};
};
struct state_type
: public std::enable_shared_from_this<state_type>
{
explicit state_type(composite_subscription cs)
: current(mode::Casting)
, lifetime(cs)
{
}
std::mutex lock;
typename mode::type current;
rxu::error_ptr error;
composite_subscription lifetime;
};
struct completer_type
: public std::enable_shared_from_this<completer_type>
{
~completer_type()
{
}
completer_type(std::shared_ptr<state_type> s, const std::shared_ptr<completer_type>& old, observer_type o)
: state(s)
{
retain(old);
observers.push_back(o);
}
completer_type(std::shared_ptr<state_type> s, const std::shared_ptr<completer_type>& old)
: state(s)
{
retain(old);
}
void retain(const std::shared_ptr<completer_type>& old) {
if (old) {
observers.reserve(old->observers.size() + 1);
std::copy_if(
old->observers.begin(), old->observers.end(),
std::inserter(observers, observers.end()),
[](const observer_type& o){
return o.is_subscribed();
});
}
}
std::shared_ptr<state_type> state;
list_type observers;
};
// this type prevents a circular ref between state and completer
struct binder_type
: public std::enable_shared_from_this<binder_type>
{
explicit binder_type(composite_subscription cs)
: state(std::make_shared<state_type>(cs))
, id(trace_id::make_next_id_subscriber())
{
}
std::shared_ptr<state_type> state;
trace_id id;
// used to avoid taking lock in on_next
mutable std::weak_ptr<completer_type> current_completer;
// must only be accessed under state->lock
mutable std::shared_ptr<completer_type> completer;
};
std::shared_ptr<binder_type> b;
public:
using input_subscriber_type = subscriber <T, observer<T, detail::multicast_observer<T>>>;
explicit multicast_observer(composite_subscription cs)
: b(std::make_shared<binder_type>(cs))
{
std::weak_ptr<binder_type> binder = b;
b->state->lifetime.add([binder](){
auto b = binder.lock();
if (b && b->state->current == mode::Casting){
b->state->current = mode::Disposed;
b->current_completer.reset();
b->completer.reset();
}
});
}
trace_id get_id() const {
return b->id;
}
composite_subscription get_subscription() const {
return b->state->lifetime;
}
input_subscriber_type get_subscriber() const {
return make_subscriber<T>(get_id(), get_subscription(), observer<T, detail::multicast_observer<T>>(*this));
}
bool has_observers() const {
std::unique_lock<std::mutex> guard(b->state->lock);
return b->completer && !b->completer->observers.empty();
}
template<class SubscriberFrom>
void add(const SubscriberFrom& sf, observer_type o) const {
trace_activity().connect(sf, o);
std::unique_lock<std::mutex> guard(b->state->lock);
switch (b->state->current) {
case mode::Casting:
{
if (o.is_subscribed()) {
std::weak_ptr<binder_type> binder = b;
o.add([=](){
auto b = binder.lock();
if (b) {
std::unique_lock<std::mutex> guard(b->state->lock);
b->completer = std::make_shared<completer_type>(b->state, b->completer);
}
});
b->completer = std::make_shared<completer_type>(b->state, b->completer, o);
}
}
break;
case mode::Completed:
{
guard.unlock();
o.on_completed();
return;
}
break;
case mode::Errored:
{
auto e = b->state->error;
guard.unlock();
o.on_error(e);
return;
}
break;
case mode::Disposed:
{
guard.unlock();
o.unsubscribe();
return;
}
break;
default:
std::terminate();
}
}
void on_next(const T& v) const {
auto current_completer = b->current_completer.lock();
if (!current_completer) {
std::unique_lock<std::mutex> guard(b->state->lock);
b->current_completer = b->completer;
current_completer = b->current_completer.lock();
}
if (!current_completer || current_completer->observers.empty()) {
return;
}
for (auto& o : current_completer->observers) {
if (o.is_subscribed()) {
o.on_next(v);
}
}
}
void on_error(rxu::error_ptr e) const {
std::unique_lock<std::mutex> guard(b->state->lock);
if (b->state->current == mode::Casting) {
b->state->error = e;
b->state->current = mode::Errored;
auto s = b->state->lifetime;
auto c = std::move(b->completer);
b->current_completer.reset();
guard.unlock();
if (c) {
for (auto& o : c->observers) {
if (o.is_subscribed()) {
o.on_error(e);
}
}
}
s.unsubscribe();
}
}
void on_completed() const {
std::unique_lock<std::mutex> guard(b->state->lock);
if (b->state->current == mode::Casting) {
b->state->current = mode::Completed;
auto s = b->state->lifetime;
auto c = std::move(b->completer);
b->current_completer.reset();
guard.unlock();
if (c) {
for (auto& o : c->observers) {
if (o.is_subscribed()) {
o.on_completed();
}
}
}
s.unsubscribe();
}
}
};
}
template<class T>
class subject
{
detail::multicast_observer<T> s;
public:
using subscriber_type = subscriber <T, observer<T, detail::multicast_observer<T>>>;
using observable_type = observable<T>;
subject()
: s(composite_subscription())
{
}
explicit subject(composite_subscription cs)
: s(cs)
{
}
bool has_observers() const {
return s.has_observers();
}
composite_subscription get_subscription() const {
return s.get_subscription();
}
subscriber_type get_subscriber() const {
return s.get_subscriber();
}
observable<T> get_observable() const {
auto keepAlive = s;
return make_observable_dynamic<T>([=](subscriber<T> o){
keepAlive.add(keepAlive.get_subscriber(), std::move(o));
});
}
};
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_BEHAVIOR_HPP)
#define RXCPP_RX_BEHAVIOR_HPP
namespace rxcpp {
namespace subjects {
namespace detail {
template<class T>
class behavior_observer : public detail::multicast_observer<T>
{
using this_type = behavior_observer<T>;
using base_type = detail::multicast_observer<T>;
class behavior_observer_state : public std::enable_shared_from_this<behavior_observer_state>
{
mutable std::mutex lock;
mutable T value;
public:
behavior_observer_state(T first)
: value(first)
{
}
void reset(T v) const {
std::unique_lock<std::mutex> guard(lock);
value = std::move(v);
}
T get() const {
std::unique_lock<std::mutex> guard(lock);
return value;
}
};
std::shared_ptr<behavior_observer_state> state;
public:
behavior_observer(T f, composite_subscription l)
: base_type(l)
, state(std::make_shared<behavior_observer_state>(std::move(f)))
{
}
subscriber<T> get_subscriber() const {
return make_subscriber<T>(this->get_id(), this->get_subscription(), observer<T, detail::behavior_observer<T>>(*this)).as_dynamic();
}
T get_value() const {
return state->get();
}
template<class V>
void on_next(V v) const {
state->reset(v);
base_type::on_next(std::move(v));
}
};
}
template<class T>
class behavior
{
detail::behavior_observer<T> s;
public:
explicit behavior(T f, composite_subscription cs = composite_subscription())
: s(std::move(f), cs)
{
}
bool has_observers() const {
return s.has_observers();
}
T get_value() const {
return s.get_value();
}
subscriber<T> get_subscriber() const {
return s.get_subscriber();
}
observable<T> get_observable() const {
auto keepAlive = s;
return make_observable_dynamic<T>([keepAlive](subscriber<T> o){
if (keepAlive.get_subscription().is_subscribed()) {
o.on_next(keepAlive.get_value());
}
keepAlive.add(keepAlive.get_subscriber(), std::move(o));
});
}
};
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_REPLAYSUBJECT_HPP)
#define RXCPP_RX_REPLAYSUBJECT_HPP
namespace rxcpp {
namespace subjects {
namespace detail {
template<class Coordination>
struct replay_traits
{
using count_type = rxu::maybe<std::size_t>;
using period_type = rxu::maybe<rxsc::scheduler::clock_type::duration>;
using time_point_type = rxsc::scheduler::clock_type::time_point;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
};
template<class T, class Coordination>
class replay_observer : public detail::multicast_observer<T>
{
using this_type = replay_observer<T, Coordination>;
using base_type = detail::multicast_observer<T>;
using traits = replay_traits<Coordination>;
using count_type = typename traits::count_type;
using period_type = typename traits::period_type;
using time_point_type = typename traits::time_point_type;
using coordination_type = typename traits::coordination_type;
using coordinator_type = typename traits::coordinator_type;
class replay_observer_state : public std::enable_shared_from_this<replay_observer_state>
{
mutable std::mutex lock;
mutable std::list<T> values;
mutable std::list<time_point_type> time_points;
mutable count_type count;
mutable period_type period;
mutable composite_subscription replayLifetime;
public:
mutable coordination_type coordination;
mutable coordinator_type coordinator;
private:
void remove_oldest() const {
values.pop_front();
if (!period.empty()) {
time_points.pop_front();
}
}
public:
~replay_observer_state(){
replayLifetime.unsubscribe();
}
explicit replay_observer_state(count_type _count, period_type _period, coordination_type _coordination, coordinator_type _coordinator, composite_subscription _replayLifetime)
: count(_count)
, period(_period)
, replayLifetime(_replayLifetime)
, coordination(std::move(_coordination))
, coordinator(std::move(_coordinator))
{
}
void add(const T& v) const {
std::unique_lock<std::mutex> guard(lock);
if (!count.empty()) {
if (values.size() == count.get())
remove_oldest();
}
if (!period.empty()) {
auto now = coordination.now();
while (!time_points.empty() && (now - time_points.front() > period.get()))
remove_oldest();
time_points.push_back(now);
}
values.push_back(v);
}
std::list<T> get() const {
std::unique_lock<std::mutex> guard(lock);
return values;
}
};
std::shared_ptr<replay_observer_state> state;
public:
replay_observer(count_type count, period_type period, coordination_type coordination, composite_subscription replayLifetime, composite_subscription subscriberLifetime)
: base_type(subscriberLifetime)
{
replayLifetime.add(subscriberLifetime);
auto coordinator = coordination.create_coordinator(replayLifetime);
state = std::make_shared<replay_observer_state>(std::move(count), std::move(period), std::move(coordination), std::move(coordinator), std::move(replayLifetime));
}
subscriber<T> get_subscriber() const {
return make_subscriber<T>(this->get_id(), this->get_subscription(), observer<T, detail::replay_observer<T, Coordination>>(*this)).as_dynamic();
}
std::list<T> get_values() const {
return state->get();
}
coordinator_type& get_coordinator() const {
return state->coordinator;
}
void on_next(const T& v) const {
state->add(v);
base_type::on_next(v);
}
};
}
template<class T, class Coordination>
class replay
{
using traits = detail::replay_traits<Coordination>;
using count_type = typename traits::count_type;
using period_type = typename traits::period_type;
using time_point_type = typename traits::time_point_type;
detail::replay_observer<T, Coordination> s;
public:
explicit replay(Coordination cn, composite_subscription cs = composite_subscription())
: s(count_type(), period_type(), cn, cs, composite_subscription{})
{
}
replay(std::size_t count, Coordination cn, composite_subscription cs = composite_subscription())
: s(count_type(std::move(count)), period_type(), cn, cs, composite_subscription{})
{
}
replay(rxsc::scheduler::clock_type::duration period, Coordination cn, composite_subscription cs = composite_subscription())
: s(count_type(), period_type(period), cn, cs, composite_subscription{})
{
}
replay(std::size_t count, rxsc::scheduler::clock_type::duration period, Coordination cn, composite_subscription cs = composite_subscription())
: s(count_type(count), period_type(period), cn, cs, composite_subscription{})
{
}
bool has_observers() const {
return s.has_observers();
}
std::list<T> get_values() const {
return s.get_values();
}
subscriber<T> get_subscriber() const {
return s.get_subscriber();
}
observable<T> get_observable() const {
auto keepAlive = s;
auto observable = make_observable_dynamic<T>([keepAlive](subscriber<T> o){
for (auto&& value: keepAlive.get_values()) {
o.on_next(value);
}
keepAlive.add(keepAlive.get_subscriber(), std::move(o));
});
return s.get_coordinator().in(observable);
}
};
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_SYNCHRONIZE_HPP)
#define RXCPP_RX_SYNCHRONIZE_HPP
namespace rxcpp {
namespace subjects {
namespace detail {
template<class T, class Coordination>
class synchronize_observer : public detail::multicast_observer<T>
{
using this_type = synchronize_observer<T, Coordination>;
using base_type = detail::multicast_observer<T>;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
using output_type = typename coordinator_type::template get<subscriber < T>>::type;
struct synchronize_observer_state : public std::enable_shared_from_this<synchronize_observer_state>
{
using notification_type = rxn::notification<T>;
using base_notification_type = typename notification_type::type;
using queue_type = std::deque<base_notification_type>;
struct mode
{
enum type {
Invalid = 0,
Processing,
Empty,
Disposed
};
};
mutable std::mutex lock;
mutable std::condition_variable wake;
mutable queue_type fill_queue;
composite_subscription lifetime;
mutable typename mode::type current;
coordinator_type coordinator;
output_type destination;
void ensure_processing(std::unique_lock<std::mutex>& guard) const {
if (!guard.owns_lock()) {
std::terminate();
}
if (current == mode::Empty) {
current = mode::Processing;
auto keepAlive = this->shared_from_this();
auto drain_queue = [keepAlive, this](const rxsc::schedulable& self){
RXCPP_TRY {
std::unique_lock<std::mutex> guard(lock);
if (!destination.is_subscribed()) {
current = mode::Disposed;
fill_queue.clear();
guard.unlock();
lifetime.unsubscribe();
return;
}
if (fill_queue.empty()) {
current = mode::Empty;
return;
}
auto notification = std::move(fill_queue.front());
fill_queue.pop_front();
guard.unlock();
std::move(*notification).accept(destination);
self();
} RXCPP_CATCH(...) {
destination.on_error(rxu::current_exception());
std::unique_lock<std::mutex> guard(lock);
current = mode::Empty;
}
};
auto selectedDrain = on_exception(
[&](){return coordinator.act(drain_queue);},
destination);
if (selectedDrain.empty()) {
return;
}
auto processor = coordinator.get_worker();
guard.unlock();
processor.schedule(lifetime, selectedDrain.get());
}
}
synchronize_observer_state(coordinator_type coor, composite_subscription cs, output_type scbr)
: lifetime(std::move(cs))
, current(mode::Empty)
, coordinator(std::move(coor))
, destination(std::move(scbr))
{
}
template<class V>
void on_next(V v) const {
if (lifetime.is_subscribed()) {
std::unique_lock<std::mutex> guard(lock);
fill_queue.push_back(notification_type::on_next(std::move(v)));
ensure_processing(guard);
}
wake.notify_one();
}
void on_error(rxu::error_ptr e) const {
if (lifetime.is_subscribed()) {
std::unique_lock<std::mutex> guard(lock);
fill_queue.push_back(notification_type::on_error(e));
ensure_processing(guard);
}
wake.notify_one();
}
void on_completed() const {
if (lifetime.is_subscribed()) {
std::unique_lock<std::mutex> guard(lock);
fill_queue.push_back(notification_type::on_completed());
ensure_processing(guard);
}
wake.notify_one();
}
};
std::shared_ptr<synchronize_observer_state> state;
public:
synchronize_observer(coordination_type cn, composite_subscription dl, composite_subscription il)
: base_type(dl)
{
auto o = make_subscriber<T>(dl, make_observer_dynamic<T>( *static_cast<base_type*>(this) ));
// creates a worker whose lifetime is the same as the destination subscription
auto coordinator = cn.create_coordinator(dl);
state = std::make_shared<synchronize_observer_state>(std::move(coordinator), std::move(il), std::move(o));
}
subscriber<T> get_subscriber() const {
return make_subscriber<T>(this->get_id(), state->lifetime, observer<T, detail::synchronize_observer<T, Coordination>>(*this)).as_dynamic();
}
template<class V>
void on_next(V v) const {
state->on_next(std::move(v));
}
void on_error(rxu::error_ptr e) const {
state->on_error(e);
}
void on_completed() const {
state->on_completed();
}
};
}
template<class T, class Coordination>
class synchronize
{
detail::synchronize_observer<T, Coordination> s;
public:
explicit synchronize(Coordination cn, composite_subscription cs = composite_subscription())
: s(std::move(cn), std::move(cs), composite_subscription())
{
}
bool has_observers() const {
return s.has_observers();
}
subscriber<T> get_subscriber() const {
return s.get_subscriber();
}
observable<T> get_observable() const {
auto keepAlive = s;
return make_observable_dynamic<T>([=](subscriber<T> o){
keepAlive.add(keepAlive.get_subscriber(), std::move(o));
});
}
};
}
class synchronize_in_one_worker : public coordination_base
{
rxsc::scheduler factory;
class input_type
{
rxsc::worker controller;
rxsc::scheduler factory;
identity_one_worker coordination;
public:
explicit input_type(rxsc::worker w)
: controller(w)
, factory(rxsc::make_same_worker(w))
, coordination(factory)
{
}
inline rxsc::worker get_worker() const {
return controller;
}
inline rxsc::scheduler get_scheduler() const {
return factory;
}
inline rxsc::scheduler::clock_type::time_point now() const {
return factory.now();
}
template<class Observable>
auto in(Observable o) const
-> decltype(o.publish_synchronized(coordination).ref_count()) {
return o.publish_synchronized(coordination).ref_count();
}
template<class Subscriber>
auto out(Subscriber s) const
-> Subscriber {
return s;
}
template<class F>
auto act(F f) const
-> F {
return f;
}
};
public:
explicit synchronize_in_one_worker(rxsc::scheduler sc) : factory(sc) {}
using coordinator_type = coordinator<input_type>;
inline rxsc::scheduler::clock_type::time_point now() const {
return factory.now();
}
inline coordinator_type create_coordinator(composite_subscription cs = composite_subscription()) const {
auto w = factory.create_worker(std::move(cs));
return coordinator_type(input_type(std::move(w)));
}
};
inline synchronize_in_one_worker synchronize_event_loop() {
static synchronize_in_one_worker r(rxsc::make_event_loop());
return r;
}
inline synchronize_in_one_worker synchronize_new_thread() {
static synchronize_in_one_worker r(rxsc::make_new_thread());
return r;
}
}
#endif
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_OPERATORS_HPP)
#define RXCPP_RX_OPERATORS_HPP
namespace rxcpp {
namespace operators {
struct tag_operator {};
template<class T>
struct operator_base
{
using value_type = T;
using operator_tag = tag_operator;
};
namespace detail {
template<class T, class =rxu::types_checked>
struct is_operator : std::false_type
{
};
template<class T>
struct is_operator<T, rxu::types_checked_t<typename T::operator_tag>>
: std::is_convertible<typename T::operator_tag*, tag_operator*>
{
};
}
template<class T, class Decayed = rxu::decay_t<T>>
struct is_operator : detail::is_operator<Decayed>
{
};
}
namespace rxo=operators;
template<class Tag>
struct member_overload
{
template<class... AN>
static auto member(AN&&...) ->
typename Tag::template include_header<std::false_type> {
return typename Tag::template include_header<std::false_type>();
}
};
template<class T, class... AN>
struct delayed_type{using value_type = T; static T value(AN**...) {return T{};}};
template<class T, class... AN>
using delayed_type_t = rxu::value_type_t<delayed_type<T, AN...>>;
template<class Tag, class... AN, class Overload = member_overload<rxu::decay_t<Tag>>>
auto observable_member(Tag, AN&&... an) ->
decltype(Overload::member(std::forward<AN>(an)...)) {
return Overload::member(std::forward<AN>(an)...);
}
template<class Tag, class... AN>
class operator_factory
{
using this_type = operator_factory<Tag, AN...>;
using tag_type = rxu::decay_t<Tag>;
using tuple_type = std::tuple<rxu::decay_t<AN>...>;
tuple_type an;
public:
operator_factory(tuple_type an)
: an(std::move(an))
{
}
template<class... ZN>
auto operator()(tag_type t, ZN&&... zn) const
-> decltype(observable_member(t, std::forward<ZN>(zn)...)) {
return observable_member(t, std::forward<ZN>(zn)...);
}
template<class Observable>
auto operator()(Observable source) const
-> decltype(rxu::apply(std::tuple_cat(std::make_tuple(tag_type{}, source), std::declval<tuple_type>()), std::declval<this_type>())) {
return rxu::apply(std::tuple_cat(std::make_tuple(tag_type{}, source), an), *this);
}
};
}
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-lift.hpp
\brief takes any function that will take a subscriber for this observable and produce a subscriber.
this is intended to allow externally defined operators, that use make_subscriber, to be connected into the expression.
\tparam ResultType the type of the emitted results.
\tparam Operator the type of the operator.
\return An observable that emitting the items from its source.
*/
#if !defined(RXCPP_OPERATORS_RX_LIFT_HPP)
#define RXCPP_OPERATORS_RX_LIFT_HPP
namespace rxcpp {
namespace detail {
template<class V, class S, class F>
struct is_lift_function_for {
struct tag_not_valid {};
template<class CS, class CF>
static auto check(int) -> decltype(std::declval<CF>()(std::declval<CS>()));
template<class CS, class CF>
static tag_not_valid check(...);
using for_type = rxu::decay_t<S>;
using func_type = rxu::decay_t<F>;
using detail_result = decltype(check<for_type, func_type>(0));
static const bool value = rxu::all_true_type<
is_subscriber<detail_result>,
is_subscriber<for_type>,
std::is_convertible<V, typename rxu::value_type_from<detail_result>::type>>::value;
};
}
namespace operators {
namespace detail {
template<class ResultType, class SourceOperator, class Operator>
struct lift_traits
{
using result_value_type = rxu::decay_t<ResultType>;
using source_operator_type = rxu::decay_t<SourceOperator>;
using operator_type = rxu::decay_t<Operator>;
using source_value_type = typename source_operator_type::value_type;
};
template<class ResultType, class SourceOperator, class Operator>
struct lift_operator : public operator_base<typename lift_traits<ResultType, SourceOperator, Operator>::result_value_type>
{
using traits = lift_traits<ResultType, SourceOperator, Operator>;
using source_operator_type = typename traits::source_operator_type;
using operator_type = typename traits::operator_type;
source_operator_type source;
operator_type chain;
lift_operator(source_operator_type s, operator_type op)
: source(std::move(s))
, chain(std::move(op))
{
}
template<class Subscriber>
void on_subscribe(Subscriber o) const {
auto lifted = chain(std::move(o));
trace_activity().lift_enter(source, chain, o, lifted);
source.on_subscribe(std::move(lifted));
trace_activity().lift_return(source, chain);
}
};
template<class ResultType, class Operator>
class lift_factory
{
using operator_type = rxu::decay_t<Operator>;
operator_type chain;
public:
lift_factory(operator_type op) : chain(std::move(op)) {}
template<class Observable>
auto operator()(const Observable& source)
-> decltype(source.template lift<ResultType>(chain)) {
return source.template lift<ResultType>(chain);
static_assert(rxcpp::detail::is_lift_function_for<rxu::value_type_t<Observable>, subscriber<ResultType>, Operator>::value, "Function passed for lift() must have the signature subscriber<...>(subscriber<T, ...>)");
}
};
}
template<class ResultType, class Operator>
auto lift(Operator&& op)
-> detail::lift_factory<ResultType, Operator> {
return detail::lift_factory<ResultType, Operator>(std::forward<Operator>(op));
}
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-subscribe.hpp
\brief Subscribe will cause the source observable to emit values to the provided subscriber.
\tparam ArgN types of the subscriber parameters
\param an the parameters for making a subscriber
\return A subscription with which the observer can stop receiving items before the observable has finished sending them.
The arguments of subscribe are forwarded to rxcpp::make_subscriber function. Some possible alternatives are:
- Pass an already composed rxcpp::subscriber:
\snippet subscribe.cpp subscribe by subscriber
\snippet output.txt subscribe by subscriber
- Pass an rxcpp::observer. This allows subscribing the same subscriber to several observables:
\snippet subscribe.cpp subscribe by observer
\snippet output.txt subscribe by observer
- Pass an `on_next` handler:
\snippet subscribe.cpp subscribe by on_next
\snippet output.txt subscribe by on_next
- Pass `on_next` and `on_error` handlers:
\snippet subscribe.cpp subscribe by on_next and on_error
\snippet output.txt subscribe by on_next and on_error
- Pass `on_next` and `on_completed` handlers:
\snippet subscribe.cpp subscribe by on_next and on_completed
\snippet output.txt subscribe by on_next and on_completed
- Pass `on_next`, `on_error`, and `on_completed` handlers:
\snippet subscribe.cpp subscribe by on_next, on_error, and on_completed
\snippet output.txt subscribe by on_next, on_error, and on_completed
.
All the alternatives above also support passing rxcpp::composite_subscription instance. For example:
\snippet subscribe.cpp subscribe by subscription, on_next, and on_completed
\snippet output.txt subscribe by subscription, on_next, and on_completed
If neither subscription nor subscriber are provided, then a new subscription is created and returned as a result:
\snippet subscribe.cpp subscribe unsubscribe
\snippet output.txt subscribe unsubscribe
For more details, see rxcpp::make_subscriber function description.
*/
#if !defined(RXCPP_OPERATORS_RX_SUBSCRIBE_HPP)
#define RXCPP_OPERATORS_RX_SUBSCRIBE_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class Subscriber>
class subscribe_factory;
template<class T, class I>
class subscribe_factory<subscriber<T, I>>
{
subscriber<T, I> scrbr;
public:
subscribe_factory(subscriber<T, I> s)
: scrbr(std::move(s))
{}
template<class Observable>
auto operator()(Observable&& source)
-> decltype(std::forward<Observable>(source).subscribe(std::move(scrbr))) {
return std::forward<Observable>(source).subscribe(std::move(scrbr));
}
};
}
/*! @copydoc rx-subscribe.hpp
*/
template<class T, class... ArgN>
auto subscribe(ArgN&&... an)
-> detail::subscribe_factory<decltype (make_subscriber<T>(std::forward<ArgN>(an)...))> {
return detail::subscribe_factory<decltype (make_subscriber<T>(std::forward<ArgN>(an)...))>
(make_subscriber<T>(std::forward<ArgN>(an)...));
}
namespace detail {
class dynamic_factory
{
public:
template<class Observable>
auto operator()(Observable&& source)
-> observable<rxu::value_type_t<rxu::decay_t<Observable>>> {
return observable<rxu::value_type_t<rxu::decay_t<Observable>>>(std::forward<Observable>(source));
}
};
}
/*! Return a new observable that performs type-forgetting conversion of this observable.
\return The source observable converted to observable<T>.
\note This operator could be useful to workaround lambda deduction bug on msvc 2013.
\sample
\snippet as_dynamic.cpp as_dynamic sample
\snippet output.txt as_dynamic sample
*/
inline auto as_dynamic()
-> detail::dynamic_factory {
return detail::dynamic_factory();
}
namespace detail {
class blocking_factory
{
public:
template<class Observable>
auto operator()(Observable&& source)
-> decltype(std::forward<Observable>(source).as_blocking()) {
return std::forward<Observable>(source).as_blocking();
}
};
}
/*! Return a new observable that contains the blocking methods for this observable.
\return An observable that contains the blocking methods for this observable.
\sample
\snippet from.cpp threaded from sample
\snippet output.txt threaded from sample
*/
inline auto as_blocking()
-> detail::blocking_factory {
return detail::blocking_factory();
}
}
}
#endif
namespace rxcpp {
struct amb_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-amb.hpp>");
};
};
struct all_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-all.hpp>");
};
};
struct is_empty_tag : all_tag {};
struct any_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-any.hpp>");
};
};
struct exists_tag : any_tag {};
struct contains_tag : any_tag {};
struct buffer_count_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-buffer_count.hpp>");
};
};
struct buffer_with_time_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-buffer_time.hpp>");
};
};
struct buffer_with_time_or_count_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-buffer_time_count.hpp>");
};
};
struct combine_latest_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-combine_latest.hpp>");
};
};
struct concat_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-concat.hpp>");
};
};
struct concat_map_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-concat_map.hpp>");
};
};
struct connect_forever_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-connect_forever.hpp>");
};
};
struct debounce_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-debounce.hpp>");
};
};
struct delay_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-delay.hpp>");
};
};
struct distinct_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-distinct.hpp>");
};
};
struct distinct_until_changed_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-distinct_until_changed.hpp>");
};
};
struct element_at_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-element_at.hpp>");
};
};
struct filter_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-filter.hpp>");
};
};
struct finally_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-finally.hpp>");
};
};
struct flat_map_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-flat_map.hpp>");
};
};
struct group_by_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-group_by.hpp>");
};
};
struct ignore_elements_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-ignore_elements.hpp>");
};
};
struct map_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-map.hpp>");
};
};
struct merge_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-merge.hpp>");
};
};
struct merge_delay_error_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-merge_delay_error.hpp>");
};
};
struct multicast_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-multicast.hpp>");
};
};
struct observe_on_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-observe_on.hpp>");
};
};
struct on_error_resume_next_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-on_error_resume_next.hpp>");
};
};
class empty_error: public std::runtime_error
{
public:
explicit empty_error(const std::string& msg):
std::runtime_error(msg)
{}
};
struct reduce_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-reduce.hpp>");
};
};
struct first_tag : reduce_tag {};
struct last_tag : reduce_tag {};
struct sum_tag : reduce_tag {};
struct average_tag : reduce_tag {};
struct min_tag : reduce_tag {};
struct max_tag : reduce_tag {};
struct ref_count_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-ref_count.hpp>");
};
};
struct pairwise_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-pairwise.hpp>");
};
};
struct publish_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-publish.hpp>");
};
};
struct publish_synchronized_tag : publish_tag {};
struct repeat_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-repeat.hpp>");
};
};
struct replay_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-replay.hpp>");
};
};
struct retry_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-retry.hpp>");
};
};
struct sample_with_time_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-sample_time.hpp>");
};
};
struct scan_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-scan.hpp>");
};
};
struct sequence_equal_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-sequence_equal.hpp>");
};
};
struct skip_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-skip.hpp>");
};
};
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{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-skip_last.hpp>");
};
};
struct skip_until_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-skip_until.hpp>");
};
};
struct start_with_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-start_with.hpp>");
};
};
struct subscribe_on_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-subscribe_on.hpp>");
};
};
struct switch_if_empty_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-switch_if_empty.hpp>");
};
};
struct default_if_empty_tag : switch_if_empty_tag {};
struct switch_on_next_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-switch_on_next.hpp>");
};
};
struct take_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-take.hpp>");
};
};
struct take_last_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-take_last.hpp>");
};
};
struct take_while_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-take_while.hpp>");
};
};
struct take_until_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-take_until.hpp>");
};
};
struct tap_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-tap.hpp>");
};
};
struct timeout_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-timeout.hpp>");
};
};
struct time_interval_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-time_interval.hpp>");
};
};
struct timestamp_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-timestamp.hpp>");
};
};
struct window_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-window.hpp>");
};
};
struct window_with_time_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-window_time.hpp>");
};
};
struct window_with_time_or_count_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-window_time_count.hpp>");
};
};
struct window_toggle_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-window_toggle.hpp>");
};
};
struct with_latest_from_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-with_latest_from.hpp>");
};
};
struct zip_tag {
template<class Included>
struct include_header{
static_assert(Included::value, "missing include: please #include <rxcpp/operators/rx-zip.hpp>");
};
};
}
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-multicast.hpp
\brief allows connections to the source to be independent of subscriptions.
\tparam Subject the subject to multicast the source Observable.
\param sub the subject.
*/
#if !defined(RXCPP_OPERATORS_RX_MULTICAST_HPP)
#define RXCPP_OPERATORS_RX_MULTICAST_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct multicast_invalid_arguments {};
template<class... AN>
struct multicast_invalid : public rxo::operator_base<multicast_invalid_arguments<AN...>> {
using type = observable<multicast_invalid_arguments<AN...>, multicast_invalid<AN...>>;
};
template<class... AN>
using multicast_invalid_t = typename multicast_invalid<AN...>::type;
template<class T, class Observable, class Subject>
struct multicast : public operator_base<T>
{
using source_type = rxu::decay_t<Observable>;
using subject_type = rxu::decay_t<Subject>;
struct multicast_state : public std::enable_shared_from_this<multicast_state>
{
multicast_state(source_type o, subject_type sub)
: source(std::move(o))
, subject_value(std::move(sub))
{
}
source_type source;
subject_type subject_value;
rxu::detail::maybe<typename composite_subscription::weak_subscription> connection;
};
std::shared_ptr<multicast_state> state;
multicast(source_type o, subject_type sub)
: state(std::make_shared<multicast_state>(std::move(o), std::move(sub)))
{
}
template<class Subscriber>
void on_subscribe(Subscriber&& o) const {
state->subject_value.get_observable().subscribe(std::forward<Subscriber>(o));
}
void on_connect(composite_subscription cs) const {
if (state->connection.empty()) {
auto destination = state->subject_value.get_subscriber();
// the lifetime of each connect is nested in the subject lifetime
state->connection.reset(destination.add(cs));
auto localState = state;
// when the connection is finished it should shutdown the connection
cs.add(
[destination, localState](){
if (!localState->connection.empty()) {
destination.remove(localState->connection.get());
localState->connection.reset();
}
});
// use cs not destination for lifetime of subscribe.
state->source.subscribe(cs, destination);
}
}
};
}
/*! @copydoc rx-multicast.hpp
*/
template<class... AN>
auto multicast(AN&&... an)
-> operator_factory<multicast_tag, AN...> {
return operator_factory<multicast_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<multicast_tag>
{
template<class Observable, class Subject,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<Subject>>,
class Value = rxu::value_type_t<Multicast>,
class Result = connectable_observable<Value, Multicast>>
static Result member(Observable&& o, Subject&& sub) {
return Result(Multicast(std::forward<Observable>(o), std::forward<Subject>(sub)));
}
template<class... AN>
static operators::detail::multicast_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "multicast takes (Subject)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-publish.hpp
\brief Turn a cold observable hot and allow connections to the source to be independent of subscriptions.
Turn a cold observable hot, send the most recent value to any new subscriber, and allow connections to the source to be independent of subscriptions.
\tparam T the type of the emitted item (optional).
\param first an initial item to be emitted by the resulting observable at connection time before emitting the items from the source observable; not emitted to observers that subscribe after the time of connection (optional).
\param cs the subscription to control lifetime (optional).
\return rxcpp::connectable_observable that upon connection causes the source observable to emit items to its observers.
\sample
\snippet publish.cpp publish subject sample
\snippet output.txt publish subject sample
\sample
\snippet publish.cpp publish behavior sample
\snippet output.txt publish behavior sample
\sample
\snippet publish.cpp publish diamond samethread sample
\snippet output.txt publish diamond samethread sample
\sample
\snippet publish.cpp publish diamond bgthread sample
\snippet output.txt publish diamond bgthread sample
\sample
\snippet ref_count.cpp ref_count other diamond sample
\snippet output.txt ref_count other diamond sample
*/
#if !defined(RXCPP_OPERATORS_RX_PUBLISH_HPP)
#define RXCPP_OPERATORS_RX_PUBLISH_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct publish_invalid_arguments {};
template<class... AN>
struct publish_invalid : public rxo::operator_base<publish_invalid_arguments<AN...>> {
using type = observable<publish_invalid_arguments<AN...>, publish_invalid<AN...>>;
};
template<class... AN>
using publish_invalid_t = typename publish_invalid<AN...>::type;
}
/*! @copydoc rx-publish.hpp
*/
template<class... AN>
auto publish(AN&&... an)
-> operator_factory<publish_tag, AN...> {
return operator_factory<publish_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
/*! \brief Turn a cold observable hot and allow connections to the source to be independent of subscriptions.
\tparam Coordination the type of the scheduler.
\param cn a scheduler all values are queued and delivered on.
\param cs the subscription to control lifetime (optional).
\return rxcpp::connectable_observable that upon connection causes the source observable to emit items to its observers, on the specified scheduler.
\sample
\snippet publish.cpp publish_synchronized sample
\snippet output.txt publish_synchronized sample
*/
template<class... AN>
auto publish_synchronized(AN&&... an)
-> operator_factory<publish_synchronized_tag, AN...> {
return operator_factory<publish_synchronized_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<publish_tag>
{
template<class Observable,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Subject = rxsub::subject<SourceValue>,
class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>,
class Result = connectable_observable<SourceValue, Multicast>
>
static Result member(Observable&& o) {
return Result(Multicast(std::forward<Observable>(o), Subject(composite_subscription())));
}
template<class Observable,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Subject = rxsub::subject<SourceValue>,
class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>,
class Result = connectable_observable<SourceValue, Multicast>
>
static Result member(Observable&& o, composite_subscription cs) {
return Result(Multicast(std::forward<Observable>(o), Subject(cs)));
}
template<class Observable, class T,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Subject = rxsub::behavior<SourceValue>,
class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>,
class Result = connectable_observable<SourceValue, Multicast>
>
static Result member(Observable&& o, T first, composite_subscription cs = composite_subscription()) {
return Result(Multicast(std::forward<Observable>(o), Subject(first, cs)));
}
template<class... AN>
static operators::detail::publish_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "publish takes (optional CompositeSubscription) or (T, optional CompositeSubscription)");
}
};
template<>
struct member_overload<publish_synchronized_tag>
{
template<class Observable, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class Subject = rxsub::synchronize<SourceValue, rxu::decay_t<Coordination>>,
class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>,
class Result = connectable_observable<SourceValue, Multicast>
>
static Result member(Observable&& o, Coordination&& cn, composite_subscription cs = composite_subscription()) {
return Result(Multicast(std::forward<Observable>(o), Subject(std::forward<Coordination>(cn), cs)));
}
template<class... AN>
static operators::detail::publish_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "publish_synchronized takes (Coordination, optional CompositeSubscription)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-ref_count.hpp
\brief Make some \c connectable_observable behave like an ordinary \c observable.
Uses a reference count of the subscribers to control the connection to the published observable.
The first subscription will cause a call to \c connect(), and the last \c unsubscribe will unsubscribe the connection.
There are 2 variants of the operator:
\li \c ref_count(): calls \c connect on the \c source \c connectable_observable.
\li \c ref_count(other): calls \c connect on the \c other \c connectable_observable.
\tparam ConnectableObservable the type of the \c other \c connectable_observable (optional)
\param other \c connectable_observable to call \c connect on (optional)
If \c other is omitted, then \c source is used instead (which must be a \c connectable_observable).
Otherwise, \c source can be a regular \c observable.
\return An \c observable that emits the items from its \c source.
\sample
\snippet ref_count.cpp ref_count other diamond sample
\snippet output.txt ref_count other diamond sample
*/
#if !defined(RXCPP_OPERATORS_RX_REF_COUNT_HPP)
#define RXCPP_OPERATORS_RX_REF_COUNT_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct ref_count_invalid_arguments {};
template<class... AN>
struct ref_count_invalid : public rxo::operator_base<ref_count_invalid_arguments<AN...>> {
using type = observable<ref_count_invalid_arguments<AN...>, ref_count_invalid<AN...>>;
};
template<class... AN>
using ref_count_invalid_t = typename ref_count_invalid<AN...>::type;
// ref_count(other) takes a regular observable source, not a connectable_observable.
// use template specialization to avoid instantiating 'subscribe' for two different types
// which would cause a compilation error.
template <typename connectable_type, typename observable_type>
struct ref_count_state_base {
ref_count_state_base(connectable_type other, observable_type source)
: connectable(std::move(other))
, subscribable(std::move(source)) {}
connectable_type connectable; // connects to this. subscribes to this if subscribable empty.
observable_type subscribable; // subscribes to this if non-empty.
template <typename Subscriber>
void subscribe(Subscriber&& o) {
subscribable.subscribe(std::forward<Subscriber>(o));
}
};
// Note: explicit specializations have to be at namespace scope prior to C++17.
template <typename connectable_type>
struct ref_count_state_base<connectable_type, void> {
explicit ref_count_state_base(connectable_type c)
: connectable(std::move(c)) {}
connectable_type connectable; // connects to this. subscribes to this if subscribable empty.
template <typename Subscriber>
void subscribe(Subscriber&& o) {
connectable.subscribe(std::forward<Subscriber>(o));
}
};
template<class T,
class ConnectableObservable,
class Observable = void> // note: type order flipped versus the operator.
struct ref_count : public operator_base<T>
{
using observable_type = rxu::decay_t<Observable>;
using connectable_type = rxu::decay_t<ConnectableObservable>;
// ref_count() == false
// ref_count(other) == true
using has_observable_t = rxu::negation<std::is_same<void, Observable>>;
// removed constexpr to support older VC compilers
static /*constexpr */ const bool has_observable_v = has_observable_t::value;
struct ref_count_state : public std::enable_shared_from_this<ref_count_state>,
public ref_count_state_base<ConnectableObservable, Observable>
{
template <class HasObservable = has_observable_t,
class Enabled = rxu::enable_if_all_true_type_t<
rxu::negation<HasObservable>>>
explicit ref_count_state(connectable_type source)
: ref_count_state_base<ConnectableObservable, Observable>(std::move(source))
, subscribers(0)
{
}
template <bool HasObservableV = has_observable_v>
ref_count_state(connectable_type other,
typename std::enable_if<HasObservableV, observable_type>::type source)
: ref_count_state_base<ConnectableObservable, Observable>(std::move(other),
std::move(source))
, subscribers(0)
{
}
std::mutex lock;
long subscribers;
composite_subscription connection;
};
std::shared_ptr<ref_count_state> state;
// connectable_observable<T> source = ...;
// source.ref_count();
//
// calls connect on source after the subscribe on source.
template <class HasObservable = has_observable_t,
class Enabled = rxu::enable_if_all_true_type_t<
rxu::negation<HasObservable>>>
explicit ref_count(connectable_type source)
: state(std::make_shared<ref_count_state>(std::move(source)))
{
}
// connectable_observable<?> other = ...;
// observable<T> source = ...;
// source.ref_count(other);
//
// calls connect on 'other' after the subscribe on 'source'.
template <bool HasObservableV = has_observable_v>
ref_count(connectable_type other,
typename std::enable_if<HasObservableV, observable_type>::type source)
: state(std::make_shared<ref_count_state>(std::move(other), std::move(source)))
{
}
template<class Subscriber>
void on_subscribe(Subscriber&& o) const {
std::unique_lock<std::mutex> guard(state->lock);
auto needConnect = ++state->subscribers == 1;
auto keepAlive = state;
guard.unlock();
o.add(
[keepAlive](){
std::unique_lock<std::mutex> guard_unsubscribe(keepAlive->lock);
if (--keepAlive->subscribers == 0) {
keepAlive->connection.unsubscribe();
keepAlive->connection = composite_subscription();
}
});
keepAlive->subscribe(std::forward<Subscriber>(o));
if (needConnect) {
keepAlive->connectable.connect(keepAlive->connection);
}
}
};
}
/*! @copydoc rx-ref_count.hpp
*/
template<class... AN>
auto ref_count(AN&&... an)
-> operator_factory<ref_count_tag, AN...> {
return operator_factory<ref_count_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<ref_count_tag>
{
template<class ConnectableObservable,
class Enabled = rxu::enable_if_all_true_type_t<
is_connectable_observable<ConnectableObservable>>,
class SourceValue = rxu::value_type_t<ConnectableObservable>,
class RefCount = rxo::detail::ref_count<SourceValue, rxu::decay_t<ConnectableObservable>>,
class Value = rxu::value_type_t<RefCount>,
class Result = observable<Value, RefCount>
>
static Result member(ConnectableObservable&& o) {
return Result(RefCount(std::forward<ConnectableObservable>(o)));
}
template<class Observable,
class ConnectableObservable,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_connectable_observable<ConnectableObservable>>,
class SourceValue = rxu::value_type_t<Observable>,
class RefCount = rxo::detail::ref_count<SourceValue,
rxu::decay_t<ConnectableObservable>,
rxu::decay_t<Observable>>,
class Value = rxu::value_type_t<RefCount>,
class Result = observable<Value, RefCount>
>
static Result member(Observable&& o, ConnectableObservable&& other) {
return Result(RefCount(std::forward<ConnectableObservable>(other),
std::forward<Observable>(o)));
}
template<class... AN>
static operators::detail::ref_count_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "ref_count takes (optional ConnectableObservable)");
}
};
}
#endif
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_OBSERVABLE_HPP)
#define RXCPP_RX_OBSERVABLE_HPP
#ifdef __GNUG__
#define EXPLICIT_THIS this->
#else
#define EXPLICIT_THIS
#endif
namespace rxcpp {
namespace detail {
template<class Subscriber, class T>
struct has_on_subscribe_for
{
struct not_void {};
template<class CS, class CT>
static auto check(int) -> decltype(std::declval<CT>().on_subscribe(std::declval<CS>()));
template<class CS, class CT>
static not_void check(...);
using detail_result = decltype(check<rxu::decay_t < Subscriber>, T > (0));
static const bool value = std::is_same_v<detail_result, void>;
};
}
template<class T>
class dynamic_observable
: public rxs::source_base<T>
{
struct state_type
: public std::enable_shared_from_this<state_type>
{
using onsubscribe_type = std::function<void(subscriber < T > )>;
onsubscribe_type on_subscribe;
};
std::shared_ptr<state_type> state;
template<class U>
friend bool operator==(const dynamic_observable<U>&, const dynamic_observable<U>&);
template<class SO>
void construct(SO&& source, rxs::tag_source&&) {
rxu::decay_t<SO> so = std::forward<SO>(source);
state->on_subscribe = [so](subscriber<T> o) mutable {
so.on_subscribe(std::move(o));
};
}
struct tag_function {};
template<class F>
void construct(F&& f, tag_function&&) {
state->on_subscribe = std::forward<F>(f);
}
public:
using dynamic_observable_tag = tag_dynamic_observable;
dynamic_observable()
{
}
template<class SOF>
explicit dynamic_observable(SOF&& sof, typename std::enable_if<!is_dynamic_observable<SOF>::value, void**>::type = 0)
: state(std::make_shared<state_type>())
{
construct(std::forward<SOF>(sof),
typename std::conditional_t<rxs::is_source<SOF>::value || rxo::is_operator<SOF>::value, rxs::tag_source, tag_function>());
}
void on_subscribe(subscriber<T> o) const {
state->on_subscribe(std::move(o));
}
template<class Subscriber>
typename std::enable_if<is_subscriber<Subscriber>::value, void>::type
on_subscribe(Subscriber o) const {
state->on_subscribe(o.as_dynamic());
}
};
template<class T>
inline bool operator==(const dynamic_observable<T>& lhs, const dynamic_observable<T>& rhs) {
return lhs.state == rhs.state;
}
template<class T>
inline bool operator!=(const dynamic_observable<T>& lhs, const dynamic_observable<T>& rhs) {
return !(lhs == rhs);
}
template<class T, class Source>
observable<T> make_observable_dynamic(Source&& s) {
return observable<T>(dynamic_observable<T>(std::forward<Source>(s)));
}
namespace detail {
template<bool Selector, class Default, class SO>
struct resolve_observable;
template<class Default, class SO>
struct resolve_observable<true, Default, SO>
{
using type = typename SO::type;
using value_type = typename type::value_type;
static const bool value = true;
using observable_type = observable<value_type, type>;
template<class... AN>
static observable_type make(const Default&, AN&&... an) {
return observable_type(type(std::forward<AN>(an)...));
}
};
template<class Default, class SO>
struct resolve_observable<false, Default, SO>
{
static const bool value = false;
using observable_type = Default;
template<class... AN>
static observable_type make(const observable_type& that, const AN&...) {
return that;
}
};
template<class SO>
struct resolve_observable<true, void, SO>
{
using type = typename SO::type;
using value_type = typename type::value_type;
static const bool value = true;
using observable_type = observable<value_type, type>;
template<class... AN>
static observable_type make(AN&&... an) {
return observable_type(type(std::forward<AN>(an)...));
}
};
template<class SO>
struct resolve_observable<false, void, SO>
{
static const bool value = false;
using observable_type = void;
template<class... AN>
static observable_type make(const AN&...) {
}
};
}
template<class Selector, class Default, template<class... TN> class SO, class... AN>
struct defer_observable
: public detail::resolve_observable<Selector::value, Default, rxu::defer_type<SO, AN...>>
{
};
/*!
\brief a source of values whose methods block until all values have been emitted. subscribe or use one of the operator methods that reduce the values emitted to a single value.
\ingroup group-observable
*/
template<class T, class Observable>
class blocking_observable
{
template<class Obsvbl, class... ArgN>
static auto blocking_subscribe(const Obsvbl& source, bool do_rethrow, ArgN&&... an)
-> void {
std::mutex lock;
std::condition_variable wake;
bool disposed = false;
rxu::error_ptr error;
auto dest = make_subscriber<T>(std::forward<ArgN>(an)...);
// keep any error to rethrow at the end.
auto scbr = make_subscriber<T>(
dest,
[&](auto&& t){dest.on_next(std::forward<decltype(t)>(t));},
[&](rxu::error_ptr e){
if (do_rethrow) {
error = e;
} else {
dest.on_error(e);
}
},
[&](){dest.on_completed();}
);
auto cs = scbr.get_subscription();
cs.add(
[&](){
std::unique_lock<std::mutex> guard(lock);
disposed = true;
wake.notify_one();
});
source.subscribe(std::move(scbr));
std::unique_lock<std::mutex> guard(lock);
wake.wait(guard,
[&](){
return disposed;
});
if (error) {rxu::rethrow_exception(error);}
}
public:
using observable_type = rxu::decay_t<Observable>;
observable_type source;
~blocking_observable()
{
}
blocking_observable(observable_type s) : source(std::move(s)) {}
///
/// `subscribe` will cause this observable to emit values to the provided subscriber.
///
/// \return void
///
/// \param an... - the arguments are passed to make_subscriber().
///
/// callers must provide enough arguments to make a subscriber.
/// overrides are supported. thus
/// `subscribe(thesubscriber, composite_subscription())`
/// will take `thesubscriber.get_observer()` and the provided
/// subscription and subscribe to the new subscriber.
/// the `on_next`, `on_error`, `on_completed` methods can be supplied instead of an observer
/// if a subscription or subscriber is not provided then a new subscription will be created.
///
template<class... ArgN>
auto subscribe(ArgN&&... an) const
-> void {
return blocking_subscribe(source, false, std::forward<ArgN>(an)...);
}
///
/// `subscribe_with_rethrow` will cause this observable to emit values to the provided subscriber.
///
/// \note If the source observable calls on_error, the raised exception is rethrown by this method.
///
/// \note If the source observable calls on_error, the `on_error` method on the subscriber will not be called.
///
/// \return void
///
/// \param an... - the arguments are passed to make_subscriber().
///
/// callers must provide enough arguments to make a subscriber.
/// overrides are supported. thus
/// `subscribe(thesubscriber, composite_subscription())`
/// will take `thesubscriber.get_observer()` and the provided
/// subscription and subscribe to the new subscriber.
/// the `on_next`, `on_error`, `on_completed` methods can be supplied instead of an observer
/// if a subscription or subscriber is not provided then a new subscription will be created.
///
template<class... ArgN>
auto subscribe_with_rethrow(ArgN&&... an) const
-> void {
return blocking_subscribe(source, true, std::forward<ArgN>(an)...);
}
/*! Return the first item emitted by this blocking_observable, or throw an std::runtime_error exception if it emits no items.
\return The first item emitted by this blocking_observable.
\note If the source observable calls on_error, the raised exception is rethrown by this method.
\sample
When the source observable emits at least one item:
\snippet blocking_observable.cpp blocking first sample
\snippet output.txt blocking first sample
When the source observable is empty:
\snippet blocking_observable.cpp blocking first empty sample
\snippet output.txt blocking first empty sample
*/
template<class... AN>
auto first(AN**...) -> delayed_type_t<T, AN...> const {
rxu::maybe<T> result;
composite_subscription cs;
subscribe_with_rethrow(
cs,
[&](T v){result.reset(v); cs.unsubscribe();});
if (result.empty())
rxu::throw_exception(rxcpp::empty_error("first() requires a stream with at least one value"));
return result.get();
static_assert(sizeof...(AN) == 0, "first() was passed too many arguments.");
}
/*! Return the last item emitted by this blocking_observable, or throw an std::runtime_error exception if it emits no items.
\return The last item emitted by this blocking_observable.
\note If the source observable calls on_error, the raised exception is rethrown by this method.
\sample
When the source observable emits at least one item:
\snippet blocking_observable.cpp blocking last sample
\snippet output.txt blocking last sample
When the source observable is empty:
\snippet blocking_observable.cpp blocking last empty sample
\snippet output.txt blocking last empty sample
*/
template<class... AN>
auto last(AN**...) -> delayed_type_t<T, AN...> const {
rxu::maybe<T> result;
subscribe_with_rethrow(
[&](T v){result.reset(v);});
if (result.empty())
rxu::throw_exception(rxcpp::empty_error("last() requires a stream with at least one value"));
return result.get();
static_assert(sizeof...(AN) == 0, "last() was passed too many arguments.");
}
/*! Return the total number of items emitted by this blocking_observable.
\return The total number of items emitted by this blocking_observable.
\sample
\snippet blocking_observable.cpp blocking count sample
\snippet output.txt blocking count sample
When the source observable calls on_error:
\snippet blocking_observable.cpp blocking count error sample
\snippet output.txt blocking count error sample
*/
int count() const {
int result = 0;
source.count().as_blocking().subscribe_with_rethrow(
[&](int v){result = v;});
return result;
}
/*! Return the sum of all items emitted by this blocking_observable, or throw an std::runtime_error exception if it emits no items.
\return The sum of all items emitted by this blocking_observable.
\sample
When the source observable emits at least one item:
\snippet blocking_observable.cpp blocking sum sample
\snippet output.txt blocking sum sample
When the source observable is empty:
\snippet blocking_observable.cpp blocking sum empty sample
\snippet output.txt blocking sum empty sample
When the source observable calls on_error:
\snippet blocking_observable.cpp blocking sum error sample
\snippet output.txt blocking sum error sample
*/
T sum() const {
return source.sum().as_blocking().last();
}
/*! Return the average value of all items emitted by this blocking_observable, or throw an std::runtime_error exception if it emits no items.
\return The average value of all items emitted by this blocking_observable.
\sample
When the source observable emits at least one item:
\snippet blocking_observable.cpp blocking average sample
\snippet output.txt blocking average sample
When the source observable is empty:
\snippet blocking_observable.cpp blocking average empty sample
\snippet output.txt blocking average empty sample
When the source observable calls on_error:
\snippet blocking_observable.cpp blocking average error sample
\snippet output.txt blocking average error sample
*/
double average() const {
return source.average().as_blocking().last();
}
/*! Return the max of all items emitted by this blocking_observable, or throw an std::runtime_error exception if it emits no items.
\return The max of all items emitted by this blocking_observable.
\sample
When the source observable emits at least one item:
\snippet blocking_observable.cpp blocking max sample
\snippet output.txt blocking max sample
When the source observable is empty:
\snippet blocking_observable.cpp blocking max empty sample
\snippet output.txt blocking max empty sample
When the source observable calls on_error:
\snippet blocking_observable.cpp blocking max error sample
\snippet output.txt blocking max error sample
*/
T max() const {
return source.max().as_blocking().last();
}
/*! Return the min of all items emitted by this blocking_observable, or throw an std::runtime_error exception if it emits no items.
\return The min of all items emitted by this blocking_observable.
\sample
When the source observable emits at least one item:
\snippet blocking_observable.cpp blocking min sample
\snippet output.txt blocking min sample
When the source observable is empty:
\snippet blocking_observable.cpp blocking min empty sample
\snippet output.txt blocking min empty sample
When the source observable calls on_error:
\snippet blocking_observable.cpp blocking min error sample
\snippet output.txt blocking min error sample
*/
T min() const {
return source.min().as_blocking().last();
}
};
namespace detail {
template<class SourceOperator, class Subscriber>
struct safe_subscriber
{
safe_subscriber(SourceOperator& so, Subscriber& o) : so(std::addressof(so)), o(std::addressof(o)) {}
void subscribe() {
RXCPP_TRY {
so->on_subscribe(*o);
} RXCPP_CATCH(...) {
if (!o->is_subscribed()) {
rxu::rethrow_current_exception();
}
o->on_error(rxu::make_error_ptr(rxu::current_exception()));
o->unsubscribe();
}
}
void operator()(const rxsc::schedulable&) {
subscribe();
}
SourceOperator* so;
Subscriber* o;
};
}
template<>
class observable<void, void>;
/*!
\defgroup group-observable Observables
\brief These are the set of observable classes in rxcpp.
\class rxcpp::observable
\ingroup group-observable group-core
\brief a source of values. subscribe or use one of the operator methods that return a new observable, which uses this observable as a source.
\par Some code
This sample will observable::subscribe() to values from a observable<void, void>::range().
\sample
\snippet range.cpp range sample
\snippet output.txt range sample
*/
template<class T, class SourceOperator>
class observable
: public observable_base<T>
{
static_assert(std::is_same_v<T, typename SourceOperator::value_type>, "SourceOperator::value_type must be the same as T in observable<T, SourceOperator>");
using this_type = observable<T, SourceOperator>;
public:
using source_operator_type = rxu::decay_t<SourceOperator>;
mutable source_operator_type source_operator;
private:
template<class U, class SO>
friend class observable;
template<class U, class SO>
friend bool operator==(const observable<U, SO>&, const observable<U, SO>&);
template<class Subscriber>
auto detail_subscribe(Subscriber o) const
-> composite_subscription {
using subscriber_type = rxu::decay_t<Subscriber>;
static_assert(is_subscriber<subscriber_type>::value, "subscribe must be passed a subscriber");
static_assert(std::is_same_v<typename source_operator_type::value_type, T> && std::is_convertible<T*, typename subscriber_type::value_type*>::value, "the value types in the sequence must match or be convertible");
static_assert(detail::has_on_subscribe_for<subscriber_type, source_operator_type>::value, "inner must have on_subscribe method that accepts this subscriber ");
trace_activity().subscribe_enter(*this, o);
if (!o.is_subscribed()) {
trace_activity().subscribe_return(*this);
return o.get_subscription();
}
detail::safe_subscriber<source_operator_type, subscriber_type> subscriber(source_operator, o);
// make sure to let current_thread take ownership of the thread as early as possible.
if (rxsc::current_thread::is_schedule_required()) {
const auto& sc = rxsc::make_current_thread();
sc.create_worker(o.get_subscription()).schedule(subscriber);
} else {
// current_thread already owns this thread.
subscriber.subscribe();
}
trace_activity().subscribe_return(*this);
return o.get_subscription();
}
public:
using value_type = T;
static_assert(rxo::is_operator<source_operator_type>::value || rxs::is_source<source_operator_type>::value, "observable must wrap an operator or source");
~observable()
{
}
observable()
{
}
explicit observable(const source_operator_type& o)
: source_operator(o)
{
}
explicit observable(source_operator_type&& o)
: source_operator(std::move(o))
{
}
/// implicit conversion between observables of the same value_type
template<class SO>
observable(const observable<T, SO>& o)
: source_operator(o.source_operator)
{}
/// implicit conversion between observables of the same value_type
template<class SO>
observable(observable<T, SO>&& o)
: source_operator(std::move(o.source_operator))
{}
#if 0
template<class I>
void on_subscribe(observer<T, I> o) const {
source_operator.on_subscribe(o);
}
#endif
/*! @copydoc rxcpp::operators::as_dynamic
*/
template<class... AN>
observable<T> as_dynamic(AN**...) const {
return *this;
static_assert(sizeof...(AN) == 0, "as_dynamic() was passed too many arguments.");
}
/*! @copydoc rx-ref_count.hpp
*/
template<class... AN>
auto ref_count(AN... an) const // ref_count(ConnectableObservable&&)
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(ref_count_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(ref_count_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rxcpp::operators::as_blocking
*/
template<class... AN>
blocking_observable<T, this_type> as_blocking(AN**...) const {
return blocking_observable<T, this_type>(*this);
static_assert(sizeof...(AN) == 0, "as_blocking() was passed too many arguments.");
}
/// \cond SHOW_SERVICE_MEMBERS
///
/// takes any function that will take this observable and produce a result value.
/// this is intended to allow externally defined operators, that use subscribe,
/// to be connected into the expression.
///
template<class OperatorFactory>
auto op(OperatorFactory&& of) const
-> decltype(of(std::declval<const this_type>())) {
return of(*this);
static_assert(is_operator_factory_for<this_type, OperatorFactory>::value, "Function passed for op() must have the signature Result(SourceObservable)");
}
/*! @copydoc rx-lift.hpp
*/
template<class ResultType, class Operator>
auto lift(Operator&& op) const
-> observable<rxu::value_type_t<rxo::detail::lift_operator<ResultType, source_operator_type, Operator>>, rxo::detail::lift_operator<ResultType, source_operator_type, Operator>> {
return observable<rxu::value_type_t<rxo::detail::lift_operator<ResultType, source_operator_type, Operator>>, rxo::detail::lift_operator<ResultType, source_operator_type, Operator>>(
rxo::detail::lift_operator<ResultType, source_operator_type, Operator>(source_operator, std::forward<Operator>(op)));
static_assert(detail::is_lift_function_for<T, subscriber<ResultType>, Operator>::value, "Function passed for lift() must have the signature subscriber<...>(subscriber<T, ...>)");
}
///
/// takes any function that will take a subscriber for this observable and produce a subscriber.
/// this is intended to allow externally defined operators, that use make_subscriber, to be connected
/// into the expression.
///
template<class ResultType, class Operator>
auto lift_if(Operator&& op) const
-> typename std::enable_if<detail::is_lift_function_for<T, subscriber<ResultType>, Operator>::value,
observable<rxu::value_type_t<rxo::detail::lift_operator<ResultType, source_operator_type, Operator>>, rxo::detail::lift_operator<ResultType, source_operator_type, Operator>>>::type {
return observable<rxu::value_type_t<rxo::detail::lift_operator<ResultType, source_operator_type, Operator>>, rxo::detail::lift_operator<ResultType, source_operator_type, Operator>>(
rxo::detail::lift_operator<ResultType, source_operator_type, Operator>(source_operator, std::forward<Operator>(op)));
}
///
/// takes any function that will take a subscriber for this observable and produce a subscriber.
/// this is intended to allow externally defined operators, that use make_subscriber, to be connected
/// into the expression.
///
template<class ResultType, class Operator>
auto lift_if(Operator&&) const
-> typename std::enable_if<!detail::is_lift_function_for<T, subscriber<ResultType>, Operator>::value,
decltype(rxs::from<ResultType>())>::type {
return rxs::from<ResultType>();
}
/// \endcond
/*! @copydoc rx-subscribe.hpp
*/
template<class... ArgN>
auto subscribe(ArgN&&... an) const
-> composite_subscription {
return detail_subscribe(make_subscriber<T>(std::forward<ArgN>(an)...));
}
/*! @copydoc rx-all.hpp
*/
template<class... AN>
auto all(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(all_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(all_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rxcpp::operators::is_empty
*/
template<class... AN>
auto is_empty(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(is_empty_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(is_empty_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-any.hpp
*/
template<class... AN>
auto any(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(any_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(any_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rxcpp::operators::exists
*/
template<class... AN>
auto exists(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(exists_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(exists_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rxcpp::operators::contains
*/
template<class... AN>
auto contains(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(contains_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(contains_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-filter.hpp
*/
template<class... AN>
auto filter(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(filter_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(filter_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-switch_if_empty.hpp
*/
template<class... AN>
auto switch_if_empty(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(switch_if_empty_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(switch_if_empty_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rxcpp::operators::default_if_empty
*/
template<class... AN>
auto default_if_empty(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(default_if_empty_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(default_if_empty_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-sequence_equal.hpp
*/
template<class... AN>
auto sequence_equal(AN... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(sequence_equal_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(sequence_equal_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-tap.hpp
*/
template<class... AN>
auto tap(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(tap_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(tap_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-time_interval.hpp
*/
template<class... AN>
auto time_interval(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(time_interval_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(time_interval_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-timeout.hpp
*/
template<class... AN>
auto timeout(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(timeout_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(timeout_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-timestamp.hpp
*/
template<class... AN>
auto timestamp(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(timestamp_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(timestamp_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-finally.hpp
*/
template<class... AN>
auto finally(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(finally_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(finally_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-on_error_resume_next.hpp
*/
template<class... AN>
auto on_error_resume_next(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(on_error_resume_next_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(on_error_resume_next_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-on_error_resume_next.hpp
*/
template<class... AN>
auto switch_on_error(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(on_error_resume_next_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(on_error_resume_next_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-map.hpp
*/
template<class... AN>
auto map(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(map_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(map_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-map.hpp
*/
template<class... AN>
auto transform(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(map_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(map_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-debounce.hpp
*/
template<class... AN>
auto debounce(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(debounce_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(debounce_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-delay.hpp
*/
template<class... AN>
auto delay(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(delay_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(delay_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-distinct.hpp
*/
template<class... AN>
auto distinct(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(distinct_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(distinct_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-distinct_until_changed.hpp
*/
template<class... AN>
auto distinct_until_changed(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(distinct_until_changed_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(distinct_until_changed_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-element_at.hpp
*/
template<class... AN>
auto element_at(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(element_at_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(element_at_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-window.hpp
*/
template<class... AN>
auto window(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(window_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(window_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-window_time.hpp
*/
template<class... AN>
auto window_with_time(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(window_with_time_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(window_with_time_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-window_time_count.hpp
*/
template<class... AN>
auto window_with_time_or_count(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(window_with_time_or_count_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(window_with_time_or_count_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-window_toggle.hpp
*/
template<class... AN>
auto window_toggle(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(window_toggle_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(window_toggle_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-buffer_count.hpp
*/
template<class... AN>
auto buffer(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(buffer_count_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(buffer_count_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-buffer_time.hpp
*/
template<class... AN>
auto buffer_with_time(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(buffer_with_time_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(buffer_with_time_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-buffer_time_count.hpp
*/
template<class... AN>
auto buffer_with_time_or_count(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(buffer_with_time_or_count_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(buffer_with_time_or_count_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-switch_on_next.hpp
*/
template<class... AN>
auto switch_on_next(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(switch_on_next_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(switch_on_next_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-merge.hpp
*/
template<class... AN>
auto merge(AN... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(merge_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(merge_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-merge_delay_error.hpp
*/
template<class... AN>
auto merge_delay_error(AN... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(merge_delay_error_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(merge_delay_error_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-amb.hpp
*/
template<class... AN>
auto amb(AN... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(amb_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(amb_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-flat_map.hpp
*/
template<class... AN>
auto flat_map(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(flat_map_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(flat_map_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-flat_map.hpp
*/
template<class... AN>
auto merge_transform(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(flat_map_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(flat_map_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-concat.hpp
*/
template<class... AN>
auto concat(AN... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(concat_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(concat_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-concat_map.hpp
*/
template<class... AN>
auto concat_map(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(concat_map_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(concat_map_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-concat_map.hpp
*/
template<class... AN>
auto concat_transform(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(concat_map_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(concat_map_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-with_latest_from.hpp
*/
template<class... AN>
auto with_latest_from(AN... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(with_latest_from_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(with_latest_from_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-combine_latest.hpp
*/
template<class... AN>
auto combine_latest(AN... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(combine_latest_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(combine_latest_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-zip.hpp
*/
template<class... AN>
auto zip(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(zip_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(zip_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-group_by.hpp
*/
template<class... AN>
inline auto group_by(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(group_by_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(group_by_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-ignore_elements.hpp
*/
template<class... AN>
auto ignore_elements(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(ignore_elements_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(ignore_elements_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-muticast.hpp
*/
template<class... AN>
auto multicast(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(multicast_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(multicast_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-publish.hpp
*/
template<class... AN>
auto publish(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(publish_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(publish_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rxcpp::operators::publish_synchronized
*/
template<class... AN>
auto publish_synchronized(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(publish_synchronized_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(publish_synchronized_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-replay.hpp
*/
template<class... AN>
auto replay(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(replay_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(replay_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-subscribe_on.hpp
*/
template<class... AN>
auto subscribe_on(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(subscribe_on_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(subscribe_on_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-observe_on.hpp
*/
template<class... AN>
auto observe_on(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(observe_on_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(observe_on_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-reduce.hpp
*/
template<class... AN>
auto reduce(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(reduce_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(reduce_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-reduce.hpp
*/
template<class... AN>
auto accumulate(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(reduce_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(reduce_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rxcpp::operators::first
*/
template<class... AN>
auto first(AN**...) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(delayed_type<first_tag, AN...>::value(), std::declval<this_type>()))
/// \endcond
{
return observable_member(delayed_type<first_tag, AN...>::value(), *this);
static_assert(sizeof...(AN) == 0, "first() was passed too many arguments.");
}
/*! @copydoc rxcpp::operators::last
*/
template<class... AN>
auto last(AN**...) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(delayed_type<last_tag, AN...>::value(), std::declval<this_type>()))
/// \endcond
{
return observable_member(delayed_type<last_tag, AN...>::value(), *this);
static_assert(sizeof...(AN) == 0, "last() was passed too many arguments.");
}
/*! @copydoc rxcpp::operators::count
*/
template<class... AN>
auto count(AN**...) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(delayed_type<reduce_tag, AN...>::value(), std::declval<this_type>(), 0, rxu::count(), identity_for<int>()))
/// \endcond
{
return observable_member(delayed_type<reduce_tag, AN...>::value(), *this, 0, rxu::count(), identity_for<int>());
static_assert(sizeof...(AN) == 0, "count() was passed too many arguments.");
}
/*! @copydoc rxcpp::operators::sum
*/
template<class... AN>
auto sum(AN**...) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(delayed_type<sum_tag, AN...>::value(), std::declval<this_type>()))
/// \endcond
{
return observable_member(delayed_type<sum_tag, AN...>::value(), *this);
static_assert(sizeof...(AN) == 0, "sum() was passed too many arguments.");
}
/*! @copydoc rxcpp::operators::average
*/
template<class... AN>
auto average(AN**...) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(delayed_type<average_tag, AN...>::value(), std::declval<this_type>()))
/// \endcond
{
return observable_member(delayed_type<average_tag, AN...>::value(), *this);
static_assert(sizeof...(AN) == 0, "average() was passed too many arguments.");
}
/*! @copydoc rxcpp::operators::max
*/
template<class... AN>
auto max(AN**...) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(delayed_type<max_tag, AN...>::value(), std::declval<this_type>()))
/// \endcond
{
return observable_member(delayed_type<max_tag, AN...>::value(), *this);
static_assert(sizeof...(AN) == 0, "max() was passed too many arguments.");
}
/*! @copydoc rxcpp::operators::min
*/
template<class... AN>
auto min(AN**...) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(delayed_type<min_tag, AN...>::value(), std::declval<this_type>()))
/// \endcond
{
return observable_member(delayed_type<min_tag, AN...>::value(), *this);
static_assert(sizeof...(AN) == 0, "min() was passed too many arguments.");
}
/*! @copydoc rx-scan.hpp
*/
template<class... AN>
auto scan(AN... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(scan_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(scan_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-sample_time.hpp
*/
template<class... AN>
auto sample_with_time(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(sample_with_time_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(sample_with_time_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-skip.hpp
*/
template<class... AN>
auto skip(AN... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(skip_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
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{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(skip_while_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-skip_last.hpp
*/
template<class... AN>
auto skip_last(AN... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(skip_last_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(skip_last_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-skip_until.hpp
*/
template<class... AN>
auto skip_until(AN... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(skip_until_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(skip_until_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-take.hpp
*/
template<class... AN>
auto take(AN... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(take_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(take_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-take_last.hpp
*/
template<class... AN>
auto take_last(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(take_last_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(take_last_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-take_until.hpp
*/
template<class... AN>
auto take_until(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(take_until_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(take_until_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-take_while.hpp
*/
template<class... AN>
auto take_while(AN&&... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(take_while_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(take_while_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-repeat.hpp
*/
template<class... AN>
auto repeat(AN... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(repeat_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(repeat_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-retry.hpp
*/
template<class... AN>
auto retry(AN... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(retry_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(retry_tag{}, *(this_type*)this, std::forward<AN>(an)...);
}
/*! @copydoc rx-start_with.hpp
*/
template<class... AN>
auto start_with(AN... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(start_with_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(start_with_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-pairwise.hpp
*/
template<class... AN>
auto pairwise(AN... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(pairwise_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(pairwise_tag{}, *this, std::forward<AN>(an)...);
}
};
template<class T, class SourceOperator>
inline bool operator==(const observable<T, SourceOperator>& lhs, const observable<T, SourceOperator>& rhs) {
return lhs.source_operator == rhs.source_operator;
}
template<class T, class SourceOperator>
inline bool operator!=(const observable<T, SourceOperator>& lhs, const observable<T, SourceOperator>& rhs) {
return !(lhs == rhs);
}
/*!
\defgroup group-core Basics
\brief These are the core classes that combine to represent a set of values emitted over time that can be cancelled.
\class rxcpp::observable<void, void>
\brief typed as ```rxcpp::observable<>```, this is a collection of factory methods that return an observable.
\ingroup group-core
\par Create a new type of observable
\sample
\snippet create.cpp Create sample
\snippet output.txt Create sample
\par Create an observable that emits a range of values
\sample
\snippet range.cpp range sample
\snippet output.txt range sample
\par Create an observable that emits nothing / generates an error / immediately completes
\sample
\snippet never.cpp never sample
\snippet output.txt never sample
\snippet error.cpp error sample
\snippet output.txt error sample
\snippet empty.cpp empty sample
\snippet output.txt empty sample
\par Create an observable that generates new observable for each subscriber
\sample
\snippet defer.cpp defer sample
\snippet output.txt defer sample
\par Create an observable that emits items every specified interval of time
\sample
\snippet interval.cpp interval sample
\snippet output.txt interval sample
\par Create an observable that emits items in the specified interval of time
\sample
\snippet timer.cpp duration timer sample
\snippet output.txt duration timer sample
\par Create an observable that emits all items from a collection
\sample
\snippet iterate.cpp iterate sample
\snippet output.txt iterate sample
\par Create an observable that emits a set of specified items
\sample
\snippet from.cpp from sample
\snippet output.txt from sample
\par Create an observable that emits a single item
\sample
\snippet just.cpp just sample
\snippet output.txt just sample
\par Create an observable that emits a set of items and then subscribes to another observable
\sample
\snippet start_with.cpp full start_with sample
\snippet output.txt full start_with sample
\par Create an observable that generates a new observable based on a generated resource for each subscriber
\sample
\snippet scope.cpp scope sample
\snippet output.txt scope sample
*/
template<>
class observable<void, void>
{
~observable();
public:
/*! @copydoc rx-create.hpp
*/
template<class T, class OnSubscribe>
static auto create(OnSubscribe os)
-> decltype(rxs::create<T>(std::move(os))) {
return rxs::create<T>(std::move(os));
}
/*! @copydoc rx-range.hpp
*/
template<class T>
static auto range(T first = 0, T last = std::numeric_limits<T>::max(), std::ptrdiff_t step = 1)
-> decltype(rxs::range<T>(first, last, step, identity_current_thread())) {
return rxs::range<T>(first, last, step, identity_current_thread());
}
/*! @copydoc rx-range.hpp
*/
template<class T, class Coordination>
static auto range(T first, T last, std::ptrdiff_t step, Coordination cn)
-> decltype(rxs::range<T>(first, last, step, std::move(cn))) {
return rxs::range<T>(first, last, step, std::move(cn));
}
/*! @copydoc rx-range.hpp
*/
template<class T, class Coordination>
static auto range(T first, T last, Coordination cn)
-> decltype(rxs::range<T>(first, last, std::move(cn))) {
return rxs::range<T>(first, last, std::move(cn));
}
/*! @copydoc rx-range.hpp
*/
template<class T, class Coordination>
static auto range(T first, Coordination cn)
-> decltype(rxs::range<T>(first, std::move(cn))) {
return rxs::range<T>(first, std::move(cn));
}
/*! @copydoc rx-never.hpp
*/
template<class T>
static auto never()
-> decltype(rxs::never<T>()) {
return rxs::never<T>();
}
/*! @copydoc rx-defer.hpp
*/
template<class ObservableFactory>
static auto defer(ObservableFactory of)
-> decltype(rxs::defer(std::move(of))) {
return rxs::defer(std::move(of));
}
/*! @copydoc rx-interval.hpp
*/
template<class... AN>
static auto interval(rxsc::scheduler::clock_type::duration period, AN**...)
-> decltype(rxs::interval(period)) {
return rxs::interval(period);
static_assert(sizeof...(AN) == 0, "interval(period) was passed too many arguments.");
}
/*! @copydoc rx-interval.hpp
*/
template<class Coordination>
static auto interval(rxsc::scheduler::clock_type::duration period, Coordination cn)
-> decltype(rxs::interval(period, std::move(cn))) {
return rxs::interval(period, std::move(cn));
}
/*! @copydoc rx-interval.hpp
*/
template<class... AN>
static auto interval(rxsc::scheduler::clock_type::time_point initial, rxsc::scheduler::clock_type::duration period, AN**...)
-> decltype(rxs::interval(initial, period)) {
return rxs::interval(initial, period);
static_assert(sizeof...(AN) == 0, "interval(initial, period) was passed too many arguments.");
}
/*! @copydoc rx-interval.hpp
*/
template<class Coordination>
static auto interval(rxsc::scheduler::clock_type::time_point initial, rxsc::scheduler::clock_type::duration period, Coordination cn)
-> decltype(rxs::interval(initial, period, std::move(cn))) {
return rxs::interval(initial, period, std::move(cn));
}
/*! @copydoc rx-timer.hpp
*/
template<class... AN>
static auto timer(rxsc::scheduler::clock_type::time_point at, AN**...)
-> decltype(rxs::timer(at)) {
return rxs::timer(at);
static_assert(sizeof...(AN) == 0, "timer(at) was passed too many arguments.");
}
/*! @copydoc rx-timer.hpp
*/
template<class... AN>
static auto timer(rxsc::scheduler::clock_type::duration after, AN**...)
-> decltype(rxs::timer(after)) {
return rxs::timer(after);
static_assert(sizeof...(AN) == 0, "timer(after) was passed too many arguments.");
}
/*! @copydoc rx-timer.hpp
*/
template<class Coordination>
static auto timer(rxsc::scheduler::clock_type::time_point when, Coordination cn)
-> decltype(rxs::timer(when, std::move(cn))) {
return rxs::timer(when, std::move(cn));
}
/*! @copydoc rx-timer.hpp
*/
template<class Coordination>
static auto timer(rxsc::scheduler::clock_type::duration when, Coordination cn)
-> decltype(rxs::timer(when, std::move(cn))) {
return rxs::timer(when, std::move(cn));
}
/*! @copydoc rx-iterate.hpp
*/
template<class Collection>
static auto iterate(Collection&& c)
-> decltype(rxs::iterate(std::forward<Collection>(c), identity_current_thread())) {
return rxs::iterate(std::forward<Collection>(c), identity_current_thread());
}
/*! @copydoc rx-iterate.hpp
*/
template<class Collection, class Coordination>
static auto iterate(Collection&& c, Coordination cn)
-> decltype(rxs::iterate(std::forward<Collection>(c), std::move(cn))) {
return rxs::iterate(std::forward<Collection>(c), std::move(cn));
}
/*! @copydoc rxcpp::sources::from()
*/
template<class T>
static auto from()
-> decltype( rxs::from<T>()) {
return rxs::from<T>();
}
/*! @copydoc rxcpp::sources::from(Coordination cn)
*/
template<class T, class Coordination>
static auto from(Coordination cn)
-> typename std::enable_if<is_coordination<Coordination>::value,
decltype( rxs::from<T>(std::move(cn)))>::type {
return rxs::from<T>(std::move(cn));
}
/*! @copydoc rxcpp::sources::from(Value0 v0, ValueN... vn)
*/
template<class Value0, class... ValueN>
static auto from(Value0&& v0, ValueN&&... vn)
-> typename std::enable_if<!is_coordination<rxu::decay_t<Value0>>::value,
decltype( rxs::from(std::forward<Value0>(v0), std::forward<ValueN>(vn)...))>::type {
return rxs::from(std::forward<Value0>(v0), std::forward<ValueN>(vn)...);
}
/*! @copydoc rxcpp::sources::from(Coordination cn, Value0 v0, ValueN... vn)
*/
template<class Coordination, class Value0, class... ValueN>
static auto from(Coordination cn, Value0&& v0, ValueN&&... vn)
-> typename std::enable_if<is_coordination<Coordination>::value,
decltype( rxs::from(std::move(cn), std::forward<Value0>(v0), std::forward<ValueN>(vn)...))>::type {
return rxs::from(std::move(cn), std::forward<Value0>(v0), std::forward<ValueN>(vn)...);
}
/*! @copydoc rxcpp::sources::just(Value0 v0)
*/
template<class T>
static auto just(T&& v)
-> decltype(rxs::just(std::forward<T>(v))) {
return rxs::just(std::forward<T>(v));
}
/*! @copydoc rxcpp::sources::just(Value0 v0, Coordination cn)
*/
template<class T, class Coordination>
static auto just(T&& v, Coordination cn)
-> decltype(rxs::just(std::forward<T>(v), std::move(cn))) {
return rxs::just(std::forward<T>(v), std::move(cn));
}
/*! @copydoc rxcpp::sources::start_with(Observable o, Value0 v0, ValueN... vn)
*/
template<class Observable, class Value0, class... ValueN>
static auto start_with(Observable o, Value0&& v0, ValueN&&... vn)
-> decltype(rxs::start_with(std::move(o), std::forward<Value0>(v0), std::forward<ValueN>(vn)...)) {
return rxs::start_with(std::move(o), std::forward<Value0>(v0), std::forward<ValueN>(vn)...);
}
/*! @copydoc rx-empty.hpp
*/
template<class T>
static auto empty()
-> decltype(from<T>()) {
return from<T>();
}
/*! @copydoc rx-empty.hpp
*/
template<class T, class Coordination>
static auto empty(Coordination cn)
-> decltype(from<T>(std::move(cn))) {
return from<T>(std::move(cn));
}
/*! @copydoc rx-error.hpp
*/
template<class T, class Exception>
static auto error(Exception&& e)
-> decltype(rxs::error<T>(std::forward<Exception>(e))) {
return rxs::error<T>(std::forward<Exception>(e));
}
/*! @copydoc rx-error.hpp
*/
template<class T, class Exception, class Coordination>
static auto error(Exception&& e, Coordination cn)
-> decltype(rxs::error<T>(std::forward<Exception>(e), std::move(cn))) {
return rxs::error<T>(std::forward<Exception>(e), std::move(cn));
}
/*! @copydoc rx-scope.hpp
*/
template<class ResourceFactory, class ObservableFactory>
static auto scope(ResourceFactory rf, ObservableFactory of)
-> decltype(rxs::scope(std::move(rf), std::move(of))) {
return rxs::scope(std::move(rf), std::move(of));
}
};
}
//
// support range() >> filter() >> subscribe() syntax
// '>>' is spelled 'stream'
//
template<class T, class SourceOperator, class OperatorFactory>
auto operator >> (const rxcpp::observable<T, SourceOperator>& source, OperatorFactory&& of)
-> decltype(source.op(std::forward<OperatorFactory>(of))) {
return source.op(std::forward<OperatorFactory>(of));
}
//
// support range() | filter() | subscribe() syntax
// '|' is spelled 'pipe'
//
template<class T, class SourceOperator, class OperatorFactory>
auto operator | (const rxcpp::observable<T, SourceOperator>& source, OperatorFactory&& of)
-> decltype(source.op(std::forward<OperatorFactory>(of))) {
return source.op(std::forward<OperatorFactory>(of));
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_CONNECTABLE_OBSERVABLE_HPP)
#define RXCPP_RX_CONNECTABLE_OBSERVABLE_HPP
namespace rxcpp {
namespace detail {
template<class T>
struct has_on_connect
{
struct not_void {};
template<class CT>
static auto check(int) -> decltype(std::declval<CT>().on_connect(composite_subscription()));
template<class CT>
static not_void check(...);
using detail_result = decltype(check<T>(0));
static const bool value = std::is_same_v<detail_result, void>;
};
}
template<class T>
class dynamic_connectable_observable
: public dynamic_observable<T>
{
struct state_type
: public std::enable_shared_from_this<state_type>
{
using onconnect_type = std::function<void(composite_subscription)>;
onconnect_type on_connect;
};
std::shared_ptr<state_type> state;
template<class U>
void construct(const dynamic_observable<U>& o, tag_dynamic_observable&&) {
state = o.state;
}
template<class U>
void construct(dynamic_observable<U>&& o, tag_dynamic_observable&&) {
state = std::move(o.state);
}
template<class SO>
void construct(SO&& source, rxs::tag_source&&) {
auto so = std::make_shared<rxu::decay_t<SO>>(std::forward<SO>(source));
state->on_connect = [so](composite_subscription cs) mutable {
so->on_connect(std::move(cs));
};
}
public:
using dynamic_observable_tag = tag_dynamic_observable;
dynamic_connectable_observable()
{
}
template<class SOF>
explicit dynamic_connectable_observable(SOF sof)
: dynamic_observable<T>(sof)
, state(std::make_shared<state_type>())
{
construct(std::move(sof), typename std::conditional_t<is_dynamic_observable<SOF>::value, tag_dynamic_observable, rxs::tag_source>());
}
template<class SF, class CF>
dynamic_connectable_observable(SF&& sf, CF&& cf)
: dynamic_observable<T>(std::forward<SF>(sf))
, state(std::make_shared<state_type>())
{
state->on_connect = std::forward<CF>(cf);
}
using dynamic_observable<T>::on_subscribe;
void on_connect(composite_subscription cs) const {
state->on_connect(std::move(cs));
}
};
template<class T, class Source>
connectable_observable<T> make_dynamic_connectable_observable(Source&& s) {
return connectable_observable<T>(dynamic_connectable_observable<T>(std::forward<Source>(s)));
}
/*!
\brief a source of values that is shared across all subscribers and does not start until connectable_observable::connect() is called.
\ingroup group-observable
*/
template<class T, class SourceOperator>
class connectable_observable
: public observable<T, SourceOperator>
{
using this_type = connectable_observable<T, SourceOperator>;
using base_type = observable<T, SourceOperator>;
using source_operator_type = rxu::decay_t<SourceOperator>;
static_assert(detail::has_on_connect<source_operator_type>::value, "inner must have on_connect method void(composite_subscription)");
public:
using observable_tag = tag_connectable_observable;
connectable_observable()
{
}
explicit connectable_observable(const SourceOperator& o)
: base_type(o)
{
}
explicit connectable_observable(SourceOperator&& o)
: base_type(std::move(o))
{
}
// implicit conversion between observables of the same value_type
template<class SO>
connectable_observable(const connectable_observable<T, SO>& o)
: base_type(o)
{}
// implicit conversion between observables of the same value_type
template<class SO>
connectable_observable(connectable_observable<T, SO>&& o)
: base_type(std::move(o))
{}
///
/// takes any function that will take this observable and produce a result value.
/// this is intended to allow externally defined operators, that use subscribe,
/// to be connected into the expression.
///
template<class OperatorFactory>
auto op(OperatorFactory&& of) const
-> decltype(of(std::declval<const this_type>())) {
return of(*this);
static_assert(is_operator_factory_for<this_type, OperatorFactory>::value, "Function passed for op() must have the signature Result(SourceObservable)");
}
///
/// performs type-forgetting conversion to a new composite_observable
///
connectable_observable<T> as_dynamic() {
return *this;
}
composite_subscription connect(composite_subscription cs = composite_subscription()) {
base_type::source_operator.on_connect(cs);
return cs;
}
/*! @copydoc rx-ref_count.hpp
*/
template<class... AN>
auto ref_count(AN... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(ref_count_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(ref_count_tag{}, *this, std::forward<AN>(an)...);
}
/*! @copydoc rx-connect_forever.hpp
*/
template<class... AN>
auto connect_forever(AN... an) const
/// \cond SHOW_SERVICE_MEMBERS
-> decltype(observable_member(connect_forever_tag{}, std::declval<this_type>(), std::forward<AN>(an)...))
/// \endcond
{
return observable_member(connect_forever_tag{}, *this, std::forward<AN>(an)...);
}
};
}
//
// support range() >> filter() >> subscribe() syntax
// '>>' is spelled 'stream'
//
template<class T, class SourceOperator, class OperatorFactory>
auto operator >> (const rxcpp::connectable_observable<T, SourceOperator>& source, OperatorFactory&& of)
-> decltype(source.op(std::forward<OperatorFactory>(of))) {
return source.op(std::forward<OperatorFactory>(of));
}
//
// support range() | filter() | subscribe() syntax
// '|' is spelled 'pipe'
//
template<class T, class SourceOperator, class OperatorFactory>
auto operator | (const rxcpp::connectable_observable<T, SourceOperator>& source, OperatorFactory&& of)
-> decltype(source.op(std::forward<OperatorFactory>(of))) {
return source.op(std::forward<OperatorFactory>(of));
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_RX_GROUPED_OBSERVABLE_HPP)
#define RXCPP_RX_GROUPED_OBSERVABLE_HPP
namespace rxcpp {
namespace detail {
template<class K, class Source>
struct has_on_get_key_for
{
struct not_void {};
template<class CS>
static auto check(int) -> decltype(std::declval<CS>().on_get_key());
template<class CS>
static not_void check(...);
using detail_result = decltype(check<Source>(0));
static const bool value = std::is_same_v<detail_result, rxu::decay_t<K>>;
};
}
template<class K, class T>
class dynamic_grouped_observable
: public dynamic_observable<T>
{
public:
using key_type = rxu::decay_t<K>;
using dynamic_observable_tag = tag_dynamic_grouped_observable;
private:
struct state_type
: public std::enable_shared_from_this<state_type>
{
using ongetkey_type = std::function<key_type()>;
ongetkey_type on_get_key;
};
std::shared_ptr<state_type> state;
template<class U, class V>
friend bool operator==(const dynamic_grouped_observable<U, V>&, const dynamic_grouped_observable<U, V>&);
template<class U, class V>
void construct(const dynamic_grouped_observable<U, V>& o, const tag_dynamic_grouped_observable&) {
state = o.state;
}
template<class U, class V>
void construct(dynamic_grouped_observable<U, V>&& o, const tag_dynamic_grouped_observable&) {
state = std::move(o.state);
}
template<class SO>
void construct(SO&& source, const rxs::tag_source&) {
auto so = std::make_shared<rxu::decay_t<SO>>(std::forward<SO>(source));
state->on_get_key = [so]() mutable {
return so->on_get_key();
};
}
public:
dynamic_grouped_observable()
{
}
template<class SOF>
explicit dynamic_grouped_observable(SOF sof)
: dynamic_observable<T>(sof)
, state(std::make_shared<state_type>())
{
construct(std::move(sof), typename std::conditional_t<is_dynamic_grouped_observable<SOF>::value, tag_dynamic_grouped_observable, rxs::tag_source>());
}
template<class SF, class CF>
dynamic_grouped_observable(SF&& sf, CF&& cf)
: dynamic_observable<T>(std::forward<SF>(sf))
, state(std::make_shared<state_type>())
{
state->on_connect = std::forward<CF>(cf);
}
using dynamic_observable<T>::on_subscribe;
key_type on_get_key() const {
return state->on_get_key();
}
};
template<class K, class T>
inline bool operator==(const dynamic_grouped_observable<K, T>& lhs, const dynamic_grouped_observable<K, T>& rhs) {
return lhs.state == rhs.state;
}
template<class K, class T>
inline bool operator!=(const dynamic_grouped_observable<K, T>& lhs, const dynamic_grouped_observable<K, T>& rhs) {
return !(lhs == rhs);
}
template<class K, class T, class Source>
grouped_observable<K, T> make_dynamic_grouped_observable(Source&& s) {
return grouped_observable<K, T>(dynamic_grouped_observable<K, T>(std::forward<Source>(s)));
}
/*!
\brief a source of observables which each emit values from one category specified by the key selector.
\ingroup group-observable
*/
template<class K, class T, class SourceOperator>
class grouped_observable
: public observable<T, SourceOperator>
{
using this_type = grouped_observable<K, T, SourceOperator>;
using base_type = observable<T, SourceOperator>;
using source_operator_type = rxu::decay_t<SourceOperator>;
static_assert(detail::has_on_get_key_for<K, source_operator_type>::value, "inner must have on_get_key method key_type()");
public:
using key_type = rxu::decay_t<K>;
using observable_tag = tag_grouped_observable;
grouped_observable()
{
}
explicit grouped_observable(const SourceOperator& o)
: base_type(o)
{
}
explicit grouped_observable(SourceOperator&& o)
: base_type(std::move(o))
{
}
// implicit conversion between observables of the same value_type
template<class SO>
grouped_observable(const grouped_observable<K, T, SO>& o)
: base_type(o)
{}
// implicit conversion between observables of the same value_type
template<class SO>
grouped_observable(grouped_observable<K, T, SO>&& o)
: base_type(std::move(o))
{}
///
/// performs type-forgetting conversion to a new grouped_observable
///
grouped_observable<K, T> as_dynamic() const {
return *this;
}
key_type get_key() const {
return base_type::source_operator.on_get_key();
}
};
}
//
// support range() >> filter() >> subscribe() syntax
// '>>' is spelled 'stream'
//
template<class K, class T, class SourceOperator, class OperatorFactory>
auto operator >> (const rxcpp::grouped_observable<K, T, SourceOperator>& source, OperatorFactory&& of)
-> decltype(source.op(std::forward<OperatorFactory>(of))) {
return source.op(std::forward<OperatorFactory>(of));
}
//
// support range() | filter() | subscribe() syntax
// '|' is spelled 'pipe'
//
template<class K, class T, class SourceOperator, class OperatorFactory>
auto operator | (const rxcpp::grouped_observable<K, T, SourceOperator>& source, OperatorFactory&& of)
-> decltype(source.op(std::forward<OperatorFactory>(of))) {
return source.op(std::forward<OperatorFactory>(of));
}
#endif
#if !defined(RXCPP_LITE)
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-all.hpp
\brief Returns an Observable that emits true if every item emitted by the source Observable satisfies a specified condition, otherwise false.
Emits true if the source Observable terminates without emitting any item.
\tparam Predicate the type of the test function.
\param p the test function to test items emitted by the source Observable.
\return Observable that emits true if every item emitted by the source observable satisfies a specified condition, otherwise false.
\sample
\snippet all.cpp all sample
\snippet output.txt all sample
*/
#if !defined(RXCPP_OPERATORS_RX_ALL_HPP)
#define RXCPP_OPERATORS_RX_ALL_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct all_invalid_arguments {};
template<class... AN>
struct all_invalid : public rxo::operator_base<all_invalid_arguments<AN...>> {
using type = observable<all_invalid_arguments<AN...>, all_invalid<AN...>>;
};
template<class... AN>
using all_invalid_t = typename all_invalid<AN...>::type;
template<class T, class Predicate>
struct all
{
using source_value_type = rxu::decay_t<T>;
using test_type = rxu::decay_t<Predicate>;
test_type test;
using value_type = bool;
all(test_type t)
: test(std::move(t))
{
}
template<class Subscriber>
struct all_observer
{
using this_type = all_observer<Subscriber>;
using value_type = source_value_type;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<value_type, this_type>;
dest_type dest;
test_type test;
mutable bool done;
all_observer(dest_type d, test_type t)
: dest(std::move(d))
, test(std::move(t)),
done(false)
{
}
void on_next(const source_value_type& v) const {
auto filtered = on_exception([&]() {
return !this->test(v); },
dest);
if (filtered.empty()) {
return;
}
if (filtered.get() && !done) {
done = true;
dest.on_next(false);
dest.on_completed();
}
}
void on_error(rxu::error_ptr e) const {
dest.on_error(e);
}
void on_completed() const {
if(!done) {
done = true;
dest.on_next(true);
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(all_observer<Subscriber>::make(std::move(dest), test)) {
return all_observer<Subscriber>::make(std::move(dest), test);
}
};
}
/*! @copydoc rx-all.hpp
*/
template<class... AN>
auto all(AN&&... an)
-> operator_factory<all_tag, AN...> {
return operator_factory<all_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
/*! \brief Returns an Observable that emits true if the source Observable is empty, otherwise false.
\return An observable that emits a boolean value.
\sample
\snippet is_empty.cpp is_empty sample
\snippet output.txt is_empty sample
*/
template<class... AN>
auto is_empty(AN&&... an)
-> operator_factory<is_empty_tag, AN...> {
return operator_factory<is_empty_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<all_tag>
{
template<class Observable, class Predicate,
class SourceValue = rxu::value_type_t<Observable>,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class All = rxo::detail::all<SourceValue, rxu::decay_t<Predicate>>,
class Value = rxu::value_type_t<All>>
static auto member(Observable&& o, Predicate&& p)
-> decltype(o.template lift<Value>(All(std::forward<Predicate>(p)))) {
return o.template lift<Value>(All(std::forward<Predicate>(p)));
}
template<class... AN>
static operators::detail::all_invalid_t<AN...> member(const AN&...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "all takes (Predicate)");
}
};
template<>
struct member_overload<is_empty_tag>
{
template<class Observable,
class SourceValue = rxu::value_type_t<Observable>,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class Predicate = std::function<bool(const SourceValue&)>,
class IsEmpty = rxo::detail::all<SourceValue, rxu::decay_t<Predicate>>,
class Value = rxu::value_type_t<IsEmpty>>
static auto member(Observable&& o)
-> decltype(o.template lift<Value>(IsEmpty(nullptr))) {
return o.template lift<Value>(IsEmpty([](const SourceValue&) { return false; }));
}
template<class... AN>
static operators::detail::all_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "is_empty takes no arguments");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-amb.hpp
\brief For each item from only the first of the given observables deliver from the new observable that is returned, on the specified scheduler.
There are 2 variants of the operator:
- The source observable emits nested observables, one of the nested observables is selected.
- The source observable and the arguments v0...vn are used to provide the observables to select from.
\tparam Coordination the type of the scheduler (optional).
\tparam Value0 ... (optional).
\tparam ValueN types of source observables (optional).
\param cn the scheduler to synchronize sources from different contexts (optional).
\param v0 ... (optional).
\param vn source observables (optional).
\return Observable that emits the same sequence as whichever of the source observables first emitted an item or sent a termination notification.
If scheduler is omitted, identity_current_thread is used.
\sample
\snippet amb.cpp threaded implicit amb sample
\snippet output.txt threaded implicit amb sample
\snippet amb.cpp implicit amb sample
\snippet output.txt implicit amb sample
\snippet amb.cpp amb sample
\snippet output.txt amb sample
\snippet amb.cpp threaded amb sample
\snippet output.txt threaded amb sample
*/
#if !defined(RXCPP_OPERATORS_RX_AMB_HPP)
#define RXCPP_OPERATORS_RX_AMB_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct amb_invalid_arguments {};
template<class... AN>
struct amb_invalid : public rxo::operator_base<amb_invalid_arguments<AN...>> {
using type = observable<amb_invalid_arguments<AN...>, amb_invalid<AN...>>;
};
template<class... AN>
using amb_invalid_t = typename amb_invalid<AN...>::type;
template<class T, class Observable, class Coordination>
struct amb
: public operator_base<rxu::value_type_t<T>>
{
//static_assert(is_observable<Observable>::value, "amb requires an observable");
//static_assert(is_observable<T>::value, "amb requires an observable that contains observables");
using this_type = amb<T, Observable, Coordination>;
using source_value_type = rxu::decay_t<T>;
using source_type = rxu::decay_t<Observable>;
using source_operator_type = typename source_type::source_operator_type;
using value_type = typename source_value_type::value_type;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
struct values
{
values(source_operator_type o, coordination_type sf)
: source_operator(std::move(o))
, coordination(std::move(sf))
{
}
source_operator_type source_operator;
coordination_type coordination;
};
values initial;
amb(const source_type& o, coordination_type sf)
: initial(o.source_operator, std::move(sf))
{
}
template<class Subscriber>
void on_subscribe(Subscriber scbr) const {
static_assert(is_subscriber<Subscriber>::value, "subscribe must be passed a subscriber");
using output_type = Subscriber;
struct amb_state_type
: public std::enable_shared_from_this<amb_state_type>
, public values
{
amb_state_type(values i, coordinator_type coor, output_type oarg)
: values(i)
, source(i.source_operator)
, coordinator(std::move(coor))
, out(std::move(oarg))
, pendingObservables(0)
, firstEmitted(false)
{
}
observable<source_value_type, source_operator_type> source;
coordinator_type coordinator;
output_type out;
int pendingObservables;
bool firstEmitted;
std::vector<composite_subscription> innerSubscriptions;
};
auto coordinator = initial.coordination.create_coordinator(scbr.get_subscription());
// take a copy of the values for each subscription
auto state = std::make_shared<amb_state_type>(initial, std::move(coordinator), std::move(scbr));
composite_subscription outercs;
// when the out observer is unsubscribed all the
// inner subscriptions are unsubscribed as well
state->out.add(outercs);
auto source = on_exception(
[&](){return state->coordinator.in(state->source);},
state->out);
if (source.empty()) {
return;
}
// this subscribe does not share the observer subscription
// so that when it is unsubscribed the observer can be called
// until the inner subscriptions have finished
auto sink = make_subscriber<source_value_type>(
state->out,
outercs,
// on_next
[state](source_value_type st) {
if (state->firstEmitted)
return;
composite_subscription innercs;
state->innerSubscriptions.push_back(innercs);
// when the out observer is unsubscribed all the
// inner subscriptions are unsubscribed as well
auto innercstoken = state->out.add(innercs);
innercs.add(make_subscription([state, innercstoken](){
state->out.remove(innercstoken);
}));
auto selectedSource = state->coordinator.in(st);
auto current_id = state->pendingObservables++;
// this subscribe does not share the source subscription
// so that when it is unsubscribed the source will continue
auto sinkInner = make_subscriber<value_type>(
state->out,
innercs,
// on_next
[state, st, current_id](auto&& ct) {
state->out.on_next(std::forward<decltype(ct)>(ct));
if (!state->firstEmitted) {
state->firstEmitted = true;
auto do_unsubscribe = [](composite_subscription cs) {
cs.unsubscribe();
};
std::for_each(state->innerSubscriptions.begin(), state->innerSubscriptions.begin() + current_id, do_unsubscribe);
std::for_each(state->innerSubscriptions.begin() + current_id + 1, state->innerSubscriptions.end(), do_unsubscribe);
}
},
// on_error
[state](rxu::error_ptr e) {
state->out.on_error(e);
},
//on_completed
[state](){
state->out.on_completed();
}
);
auto selectedSinkInner = state->coordinator.out(sinkInner);
selectedSource.subscribe(std::move(selectedSinkInner));
},
// on_error
[state](rxu::error_ptr e) {
state->out.on_error(e);
},
// on_completed
[state]() {
if (state->pendingObservables == 0) {
state->out.on_completed();
}
}
);
auto selectedSink = on_exception(
[&](){return state->coordinator.out(sink);},
state->out);
if (selectedSink.empty()) {
return;
}
source->subscribe(std::move(selectedSink.get()));
}
};
}
/*! @copydoc rx-amb.hpp
*/
template<class... AN>
auto amb(AN&&... an)
-> operator_factory<amb_tag, AN...> {
return operator_factory<amb_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<amb_tag>
{
template<class Observable,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Amb = rxo::detail::amb<SourceValue, rxu::decay_t<Observable>, identity_one_worker>,
class Value = rxu::value_type_t<SourceValue>,
class Result = observable<Value, Amb>
>
static Result member(Observable&& o) {
return Result(Amb(std::forward<Observable>(o), identity_current_thread()));
}
template<class Observable, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class Amb = rxo::detail::amb<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<Coordination>>,
class Value = rxu::value_type_t<SourceValue>,
class Result = observable<Value, Amb>
>
static Result member(Observable&& o, Coordination&& cn) {
return Result(Amb(std::forward<Observable>(o), std::forward<Coordination>(cn)));
}
template<class Observable, class Value0, class... ValueN,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, Value0, ValueN...>>,
class EmittedValue = rxu::value_type_t<Observable>,
class SourceValue = observable<EmittedValue>,
class ObservableObservable = observable<SourceValue>,
class Amb = typename rxu::defer_type<rxo::detail::amb, SourceValue, ObservableObservable, identity_one_worker>::type,
class Value = rxu::value_type_t<Amb>,
class Result = observable<Value, Amb>
>
static Result member(Observable&& o, Value0&& v0, ValueN&&... vn) {
return Result(Amb(rxs::from(o.as_dynamic(), v0.as_dynamic(), vn.as_dynamic()...), identity_current_thread()));
}
template<class Observable, class Coordination, class Value0, class... ValueN,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, Value0, ValueN...>,
is_coordination<Coordination>>,
class EmittedValue = rxu::value_type_t<Observable>,
class SourceValue = observable<EmittedValue>,
class ObservableObservable = observable<SourceValue>,
class Amb = typename rxu::defer_type<rxo::detail::amb, SourceValue, ObservableObservable, rxu::decay_t<Coordination>>::type,
class Value = rxu::value_type_t<Amb>,
class Result = observable<Value, Amb>
>
static Result member(Observable&& o, Coordination&& cn, Value0&& v0, ValueN&&... vn) {
return Result(Amb(rxs::from(o.as_dynamic(), v0.as_dynamic(), vn.as_dynamic()...), std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::amb_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "amb takes (optional Coordination, optional Value0, optional ValueN...)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-any.hpp
\brief Returns an Observable that emits true if any item emitted by the source Observable satisfies a specified condition, otherwise false. Emits false if the source Observable terminates without emitting any item.
\tparam Predicate the type of the test function.
\param p the test function to test items emitted by the source Observable.
\return An observable that emits true if any item emitted by the source observable satisfies a specified condition, otherwise false.
Some basic any- operators have already been implemented:
- rxcpp::operators::exists
- rxcpp::operators::contains
\sample
\snippet exists.cpp exists sample
\snippet output.txt exists sample
\sample
\snippet contains.cpp contains sample
\snippet output.txt contains sample
*/
#if !defined(RXCPP_OPERATORS_RX_ANY_HPP)
#define RXCPP_OPERATORS_RX_ANY_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct any_invalid_arguments {};
template<class... AN>
struct any_invalid : public rxo::operator_base<any_invalid_arguments<AN...>> {
using type = observable<any_invalid_arguments<AN...>, any_invalid<AN...>>;
};
template<class... AN>
using any_invalid_t = typename any_invalid<AN...>::type;
template<class T, class Predicate>
struct any
{
using source_value_type = rxu::decay_t<T>;
using value_type = bool;
using test_type = rxu::decay_t<Predicate>;
test_type test;
any(test_type t)
: test(std::move(t))
{
}
template<class Subscriber>
struct any_observer
{
using this_type = any_observer<Subscriber>;
using value_type = source_value_type;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<value_type, this_type>;
dest_type dest;
test_type test;
mutable bool done;
any_observer(dest_type d, test_type t)
: dest(std::move(d))
, test(std::move(t)),
done(false)
{
}
void on_next(const source_value_type& v) const {
auto filtered = on_exception([&]() {
return !this->test(v); },
dest);
if (filtered.empty()) {
return;
}
if (!filtered.get() && !done) {
done = true;
dest.on_next(true);
dest.on_completed();
}
}
void on_error(rxu::error_ptr e) const {
dest.on_error(e);
}
void on_completed() const {
if(!done) {
done = true;
dest.on_next(false);
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(any_observer<Subscriber>::make(std::move(dest), test)) {
return any_observer<Subscriber>::make(std::move(dest), test);
}
};
}
/*! @copydoc rx-any.hpp
*/
template<class... AN>
auto any(AN&&... an)
-> operator_factory<any_tag, AN...> {
return operator_factory<any_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
/*! \brief Returns an Observable that emits true if any item emitted by the source Observable satisfies a specified condition, otherwise false. Emits false if the source Observable terminates without emitting any item.
\tparam Predicate the type of the test function.
\param p the test function to test items emitted by the source Observable.
\return An observable that emits true if any item emitted by the source observable satisfies a specified condition, otherwise false.
\sample
\snippet exists.cpp exists sample
\snippet output.txt exists sample
*/
template<class... AN>
auto exists(AN&&... an)
-> operator_factory<exists_tag, AN...> {
return operator_factory<exists_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
/*! \brief Returns an Observable that emits true if the source Observable emitted a specified item, otherwise false. Emits false if the source Observable terminates without emitting any item.
\tparam T the type of the item to search for.
\param value the item to search for.
\return An observable that emits true if the source Observable emitted a specified item, otherwise false.
\sample
\snippet contains.cpp contains sample
\snippet output.txt contains sample
*/
template<class... AN>
auto contains(AN&&... an)
-> operator_factory<contains_tag, AN...> {
return operator_factory<contains_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<any_tag>
{
template<class Observable, class Predicate,
class SourceValue = rxu::value_type_t<Observable>,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class Any = rxo::detail::any<SourceValue, rxu::decay_t<Predicate>>,
class Value = rxu::value_type_t<Any>>
static auto member(Observable&& o, Predicate&& p)
-> decltype(o.template lift<Value>(Any(std::forward<Predicate>(p)))) {
return o.template lift<Value>(Any(std::forward<Predicate>(p)));
}
template<class... AN>
static operators::detail::any_invalid_t<AN...> member(const AN&...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "any takes (Predicate)");
}
};
template<>
struct member_overload<exists_tag>
: member_overload<any_tag>
{
using member_overload<any_tag>::member;
template<class... AN>
static operators::detail::any_invalid_t<AN...> member(const AN&...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "exists takes (Predicate)");
}
};
template<>
struct member_overload<contains_tag>
{
template<class Observable, class T,
class SourceValue = rxu::value_type_t<Observable>,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class Predicate = std::function<bool(const rxu::decay_t<T>&)>,
class Any = rxo::detail::any<SourceValue, rxu::decay_t<Predicate>>,
class Value = rxu::value_type_t<Any>>
static auto member(Observable&& o, T&& value)
-> decltype(o.template lift<Value>(Any(nullptr))) {
auto valueAsShared = std::make_shared<rxu::decay_t<T>>(std::forward<T>(value));
return o.template lift<Value>(Any([valueAsShared](const rxu::decay_t<T>& n) { return n == *valueAsShared; }));
}
template<class... AN>
static operators::detail::any_invalid_t<AN...> member(const AN&...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "contains takes (T)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-buffer_count.hpp
\brief Return an observable that emits connected, non-overlapping buffer, each containing at most count items from the source observable.
If the skip parameter is set, return an observable that emits buffers every skip items containing at most count items from the source observable.
\param count the maximum size of each buffers before it should be emitted.
\param skip how many items need to be skipped before starting a new buffers (optional).
\return Observable that emits connected, non-overlapping buffers, each containing at most count items from the source observable.
If the skip parameter is set, return an Observable that emits buffers every skip items containing at most count items from the source observable.
\sample
\snippet buffer.cpp buffer count sample
\snippet output.txt buffer count sample
\sample
\snippet buffer.cpp buffer count+skip sample
\snippet output.txt buffer count+skip sample
*/
#if !defined(RXCPP_OPERATORS_RX_BUFFER_COUNT_HPP)
#define RXCPP_OPERATORS_RX_BUFFER_COUNT_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct buffer_count_invalid_arguments {};
template<class... AN>
struct buffer_count_invalid : public rxo::operator_base<buffer_count_invalid_arguments<AN...>> {
using type = observable<buffer_count_invalid_arguments<AN...>, buffer_count_invalid<AN...>>;
};
template<class... AN>
using buffer_count_invalid_t = typename buffer_count_invalid<AN...>::type;
template<class T>
struct buffer_count
{
using source_value_type = rxu::decay_t<T>;
using value_type = std::vector<source_value_type>;
struct buffer_count_values
{
buffer_count_values(int c, int s)
: count(c)
, skip(s)
{
}
int count;
int skip;
};
buffer_count_values initial;
buffer_count(int count, int skip)
: initial(count, skip)
{
}
template<class Subscriber>
struct buffer_count_observer : public buffer_count_values
{
using this_type = buffer_count_observer<Subscriber>;
using value_type = std::vector<T>;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<value_type, this_type>;
dest_type dest;
mutable int cursor;
mutable std::deque<value_type> chunks;
buffer_count_observer(dest_type d, buffer_count_values v)
: buffer_count_values(v)
, dest(std::move(d))
, cursor(0)
{
}
void on_next(const T& v) const {
if (cursor++ % this->skip == 0) {
chunks.emplace_back();
chunks.back().reserve(this->count);
}
for(auto& chunk : chunks) {
chunk.push_back(v);
}
while (!chunks.empty() && int(chunks.front().size()) == this->count) {
dest.on_next(std::move(chunks.front()));
chunks.pop_front();
}
}
void on_error(rxu::error_ptr e) const {
dest.on_error(e);
}
void on_completed() const {
auto done = on_exception(
[&](){
while (!chunks.empty()) {
dest.on_next(std::move(chunks.front()));
chunks.pop_front();
}
return true;
},
dest);
if (done.empty()) {
return;
}
dest.on_completed();
}
static subscriber<T, observer<T, this_type>> make(dest_type d, buffer_count_values v) {
auto cs = d.get_subscription();
return make_subscriber<T>(std::move(cs), this_type(std::move(d), std::move(v)));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(buffer_count_observer<Subscriber>::make(std::move(dest), initial)) {
return buffer_count_observer<Subscriber>::make(std::move(dest), initial);
}
};
}
/*! @copydoc rx-buffer_count.hpp
*/
template<class... AN>
auto buffer(AN&&... an)
-> operator_factory<buffer_count_tag, AN...> {
return operator_factory<buffer_count_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<buffer_count_tag>
{
template<class Observable,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class BufferCount = rxo::detail::buffer_count<SourceValue>,
class Value = rxu::value_type_t<BufferCount>>
static auto member(Observable&& o, int count, int skip)
-> decltype(o.template lift<Value>(BufferCount(count, skip))) {
return o.template lift<Value>(BufferCount(count, skip));
}
template<class Observable,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class BufferCount = rxo::detail::buffer_count<SourceValue>,
class Value = rxu::value_type_t<BufferCount>>
static auto member(Observable&& o, int count)
-> decltype(o.template lift<Value>(BufferCount(count, count))) {
return o.template lift<Value>(BufferCount(count, count));
}
template<class... AN>
static operators::detail::buffer_count_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "buffer takes (Count, optional Skip)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-buffer_time.hpp
\brief Return an observable that emits buffers every period time interval and collects items from this observable for period of time into each produced buffer.
If the skip parameter is set, Return an observable that emits buffers every skip time interval and collects items from this observable for period of time into each produced buffer, on the specified scheduler.
\tparam Duration the type of the time interval
\tparam Coordination the type of the scheduler (optional).
\param period the period of time each buffer collects items before it is emitted.
\param skip the period of time after which a new buffer will be created (optional).
\param coordination the scheduler for the buffers (optional).
\return Observable that emits buffers every period time interval and collect items from this observable for period of time into each produced buffer.
If the skip parameter is set, return an Observable that emits buffers every skip time interval and collect items from this observable for period of time into each produced buffer.
\sample
\snippet buffer.cpp buffer period+skip+coordination sample
\snippet output.txt buffer period+skip+coordination sample
\sample
\snippet buffer.cpp buffer period+skip sample
\snippet output.txt buffer period+skip sample
Overlapping buffers are allowed:
\snippet buffer.cpp buffer period+skip overlapping sample
\snippet output.txt buffer period+skip overlapping sample
If no items are emitted, an empty buffer is returned:
\snippet buffer.cpp buffer period+skip empty sample
\snippet output.txt buffer period+skip empty sample
\sample
\snippet buffer.cpp buffer period+coordination sample
\snippet output.txt buffer period+coordination sample
\sample
\snippet buffer.cpp buffer period sample
\snippet output.txt buffer period sample
*/
#if !defined(RXCPP_OPERATORS_RX_BUFFER_WITH_TIME_HPP)
#define RXCPP_OPERATORS_RX_BUFFER_WITH_TIME_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct buffer_with_time_invalid_arguments {};
template<class... AN>
struct buffer_with_time_invalid : public rxo::operator_base<buffer_with_time_invalid_arguments<AN...>> {
using type = observable<buffer_with_time_invalid_arguments<AN...>, buffer_with_time_invalid<AN...>>;
};
template<class... AN>
using buffer_with_time_invalid_t = typename buffer_with_time_invalid<AN...>::type;
template<class T, class Duration, class Coordination>
struct buffer_with_time
{
using source_value_type = rxu::decay_t<T>;
using value_type = std::vector<source_value_type>;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
using duration_type = rxu::decay_t<Duration>;
struct buffer_with_time_values
{
buffer_with_time_values(duration_type p, duration_type s, coordination_type c)
: period(p)
, skip(s)
, coordination(c)
{
}
duration_type period;
duration_type skip;
coordination_type coordination;
};
buffer_with_time_values initial;
buffer_with_time(duration_type period, duration_type skip, coordination_type coordination)
: initial(period, skip, coordination)
{
}
template<class Subscriber>
struct buffer_with_time_observer
{
using this_type = buffer_with_time_observer<Subscriber>;
using value_type = std::vector<T>;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<value_type, this_type>;
struct buffer_with_time_subscriber_values : public buffer_with_time_values
{
buffer_with_time_subscriber_values(composite_subscription cs, dest_type d, buffer_with_time_values v, coordinator_type c)
: buffer_with_time_values(v)
, cs(std::move(cs))
, dest(std::move(d))
, coordinator(std::move(c))
, worker(coordinator.get_worker())
, expected(worker.now())
{
}
composite_subscription cs;
dest_type dest;
coordinator_type coordinator;
rxsc::worker worker;
mutable std::deque<value_type> chunks;
rxsc::scheduler::clock_type::time_point expected;
};
std::shared_ptr<buffer_with_time_subscriber_values> state;
buffer_with_time_observer(composite_subscription cs, dest_type d, buffer_with_time_values v, coordinator_type c)
: state(std::make_shared<buffer_with_time_subscriber_values>(buffer_with_time_subscriber_values(std::move(cs), std::move(d), v, std::move(c))))
{
auto localState = state;
auto disposer = [=](const rxsc::schedulable&){
localState->cs.unsubscribe();
localState->dest.unsubscribe();
localState->worker.unsubscribe();
};
auto selectedDisposer = on_exception(
[&](){return localState->coordinator.act(disposer);},
localState->dest);
if (selectedDisposer.empty()) {
return;
}
localState->dest.add([=](){
localState->worker.schedule(selectedDisposer.get());
});
localState->cs.add([=](){
localState->worker.schedule(selectedDisposer.get());
});
//
// The scheduler is FIFO for any time T. Since the observer is scheduling
// on_next/on_error/oncompleted the timed schedule calls must be resheduled
// when they occur to ensure that production happens after on_next/on_error/oncompleted
//
auto produce_buffer = [localState](const rxsc::schedulable&) {
localState->dest.on_next(std::move(localState->chunks.front()));
localState->chunks.pop_front();
};
auto selectedProduce = on_exception(
[&](){return localState->coordinator.act(produce_buffer);},
localState->dest);
if (selectedProduce.empty()) {
return;
}
auto create_buffer = [localState, selectedProduce](const rxsc::schedulable&) {
localState->chunks.emplace_back();
auto produce_at = localState->expected + localState->period;
localState->expected += localState->skip;
localState->worker.schedule(produce_at, [localState, selectedProduce](const rxsc::schedulable&) {
localState->worker.schedule(selectedProduce.get());
});
};
auto selectedCreate = on_exception(
[&](){return localState->coordinator.act(create_buffer);},
localState->dest);
if (selectedCreate.empty()) {
return;
}
state->worker.schedule_periodically(
state->expected,
state->skip,
[localState, selectedCreate](const rxsc::schedulable&) {
localState->worker.schedule(selectedCreate.get());
});
}
void on_next(const T& v) const {
auto localState = state;
auto work = [v, localState](const rxsc::schedulable&){
for(auto& chunk : localState->chunks) {
chunk.push_back(v);
}
};
auto selectedWork = on_exception(
[&](){return localState->coordinator.act(work);},
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
void on_error(rxu::error_ptr e) const {
auto localState = state;
auto work = [e, localState](const rxsc::schedulable&){
localState->dest.on_error(e);
};
auto selectedWork = on_exception(
[&](){return localState->coordinator.act(work);},
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
void on_completed() const {
auto localState = state;
auto work = [localState](const rxsc::schedulable&){
on_exception(
[&](){
while (!localState->chunks.empty()) {
localState->dest.on_next(std::move(localState->chunks.front()));
localState->chunks.pop_front();
}
return true;
},
localState->dest);
localState->dest.on_completed();
};
auto selectedWork = on_exception(
[&](){return localState->coordinator.act(work);},
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
static subscriber<T, observer<T, this_type>> make(dest_type d, buffer_with_time_values v) {
auto cs = composite_subscription();
auto coordinator = v.coordination.create_coordinator();
return make_subscriber<T>(cs, this_type(cs, std::move(d), std::move(v), std::move(coordinator)));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(buffer_with_time_observer<Subscriber>::make(std::move(dest), initial)) {
return buffer_with_time_observer<Subscriber>::make(std::move(dest), initial);
}
};
}
/*! @copydoc rx-buffer_time.hpp
*/
template<class... AN>
auto buffer_with_time(AN&&... an)
-> operator_factory<buffer_with_time_tag, AN...> {
return operator_factory<buffer_with_time_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<buffer_with_time_tag>
{
template<class Observable, class Duration,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
std::is_convertible<Duration, rxsc::scheduler::clock_type::duration>>,
class SourceValue = rxu::value_type_t<Observable>,
class BufferWithTime = rxo::detail::buffer_with_time<SourceValue, rxu::decay_t<Duration>, identity_one_worker>,
class Value = rxu::value_type_t<BufferWithTime>>
static auto member(Observable&& o, Duration period)
-> decltype(o.template lift<Value>(BufferWithTime(period, period, identity_current_thread()))) {
return o.template lift<Value>(BufferWithTime(period, period, identity_current_thread()));
}
template<class Observable, class Duration, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
std::is_convertible<Duration, rxsc::scheduler::clock_type::duration>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class BufferWithTime = rxo::detail::buffer_with_time<SourceValue, rxu::decay_t<Duration>, rxu::decay_t<Coordination>>,
class Value = rxu::value_type_t<BufferWithTime>>
static auto member(Observable&& o, Duration period, Coordination&& cn)
-> decltype(o.template lift<Value>(BufferWithTime(period, period, std::forward<Coordination>(cn)))) {
return o.template lift<Value>(BufferWithTime(period, period, std::forward<Coordination>(cn)));
}
template<class Observable, class Duration,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
std::is_convertible<Duration, rxsc::scheduler::clock_type::duration>>,
class SourceValue = rxu::value_type_t<Observable>,
class BufferWithTime = rxo::detail::buffer_with_time<SourceValue, rxu::decay_t<Duration>, identity_one_worker>,
class Value = rxu::value_type_t<BufferWithTime>>
static auto member(Observable&& o, Duration&& period, Duration&& skip)
-> decltype(o.template lift<Value>(BufferWithTime(std::forward<Duration>(period), std::forward<Duration>(skip), identity_current_thread()))) {
return o.template lift<Value>(BufferWithTime(std::forward<Duration>(period), std::forward<Duration>(skip), identity_current_thread()));
}
template<class Observable, class Duration, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
std::is_convertible<Duration, rxsc::scheduler::clock_type::duration>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class BufferWithTime = rxo::detail::buffer_with_time<SourceValue, rxu::decay_t<Duration>, rxu::decay_t<Coordination>>,
class Value = rxu::value_type_t<BufferWithTime>>
static auto member(Observable&& o, Duration&& period, Duration&& skip, Coordination&& cn)
-> decltype(o.template lift<Value>(BufferWithTime(std::forward<Duration>(period), std::forward<Duration>(skip), std::forward<Coordination>(cn)))) {
return o.template lift<Value>(BufferWithTime(std::forward<Duration>(period), std::forward<Duration>(skip), std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::buffer_with_time_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "buffer_with_time takes (Duration, optional Duration, optional Coordination)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-buffer_time_count.hpp
\brief Return an observable that emits connected, non-overlapping buffers of items from the source observable that were emitted during a fixed duration of time or when the buffer has reached maximum capacity (whichever occurs first), on the specified scheduler.
\tparam Duration the type of the time interval.
\tparam Coordination the type of the scheduler (optional).
\param period the period of time each buffer collects items before it is emitted and replaced with a new buffer.
\param count the maximum size of each buffer before it is emitted and new buffer is created.
\param coordination the scheduler for the buffers (optional).
\return Observable that emits connected, non-overlapping buffers of items from the source observable that were emitted during a fixed duration of time or when the buffer has reached maximum capacity (whichever occurs first).
\sample
\snippet buffer.cpp buffer period+count+coordination sample
\snippet output.txt buffer period+count+coordination sample
\sample
\snippet buffer.cpp buffer period+count sample
\snippet output.txt buffer period+count sample
*/
#if !defined(RXCPP_OPERATORS_RX_BUFFER_WITH_TIME_OR_COUNT_HPP)
#define RXCPP_OPERATORS_RX_BUFFER_WITH_TIME_OR_COUNT_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct buffer_with_time_or_count_invalid_arguments {};
template<class... AN>
struct buffer_with_time_or_count_invalid : public rxo::operator_base<buffer_with_time_or_count_invalid_arguments<AN...>> {
using type = observable<buffer_with_time_or_count_invalid_arguments<AN...>, buffer_with_time_or_count_invalid<AN...>>;
};
template<class... AN>
using buffer_with_time_or_count_invalid_t = typename buffer_with_time_or_count_invalid<AN...>::type;
template<class T, class Duration, class Coordination>
struct buffer_with_time_or_count
{
using source_value_type = rxu::decay_t<T>;
using value_type = std::vector<source_value_type>;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
using duration_type = rxu::decay_t<Duration>;
struct buffer_with_time_or_count_values
{
buffer_with_time_or_count_values(duration_type p, int n, coordination_type c)
: period(p)
, count(n)
, coordination(c)
{
}
duration_type period;
int count;
coordination_type coordination;
};
buffer_with_time_or_count_values initial;
buffer_with_time_or_count(duration_type period, int count, coordination_type coordination)
: initial(period, count, coordination)
{
}
template<class Subscriber>
struct buffer_with_time_or_count_observer
{
using this_type = buffer_with_time_or_count_observer<Subscriber>;
using value_type = std::vector<T>;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<value_type, this_type>;
struct buffer_with_time_or_count_subscriber_values : public buffer_with_time_or_count_values
{
buffer_with_time_or_count_subscriber_values(composite_subscription cs, dest_type d, buffer_with_time_or_count_values v, coordinator_type c)
: buffer_with_time_or_count_values(std::move(v))
, cs(std::move(cs))
, dest(std::move(d))
, coordinator(std::move(c))
, worker(coordinator.get_worker())
, chunk_id(0)
{
}
composite_subscription cs;
dest_type dest;
coordinator_type coordinator;
rxsc::worker worker;
mutable int chunk_id;
mutable value_type chunk;
};
using state_type = std::shared_ptr<buffer_with_time_or_count_subscriber_values>;
state_type state;
buffer_with_time_or_count_observer(composite_subscription cs, dest_type d, buffer_with_time_or_count_values v, coordinator_type c)
: state(std::make_shared<buffer_with_time_or_count_subscriber_values>(buffer_with_time_or_count_subscriber_values(std::move(cs), std::move(d), std::move(v), std::move(c))))
{
auto new_id = state->chunk_id;
auto produce_time = state->worker.now() + state->period;
auto localState = state;
auto disposer = [=](const rxsc::schedulable&){
localState->cs.unsubscribe();
localState->dest.unsubscribe();
localState->worker.unsubscribe();
};
auto selectedDisposer = on_exception(
[&](){return localState->coordinator.act(disposer);},
localState->dest);
if (selectedDisposer.empty()) {
return;
}
localState->dest.add([=](){
localState->worker.schedule(selectedDisposer.get());
});
localState->cs.add([=](){
localState->worker.schedule(selectedDisposer.get());
});
//
// The scheduler is FIFO for any time T. Since the observer is scheduling
// on_next/on_error/oncompleted the timed schedule calls must be resheduled
// when they occur to ensure that production happens after on_next/on_error/oncompleted
//
localState->worker.schedule(produce_time, [new_id, produce_time, localState](const rxsc::schedulable&){
localState->worker.schedule(produce_buffer(new_id, produce_time, localState));
});
}
static std::function<void(const rxsc::schedulable&)> produce_buffer(int id, rxsc::scheduler::clock_type::time_point expected, state_type state) {
auto produce = [id, expected, state](const rxsc::schedulable&) {
if (id != state->chunk_id)
return;
state->dest.on_next(state->chunk);
state->chunk.resize(0);
auto new_id = ++state->chunk_id;
auto produce_time = expected + state->period;
state->worker.schedule(produce_time, [new_id, produce_time, state](const rxsc::schedulable&){
state->worker.schedule(produce_buffer(new_id, produce_time, state));
});
};
auto selectedProduce = on_exception(
[&](){return state->coordinator.act(produce);},
state->dest);
if (selectedProduce.empty()) {
return std::function<void(const rxsc::schedulable&)>();
}
return std::function<void(const rxsc::schedulable&)>(selectedProduce.get());
}
void on_next(const T& v) const {
auto localState = state;
auto work = [v, localState](const rxsc::schedulable& self){
localState->chunk.push_back(v);
if (int(localState->chunk.size()) == localState->count) {
produce_buffer(localState->chunk_id, localState->worker.now(), localState)(self);
}
};
auto selectedWork = on_exception(
[&](){return localState->coordinator.act(work);},
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
void on_error(rxu::error_ptr e) const {
auto localState = state;
auto work = [e, localState](const rxsc::schedulable&){
localState->dest.on_error(e);
};
auto selectedWork = on_exception(
[&](){return localState->coordinator.act(work);},
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
void on_completed() const {
auto localState = state;
auto work = [localState](const rxsc::schedulable&){
localState->dest.on_next(localState->chunk);
localState->dest.on_completed();
};
auto selectedWork = on_exception(
[&](){return localState->coordinator.act(work);},
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
static subscriber<T, observer<T, this_type>> make(dest_type d, buffer_with_time_or_count_values v) {
auto cs = composite_subscription();
auto coordinator = v.coordination.create_coordinator();
return make_subscriber<T>(cs, this_type(cs, std::move(d), std::move(v), std::move(coordinator)));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(buffer_with_time_or_count_observer<Subscriber>::make(std::move(dest), initial)) {
return buffer_with_time_or_count_observer<Subscriber>::make(std::move(dest), initial);
}
};
}
/*! @copydoc rx-buffer_time_count.hpp
*/
template<class... AN>
auto buffer_with_time_or_count(AN&&... an)
-> operator_factory<buffer_with_time_or_count_tag, AN...> {
return operator_factory<buffer_with_time_or_count_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<buffer_with_time_or_count_tag>
{
template<class Observable, class Duration,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
std::is_convertible<Duration, rxsc::scheduler::clock_type::duration>>,
class SourceValue = rxu::value_type_t<Observable>,
class BufferTimeCount = rxo::detail::buffer_with_time_or_count<SourceValue, rxu::decay_t<Duration>, identity_one_worker>,
class Value = rxu::value_type_t<BufferTimeCount>>
static auto member(Observable&& o, Duration&& period, int count)
-> decltype(o.template lift<Value>(BufferTimeCount(std::forward<Duration>(period), count, identity_current_thread()))) {
return o.template lift<Value>(BufferTimeCount(std::forward<Duration>(period), count, identity_current_thread()));
}
template<class Observable, class Duration, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
std::is_convertible<Duration, rxsc::scheduler::clock_type::duration>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class BufferTimeCount = rxo::detail::buffer_with_time_or_count<SourceValue, rxu::decay_t<Duration>, rxu::decay_t<Coordination>>,
class Value = rxu::value_type_t<BufferTimeCount>>
static auto member(Observable&& o, Duration&& period, int count, Coordination&& cn)
-> decltype(o.template lift<Value>(BufferTimeCount(std::forward<Duration>(period), count, std::forward<Coordination>(cn)))) {
return o.template lift<Value>(BufferTimeCount(std::forward<Duration>(period), count, std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::buffer_with_time_or_count_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "buffer_with_time_or_count takes (Duration, Count, optional Coordination)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-combine_latest.hpp
\brief For each item from all of the observables select a value to emit from the new observable that is returned.
\tparam AN types of scheduler (optional), aggregate function (optional), and source observables
\param an scheduler (optional), aggregation function (optional), and source observables
\return Observable that emits items that are the result of combining the items emitted by the source observables.
If scheduler is omitted, identity_current_thread is used.
If aggregation function is omitted, the resulting observable returns tuples of emitted items.
\sample
Neither scheduler nor aggregation function are present:
\snippet combine_latest.cpp combine_latest sample
\snippet output.txt combine_latest sample
Only scheduler is present:
\snippet combine_latest.cpp Coordination combine_latest sample
\snippet output.txt Coordination combine_latest sample
Only aggregation function is present:
\snippet combine_latest.cpp Selector combine_latest sample
\snippet output.txt Selector combine_latest sample
Both scheduler and aggregation function are present:
\snippet combine_latest.cpp Coordination+Selector combine_latest sample
\snippet output.txt Coordination+Selector combine_latest sample
*/
#if !defined(RXCPP_OPERATORS_RX_COMBINE_LATEST_HPP)
#define RXCPP_OPERATORS_RX_COMBINE_LATEST_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct combine_latest_invalid_arguments {};
template<class... AN>
struct combine_latest_invalid : public rxo::operator_base<combine_latest_invalid_arguments<AN...>> {
using type = observable<combine_latest_invalid_arguments<AN...>, combine_latest_invalid<AN...>>;
};
template<class... AN>
using combine_latest_invalid_t = typename combine_latest_invalid<AN...>::type;
template<class Selector, class... ObservableN>
struct is_combine_latest_selector_check {
using selector_type = rxu::decay_t<Selector>;
struct tag_not_valid;
template<class CS, class... CON>
static auto check(int) -> decltype(std::declval<CS>()((std::declval<typename CON::value_type>())...));
template<class CS, class... CON>
static tag_not_valid check(...);
using type = decltype(check<selector_type, rxu::decay_t<ObservableN>...>(0));
static const bool value = !std::is_same_v<type, tag_not_valid>;
};
template<class Selector, class... ObservableN>
struct invalid_combine_latest_selector {
static const bool value = false;
};
template<class Selector, class... ObservableN>
struct is_combine_latest_selector : public std::conditional_t<
is_combine_latest_selector_check<Selector, ObservableN...>::value,
is_combine_latest_selector_check<Selector, ObservableN...>,
invalid_combine_latest_selector<Selector, ObservableN...>> {
};
template<class Selector, class... ON>
using result_combine_latest_selector_t = typename is_combine_latest_selector<Selector, ON...>::type;
template<class Coordination, class Selector, class... ObservableN>
struct combine_latest_traits {
using tuple_source_type = std::tuple<ObservableN...>;
using tuple_source_value_type = std::tuple<rxu::detail::maybe < typename ObservableN::value_type>...>;
using selector_type = rxu::decay_t<Selector>;
using coordination_type = rxu::decay_t<Coordination>;
using value_type = typename is_combine_latest_selector<selector_type, ObservableN...>::type;
};
template<class Coordination, class Selector, class... ObservableN>
struct combine_latest : public operator_base<rxu::value_type_t<combine_latest_traits<Coordination, Selector, ObservableN...>>>
{
using this_type = combine_latest<Coordination, Selector, ObservableN...>;
using traits = combine_latest_traits<Coordination, Selector, ObservableN...>;
using tuple_source_type = typename traits::tuple_source_type;
using tuple_source_value_type = typename traits::tuple_source_value_type;
using selector_type = typename traits::selector_type;
using coordination_type = typename traits::coordination_type;
using coordinator_type = typename coordination_type::coordinator_type;
struct values
{
values(tuple_source_type o, selector_type s, coordination_type sf)
: source(std::move(o))
, selector(std::move(s))
, coordination(std::move(sf))
{
}
tuple_source_type source;
selector_type selector;
coordination_type coordination;
};
values initial;
combine_latest(coordination_type sf, selector_type s, tuple_source_type ts)
: initial(std::move(ts), std::move(s), std::move(sf))
{
}
template<int Index, class State>
void subscribe_one(std::shared_ptr<State> state) const {
using source_value_type = typename std::tuple_element<Index, tuple_source_type>::type::value_type;
composite_subscription innercs;
// when the out observer is unsubscribed all the
// inner subscriptions are unsubscribed as well
state->out.add(innercs);
auto source = on_exception(
[&](){return state->coordinator.in(std::get<Index>(state->source));},
state->out);
if (source.empty()) {
return;
}
// this subscribe does not share the observer subscription
// so that when it is unsubscribed the observer can be called
// until the inner subscriptions have finished
auto sink = make_subscriber<source_value_type>(
state->out,
innercs,
// on_next
[state](auto&& st) {
auto& value = std::get<Index>(state->latest);
if (value.empty()) {
++state->valuesSet;
}
value.reset(std::forward<decltype(st)>(st));
if (state->valuesSet == sizeof... (ObservableN)) {
auto values = rxu::surely(state->latest);
state->out.on_next(rxu::apply(std::move(values), state->selector));
}
},
// on_error
[state](rxu::error_ptr e) {
state->out.on_error(e);
},
// on_completed
[state]() {
if (--state->pendingCompletions == 0) {
state->out.on_completed();
}
}
);
auto selectedSink = on_exception(
[&](){return state->coordinator.out(sink);},
state->out);
if (selectedSink.empty()) {
return;
}
source->subscribe(std::move(selectedSink.get()));
}
template<class State, int... IndexN>
void subscribe_all(std::shared_ptr<State> state, rxu::values<int, IndexN...>) const {
bool subscribed[] = {(subscribe_one<IndexN>(state), true)...};
subscribed[0] = (*subscribed); // silence warning
}
template<class Subscriber>
void on_subscribe(Subscriber scbr) const {
static_assert(is_subscriber<Subscriber>::value, "subscribe must be passed a subscriber");
using output_type = Subscriber;
struct combine_latest_state_type
: public std::enable_shared_from_this<combine_latest_state_type>
, public values
{
combine_latest_state_type(values i, coordinator_type coor, output_type oarg)
: values(std::move(i))
, pendingCompletions(sizeof... (ObservableN))
, valuesSet(0)
, coordinator(std::move(coor))
, out(std::move(oarg))
{
}
// on_completed on the output must wait until all the
// subscriptions have received on_completed
mutable int pendingCompletions;
mutable int valuesSet;
mutable tuple_source_value_type latest;
coordinator_type coordinator;
output_type out;
};
auto coordinator = initial.coordination.create_coordinator(scbr.get_subscription());
// take a copy of the values for each subscription
auto state = std::make_shared<combine_latest_state_type>(initial, std::move(coordinator), std::move(scbr));
subscribe_all(state, typename rxu::values_from<int, sizeof...(ObservableN)>::type());
}
};
}
/*! @copydoc rx-combine_latest.hpp
*/
template<class... AN>
auto combine_latest(AN&&... an)
-> operator_factory<combine_latest_tag, AN...> {
return operator_factory<combine_latest_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<combine_latest_tag>
{
template<class Observable, class... ObservableN,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, ObservableN...>>,
class combine_latest = rxo::detail::combine_latest<identity_one_worker, rxu::detail::pack, rxu::decay_t<Observable>, rxu::decay_t<ObservableN>...>,
class Value = rxu::value_type_t<combine_latest>,
class Result = observable<Value, combine_latest>>
static Result member(Observable&& o, ObservableN&&... on)
{
return Result(combine_latest(identity_current_thread(), rxu::pack(), std::make_tuple(std::forward<Observable>(o), std::forward<ObservableN>(on)...)));
}
template<class Observable, class Selector, class... ObservableN,
class Enabled = rxu::enable_if_all_true_type_t<
operators::detail::is_combine_latest_selector<Selector, Observable, ObservableN...>,
all_observables<Observable, ObservableN...>>,
class ResolvedSelector = rxu::decay_t<Selector>,
class combine_latest = rxo::detail::combine_latest<identity_one_worker, ResolvedSelector, rxu::decay_t<Observable>, rxu::decay_t<ObservableN>...>,
class Value = rxu::value_type_t<combine_latest>,
class Result = observable<Value, combine_latest>>
static Result member(Observable&& o, Selector&& s, ObservableN&&... on)
{
return Result(combine_latest(identity_current_thread(), std::forward<Selector>(s), std::make_tuple(std::forward<Observable>(o), std::forward<ObservableN>(on)...)));
}
template<class Coordination, class Observable, class... ObservableN,
class Enabled = rxu::enable_if_all_true_type_t<
is_coordination<Coordination>,
all_observables<Observable, ObservableN...>>,
class combine_latest = rxo::detail::combine_latest<Coordination, rxu::detail::pack, rxu::decay_t<Observable>, rxu::decay_t<ObservableN>...>,
class Value = rxu::value_type_t<combine_latest>,
class Result = observable<Value, combine_latest>>
static Result member(Observable&& o, Coordination&& cn, ObservableN&&... on)
{
return Result(combine_latest(std::forward<Coordination>(cn), rxu::pack(), std::make_tuple(std::forward<Observable>(o), std::forward<ObservableN>(on)...)));
}
template<class Coordination, class Selector, class Observable, class... ObservableN,
class Enabled = rxu::enable_if_all_true_type_t<
is_coordination<Coordination>,
operators::detail::is_combine_latest_selector<Selector, Observable, ObservableN...>,
all_observables<Observable, ObservableN...>>,
class ResolvedSelector = rxu::decay_t<Selector>,
class combine_latest = rxo::detail::combine_latest<Coordination, ResolvedSelector, rxu::decay_t<Observable>, rxu::decay_t<ObservableN>...>,
class Value = rxu::value_type_t<combine_latest>,
class Result = observable<Value, combine_latest>>
static Result member(Observable&& o, Coordination&& cn, Selector&& s, ObservableN&&... on)
{
return Result(combine_latest(std::forward<Coordination>(cn), std::forward<Selector>(s), std::make_tuple(std::forward<Observable>(o), std::forward<ObservableN>(on)...)));
}
template<class... AN>
static operators::detail::combine_latest_invalid_t<AN...> member(const AN&...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "combine_latest takes (optional Coordination, optional Selector, required Observable, optional Observable...), Selector takes (Observable::value_type...)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-concat.hpp
\brief For each item from this observable subscribe to one at a time, in the order received.
For each item from all of the given observables deliver from the new observable that is returned.
There are 2 variants of the operator:
- The source observable emits nested observables, nested observables are concatenated.
- The source observable and the arguments v0...vn are used to provide the observables to concatenate.
\tparam Coordination the type of the scheduler (optional).
\tparam Value0 ... (optional).
\tparam ValueN types of source observables (optional).
\param cn the scheduler to synchronize sources from different contexts (optional).
\param v0 ... (optional).
\param vn source observables (optional).
\return Observable that emits the items emitted by each of the Observables emitted by the source observable, one after the other, without interleaving them.
\sample
\snippet concat.cpp implicit concat sample
\snippet output.txt implicit concat sample
\sample
\snippet concat.cpp threaded implicit concat sample
\snippet output.txt threaded implicit concat sample
\sample
\snippet concat.cpp concat sample
\snippet output.txt concat sample
\sample
\snippet concat.cpp threaded concat sample
\snippet output.txt threaded concat sample
*/
#if !defined(RXCPP_OPERATORS_RX_CONCAT_HPP)
#define RXCPP_OPERATORS_RX_CONCAT_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct concat_invalid_arguments {};
template<class... AN>
struct concat_invalid : public rxo::operator_base<concat_invalid_arguments<AN...>> {
using type = observable<concat_invalid_arguments<AN...>, concat_invalid<AN...>>;
};
template<class... AN>
using concat_invalid_t = typename concat_invalid<AN...>::type;
template<class T, class Observable, class Coordination>
struct concat
: public operator_base<rxu::value_type_t<rxu::decay_t<T>>>
{
using this_type = concat<T, Observable, Coordination>;
using source_value_type = rxu::decay_t<T>;
using source_type = rxu::decay_t<Observable>;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
using source_operator_type = typename source_type::source_operator_type;
using collection_type = source_value_type;
using value_type = typename collection_type::value_type;
struct values
{
values(source_operator_type o, coordination_type sf)
: source_operator(std::move(o))
, coordination(std::move(sf))
{
}
source_operator_type source_operator;
coordination_type coordination;
};
values initial;
concat(const source_type& o, coordination_type sf)
: initial(o.source_operator, std::move(sf))
{
}
template<class Subscriber>
void on_subscribe(Subscriber scbr) const {
static_assert(is_subscriber<Subscriber>::value, "subscribe must be passed a subscriber");
using output_type = Subscriber;
struct concat_state_type
: public std::enable_shared_from_this<concat_state_type>
, public values
{
concat_state_type(values i, coordinator_type coor, output_type oarg)
: values(i)
, source(i.source_operator)
, sourceLifetime(composite_subscription::empty())
, collectionLifetime(composite_subscription::empty())
, coordinator(std::move(coor))
, out(std::move(oarg))
{
}
void subscribe_to(collection_type st)
{
auto state = this->shared_from_this();
collectionLifetime = composite_subscription();
// when the out observer is unsubscribed all the
// inner subscriptions are unsubscribed as well
auto innercstoken = state->out.add(collectionLifetime);
collectionLifetime.add(make_subscription([state, innercstoken](){
state->out.remove(innercstoken);
}));
auto selectedSource = on_exception(
[&](){return state->coordinator.in(std::move(st));},
state->out);
if (selectedSource.empty()) {
return;
}
// this subscribe does not share the out subscription
// so that when it is unsubscribed the out will continue
auto sinkInner = make_subscriber<value_type>(
state->out,
collectionLifetime,
// on_next
[state](auto&& ct) {
state->out.on_next(std::forward<decltype(ct)>(ct));
},
// on_error
[state](rxu::error_ptr e) {
state->out.on_error(e);
},
//on_completed
[state](){
if (!state->selectedCollections.empty()) {
auto value = state->selectedCollections.front();
state->selectedCollections.pop_front();
state->collectionLifetime.unsubscribe();
state->subscribe_to(value);
} else if (!state->sourceLifetime.is_subscribed()) {
state->out.on_completed();
}
}
);
auto selectedSinkInner = on_exception(
[&](){return state->coordinator.out(sinkInner);},
state->out);
if (selectedSinkInner.empty()) {
return;
}
selectedSource->subscribe(std::move(selectedSinkInner.get()));
}
observable<source_value_type, source_operator_type> source;
composite_subscription sourceLifetime;
composite_subscription collectionLifetime;
std::deque<collection_type> selectedCollections;
coordinator_type coordinator;
output_type out;
};
auto coordinator = initial.coordination.create_coordinator(scbr.get_subscription());
// take a copy of the values for each subscription
auto state = std::make_shared<concat_state_type>(initial, std::move(coordinator), std::move(scbr));
state->sourceLifetime = composite_subscription();
// when the out observer is unsubscribed all the
// inner subscriptions are unsubscribed as well
state->out.add(state->sourceLifetime);
auto source = on_exception(
[&](){return state->coordinator.in(state->source);},
state->out);
if (source.empty()) {
return;
}
// this subscribe does not share the observer subscription
// so that when it is unsubscribed the observer can be called
// until the inner subscriptions have finished
auto sink = make_subscriber<collection_type>(
state->out,
state->sourceLifetime,
// on_next
[state](collection_type st) {
if (state->collectionLifetime.is_subscribed()) {
state->selectedCollections.push_back(st);
} else if (state->selectedCollections.empty()) {
state->subscribe_to(st);
}
},
// on_error
[state](rxu::error_ptr e) {
state->out.on_error(e);
},
// on_completed
[state]() {
if (!state->collectionLifetime.is_subscribed() && state->selectedCollections.empty()) {
state->out.on_completed();
}
}
);
auto selectedSink = on_exception(
[&](){return state->coordinator.out(sink);},
state->out);
if (selectedSink.empty()) {
return;
}
source->subscribe(std::move(selectedSink.get()));
}
};
}
/*! @copydoc rx-concat.hpp
*/
template<class... AN>
auto concat(AN&&... an)
-> operator_factory<concat_tag, AN...> {
return operator_factory<concat_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<concat_tag>
{
template<class Observable,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Concat = rxo::detail::concat<SourceValue, rxu::decay_t<Observable>, identity_one_worker>,
class Value = rxu::value_type_t<SourceValue>,
class Result = observable<Value, Concat>
>
static Result member(Observable&& o) {
return Result(Concat(std::forward<Observable>(o), identity_current_thread()));
}
template<class Observable, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class Concat = rxo::detail::concat<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<Coordination>>,
class Value = rxu::value_type_t<SourceValue>,
class Result = observable<Value, Concat>
>
static Result member(Observable&& o, Coordination&& cn) {
return Result(Concat(std::forward<Observable>(o), std::forward<Coordination>(cn)));
}
template<class Observable, class Value0, class... ValueN,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, Value0, ValueN...>>,
class EmittedValue = rxu::value_type_t<Observable>,
class SourceValue = observable<EmittedValue>,
class ObservableObservable = observable<SourceValue>,
class Concat = typename rxu::defer_type<rxo::detail::concat, SourceValue, ObservableObservable, identity_one_worker>::type,
class Value = rxu::value_type_t<Concat>,
class Result = observable<Value, Concat>
>
static Result member(Observable&& o, Value0&& v0, ValueN&&... vn) {
return Result(Concat(rxs::from(o.as_dynamic(), v0.as_dynamic(), vn.as_dynamic()...), identity_current_thread()));
}
template<class Observable, class Coordination, class Value0, class... ValueN,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, Value0, ValueN...>,
is_coordination<Coordination>>,
class EmittedValue = rxu::value_type_t<Observable>,
class SourceValue = observable<EmittedValue>,
class ObservableObservable = observable<SourceValue>,
class Concat = typename rxu::defer_type<rxo::detail::concat, SourceValue, ObservableObservable, rxu::decay_t<Coordination>>::type,
class Value = rxu::value_type_t<Concat>,
class Result = observable<Value, Concat>
>
static Result member(Observable&& o, Coordination&& cn, Value0&& v0, ValueN&&... vn) {
return Result(Concat(rxs::from(o.as_dynamic(), v0.as_dynamic(), vn.as_dynamic()...), std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::concat_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "concat takes (optional Coordination, optional Value0, optional ValueN...)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-concat_map.hpp
\brief For each item from this observable use the CollectionSelector to produce an observable and subscribe to that observable.
For each item from all of the produced observables use the ResultSelector to produce a value to emit from the new observable that is returned.
\tparam CollectionSelector the type of the observable producing function. CollectionSelector must be a function with the signature: observable(concat_map::source_value_type)
\tparam ResultSelector the type of the aggregation function (optional). ResultSelector must be a function with the signature: concat_map::value_type(concat_map::source_value_type, concat_map::collection_value_type)
\tparam Coordination the type of the scheduler (optional).
\param s a function that returns an observable for each item emitted by the source observable.
\param rs a function that combines one item emitted by each of the source and collection observables and returns an item to be emitted by the resulting observable (optional).
\param cn the scheduler to synchronize sources from different contexts. (optional).
\return Observable that emits the results of applying a function to a pair of values emitted by the source observable and the collection observable.
Observables, produced by the CollectionSelector, are concatenated. There is another operator rxcpp::observable<T,SourceType>::flat_map that works similar but merges the observables.
\sample
\snippet concat_map.cpp concat_map sample
\snippet output.txt concat_map sample
\sample
\snippet concat_map.cpp threaded concat_map sample
\snippet output.txt threaded concat_map sample
*/
#if !defined(RXCPP_OPERATORS_RX_CONCATMAP_HPP)
#define RXCPP_OPERATORS_RX_CONCATMAP_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct concat_map_invalid_arguments {};
template<class... AN>
struct concat_map_invalid : public rxo::operator_base<concat_map_invalid_arguments<AN...>> {
using type = observable<concat_map_invalid_arguments<AN...>, concat_map_invalid<AN...>>;
};
template<class... AN>
using concat_map_invalid_t = typename concat_map_invalid<AN...>::type;
template<class Observable, class CollectionSelector, class ResultSelector, class Coordination>
struct concat_traits {
using source_type = rxu::decay_t<Observable>;
using collection_selector_type = rxu::decay_t<CollectionSelector>;
using result_selector_type = rxu::decay_t<ResultSelector>;
using coordination_type = rxu::decay_t<Coordination>;
using source_value_type = typename source_type::value_type;
struct tag_not_valid {};
template<class CV, class CCS>
static auto collection_check(int) -> decltype(std::declval<CCS>()(std::declval<CV>()));
template<class CV, class CCS>
static tag_not_valid collection_check(...);
static_assert(!std::is_same_v<decltype(collection_check<source_value_type, collection_selector_type>(0)), tag_not_valid>, "concat_map CollectionSelector must be a function with the signature observable(concat_map::source_value_type)");
using collection_type = decltype(std::declval<collection_selector_type>()((*(source_value_type *) nullptr)));
//#if _MSC_VER >= 1900
static_assert(is_observable<collection_type>::value, "concat_map CollectionSelector must return an observable");
//#endif
using collection_value_type = typename collection_type::value_type;
template<class CV, class CCV, class CRS>
static auto result_check(int) -> decltype((std::declval<CRS>())(std::declval<CV>(), std::declval<CCV>()));
template<class CV, class CCV, class CRS>
static tag_not_valid result_check(...);
static_assert(!std::is_same_v<decltype(result_check<source_value_type, collection_value_type, result_selector_type>(0)), tag_not_valid>, "concat_map ResultSelector must be a function with the signature concat_map::value_type(concat_map::source_value_type, concat_map::collection_value_type)");
using value_type = rxu::decay_t<decltype(std::declval<result_selector_type>()(std::declval<source_value_type>(), std::declval<collection_value_type>()))> ;
};
template<class Observable, class CollectionSelector, class ResultSelector, class Coordination>
struct concat_map
: public operator_base<rxu::value_type_t<concat_traits<Observable, CollectionSelector, ResultSelector, Coordination>>>
{
using this_type = concat_map<Observable, CollectionSelector, ResultSelector, Coordination>;
using traits = concat_traits<Observable, CollectionSelector, ResultSelector, Coordination>;
using source_type = typename traits::source_type;
using collection_selector_type = typename traits::collection_selector_type;
using result_selector_type = typename traits::result_selector_type;
using source_value_type = typename traits::source_value_type;
using collection_type = typename traits::collection_type;
using collection_value_type = typename traits::collection_value_type;
using coordination_type = typename traits::coordination_type;
using coordinator_type = typename coordination_type::coordinator_type;
struct values
{
values(source_type o, collection_selector_type s, result_selector_type rs, coordination_type sf)
: source(std::move(o))
, selectCollection(std::move(s))
, selectResult(std::move(rs))
, coordination(std::move(sf))
{
}
source_type source;
collection_selector_type selectCollection;
result_selector_type selectResult;
coordination_type coordination;
private:
values& operator=(const values&) RXCPP_DELETE;
};
values initial;
concat_map(source_type o, collection_selector_type s, result_selector_type rs, coordination_type sf)
: initial(std::move(o), std::move(s), std::move(rs), std::move(sf))
{
}
template<class Subscriber>
void on_subscribe(Subscriber scbr) const {
static_assert(is_subscriber<Subscriber>::value, "subscribe must be passed a subscriber");
using output_type = Subscriber;
struct concat_map_state_type
: public std::enable_shared_from_this<concat_map_state_type>
, public values
{
concat_map_state_type(values i, coordinator_type coor, output_type oarg)
: values(std::move(i))
, sourceLifetime(composite_subscription::empty())
, collectionLifetime(composite_subscription::empty())
, coordinator(std::move(coor))
, out(std::move(oarg))
{
}
void subscribe_to(const source_value_type& st)
{
subscribe_to(std::make_shared<source_value_type>(st));
}
void subscribe_to(source_value_type&& st)
{
subscribe_to(std::make_shared<source_value_type>(std::move(st)));
}
void subscribe_to(std::shared_ptr<source_value_type>&& st)
{
auto state = this->shared_from_this();
auto selectedCollection = on_exception(
[&](){return state->selectCollection(*st);},
state->out);
if (selectedCollection.empty()) {
return;
}
collectionLifetime = composite_subscription();
// when the out observer is unsubscribed all the
// inner subscriptions are unsubscribed as well
auto innercstoken = state->out.add(collectionLifetime);
collectionLifetime.add(make_subscription([state, innercstoken](){
state->out.remove(innercstoken);
}));
auto selectedSource = on_exception(
[&](){return state->coordinator.in(selectedCollection.get());},
state->out);
if (selectedSource.empty()) {
return;
}
// this subscribe does not share the source subscription
// so that when it is unsubscribed the source will continue
auto sinkInner = make_subscriber<collection_value_type>(
state->out,
collectionLifetime,
// on_next
[state, st](collection_value_type ct) {
auto selectedResult = state->selectResult(*st, std::move(ct));
state->out.on_next(std::move(selectedResult));
},
// on_error
[state](rxu::error_ptr e) {
state->out.on_error(e);
},
//on_completed
[state](){
if (!state->selectedCollections.empty()) {
auto value = state->selectedCollections.front();
state->selectedCollections.pop_front();
state->collectionLifetime.unsubscribe();
state->subscribe_to(std::move(value));
} else if (!state->sourceLifetime.is_subscribed()) {
state->out.on_completed();
}
}
);
auto selectedSinkInner = on_exception(
[&](){return state->coordinator.out(sinkInner);},
state->out);
if (selectedSinkInner.empty()) {
return;
}
selectedSource->subscribe(std::move(selectedSinkInner.get()));
}
composite_subscription sourceLifetime;
composite_subscription collectionLifetime;
std::deque<source_value_type> selectedCollections;
coordinator_type coordinator;
output_type out;
};
auto coordinator = initial.coordination.create_coordinator(scbr.get_subscription());
// take a copy of the values for each subscription
auto state = std::make_shared<concat_map_state_type>(initial, std::move(coordinator), std::move(scbr));
state->sourceLifetime = composite_subscription();
// when the out observer is unsubscribed all the
// inner subscriptions are unsubscribed as well
state->out.add(state->sourceLifetime);
auto source = on_exception(
[&](){return state->coordinator.in(state->source);},
state->out);
if (source.empty()) {
return;
}
// this subscribe does not share the observer subscription
// so that when it is unsubscribed the observer can be called
// until the inner subscriptions have finished
auto sink = make_subscriber<source_value_type>(
state->out,
state->sourceLifetime,
// on_next
[state](auto&& st) {
if (state->collectionLifetime.is_subscribed()) {
state->selectedCollections.push_back(std::forward<decltype(st)>(st));
} else if (state->selectedCollections.empty()) {
state->subscribe_to(std::forward<decltype(st)>(st));
}
},
// on_error
[state](rxu::error_ptr e) {
state->out.on_error(e);
},
// on_completed
[state]() {
if (!state->collectionLifetime.is_subscribed() && state->selectedCollections.empty()) {
state->out.on_completed();
}
}
);
auto selectedSink = on_exception(
[&](){return state->coordinator.out(sink);},
state->out);
if (selectedSink.empty()) {
return;
}
source->subscribe(std::move(selectedSink.get()));
}
private:
concat_map& operator=(const concat_map&) RXCPP_DELETE;
};
}
/*! @copydoc rx-concat_map.hpp
*/
template<class... AN>
auto concat_map(AN&&... an)
-> operator_factory<concat_map_tag, AN...> {
return operator_factory<concat_map_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
/*! @copydoc rx-concat_map.hpp
*/
template<class... AN>
auto concat_transform(AN&&... an)
-> operator_factory<concat_map_tag, AN...> {
return operator_factory<concat_map_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<concat_map_tag>
{
template<class Observable, class CollectionSelector,
class CollectionSelectorType = rxu::decay_t<CollectionSelector>,
class SourceValue = rxu::value_type_t<Observable>,
class CollectionType = rxu::callable_result_t<CollectionSelectorType, SourceValue>,
class ResultSelectorType = rxu::detail::take_at<1>,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, CollectionType>>,
class ConcatMap = rxo::detail::concat_map<rxu::decay_t<Observable>, rxu::decay_t<CollectionSelector>, ResultSelectorType, identity_one_worker>,
class CollectionValueType = rxu::value_type_t<CollectionType>,
class Value = rxu::callable_result_t<ResultSelectorType, SourceValue, CollectionValueType>,
class Result = observable<Value, ConcatMap>
>
static Result member(Observable&& o, CollectionSelector&& s) {
return Result(ConcatMap(std::forward<Observable>(o), std::forward<CollectionSelector>(s), ResultSelectorType(), identity_current_thread()));
}
template<class Observable, class CollectionSelector, class Coordination,
class CollectionSelectorType = rxu::decay_t<CollectionSelector>,
class SourceValue = rxu::value_type_t<Observable>,
class CollectionType = rxu::callable_result_t<CollectionSelectorType, SourceValue>,
class ResultSelectorType = rxu::detail::take_at<1>,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, CollectionType>,
is_coordination<Coordination>>,
class ConcatMap = rxo::detail::concat_map<rxu::decay_t<Observable>, rxu::decay_t<CollectionSelector>, ResultSelectorType, rxu::decay_t<Coordination>>,
class CollectionValueType = rxu::value_type_t<CollectionType>,
class Value = rxu::callable_result_t<ResultSelectorType, SourceValue, CollectionValueType>,
class Result = observable<Value, ConcatMap>
>
static Result member(Observable&& o, CollectionSelector&& s, Coordination&& cn) {
return Result(ConcatMap(std::forward<Observable>(o), std::forward<CollectionSelector>(s), ResultSelectorType(), std::forward<Coordination>(cn)));
}
template<class Observable, class CollectionSelector, class ResultSelector,
class IsCoordination = is_coordination<ResultSelector>,
class CollectionSelectorType = rxu::decay_t<CollectionSelector>,
class SourceValue = rxu::value_type_t<Observable>,
class CollectionType = rxu::callable_result_t<CollectionSelectorType, SourceValue>,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, CollectionType>,
rxu::negation<IsCoordination>>,
class ConcatMap = rxo::detail::concat_map<rxu::decay_t<Observable>, rxu::decay_t<CollectionSelector>, rxu::decay_t<ResultSelector>, identity_one_worker>,
class CollectionValueType = rxu::value_type_t<CollectionType>,
class ResultSelectorType = rxu::decay_t<ResultSelector>,
class Value = rxu::callable_result_t<ResultSelectorType, SourceValue, CollectionValueType>,
class Result = observable<Value, ConcatMap>
>
static Result member(Observable&& o, CollectionSelector&& s, ResultSelector&& rs) {
return Result(ConcatMap(std::forward<Observable>(o), std::forward<CollectionSelector>(s), std::forward<ResultSelector>(rs), identity_current_thread()));
}
template<class Observable, class CollectionSelector, class ResultSelector, class Coordination,
class CollectionSelectorType = rxu::decay_t<CollectionSelector>,
class SourceValue = rxu::value_type_t<Observable>,
class CollectionType = rxu::callable_result_t<CollectionSelectorType, SourceValue>,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, CollectionType>,
is_coordination<Coordination>>,
class ConcatMap = rxo::detail::concat_map<rxu::decay_t<Observable>, rxu::decay_t<CollectionSelector>, rxu::decay_t<ResultSelector>, rxu::decay_t<Coordination>>,
class CollectionValueType = rxu::value_type_t<CollectionType>,
class ResultSelectorType = rxu::decay_t<ResultSelector>,
class Value = rxu::callable_result_t<ResultSelectorType, SourceValue, CollectionValueType>,
class Result = observable<Value, ConcatMap>
>
static Result member(Observable&& o, CollectionSelector&& s, ResultSelector&& rs, Coordination&& cn) {
return Result(ConcatMap(std::forward<Observable>(o), std::forward<CollectionSelector>(s), std::forward<ResultSelector>(rs), std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::concat_map_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "concat_map takes (CollectionSelector, optional ResultSelector, optional Coordination)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-connect_forever.hpp
\brief takes a connectable_observable source and calls connect during the construction of the expression.
This means that the source starts running without any subscribers and continues running after all subscriptions have been unsubscribed.
\return An observable that emitting the items from its source.
*/
#if !defined(RXCPP_OPERATORS_RX_CONNECT_FOREVER_HPP)
#define RXCPP_OPERATORS_RX_CONNECT_FOREVER_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct connect_forever_invalid_arguments {};
template<class... AN>
struct connect_forever_invalid : public rxo::operator_base<connect_forever_invalid_arguments<AN...>> {
using type = observable<connect_forever_invalid_arguments<AN...>, connect_forever_invalid<AN...>>;
};
template<class... AN>
using connect_forever_invalid_t = typename connect_forever_invalid<AN...>::type;
template<class T, class ConnectableObservable>
struct connect_forever : public operator_base<T>
{
using source_type = rxu::decay_t<ConnectableObservable>;
source_type source;
explicit connect_forever(source_type o)
: source(std::move(o))
{
source.connect();
}
template<class Subscriber>
void on_subscribe(Subscriber&& o) const {
source.subscribe(std::forward<Subscriber>(o));
}
};
}
/*! @copydoc rx-connect_forever.hpp
*/
template<class... AN>
auto connect_forever(AN&&... an)
-> operator_factory<connect_forever_tag, AN...> {
return operator_factory<connect_forever_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<connect_forever_tag>
{
template<class ConnectableObservable,
class Enabled = rxu::enable_if_all_true_type_t<
is_connectable_observable<ConnectableObservable>>,
class SourceValue = rxu::value_type_t<ConnectableObservable>,
class ConnectForever = rxo::detail::connect_forever<SourceValue, rxu::decay_t<ConnectableObservable>>,
class Value = rxu::value_type_t<ConnectForever>,
class Result = observable<Value, ConnectForever>
>
static Result member(ConnectableObservable&& o) {
return Result(ConnectForever(std::forward<ConnectableObservable>(o)));
}
template<class... AN>
static operators::detail::connect_forever_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "connect_forever takes no arguments");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-debounce.hpp
\brief Return an observable that emits an item if a particular timespan has passed without emitting another item from the source observable.
\tparam Duration the type of the time interval
\tparam Coordination the type of the scheduler
\param period the period of time to suppress any emitted items
\param coordination the scheduler to manage timeout for each event
\return Observable that emits an item if a particular timespan has passed without emitting another item from the source observable.
\sample
\snippet debounce.cpp debounce sample
\snippet output.txt debounce sample
*/
#if !defined(RXCPP_OPERATORS_RX_DEBOUNCE_HPP)
#define RXCPP_OPERATORS_RX_DEBOUNCE_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct debounce_invalid_arguments {};
template<class... AN>
struct debounce_invalid : public rxo::operator_base<debounce_invalid_arguments<AN...>> {
using type = observable<debounce_invalid_arguments<AN...>, debounce_invalid<AN...>>;
};
template<class... AN>
using debounce_invalid_t = typename debounce_invalid<AN...>::type;
template<class T, class Duration, class Coordination>
struct debounce
{
using source_value_type = rxu::decay_t<T>;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
using duration_type = rxu::decay_t<Duration>;
struct debounce_values
{
debounce_values(duration_type p, coordination_type c)
: period(p)
, coordination(c)
{
}
duration_type period;
coordination_type coordination;
};
debounce_values initial;
debounce(duration_type period, coordination_type coordination)
: initial(period, coordination)
{
}
template<class Subscriber>
struct debounce_observer
{
using this_type = debounce_observer<Subscriber>;
using value_type = rxu::decay_t<T>;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<T, this_type>;
struct debounce_subscriber_values : public debounce_values
{
debounce_subscriber_values(composite_subscription cs, dest_type d, debounce_values v, coordinator_type c)
: debounce_values(v)
, cs(std::move(cs))
, dest(std::move(d))
, coordinator(std::move(c))
, worker(coordinator.get_worker())
, index(0)
{
}
composite_subscription cs;
dest_type dest;
coordinator_type coordinator;
rxsc::worker worker;
mutable std::size_t index;
mutable rxu::maybe<value_type> value;
};
using state_type = std::shared_ptr<debounce_subscriber_values>;
state_type state;
debounce_observer(composite_subscription cs, dest_type d, debounce_values v, coordinator_type c)
: state(std::make_shared<debounce_subscriber_values>(debounce_subscriber_values(std::move(cs), std::move(d), v, std::move(c))))
{
auto localState = state;
auto disposer = [=](const rxsc::schedulable&){
localState->cs.unsubscribe();
localState->dest.unsubscribe();
localState->worker.unsubscribe();
};
auto selectedDisposer = on_exception(
[&](){ return localState->coordinator.act(disposer); },
localState->dest);
if (selectedDisposer.empty()) {
return;
}
localState->dest.add([=](){
localState->worker.schedule(selectedDisposer.get());
});
localState->cs.add([=](){
localState->worker.schedule(selectedDisposer.get());
});
}
static std::function<void(const rxsc::schedulable&)> produce_item(std::size_t id, state_type state) {
auto produce = [id, state](const rxsc::schedulable&) {
if(id != state->index)
return;
state->dest.on_next(std::move(*state->value));
state->value.reset();
};
auto selectedProduce = on_exception(
[&](){ return state->coordinator.act(produce); },
state->dest);
if (selectedProduce.empty()) {
return std::function<void(const rxsc::schedulable&)>();
}
return std::function<void(const rxsc::schedulable&)>(selectedProduce.get());
}
template<typename U>
void on_next(U&& v) const {
auto vAsShared = std::make_shared<T>(std::forward<U>(v));
auto localState = state;
auto work = [vAsShared, localState](const rxsc::schedulable&) {
auto new_id = ++localState->index;
auto produce_time = localState->worker.now() + localState->period;
localState->value.reset(std::move(*vAsShared));
localState->worker.schedule(produce_time, produce_item(new_id, localState));
};
auto selectedWork = on_exception(
[&](){return localState->coordinator.act(work);},
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
void on_error(rxu::error_ptr e) const {
auto localState = state;
auto work = [e, localState](const rxsc::schedulable&) {
localState->dest.on_error(e);
localState->value.reset();
};
auto selectedWork = on_exception(
[&](){ return localState->coordinator.act(work); },
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
void on_completed() const {
auto localState = state;
auto work = [localState](const rxsc::schedulable&) {
if(!localState->value.empty()) {
localState->dest.on_next(*localState->value);
}
localState->dest.on_completed();
};
auto selectedWork = on_exception(
[&](){ return localState->coordinator.act(work); },
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
static subscriber<T, observer_type> make(dest_type d, debounce_values v) {
auto cs = composite_subscription();
auto coordinator = v.coordination.create_coordinator();
return make_subscriber<T>(cs, observer_type(this_type(cs, std::move(d), std::move(v), std::move(coordinator))));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(debounce_observer<Subscriber>::make(std::move(dest), initial)) {
return debounce_observer<Subscriber>::make(std::move(dest), initial);
}
};
}
/*! @copydoc rx-debounce.hpp
*/
template<class... AN>
auto debounce(AN&&... an)
-> operator_factory<debounce_tag, AN...> {
return operator_factory<debounce_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<debounce_tag>
{
template<class Observable, class Duration,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
rxu::is_duration<Duration>>,
class SourceValue = rxu::value_type_t<Observable>,
class Debounce = rxo::detail::debounce<SourceValue, rxu::decay_t<Duration>, identity_one_worker>>
static auto member(Observable&& o, Duration&& d)
-> decltype(o.template lift<SourceValue>(Debounce(std::forward<Duration>(d), identity_current_thread()))) {
return o.template lift<SourceValue>(Debounce(std::forward<Duration>(d), identity_current_thread()));
}
template<class Observable, class Coordination, class Duration,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_coordination<Coordination>,
rxu::is_duration<Duration>>,
class SourceValue = rxu::value_type_t<Observable>,
class Debounce = rxo::detail::debounce<SourceValue, rxu::decay_t<Duration>, rxu::decay_t<Coordination>>>
static auto member(Observable&& o, Coordination&& cn, Duration&& d)
-> decltype(o.template lift<SourceValue>(Debounce(std::forward<Duration>(d), std::forward<Coordination>(cn)))) {
return o.template lift<SourceValue>(Debounce(std::forward<Duration>(d), std::forward<Coordination>(cn)));
}
template<class Observable, class Coordination, class Duration,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_coordination<Coordination>,
rxu::is_duration<Duration>>,
class SourceValue = rxu::value_type_t<Observable>,
class Debounce = rxo::detail::debounce<SourceValue, rxu::decay_t<Duration>, rxu::decay_t<Coordination>>>
static auto member(Observable&& o, Duration&& d, Coordination&& cn)
-> decltype(o.template lift<SourceValue>(Debounce(std::forward<Duration>(d), std::forward<Coordination>(cn)))) {
return o.template lift<SourceValue>(Debounce(std::forward<Duration>(d), std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::debounce_invalid_t<AN...> member(const AN&...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "debounce takes (optional Coordination, required Duration) or (required Duration, optional Coordination)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-delay.hpp
\brief Return an observable that emits each item emitted by the source observable after the specified delay.
\tparam Duration the type of time interval
\tparam Coordination the type of the scheduler
\param period the period of time each item is delayed
\param coordination the scheduler for the delays
\return Observable that emits each item emitted by the source observable after the specified delay.
\sample
\snippet delay.cpp delay period+coordination sample
\snippet output.txt delay period+coordination sample
*/
#if !defined(RXCPP_OPERATORS_RX_DELAY_HPP)
#define RXCPP_OPERATORS_RX_DELAY_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct delay_invalid_arguments {};
template<class... AN>
struct delay_invalid : public rxo::operator_base<delay_invalid_arguments<AN...>> {
using type = observable<delay_invalid_arguments<AN...>, delay_invalid<AN...>>;
};
template<class... AN>
using delay_invalid_t = typename delay_invalid<AN...>::type;
template<class T, class Duration, class Coordination>
struct delay
{
using source_value_type = rxu::decay_t<T>;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
using duration_type = rxu::decay_t<Duration>;
struct delay_values
{
delay_values(duration_type p, coordination_type c)
: period(p)
, coordination(c)
{
}
duration_type period;
coordination_type coordination;
};
delay_values initial;
delay(duration_type period, coordination_type coordination)
: initial(period, coordination)
{
}
template<class Subscriber>
struct delay_observer
{
using this_type = delay_observer<Subscriber>;
using value_type = rxu::decay_t<T>;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<T, this_type>;
struct delay_subscriber_values : public delay_values
{
delay_subscriber_values(composite_subscription cs, dest_type d, delay_values v, coordinator_type c)
: delay_values(v)
, cs(std::move(cs))
, dest(std::move(d))
, coordinator(std::move(c))
, worker(coordinator.get_worker())
, expected(worker.now())
{
}
composite_subscription cs;
dest_type dest;
coordinator_type coordinator;
rxsc::worker worker;
rxsc::scheduler::clock_type::time_point expected;
};
std::shared_ptr<delay_subscriber_values> state;
delay_observer(composite_subscription cs, dest_type d, delay_values v, coordinator_type c)
: state(std::make_shared<delay_subscriber_values>(delay_subscriber_values(std::move(cs), std::move(d), v, std::move(c))))
{
auto localState = state;
auto disposer = [=](const rxsc::schedulable&){
localState->cs.unsubscribe();
localState->dest.unsubscribe();
localState->worker.unsubscribe();
};
auto selectedDisposer = on_exception(
[&](){return localState->coordinator.act(disposer);},
localState->dest);
if (selectedDisposer.empty()) {
return;
}
localState->dest.add([=](){
localState->worker.schedule(selectedDisposer.get());
});
localState->cs.add([=](){
localState->worker.schedule(localState->worker.now() + localState->period, selectedDisposer.get());
});
}
template<typename U>
void on_next(U&& v) const {
auto localState = state;
auto vAsShared = std::make_shared<T>(std::forward<U>(v));
auto work = [vAsShared, localState](const rxsc::schedulable&){
localState->dest.on_next(std::move(*vAsShared));
};
auto selectedWork = on_exception(
[&](){return localState->coordinator.act(work);},
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(localState->worker.now() + localState->period, selectedWork.get());
}
void on_error(rxu::error_ptr e) const {
auto localState = state;
auto work = [e, localState](const rxsc::schedulable&){
localState->dest.on_error(e);
};
auto selectedWork = on_exception(
[&](){return localState->coordinator.act(work);},
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
void on_completed() const {
auto localState = state;
auto work = [localState](const rxsc::schedulable&){
localState->dest.on_completed();
};
auto selectedWork = on_exception(
[&](){return localState->coordinator.act(work);},
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(localState->worker.now() + localState->period, selectedWork.get());
}
static subscriber<T, observer_type> make(dest_type d, delay_values v) {
auto cs = composite_subscription();
auto coordinator = v.coordination.create_coordinator();
return make_subscriber<T>(cs, observer_type(this_type(cs, std::move(d), std::move(v), std::move(coordinator))));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(delay_observer<Subscriber>::make(std::move(dest), initial)) {
return delay_observer<Subscriber>::make(std::move(dest), initial);
}
};
}
/*! @copydoc rx-delay.hpp
*/
template<class... AN>
auto delay(AN&&... an)
-> operator_factory<delay_tag, AN...> {
return operator_factory<delay_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<delay_tag>
{
template<class Observable, class Duration,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
rxu::is_duration<Duration>>,
class SourceValue = rxu::value_type_t<Observable>,
class delay = rxo::detail::delay<SourceValue, rxu::decay_t<Duration>, identity_one_worker>>
static auto member(Observable&& o, Duration&& d)
-> decltype(o.template lift<SourceValue>(delay(std::forward<Duration>(d), identity_current_thread()))) {
return o.template lift<SourceValue>(delay(std::forward<Duration>(d), identity_current_thread()));
}
template<class Observable, class Coordination, class Duration,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_coordination<Coordination>,
rxu::is_duration<Duration>>,
class SourceValue = rxu::value_type_t<Observable>,
class delay = rxo::detail::delay<SourceValue, rxu::decay_t<Duration>, rxu::decay_t<Coordination>>>
static auto member(Observable&& o, Coordination&& cn, Duration&& d)
-> decltype(o.template lift<SourceValue>(delay(std::forward<Duration>(d), std::forward<Coordination>(cn)))) {
return o.template lift<SourceValue>(delay(std::forward<Duration>(d), std::forward<Coordination>(cn)));
}
template<class Observable, class Coordination, class Duration,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_coordination<Coordination>,
rxu::is_duration<Duration>>,
class SourceValue = rxu::value_type_t<Observable>,
class delay = rxo::detail::delay<SourceValue, rxu::decay_t<Duration>, rxu::decay_t<Coordination>>>
static auto member(Observable&& o, Duration&& d, Coordination&& cn)
-> decltype(o.template lift<SourceValue>(delay(std::forward<Duration>(d), std::forward<Coordination>(cn)))) {
return o.template lift<SourceValue>(delay(std::forward<Duration>(d), std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::delay_invalid_t<AN...> member(const AN&...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "delay takes (optional Coordination, required Duration) or (required Duration, optional Coordination)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-distinct.hpp
\brief For each item from this observable, filter out repeated values and emit only items that have not already been emitted.
\return Observable that emits those items from the source observable that are distinct.
\note istinct keeps an unordered_set<T> of past values. Due to an issue in multiple implementations of std::hash<T>, rxcpp maintains a whitelist of hashable types. new types can be added by specializing rxcpp::filtered_hash<T>
\sample
\snippet distinct.cpp distinct sample
\snippet output.txt distinct sample
*/
#if !defined(RXCPP_OPERATORS_RX_DISTINCT_HPP)
#define RXCPP_OPERATORS_RX_DISTINCT_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct distinct_invalid_arguments {};
template<class... AN>
struct distinct_invalid : public rxo::operator_base<distinct_invalid_arguments<AN...>> {
using type = observable<distinct_invalid_arguments<AN...>, distinct_invalid<AN...>>;
};
template<class... AN>
using distinct_invalid_t = typename distinct_invalid<AN...>::type;
template<class T>
struct distinct
{
using source_value_type = rxu::decay_t<T>;
template<class Subscriber>
struct distinct_observer
{
using this_type = distinct_observer<Subscriber>;
using value_type = source_value_type;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<value_type, this_type>;
dest_type dest;
mutable std::unordered_set<source_value_type, rxcpp::filtered_hash<source_value_type>> remembered;
distinct_observer(dest_type d)
: dest(d)
{
}
template<typename U>
void on_next(U&& v) const {
if (remembered.empty() || remembered.count(v) == 0) {
remembered.insert(v);
dest.on_next(std::forward<U>(v));
}
}
void on_error(rxu::error_ptr e) const {
dest.on_error(e);
}
void on_completed() const {
dest.on_completed();
}
static subscriber<value_type, observer<value_type, this_type>> make(dest_type d) {
return make_subscriber<value_type>(d, this_type(d));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(distinct_observer<Subscriber>::make(std::move(dest))) {
return distinct_observer<Subscriber>::make(std::move(dest));
}
};
}
/*! @copydoc rx-distinct.hpp
*/
template<class... AN>
auto distinct(AN&&... an)
-> operator_factory<distinct_tag, AN...> {
return operator_factory<distinct_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<distinct_tag>
{
template<class Observable,
class SourceValue = rxu::value_type_t<Observable>,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_hashable<SourceValue>>,
class Distinct = rxo::detail::distinct<SourceValue>>
static auto member(Observable&& o)
-> decltype(o.template lift<SourceValue>(Distinct())) {
return o.template lift<SourceValue>(Distinct());
}
template<class... AN>
static operators::detail::distinct_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "distinct takes no arguments");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-distinct_until_changed.hpp
\brief For each item from this observable, filter out consequentially repeated values and emit only changes from the new observable that is returned.
\tparam BinaryPredicate (optional) the type of the value comparing function. The signature should be equivalent to the following: bool pred(const T1& a, const T2& b);
\param pred (optional) the function that implements comparison of two values.
\return Observable that emits those items from the source observable that are distinct from their immediate predecessors.
\sample
\snippet distinct_until_changed.cpp distinct_until_changed sample
\snippet output.txt distinct_until_changed sample
*/
#if !defined(RXCPP_OPERATORS_RX_DISTINCT_UNTIL_CHANGED_HPP)
#define RXCPP_OPERATORS_RX_DISTINCT_UNTIL_CHANGED_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct distinct_until_changed_invalid_arguments {};
template<class... AN>
struct distinct_until_changed_invalid : public rxo::operator_base<distinct_until_changed_invalid_arguments<AN...>> {
using type = observable<distinct_until_changed_invalid_arguments<AN...>, distinct_until_changed_invalid<AN...>>;
};
template<class... AN>
using distinct_until_changed_invalid_t = typename distinct_until_changed_invalid<AN...>::type;
template<class T, class BinaryPredicate>
struct distinct_until_changed
{
using source_value_type = rxu::decay_t<T>;
using predicate_type = rxu::decay_t<BinaryPredicate>;
predicate_type pred;
distinct_until_changed(predicate_type p)
: pred(std::move(p))
{
}
template<class Subscriber>
struct distinct_until_changed_observer
{
using this_type = distinct_until_changed_observer<Subscriber>;
using value_type = source_value_type;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<value_type, this_type>;
dest_type dest;
predicate_type pred;
mutable rxu::detail::maybe<source_value_type> remembered;
distinct_until_changed_observer(dest_type d, predicate_type pred)
: dest(std::move(d))
, pred(std::move(pred))
{
}
template<typename U>
void on_next(U&& v) const {
if (remembered.empty() || !pred(v, remembered.get())) {
remembered.reset(v);
dest.on_next(std::forward<U>(v));
}
}
void on_error(rxu::error_ptr e) const {
dest.on_error(e);
}
void on_completed() const {
dest.on_completed();
}
static subscriber<value_type, observer_type> make(dest_type d, predicate_type p) {
return make_subscriber<value_type>(d, this_type(d, std::move(p)));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(distinct_until_changed_observer<Subscriber>::make(std::move(dest), pred)) {
return distinct_until_changed_observer<Subscriber>::make(std::move(dest), pred);
}
};
}
/*! @copydoc rx-distinct_until_changed.hpp
*/
template<class... AN>
auto distinct_until_changed(AN&&... an)
-> operator_factory<distinct_until_changed_tag, AN...> {
return operator_factory<distinct_until_changed_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<distinct_until_changed_tag>
{
template<class Observable,
class SourceValue = rxu::value_type_t<Observable>,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class DistinctUntilChanged = rxo::detail::distinct_until_changed<SourceValue, rxu::equal_to<>>>
static auto member(Observable&& o)
-> decltype(o.template lift<SourceValue>(DistinctUntilChanged(rxu::equal_to<>()))) {
return o.template lift<SourceValue>(DistinctUntilChanged(rxu::equal_to<>()));
}
template<class Observable,
class BinaryPredicate,
class SourceValue = rxu::value_type_t<Observable>,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class DistinctUntilChanged = rxo::detail::distinct_until_changed<SourceValue, BinaryPredicate>>
static auto member(Observable&& o, BinaryPredicate&& pred)
-> decltype(o.template lift<SourceValue>(DistinctUntilChanged(std::forward<BinaryPredicate>(pred)))) {
return o.template lift<SourceValue>(DistinctUntilChanged(std::forward<BinaryPredicate>(pred)));
}
template<class... AN>
static operators::detail::distinct_until_changed_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "distinct_until_changed takes (optional BinaryPredicate)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-element_at.hpp
\brief Pulls an item located at a specified index location in the sequence of items and emits that item as its own sole emission.
\param index the index of the element to return.
\return An observable that emit an item located at a specified index location.
\sample
\snippet element_at.cpp element_at sample
\snippet output.txt element_at sample
*/
#if !defined(RXCPP_OPERATORS_RX_ELEMENT_AT_HPP)
#define RXCPP_OPERATORS_RX_ELEMENT_AT_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct element_at_invalid_arguments {};
template<class... AN>
struct element_at_invalid : public rxo::operator_base<element_at_invalid_arguments<AN...>> {
using type = observable<element_at_invalid_arguments<AN...>, element_at_invalid<AN...>>;
};
template<class... AN>
using element_at_invalid_t = typename element_at_invalid<AN...>::type;
template<class T>
struct element_at {
using source_value_type = rxu::decay_t<T>;
struct element_at_values {
element_at_values(int i)
: index(i)
{
}
int index;
};
element_at_values initial;
element_at(int i)
: initial(i)
{
}
template<class Subscriber>
struct element_at_observer : public element_at_values
{
using this_type = element_at_observer<Subscriber>;
using value_type = source_value_type;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<value_type, this_type>;
dest_type dest;
mutable int current;
element_at_observer(dest_type d, element_at_values v)
: element_at_values(v),
dest(d),
current(0)
{
}
template<typename U>
void on_next(U&& v) const {
if (current++ == this->index) {
dest.on_next(std::forward<U>(v));
dest.on_completed();
}
}
void on_error(rxu::error_ptr e) const {
dest.on_error(e);
}
void on_completed() const {
if(current <= this->index) {
dest.on_error(rxu::make_error_ptr(std::range_error("index is out of bounds")));
}
}
static subscriber<value_type, observer_type> make(dest_type d, element_at_values v) {
return make_subscriber<value_type>(d, this_type(d, v));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(element_at_observer<Subscriber>::make(std::move(dest), initial)) {
return element_at_observer<Subscriber>::make(std::move(dest), initial);
}
};
}
/*! @copydoc rx-element_at.hpp
*/
template<class... AN>
auto element_at(AN&&... an)
-> operator_factory<element_at_tag, AN...> {
return operator_factory<element_at_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<element_at_tag>
{
template<class Observable,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>
>,
class SourceValue = rxu::value_type_t<Observable>,
class element_at = rxo::detail::element_at<SourceValue>>
static auto member(Observable&& o, int index)
-> decltype(o.template lift<SourceValue>(element_at(index))) {
return o.template lift<SourceValue>(element_at(index));
}
template<class... AN>
static operators::detail::element_at_invalid_t<AN...> member(const AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "element_at takes (required int)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-filter.hpp
\brief For each item from this observable use Predicate to select which items to emit from the new observable that is returned.
\tparam Predicate the type of the filter function
\param p the filter function
\return Observable that emits only those items emitted by the source observable that the filter evaluates as true.
\sample
\snippet filter.cpp filter sample
\snippet output.txt filter sample
*/
#if !defined(RXCPP_OPERATORS_RX_FILTER_HPP)
#define RXCPP_OPERATORS_RX_FILTER_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct filter_invalid_arguments {};
template<class... AN>
struct filter_invalid : public rxo::operator_base<filter_invalid_arguments<AN...>> {
using type = observable<filter_invalid_arguments<AN...>, filter_invalid<AN...>>;
};
template<class... AN>
using filter_invalid_t = typename filter_invalid<AN...>::type;
template<class T, class Predicate>
struct filter
{
using source_value_type = rxu::decay_t<T>;
using test_type = rxu::decay_t<Predicate>;
test_type test;
filter(test_type t)
: test(std::move(t))
{
}
template<class Subscriber>
struct filter_observer
{
using this_type = filter_observer<Subscriber>;
using value_type = source_value_type;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<value_type, this_type>;
dest_type dest;
mutable test_type test;
filter_observer(dest_type d, test_type t)
: dest(std::move(d))
, test(std::move(t))
{
}
template <class Value>
void on_next(Value&& v) const {
auto filtered = on_exception([&](){
return !this->test(rxu::as_const(v));
},
dest);
if (filtered.empty()) {
return;
}
if (!filtered.get()) {
dest.on_next(std::forward<Value>(v));
}
}
void on_error(rxu::error_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(filter_observer<Subscriber>::make(std::move(dest), test)) {
return filter_observer<Subscriber>::make(std::move(dest), test);
}
};
}
/*! @copydoc rx-filter.hpp
*/
template<class... AN>
auto filter(AN&&... an)
-> operator_factory<filter_tag, AN...> {
return operator_factory<filter_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<filter_tag>
{
template<class Observable, class Predicate,
class SourceValue = rxu::value_type_t<Observable>,
class Filter = rxo::detail::filter<SourceValue, rxu::decay_t<Predicate>>>
static auto member(Observable&& o, Predicate&& p)
-> decltype(o.template lift<SourceValue>(Filter(std::forward<Predicate>(p)))) {
return o.template lift<SourceValue>(Filter(std::forward<Predicate>(p)));
}
template<class... AN>
static operators::detail::filter_invalid_t<AN...> member(const AN&...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "filter takes (Predicate)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-finally.hpp
\brief Add a new action at the end of the new observable that is returned.
\tparam LastCall the type of the action function
\param lc the action function
\return Observable that emits the same items as the source observable, then invokes the given action.
\sample
\snippet finally.cpp finally sample
\snippet output.txt finally sample
If the source observable generates an error, the final action is still being called:
\snippet finally.cpp error finally sample
\snippet output.txt error finally sample
*/
#if !defined(RXCPP_OPERATORS_RX_FINALLY_HPP)
#define RXCPP_OPERATORS_RX_FINALLY_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct finally_invalid_arguments {};
template<class... AN>
struct finally_invalid : public rxo::operator_base<finally_invalid_arguments<AN...>> {
using type = observable<finally_invalid_arguments<AN...>, finally_invalid<AN...>>;
};
template<class... AN>
using finally_invalid_t = typename finally_invalid<AN...>::type;
template<class T, class LastCall>
struct finally
{
using source_value_type = rxu::decay_t<T>;
using last_call_type = rxu::decay_t<LastCall>;
last_call_type last_call;
finally(last_call_type lc)
: last_call(std::move(lc))
{
}
template<class Subscriber>
struct finally_observer
{
using this_type = finally_observer<Subscriber>;
using value_type = source_value_type;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<value_type, this_type>;
dest_type dest;
finally_observer(dest_type d)
: dest(std::move(d))
{
}
template<typename U>
void on_next(U&& v) const {
dest.on_next(std::forward<U>(v));
}
void on_error(rxu::error_ptr e) const {
dest.on_error(e);
}
void on_completed() const {
dest.on_completed();
}
static subscriber<value_type, observer_type> make(dest_type d, const last_call_type& lc) {
auto dl = d.get_subscription();
composite_subscription cs;
dl.add(cs);
cs.add([=](){
dl.unsubscribe();
lc();
});
return make_subscriber<value_type>(cs, this_type(d));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(finally_observer<Subscriber>::make(std::move(dest), last_call)) {
return finally_observer<Subscriber>::make(std::move(dest), last_call);
}
};
}
/*! @copydoc rx-finally.hpp
*/
template<class... AN>
auto finally(AN&&... an)
-> operator_factory<finally_tag, AN...> {
return operator_factory<finally_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<finally_tag>
{
template<class Observable, class LastCall,
class SourceValue = rxu::value_type_t<Observable>,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class Finally = rxo::detail::finally<SourceValue, rxu::decay_t<LastCall>>>
static auto member(Observable&& o, LastCall&& lc)
-> decltype(o.template lift<SourceValue>(Finally(std::forward<LastCall>(lc)))) {
return o.template lift<SourceValue>(Finally(std::forward<LastCall>(lc)));
}
template<class... AN>
static operators::detail::finally_invalid_t<AN...> member(const AN&...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "finally takes (LastCall)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-flat_map.hpp
\brief For each item from this observable use the CollectionSelector to produce an observable and subscribe to that observable.
For each item from all of the produced observables use the ResultSelector to produce a value to emit from the new observable that is returned.
\tparam CollectionSelector the type of the observable producing function. CollectionSelector must be a function with the signature observable(flat_map::source_value_type)
\tparam ResultSelector the type of the aggregation function (optional). ResultSelector must be a function with the signature flat_map::value_type(flat_map::source_value_type, flat_map::collection_value_type).
\tparam Coordination the type of the scheduler (optional).
\param s a function that returns an observable for each item emitted by the source observable.
\param rs a function that combines one item emitted by each of the source and collection observables and returns an item to be emitted by the resulting observable (optional).
\param cn the scheduler to synchronize sources from different contexts (optional).
\return Observable that emits the results of applying a function to a pair of values emitted by the source observable and the collection observable.
Observables, produced by the CollectionSelector, are merged. There is another operator rxcpp::observable<T,SourceType>::flat_map that works similar but concatenates the observables.
\sample
\snippet flat_map.cpp flat_map sample
\snippet output.txt flat_map sample
\sample
\snippet flat_map.cpp threaded flat_map sample
\snippet output.txt threaded flat_map sample
*/
#if !defined(RXCPP_OPERATORS_RX_FLATMAP_HPP)
#define RXCPP_OPERATORS_RX_FLATMAP_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct flat_map_invalid_arguments {};
template<class... AN>
struct flat_map_invalid : public rxo::operator_base<flat_map_invalid_arguments<AN...>> {
using type = observable<flat_map_invalid_arguments<AN...>, flat_map_invalid<AN...>>;
};
template<class... AN>
using flat_map_invalid_t = typename flat_map_invalid<AN...>::type;
template<class Observable, class CollectionSelector, class ResultSelector, class Coordination>
struct flat_map_traits {
using source_type = rxu::decay_t<Observable>;
using collection_selector_type = rxu::decay_t<CollectionSelector>;
using result_selector_type = rxu::decay_t<ResultSelector>;
using coordination_type = rxu::decay_t<Coordination>;
using source_value_type = typename source_type::value_type;
struct tag_not_valid {};
template<class CV, class CCS>
static auto collection_check(int) -> decltype(std::declval<CCS>()(std::declval<CV>()));
template<class CV, class CCS>
static tag_not_valid collection_check(...);
static_assert(!std::is_same_v<decltype(collection_check<source_value_type, collection_selector_type>(0)), tag_not_valid>, "flat_map CollectionSelector must be a function with the signature observable(flat_map::source_value_type)");
using collection_type = rxu::decay_t<decltype(std::declval<collection_selector_type>()(std::declval<source_value_type>()))>;
static_assert(is_observable<collection_type>::value, "flat_map CollectionSelector must return an observable");
using collection_value_type = typename collection_type::value_type;
template<class CV, class CCV, class CRS>
static auto result_check(int) -> decltype(std::declval<CRS>()(std::declval<CV>(), std::declval<CCV>()));
template<class CV, class CCV, class CRS>
static tag_not_valid result_check(...);
static_assert(!std::is_same_v<decltype(result_check<source_value_type, collection_value_type, result_selector_type>(0)), tag_not_valid>, "flat_map ResultSelector must be a function with the signature flat_map::value_type(flat_map::source_value_type, flat_map::collection_value_type)");
using value_type = rxu::decay_t<decltype((std::declval<result_selector_type>())(std::declval<source_value_type>(), std::declval<collection_value_type>()))> ;
};
template<class Observable, class CollectionSelector, class ResultSelector, class Coordination>
struct flat_map
: public operator_base<rxu::value_type_t<flat_map_traits<Observable, CollectionSelector, ResultSelector, Coordination>>>
{
using this_type = flat_map<Observable, CollectionSelector, ResultSelector, Coordination>;
using traits = flat_map_traits<Observable, CollectionSelector, ResultSelector, Coordination>;
using source_type = typename traits::source_type;
using collection_selector_type = typename traits::collection_selector_type;
using result_selector_type = typename traits::result_selector_type;
using source_value_type = typename traits::source_value_type;
using collection_type = typename traits::collection_type;
using collection_value_type = typename traits::collection_value_type;
using coordination_type = typename traits::coordination_type;
using coordinator_type = typename coordination_type::coordinator_type;
struct values
{
values(source_type o, collection_selector_type s, result_selector_type rs, coordination_type sf)
: source(std::move(o))
, selectCollection(std::move(s))
, selectResult(std::move(rs))
, coordination(std::move(sf))
{
}
source_type source;
collection_selector_type selectCollection;
result_selector_type selectResult;
coordination_type coordination;
};
values initial;
flat_map(source_type o, collection_selector_type s, result_selector_type rs, coordination_type sf)
: initial(std::move(o), std::move(s), std::move(rs), std::move(sf))
{
}
template<class Subscriber>
void on_subscribe(Subscriber scbr) const {
static_assert(is_subscriber<Subscriber>::value, "subscribe must be passed a subscriber");
using output_type = Subscriber;
struct state_type
: public std::enable_shared_from_this<state_type>
, public values
{
state_type(values i, coordinator_type coor, output_type oarg)
: values(std::move(i))
, pendingCompletions(0)
, coordinator(std::move(coor))
, out(std::move(oarg))
{
}
// on_completed on the output must wait until all the
// subscriptions have received on_completed
int pendingCompletions;
coordinator_type coordinator;
output_type out;
};
auto coordinator = initial.coordination.create_coordinator(scbr.get_subscription());
// take a copy of the values for each subscription
auto state = std::make_shared<state_type>(initial, std::move(coordinator), std::move(scbr));
composite_subscription outercs;
// when the out observer is unsubscribed all the
// inner subscriptions are unsubscribed as well
state->out.add(outercs);
auto source = on_exception(
[&](){return state->coordinator.in(state->source);},
state->out);
if (source.empty()) {
return;
}
++state->pendingCompletions;
// this subscribe does not share the observer subscription
// so that when it is unsubscribed the observer can be called
// until the inner subscriptions have finished
auto sink = make_subscriber<source_value_type>(
state->out,
outercs,
// on_next
[state](auto&& st) {
composite_subscription innercs;
// when the out observer is unsubscribed all the
// inner subscriptions are unsubscribed as well
auto innercstoken = state->out.add(innercs);
innercs.add(make_subscription([state, innercstoken](){
state->out.remove(innercstoken);
}));
auto stAsShared = std::make_shared<source_value_type>(std::forward<decltype(st)>(st));
auto selectedCollection = state->selectCollection(*stAsShared);
auto selectedSource = state->coordinator.in(selectedCollection);
++state->pendingCompletions;
// this subscribe does not share the source subscription
// so that when it is unsubscribed the source will continue
auto sinkInner = make_subscriber<collection_value_type>(
state->out,
innercs,
// on_next
[state, stAsShared](collection_value_type ct) {
auto selectedResult = state->selectResult(std::move(*stAsShared), std::move(ct));
state->out.on_next(std::move(selectedResult));
},
// on_error
[state](rxu::error_ptr e) {
state->out.on_error(e);
},
//on_completed
[state](){
if (--state->pendingCompletions == 0) {
state->out.on_completed();
}
}
);
auto selectedSinkInner = state->coordinator.out(sinkInner);
selectedSource.subscribe(std::move(selectedSinkInner));
},
// on_error
[state](rxu::error_ptr e) {
state->out.on_error(e);
},
// on_completed
[state]() {
if (--state->pendingCompletions == 0) {
state->out.on_completed();
}
}
);
auto selectedSink = on_exception(
[&](){return state->coordinator.out(sink);},
state->out);
if (selectedSink.empty()) {
return;
}
source->subscribe(std::move(selectedSink.get()));
}
};
}
/*! @copydoc rx-flat_map.hpp
*/
template<class... AN>
auto flat_map(AN&&... an)
-> operator_factory<flat_map_tag, AN...> {
return operator_factory<flat_map_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
/*! @copydoc rx-flat_map.hpp
*/
template<class... AN>
auto merge_transform(AN&&... an)
-> operator_factory<flat_map_tag, AN...> {
return operator_factory<flat_map_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<flat_map_tag>
{
template<class Observable, class CollectionSelector,
class CollectionSelectorType = rxu::decay_t<CollectionSelector>,
class SourceValue = rxu::value_type_t<Observable>,
class CollectionType = rxu::callable_result_t<CollectionSelectorType, SourceValue>,
class ResultSelectorType = rxu::detail::take_at<1>,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, CollectionType>>,
class FlatMap = rxo::detail::flat_map<rxu::decay_t<Observable>, rxu::decay_t<CollectionSelector>, ResultSelectorType, identity_one_worker>,
class CollectionValueType = rxu::value_type_t<CollectionType>,
class Value = rxu::callable_result_t<ResultSelectorType, SourceValue, CollectionValueType>,
class Result = observable<Value, FlatMap>
>
static Result member(Observable&& o, CollectionSelector&& s) {
return Result(FlatMap(std::forward<Observable>(o), std::forward<CollectionSelector>(s), ResultSelectorType(), identity_current_thread()));
}
template<class Observable, class CollectionSelector, class Coordination,
class CollectionSelectorType = rxu::decay_t<CollectionSelector>,
class SourceValue = rxu::value_type_t<Observable>,
class CollectionType = rxu::callable_result_t<CollectionSelectorType, SourceValue>,
class ResultSelectorType = rxu::detail::take_at<1>,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, CollectionType>,
is_coordination<Coordination>>,
class FlatMap = rxo::detail::flat_map<rxu::decay_t<Observable>, rxu::decay_t<CollectionSelector>, ResultSelectorType, rxu::decay_t<Coordination>>,
class CollectionValueType = rxu::value_type_t<CollectionType>,
class Value = rxu::callable_result_t<ResultSelectorType, SourceValue, CollectionValueType>,
class Result = observable<Value, FlatMap>
>
static Result member(Observable&& o, CollectionSelector&& s, Coordination&& cn) {
return Result(FlatMap(std::forward<Observable>(o), std::forward<CollectionSelector>(s), ResultSelectorType(), std::forward<Coordination>(cn)));
}
template<class Observable, class CollectionSelector, class ResultSelector,
class IsCoordination = is_coordination<ResultSelector>,
class CollectionSelectorType = rxu::decay_t<CollectionSelector>,
class SourceValue = rxu::value_type_t<Observable>,
class CollectionType = rxu::callable_result_t<CollectionSelectorType, SourceValue>,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, CollectionType>,
rxu::negation<IsCoordination>>,
class FlatMap = rxo::detail::flat_map<rxu::decay_t<Observable>, rxu::decay_t<CollectionSelector>, rxu::decay_t<ResultSelector>, identity_one_worker>,
class CollectionValueType = rxu::value_type_t<CollectionType>,
class ResultSelectorType = rxu::decay_t<ResultSelector>,
class Value = rxu::callable_result_t<ResultSelectorType, SourceValue, CollectionValueType>,
class Result = observable<Value, FlatMap>
>
static Result member(Observable&& o, CollectionSelector&& s, ResultSelector&& rs) {
return Result(FlatMap(std::forward<Observable>(o), std::forward<CollectionSelector>(s), std::forward<ResultSelector>(rs), identity_current_thread()));
}
template<class Observable, class CollectionSelector, class ResultSelector, class Coordination,
class CollectionSelectorType = rxu::decay_t<CollectionSelector>,
class SourceValue = rxu::value_type_t<Observable>,
class CollectionType = rxu::callable_result_t<CollectionSelectorType, SourceValue>,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, CollectionType>,
is_coordination<Coordination>>,
class FlatMap = rxo::detail::flat_map<rxu::decay_t<Observable>, rxu::decay_t<CollectionSelector>, rxu::decay_t<ResultSelector>, rxu::decay_t<Coordination>>,
class CollectionValueType = rxu::value_type_t<CollectionType>,
class ResultSelectorType = rxu::decay_t<ResultSelector>,
class Value = rxu::callable_result_t<ResultSelectorType, SourceValue, CollectionValueType>,
class Result = observable<Value, FlatMap>
>
static Result member(Observable&& o, CollectionSelector&& s, ResultSelector&& rs, Coordination&& cn) {
return Result(FlatMap(std::forward<Observable>(o), std::forward<CollectionSelector>(s), std::forward<ResultSelector>(rs), std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::flat_map_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "flat_map takes (CollectionSelector, optional ResultSelector, optional Coordination)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-group_by.hpp
\brief Return an observable that emits grouped_observables, each of which corresponds to a unique key value and each of which emits those items from the source observable that share that key value.
\tparam KeySelector the type of the key extracting function
\tparam MarbleSelector the type of the element extracting function
\tparam BinaryPredicate the type of the key comparing function
\tparam DurationSelector the type of the duration observable function
\param ks a function that extracts the key for each item (optional)
\param ms a function that extracts the return element for each item (optional)
\param p a function that implements comparison of two keys (optional)
\return Observable that emits values of grouped_observable type, each of which corresponds to a unique key value and each of which emits those items from the source observable that share that key value.
\sample
\snippet group_by.cpp group_by full intro
\snippet group_by.cpp group_by full sample
\snippet output.txt group_by full sample
\sample
\snippet group_by.cpp group_by sample
\snippet output.txt group_by sample
*/
#if !defined(RXCPP_OPERATORS_RX_GROUP_BY_HPP)
#define RXCPP_OPERATORS_RX_GROUP_BY_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct group_by_invalid_arguments {};
template<class... AN>
struct group_by_invalid : public rxo::operator_base<group_by_invalid_arguments<AN...>> {
using type = observable<group_by_invalid_arguments<AN...>, group_by_invalid<AN...>>;
};
template<class... AN>
using group_by_invalid_t = typename group_by_invalid<AN...>::type;
template<class T, class Selector>
struct is_group_by_selector_for {
using selector_type = rxu::decay_t<Selector>;
using source_value_type = T;
struct tag_not_valid {};
template<class CV, class CS>
static auto check(int) -> decltype(std::declval<CS>()(std::declval<CV>()));
template<class CV, class CS>
static tag_not_valid check(...);
using type = decltype(check<source_value_type, selector_type>(0));
static const bool value = !std::is_same_v<type, tag_not_valid>;
};
template<class T, class Observable, class KeySelector, class MarbleSelector, class BinaryPredicate, class DurationSelector>
struct group_by_traits
{
using source_value_type = T;
using source_type = rxu::decay_t<Observable>;
using key_selector_type = rxu::decay_t<KeySelector>;
using marble_selector_type = rxu::decay_t<MarbleSelector>;
using predicate_type = rxu::decay_t<BinaryPredicate>;
using duration_selector_type = rxu::decay_t<DurationSelector>;
static_assert(is_group_by_selector_for<source_value_type, key_selector_type>::value, "group_by KeySelector must be a function with the signature key_type(source_value_type)");
using key_type = typename is_group_by_selector_for<source_value_type, key_selector_type>::type;
static_assert(is_group_by_selector_for<source_value_type, marble_selector_type>::value, "group_by MarbleSelector must be a function with the signature marble_type(source_value_type)");
using marble_type = typename is_group_by_selector_for<source_value_type, marble_selector_type>::type;
using subject_type = rxsub::subject<marble_type>;
using key_subscriber_map_type = std::map<key_type, typename subject_type::subscriber_type, predicate_type>;
using grouped_observable_type = grouped_observable<key_type, marble_type>;
};
template<class T, class Observable, class KeySelector, class MarbleSelector, class BinaryPredicate, class DurationSelector>
struct group_by
{
using traits_type = group_by_traits<T, Observable, KeySelector, MarbleSelector, BinaryPredicate, DurationSelector>;
using key_selector_type = typename traits_type::key_selector_type;
using marble_selector_type = typename traits_type::marble_selector_type;
using marble_type = typename traits_type::marble_type;
using predicate_type = typename traits_type::predicate_type;
using duration_selector_type = typename traits_type::duration_selector_type;
using subject_type = typename traits_type::subject_type;
using key_type = typename traits_type::key_type;
using group_map_type = typename traits_type::key_subscriber_map_type;
using bindings_type = std::vector<typename composite_subscription::weak_subscription>;
struct group_by_state_type
{
group_by_state_type(composite_subscription sl, predicate_type p)
: source_lifetime(sl)
, groups(p)
, observers(0)
{}
composite_subscription source_lifetime;
rxsc::worker worker;
group_map_type groups;
std::atomic<int> observers;
};
template<class Subscriber>
static void stopsource(Subscriber&& dest, std::shared_ptr<group_by_state_type>& state) {
++state->observers;
dest.add([state](){
if (!state->source_lifetime.is_subscribed()) {
return;
}
--state->observers;
if (state->observers == 0) {
state->source_lifetime.unsubscribe();
}
});
}
struct group_by_values
{
group_by_values(key_selector_type ks, marble_selector_type ms, predicate_type p, duration_selector_type ds)
: keySelector(std::move(ks))
, marbleSelector(std::move(ms))
, predicate(std::move(p))
, durationSelector(std::move(ds))
{
}
mutable key_selector_type keySelector;
mutable marble_selector_type marbleSelector;
mutable predicate_type predicate;
mutable duration_selector_type durationSelector;
};
group_by_values initial;
group_by(key_selector_type ks, marble_selector_type ms, predicate_type p, duration_selector_type ds)
: initial(std::move(ks), std::move(ms), std::move(p), std::move(ds))
{
}
struct group_by_observable : public rxs::source_base<marble_type>
{
mutable std::shared_ptr<group_by_state_type> state;
subject_type subject;
key_type key;
group_by_observable(std::shared_ptr<group_by_state_type> st, subject_type s, key_type k)
: state(std::move(st))
, subject(std::move(s))
, key(k)
{
}
template<class Subscriber>
void on_subscribe(Subscriber&& o) const {
group_by::stopsource(o, state);
subject.get_observable().subscribe(std::forward<Subscriber>(o));
}
key_type on_get_key() {
return key;
}
};
template<class Subscriber>
struct group_by_observer : public group_by_values
{
using this_type = group_by_observer<Subscriber>;
using value_type = typename traits_type::grouped_observable_type;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<T, this_type>;
dest_type dest;
mutable std::shared_ptr<group_by_state_type> state;
group_by_observer(composite_subscription l, dest_type d, group_by_values v)
: group_by_values(v)
, dest(std::move(d))
, state(std::make_shared<group_by_state_type>(l, group_by_values::predicate))
{
group_by::stopsource(dest, state);
}
template<typename U>
void on_next(U&& v) const {
auto selectedKey = on_exception(
[&](){
return this->keySelector(v);},
[this](rxu::error_ptr e){on_error(e);});
if (selectedKey.empty()) {
return;
}
auto g = state->groups.find(selectedKey.get());
if (g == state->groups.end()) {
if (!dest.is_subscribed()) {
return;
}
auto sub = subject_type();
g = state->groups.insert(std::make_pair(selectedKey.get(), sub.get_subscriber())).first;
auto obs = make_dynamic_grouped_observable<key_type, marble_type>(group_by_observable(state, sub, selectedKey.get()));
auto durationObs = on_exception(
[&](){
return this->durationSelector(obs);},
[this](rxu::error_ptr e){on_error(e);});
if (durationObs.empty()) {
return;
}
dest.on_next(obs);
composite_subscription duration_sub;
auto ssub = state->source_lifetime.add(duration_sub);
auto expire_state = state;
auto expire_dest = g->second;
auto expire = [=]() {
auto g = expire_state->groups.find(selectedKey.get());
if (g != expire_state->groups.end()) {
expire_state->groups.erase(g);
expire_dest.on_completed();
}
expire_state->source_lifetime.remove(ssub);
};
auto robs = durationObs.get().take(1);
duration_sub.add(robs.subscribe(
[](const typename decltype(robs)::value_type &){},
[=](rxu::error_ptr) {expire();},
[=](){expire();}
));
}
on_exception_no_return([&]()
{
g->second.on_next(this->marbleSelector(std::forward<U>(v)));
},
[this](rxu::error_ptr e) { on_error(e); });
}
void on_error(rxu::error_ptr e) const {
for(auto& g : state->groups) {
g.second.on_error(e);
}
dest.on_error(e);
}
void on_completed() const {
for(auto& g : state->groups) {
g.second.on_completed();
}
dest.on_completed();
}
static subscriber<T, observer_type> make(dest_type d, group_by_values v) {
auto cs = composite_subscription();
return make_subscriber<T>(cs, observer_type(this_type(cs, std::move(d), std::move(v))));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(group_by_observer<Subscriber>::make(std::move(dest), initial)) {
return group_by_observer<Subscriber>::make(std::move(dest), initial);
}
};
template<class KeySelector, class MarbleSelector, class BinaryPredicate, class DurationSelector>
class group_by_factory
{
using key_selector_type = rxu::decay_t<KeySelector>;
using marble_selector_type = rxu::decay_t<MarbleSelector>;
using predicate_type = rxu::decay_t<BinaryPredicate>;
using duration_selector_type = rxu::decay_t<DurationSelector>;
key_selector_type keySelector;
marble_selector_type marbleSelector;
predicate_type predicate;
duration_selector_type durationSelector;
public:
group_by_factory(key_selector_type ks, marble_selector_type ms, predicate_type p, duration_selector_type ds)
: keySelector(std::move(ks))
, marbleSelector(std::move(ms))
, predicate(std::move(p))
, durationSelector(std::move(ds))
{
}
template<class Observable>
struct group_by_factory_traits
{
using value_type = rxu::value_type_t <rxu::decay_t<Observable>>;
using traits_type = detail::group_by_traits<value_type, Observable, KeySelector, MarbleSelector, BinaryPredicate, DurationSelector>;
using group_by_type = detail::group_by<value_type, Observable, KeySelector, MarbleSelector, BinaryPredicate, DurationSelector>;
};
template<class Observable>
auto operator()(Observable&& source)
-> decltype(source.template lift<typename group_by_factory_traits<Observable>::traits_type::grouped_observable_type>(typename group_by_factory_traits<Observable>::group_by_type(std::move(keySelector), std::move(marbleSelector), std::move(predicate), std::move(durationSelector)))) {
return source.template lift<typename group_by_factory_traits<Observable>::traits_type::grouped_observable_type>(typename group_by_factory_traits<Observable>::group_by_type(std::move(keySelector), std::move(marbleSelector), std::move(predicate), std::move(durationSelector)));
}
};
}
/*! @copydoc rx-group_by.hpp
*/
template<class... AN>
auto group_by(AN&&... an)
-> operator_factory<group_by_tag, AN...> {
return operator_factory<group_by_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<group_by_tag>
{
template<class Observable, class KeySelector, class MarbleSelector, class BinaryPredicate, class DurationSelector,
class SourceValue = rxu::value_type_t<Observable>,
class Traits = rxo::detail::group_by_traits<SourceValue, rxu::decay_t<Observable>, KeySelector, MarbleSelector, BinaryPredicate, DurationSelector>,
class GroupBy = rxo::detail::group_by<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<KeySelector>, rxu::decay_t<MarbleSelector>, rxu::decay_t<BinaryPredicate>, rxu::decay_t<DurationSelector>>,
class Value = typename Traits::grouped_observable_type>
static auto member(Observable&& o, KeySelector&& ks, MarbleSelector&& ms, BinaryPredicate&& p, DurationSelector&& ds)
-> decltype(o.template lift<Value>(GroupBy(std::forward<KeySelector>(ks), std::forward<MarbleSelector>(ms), std::forward<BinaryPredicate>(p), std::forward<DurationSelector>(ds)))) {
return o.template lift<Value>(GroupBy(std::forward<KeySelector>(ks), std::forward<MarbleSelector>(ms), std::forward<BinaryPredicate>(p), std::forward<DurationSelector>(ds)));
}
template<class Observable, class KeySelector, class MarbleSelector, class BinaryPredicate,
class DurationSelector=rxu::ret<observable<int, rxs::detail::never<int>>>,
class SourceValue = rxu::value_type_t<Observable>,
class Traits = rxo::detail::group_by_traits<SourceValue, rxu::decay_t<Observable>, KeySelector, MarbleSelector, BinaryPredicate, DurationSelector>,
class GroupBy = rxo::detail::group_by<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<KeySelector>, rxu::decay_t<MarbleSelector>, rxu::decay_t<BinaryPredicate>, rxu::decay_t<DurationSelector>>,
class Value = typename Traits::grouped_observable_type>
static auto member(Observable&& o, KeySelector&& ks, MarbleSelector&& ms, BinaryPredicate&& p)
-> decltype(o.template lift<Value>(GroupBy(std::forward<KeySelector>(ks), std::forward<MarbleSelector>(ms), std::forward<BinaryPredicate>(p), rxu::ret<observable<int, rxs::detail::never<int>>>()))) {
return o.template lift<Value>(GroupBy(std::forward<KeySelector>(ks), std::forward<MarbleSelector>(ms), std::forward<BinaryPredicate>(p), rxu::ret<observable<int, rxs::detail::never<int>>>()));
}
template<class Observable, class KeySelector, class MarbleSelector,
class BinaryPredicate=rxu::less,
class DurationSelector=rxu::ret<observable<int, rxs::detail::never<int>>>,
class SourceValue = rxu::value_type_t<Observable>,
class Traits = rxo::detail::group_by_traits<SourceValue, rxu::decay_t<Observable>, KeySelector, MarbleSelector, BinaryPredicate, DurationSelector>,
class GroupBy = rxo::detail::group_by<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<KeySelector>, rxu::decay_t<MarbleSelector>, rxu::decay_t<BinaryPredicate>, rxu::decay_t<DurationSelector>>,
class Value = typename Traits::grouped_observable_type>
static auto member(Observable&& o, KeySelector&& ks, MarbleSelector&& ms)
-> decltype(o.template lift<Value>(GroupBy(std::forward<KeySelector>(ks), std::forward<MarbleSelector>(ms), rxu::less(), rxu::ret<observable<int, rxs::detail::never<int>>>()))) {
return o.template lift<Value>(GroupBy(std::forward<KeySelector>(ks), std::forward<MarbleSelector>(ms), rxu::less(), rxu::ret<observable<int, rxs::detail::never<int>>>()));
}
template<class Observable, class KeySelector,
class MarbleSelector=rxu::detail::take_at<0>,
class BinaryPredicate=rxu::less,
class DurationSelector=rxu::ret<observable<int, rxs::detail::never<int>>>,
class SourceValue = rxu::value_type_t<Observable>,
class Traits = rxo::detail::group_by_traits<SourceValue, rxu::decay_t<Observable>, KeySelector, MarbleSelector, BinaryPredicate, DurationSelector>,
class GroupBy = rxo::detail::group_by<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<KeySelector>, rxu::decay_t<MarbleSelector>, rxu::decay_t<BinaryPredicate>, rxu::decay_t<DurationSelector>>,
class Value = typename Traits::grouped_observable_type>
static auto member(Observable&& o, KeySelector&& ks)
-> decltype(o.template lift<Value>(GroupBy(std::forward<KeySelector>(ks), rxu::detail::take_at<0>(), rxu::less(), rxu::ret<observable<int, rxs::detail::never<int>>>()))) {
return o.template lift<Value>(GroupBy(std::forward<KeySelector>(ks), rxu::detail::take_at<0>(), rxu::less(), rxu::ret<observable<int, rxs::detail::never<int>>>()));
}
template<class Observable,
class KeySelector=rxu::detail::take_at<0>,
class MarbleSelector=rxu::detail::take_at<0>,
class BinaryPredicate=rxu::less,
class DurationSelector=rxu::ret<observable<int, rxs::detail::never<int>>>,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Traits = rxo::detail::group_by_traits<SourceValue, rxu::decay_t<Observable>, KeySelector, MarbleSelector, BinaryPredicate, DurationSelector>,
class GroupBy = rxo::detail::group_by<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<KeySelector>, rxu::decay_t<MarbleSelector>, rxu::decay_t<BinaryPredicate>, rxu::decay_t<DurationSelector>>,
class Value = typename Traits::grouped_observable_type>
static auto member(Observable&& o)
-> decltype(o.template lift<Value>(GroupBy(rxu::detail::take_at<0>(), rxu::detail::take_at<0>(), rxu::less(), rxu::ret<observable<int, rxs::detail::never<int>>>()))) {
return o.template lift<Value>(GroupBy(rxu::detail::take_at<0>(), rxu::detail::take_at<0>(), rxu::less(), rxu::ret<observable<int, rxs::detail::never<int>>>()));
}
template<class... AN>
static operators::detail::group_by_invalid_t<AN...> member(const AN&...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "group_by takes (optional KeySelector, optional MarbleSelector, optional BinaryKeyPredicate, optional DurationSelector), KeySelector takes (Observable::value_type) -> KeyValue, MarbleSelector takes (Observable::value_type) -> MarbleValue, BinaryKeyPredicate takes (KeyValue, KeyValue) -> bool, DurationSelector takes (Observable::value_type) -> Observable");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-ignore_elements.hpp
\brief Do not emit any items from the source Observable, but allow termination notification (either onError or onCompleted) to pass through unchanged.
\return Observable that emits termination notification from the source observable.
\sample
\snippet ignore_elements.cpp ignore_elements sample
\snippet output.txt ignore_elements sample
*/
#if !defined(RXCPP_OPERATORS_RX_IGNORE_ELEMENTS_HPP)
#define RXCPP_OPERATORS_RX_IGNORE_ELEMENTS_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct ignore_elements_invalid_arguments {};
template<class... AN>
struct ignore_elements_invalid : public rxo::operator_base<ignore_elements_invalid_arguments<AN...>> {
using type = observable<ignore_elements_invalid_arguments<AN...>, ignore_elements_invalid<AN...>>;
};
template<class... AN>
using ignore_elements_invalid_t = typename ignore_elements_invalid<AN...>::type;
template<class T>
struct ignore_elements {
using source_value_type = rxu::decay_t<T>;
template<class Subscriber>
struct ignore_elements_observer
{
using this_type = ignore_elements_observer<Subscriber>;
using value_type = source_value_type;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<value_type, this_type>;
dest_type dest;
ignore_elements_observer(dest_type d)
: dest(d)
{
}
void on_next(const source_value_type&) const {
// no-op; ignore element
}
void on_error(rxu::error_ptr e) const {
dest.on_error(e);
}
void on_completed() const {
dest.on_completed();
}
static subscriber<value_type, observer_type> make(dest_type d) {
return make_subscriber<value_type>(d, this_type(d));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(ignore_elements_observer<Subscriber>::make(std::move(dest))) {
return ignore_elements_observer<Subscriber>::make(std::move(dest));
}
};
}
/*! @copydoc rx-ignore_elements.hpp
*/
template<class... AN>
auto ignore_elements(AN&&... an)
-> operator_factory<ignore_elements_tag, AN...> {
return operator_factory<ignore_elements_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<ignore_elements_tag>
{
template<class Observable,
class SourceValue = rxu::value_type_t<Observable>,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class IgnoreElements = rxo::detail::ignore_elements<SourceValue>>
static auto member(Observable&& o)
-> decltype(o.template lift<SourceValue>(IgnoreElements())) {
return o.template lift<SourceValue>(IgnoreElements());
}
template<class... AN>
static operators::detail::ignore_elements_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "ignore_elements takes no arguments");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-map.hpp
\brief For each item from this observable use Selector to produce an item to emit from the new observable that is returned.
\tparam Selector the type of the transforming function
\param s the selector function
\return Observable that emits the items from the source observable, transformed by the specified function.
\sample
\snippet map.cpp map sample
\snippet output.txt map sample
*/
#if !defined(RXCPP_OPERATORS_RX_MAP_HPP)
#define RXCPP_OPERATORS_RX_MAP_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct map_invalid_arguments {};
template<class... AN>
struct map_invalid : public rxo::operator_base<map_invalid_arguments<AN...>> {
using type = observable<map_invalid_arguments<AN...>, map_invalid<AN...>>;
};
template<class... AN>
using map_invalid_t = typename map_invalid<AN...>::type;
template<class T, class Selector>
struct map
{
using source_value_type = rxu::decay_t<T>;
using select_type = rxu::decay_t<Selector>;
using value_type = decltype(std::declval<select_type>()(std::declval<source_value_type>()));
select_type selector;
map(select_type s)
: selector(std::move(s))
{
}
template<class Subscriber>
struct map_observer
{
using this_type = map_observer<Subscriber>;
using value_type = decltype(std::declval<select_type>()(std::declval<source_value_type>()));
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<source_value_type, this_type>;
dest_type dest;
mutable select_type selector;
map_observer(dest_type d, select_type s)
: dest(std::move(d))
, selector(std::move(s))
{
}
template<class Value>
void on_next(Value&& v) const
{
on_exception_no_return([&]()
{
dest.on_next(this->selector(std::forward<Value>(v)));
},
dest);
}
void on_error(rxu::error_ptr e) const {
dest.on_error(e);
}
void on_completed() const {
dest.on_completed();
}
static subscriber<source_value_type, observer_type> make(dest_type d, select_type s) {
auto cs = d.get_subscription();
return make_subscriber<source_value_type>(std::move(cs), observer_type(this_type(std::move(d), std::move(s))));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(map_observer<Subscriber>::make(std::move(dest), selector)) {
return map_observer<Subscriber>::make(std::move(dest), selector);
}
};
}
/*! @copydoc rx-map.hpp
*/
template<class... AN>
auto map(AN&&... an)
-> operator_factory<map_tag, AN...> {
return operator_factory<map_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
/*! @copydoc rx-map.hpp
*/
template<class... AN>
auto transform(AN&&... an)
-> operator_factory<map_tag, AN...> {
return operator_factory<map_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<map_tag>
{
template<class Observable, class Selector,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class ResolvedSelector = rxu::decay_t<Selector>,
class SourceValue = rxu::value_type_t<Observable>,
class Map = rxo::detail::map<SourceValue, ResolvedSelector>,
class Value = rxu::value_type_t<Map>>
static auto member(Observable&& o, Selector&& s)
-> decltype(o.template lift<Value>(Map(std::forward<Selector>(s)))) {
return o.template lift<Value>(Map(std::forward<Selector>(s)));
}
template<class... AN>
static operators::detail::map_invalid_t<AN...> member(const AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "map takes Selector");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-merge.hpp
\brief For each given observable subscribe.
For each item emitted from all of the given observables, deliver from the new observable that is returned.
There are 2 variants of the operator:
- The source observable emits nested observables, nested observables are merged.
- The source observable and the arguments v0...vn are used to provide the observables to merge.
\tparam Coordination the type of the scheduler (optional).
\tparam Value0 ... (optional).
\tparam ValueN types of source observables (optional).
\param cn the scheduler to synchronize sources from different contexts (optional).
\param v0 ... (optional).
\param vn source observables (optional).
\return Observable that emits items that are the result of flattening the observables emitted by the source observable.
If scheduler is omitted, identity_current_thread is used.
\sample
\snippet merge.cpp threaded implicit merge sample
\snippet output.txt threaded implicit merge sample
\sample
\snippet merge.cpp implicit merge sample
\snippet output.txt implicit merge sample
\sample
\snippet merge.cpp merge sample
\snippet output.txt merge sample
\sample
\snippet merge.cpp threaded merge sample
\snippet output.txt threaded merge sample
*/
#if !defined(RXCPP_OPERATORS_RX_MERGE_HPP)
#define RXCPP_OPERATORS_RX_MERGE_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct merge_invalid_arguments {};
template<class... AN>
struct merge_invalid : public rxo::operator_base<merge_invalid_arguments<AN...>> {
using type = observable<merge_invalid_arguments<AN...>, merge_invalid<AN...>>;
};
template<class... AN>
using merge_invalid_t = typename merge_invalid<AN...>::type;
template<class T, class Observable, class Coordination>
struct merge
: public operator_base<rxu::value_type_t<rxu::decay_t<T>>>
{
//static_assert(is_observable<Observable>::value, "merge requires an observable");
//static_assert(is_observable<T>::value, "merge requires an observable that contains observables");
using this_type = merge<T, Observable, Coordination>;
using source_value_type = rxu::decay_t<T>;
using source_type = rxu::decay_t<Observable>;
using source_operator_type = typename source_type::source_operator_type;
using value_type = typename source_value_type::value_type;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
struct values
{
values(source_operator_type o, coordination_type sf)
: source_operator(std::move(o))
, coordination(std::move(sf))
{
}
source_operator_type source_operator;
coordination_type coordination;
};
values initial;
merge(const source_type& o, coordination_type sf)
: initial(o.source_operator, std::move(sf))
{
}
template<class Subscriber>
void on_subscribe(Subscriber scbr) const {
static_assert(is_subscriber<Subscriber>::value, "subscribe must be passed a subscriber");
using output_type = Subscriber;
struct merge_state_type
: public std::enable_shared_from_this<merge_state_type>
, public values
{
merge_state_type(values i, coordinator_type coor, output_type oarg)
: values(i)
, source(i.source_operator)
, pendingCompletions(0)
, coordinator(std::move(coor))
, out(std::move(oarg))
{
}
observable<source_value_type, source_operator_type> source;
// on_completed on the output must wait until all the
// subscriptions have received on_completed
int pendingCompletions;
coordinator_type coordinator;
output_type out;
};
auto coordinator = initial.coordination.create_coordinator(scbr.get_subscription());
// take a copy of the values for each subscription
auto state = std::make_shared<merge_state_type>(initial, std::move(coordinator), std::move(scbr));
composite_subscription outercs;
// when the out observer is unsubscribed all the
// inner subscriptions are unsubscribed as well
state->out.add(outercs);
auto source = on_exception(
[&](){return state->coordinator.in(state->source);},
state->out);
if (source.empty()) {
return;
}
++state->pendingCompletions;
// this subscribe does not share the observer subscription
// so that when it is unsubscribed the observer can be called
// until the inner subscriptions have finished
auto sink = make_subscriber<source_value_type>(
state->out,
outercs,
// on_next
[state](source_value_type st) {
composite_subscription innercs;
// when the out observer is unsubscribed all the
// inner subscriptions are unsubscribed as well
auto innercstoken = state->out.add(innercs);
innercs.add(make_subscription([state, innercstoken](){
state->out.remove(innercstoken);
}));
auto selectedSource = state->coordinator.in(st);
++state->pendingCompletions;
// this subscribe does not share the source subscription
// so that when it is unsubscribed the source will continue
auto sinkInner = make_subscriber<value_type>(
state->out,
innercs,
// on_next
[state, st](auto&& ct) {
state->out.on_next(std::forward<decltype(ct)>(ct));
},
// on_error
[state](rxu::error_ptr e) {
state->out.on_error(e);
},
//on_completed
[state](){
if (--state->pendingCompletions == 0) {
state->out.on_completed();
}
}
);
auto selectedSinkInner = state->coordinator.out(sinkInner);
selectedSource.subscribe(std::move(selectedSinkInner));
},
// on_error
[state](rxu::error_ptr e) {
state->out.on_error(e);
},
// on_completed
[state]() {
if (--state->pendingCompletions == 0) {
state->out.on_completed();
}
}
);
auto selectedSink = on_exception(
[&](){return state->coordinator.out(sink);},
state->out);
if (selectedSink.empty()) {
return;
}
source->subscribe(std::move(selectedSink.get()));
}
};
}
/*! @copydoc rx-merge.hpp
*/
template<class... AN>
auto merge(AN&&... an)
-> operator_factory<merge_tag, AN...> {
return operator_factory<merge_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<merge_tag>
{
template<class Observable,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Merge = rxo::detail::merge<SourceValue, rxu::decay_t<Observable>, identity_one_worker>,
class Value = rxu::value_type_t<SourceValue>,
class Result = observable<Value, Merge>
>
static Result member(Observable&& o) {
return Result(Merge(std::forward<Observable>(o), identity_current_thread()));
}
template<class Observable, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class Merge = rxo::detail::merge<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<Coordination>>,
class Value = rxu::value_type_t<SourceValue>,
class Result = observable<Value, Merge>
>
static Result member(Observable&& o, Coordination&& cn) {
return Result(Merge(std::forward<Observable>(o), std::forward<Coordination>(cn)));
}
template<class Observable, class Value0, class... ValueN,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, Value0, ValueN...>>,
class EmittedValue = rxu::value_type_t<Observable>,
class SourceValue = observable<EmittedValue>,
class ObservableObservable = observable<SourceValue>,
class Merge = typename rxu::defer_type<rxo::detail::merge, SourceValue, ObservableObservable, identity_one_worker>::type,
class Value = rxu::value_type_t<Merge>,
class Result = observable<Value, Merge>
>
static Result member(Observable&& o, Value0&& v0, ValueN&&... vn) {
return Result(Merge(rxs::from(o.as_dynamic(), v0.as_dynamic(), vn.as_dynamic()...), identity_current_thread()));
}
template<class Observable, class Coordination, class Value0, class... ValueN,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, Value0, ValueN...>,
is_coordination<Coordination>>,
class EmittedValue = rxu::value_type_t<Observable>,
class SourceValue = observable<EmittedValue>,
class ObservableObservable = observable<SourceValue>,
class Merge = typename rxu::defer_type<rxo::detail::merge, SourceValue, ObservableObservable, rxu::decay_t<Coordination>>::type,
class Value = rxu::value_type_t<Merge>,
class Result = observable<Value, Merge>
>
static Result member(Observable&& o, Coordination&& cn, Value0&& v0, ValueN&&... vn) {
return Result(Merge(rxs::from(o.as_dynamic(), v0.as_dynamic(), vn.as_dynamic()...), std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::merge_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "merge takes (optional Coordination, optional Value0, optional ValueN...)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-merge_delay_error.hpp
\brief For each given observable subscribe.
For each item emitted from all of the given observables, deliver from the new observable that is returned.
The first error to occure is hold off until all of the given non-error-emitting observables have finished their emission.
There are 2 variants of the operator:
- The source observable emits nested observables, nested observables are merged.
- The source observable and the arguments v0...vn are used to provide the observables to merge.
\tparam Coordination the type of the scheduler (optional).
\tparam Value0 ... (optional).
\tparam ValueN types of source observables (optional).
\param cn the scheduler to synchronize sources from different contexts (optional).
\param v0 ... (optional).
\param vn source observables (optional).
\return Observable that emits items that are the result of flattening the observables emitted by the source observable.
If scheduler is omitted, identity_current_thread is used.
\sample
\snippet merge_delay_error.cpp threaded implicit merge sample
\snippet output.txt threaded implicit merge sample
\sample
\snippet merge_delay_error.cpp implicit merge sample
\snippet output.txt implicit merge sample
\sample
\snippet merge_delay_error.cpp merge sample
\snippet output.txt merge sample
\sample
\snippet merge_delay_error.cpp threaded merge sample
\snippet output.txt threaded merge sample
*/
#if !defined(RXCPP_OPERATORS_RX_MERGE_DELAY_ERROR_HPP)
#define RXCPP_OPERATORS_RX_MERGE_DELAY_ERROR_HPP
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_SOURCES_RX_COMPOSITE_EXCEPTION_HPP)
#define RXCPP_SOURCES_RX_COMPOSITE_EXCEPTION_HPP
namespace rxcpp {
struct composite_exception : std::exception {
using exception_values = std::vector<rxu::error_ptr>;
virtual const char *what() const RXCPP_NOEXCEPT override {
return "rxcpp composite exception";
}
virtual bool empty() const {
return exceptions.empty();
}
virtual composite_exception add(rxu::error_ptr exception_ptr) {
exceptions.push_back(exception_ptr);
return *this;
}
exception_values exceptions;
};
}
#endif
namespace rxcpp {
namespace operators {
namespace detail {
template<class T, class Observable, class Coordination>
struct merge_delay_error
: public operator_base<rxu::value_type_t<rxu::decay_t<T>>>
{
//static_assert(is_observable<Observable>::value, "merge requires an observable");
//static_assert(is_observable<T>::value, "merge requires an observable that contains observables");
using this_type = merge_delay_error<T, Observable, Coordination>;
using source_value_type = rxu::decay_t<T>;
using source_type = rxu::decay_t<Observable>;
using source_operator_type = typename source_type::source_operator_type;
using value_type = typename source_value_type::value_type;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
struct values
{
values(source_operator_type o, coordination_type sf)
: source_operator(std::move(o))
, coordination(std::move(sf))
{
}
source_operator_type source_operator;
coordination_type coordination;
};
values initial;
merge_delay_error(const source_type& o, coordination_type sf)
: initial(o.source_operator, std::move(sf))
{
}
template<class Subscriber>
void on_subscribe(Subscriber scbr) const {
static_assert(is_subscriber<Subscriber>::value, "subscribe must be passed a subscriber");
using output_type = Subscriber;
struct merge_state_type
: public std::enable_shared_from_this<merge_state_type>
, public values
{
merge_state_type(values i, coordinator_type coor, output_type oarg)
: values(i)
, source(i.source_operator)
, pendingCompletions(0)
, coordinator(std::move(coor))
, out(std::move(oarg))
{
}
observable<source_value_type, source_operator_type> source;
// on_completed on the output must wait until all the
// subscriptions have received on_completed
int pendingCompletions;
composite_exception exception;
coordinator_type coordinator;
output_type out;
};
auto coordinator = initial.coordination.create_coordinator(scbr.get_subscription());
// take a copy of the values for each subscription
auto state = std::make_shared<merge_state_type>(initial, std::move(coordinator), std::move(scbr));
composite_subscription outercs;
// when the out observer is unsubscribed all the
// inner subscriptions are unsubscribed as well
state->out.add(outercs);
auto source = on_exception(
[&](){return state->coordinator.in(state->source);},
state->out);
if (source.empty()) {
return;
}
++state->pendingCompletions;
// this subscribe does not share the observer subscription
// so that when it is unsubscribed the observer can be called
// until the inner subscriptions have finished
auto sink = make_subscriber<source_value_type>(
state->out,
outercs,
// on_next
[state](source_value_type st) {
composite_subscription innercs;
// when the out observer is unsubscribed all the
// inner subscriptions are unsubscribed as well
auto innercstoken = state->out.add(innercs);
innercs.add(make_subscription([state, innercstoken](){
state->out.remove(innercstoken);
}));
auto selectedSource = state->coordinator.in(st);
++state->pendingCompletions;
// this subscribe does not share the source subscription
// so that when it is unsubscribed the source will continue
auto sinkInner = make_subscriber<value_type>(
state->out,
innercs,
// on_next
[state, st](auto&& ct) {
state->out.on_next(std::forward<decltype(ct)>(ct));
},
// on_error
[state](rxu::error_ptr e) {
if(--state->pendingCompletions == 0) {
state->out.on_error(
rxu::make_error_ptr(std::move(state->exception.add(e))));
} else {
state->exception.add(e);
}
},
//on_completed
[state](){
if (--state->pendingCompletions == 0) {
if(!state->exception.empty()) {
state->out.on_error(
rxu::make_error_ptr(std::move(state->exception)));
} else {
state->out.on_completed();
}
}
}
);
auto selectedSinkInner = state->coordinator.out(sinkInner);
selectedSource.subscribe(std::move(selectedSinkInner));
},
// on_error
[state](rxu::error_ptr e) {
if(--state->pendingCompletions == 0) {
state->out.on_error(
rxu::make_error_ptr(std::move(state->exception.add(e))));
} else {
state->exception.add(e);
}
},
// on_completed
[state]() {
if (--state->pendingCompletions == 0) {
if(!state->exception.empty()) {
state->out.on_error(
rxu::make_error_ptr(std::move(state->exception)));
} else {
state->out.on_completed();
}
}
}
);
auto selectedSink = on_exception(
[&](){return state->coordinator.out(sink);},
state->out);
if (selectedSink.empty()) {
return;
}
source->subscribe(std::move(selectedSink.get()));
}
};
}
/*! @copydoc rx-merge-delay-error.hpp
*/
template<class... AN>
auto merge_delay_error(AN&&... an)
-> operator_factory<merge_delay_error_tag, AN...> {
return operator_factory<merge_delay_error_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<merge_delay_error_tag>
{
template<class Observable,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Merge = rxo::detail::merge_delay_error<SourceValue, rxu::decay_t<Observable>, identity_one_worker>,
class Value = rxu::value_type_t<SourceValue>,
class Result = observable<Value, Merge>
>
static Result member(Observable&& o) {
return Result(Merge(std::forward<Observable>(o), identity_current_thread()));
}
template<class Observable, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class Merge = rxo::detail::merge_delay_error<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<Coordination>>,
class Value = rxu::value_type_t<SourceValue>,
class Result = observable<Value, Merge>
>
static Result member(Observable&& o, Coordination&& cn) {
return Result(Merge(std::forward<Observable>(o), std::forward<Coordination>(cn)));
}
template<class Observable, class Value0, class... ValueN,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, Value0, ValueN...>>,
class EmittedValue = rxu::value_type_t<Observable>,
class SourceValue = observable<EmittedValue>,
class ObservableObservable = observable<SourceValue>,
class Merge = typename rxu::defer_type<rxo::detail::merge_delay_error, SourceValue, ObservableObservable, identity_one_worker>::type,
class Value = rxu::value_type_t<Merge>,
class Result = observable<Value, Merge>
>
static Result member(Observable&& o, Value0&& v0, ValueN&&... vn) {
return Result(Merge(rxs::from(o.as_dynamic(), v0.as_dynamic(), vn.as_dynamic()...), identity_current_thread()));
}
template<class Observable, class Coordination, class Value0, class... ValueN,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, Value0, ValueN...>,
is_coordination<Coordination>>,
class EmittedValue = rxu::value_type_t<Observable>,
class SourceValue = observable<EmittedValue>,
class ObservableObservable = observable<SourceValue>,
class Merge = typename rxu::defer_type<rxo::detail::merge_delay_error, SourceValue, ObservableObservable, rxu::decay_t<Coordination>>::type,
class Value = rxu::value_type_t<Merge>,
class Result = observable<Value, Merge>
>
static Result member(Observable&& o, Coordination&& cn, Value0&& v0, ValueN&&... vn) {
return Result(Merge(rxs::from(o.as_dynamic(), v0.as_dynamic(), vn.as_dynamic()...), std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::merge_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "merge_delay_error takes (optional Coordination, optional Value0, optional ValueN...)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-observe_on.hpp
\brief All values are queued and delivered using the scheduler from the supplied coordination.
\tparam Coordination the type of the scheduler.
\param cn the scheduler to notify observers on.
\return The source observable modified so that its observers are notified on the specified scheduler.
\sample
\snippet observe_on.cpp observe_on sample
\snippet output.txt observe_on sample
Invoking rxcpp::observable::subscribe_on operator, instead of observe_on, gives following results:
\snippet output.txt subscribe_on sample
*/
#if !defined(RXCPP_OPERATORS_RX_OBSERVE_ON_HPP)
#define RXCPP_OPERATORS_RX_OBSERVE_ON_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct observe_on_invalid_arguments {};
template<class... AN>
struct observe_on_invalid : public rxo::operator_base<observe_on_invalid_arguments<AN...>> {
using type = observable<observe_on_invalid_arguments<AN...>, observe_on_invalid<AN...>>;
};
template<class... AN>
using observe_on_invalid_t = typename observe_on_invalid<AN...>::type;
template<class T, class Coordination>
struct observe_on
{
using source_value_type = rxu::decay_t<T>;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
coordination_type coordination;
observe_on(coordination_type cn)
: coordination(std::move(cn))
{
}
template<class Subscriber>
struct observe_on_observer
{
using this_type = observe_on_observer<Subscriber>;
using value_type = source_value_type;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<value_type, this_type>;
using notification_type = rxn::notification<T>;
using base_notification_type = typename notification_type::type;
using queue_type = std::deque<base_notification_type>;
struct mode
{
enum type {
Invalid = 0,
Processing,
Empty,
Disposed,
Errored
};
};
struct observe_on_state : std::enable_shared_from_this<observe_on_state>
{
mutable std::mutex lock;
mutable queue_type fill_queue;
mutable queue_type drain_queue;
composite_subscription lifetime;
mutable typename mode::type current;
coordinator_type coordinator;
dest_type destination;
observe_on_state(dest_type d, coordinator_type coor, composite_subscription cs)
: lifetime(std::move(cs))
, current(mode::Empty)
, coordinator(std::move(coor))
, destination(std::move(d))
{
}
void finish(std::unique_lock<std::mutex>& guard, typename mode::type end) const {
if (!guard.owns_lock()) {
std::terminate();
}
if (current == mode::Errored || current == mode::Disposed) {return;}
current = end;
queue_type fill_expired;
swap(fill_expired, fill_queue);
queue_type drain_expired;
swap(drain_expired, drain_queue);
RXCPP_UNWIND_AUTO([&](){guard.lock();});
guard.unlock();
lifetime.unsubscribe();
destination.unsubscribe();
}
void ensure_processing(std::unique_lock<std::mutex>& guard) const {
if (!guard.owns_lock()) {
std::terminate();
}
if (current == mode::Empty) {
current = mode::Processing;
if (!lifetime.is_subscribed() && fill_queue.empty() && drain_queue.empty()) {
finish(guard, mode::Disposed);
}
auto keepAlive = this->shared_from_this();
auto drain = [keepAlive, this](const rxsc::schedulable& self){
using std::swap;
RXCPP_TRY {
for (;;) {
if (drain_queue.empty() || !destination.is_subscribed()) {
std::unique_lock<std::mutex> guard(lock);
if (!destination.is_subscribed() ||
(!lifetime.is_subscribed() && fill_queue.empty() && drain_queue.empty())) {
finish(guard, mode::Disposed);
return;
}
if (drain_queue.empty()) {
if (fill_queue.empty()) {
current = mode::Empty;
return;
}
swap(fill_queue, drain_queue);
}
}
auto notification = std::move(drain_queue.front());
drain_queue.pop_front();
std::move(*notification).accept(destination);
std::unique_lock<std::mutex> guard(lock);
self();
if (lifetime.is_subscribed()) break;
}
}
RXCPP_CATCH(...) {
destination.on_error(rxu::current_exception());
std::unique_lock<std::mutex> guard(lock);
finish(guard, mode::Errored);
}
};
auto selectedDrain = on_exception(
[&](){return coordinator.act(drain);},
destination);
if (selectedDrain.empty()) {
finish(guard, mode::Errored);
return;
}
auto processor = coordinator.get_worker();
RXCPP_UNWIND_AUTO([&](){guard.lock();});
guard.unlock();
processor.schedule(selectedDrain.get());
}
}
};
std::shared_ptr<observe_on_state> state;
observe_on_observer(dest_type d, coordinator_type coor, composite_subscription cs)
: state(std::make_shared<observe_on_state>(std::move(d), std::move(coor), std::move(cs)))
{
}
template<typename U>
void on_next(U&& v) const {
std::unique_lock<std::mutex> guard(state->lock);
if (state->current == mode::Errored || state->current == mode::Disposed) { return; }
state->fill_queue.push_back(notification_type::on_next(std::forward<U>(v)));
state->ensure_processing(guard);
}
void on_error(rxu::error_ptr e) const {
std::unique_lock<std::mutex> guard(state->lock);
if (state->current == mode::Errored || state->current == mode::Disposed) { return; }
state->fill_queue.push_back(notification_type::on_error(e));
state->ensure_processing(guard);
}
void on_completed() const {
std::unique_lock<std::mutex> guard(state->lock);
if (state->current == mode::Errored || state->current == mode::Disposed) { return; }
state->fill_queue.push_back(notification_type::on_completed());
state->ensure_processing(guard);
}
static subscriber<value_type, observer<value_type, this_type>> make(dest_type d, coordination_type cn, composite_subscription cs = composite_subscription()) {
auto coor = cn.create_coordinator(d.get_subscription());
d.add(cs);
this_type o(d, std::move(coor), cs);
auto keepAlive = o.state;
cs.add([=](){
std::unique_lock<std::mutex> guard(keepAlive->lock);
keepAlive->ensure_processing(guard);
});
return make_subscriber<value_type>(d, cs, make_observer<value_type>(std::move(o)));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(observe_on_observer<decltype(dest.as_dynamic())>::make(dest.as_dynamic(), coordination)) {
return observe_on_observer<decltype(dest.as_dynamic())>::make(dest.as_dynamic(), coordination);
}
};
}
/*! @copydoc rx-observe_on.hpp
*/
template<class... AN>
auto observe_on(AN&&... an)
-> operator_factory<observe_on_tag, AN...> {
return operator_factory<observe_on_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<observe_on_tag>
{
template<class Observable, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class ObserveOn = rxo::detail::observe_on<SourceValue, rxu::decay_t<Coordination>>>
static auto member(Observable&& o, Coordination&& cn)
-> decltype(o.template lift<SourceValue>(ObserveOn(std::forward<Coordination>(cn)))) {
return o.template lift<SourceValue>(ObserveOn(std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::observe_on_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "observe_on takes (Coordination)");
}
};
class observe_on_one_worker : public coordination_base
{
rxsc::scheduler factory;
class input_type
{
rxsc::worker controller;
rxsc::scheduler factory;
identity_one_worker coordination;
public:
explicit input_type(rxsc::worker w)
: controller(w)
, factory(rxsc::make_same_worker(w))
, coordination(factory)
{
}
inline rxsc::worker get_worker() const {
return controller;
}
inline rxsc::scheduler get_scheduler() const {
return factory;
}
inline rxsc::scheduler::clock_type::time_point now() const {
return factory.now();
}
template<class Observable>
auto in(Observable o) const
-> decltype(o.observe_on(coordination)) {
return o.observe_on(coordination);
}
template<class Subscriber>
auto out(Subscriber s) const
-> Subscriber {
return s;
}
template<class F>
auto act(F f) const
-> F {
return f;
}
};
public:
explicit observe_on_one_worker(rxsc::scheduler sc) : factory(sc) {}
using coordinator_type = coordinator<input_type>;
inline rxsc::scheduler::clock_type::time_point now() const {
return factory.now();
}
inline coordinator_type create_coordinator(composite_subscription cs = composite_subscription()) const {
auto w = factory.create_worker(std::move(cs));
return coordinator_type(input_type(std::move(w)));
}
};
inline observe_on_one_worker observe_on_run_loop(const rxsc::run_loop& rl) {
return observe_on_one_worker(rxsc::make_run_loop(rl));
}
inline observe_on_one_worker observe_on_event_loop() {
static observe_on_one_worker r(rxsc::make_event_loop());
return r;
}
inline observe_on_one_worker observe_on_new_thread() {
static observe_on_one_worker r(rxsc::make_new_thread());
return r;
}
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-on_error_resume_next.hpp
\brief If an error occurs, take the result from the Selector and subscribe to that instead.
\tparam Selector the actual type of a function of the form `observable<T>(rxu::error_ptr)`
\param s the function of the form `observable<T>(rxu::error_ptr)`
\return Observable that emits the items from the source observable and switches to a new observable on error.
\sample
\snippet on_error_resume_next.cpp on_error_resume_next sample
\snippet output.txt on_error_resume_next sample
*/
#if !defined(RXCPP_OPERATORS_RX_ON_ERROR_RESUME_NEXT_HPP)
#define RXCPP_OPERATORS_RX_ON_ERROR_RESUME_NEXT_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct on_error_resume_next_invalid_arguments {};
template<class... AN>
struct on_error_resume_next_invalid : public rxo::operator_base<on_error_resume_next_invalid_arguments<AN...>> {
using type = observable<on_error_resume_next_invalid_arguments<AN...>, on_error_resume_next_invalid<AN...>>;
};
template<class... AN>
using on_error_resume_next_invalid_t = typename on_error_resume_next_invalid<AN...>::type;
template<class T, class Selector>
struct on_error_resume_next
{
using value_type = rxu::decay_t<T>;
using select_type = rxu::decay_t<Selector>;
using fallback_type = decltype(std::declval<select_type>()(rxu::error_ptr()));
select_type selector;
on_error_resume_next(select_type s)
: selector(std::move(s))
{
}
template<class Subscriber>
struct on_error_resume_next_observer
{
using this_type = on_error_resume_next_observer<Subscriber>;
using value_type = rxu::decay_t<T>;
using select_type = rxu::decay_t<Selector>;
using fallback_type = decltype(std::declval<select_type>()(rxu::error_ptr()));
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<T, this_type>;
dest_type dest;
composite_subscription lifetime;
select_type selector;
on_error_resume_next_observer(dest_type d, composite_subscription cs, select_type s)
: dest(std::move(d))
, lifetime(std::move(cs))
, selector(std::move(s))
{
dest.add(lifetime);
}
template<typename U>
void on_next(U&& v) const {
dest.on_next(std::forward<U>(v));
}
void on_error(rxu::error_ptr e) const {
auto selected = on_exception(
[&](){
return this->selector(std::move(e));},
dest);
if (selected.empty()) {
return;
}
selected->subscribe(dest);
}
void on_completed() const {
dest.on_completed();
}
static subscriber<T, observer_type> make(dest_type d, select_type s) {
auto cs = composite_subscription();
return make_subscriber<T>(cs, observer_type(this_type(std::move(d), cs, std::move(s))));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(on_error_resume_next_observer<Subscriber>::make(std::move(dest), selector)) {
return on_error_resume_next_observer<Subscriber>::make(std::move(dest), selector);
}
};
}
/*! @copydoc rx-on_error_resume_next.hpp
*/
template<class... AN>
auto on_error_resume_next(AN&&... an)
-> operator_factory<on_error_resume_next_tag, AN...> {
return operator_factory<on_error_resume_next_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
/*! @copydoc rx-on_error_resume_next.hpp
*/
template<class... AN>
auto switch_on_error(AN&&... an)
-> operator_factory<on_error_resume_next_tag, AN...> {
return operator_factory<on_error_resume_next_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<on_error_resume_next_tag>
{
template<class Observable, class Selector,
class SourceValue = rxu::value_type_t<Observable>,
class OnErrorResumeNext = rxo::detail::on_error_resume_next<SourceValue, rxu::decay_t<Selector>>,
class Value = rxu::value_type_t<OnErrorResumeNext>>
static auto member(Observable&& o, Selector&& p)
-> decltype(o.template lift<Value>(OnErrorResumeNext(std::forward<Selector>(p)))) {
return o.template lift<Value>(OnErrorResumeNext(std::forward<Selector>(p)));
}
template<class... AN>
static operators::detail::on_error_resume_next_invalid_t<AN...> member(const AN&...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "on_error_resume_next takes (Selector)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-pairwise.hpp
\brief Take values pairwise from this observable.
\return Observable that emits tuples of two the most recent items emitted by the source observable.
\sample
\snippet pairwise.cpp pairwise sample
\snippet output.txt pairwise sample
If the source observable emits less than two items, no pairs are emitted by the source observable:
\snippet pairwise.cpp pairwise short sample
\snippet output.txt pairwise short sample
*/
#if !defined(RXCPP_OPERATORS_RX_PAIRWISE_HPP)
#define RXCPP_OPERATORS_RX_PAIRWISE_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct pairwise_invalid_arguments {};
template<class... AN>
struct pairwise_invalid : public rxo::operator_base<pairwise_invalid_arguments<AN...>> {
using type = observable<pairwise_invalid_arguments<AN...>, pairwise_invalid<AN...>>;
};
template<class... AN>
using pairwise_invalid_t = typename pairwise_invalid<AN...>::type;
template<class T>
struct pairwise
{
using source_value_type = rxu::decay_t<T>;
using value_type = std::tuple<source_value_type, source_value_type>;
template<class Subscriber>
struct pairwise_observer
{
using this_type = pairwise_observer<Subscriber>;
using value_type = std::tuple<source_value_type, source_value_type>;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<T, this_type>;
dest_type dest;
mutable rxu::detail::maybe<source_value_type> remembered;
pairwise_observer(dest_type d)
: dest(std::move(d))
{
}
template<typename U>
void on_next(U&& v) const {
if (remembered.empty()) {
remembered.reset(std::forward<U>(v));
return;
}
dest.on_next(std::make_tuple(std::move(remembered.get()), v));
remembered.reset(std::forward<U>(v));
}
void on_error(rxu::error_ptr e) const {
dest.on_error(e);
}
void on_completed() const {
dest.on_completed();
}
static subscriber<T, observer_type> make(dest_type d) {
auto cs = d.get_subscription();
return make_subscriber<T>(std::move(cs), observer_type(this_type(std::move(d))));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(pairwise_observer<Subscriber>::make(std::move(dest))) {
return pairwise_observer<Subscriber>::make(std::move(dest));
}
};
}
/*! @copydoc rx-pairwise.hpp
*/
template<class... AN>
auto pairwise(AN&&... an)
-> operator_factory<pairwise_tag, AN...> {
return operator_factory<pairwise_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<pairwise_tag>
{
template<class Observable,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Pairwise = rxo::detail::pairwise<SourceValue>,
class Value = rxu::value_type_t<Pairwise>>
static auto member(Observable&& o)
-> decltype(o.template lift<Value>(Pairwise())) {
return o.template lift<Value>(Pairwise());
}
template<class... AN>
static operators::detail::pairwise_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "pairwise takes no arguments");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-reduce.hpp
\brief For each item from this observable use Accumulator to combine items, when completed use ResultSelector to produce a value that will be emitted from the new observable that is returned.
\tparam Seed the type of the initial value for the accumulator
\tparam Accumulator the type of the data accumulating function
\tparam ResultSelector the type of the result producing function
\param seed the initial value for the accumulator
\param a an accumulator function to be invoked on each item emitted by the source observable, the result of which will be used in the next accumulator call
\param rs a result producing function that makes the final value from the last accumulator call result
\return An observable that emits a single item that is the result of accumulating the output from the items emitted by the source observable.
Some basic reduce-type operators have already been implemented:
- rxcpp::operators::first
- rxcpp::operators::last
- rxcpp::operators::count
- rxcpp::operators::sum
- rxcpp::operators::average
- rxcpp::operators::min
- rxcpp::operators::max
\sample
Geometric mean of source values:
\snippet reduce.cpp reduce sample
\snippet output.txt reduce sample
If the source observable completes without emitting any items, the resulting observable emits the result of passing the initial seed to the result selector:
\snippet reduce.cpp reduce empty sample
\snippet output.txt reduce empty sample
If the accumulator raises an exception, it is returned by the resulting observable in on_error:
\snippet reduce.cpp reduce exception from accumulator sample
\snippet output.txt reduce exception from accumulator sample
The same for exceptions raised by the result selector:
\snippet reduce.cpp reduce exception from result selector sample
\snippet output.txt reduce exception from result selector sample
*/
#if !defined(RXCPP_OPERATORS_RX_REDUCE_HPP)
#define RXCPP_OPERATORS_RX_REDUCE_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct reduce_invalid_arguments {};
template<class... AN>
struct reduce_invalid : public rxo::operator_base<reduce_invalid_arguments<AN...>> {
using type = observable<reduce_invalid_arguments<AN...>, reduce_invalid<AN...>>;
};
template<class... AN>
using reduce_invalid_t = typename reduce_invalid<AN...>::type;
template<class Seed, class ResultSelector>
struct is_result_function_for {
using result_selector_type = rxu::decay_t<ResultSelector>;
using seed_type = rxu::decay_t<Seed>;
struct tag_not_valid {};
template<class CS, class CRS>
static auto check(int) -> decltype(std::declval<CRS>()(std::declval<CS>()));
template<class CS, class CRS>
static tag_not_valid check(...);
using type = rxu::decay_t<decltype(check<seed_type, result_selector_type>(0))>;
static const bool value = !std::is_same_v<type, tag_not_valid>;
};
template<class T, class Observable, class Accumulator, class ResultSelector, class Seed>
struct reduce_traits
{
using source_type = rxu::decay_t<Observable>;
using accumulator_type = rxu::decay_t<Accumulator>;
using result_selector_type = rxu::decay_t<ResultSelector>;
using seed_type = rxu::decay_t<Seed>;
using source_value_type = T;
using value_type = typename is_result_function_for<seed_type, result_selector_type>::type;
};
template<class T, class Observable, class Accumulator, class ResultSelector, class Seed>
struct reduce : public operator_base<rxu::value_type_t<reduce_traits<T, Observable, Accumulator, ResultSelector, Seed>>>
{
using this_type = reduce<T, Observable, Accumulator, ResultSelector, Seed>;
using traits = reduce_traits<T, Observable, Accumulator, ResultSelector, Seed>;
using source_type = typename traits::source_type;
using accumulator_type = typename traits::accumulator_type;
using result_selector_type = typename traits::result_selector_type;
using seed_type = typename traits::seed_type;
using source_value_type = typename traits::source_value_type;
using value_type = typename traits::value_type;
struct reduce_initial_type
{
~reduce_initial_type()
{
}
reduce_initial_type(source_type o, accumulator_type a, result_selector_type rs, seed_type s)
: source(std::move(o))
, accumulator(std::move(a))
, result_selector(std::move(rs))
, seed(std::move(s))
{
}
source_type source;
accumulator_type accumulator;
result_selector_type result_selector;
seed_type seed;
private:
reduce_initial_type& operator=(reduce_initial_type o) RXCPP_DELETE;
};
reduce_initial_type initial;
~reduce()
{
}
reduce(source_type o, accumulator_type a, result_selector_type rs, seed_type s)
: initial(std::move(o), std::move(a), std::move(rs), std::move(s))
{
}
template<class Subscriber>
void on_subscribe(Subscriber o) const {
struct reduce_state_type
: public reduce_initial_type
, public std::enable_shared_from_this<reduce_state_type>
{
reduce_state_type(reduce_initial_type i, Subscriber scrbr)
: reduce_initial_type(i)
, source(i.source)
, current(reduce_initial_type::seed)
, out(std::move(scrbr))
{
}
source_type source;
seed_type current;
Subscriber out;
private:
reduce_state_type& operator=(reduce_state_type o) RXCPP_DELETE;
};
auto state = std::make_shared<reduce_state_type>(initial, std::move(o));
state->source.subscribe(
state->out,
// on_next
[state](auto&& t) {
state->current = state->accumulator(std::move(state->current), std::forward<decltype(t)>(t));
},
// on_error
[state](rxu::error_ptr e) {
state->out.on_error(e);
},
// on_completed
[state]() {
auto result = on_exception(
[&](){return state->result_selector(std::move(state->current));},
state->out);
if (result.empty()) {
return;
}
state->out.on_next(std::move(result.get()));
state->out.on_completed();
}
);
}
private:
reduce& operator=(reduce o) RXCPP_DELETE;
};
template<class T>
struct initialize_seeder {
using seed_type = T;
static seed_type seed() {
return seed_type{};
}
};
template<class T>
struct average {
struct seed_type
{
seed_type()
: value()
, count(0)
{
}
rxu::maybe<T> value;
int count;
rxu::detail::maybe<double> stage;
};
static seed_type seed() {
return seed_type{};
}
template<class U>
seed_type operator()(seed_type a, U&& v) {
if (a.count != 0 &&
(a.count == std::numeric_limits<int>::max() ||
((v > 0) && (*(a.value) > (std::numeric_limits<T>::max() - v))) ||
((v < 0) && (*(a.value) < (std::numeric_limits<T>::min() - v))))) {
// would overflow, calc existing and reset for next batch
// this will add error to the final result, but the alternative
// is to fail on overflow
double avg = static_cast<double>(*(a.value)) / a.count;
if (!a.stage.empty()) {
a.stage.reset((*a.stage + avg) / 2);
} else {
a.stage.reset(avg);
}
a.value.reset(std::forward<U>(v));
a.count = 1;
} else if (a.value.empty()) {
a.value.reset(std::forward<U>(v));
a.count = 1;
} else {
*(a.value) += v;
++a.count;
}
return a;
}
double operator()(seed_type a) {
if (!a.value.empty()) {
double avg = static_cast<double>(*(a.value)) / a.count;
if (!a.stage.empty()) {
avg = (*a.stage + avg) / 2;
}
return avg;
}
rxu::throw_exception(rxcpp::empty_error("average() requires a stream with at least one value"));
}
};
template<class T>
struct sum {
using seed_type = rxu::maybe<T>;
static seed_type seed() {
return seed_type();
}
template<class U>
seed_type operator()(seed_type a, U&& v) const {
if (a.empty())
a.reset(std::forward<U>(v));
else
*a = *a + v;
return a;
}
T operator()(seed_type a) const {
if (a.empty())
rxu::throw_exception(rxcpp::empty_error("sum() requires a stream with at least one value"));
return *a;
}
};
template<class T>
struct max {
using seed_type = rxu::maybe<T>;
static seed_type seed() {
return seed_type();
}
template<class U>
seed_type operator()(seed_type a, U&& v) {
if (a.empty() || *a < v)
a.reset(std::forward<U>(v));
return a;
}
T operator()(seed_type a) {
if (a.empty())
rxu::throw_exception(rxcpp::empty_error("max() requires a stream with at least one value"));
return *a;
}
};
template<class T>
struct min {
using seed_type = rxu::maybe<T>;
static seed_type seed() {
return seed_type();
}
template<class U>
seed_type operator()(seed_type a, U&& v) {
if (a.empty() || v < *a)
a.reset(std::forward<U>(v));
return a;
}
T operator()(seed_type a) {
if (a.empty())
rxu::throw_exception(rxcpp::empty_error("min() requires a stream with at least one value"));
return *a;
}
};
template<class T>
struct first {
using seed_type = rxu::maybe<T>;
static seed_type seed() {
return seed_type();
}
template<class U>
seed_type operator()(seed_type a, U&& v) {
a.reset(std::forward<U>(v));
return a;
}
T operator()(seed_type a) {
if (a.empty()) {
rxu::throw_exception(rxcpp::empty_error("first() requires a stream with at least one value"));
}
return *a;
}
};
template<class T>
struct last {
using seed_type = rxu::maybe<T>;
static seed_type seed() {
return seed_type();
}
template<class U>
seed_type operator()(seed_type a, U&& v) {
a.reset(std::forward<U>(v));
return a;
}
T operator()(seed_type a) {
if (a.empty()) {
rxu::throw_exception(rxcpp::empty_error("last() requires a stream with at least one value"));
}
return *a;
}
};
}
/*! @copydoc rx-reduce.hpp
*/
template<class... AN>
auto reduce(AN&&... an)
-> operator_factory<reduce_tag, AN...> {
return operator_factory<reduce_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
/*! @copydoc rx-reduce.hpp
*/
template<class... AN>
auto accumulate(AN&&... an)
-> operator_factory<reduce_tag, AN...> {
return operator_factory<reduce_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
/*! \brief For each item from this observable reduce it by sending only the first item.
\return An observable that emits only the very first item emitted by the source observable.
\sample
\snippet math.cpp first sample
\snippet output.txt first sample
When the source observable calls on_error:
\snippet math.cpp first empty sample
\snippet output.txt first empty sample
*/
inline auto first()
-> operator_factory<first_tag> {
return operator_factory<first_tag>(std::tuple<>{});
}
/*! \brief For each item from this observable reduce it by sending only the last item.
\return An observable that emits only the very last item emitted by the source observable.
\sample
\snippet math.cpp last sample
\snippet output.txt last sample
When the source observable calls on_error:
\snippet math.cpp last empty sample
\snippet output.txt last empty sample
*/
inline auto last()
-> operator_factory<last_tag> {
return operator_factory<last_tag>(std::tuple<>{});
}
/*! \brief For each item from this observable reduce it by incrementing a count.
\return An observable that emits a single item: the number of elements emitted by the source observable.
\sample
\snippet math.cpp count sample
\snippet output.txt count sample
When the source observable calls on_error:
\snippet math.cpp count error sample
\snippet output.txt count error sample
*/
inline auto count()
-> operator_factory<reduce_tag, int, rxu::count, rxu::detail::take_at<0>> {
return operator_factory<reduce_tag, int, rxu::count, rxu::detail::take_at<0>>(std::make_tuple(0, rxu::count(), rxu::take_at<0>()));
}
/*! \brief For each item from this observable reduce it by adding to the previous values and then dividing by the number of items at the end.
\return An observable that emits a single item: the average of elements emitted by the source observable.
\sample
\snippet math.cpp average sample
\snippet output.txt average sample
When the source observable completes without emitting any items:
\snippet math.cpp average empty sample
\snippet output.txt average empty sample
When the source observable calls on_error:
\snippet math.cpp average error sample
\snippet output.txt average error sample
*/
inline auto average()
-> operator_factory<average_tag> {
return operator_factory<average_tag>(std::tuple<>{});
}
/*! \brief For each item from this observable reduce it by adding to the previous items.
\return An observable that emits a single item: the sum of elements emitted by the source observable.
\sample
\snippet math.cpp sum sample
\snippet output.txt sum sample
When the source observable completes without emitting any items:
\snippet math.cpp sum empty sample
\snippet output.txt sum empty sample
When the source observable calls on_error:
\snippet math.cpp sum error sample
\snippet output.txt sum error sample
*/
inline auto sum()
-> operator_factory<sum_tag> {
return operator_factory<sum_tag>(std::tuple<>{});
}
/*! \brief For each item from this observable reduce it by taking the min value of the previous items.
\return An observable that emits a single item: the min of elements emitted by the source observable.
\sample
\snippet math.cpp min sample
\snippet output.txt min sample
When the source observable completes without emitting any items:
\snippet math.cpp min empty sample
\snippet output.txt min empty sample
When the source observable calls on_error:
\snippet math.cpp min error sample
\snippet output.txt min error sample
*/
inline auto min()
-> operator_factory<min_tag> {
return operator_factory<min_tag>(std::tuple<>{});
}
/*! \brief For each item from this observable reduce it by taking the max value of the previous items.
\return An observable that emits a single item: the max of elements emitted by the source observable.
\sample
\snippet math.cpp max sample
\snippet output.txt max sample
When the source observable completes without emitting any items:
\snippet math.cpp max empty sample
\snippet output.txt max empty sample
When the source observable calls on_error:
\snippet math.cpp max error sample
\snippet output.txt max error sample
*/
inline auto max()
-> operator_factory<max_tag> {
return operator_factory<max_tag>(std::tuple<>{});
}
}
template<>
struct member_overload<reduce_tag>
{
template<class Observable, class Seed, class Accumulator, class ResultSelector,
class Reduce = rxo::detail::reduce<rxu::value_type_t<Observable>, rxu::decay_t<Observable>, rxu::decay_t<Accumulator>, rxu::decay_t<ResultSelector>, rxu::decay_t<Seed>>,
class Value = rxu::value_type_t<Reduce>,
class Result = observable<Value, Reduce>>
static Result member(Observable&& o, Seed&& s, Accumulator&& a, ResultSelector&& r)
{
return Result(Reduce(std::forward<Observable>(o), std::forward<Accumulator>(a), std::forward<ResultSelector>(r), std::forward<Seed>(s)));
}
template<class Observable, class Seed, class Accumulator,
class ResultSelector=rxu::detail::take_at<0>,
class Reduce = rxo::detail::reduce<rxu::value_type_t<Observable>, rxu::decay_t<Observable>, rxu::decay_t<Accumulator>, rxu::decay_t<ResultSelector>, rxu::decay_t<Seed>>,
class Value = rxu::value_type_t<Reduce>,
class Result = observable<Value, Reduce>>
static Result member(Observable&& o, Seed&& s, Accumulator&& a)
{
return Result(Reduce(std::forward<Observable>(o), std::forward<Accumulator>(a), rxu::detail::take_at<0>(), std::forward<Seed>(s)));
}
template<class... AN>
static operators::detail::reduce_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "reduce takes (Seed, Accumulator, optional ResultSelector), Accumulator takes (Seed, Observable::value_type) -> Seed, ResultSelector takes (Observable::value_type) -> ResultValue");
}
};
template<>
struct member_overload<first_tag>
{
template<class Observable,
class SValue = rxu::value_type_t<Observable>,
class Operation = operators::detail::first<SValue>,
class Seed = decltype(Operation::seed()),
class Accumulator = Operation,
class ResultSelector = Operation,
class TakeOne = decltype(std::declval<rxu::decay_t<Observable>>().take(1)),
class Reduce = rxo::detail::reduce<SValue, rxu::decay_t<TakeOne>, rxu::decay_t<Accumulator>, rxu::decay_t<ResultSelector>, rxu::decay_t<Seed>>,
class RValue = rxu::value_type_t<Reduce>,
class Result = observable<RValue, Reduce>>
static Result member(Observable&& o)
{
return Result(Reduce(o.take(1), Operation{}, Operation{}, Operation::seed()));
}
template<class... AN>
static operators::detail::reduce_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "first does not support Observable::value_type");
}
};
template<>
struct member_overload<last_tag>
{
template<class Observable,
class SValue = rxu::value_type_t<Observable>,
class Operation = operators::detail::last<SValue>,
class Seed = decltype(Operation::seed()),
class Accumulator = Operation,
class ResultSelector = Operation,
class Reduce = rxo::detail::reduce<SValue, rxu::decay_t<Observable>, rxu::decay_t<Accumulator>, rxu::decay_t<ResultSelector>, rxu::decay_t<Seed>>,
class RValue = rxu::value_type_t<Reduce>,
class Result = observable<RValue, Reduce>>
static Result member(Observable&& o)
{
return Result(Reduce(std::forward<Observable>(o), Operation{}, Operation{}, Operation::seed()));
}
template<class... AN>
static operators::detail::reduce_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "last does not support Observable::value_type");
}
};
template<>
struct member_overload<sum_tag>
{
template<class Observable,
class SValue = rxu::value_type_t<Observable>,
class Operation = operators::detail::sum<SValue>,
class Seed = decltype(Operation::seed()),
class Accumulator = Operation,
class ResultSelector = Operation,
class Reduce = rxo::detail::reduce<SValue, rxu::decay_t<Observable>, rxu::decay_t<Accumulator>, rxu::decay_t<ResultSelector>, rxu::decay_t<Seed>>,
class RValue = rxu::value_type_t<Reduce>,
class Result = observable<RValue, Reduce>>
static Result member(Observable&& o)
{
return Result(Reduce(std::forward<Observable>(o), Operation{}, Operation{}, Operation::seed()));
}
template<class... AN>
static operators::detail::reduce_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "sum does not support Observable::value_type");
}
};
template<>
struct member_overload<average_tag>
{
template<class Observable,
class SValue = rxu::value_type_t<Observable>,
class Operation = operators::detail::average<SValue>,
class Seed = decltype(Operation::seed()),
class Accumulator = Operation,
class ResultSelector = Operation,
class Reduce = rxo::detail::reduce<SValue, rxu::decay_t<Observable>, rxu::decay_t<Accumulator>, rxu::decay_t<ResultSelector>, rxu::decay_t<Seed>>,
class RValue = rxu::value_type_t<Reduce>,
class Result = observable<RValue, Reduce>>
static Result member(Observable&& o)
{
return Result(Reduce(std::forward<Observable>(o), Operation{}, Operation{}, Operation::seed()));
}
template<class... AN>
static operators::detail::reduce_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "average does not support Observable::value_type");
}
};
template<>
struct member_overload<max_tag>
{
template<class Observable,
class SValue = rxu::value_type_t<Observable>,
class Operation = operators::detail::max<SValue>,
class Seed = decltype(Operation::seed()),
class Accumulator = Operation,
class ResultSelector = Operation,
class Reduce = rxo::detail::reduce<SValue, rxu::decay_t<Observable>, rxu::decay_t<Accumulator>, rxu::decay_t<ResultSelector>, rxu::decay_t<Seed>>,
class RValue = rxu::value_type_t<Reduce>,
class Result = observable<RValue, Reduce>>
static Result member(Observable&& o)
{
return Result(Reduce(std::forward<Observable>(o), Operation{}, Operation{}, Operation::seed()));
}
template<class... AN>
static operators::detail::reduce_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "max does not support Observable::value_type");
}
};
template<>
struct member_overload<min_tag>
{
template<class Observable,
class SValue = rxu::value_type_t<Observable>,
class Operation = operators::detail::min<SValue>,
class Seed = decltype(Operation::seed()),
class Accumulator = Operation,
class ResultSelector = Operation,
class Reduce = rxo::detail::reduce<SValue, rxu::decay_t<Observable>, rxu::decay_t<Accumulator>, rxu::decay_t<ResultSelector>, rxu::decay_t<Seed>>,
class RValue = rxu::value_type_t<Reduce>,
class Result = observable<RValue, Reduce>>
static Result member(Observable&& o)
{
return Result(Reduce(std::forward<Observable>(o), Operation{}, Operation{}, Operation::seed()));
}
template<class... AN>
static operators::detail::reduce_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "min does not support Observable::value_type");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-repeat.hpp
\brief Repeat this observable for the given number of times or infinitely.
\tparam Count the type of the counter (optional).
\param t The number of times the source observable items are repeated (optional). If not specified, infinitely repeats the source observable. Specifying 0 returns an empty sequence immediately
\return An observable that repeats the sequence of items emitted by the source observable for t times.
\sample
\snippet repeat.cpp repeat count sample
\snippet output.txt repeat count sample
If the source observable calls on_error, repeat stops:
\snippet repeat.cpp repeat error sample
\snippet output.txt repeat error sample
*/
#if !defined(RXCPP_OPERATORS_RX_REPEAT_HPP)
#define RXCPP_OPERATORS_RX_REPEAT_HPP
/*! \file rx-retry-repeat-common.hpp
\brief Implementation commonalities between retry and repeat operators abstracted away from rx-retry.hpp and rx-repeat.hpp files. Should be used only from rx-retry.hpp and rx-repeat.hpp
*/
namespace rxcpp {
namespace operators {
namespace detail {
namespace retry_repeat_common {
// Structure to perform general retry/repeat operations on state
template <class Values, class Subscriber, class EventHandlers, class T>
struct state_type : public std::enable_shared_from_this<state_type<Values, Subscriber, EventHandlers, T>>,
public Values {
using output_type = Subscriber;
state_type(const Values& i, const output_type& oarg)
: Values(i),
source_lifetime(composite_subscription::empty()),
out(oarg) {
}
void do_subscribe() {
auto state = this->shared_from_this();
state->out.remove(state->lifetime_token);
state->source_lifetime.unsubscribe();
state->source_lifetime = composite_subscription();
state->lifetime_token = state->out.add(state->source_lifetime);
state->source.subscribe(
state->out,
state->source_lifetime,
// on_next
[state](auto&& t) {
state->out.on_next(std::forward<decltype(t)>(t));
},
// on_error
[state](rxu::error_ptr e) {
EventHandlers::on_error(state, e);
},
// on_completed
[state]() {
EventHandlers::on_completed(state);
}
);
}
composite_subscription source_lifetime;
output_type out;
composite_subscription::weak_subscription lifetime_token;
};
// Finite case (explicitely limited with the number of times)
template <class EventHandlers, class T, class Observable, class Count>
struct finite : public operator_base<T> {
using source_type = rxu::decay_t<Observable>;
using count_type = rxu::decay_t<Count>;
struct values {
values(source_type s, count_type t)
: source(std::move(s)),
remaining_(std::move(t)) {
}
inline bool completed_predicate() const {
// Return true if we are completed
return remaining_ <= 0;
}
inline void update() {
// Decrement counter
--remaining_;
}
source_type source;
private:
// Counter to hold number of times remaining to complete
count_type remaining_;
};
finite(source_type s, count_type t)
: initial_(std::move(s), std::move(t)) {
}
template<class Subscriber>
void on_subscribe(const Subscriber& s) const {
using state_t = state_type<values, Subscriber, EventHandlers, T>;
// take a copy of the values for each subscription
auto state = std::make_shared<state_t>(initial_, s);
if (initial_.completed_predicate()) {
// return completed
state->out.on_completed();
} else {
// start the first iteration
state->do_subscribe();
}
}
private:
values initial_;
};
// Infinite case
template <class EventHandlers, class T, class Observable>
struct infinite : public operator_base<T> {
using source_type = rxu::decay_t<Observable>;
struct values {
values(source_type s)
: source(std::move(s)) {
}
static inline bool completed_predicate() {
// Infinite never completes
return false;
}
static inline void update() {
// Infinite does not need to update state
}
source_type source;
};
infinite(source_type s) : initial_(std::move(s)) {
}
template<class Subscriber>
void on_subscribe(const Subscriber& s) const {
using state_t = state_type<values, Subscriber, EventHandlers, T>;
// take a copy of the values for each subscription
auto state = std::make_shared<state_t>(initial_, s);
// start the first iteration
state->do_subscribe();
}
private:
values initial_;
};
}
}
}
}
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct repeat_invalid_arguments {};
template<class... AN>
struct repeat_invalid : public rxo::operator_base<repeat_invalid_arguments<AN...>> {
using type = observable<repeat_invalid_arguments<AN...>, repeat_invalid<AN...>>;
};
template<class... AN>
using repeat_invalid_t = typename repeat_invalid<AN...>::type;
// Contain repeat variations in a namespace
namespace repeat {
struct event_handlers {
template <typename State>
static inline void on_error(State& state, rxu::error_ptr& e) {
state->out.on_error(e);
}
template <typename State>
static inline void on_completed(State& state) {
// Functions update() and completed_predicate() vary between finite and infinte versions
state->update();
if (state->completed_predicate()) {
state->out.on_completed();
} else {
state->do_subscribe();
}
}
};
// Finite repeat case (explicitely limited with the number of times)
template <class T, class Observable, class Count>
using finite = ::rxcpp::operators::detail::retry_repeat_common::finite
<event_handlers, T, Observable, Count>;
// Infinite repeat case
template <class T, class Observable>
using infinite = ::rxcpp::operators::detail::retry_repeat_common::infinite
<event_handlers, T, Observable>;
}
} // detail
/*! @copydoc rx-repeat.hpp
*/
template<class... AN>
auto repeat(AN&&... an)
-> operator_factory<repeat_tag, AN...> {
return operator_factory<repeat_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<repeat_tag> {
template<class Observable,
class Enabled = rxu::enable_if_all_true_type_t<is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Repeat = rxo::detail::repeat::infinite<SourceValue, rxu::decay_t<Observable>>,
class Value = rxu::value_type_t<Repeat>,
class Result = observable<Value, Repeat>>
static Result member(Observable&& o) {
return Result(Repeat(std::forward<Observable>(o)));
}
template<class Observable,
class Count,
class Enabled = rxu::enable_if_all_true_type_t<is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Repeat = rxo::detail::repeat::finite<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<Count>>,
class Value = rxu::value_type_t<Repeat>,
class Result = observable<Value, Repeat>>
static Result member(Observable&& o, Count&& c) {
return Result(Repeat(std::forward<Observable>(o), std::forward<Count>(c)));
}
template<class... AN>
static operators::detail::repeat_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "repeat takes (optional Count)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-replay.hpp
\brief 1) replay(optional Coordination, optional CompositeSubscription)
Turn a cold observable hot, send all earlier emitted values to any new subscriber, and allow connections to the source to be independent of subscriptions.
2) replay(Count, optional Coordination, optional CompositeSubscription)
Turn a cold observable hot, send at most count of earlier emitted values to any new subscriber, and allow connections to the source to be independent of subscriptions.
3) replay(Duration, optional Coordination, optional CompositeSubscription)
Turn a cold observable hot, send values emitted within a specified time window to any new subscriber, and allow connections to the source to be independent of subscriptions.
4) replay(Count, Duration, optional Coordination, optional CompositeSubscription)
Turn a cold observable hot, send at most count of values emitted within a specified time window to any new subscriber, and allow connections to the source to be independent of subscriptions.
\tparam Duration the type of the time interval (optional).
\tparam Count the type of the maximum number of the most recent items sent to new observers (optional).
\tparam Coordination the type of the scheduler (optional).
\param count the maximum number of the most recent items sent to new observers (optional).
\param d the duration of the window in which the replayed items must be emitted
\param cn a scheduler all values are queued and delivered on (optional).
\param cs the subscription to control lifetime (optional).
\return rxcpp::connectable_observable that shares a single subscription to the underlying observable that will replay all of its items and notifications to any future observer.
\sample
\snippet replay.cpp replay sample
\snippet output.txt replay sample
\sample
\snippet replay.cpp threaded replay sample
\snippet output.txt threaded replay sample
\sample
\snippet replay.cpp replay count sample
\snippet output.txt replay count sample
\sample
\snippet replay.cpp threaded replay count sample
\snippet output.txt threaded replay count sample
\sample
\snippet replay.cpp replay period sample
\snippet output.txt replay period sample
\sample
\snippet replay.cpp threaded replay period sample
\snippet output.txt threaded replay period sample
\sample
\snippet replay.cpp replay count+period sample
\snippet output.txt replay count+period sample
\sample
\snippet replay.cpp threaded replay count+period sample
\snippet output.txt threaded replay count+period sample
*/
#if !defined(RXCPP_OPERATORS_RX_REPLAY_HPP)
#define RXCPP_OPERATORS_RX_REPLAY_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct replay_invalid_arguments {};
template<class... AN>
struct replay_invalid : public rxo::operator_base<replay_invalid_arguments<AN...>> {
using type = observable<replay_invalid_arguments<AN...>, replay_invalid<AN...>>;
};
template<class... AN>
using replay_invalid_t = typename replay_invalid<AN...>::type;
}
/*! @copydoc rx-replay.hpp
*/
template<class... AN>
auto replay(AN&&... an)
-> operator_factory<replay_tag, AN...> {
return operator_factory<replay_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<replay_tag>
{
template<class Observable,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Subject = rxsub::replay<SourceValue, identity_one_worker>,
class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>,
class Result = connectable_observable<SourceValue, Multicast>
>
static Result member(Observable&& o) {
return Result(Multicast(std::forward<Observable>(o), Subject(identity_current_thread(), composite_subscription())));
}
template<class Observable,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Subject = rxsub::replay<SourceValue, identity_one_worker>,
class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>,
class Result = connectable_observable<SourceValue, Multicast>
>
static Result member(Observable&& o, composite_subscription cs) {
return Result(Multicast(std::forward<Observable>(o), Subject(identity_current_thread(), cs)));
}
template<class Observable, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class Subject = rxsub::replay<SourceValue, rxu::decay_t<Coordination>>,
class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>,
class Result = connectable_observable<SourceValue, Multicast>
>
static Result member(Observable&& o, Coordination&& cn, composite_subscription cs = composite_subscription()) {
return Result(Multicast(std::forward<Observable>(o), Subject(std::forward<Coordination>(cn), cs)));
}
template<class Observable, class Count,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
std::is_integral<Count>>,
class SourceValue = rxu::value_type_t<Observable>,
class Subject = rxsub::replay<SourceValue, identity_one_worker>,
class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>,
class Result = connectable_observable<SourceValue, Multicast>
>
static Result member(Observable&& o, Count count, composite_subscription cs = composite_subscription()) {
return Result(Multicast(std::forward<Observable>(o), Subject(count, identity_current_thread(), cs)));
}
template<class Observable, class Count, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
std::is_integral<Count>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class Subject = rxsub::replay<SourceValue, rxu::decay_t<Coordination>>,
class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>,
class Result = connectable_observable<SourceValue, Multicast>
>
static Result member(Observable&& o, Count count, Coordination&& cn, composite_subscription cs = composite_subscription()) {
return Result(Multicast(std::forward<Observable>(o), Subject(count, std::forward<Coordination>(cn), cs)));
}
template<class Observable, class Duration,
class IsDuration = rxu::is_duration<Duration>,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
IsDuration>,
class SourceValue = rxu::value_type_t<Observable>,
class Subject = rxsub::replay<SourceValue, identity_one_worker>,
class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>,
class Result = connectable_observable<SourceValue, Multicast>
>
static Result member(Observable&& o, Duration&& d, composite_subscription cs = composite_subscription()) {
return Result(Multicast(std::forward<Observable>(o), Subject(std::forward<Duration>(d), identity_current_thread(), cs)));
}
template<class Observable, class Duration, class Coordination,
class IsDuration = rxu::is_duration<Duration>,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
IsDuration,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class Subject = rxsub::replay<SourceValue, rxu::decay_t<Coordination>>,
class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>,
class Result = connectable_observable<SourceValue, Multicast>
>
static Result member(Observable&& o, Duration&& d, Coordination&& cn, composite_subscription cs = composite_subscription()) {
return Result(Multicast(std::forward<Observable>(o), Subject(std::forward<Duration>(d), std::forward<Coordination>(cn), cs)));
}
template<class Observable, class Count, class Duration,
class IsDuration = rxu::is_duration<Duration>,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
std::is_integral<Count>,
IsDuration>,
class SourceValue = rxu::value_type_t<Observable>,
class Subject = rxsub::replay<SourceValue, identity_one_worker>,
class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>,
class Result = connectable_observable<SourceValue, Multicast>
>
static Result member(Observable&& o, Count count, Duration&& d, composite_subscription cs = composite_subscription()) {
return Result(Multicast(std::forward<Observable>(o), Subject(count, std::forward<Duration>(d), identity_current_thread(), cs)));
}
template<class Observable, class Count, class Duration, class Coordination,
class IsDuration = rxu::is_duration<Duration>,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
std::is_integral<Count>,
IsDuration,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class Subject = rxsub::replay<SourceValue, rxu::decay_t<Coordination>>,
class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>,
class Result = connectable_observable<SourceValue, Multicast>
>
static Result member(Observable&& o, Count count, Duration&& d, Coordination&& cn, composite_subscription cs = composite_subscription()) {
return Result(Multicast(std::forward<Observable>(o), Subject(count, std::forward<Duration>(d), std::forward<Coordination>(cn), cs)));
}
template<class... AN>
static operators::detail::replay_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "replay takes (optional Count, optional Duration, optional Coordination, optional CompositeSubscription)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-retry.hpp
\brief Retry this observable for the given number of times.
\tparam Count the type of the counter (optional)
\param t the total number of tries (optional), i.e. retry(2) means one normal try, before an error occurs, and one retry. If not specified, infinitely retries the source observable. Specifying 0 returns immediately without subscribing
\return An observable that mirrors the source observable, resubscribing to it if it calls on_error up to a specified number of retries.
\sample
\snippet retry.cpp retry count sample
\snippet output.txt retry count sample
*/
#if !defined(RXCPP_OPERATORS_RX_RETRY_HPP)
#define RXCPP_OPERATORS_RX_RETRY_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct retry_invalid_arguments {};
template<class... AN>
struct retry_invalid : public rxo::operator_base<retry_invalid_arguments<AN...>> {
using type = observable<retry_invalid_arguments<AN...>, retry_invalid<AN...>>;
};
template<class... AN>
using retry_invalid_t = typename retry_invalid<AN...>::type;
// Contain retry variations in a namespace
namespace retry {
struct event_handlers {
template <typename State>
static inline void on_error(State& state, rxu::error_ptr& e) {
state->update();
// Use specialized predicate for finite/infinte case
if (state->completed_predicate()) {
state->out.on_error(e);
} else {
state->do_subscribe();
}
}
template <typename State>
static inline void on_completed(State& state) {
state->out.on_completed();
}
};
// Finite repeat case (explicitely limited with the number of times)
template <class T, class Observable, class Count>
using finite = ::rxcpp::operators::detail::retry_repeat_common::finite
<event_handlers, T, Observable, Count>;
// Infinite repeat case
template <class T, class Observable>
using infinite = ::rxcpp::operators::detail::retry_repeat_common::infinite
<event_handlers, T, Observable>;
}
} // detail
/*! @copydoc rx-retry.hpp
*/
template<class... AN>
auto retry(AN&&... an)
-> operator_factory<retry_tag, AN...> {
return operator_factory<retry_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<retry_tag>
{
template<class Observable,
class Enabled = rxu::enable_if_all_true_type_t<is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Retry = rxo::detail::retry::infinite<SourceValue, rxu::decay_t<Observable>>,
class Value = rxu::value_type_t<Retry>,
class Result = observable<Value, Retry>
>
static Result member(Observable&& o) {
return Result(Retry(std::forward<Observable>(o)));
}
template<class Observable,
class Count,
class Enabled = rxu::enable_if_all_true_type_t<is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Retry = rxo::detail::retry::finite<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<Count>>,
class Value = rxu::value_type_t<Retry>,
class Result = observable<Value, Retry>
>
static Result member(Observable&& o, Count&& c) {
return Result(Retry(std::forward<Observable>(o), std::forward<Count>(c)));
}
template<class... AN>
static operators::detail::retry_invalid_t<AN...> member(const AN&...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "retry takes (optional Count)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-sample_time.hpp
\brief Return an Observable that emits the most recent items emitted by the source Observable within periodic time intervals.
\tparam Duration the type of time interval.
\tparam Coordination the type of the scheduler (optional).
\param period the period of time to sample the source observable.
\param coordination the scheduler for the items (optional).
\return Observable that emits the most recently emitted item since the previous sampling.
\sample
\snippet sample.cpp sample period sample
\snippet output.txt sample period sample
*/
#if !defined(RXCPP_OPERATORS_RX_SAMPLE_WITH_TIME_HPP)
#define RXCPP_OPERATORS_RX_SAMPLE_WITH_TIME_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct sample_with_time_invalid_arguments {};
template<class... AN>
struct sample_with_time_invalid : public rxo::operator_base<sample_with_time_invalid_arguments<AN...>> {
using type = observable<sample_with_time_invalid_arguments<AN...>, sample_with_time_invalid<AN...>>;
};
template<class... AN>
using sample_with_time_invalid_t = typename sample_with_time_invalid<AN...>::type;
template<class T, class Duration, class Coordination>
struct sample_with_time
{
using source_value_type = rxu::decay_t<T>;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
using duration_type = rxu::decay_t<Duration>;
struct sample_with_time_value
{
sample_with_time_value(duration_type p, coordination_type c)
: period(p)
, coordination(c)
{
}
duration_type period;
coordination_type coordination;
};
sample_with_time_value initial;
sample_with_time(duration_type period, coordination_type coordination)
: initial(period, coordination)
{
}
template<class Subscriber>
struct sample_with_time_observer
{
using this_type = sample_with_time_observer<Subscriber>;
using value_type = T;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<value_type, this_type>;
struct sample_with_time_subscriber_value : public sample_with_time_value
{
sample_with_time_subscriber_value(composite_subscription cs, dest_type d, sample_with_time_value v, coordinator_type c)
: sample_with_time_value(v)
, cs(std::move(cs))
, dest(std::move(d))
, coordinator(std::move(c))
, worker(coordinator.get_worker())
{
}
composite_subscription cs;
dest_type dest;
coordinator_type coordinator;
rxsc::worker worker;
mutable rxu::maybe<value_type> value;
};
std::shared_ptr<sample_with_time_subscriber_value> state;
sample_with_time_observer(composite_subscription cs, dest_type d, sample_with_time_value v, coordinator_type c)
: state(std::make_shared<sample_with_time_subscriber_value>(sample_with_time_subscriber_value(std::move(cs), std::move(d), v, std::move(c))))
{
auto localState = state;
auto disposer = [=](const rxsc::schedulable&){
localState->cs.unsubscribe();
localState->dest.unsubscribe();
localState->worker.unsubscribe();
};
auto selectedDisposer = on_exception(
[&](){ return localState->coordinator.act(disposer); },
localState->dest);
if (selectedDisposer.empty()) {
return;
}
localState->dest.add([=](){
localState->worker.schedule(selectedDisposer.get());
});
localState->cs.add([=](){
localState->worker.schedule(selectedDisposer.get());
});
auto produce_sample = [localState](const rxsc::schedulable&) {
if(!localState->value.empty()) {
localState->dest.on_next(std::move(* localState->value));
localState->value.reset();
}
};
auto selectedProduce = on_exception(
[&](){ return localState->coordinator.act(produce_sample); },
localState->dest);
if (selectedProduce.empty()) {
return;
}
state->worker.schedule_periodically(
localState->worker.now(),
localState->period,
[localState, selectedProduce](const rxsc::schedulable&) {
localState->worker.schedule(selectedProduce.get());
});
}
template<typename U>
void on_next(U&& v) const {
auto localState = state;
auto work = [v, localState](const rxsc::schedulable&) {
localState->value.reset(v);
};
auto selectedWork = on_exception(
[&](){ return localState->coordinator.act(work); },
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
void on_error(rxu::error_ptr e) const {
auto localState = state;
auto work = [e, localState](const rxsc::schedulable&) {
localState->dest.on_error(e);
};
auto selectedWork = on_exception(
[&](){ return localState->coordinator.act(work); },
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
void on_completed() const {
auto localState = state;
auto work = [localState](const rxsc::schedulable&) {
localState->dest.on_completed();
};
auto selectedWork = on_exception(
[&](){ return localState->coordinator.act(work); },
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
static subscriber<T, observer<T, this_type>> make(dest_type d, sample_with_time_value v) {
auto cs = composite_subscription();
auto coordinator = v.coordination.create_coordinator();
return make_subscriber<T>(cs, this_type(cs, std::move(d), std::move(v), std::move(coordinator)));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(sample_with_time_observer<Subscriber>::make(std::move(dest), initial)) {
return sample_with_time_observer<Subscriber>::make(std::move(dest), initial);
}
};
}
/*! @copydoc rx-sample_time.hpp
*/
template<class... AN>
auto sample_with_time(AN&&... an)
-> operator_factory<sample_with_time_tag, AN...> {
return operator_factory<sample_with_time_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<sample_with_time_tag>
{
template<class Observable, class Duration,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
rxu::is_duration<Duration>>,
class SourceValue = rxu::value_type_t<Observable>,
class SampleWithTime = rxo::detail::sample_with_time<SourceValue, rxu::decay_t<Duration>, identity_one_worker>>
static auto member(Observable&& o, Duration&& d)
-> decltype(o.template lift<SourceValue>(SampleWithTime(std::forward<Duration>(d), identity_current_thread()))) {
return o.template lift<SourceValue>(SampleWithTime(std::forward<Duration>(d), identity_current_thread()));
}
template<class Observable, class Coordination, class Duration,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_coordination<Coordination>,
rxu::is_duration<Duration>>,
class SourceValue = rxu::value_type_t<Observable>,
class SampleWithTime = rxo::detail::sample_with_time<SourceValue, rxu::decay_t<Duration>, rxu::decay_t<Coordination>>>
static auto member(Observable&& o, Coordination&& cn, Duration&& d)
-> decltype(o.template lift<SourceValue>(SampleWithTime(std::forward<Duration>(d), std::forward<Coordination>(cn)))) {
return o.template lift<SourceValue>(SampleWithTime(std::forward<Duration>(d), std::forward<Coordination>(cn)));
}
template<class Observable, class Coordination, class Duration,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_coordination<Coordination>,
rxu::is_duration<Duration>>,
class SourceValue = rxu::value_type_t<Observable>,
class SampleWithTime = rxo::detail::sample_with_time<SourceValue, rxu::decay_t<Duration>, rxu::decay_t<Coordination>>>
static auto member(Observable&& o, Duration&& d, Coordination&& cn)
-> decltype(o.template lift<SourceValue>(SampleWithTime(std::forward<Duration>(d), std::forward<Coordination>(cn)))) {
return o.template lift<SourceValue>(SampleWithTime(std::forward<Duration>(d), std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::sample_with_time_invalid_t<AN...> member(const AN&...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "sample_with_time takes (optional Coordination, required Duration) or (required Duration, optional Coordination)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-scan.hpp
\brief For each item from this observable use Accumulator to combine items into a value that will be emitted from the new observable that is returned.
\tparam Seed the type of the initial value for the accumulator.
\tparam Accumulator the type of the data accumulating function.
\param seed the initial value for the accumulator.
\param a an accumulator function to be invoked on each item emitted by the source observable, whose result will be emitted and used in the next accumulator call.
\return An observable that emits the results of each call to the accumulator function.
\sample
\snippet scan.cpp scan sample
\snippet output.txt scan sample
*/
#if !defined(RXCPP_OPERATORS_RX_SCAN_HPP)
#define RXCPP_OPERATORS_RX_SCAN_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct scan_invalid_arguments {};
template<class... AN>
struct scan_invalid : public rxo::operator_base<scan_invalid_arguments<AN...>> {
using type = observable<scan_invalid_arguments<AN...>, scan_invalid<AN...>>;
};
template<class... AN>
using scan_invalid_t = typename scan_invalid<AN...>::type;
template<class T, class Observable, class Accumulator, class Seed>
struct scan : public operator_base<rxu::decay_t<Seed>>
{
using source_type = rxu::decay_t<Observable>;
using accumulator_type = rxu::decay_t<Accumulator>;
using seed_type = rxu::decay_t<Seed>;
struct scan_initial_type
{
scan_initial_type(source_type o, accumulator_type a, seed_type s)
: source(std::move(o))
, accumulator(std::move(a))
, seed(s)
{
}
source_type source;
accumulator_type accumulator;
seed_type seed;
};
scan_initial_type initial;
scan(source_type o, accumulator_type a, seed_type s)
: initial(std::move(o), a, s)
{
}
template<class Subscriber>
void on_subscribe(Subscriber o) const {
struct scan_state_type
: public scan_initial_type
, public std::enable_shared_from_this<scan_state_type>
{
scan_state_type(scan_initial_type i, Subscriber scrbr)
: scan_initial_type(i)
, result(scan_initial_type::seed)
, out(std::move(scrbr))
{
}
seed_type result;
Subscriber out;
};
auto state = std::make_shared<scan_state_type>(initial, std::move(o));
state->source.subscribe(
state->out,
// on_next
[state](auto&& t) {
state->result = state->accumulator(std::move(state->result), std::forward<decltype(t)>(t));
state->out.on_next(state->result);
},
// on_error
[state](rxu::error_ptr e) {
state->out.on_error(e);
},
// on_completed
[state]() {
state->out.on_completed();
}
);
}
};
}
/*! @copydoc rx-scan.hpp
*/
template<class... AN>
auto scan(AN&&... an)
-> operator_factory<scan_tag, AN...> {
return operator_factory<scan_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<scan_tag>
{
template<class Observable, class Seed, class Accumulator,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_accumulate_function_for<rxu::value_type_t<Observable>, rxu::decay_t<Seed>, rxu::decay_t<Accumulator>>>,
class SourceValue = rxu::value_type_t<Observable>,
class Scan = rxo::detail::scan<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<Accumulator>, rxu::decay_t<Seed>>,
class Value = rxu::value_type_t<Scan>,
class Result = observable<Value, Scan>>
static Result member(Observable&& o, Seed s, Accumulator&& a) {
return Result(Scan(std::forward<Observable>(o), std::forward<Accumulator>(a), s));
}
template<class... AN>
static operators::detail::scan_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "scan takes (Seed, Accumulator); Accumulator must be a function with the signature Seed(Seed, T)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-sequence_equal.hpp
\brief Determine whether two Observables emit the same sequence of items.
\tparam OtherSource the type of the other observable.
\tparam BinaryPredicate the type of the value comparing function (optional). The signature should be equivalent to the following: bool pred(const T1& a, const T2& b);
\tparam Coordination the type of the scheduler (optional).
\param t the other Observable that emits items to compare.
\param pred the function that implements comparison of two values (optional).
\param cn the scheduler (optional).
\return Observable that emits true only if both sequences terminate normally after emitting the same sequence of items in the same order; otherwise it will emit false.
\sample
\snippet sequence_equal.cpp sequence_equal sample
\snippet output.txt sequence_equal sample
*/
#if !defined(RXCPP_OPERATORS_RX_SEQUENCE_EQUAL_HPP)
#define RXCPP_OPERATORS_RX_SEQUENCE_EQUAL_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct sequence_equal_invalid_arguments {};
template<class... AN>
struct sequence_equal_invalid : public rxo::operator_base<sequence_equal_invalid_arguments<AN...>> {
using type = observable<sequence_equal_invalid_arguments<AN...>, sequence_equal_invalid<AN...>>;
};
template<class... AN>
using sequence_equal_invalid_t = typename sequence_equal_invalid<AN...>::type;
template<class T, class Observable, class OtherObservable, class BinaryPredicate, class Coordination>
struct sequence_equal : public operator_base<bool>
{
using source_type = rxu::decay_t<Observable>;
using source_value_type = rxu::decay_t<T>;
using other_source_type = rxu::decay_t<OtherObservable>;
using other_source_value_type = typename other_source_type::value_type;
using predicate_type = rxu::decay_t<BinaryPredicate>;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
struct values {
values(source_type s, other_source_type t, predicate_type pred, coordination_type sf)
: source(std::move(s))
, other(std::move(t))
, pred(std::move(pred))
, coordination(std::move(sf))
{
}
source_type source;
other_source_type other;
predicate_type pred;
coordination_type coordination;
};
values initial;
sequence_equal(source_type s, other_source_type t, predicate_type pred, coordination_type sf)
: initial(std::move(s), std::move(t), std::move(pred), std::move(sf))
{
}
template<class Subscriber>
void on_subscribe(Subscriber s) const {
using output_type = Subscriber;
struct state_type
: public std::enable_shared_from_this<state_type>
, public values
{
state_type(const values& vals, coordinator_type coor, const output_type& o)
: values(vals)
, coordinator(std::move(coor))
, out(o)
, source_completed(false)
, other_completed(false)
{
out.add(other_lifetime);
out.add(source_lifetime);
}
composite_subscription other_lifetime;
composite_subscription source_lifetime;
coordinator_type coordinator;
output_type out;
mutable std::list<source_value_type> source_values;
mutable std::list<other_source_value_type> other_values;
mutable bool source_completed;
mutable bool other_completed;
};
auto coordinator = initial.coordination.create_coordinator();
auto state = std::make_shared<state_type>(initial, std::move(coordinator), std::move(s));
auto other = on_exception(
[&](){ return state->coordinator.in(state->other); },
state->out);
if (other.empty()) {
return;
}
auto source = on_exception(
[&](){ return state->coordinator.in(state->source); },
state->out);
if (source.empty()) {
return;
}
auto check_equal = [state]() {
if(!state->source_values.empty() && !state->other_values.empty()) {
auto& x = state->source_values.front();
auto& y = state->other_values.front();
auto res = state->pred(x, y);
state->source_values.pop_front();
state->other_values.pop_front();
if (!res) {
state->out.on_next(false);
state->out.on_completed();
}
} else {
if((!state->source_values.empty() && state->other_completed) ||
(!state->other_values.empty() && state->source_completed)) {
state->out.on_next(false);
state->out.on_completed();
}
}
};
auto check_complete = [state]() {
if(state->source_completed && state->other_completed) {
state->out.on_next(state->source_values.empty() && state->other_values.empty());
state->out.on_completed();
}
};
auto sinkOther = make_subscriber<other_source_value_type>(
state->out,
state->other_lifetime,
// on_next
[state, check_equal](auto&& t) {
auto& values = state->other_values;
values.emplace_back(std::forward<decltype(t)>(t));
check_equal();
},
// on_error
[state](rxu::error_ptr e) {
state->out.on_error(e);
},
// on_completed
[state, check_complete]() {
auto& completed = state->other_completed;
completed = true;
check_complete();
}
);
auto selectedSinkOther = on_exception(
[&](){ return state->coordinator.out(sinkOther); },
state->out);
if (selectedSinkOther.empty()) {
return;
}
other->subscribe(std::move(selectedSinkOther.get()));
source.get().subscribe(
state->source_lifetime,
// on_next
[state, check_equal](auto&& t) {
auto& values = state->source_values;
values.emplace_back(std::forward<decltype(t)>(t));
check_equal();
},
// on_error
[state](rxu::error_ptr e) {
state->out.on_error(e);
},
// on_completed
[state, check_complete]() {
auto& completed = state->source_completed;
completed = true;
check_complete();
}
);
}
};
}
/*! @copydoc rx-sequence_equal.hpp
*/
template<class... AN>
auto sequence_equal(AN&&... an)
-> operator_factory<sequence_equal_tag, AN...> {
return operator_factory<sequence_equal_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<sequence_equal_tag>
{
template<class Observable, class OtherObservable,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_observable<OtherObservable>>,
class SourceValue = rxu::value_type_t<Observable>,
class SequenceEqual = rxo::detail::sequence_equal<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<OtherObservable>, rxu::equal_to<>, identity_one_worker>,
class Value = rxu::value_type_t<SequenceEqual>,
class Result = observable<Value, SequenceEqual>>
static Result member(Observable&& o, OtherObservable&& t) {
return Result(SequenceEqual(std::forward<Observable>(o), std::forward<OtherObservable>(t), rxu::equal_to<>(), identity_current_thread()));
}
template<class Observable, class OtherObservable, class BinaryPredicate,
class IsCoordination = is_coordination<BinaryPredicate>,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_observable<OtherObservable>,
rxu::negation<IsCoordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class SequenceEqual = rxo::detail::sequence_equal<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<OtherObservable>, rxu::decay_t<BinaryPredicate>, identity_one_worker>,
class Value = rxu::value_type_t<SequenceEqual>,
class Result = observable<Value, SequenceEqual>>
static Result member(Observable&& o, OtherObservable&& t, BinaryPredicate&& pred) {
return Result(SequenceEqual(std::forward<Observable>(o), std::forward<OtherObservable>(t), std::forward<BinaryPredicate>(pred), identity_current_thread()));
}
template<class Observable, class OtherObservable, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_observable<OtherObservable>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class SequenceEqual = rxo::detail::sequence_equal<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<OtherObservable>, rxu::equal_to<>, rxu::decay_t<Coordination>>,
class Value = rxu::value_type_t<SequenceEqual>,
class Result = observable<Value, SequenceEqual>>
static Result member(Observable&& o, OtherObservable&& t, Coordination&& cn) {
return Result(SequenceEqual(std::forward<Observable>(o), std::forward<OtherObservable>(t), rxu::equal_to<>(), std::forward<Coordination>(cn)));
}
template<class Observable, class OtherObservable, class BinaryPredicate, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_observable<OtherObservable>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class SequenceEqual = rxo::detail::sequence_equal<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<OtherObservable>, rxu::decay_t<BinaryPredicate>, rxu::decay_t<Coordination>>,
class Value = rxu::value_type_t<SequenceEqual>,
class Result = observable<Value, SequenceEqual>>
static Result member(Observable&& o, OtherObservable&& t, BinaryPredicate&& pred, Coordination&& cn) {
return Result(SequenceEqual(std::forward<Observable>(o), std::forward<OtherObservable>(t), std::forward<BinaryPredicate>(pred), std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::sequence_equal_invalid_t<AN...> member(const AN&...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "sequence_equal takes (OtherObservable, optional BinaryPredicate, optional Coordination)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-skip.hpp
\brief Make new observable with skipped first count items from this observable.
\tparam Count the type of the items counter
\param t the number of items to skip
\return An observable that is identical to the source observable except that it does not emit the first t items that the source observable emits.
\sample
\snippet skip.cpp skip sample
\snippet output.txt skip sample
*/
#if !defined(RXCPP_OPERATORS_RX_SKIP_HPP)
#define RXCPP_OPERATORS_RX_SKIP_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct skip_invalid_arguments {};
template<class... AN>
struct skip_invalid : public rxo::operator_base<skip_invalid_arguments<AN...>> {
using type = observable<skip_invalid_arguments<AN...>, skip_invalid<AN...>>;
};
template<class... AN>
using skip_invalid_t = typename skip_invalid<AN...>::type;
template<class T, class Observable, class Count>
struct skip : public operator_base<T>
{
using source_type = rxu::decay_t<Observable>;
using count_type = rxu::decay_t<Count>;
struct values
{
values(source_type s, count_type t)
: source(std::move(s))
, count(std::move(t))
{
}
source_type source;
count_type count;
};
values initial;
skip(source_type s, count_type t)
: initial(std::move(s), std::move(t))
{
}
struct mode
{
enum type {
skipping, // ignore messages
triggered, // capture messages
errored, // error occured
stopped // observable completed
};
};
template<class Subscriber>
void on_subscribe(const Subscriber& s) const {
using output_type = Subscriber;
struct state_type
: public std::enable_shared_from_this<state_type>
, public values
{
state_type(const values& i, const output_type& oarg)
: values(i)
, mode_value(i.count > 0 ? mode::skipping : mode::triggered)
, out(oarg)
{
}
typename mode::type mode_value;
output_type out;
};
// take a copy of the values for each subscription
auto state = std::make_shared<state_type>(initial, s);
composite_subscription source_lifetime;
s.add(source_lifetime);
state->source.subscribe(
// split subscription lifetime
source_lifetime,
// on_next
[state](auto&& t) {
if (state->mode_value == mode::skipping) {
if (--state->count == 0) {
state->mode_value = mode::triggered;
}
} else {
state->out.on_next(std::forward<decltype(t)>(t));
}
},
// on_error
[state](rxu::error_ptr e) {
state->mode_value = mode::errored;
state->out.on_error(e);
},
// on_completed
[state]() {
state->mode_value = mode::stopped;
state->out.on_completed();
}
);
}
};
}
/*! @copydoc rx-skip.hpp
*/
template<class... AN>
auto skip(AN&&... an)
-> operator_factory<skip_tag, AN...> {
return operator_factory<skip_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<skip_tag>
{
template<class Observable,
class Count,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Skip = rxo::detail::skip<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<Count>>,
class Value = rxu::value_type_t<Skip>,
class Result = observable<Value, Skip>>
static Result member(Observable&& o, Count&& c) {
return Result(Skip(std::forward<Observable>(o), std::forward<Count>(c)));
}
template<class... AN>
static operators::detail::skip_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "skip takes (optional Count)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \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
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
{
using source_value_type = rxu::decay_t<T>;
using test_type = rxu::decay_t<Predicate>;
test_type test;
skip_while(test_type t)
: test(std::move(t))
{
}
template<class Subscriber>
struct skip_while_observer
{
using this_type = skip_while_observer<Subscriber>;
using value_type = source_value_type;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<value_type, this_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)
{
}
template<typename U>
void on_next(U&& v) {
if(pass || !test(v))
{
pass = true;
dest.on_next(std::forward<U>(v));
}
}
void on_error(rxu::error_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
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-skip_last.hpp
\brief Make new observable with skipped last count items from this observable.
\tparam Count the type of the items counter.
\param t the number of last items to skip.
\return An observable that is identical to the source observable except that it does not emit the last t items that the source observable emits.
\sample
\snippet skip_last.cpp skip_last sample
\snippet output.txt skip_last sample
*/
#if !defined(RXCPP_OPERATORS_RX_SKIP_LAST_HPP)
#define RXCPP_OPERATORS_RX_SKIP_LAST_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct skip_last_invalid_arguments {};
template<class... AN>
struct skip_last_invalid : public rxo::operator_base<skip_last_invalid_arguments<AN...>> {
using type = observable<skip_last_invalid_arguments<AN...>, skip_last_invalid<AN...>>;
};
template<class... AN>
using skip_last_invalid_t = typename skip_last_invalid<AN...>::type;
template<class T, class Observable, class Count>
struct skip_last : public operator_base<T>
{
using source_type = rxu::decay_t<Observable>;
using count_type = rxu::decay_t<Count>;
using queue_type = std::queue<T>;
using queue_size_type = typename queue_type::size_type;
struct values
{
values(source_type s, count_type t)
: source(std::move(s))
, count(static_cast<queue_size_type>(t))
{
}
source_type source;
queue_size_type count;
};
values initial;
skip_last(source_type s, count_type t)
: initial(std::move(s), std::move(t))
{
}
template<class Subscriber>
void on_subscribe(const Subscriber& s) const {
using output_type = Subscriber;
struct state_type
: public std::enable_shared_from_this<state_type>
, public values
{
state_type(const values& i, const output_type& oarg)
: values(i)
, out(oarg)
{
}
queue_type items;
output_type out;
};
// take a copy of the values for each subscription
auto state = std::make_shared<state_type>(initial, s);
composite_subscription source_lifetime;
s.add(source_lifetime);
state->source.subscribe(
// split subscription lifetime
source_lifetime,
// on_next
[state](auto&& t) {
if(state->count > 0) {
if (state->items.size() == state->count) {
state->out.on_next(std::move(state->items.front()));
state->items.pop();
}
state->items.emplace(std::forward<decltype(t)>(t));
} else {
state->out.on_next(std::forward<decltype(t)>(t));
}
},
// on_error
[state](rxu::error_ptr e) {
state->out.on_error(e);
},
// on_completed
[state]() {
state->out.on_completed();
}
);
}
};
}
/*! @copydoc rx-skip_last.hpp
*/
template<class... AN>
auto skip_last(AN&&... an)
-> operator_factory<skip_last_tag, AN...> {
return operator_factory<skip_last_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<skip_last_tag>
{
template<class Observable, class Count,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class SkipLast = rxo::detail::skip_last<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<Count>>,
class Value = rxu::value_type_t<SkipLast>,
class Result = observable<Value, SkipLast>>
static Result member(Observable&& o, Count&& c) {
return Result(SkipLast(std::forward<Observable>(o), std::forward<Count>(c)));
}
template<class... AN>
static operators::detail::skip_last_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "skip_last takes (Count)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-skip_until.hpp
\brief Make new observable with items skipped until on_next occurs on the trigger observable or until the specified time.
skip_until takes (TriggerObservable, optional Coordination) or (TimePoint, optional Coordination)
\tparam TriggerSource the type of the trigger observable.
\tparam Coordination the type of the scheduler (optional).
\param t an observable that has to emit an item before the source observable's elements begin to be mirrored by the resulting observable.
\param cn the scheduler to use for scheduling the items (optional).
\return An observable that skips items from the source observable until the second observable emits an item or the time runs out, then emits the remaining items.
\sample
\snippet skip_until.cpp skip_until sample
\snippet output.txt skip_until sample
\sample
\snippet skip_until.cpp threaded skip_until sample
\snippet output.txt threaded skip_until sample
*/
#if !defined(RXCPP_OPERATORS_RX_SKIP_UNTIL_HPP)
#define RXCPP_OPERATORS_RX_SKIP_UNTIL_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct skip_until_invalid_arguments {};
template<class... AN>
struct skip_until_invalid : public rxo::operator_base<skip_until_invalid_arguments<AN...>> {
using type = observable<skip_until_invalid_arguments<AN...>, skip_until_invalid<AN...>>;
};
template<class... AN>
using skip_until_invalid_t = typename skip_until_invalid<AN...>::type;
template<class T, class Observable, class TriggerObservable, class Coordination>
struct skip_until : public operator_base<T>
{
using source_type = rxu::decay_t<Observable>;
using trigger_source_type = rxu::decay_t<TriggerObservable>;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
struct values
{
values(source_type s, trigger_source_type t, coordination_type sf)
: source(std::move(s))
, trigger(std::move(t))
, coordination(std::move(sf))
{
}
source_type source;
trigger_source_type trigger;
coordination_type coordination;
};
values initial;
skip_until(source_type s, trigger_source_type t, coordination_type sf)
: initial(std::move(s), std::move(t), std::move(sf))
{
}
struct mode
{
enum type {
skipping, // no messages from trigger
clear, // trigger completed
triggered, // trigger sent on_next
errored, // error either on trigger or on observable
stopped // observable completed
};
};
template<class Subscriber>
void on_subscribe(Subscriber s) const {
using output_type = Subscriber;
struct state_type
: public std::enable_shared_from_this<state_type>
, public values
{
state_type(const values& i, coordinator_type coor, const output_type& oarg)
: values(i)
, mode_value(mode::skipping)
, coordinator(std::move(coor))
, out(oarg)
{
out.add(trigger_lifetime);
out.add(source_lifetime);
}
typename mode::type mode_value;
composite_subscription trigger_lifetime;
composite_subscription source_lifetime;
coordinator_type coordinator;
output_type out;
};
auto coordinator = initial.coordination.create_coordinator();
// take a copy of the values for each subscription
auto state = std::make_shared<state_type>(initial, std::move(coordinator), std::move(s));
auto trigger = on_exception(
[&](){return state->coordinator.in(state->trigger);},
state->out);
if (trigger.empty()) {
return;
}
auto source = on_exception(
[&](){return state->coordinator.in(state->source);},
state->out);
if (source.empty()) {
return;
}
auto sinkTrigger = make_subscriber<typename trigger_source_type::value_type>(
// share parts of subscription
state->out,
// new lifetime
state->trigger_lifetime,
// on_next
[state](const typename trigger_source_type::value_type&) {
if (state->mode_value != mode::skipping) {
return;
}
state->mode_value = mode::triggered;
state->trigger_lifetime.unsubscribe();
},
// on_error
[state](rxu::error_ptr e) {
if (state->mode_value != mode::skipping) {
return;
}
state->mode_value = mode::errored;
state->out.on_error(e);
},
// on_completed
[state]() {
if (state->mode_value != mode::skipping) {
return;
}
state->mode_value = mode::clear;
state->trigger_lifetime.unsubscribe();
}
);
auto selectedSinkTrigger = on_exception(
[&](){return state->coordinator.out(sinkTrigger);},
state->out);
if (selectedSinkTrigger.empty()) {
return;
}
trigger->subscribe(std::move(selectedSinkTrigger.get()));
source.get().subscribe(
// split subscription lifetime
state->source_lifetime,
// on_next
[state](auto&& t) {
if (state->mode_value != mode::triggered) {
return;
}
state->out.on_next(std::forward<decltype(t)>(t));
},
// on_error
[state](rxu::error_ptr e) {
if (state->mode_value > mode::triggered) {
return;
}
state->mode_value = mode::errored;
state->out.on_error(e);
},
// on_completed
[state]() {
if (state->mode_value != mode::triggered) {
return;
}
state->mode_value = mode::stopped;
state->out.on_completed();
}
);
}
};
}
/*! @copydoc rx-skip_until.hpp
*/
template<class... AN>
auto skip_until(AN&&... an)
-> operator_factory<skip_until_tag, AN...> {
return operator_factory<skip_until_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<skip_until_tag>
{
template<class Observable, class TimePoint,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
std::is_convertible<TimePoint, rxsc::scheduler::clock_type::time_point>>,
class SourceValue = rxu::value_type_t<Observable>,
class Timer = typename rxu::defer_type<rxs::detail::timer, identity_one_worker>::type,
class TimerValue = rxu::value_type_t<Timer>,
class TriggerObservable = observable<TimerValue, Timer>,
class SkipUntil = rxo::detail::skip_until<SourceValue, rxu::decay_t<Observable>, TriggerObservable, identity_one_worker>,
class Value = rxu::value_type_t<SkipUntil>,
class Result = observable<Value, SkipUntil>>
static Result member(Observable&& o, TimePoint&& when) {
auto cn = identity_current_thread();
return Result(SkipUntil(std::forward<Observable>(o), rxs::timer(std::forward<TimePoint>(when), cn), cn));
}
template<class Observable, class TimePoint, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_coordination<Coordination>,
std::is_convertible<TimePoint, rxsc::scheduler::clock_type::time_point>>,
class SourceValue = rxu::value_type_t<Observable>,
class Timer = typename rxu::defer_type<rxs::detail::timer, rxu::decay_t<Coordination>>::type,
class TimerValue = rxu::value_type_t<Timer>,
class TriggerObservable = observable<TimerValue, Timer>,
class SkipUntil = rxo::detail::skip_until<SourceValue, rxu::decay_t<Observable>, TriggerObservable, rxu::decay_t<Coordination>>,
class Value = rxu::value_type_t<SkipUntil>,
class Result = observable<Value, SkipUntil>>
static Result member(Observable&& o, TimePoint&& when, Coordination cn) {
return Result(SkipUntil(std::forward<Observable>(o), rxs::timer(std::forward<TimePoint>(when), cn), cn));
}
template<class Observable, class TriggerObservable,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, TriggerObservable>>,
class SourceValue = rxu::value_type_t<Observable>,
class SkipUntil = rxo::detail::skip_until<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<TriggerObservable>, identity_one_worker>,
class Value = rxu::value_type_t<SkipUntil>,
class Result = observable<Value, SkipUntil>>
static Result member(Observable&& o, TriggerObservable&& t) {
return Result(SkipUntil(std::forward<Observable>(o), std::forward<TriggerObservable>(t), identity_current_thread()));
}
template<class Observable, class TriggerObservable, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, TriggerObservable>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class SkipUntil = rxo::detail::skip_until<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<TriggerObservable>, rxu::decay_t<Coordination>>,
class Value = rxu::value_type_t<SkipUntil>,
class Result = observable<Value, SkipUntil>>
static Result member(Observable&& o, TriggerObservable&& t, Coordination&& cn) {
return Result(SkipUntil(std::forward<Observable>(o), std::forward<TriggerObservable>(t), std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::skip_until_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "skip_until takes (TriggerObservable, optional Coordination) or (TimePoint, optional Coordination)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-start_with.hpp
\brief Start with the supplied values, then concatenate this observable.
\tparam Value0 ...
\tparam ValueN the type of sending values
\param v0 ...
\param vn values to send
\return Observable that emits the specified items and then emits the items emitted by the source observable.
\sample
\snippet start_with.cpp short start_with sample
\snippet output.txt short start_with sample
Another form of this operator, rxcpp::observable<void, void>::start_with, gets the source observable as a parameter:
\snippet start_with.cpp full start_with sample
\snippet output.txt full start_with sample
*/
#if !defined(RXCPP_OPERATORS_RX_START_WITH_HPP)
#define RXCPP_OPERATORS_RX_START_WITH_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct start_with_invalid_arguments {};
template<class... AN>
struct start_with_invalid : public rxo::operator_base<start_with_invalid_arguments<AN...>> {
using type = observable<start_with_invalid_arguments<AN...>, start_with_invalid<AN...>>;
};
template<class... AN>
using start_with_invalid_t = typename start_with_invalid<AN...>::type;
}
/*! @copydoc rx-start_with.hpp
*/
template<class... AN>
auto start_with(AN&&... an)
-> operator_factory<start_with_tag, AN...> {
return operator_factory<start_with_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<start_with_tag>
{
template<class Observable, class Value0, class... ValueN,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class From = decltype(rxs::from(rxu::decay_t<Value0>(std::declval<Value0>()), rxu::decay_t<ValueN>(std::declval<ValueN>())...))
>
static auto member(Observable&& o, Value0&& v0, ValueN&&... vn)
-> decltype(member_overload<concat_tag>::member(std::declval<From>(), std::forward<Observable>(o))) {
auto first = rxs::from(rxu::decay_t<Value0>(v0), rxu::decay_t<ValueN>(vn)...);
return member_overload<concat_tag>::member(first, std::forward<Observable>(o));
}
template<class... AN>
static operators::detail::start_with_invalid_t<AN...> member(const AN&...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "start_with takes (Value0, optional ValueN...)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-subscribe_on.hpp
\brief Subscription and unsubscription are queued and delivered using the scheduler from the supplied coordination.
\tparam Coordination the type of the scheduler.
\param cn the scheduler to perform subscription actions on.
\return The source observable modified so that its subscriptions happen on the specified scheduler.
\sample
\snippet subscribe_on.cpp subscribe_on sample
\snippet output.txt subscribe_on sample
Invoking rxcpp::observable::observe_on operator, instead of subscribe_on, gives following results:
\snippet output.txt observe_on sample
*/
#if !defined(RXCPP_OPERATORS_RX_SUBSCRIBE_ON_HPP)
#define RXCPP_OPERATORS_RX_SUBSCRIBE_ON_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct subscribe_on_invalid_arguments {};
template<class... AN>
struct subscribe_on_invalid : public rxo::operator_base<subscribe_on_invalid_arguments<AN...>> {
using type = observable<subscribe_on_invalid_arguments<AN...>, subscribe_on_invalid<AN...>>;
};
template<class... AN>
using subscribe_on_invalid_t = typename subscribe_on_invalid<AN...>::type;
template<class T, class Observable, class Coordination>
struct subscribe_on : public operator_base<T>
{
using source_type = rxu::decay_t<Observable>;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
struct subscribe_on_values
{
~subscribe_on_values()
{
}
subscribe_on_values(source_type s, coordination_type sf)
: source(std::move(s))
, coordination(std::move(sf))
{
}
source_type source;
coordination_type coordination;
private:
subscribe_on_values& operator=(subscribe_on_values o) RXCPP_DELETE;
};
const subscribe_on_values initial;
~subscribe_on()
{
}
subscribe_on(source_type s, coordination_type sf)
: initial(std::move(s), std::move(sf))
{
}
template<class Subscriber>
void on_subscribe(Subscriber s) const {
using output_type = Subscriber;
struct subscribe_on_state_type
: public std::enable_shared_from_this<subscribe_on_state_type>
, public subscribe_on_values
{
subscribe_on_state_type(const subscribe_on_values& i, const output_type& oarg)
: subscribe_on_values(i)
, out(oarg)
{
}
composite_subscription source_lifetime;
output_type out;
private:
subscribe_on_state_type& operator=(subscribe_on_state_type o) RXCPP_DELETE;
};
composite_subscription coordinator_lifetime;
auto coordinator = initial.coordination.create_coordinator(coordinator_lifetime);
auto controller = coordinator.get_worker();
// take a copy of the values for each subscription
auto state = std::make_shared<subscribe_on_state_type>(initial, std::move(s));
auto sl = state->source_lifetime;
auto ol = state->out.get_subscription();
auto disposer = [=](const rxsc::schedulable&){
sl.unsubscribe();
ol.unsubscribe();
coordinator_lifetime.unsubscribe();
};
auto selectedDisposer = on_exception(
[&](){return coordinator.act(disposer);},
state->out);
if (selectedDisposer.empty()) {
return;
}
state->source_lifetime.add([=](){
controller.schedule(selectedDisposer.get());
});
state->out.add([=](){
sl.unsubscribe();
ol.unsubscribe();
coordinator_lifetime.unsubscribe();
});
auto producer = [=](const rxsc::schedulable&){
state->source.subscribe(state->source_lifetime, state->out);
};
auto selectedProducer = on_exception(
[&](){return coordinator.act(producer);},
state->out);
if (selectedProducer.empty()) {
return;
}
controller.schedule(selectedProducer.get());
}
private:
subscribe_on& operator=(subscribe_on o) RXCPP_DELETE;
};
}
/*! @copydoc rx-subscribe_on.hpp
*/
template<class... AN>
auto subscribe_on(AN&&... an)
-> operator_factory<subscribe_on_tag, AN...> {
return operator_factory<subscribe_on_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<subscribe_on_tag>
{
template<class Observable, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class SubscribeOn = rxo::detail::subscribe_on<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<Coordination>>,
class Value = rxu::value_type_t<SubscribeOn>,
class Result = observable<Value, SubscribeOn>>
static Result member(Observable&& o, Coordination&& cn) {
return Result(SubscribeOn(std::forward<Observable>(o), std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::subscribe_on_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "subscribe_on takes (Coordination)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-switch_if_empty.hpp
\brief If the source Observable terminates without emitting any items, emits items from a backup Observable.
\tparam BackupSource the type of the backup observable.
\param t a backup observable that is used if the source observable is empty.
\return Observable that emits items from a backup observable if the source observable is empty.
\sample
\snippet switch_if_empty.cpp switch_if_empty sample
\snippet output.txt switch_if_empty sample
*/
#if !defined(RXCPP_OPERATORS_RX_SWITCH_IF_EMPTY_HPP)
#define RXCPP_OPERATORS_RX_SWITCH_IF_EMPTY_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct switch_if_empty_invalid_arguments {};
template<class... AN>
struct switch_if_empty_invalid : public rxo::operator_base<switch_if_empty_invalid_arguments<AN...>> {
using type = observable<switch_if_empty_invalid_arguments<AN...>, switch_if_empty_invalid<AN...>>;
};
template<class... AN>
using switch_if_empty_invalid_t = typename switch_if_empty_invalid<AN...>::type;
template<class T, class BackupSource>
struct switch_if_empty
{
using source_value_type = rxu::decay_t<T>;
using backup_source_type = rxu::decay_t<BackupSource>;
backup_source_type backup;
switch_if_empty(backup_source_type b)
: backup(std::move(b))
{
}
template<class Subscriber>
struct switch_if_empty_observer
{
using this_type = switch_if_empty_observer<Subscriber>;
using value_type = source_value_type;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<value_type, this_type>;
dest_type dest;
composite_subscription lifetime;
backup_source_type backup;
mutable bool is_empty;
switch_if_empty_observer(dest_type d, composite_subscription cs, backup_source_type b)
: dest(std::move(d))
, lifetime(std::move(cs))
, backup(std::move(b))
, is_empty(true)
{
dest.add(lifetime);
}
template<typename U>
void on_next(U&& v) const {
is_empty = false;
dest.on_next(std::forward<U>(v));
}
void on_error(rxu::error_ptr e) const {
dest.on_error(std::move(e));
}
void on_completed() const {
if(!is_empty) {
dest.on_completed();
} else {
backup.subscribe(dest);
}
}
static subscriber<value_type, observer_type> make(dest_type d, backup_source_type b) {
auto cs = composite_subscription();
return make_subscriber<value_type>(cs, observer_type(this_type(std::move(d), cs, std::move(b))));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(switch_if_empty_observer<Subscriber>::make(std::move(dest), std::move(backup))) {
return switch_if_empty_observer<Subscriber>::make(std::move(dest), std::move(backup));
}
};
}
/*! @copydoc rx-switch_if_empty.hpp
*/
template<class... AN>
auto switch_if_empty(AN&&... an)
-> operator_factory<switch_if_empty_tag, AN...> {
return operator_factory<switch_if_empty_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
/*! \brief If the source Observable terminates without emitting any items, emits a default item and completes.
\tparam Value the type of the value to emit.
\param v the default value to emit.
\return Observable that emits the specified default item if the source observable is empty.
\sample
\snippet default_if_empty.cpp default_if_empty sample
\snippet output.txt default_if_empty sample
*/
template<class... AN>
auto default_if_empty(AN&&... an)
-> operator_factory<default_if_empty_tag, AN...> {
return operator_factory<default_if_empty_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<switch_if_empty_tag>
{
template<class Observable, class BackupSource,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, BackupSource>>,
class SourceValue = rxu::value_type_t<Observable>,
class SwitchIfEmpty = rxo::detail::switch_if_empty<SourceValue, rxu::decay_t<BackupSource>>>
static auto member(Observable&& o, BackupSource&& b)
-> decltype(o.template lift<SourceValue>(SwitchIfEmpty(std::forward<BackupSource>(b)))) {
return o.template lift<SourceValue>(SwitchIfEmpty(std::forward<BackupSource>(b)));
}
template<class... AN>
static operators::detail::switch_if_empty_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "switch_if_empty takes (BackupSource)");
}
};
template<>
struct member_overload<default_if_empty_tag>
{
template<class Observable, class Value,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class BackupSource = decltype(rxs::from(std::declval<SourceValue>())),
class DefaultIfEmpty = rxo::detail::switch_if_empty<SourceValue, BackupSource>>
static auto member(Observable&& o, Value&& v)
-> decltype(o.template lift<SourceValue>(DefaultIfEmpty(rxs::from(std::forward<Value>(v))))) {
return o.template lift<SourceValue>(DefaultIfEmpty(rxs::from(std::forward<Value>(v))));
}
template<class... AN>
static operators::detail::switch_if_empty_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "default_if_empty takes (Value)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-switch_on_next.hpp
\brief Return observable that emits the items emitted by the observable most recently emitted by the source observable.
\tparam Coordination the type of the scheduler (optional).
\param cn the scheduler to synchronize sources from different contexts (optional).
\return Observable that emits the items emitted by the observable most recently emitted by the source observable.
\sample
\snippet switch_on_next.cpp switch_on_next sample
\snippet output.txt switch_on_next sample
*/
#if !defined(RXCPP_OPERATORS_RX_SWITCH_ON_NEXT_HPP)
#define RXCPP_OPERATORS_RX_SWITCH_ON_NEXT_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct switch_on_next_invalid_arguments {};
template<class... AN>
struct switch_on_next_invalid : public rxo::operator_base<switch_on_next_invalid_arguments<AN...>> {
using type = observable<switch_on_next_invalid_arguments<AN...>, switch_on_next_invalid<AN...>>;
};
template<class... AN>
using switch_on_next_invalid_t = typename switch_on_next_invalid<AN...>::type;
template<class T, class Observable, class Coordination>
struct switch_on_next
: public operator_base<rxu::value_type_t<rxu::decay_t<T>>>
{
//static_assert(is_observable<Observable>::value, "switch_on_next requires an observable");
//static_assert(is_observable<T>::value, "switch_on_next requires an observable that contains observables");
using this_type = switch_on_next<T, Observable, Coordination>;
using source_value_type = rxu::decay_t<T>;
using source_type = rxu::decay_t<Observable>;
using source_operator_type = typename source_type::source_operator_type;
using collection_type = source_value_type;
using collection_value_type = typename collection_type::value_type;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
struct values
{
values(source_operator_type o, coordination_type sf)
: source_operator(std::move(o))
, coordination(std::move(sf))
{
}
source_operator_type source_operator;
coordination_type coordination;
};
values initial;
switch_on_next(const source_type& o, coordination_type sf)
: initial(o.source_operator, std::move(sf))
{
}
template<class Subscriber>
void on_subscribe(Subscriber scbr) const {
static_assert(is_subscriber<Subscriber>::value, "subscribe must be passed a subscriber");
using output_type = Subscriber;
struct switch_state_type
: public std::enable_shared_from_this<switch_state_type>
, public values
{
switch_state_type(values i, coordinator_type coor, output_type oarg)
: values(i)
, source(i.source_operator)
, pendingCompletions(0)
, coordinator(std::move(coor))
, out(std::move(oarg))
{
}
observable<source_value_type, source_operator_type> source;
// on_completed on the output must wait until all the
// subscriptions have received on_completed
int pendingCompletions;
coordinator_type coordinator;
composite_subscription inner_lifetime;
output_type out;
};
auto coordinator = initial.coordination.create_coordinator(scbr.get_subscription());
// take a copy of the values for each subscription
auto state = std::make_shared<switch_state_type>(initial, std::move(coordinator), std::move(scbr));
composite_subscription outercs;
// when the out observer is unsubscribed all the
// inner subscriptions are unsubscribed as well
state->out.add(outercs);
auto source = on_exception(
[&](){return state->coordinator.in(state->source);},
state->out);
if (source.empty()) {
return;
}
++state->pendingCompletions;
// this subscribe does not share the observer subscription
// so that when it is unsubscribed the observer can be called
// until the inner subscriptions have finished
auto sink = make_subscriber<collection_type>(
state->out,
outercs,
// on_next
[state](collection_type st) {
state->inner_lifetime.unsubscribe();
state->inner_lifetime = composite_subscription();
// when the out observer is unsubscribed all the
// inner subscriptions are unsubscribed as well
auto innerlifetimetoken = state->out.add(state->inner_lifetime);
state->inner_lifetime.add(make_subscription([state, innerlifetimetoken](){
state->out.remove(innerlifetimetoken);
--state->pendingCompletions;
}));
auto selectedSource = state->coordinator.in(st);
// this subscribe does not share the source subscription
// so that when it is unsubscribed the source will continue
auto sinkInner = make_subscriber<collection_value_type>(
state->out,
state->inner_lifetime,
// on_next
[state, st](auto&& ct) {
state->out.on_next(std::forward<decltype(ct)>(ct));
},
// on_error
[state](rxu::error_ptr e) {
state->out.on_error(e);
},
//on_completed
[state](){
if (state->pendingCompletions == 1) {
state->out.on_completed();
}
}
);
auto selectedSinkInner = state->coordinator.out(sinkInner);
++state->pendingCompletions;
selectedSource.subscribe(std::move(selectedSinkInner));
},
// on_error
[state](rxu::error_ptr e) {
state->out.on_error(e);
},
// on_completed
[state]() {
if (--state->pendingCompletions == 0) {
state->out.on_completed();
}
}
);
auto selectedSink = on_exception(
[&](){return state->coordinator.out(sink);},
state->out);
if (selectedSink.empty()) {
return;
}
source->subscribe(std::move(selectedSink.get()));
}
};
}
/*! @copydoc rx-switch_on_next.hpp
*/
template<class... AN>
auto switch_on_next(AN&&... an)
-> operator_factory<switch_on_next_tag, AN...> {
return operator_factory<switch_on_next_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<switch_on_next_tag>
{
template<class Observable,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class SwitchOnNext = rxo::detail::switch_on_next<SourceValue, rxu::decay_t<Observable>, identity_one_worker>,
class Value = rxu::value_type_t<SourceValue>,
class Result = observable<Value, SwitchOnNext>
>
static Result member(Observable&& o) {
return Result(SwitchOnNext(std::forward<Observable>(o), identity_current_thread()));
}
template<class Observable, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class SwitchOnNext = rxo::detail::switch_on_next<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<Coordination>>,
class Value = rxu::value_type_t<SourceValue>,
class Result = observable<Value, SwitchOnNext>
>
static Result member(Observable&& o, Coordination&& cn) {
return Result(SwitchOnNext(std::forward<Observable>(o), std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::switch_on_next_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "switch_on_next takes (optional Coordination)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-take.hpp
\brief For the first count items from this observable emit them from the new observable that is returned.
\tparam Count the type of the items counter.
\param t the number of items to take.
\return An observable that emits only the first t items emitted by the source Observable, or all of the items from the source observable if that observable emits fewer than t items.
\sample
\snippet take.cpp take sample
\snippet output.txt take sample
*/
#if !defined(RXCPP_OPERATORS_RX_TAKE_HPP)
#define RXCPP_OPERATORS_RX_TAKE_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct take_invalid_arguments {};
template<class... AN>
struct take_invalid : public rxo::operator_base<take_invalid_arguments<AN...>> {
using type = observable<take_invalid_arguments<AN...>, take_invalid<AN...>>;
};
template<class... AN>
using take_invalid_t = typename take_invalid<AN...>::type;
template<class T, class Observable, class Count>
struct take : public operator_base<T>
{
using source_type = rxu::decay_t<Observable>;
using count_type = rxu::decay_t<Count>;
struct values
{
values(source_type s, count_type t)
: source(std::move(s))
, count(std::move(t))
{
}
source_type source;
count_type count;
};
values initial;
take(source_type s, count_type t)
: initial(std::move(s), std::move(t))
{
}
struct mode
{
enum type {
taking, // capture messages
triggered, // ignore messages
errored, // error occured
stopped // observable completed
};
};
template<class Subscriber>
void on_subscribe(const Subscriber& s) const {
using output_type = Subscriber;
struct state_type
: public std::enable_shared_from_this<state_type>
, public values
{
state_type(const values& i, const output_type& oarg)
: values(i)
, mode_value(mode::taking)
, out(oarg)
{
}
typename mode::type mode_value;
output_type out;
};
// take a copy of the values for each subscription
auto state = std::make_shared<state_type>(initial, s);
composite_subscription source_lifetime;
s.add(source_lifetime);
state->source.subscribe(
// split subscription lifetime
source_lifetime,
// on_next
[state, source_lifetime](auto&& t) {
if (state->mode_value < mode::triggered) {
if (--state->count > 0) {
state->out.on_next(std::forward<decltype(t)>(t));
} else {
state->mode_value = mode::triggered;
state->out.on_next(std::forward<decltype(t)>(t));
// must shutdown source before signaling completion
source_lifetime.unsubscribe();
state->out.on_completed();
}
}
},
// on_error
[state](rxu::error_ptr e) {
state->mode_value = mode::errored;
state->out.on_error(e);
},
// on_completed
[state]() {
state->mode_value = mode::stopped;
state->out.on_completed();
}
);
}
};
}
/*! @copydoc rx-take.hpp
*/
template<class... AN>
auto take(AN&&... an)
-> operator_factory<take_tag, AN...> {
return operator_factory<take_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<take_tag>
{
template<class Observable,
class Count,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Take = rxo::detail::take<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<Count>>,
class Value = rxu::value_type_t<Take>,
class Result = observable<Value, Take>>
static Result member(Observable&& o, Count&& c) {
return Result(Take(std::forward<Observable>(o), std::forward<Count>(c)));
}
template<class... AN>
static operators::detail::take_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "take takes (optional Count)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-take_last.hpp
\brief Emit only the final t items emitted by the source Observable.
\tparam Count the type of the items counter.
\param t the number of last items to take.
\return An observable that emits only the last t items emitted by the source Observable, or all of the items from the source observable if that observable emits fewer than t items.
\sample
\snippet take_last.cpp take_last sample
\snippet output.txt take_last sample
*/
#if !defined(RXCPP_OPERATORS_RX_TAKE_LAST_HPP)
#define RXCPP_OPERATORS_RX_TAKE_LAST_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct take_last_invalid_arguments {};
template<class... AN>
struct take_last_invalid : public rxo::operator_base<take_last_invalid_arguments<AN...>> {
using type = observable<take_last_invalid_arguments<AN...>, take_last_invalid<AN...>>;
};
template<class... AN>
using take_last_invalid_t = typename take_last_invalid<AN...>::type;
template<class T, class Observable, class Count>
struct take_last : public operator_base<T>
{
using source_type = rxu::decay_t<Observable>;
using count_type = rxu::decay_t<Count>;
using queue_type = std::queue<T>;
using queue_size_type = typename queue_type::size_type;
struct values
{
values(source_type s, count_type t)
: source(std::move(s))
, count(static_cast<queue_size_type>(t))
{
}
source_type source;
queue_size_type count;
};
values initial;
take_last(source_type s, count_type t)
: initial(std::move(s), std::move(t))
{
}
template<class Subscriber>
void on_subscribe(const Subscriber& s) const {
using output_type = Subscriber;
struct state_type
: public std::enable_shared_from_this<state_type>
, public values
{
state_type(const values& i, const output_type& oarg)
: values(i)
, out(oarg)
{
}
queue_type items;
output_type out;
};
// take a copy of the values for each subscription
auto state = std::make_shared<state_type>(initial, s);
composite_subscription source_lifetime;
s.add(source_lifetime);
state->source.subscribe(
// split subscription lifetime
source_lifetime,
// on_next
[state, source_lifetime](auto&& t) {
if(state->count > 0) {
if (state->items.size() == state->count) {
state->items.pop();
}
state->items.emplace(std::forward<decltype(t)>(t));
}
},
// on_error
[state](rxu::error_ptr e) {
state->out.on_error(e);
},
// on_completed
[state]() {
while(!state->items.empty()) {
state->out.on_next(std::move(state->items.front()));
state->items.pop();
}
state->out.on_completed();
}
);
}
};
}
/*! @copydoc rx-take_last.hpp
*/
template<class... AN>
auto take_last(AN&&... an)
-> operator_factory<take_last_tag, AN...> {
return operator_factory<take_last_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<take_last_tag>
{
template<class Observable,
class Count,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class TakeLast = rxo::detail::take_last<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<Count>>,
class Value = rxu::value_type_t<TakeLast>,
class Result = observable<Value, TakeLast>>
static Result member(Observable&& o, Count&& c) {
return Result(TakeLast(std::forward<Observable>(o), std::forward<Count>(c)));
}
template<class... AN>
static operators::detail::take_last_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "take_last takes (Count)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-take_until.hpp
\brief For each item from this observable until on_next occurs on the trigger observable or until the specified time, emit them from the new observable that is returned.
take_until takes (TriggerObservable, optional Coordination) or (TimePoint, optional Coordination)
\tparam TriggerSource the type of the trigger observable.
\tparam TimePoint the type of the time interval.
\tparam Coordination the type of the scheduler (optional).
\param t an observable whose first emitted item will stop emitting items from the source observable.
\param when a time point when the returned observable will stop emitting items.
\param cn the scheduler to use for scheduling the items (optional).
\return An observable that emits the items emitted by the source observable until trigger observable emitted or the time runs out.
\sample
\snippet take_until.cpp take_until sample
\snippet output.txt take_until sample
\sample
\snippet take_until.cpp threaded take_until sample
\snippet output.txt threaded take_until sample
\sample
\snippet take_until.cpp take_until time sample
\snippet output.txt take_until time sample
\sample
\snippet take_until.cpp threaded take_until time sample
\snippet output.txt threaded take_until time sample
*/
#if !defined(RXCPP_OPERATORS_RX_TAKE_UNTIL_HPP)
#define RXCPP_OPERATORS_RX_TAKE_UNTIL_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct take_until_invalid_arguments {};
template<class... AN>
struct take_until_invalid : public rxo::operator_base<take_until_invalid_arguments<AN...>> {
using type = observable<take_until_invalid_arguments<AN...>, take_until_invalid<AN...>>;
};
template<class... AN>
using take_until_invalid_t = typename take_until_invalid<AN...>::type;
template<class T, class Observable, class TriggerObservable, class Coordination>
struct take_until : public operator_base<T>
{
using source_type = rxu::decay_t<Observable>;
using trigger_source_type = rxu::decay_t<TriggerObservable>;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
struct values
{
values(source_type s, trigger_source_type t, coordination_type sf)
: source(std::move(s))
, trigger(std::move(t))
, coordination(std::move(sf))
{
}
source_type source;
trigger_source_type trigger;
coordination_type coordination;
};
values initial;
take_until(source_type s, trigger_source_type t, coordination_type sf)
: initial(std::move(s), std::move(t), std::move(sf))
{
}
struct mode
{
enum type {
taking, // no messages from trigger
clear, // trigger completed
triggered, // trigger sent on_next
errored, // error either on trigger or on observable
stopped // observable completed
};
};
template<class Subscriber>
void on_subscribe(Subscriber s) const {
using output_type = Subscriber;
struct take_until_state_type
: public std::enable_shared_from_this<take_until_state_type>
, public values
{
take_until_state_type(const values& i, coordinator_type coor, const output_type& oarg)
: values(i)
, mode_value(mode::taking)
, coordinator(std::move(coor))
, out(oarg)
{
out.add(trigger_lifetime);
out.add(source_lifetime);
}
typename mode::type mode_value;
composite_subscription trigger_lifetime;
composite_subscription source_lifetime;
coordinator_type coordinator;
output_type out;
};
auto coordinator = initial.coordination.create_coordinator(s.get_subscription());
// take a copy of the values for each subscription
auto state = std::make_shared<take_until_state_type>(initial, std::move(coordinator), std::move(s));
auto trigger = on_exception(
[&](){return state->coordinator.in(state->trigger);},
state->out);
if (trigger.empty()) {
return;
}
auto source = on_exception(
[&](){return state->coordinator.in(state->source);},
state->out);
if (source.empty()) {
return;
}
auto sinkTrigger = make_subscriber<typename trigger_source_type::value_type>(
// share parts of subscription
state->out,
// new lifetime
state->trigger_lifetime,
// on_next
[state](const typename trigger_source_type::value_type&) {
if (state->mode_value != mode::taking) {return;}
state->mode_value = mode::triggered;
state->out.on_completed();
},
// on_error
[state](rxu::error_ptr e) {
if (state->mode_value != mode::taking) {return;}
state->mode_value = mode::errored;
state->out.on_error(e);
},
// on_completed
[state]() {
if (state->mode_value != mode::taking) {return;}
state->mode_value = mode::clear;
}
);
auto selectedSinkTrigger = on_exception(
[&](){return state->coordinator.out(sinkTrigger);},
state->out);
if (selectedSinkTrigger.empty()) {
return;
}
trigger->subscribe(std::move(selectedSinkTrigger.get()));
auto sinkSource = make_subscriber<T>(
// split subscription lifetime
state->source_lifetime,
// on_next
[state](auto&& t) {
//
// everything is crafted to minimize the overhead of this function.
//
if (state->mode_value < mode::triggered) {
state->out.on_next(std::forward<decltype(t)>(t));
}
},
// on_error
[state](rxu::error_ptr e) {
if (state->mode_value > mode::clear) {return;}
state->mode_value = mode::errored;
state->out.on_error(e);
},
// on_completed
[state]() {
if (state->mode_value > mode::clear) {return;}
state->mode_value = mode::stopped;
state->out.on_completed();
}
);
auto selectedSinkSource = on_exception(
[&](){return state->coordinator.out(sinkSource);},
state->out);
if (selectedSinkSource.empty()) {
return;
}
source->subscribe(std::move(selectedSinkSource.get()));
}
};
}
/*! @copydoc rx-take_until.hpp
*/
template<class... AN>
auto take_until(AN&&... an)
-> operator_factory<take_until_tag, AN...> {
return operator_factory<take_until_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<take_until_tag>
{
template<class Observable, class TimePoint,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
std::is_convertible<TimePoint, rxsc::scheduler::clock_type::time_point>>,
class SourceValue = rxu::value_type_t<Observable>,
class Timer = typename rxu::defer_type<rxs::detail::timer, identity_one_worker>::type,
class TimerValue = rxu::value_type_t<Timer>,
class TriggerObservable = observable<TimerValue, Timer>,
class TakeUntil = rxo::detail::take_until<SourceValue, rxu::decay_t<Observable>, TriggerObservable, identity_one_worker>,
class Value = rxu::value_type_t<TakeUntil>,
class Result = observable<Value, TakeUntil>>
static Result member(Observable&& o, TimePoint&& when) {
auto cn = identity_current_thread();
return Result(TakeUntil(std::forward<Observable>(o), rxs::timer(std::forward<TimePoint>(when), cn), cn));
}
template<class Observable, class TimePoint, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_coordination<Coordination>,
std::is_convertible<TimePoint, rxsc::scheduler::clock_type::time_point>>,
class SourceValue = rxu::value_type_t<Observable>,
class Timer = typename rxu::defer_type<rxs::detail::timer, rxu::decay_t<Coordination>>::type,
class TimerValue = rxu::value_type_t<Timer>,
class TriggerObservable = observable<TimerValue, Timer>,
class TakeUntil = rxo::detail::take_until<SourceValue, rxu::decay_t<Observable>, TriggerObservable, rxu::decay_t<Coordination>>,
class Value = rxu::value_type_t<TakeUntil>,
class Result = observable<Value, TakeUntil>>
static Result member(Observable&& o, TimePoint&& when, Coordination cn) {
return Result(TakeUntil(std::forward<Observable>(o), rxs::timer(std::forward<TimePoint>(when), cn), cn));
}
template<class Observable, class TriggerObservable,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, TriggerObservable>>,
class SourceValue = rxu::value_type_t<Observable>,
class TakeUntil = rxo::detail::take_until<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<TriggerObservable>, identity_one_worker>,
class Value = rxu::value_type_t<TakeUntil>,
class Result = observable<Value, TakeUntil>>
static Result member(Observable&& o, TriggerObservable&& t) {
return Result(TakeUntil(std::forward<Observable>(o), std::forward<TriggerObservable>(t), identity_current_thread()));
}
template<class Observable, class TriggerObservable, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, TriggerObservable>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class TakeUntil = rxo::detail::take_until<SourceValue, rxu::decay_t<Observable>, rxu::decay_t<TriggerObservable>, rxu::decay_t<Coordination>>,
class Value = rxu::value_type_t<TakeUntil>,
class Result = observable<Value, TakeUntil>>
static Result member(Observable&& o, TriggerObservable&& t, Coordination&& cn) {
return Result(TakeUntil(std::forward<Observable>(o), std::forward<TriggerObservable>(t), std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::take_until_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "take_until takes (TriggerObservable, optional Coordination) or (TimePoint, optional Coordination)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \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
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct take_while_invalid_arguments {};
template<class... AN>
struct take_while_invalid : public rxo::operator_base<take_while_invalid_arguments<AN...>> {
using type = observable<take_while_invalid_arguments<AN...>, take_while_invalid<AN...>>;
};
template<class... AN>
using take_while_invalid_t = typename take_while_invalid<AN...>::type;
template<class T, class Predicate>
struct take_while
{
using source_value_type = rxu::decay_t<T>;
using test_type = rxu::decay_t<Predicate>;
test_type test;
take_while(test_type t)
: test(std::move(t))
{
}
template<class Subscriber>
struct take_while_observer
{
using this_type = take_while_observer<Subscriber>;
using value_type = source_value_type;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<value_type, this_type>;
dest_type dest;
test_type test;
take_while_observer(dest_type d, test_type t)
: dest(std::move(d))
, test(std::move(t))
{
}
template<typename U>
void on_next(U&& v) const {
if (test(v)) {
dest.on_next(std::forward<U>(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<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(take_while_observer<Subscriber>::make(std::move(dest), test)) {
return take_while_observer<Subscriber>::make(std::move(dest), test);
}
};
}
/*! @copydoc rx-take_while.hpp
*/
template<class... AN>
auto take_while(AN&&... an)
-> operator_factory<take_while_tag, AN...> {
return operator_factory<take_while_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<take_while_tag>
{
template<class Observable, class Predicate,
class SourceValue = rxu::value_type_t<Observable>,
class TakeWhile = rxo::detail::take_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::take_while_invalid_t<AN...> member(const AN&...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "take_while takes (Predicate)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-tap.hpp
\brief inspect calls to on_next, on_error and on_completed.
\tparam MakeObserverArgN... these args are passed to make_observer.
\param an these args are passed to make_observer.
\return Observable that emits the same items as the source observable to both the subscriber and the observer.
\note If an on_error method is not supplied the observer will ignore errors rather than call std::terminate()
\sample
\snippet tap.cpp tap sample
\snippet output.txt tap sample
If the source observable generates an error, the observer passed to tap is called:
\snippet tap.cpp error tap sample
\snippet output.txt error tap sample
*/
#if !defined(RXCPP_OPERATORS_RX_TAP_HPP)
#define RXCPP_OPERATORS_RX_TAP_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct tap_invalid_arguments {};
template<class... AN>
struct tap_invalid : public rxo::operator_base<tap_invalid_arguments<AN...>> {
using type = observable<tap_invalid_arguments<AN...>, tap_invalid<AN...>>;
};
template<class... AN>
using tap_invalid_t = typename tap_invalid<AN...>::type;
template<class T, class MakeObserverArgN>
struct tap_observer_factory;
template<class T, class... ArgN>
struct tap_observer_factory<T, std::tuple<ArgN...>>
{
using source_value_type = rxu::decay_t<T>;
using out_type = decltype(make_observer<source_value_type, rxcpp::detail::OnErrorIgnore>((std::declval<ArgN>())...));
auto operator()(ArgN&&... an) -> out_type const {
return make_observer<source_value_type, rxcpp::detail::OnErrorIgnore>(std::forward<ArgN>(an)...);
}
};
template<class T, class MakeObserverArgN, class Factory = tap_observer_factory<T, MakeObserverArgN>>
struct tap
{
using source_value_type = rxu::decay_t<T>;
using args_type = rxu::decay_t<MakeObserverArgN>;
using factory_type = Factory;
using out_type = typename factory_type::out_type;
out_type out;
tap(args_type a)
: out(rxu::apply(std::move(a), factory_type()))
{
}
template<class Subscriber>
struct tap_observer
{
using this_type = tap_observer<Subscriber>;
using value_type = source_value_type;
using dest_type = rxu::decay_t<Subscriber>;
using factory_type = Factory;
using out_type = typename factory_type::out_type;
using observer_type = observer<value_type, this_type>;
dest_type dest;
out_type out;
tap_observer(dest_type d, out_type o)
: dest(std::move(d))
, out(std::move(o))
{
}
template<typename U>
void on_next(U&& v) const {
out.on_next(v);
dest.on_next(std::forward<U>(v));
}
void on_error(rxu::error_ptr e) const {
out.on_error(e);
dest.on_error(e);
}
void on_completed() const {
out.on_completed();
dest.on_completed();
}
static subscriber<value_type, observer<value_type, this_type>> make(dest_type d, out_type o) {
return make_subscriber<value_type>(d, this_type(d, std::move(o)));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(tap_observer<Subscriber>::make(std::move(dest), out)) {
return tap_observer<Subscriber>::make(std::move(dest), out);
}
};
}
/*! @copydoc rx-tap.hpp
*/
template<class... AN>
auto tap(AN&&... an)
-> operator_factory<tap_tag, AN...> {
return operator_factory<tap_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<tap_tag>
{
template<class Observable, class... MakeObserverArgN,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Tap = rxo::detail::tap<SourceValue, std::tuple<rxu::decay_t<MakeObserverArgN>...>>>
static auto member(Observable&& o, MakeObserverArgN&&... an)
-> decltype(o.template lift<SourceValue>(Tap(std::make_tuple(std::forward<MakeObserverArgN>(an)...)))) {
return o.template lift<SourceValue>(Tap(std::make_tuple(std::forward<MakeObserverArgN>(an)...)));
}
template<class... AN>
static operators::detail::tap_invalid_t<AN...> member(const AN&...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "tap takes (MakeObserverArgN...)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-time_interval.hpp
\brief Returns an observable that emits indications of the amount of time lapsed between consecutive emissions of the source observable.
The first emission from this new Observable indicates the amount of time lapsed between the time when the observer subscribed to the Observable and the time when the source Observable emitted its first item.
\tparam Coordination the type of the scheduler.
\param coordination the scheduler for time intervals.
\return Observable that emits a time_duration to indicate the amount of time lapsed between pairs of emissions.
\sample
\snippet time_interval.cpp time_interval sample
\snippet output.txt time_interval sample
*/
#if !defined(RXCPP_OPERATORS_RX_TIME_INTERVAL_HPP)
#define RXCPP_OPERATORS_RX_TIME_INTERVAL_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct time_interval_invalid_arguments {};
template<class... AN>
struct time_interval_invalid : public rxo::operator_base<time_interval_invalid_arguments<AN...>> {
using type = observable<time_interval_invalid_arguments<AN...>, time_interval_invalid<AN...>>;
};
template<class... AN>
using time_interval_invalid_t = typename time_interval_invalid<AN...>::type;
template<class T, class Coordination>
struct time_interval
{
using source_value_type = rxu::decay_t<T>;
using coordination_type = rxu::decay_t<Coordination>;
struct time_interval_values {
time_interval_values(coordination_type c)
: coordination(c)
{
}
coordination_type coordination;
};
time_interval_values initial;
time_interval(coordination_type coordination)
: initial(coordination)
{
}
template<class Subscriber>
struct time_interval_observer
{
using this_type = time_interval_observer<Subscriber>;
using value_type = source_value_type;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<value_type, this_type>;
using time_point = rxsc::scheduler::clock_type::time_point;
dest_type dest;
coordination_type coord;
mutable time_point last;
time_interval_observer(dest_type d, coordination_type coordination)
: dest(std::move(d)),
coord(std::move(coordination)),
last(coord.now())
{
}
void on_next(const source_value_type&) const {
time_point now = coord.now();
dest.on_next(now - last);
last = now;
}
void on_error(rxu::error_ptr e) const {
dest.on_error(e);
}
void on_completed() const {
dest.on_completed();
}
static subscriber<value_type, observer_type> make(dest_type d, time_interval_values v) {
return make_subscriber<value_type>(d, this_type(d, v.coordination));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(time_interval_observer<Subscriber>::make(std::move(dest), initial)) {
return time_interval_observer<Subscriber>::make(std::move(dest), initial);
}
};
}
/*! @copydoc rx-time_interval.hpp
*/
template<class... AN>
auto time_interval(AN&&... an)
-> operator_factory<time_interval_tag, AN...> {
return operator_factory<time_interval_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<time_interval_tag>
{
template<class Observable,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class TimeInterval = rxo::detail::time_interval<SourceValue, identity_one_worker>,
class Value = typename rxsc::scheduler::clock_type::time_point::duration>
static auto member(Observable&& o)
-> decltype(o.template lift<Value>(TimeInterval(identity_current_thread()))) {
return o.template lift<Value>(TimeInterval(identity_current_thread()));
}
template<class Observable, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class TimeInterval = rxo::detail::time_interval<SourceValue, rxu::decay_t<Coordination>>,
class Value = typename rxsc::scheduler::clock_type::time_point::duration>
static auto member(Observable&& o, Coordination&& cn)
-> decltype(o.template lift<Value>(TimeInterval(std::forward<Coordination>(cn)))) {
return o.template lift<Value>(TimeInterval(std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::time_interval_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "time_interval takes (optional Coordination)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-timeout.hpp
\brief Return an observable that terminates with timeout_error if a particular timespan has passed without emitting another item from the source observable.
\tparam Duration the type of time interval.
\tparam Coordination the type of the scheduler (optional).
\param period the period of time wait for another item from the source observable.
\param coordination the scheduler to manage timeout for each event (optional).
\return Observable that terminates with an error if a particular timespan has passed without emitting another item from the source observable.
\sample
\snippet timeout.cpp timeout sample
\snippet output.txt timeout sample
*/
#if !defined(RXCPP_OPERATORS_RX_TIMEOUT_HPP)
#define RXCPP_OPERATORS_RX_TIMEOUT_HPP
namespace rxcpp {
class timeout_error: public std::runtime_error
{
public:
explicit timeout_error(const std::string& msg):
std::runtime_error(msg)
{}
};
namespace operators {
namespace detail {
template<class... AN>
struct timeout_invalid_arguments {};
template<class... AN>
struct timeout_invalid : public rxo::operator_base<timeout_invalid_arguments<AN...>> {
using type = observable<timeout_invalid_arguments<AN...>, timeout_invalid<AN...>>;
};
template<class... AN>
using timeout_invalid_t = typename timeout_invalid<AN...>::type;
template<class T, class Duration, class Coordination>
struct timeout
{
using source_value_type = rxu::decay_t<T>;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
using duration_type = rxu::decay_t<Duration>;
struct timeout_values
{
timeout_values(duration_type p, coordination_type c)
: period(p)
, coordination(c)
{
}
duration_type period;
coordination_type coordination;
};
timeout_values initial;
timeout(duration_type period, coordination_type coordination)
: initial(period, coordination)
{
}
template<class Subscriber>
struct timeout_observer
{
using this_type = timeout_observer<Subscriber>;
using value_type = rxu::decay_t<T>;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<T, this_type>;
struct timeout_subscriber_values : public timeout_values
{
timeout_subscriber_values(composite_subscription cs, dest_type d, timeout_values v, coordinator_type c)
: timeout_values(v)
, cs(std::move(cs))
, dest(std::move(d))
, coordinator(std::move(c))
, worker(coordinator.get_worker())
, index(0)
{
}
composite_subscription cs;
dest_type dest;
coordinator_type coordinator;
rxsc::worker worker;
mutable std::size_t index;
};
using state_type = std::shared_ptr<timeout_subscriber_values>;
state_type state;
timeout_observer(composite_subscription cs, dest_type d, timeout_values v, coordinator_type c)
: state(std::make_shared<timeout_subscriber_values>(timeout_subscriber_values(std::move(cs), std::move(d), v, std::move(c))))
{
auto localState = state;
auto disposer = [=](const rxsc::schedulable&){
localState->cs.unsubscribe();
localState->dest.unsubscribe();
localState->worker.unsubscribe();
};
auto selectedDisposer = on_exception(
[&](){ return localState->coordinator.act(disposer); },
localState->dest);
if (selectedDisposer.empty()) {
return;
}
localState->dest.add([=](){
localState->worker.schedule(selectedDisposer.get());
});
localState->cs.add([=](){
localState->worker.schedule(selectedDisposer.get());
});
auto work = [v, localState](const rxsc::schedulable&) {
auto new_id = ++localState->index;
auto produce_time = localState->worker.now() + localState->period;
localState->worker.schedule(produce_time, produce_timeout(new_id, localState));
};
auto selectedWork = on_exception(
[&](){return localState->coordinator.act(work);},
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
static std::function<void(const rxsc::schedulable&)> produce_timeout(std::size_t id, state_type state) {
auto produce = [id, state](const rxsc::schedulable&) {
if(id != state->index)
return;
state->dest.on_error(rxu::make_error_ptr(rxcpp::timeout_error("timeout has occurred")));
};
auto selectedProduce = on_exception(
[&](){ return state->coordinator.act(produce); },
state->dest);
if (selectedProduce.empty()) {
return std::function<void(const rxsc::schedulable&)>();
}
return std::function<void(const rxsc::schedulable&)>(selectedProduce.get());
}
void on_next(const T& v) const {
auto localState = state;
auto work = [v, localState](const rxsc::schedulable&) {
auto new_id = ++localState->index;
auto produce_time = localState->worker.now() + localState->period;
localState->dest.on_next(std::move(v));
localState->worker.schedule(produce_time, produce_timeout(new_id, localState));
};
auto selectedWork = on_exception(
[&](){return localState->coordinator.act(work);},
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
void on_error(rxu::error_ptr e) const {
auto localState = state;
auto work = [e, localState](const rxsc::schedulable&) {
localState->dest.on_error(e);
};
auto selectedWork = on_exception(
[&](){ return localState->coordinator.act(work); },
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
void on_completed() const {
auto localState = state;
auto work = [localState](const rxsc::schedulable&) {
localState->dest.on_completed();
};
auto selectedWork = on_exception(
[&](){ return localState->coordinator.act(work); },
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
static subscriber<T, observer_type> make(dest_type d, timeout_values v) {
auto cs = composite_subscription();
auto coordinator = v.coordination.create_coordinator();
return make_subscriber<T>(cs, observer_type(this_type(cs, std::move(d), std::move(v), std::move(coordinator))));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(timeout_observer<Subscriber>::make(std::move(dest), initial)) {
return timeout_observer<Subscriber>::make(std::move(dest), initial);
}
};
}
/*! @copydoc rx-timeout.hpp
*/
template<class... AN>
auto timeout(AN&&... an)
-> operator_factory<timeout_tag, AN...> {
return operator_factory<timeout_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<timeout_tag>
{
template<class Observable, class Duration,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
rxu::is_duration<Duration>>,
class SourceValue = rxu::value_type_t<Observable>,
class Timeout = rxo::detail::timeout<SourceValue, rxu::decay_t<Duration>, identity_one_worker>>
static auto member(Observable&& o, Duration&& d)
-> decltype(o.template lift<SourceValue>(Timeout(std::forward<Duration>(d), identity_current_thread()))) {
return o.template lift<SourceValue>(Timeout(std::forward<Duration>(d), identity_current_thread()));
}
template<class Observable, class Coordination, class Duration,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_coordination<Coordination>,
rxu::is_duration<Duration>>,
class SourceValue = rxu::value_type_t<Observable>,
class Timeout = rxo::detail::timeout<SourceValue, rxu::decay_t<Duration>, rxu::decay_t<Coordination>>>
static auto member(Observable&& o, Coordination&& cn, Duration&& d)
-> decltype(o.template lift<SourceValue>(Timeout(std::forward<Duration>(d), std::forward<Coordination>(cn)))) {
return o.template lift<SourceValue>(Timeout(std::forward<Duration>(d), std::forward<Coordination>(cn)));
}
template<class Observable, class Coordination, class Duration,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_coordination<Coordination>,
rxu::is_duration<Duration>>,
class SourceValue = rxu::value_type_t<Observable>,
class Timeout = rxo::detail::timeout<SourceValue, rxu::decay_t<Duration>, rxu::decay_t<Coordination>>>
static auto member(Observable&& o, Duration&& d, Coordination&& cn)
-> decltype(o.template lift<SourceValue>(Timeout(std::forward<Duration>(d), std::forward<Coordination>(cn)))) {
return o.template lift<SourceValue>(Timeout(std::forward<Duration>(d), std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::timeout_invalid_t<AN...> member(const AN&...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "timeout takes (optional Coordination, required Duration) or (required Duration, optional Coordination)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-timestamp.hpp
\brief Returns an observable that attaches a timestamp to each item emitted by the source observable indicating when it was emitted.
\tparam Coordination the type of the scheduler (optional).
\param coordination the scheduler to manage timeout for each event (optional).
\return Observable that emits a pair: { item emitted by the source observable, time_point representing the current value of the clock }.
\sample
\snippet timestamp.cpp timestamp sample
\snippet output.txt timestamp sample
*/
#if !defined(RXCPP_OPERATORS_RX_TIMESTAMP_HPP)
#define RXCPP_OPERATORS_RX_TIMESTAMP_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct timestamp_invalid_arguments {};
template<class... AN>
struct timestamp_invalid : public rxo::operator_base<timestamp_invalid_arguments<AN...>> {
using type = observable<timestamp_invalid_arguments<AN...>, timestamp_invalid<AN...>>;
};
template<class... AN>
using timestamp_invalid_t = typename timestamp_invalid<AN...>::type;
template<class T, class Coordination>
struct timestamp
{
using source_value_type = rxu::decay_t<T>;
using coordination_type = rxu::decay_t<Coordination>;
struct timestamp_values {
timestamp_values(coordination_type c)
: coordination(c)
{
}
coordination_type coordination;
};
timestamp_values initial;
timestamp(coordination_type coordination)
: initial(coordination)
{
}
template<class Subscriber>
struct timestamp_observer
{
using this_type = timestamp_observer<Subscriber>;
using value_type = source_value_type;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<value_type, this_type>;
dest_type dest;
coordination_type coord;
timestamp_observer(dest_type d, coordination_type coordination)
: dest(std::move(d)),
coord(std::move(coordination))
{
}
template<typename U>
void on_next(U&& v) const {
dest.on_next(std::make_pair(std::forward<U>(v), coord.now()));
}
void on_error(rxu::error_ptr e) const {
dest.on_error(e);
}
void on_completed() const {
dest.on_completed();
}
static subscriber<value_type, observer_type> make(dest_type d, timestamp_values v) {
return make_subscriber<value_type>(d, this_type(d, v.coordination));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(timestamp_observer<Subscriber>::make(std::move(dest), initial)) {
return timestamp_observer<Subscriber>::make(std::move(dest), initial);
}
};
}
/*! @copydoc rx-timestamp.hpp
*/
template<class... AN>
auto timestamp(AN&&... an)
-> operator_factory<timestamp_tag, AN...> {
return operator_factory<timestamp_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<timestamp_tag>
{
template<class Observable,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Timestamp = rxo::detail::timestamp<SourceValue, identity_one_worker>,
class Clock = typename rxsc::scheduler::clock_type::time_point,
class Value = std::pair<SourceValue, Clock>>
static auto member(Observable&& o)
-> decltype(o.template lift<Value>(Timestamp(identity_current_thread()))) {
return o.template lift<Value>(Timestamp(identity_current_thread()));
}
template<class Observable, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class Timestamp = rxo::detail::timestamp<SourceValue, rxu::decay_t<Coordination>>,
class Clock = typename rxsc::scheduler::clock_type::time_point,
class Value = std::pair<SourceValue, Clock>>
static auto member(Observable&& o, Coordination&& cn)
-> decltype(o.template lift<Value>(Timestamp(std::forward<Coordination>(cn)))) {
return o.template lift<Value>(Timestamp(std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::timestamp_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "timestamp takes (optional Coordination)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-window.hpp
\brief Return an observable that emits connected, non-overlapping windows, each containing at most count items from the source observable.
If the skip parameter is set, return an observable that emits windows every skip items containing at most count items from the source observable.
\param count the maximum size of each window before it should be completed
\param skip how many items need to be skipped before starting a new window
\return Observable that emits connected, non-overlapping windows, each containing at most count items from the source observable.
If the skip parameter is set, return an Observable that emits windows every skip items containing at most count items from the source observable.
\sample
\snippet window.cpp window count+skip sample
\snippet output.txt window count+skip sample
\sample
\snippet window.cpp window count sample
\snippet output.txt window count sample
*/
#if !defined(RXCPP_OPERATORS_RX_WINDOW_HPP)
#define RXCPP_OPERATORS_RX_WINDOW_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct window_invalid_arguments {};
template<class... AN>
struct window_invalid : public rxo::operator_base<window_invalid_arguments<AN...>> {
using type = observable<window_invalid_arguments<AN...>, window_invalid<AN...>>;
};
template<class... AN>
using window_invalid_t = typename window_invalid<AN...>::type;
template<class T>
struct window
{
using source_value_type = rxu::decay_t<T>;
using value_type = observable<source_value_type>;
struct window_values
{
window_values(int c, int s)
: count(c)
, skip(s)
{
}
int count;
int skip;
};
window_values initial;
window(int count, int skip)
: initial(count, skip)
{
}
template<class Subscriber>
struct window_observer : public window_values
{
using this_type = window_observer<Subscriber>;
using value_type = rxu::decay_t<T>;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<T, this_type>;
dest_type dest;
mutable int cursor;
mutable std::deque<rxcpp::subjects::subject<T>> subj;
window_observer(dest_type d, window_values v)
: window_values(v)
, dest(std::move(d))
, cursor(0)
{
subj.push_back(rxcpp::subjects::subject<T>());
dest.on_next(subj[0].get_observable().as_dynamic());
}
void on_next(const T& v) const {
for (const auto& s : subj) {
s.get_subscriber().on_next(v);
}
int c = cursor - this->count + 1;
if (c >= 0 && c % this->skip == 0) {
subj[0].get_subscriber().on_completed();
subj.pop_front();
}
if (++cursor % this->skip == 0) {
subj.push_back(rxcpp::subjects::subject<T>());
dest.on_next(subj[subj.size() - 1].get_observable().as_dynamic());
}
}
void on_error(rxu::error_ptr e) const {
for (auto s : subj) {
s.get_subscriber().on_error(e);
}
dest.on_error(e);
}
void on_completed() const {
for (auto s : subj) {
s.get_subscriber().on_completed();
}
dest.on_completed();
}
static subscriber<T, observer_type> make(dest_type d, window_values v) {
auto cs = d.get_subscription();
return make_subscriber<T>(std::move(cs), observer_type(this_type(std::move(d), std::move(v))));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(window_observer<Subscriber>::make(std::move(dest), initial)) {
return window_observer<Subscriber>::make(std::move(dest), initial);
}
};
}
/*! @copydoc rx-window.hpp
*/
template<class... AN>
auto window(AN&&... an)
-> operator_factory<window_tag, AN...> {
return operator_factory<window_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<window_tag>
{
template<class Observable,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Window = rxo::detail::window<SourceValue>,
class Value = rxu::value_type_t<Window>>
static auto member(Observable&& o, int count, int skip)
-> decltype(o.template lift<Value>(Window(count, skip))) {
return o.template lift<Value>(Window(count, skip));
}
template<class Observable,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>>,
class SourceValue = rxu::value_type_t<Observable>,
class Window = rxo::detail::window<SourceValue>,
class Value = rxu::value_type_t<Window>>
static auto member(Observable&& o, int count)
-> decltype(o.template lift<Value>(Window(count, count))) {
return o.template lift<Value>(Window(count, count));
}
template<class... AN>
static operators::detail::window_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "window takes (Count, optional Skip)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-window_time.hpp
\brief Return an observable that emits observables every period time interval and collects items from this observable for period of time into each produced observable, on the specified scheduler.
If the skip parameter is set, return an observable that emits observables every skip time interval and collects items from this observable for period of time into each produced observable, on the specified scheduler.
\tparam Duration the type of time intervals.
\tparam Coordination the type of the scheduler (optional).
\param period the period of time each window collects items before it is completed.
\param skip the period of time after which a new window will be created.
\param coordination the scheduler for the windows (optional).
\return Observable that emits observables every period time interval and collect items from this observable for period of time into each produced observable.
If the skip parameter is set, return an Observable that emits observables every skip time interval and collect items from this observable for period of time into each produced observable.
\sample
\snippet window.cpp window period+skip+coordination sample
\snippet output.txt window period+skip+coordination sample
\sample
\snippet window.cpp window period+skip sample
\snippet output.txt window period+skip sample
\sample
\snippet window.cpp window period+coordination sample
\snippet output.txt window period+coordination sample
\sample
\snippet window.cpp window period sample
\snippet output.txt window period sample
*/
#if !defined(RXCPP_OPERATORS_RX_WINDOW_WITH_TIME_HPP)
#define RXCPP_OPERATORS_RX_WINDOW_WITH_TIME_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct window_with_time_invalid_arguments {};
template<class... AN>
struct window_with_time_invalid : public rxo::operator_base<window_with_time_invalid_arguments<AN...>> {
using type = observable<window_with_time_invalid_arguments<AN...>, window_with_time_invalid<AN...>>;
};
template<class... AN>
using window_with_time_invalid_t = typename window_with_time_invalid<AN...>::type;
template<class T, class Duration, class Coordination>
struct window_with_time
{
using source_value_type = rxu::decay_t<T>;
using value_type = observable<source_value_type>;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
using duration_type = rxu::decay_t<Duration>;
struct window_with_time_values
{
window_with_time_values(duration_type p, duration_type s, coordination_type c)
: period(p)
, skip(s)
, coordination(c)
{
}
duration_type period;
duration_type skip;
coordination_type coordination;
};
window_with_time_values initial;
window_with_time(duration_type period, duration_type skip, coordination_type coordination)
: initial(period, skip, coordination)
{
}
template<class Subscriber>
struct window_with_time_observer
{
using this_type = window_with_time_observer<Subscriber>;
using value_type = rxu::decay_t<T>;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<T, this_type>;
struct window_with_time_subscriber_values : public window_with_time_values
{
window_with_time_subscriber_values(composite_subscription cs, dest_type d, window_with_time_values v, coordinator_type c)
: window_with_time_values(v)
, cs(std::move(cs))
, dest(std::move(d))
, coordinator(std::move(c))
, worker(coordinator.get_worker())
, expected(worker.now())
{
}
composite_subscription cs;
dest_type dest;
coordinator_type coordinator;
rxsc::worker worker;
mutable std::deque<rxcpp::subjects::subject<T>> subj;
rxsc::scheduler::clock_type::time_point expected;
};
std::shared_ptr<window_with_time_subscriber_values> state;
window_with_time_observer(composite_subscription cs, dest_type d, window_with_time_values v, coordinator_type c)
: state(std::make_shared<window_with_time_subscriber_values>(window_with_time_subscriber_values(std::move(cs), std::move(d), v, std::move(c))))
{
auto localState = state;
auto disposer = [=](const rxsc::schedulable&){
localState->cs.unsubscribe();
localState->dest.unsubscribe();
localState->worker.unsubscribe();
};
auto selectedDisposer = on_exception(
[&](){return localState->coordinator.act(disposer);},
localState->dest);
if (selectedDisposer.empty()) {
return;
}
localState->dest.add([=](){
localState->worker.schedule(selectedDisposer.get());
});
localState->cs.add([=](){
localState->worker.schedule(selectedDisposer.get());
});
//
// The scheduler is FIFO for any time T. Since the observer is scheduling
// on_next/on_error/oncompleted the timed schedule calls must be resheduled
// when they occur to ensure that production happens after on_next/on_error/oncompleted
//
auto release_window = [localState](const rxsc::schedulable&) {
localState->worker.schedule([localState](const rxsc::schedulable&) {
localState->subj[0].get_subscriber().on_completed();
localState->subj.pop_front();
});
};
auto selectedRelease = on_exception(
[&](){return localState->coordinator.act(release_window);},
localState->dest);
if (selectedRelease.empty()) {
return;
}
auto create_window = [localState, selectedRelease](const rxsc::schedulable&) {
localState->subj.push_back(rxcpp::subjects::subject<T>());
localState->dest.on_next(localState->subj[localState->subj.size() - 1].get_observable().as_dynamic());
auto produce_at = localState->expected + localState->period;
localState->expected += localState->skip;
localState->worker.schedule(produce_at, [localState, selectedRelease](const rxsc::schedulable&) {
localState->worker.schedule(selectedRelease.get());
});
};
auto selectedCreate = on_exception(
[&](){return localState->coordinator.act(create_window);},
localState->dest);
if (selectedCreate.empty()) {
return;
}
state->worker.schedule_periodically(
state->expected,
state->skip,
[localState, selectedCreate](const rxsc::schedulable&) {
localState->worker.schedule(selectedCreate.get());
});
}
void on_next(T v) const {
auto localState = state;
auto work = [v, localState](const rxsc::schedulable&){
for (auto s : localState->subj) {
s.get_subscriber().on_next(v);
}
};
auto selectedWork = on_exception(
[&](){return localState->coordinator.act(work);},
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
void on_error(rxu::error_ptr e) const {
auto localState = state;
auto work = [e, localState](const rxsc::schedulable&){
for (auto s : localState->subj) {
s.get_subscriber().on_error(e);
}
localState->dest.on_error(e);
};
auto selectedWork = on_exception(
[&](){return localState->coordinator.act(work);},
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
void on_completed() const {
auto localState = state;
auto work = [localState](const rxsc::schedulable&){
for (auto s : localState->subj) {
s.get_subscriber().on_completed();
}
localState->dest.on_completed();
};
auto selectedWork = on_exception(
[&](){return localState->coordinator.act(work);},
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
static subscriber<T, observer_type> make(dest_type d, window_with_time_values v) {
auto cs = composite_subscription();
auto coordinator = v.coordination.create_coordinator();
return make_subscriber<T>(cs, observer_type(this_type(cs, std::move(d), std::move(v), std::move(coordinator))));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(window_with_time_observer<Subscriber>::make(std::move(dest), initial)) {
return window_with_time_observer<Subscriber>::make(std::move(dest), initial);
}
};
}
/*! @copydoc rx-window_time.hpp
*/
template<class... AN>
auto window_with_time(AN&&... an)
-> operator_factory<window_with_time_tag, AN...> {
return operator_factory<window_with_time_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<window_with_time_tag>
{
template<class Observable, class Duration,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
std::is_convertible<Duration, rxsc::scheduler::clock_type::duration>>,
class SourceValue = rxu::value_type_t<Observable>,
class WindowWithTime = rxo::detail::window_with_time<SourceValue, rxu::decay_t<Duration>, identity_one_worker>,
class Value = rxu::value_type_t<WindowWithTime>>
static auto member(Observable&& o, Duration period)
-> decltype(o.template lift<Value>(WindowWithTime(period, period, identity_current_thread()))) {
return o.template lift<Value>(WindowWithTime(period, period, identity_current_thread()));
}
template<class Observable, class Duration, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
std::is_convertible<Duration, rxsc::scheduler::clock_type::duration>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class WindowWithTime = rxo::detail::window_with_time<SourceValue, rxu::decay_t<Duration>, rxu::decay_t<Coordination>>,
class Value = rxu::value_type_t<WindowWithTime>>
static auto member(Observable&& o, Duration period, Coordination&& cn)
-> decltype(o.template lift<Value>(WindowWithTime(period, period, std::forward<Coordination>(cn)))) {
return o.template lift<Value>(WindowWithTime(period, period, std::forward<Coordination>(cn)));
}
template<class Observable, class Duration,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
std::is_convertible<Duration, rxsc::scheduler::clock_type::duration>>,
class SourceValue = rxu::value_type_t<Observable>,
class WindowWithTime = rxo::detail::window_with_time<SourceValue, rxu::decay_t<Duration>, identity_one_worker>,
class Value = rxu::value_type_t<WindowWithTime>>
static auto member(Observable&& o, Duration&& period, Duration&& skip)
-> decltype(o.template lift<Value>(WindowWithTime(std::forward<Duration>(period), std::forward<Duration>(skip), identity_current_thread()))) {
return o.template lift<Value>(WindowWithTime(std::forward<Duration>(period), std::forward<Duration>(skip), identity_current_thread()));
}
template<class Observable, class Duration, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
std::is_convertible<Duration, rxsc::scheduler::clock_type::duration>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class WindowWithTime = rxo::detail::window_with_time<SourceValue, rxu::decay_t<Duration>, rxu::decay_t<Coordination>>,
class Value = rxu::value_type_t<WindowWithTime>>
static auto member(Observable&& o, Duration&& period, Duration&& skip, Coordination&& cn)
-> decltype(o.template lift<Value>(WindowWithTime(std::forward<Duration>(period), std::forward<Duration>(skip), std::forward<Coordination>(cn)))) {
return o.template lift<Value>(WindowWithTime(std::forward<Duration>(period), std::forward<Duration>(skip), std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::window_with_time_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "window_with_time takes (Duration, optional Duration, optional Coordination)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-window_time_count.hpp
\brief Return an observable that emits connected, non-overlapping windows of items from the source observable that were emitted during a fixed duration of time or when the window has reached maximum capacity (whichever occurs first), on the specified scheduler.
\tparam Duration the type of time intervals.
\tparam Coordination the type of the scheduler (optional).
\param period the period of time each window collects items before it is completed and replaced with a new window.
\param count the maximum size of each window before it is completed and new window is created.
\param coordination the scheduler for the windows (optional).
\return Observable that emits connected, non-overlapping windows of items from the source observable that were emitted during a fixed duration of time or when the window has reached maximum capacity (whichever occurs first).
\sample
\snippet window.cpp window period+count+coordination sample
\snippet output.txt window period+count+coordination sample
\sample
\snippet window.cpp window period+count sample
\snippet output.txt window period+count sample
*/
#if !defined(RXCPP_OPERATORS_RX_WINDOW_WITH_TIME_OR_COUNT_HPP)
#define RXCPP_OPERATORS_RX_WINDOW_WITH_TIME_OR_COUNT_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct window_with_time_or_count_invalid_arguments {};
template<class... AN>
struct window_with_time_or_count_invalid : public rxo::operator_base<window_with_time_or_count_invalid_arguments<AN...>> {
using type = observable<window_with_time_or_count_invalid_arguments<AN...>, window_with_time_or_count_invalid<AN...>>;
};
template<class... AN>
using window_with_time_or_count_invalid_t = typename window_with_time_or_count_invalid<AN...>::type;
template<class T, class Duration, class Coordination>
struct window_with_time_or_count
{
using source_value_type = rxu::decay_t<T>;
using value_type = observable<source_value_type>;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
using duration_type = rxu::decay_t<Duration>;
struct window_with_time_or_count_values
{
window_with_time_or_count_values(duration_type p, int n, coordination_type c)
: period(p)
, count(n)
, coordination(c)
{
}
duration_type period;
int count;
coordination_type coordination;
};
window_with_time_or_count_values initial;
window_with_time_or_count(duration_type period, int count, coordination_type coordination)
: initial(period, count, coordination)
{
}
template<class Subscriber>
struct window_with_time_or_count_observer
{
using this_type = window_with_time_or_count_observer<Subscriber>;
using value_type = rxu::decay_t<T>;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<T, this_type>;
struct window_with_time_or_count_subscriber_values : public window_with_time_or_count_values
{
window_with_time_or_count_subscriber_values(composite_subscription cs, dest_type d, window_with_time_or_count_values v, coordinator_type c)
: window_with_time_or_count_values(std::move(v))
, cs(std::move(cs))
, dest(std::move(d))
, coordinator(std::move(c))
, worker(coordinator.get_worker())
, cursor(0)
, subj_id(0)
{
}
composite_subscription cs;
dest_type dest;
coordinator_type coordinator;
rxsc::worker worker;
mutable int cursor;
mutable int subj_id;
mutable rxcpp::subjects::subject<T> subj;
};
using state_type = std::shared_ptr<window_with_time_or_count_subscriber_values>;
state_type state;
window_with_time_or_count_observer(composite_subscription cs, dest_type d, window_with_time_or_count_values v, coordinator_type c)
: state(std::make_shared<window_with_time_or_count_subscriber_values>(window_with_time_or_count_subscriber_values(std::move(cs), std::move(d), std::move(v), std::move(c))))
{
auto new_id = state->subj_id;
auto produce_time = state->worker.now();
auto localState = state;
auto disposer = [=](const rxsc::schedulable&){
localState->cs.unsubscribe();
localState->dest.unsubscribe();
localState->worker.unsubscribe();
};
auto selectedDisposer = on_exception(
[&](){return localState->coordinator.act(disposer);},
localState->dest);
if (selectedDisposer.empty()) {
return;
}
localState->dest.add([=](){
localState->worker.schedule(selectedDisposer.get());
});
localState->cs.add([=](){
localState->worker.schedule(selectedDisposer.get());
});
//
// The scheduler is FIFO for any time T. Since the observer is scheduling
// on_next/on_error/oncompleted the timed schedule calls must be resheduled
// when they occur to ensure that production happens after on_next/on_error/oncompleted
//
localState->worker.schedule(produce_time, [new_id, produce_time, localState](const rxsc::schedulable&){
localState->worker.schedule(release_window(new_id, produce_time, localState));
});
}
static std::function<void(const rxsc::schedulable&)> release_window(int id, rxsc::scheduler::clock_type::time_point expected, state_type state) {
auto release = [id, expected, state](const rxsc::schedulable&) {
if (id != state->subj_id)
return;
state->subj.get_subscriber().on_completed();
state->subj = rxcpp::subjects::subject<T>();
state->dest.on_next(state->subj.get_observable().as_dynamic());
state->cursor = 0;
auto new_id = ++state->subj_id;
auto produce_time = expected + state->period;
state->worker.schedule(produce_time, [new_id, produce_time, state](const rxsc::schedulable&){
state->worker.schedule(release_window(new_id, produce_time, state));
});
};
auto selectedRelease = on_exception(
[&](){return state->coordinator.act(release);},
state->dest);
if (selectedRelease.empty()) {
return std::function<void(const rxsc::schedulable&)>();
}
return std::function<void(const rxsc::schedulable&)>(selectedRelease.get());
}
void on_next(T v) const {
auto localState = state;
auto work = [v, localState](const rxsc::schedulable& self){
localState->subj.get_subscriber().on_next(v);
if (++localState->cursor == localState->count) {
release_window(localState->subj_id, localState->worker.now(), localState)(self);
}
};
auto selectedWork = on_exception(
[&](){return localState->coordinator.act(work);},
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
void on_error(rxu::error_ptr e) const {
auto localState = state;
auto work = [e, localState](const rxsc::schedulable&){
localState->subj.get_subscriber().on_error(e);
localState->dest.on_error(e);
};
auto selectedWork = on_exception(
[&](){return localState->coordinator.act(work);},
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
void on_completed() const {
auto localState = state;
auto work = [localState](const rxsc::schedulable&){
localState->subj.get_subscriber().on_completed();
localState->dest.on_completed();
};
auto selectedWork = on_exception(
[&](){return localState->coordinator.act(work);},
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
static subscriber<T, observer_type> make(dest_type d, window_with_time_or_count_values v) {
auto cs = composite_subscription();
auto coordinator = v.coordination.create_coordinator();
return make_subscriber<T>(cs, observer_type(this_type(cs, std::move(d), std::move(v), std::move(coordinator))));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(window_with_time_or_count_observer<Subscriber>::make(std::move(dest), initial)) {
return window_with_time_or_count_observer<Subscriber>::make(std::move(dest), initial);
}
};
}
/*! @copydoc rx-window_time_count.hpp
*/
template<class... AN>
auto window_with_time_or_count(AN&&... an)
-> operator_factory<window_with_time_or_count_tag, AN...> {
return operator_factory<window_with_time_or_count_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<window_with_time_or_count_tag>
{
template<class Observable, class Duration,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
std::is_convertible<Duration, rxsc::scheduler::clock_type::duration>>,
class SourceValue = rxu::value_type_t<Observable>,
class WindowTimeCount = rxo::detail::window_with_time_or_count<SourceValue, rxu::decay_t<Duration>, identity_one_worker>,
class Value = rxu::value_type_t<WindowTimeCount>>
static auto member(Observable&& o, Duration&& period, int count)
-> decltype(o.template lift<Value>(WindowTimeCount(std::forward<Duration>(period), count, identity_current_thread()))) {
return o.template lift<Value>(WindowTimeCount(std::forward<Duration>(period), count, identity_current_thread()));
}
template<class Observable, class Duration, class Coordination,
class Enabled = rxu::enable_if_all_true_type_t<
is_observable<Observable>,
std::is_convertible<Duration, rxsc::scheduler::clock_type::duration>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class WindowTimeCount = rxo::detail::window_with_time_or_count<SourceValue, rxu::decay_t<Duration>, rxu::decay_t<Coordination>>,
class Value = rxu::value_type_t<WindowTimeCount>>
static auto member(Observable&& o, Duration&& period, int count, Coordination&& cn)
-> decltype(o.template lift<Value>(WindowTimeCount(std::forward<Duration>(period), count, std::forward<Coordination>(cn)))) {
return o.template lift<Value>(WindowTimeCount(std::forward<Duration>(period), count, std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::window_with_time_or_count_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "window_with_time_or_count takes (Duration, Count, optional Coordination)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-window_toggle.hpp
\brief Return an observable that emits observables every period time interval and collects items from this observable for period of time into each produced observable, on the specified scheduler.
\tparam Openings observable<OT>
\tparam ClosingSelector a function of type observable<CT>(OT)
\tparam Coordination the type of the scheduler (optional).
\param opens each value from this observable opens a new window.
\param closes this function is called for each opened window and returns an observable. the first value from the returned observable will close the window.
\param coordination the scheduler for the windows (optional).
\return Observable that emits an observable for each opened window.
\sample
\snippet window.cpp window toggle+coordination sample
\snippet output.txt window toggle+coordination sample
\sample
\snippet window.cpp window toggle sample
\snippet output.txt window toggle sample
*/
#if !defined(RXCPP_OPERATORS_RX_WINDOW_TOGGLE_HPP)
#define RXCPP_OPERATORS_RX_WINDOW_TOGGLE_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct window_toggle_invalid_arguments {};
template<class... AN>
struct window_toggle_invalid : public rxo::operator_base<window_toggle_invalid_arguments<AN...>> {
using type = observable<window_toggle_invalid_arguments<AN...>, window_toggle_invalid<AN...>>;
};
template<class... AN>
using window_toggle_invalid_t = typename window_toggle_invalid<AN...>::type;
template<class T, class Openings, class ClosingSelector, class Coordination>
struct window_toggle
{
using this_type = window_toggle<T, Openings, ClosingSelector, Coordination>;
using source_value_type = rxu::decay_t<T>;
using coordination_type = rxu::decay_t<Coordination>;
using coordinator_type = typename coordination_type::coordinator_type;
using openings_type = rxu::decay_t<Openings>;
using openings_value_type = typename openings_type::value_type;
using closing_selector_type = rxu::decay_t<ClosingSelector>;
using closings_type = rxu::callable_result_t<closing_selector_type, openings_value_type>;
using closings_value_type = typename closings_type::value_type;
struct window_toggle_values
{
window_toggle_values(openings_type opens, closing_selector_type closes, coordination_type c)
: openings(opens)
, closingSelector(closes)
, coordination(c)
{
}
openings_type openings;
mutable closing_selector_type closingSelector;
coordination_type coordination;
};
window_toggle_values initial;
window_toggle(openings_type opens, closing_selector_type closes, coordination_type coordination)
: initial(opens, closes, coordination)
{
}
template<class Subscriber>
struct window_toggle_observer
{
using this_type = window_toggle_observer<Subscriber>;
using value_type = rxu::decay_t<T>;
using dest_type = rxu::decay_t<Subscriber>;
using observer_type = observer<T, this_type>;
struct window_toggle_subscriber_values : public window_toggle_values
{
window_toggle_subscriber_values(composite_subscription cs, dest_type d, window_toggle_values v, coordinator_type c)
: window_toggle_values(v)
, cs(std::move(cs))
, dest(std::move(d))
, coordinator(std::move(c))
, worker(coordinator.get_worker())
{
}
composite_subscription cs;
dest_type dest;
coordinator_type coordinator;
rxsc::worker worker;
mutable std::list<rxcpp::subjects::subject<T>> subj;
};
std::shared_ptr<window_toggle_subscriber_values> state;
window_toggle_observer(composite_subscription cs, dest_type d, window_toggle_values v, coordinator_type c)
: state(std::make_shared<window_toggle_subscriber_values>(window_toggle_subscriber_values(std::move(cs), std::move(d), v, std::move(c))))
{
auto localState = state;
composite_subscription innercs;
// when the out observer is unsubscribed all the
// inner subscriptions are unsubscribed as well
auto innerscope = localState->dest.add(innercs);
innercs.add([=](){
localState->dest.remove(innerscope);
});
localState->dest.add(localState->cs);
auto source = on_exception(
[&](){return localState->coordinator.in(localState->openings);},
localState->dest);
if (source.empty()) {
return;
}
// this subscribe does not share the observer subscription
// so that when it is unsubscribed the observer can be called
// until the inner subscriptions have finished
auto sink = make_subscriber<openings_value_type>(
localState->dest,
innercs,
// on_next
[localState](const openings_value_type& ov) {
auto closer = localState->closingSelector(ov);
auto it = localState->subj.insert(localState->subj.end(), rxcpp::subjects::subject<T>());
localState->dest.on_next(it->get_observable().as_dynamic());
composite_subscription innercs;
// when the out observer is unsubscribed all the
// inner subscriptions are unsubscribed as well
auto innerscope = localState->dest.add(innercs);
innercs.add([=](){
localState->dest.remove(innerscope);
});
auto source = localState->coordinator.in(closer);
auto sit = std::make_shared<decltype(it)>(it);
auto close = [localState, sit]() {
auto it = *sit;
*sit = localState->subj.end();
if (it != localState->subj.end()) {
it->get_subscriber().on_completed();
localState->subj.erase(it);
}
};
// this subscribe does not share the observer subscription
// so that when it is unsubscribed the observer can be called
// until the inner subscriptions have finished
auto sink = make_subscriber<closings_value_type>(
localState->dest,
innercs,
// on_next
[close, innercs](closings_value_type) {
close();
innercs.unsubscribe();
},
// on_error
[localState](rxu::error_ptr e) {
localState->dest.on_error(e);
},
// on_completed
close
);
auto selectedSink = localState->coordinator.out(sink);
source.subscribe(std::move(selectedSink));
},
// on_error
[localState](rxu::error_ptr e) {
localState->dest.on_error(e);
},
// on_completed
[]() {
}
);
auto selectedSink = on_exception(
[&](){return localState->coordinator.out(sink);},
localState->dest);
if (selectedSink.empty()) {
return;
}
source->subscribe(std::move(selectedSink.get()));
}
void on_next(const T& v) const {
auto localState = state;
auto work = [v, localState](const rxsc::schedulable&){
for (const auto& s : localState->subj) {
s.get_subscriber().on_next(v);
}
};
auto selectedWork = on_exception(
[&](){return localState->coordinator.act(work);},
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
void on_error(rxu::error_ptr e) const {
auto localState = state;
auto work = [e, localState](const rxsc::schedulable&){
for (auto s : localState->subj) {
s.get_subscriber().on_error(e);
}
localState->dest.on_error(e);
};
auto selectedWork = on_exception(
[&](){return localState->coordinator.act(work);},
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
void on_completed() const {
auto localState = state;
auto work = [localState](const rxsc::schedulable&){
for (auto s : localState->subj) {
s.get_subscriber().on_completed();
}
localState->dest.on_completed();
};
auto selectedWork = on_exception(
[&](){return localState->coordinator.act(work);},
localState->dest);
if (selectedWork.empty()) {
return;
}
localState->worker.schedule(selectedWork.get());
}
static subscriber<T, observer_type> make(dest_type d, window_toggle_values v) {
auto cs = composite_subscription();
auto coordinator = v.coordination.create_coordinator(d.get_subscription());
return make_subscriber<T>(cs, observer_type(this_type(cs, std::move(d), std::move(v), std::move(coordinator))));
}
};
template<class Subscriber>
auto operator()(Subscriber dest) const
-> decltype(window_toggle_observer<Subscriber>::make(std::move(dest), initial)) {
return window_toggle_observer<Subscriber>::make(std::move(dest), initial);
}
};
}
/*! @copydoc rx-window_toggle.hpp
*/
template<class... AN>
auto window_toggle(AN&&... an)
-> operator_factory<window_toggle_tag, AN...> {
return operator_factory<window_toggle_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<window_toggle_tag>
{
template<class Observable, class Openings, class ClosingSelector,
class ClosingSelectorType = rxu::decay_t<ClosingSelector>,
class OpeningsType = rxu::decay_t<Openings>,
class OpeningsValueType = typename OpeningsType::value_type,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, Openings, rxu::callable_result_t<ClosingSelectorType, OpeningsValueType>>>,
class SourceValue = rxu::value_type_t<Observable>,
class WindowToggle = rxo::detail::window_toggle<SourceValue, rxu::decay_t<Openings>, rxu::decay_t<ClosingSelector>, identity_one_worker>,
class Value = observable<SourceValue>>
static auto member(Observable&& o, Openings&& openings, ClosingSelector&& closingSelector)
-> decltype(o.template lift<Value>(WindowToggle(std::forward<Openings>(openings), std::forward<ClosingSelector>(closingSelector), identity_immediate()))) {
return o.template lift<Value>(WindowToggle(std::forward<Openings>(openings), std::forward<ClosingSelector>(closingSelector), identity_immediate()));
}
template<class Observable, class Openings, class ClosingSelector, class Coordination,
class ClosingSelectorType = rxu::decay_t<ClosingSelector>,
class OpeningsType = rxu::decay_t<Openings>,
class OpeningsValueType = typename OpeningsType::value_type,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, Openings, rxu::callable_result_t<ClosingSelectorType, OpeningsValueType>>,
is_coordination<Coordination>>,
class SourceValue = rxu::value_type_t<Observable>,
class WindowToggle = rxo::detail::window_toggle<SourceValue, rxu::decay_t<Openings>, rxu::decay_t<ClosingSelector>, rxu::decay_t<Coordination>>,
class Value = observable<SourceValue>>
static auto member(Observable&& o, Openings&& openings, ClosingSelector&& closingSelector, Coordination&& cn)
-> decltype(o.template lift<Value>(WindowToggle(std::forward<Openings>(openings), std::forward<ClosingSelector>(closingSelector), std::forward<Coordination>(cn)))) {
return o.template lift<Value>(WindowToggle(std::forward<Openings>(openings), std::forward<ClosingSelector>(closingSelector), std::forward<Coordination>(cn)));
}
template<class... AN>
static operators::detail::window_toggle_invalid_t<AN...> member(AN...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "window_toggle takes (Openings, ClosingSelector, optional Coordination)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
/*! \file rx-with_latest_from.hpp
\brief For each item from the first observable select the latest value from all the observables to emit from the new observable that is returned.
\tparam AN types of scheduler (optional), aggregate function (optional), and source observables
\param an scheduler (optional), aggregation function (optional), and source observables
\return Observable that emits items that are the result of combining the items emitted by the source observables.
If scheduler is omitted, identity_current_thread is used.
If aggregation function is omitted, the resulting observable returns tuples of emitted items.
\sample
Neither scheduler nor aggregation function are present:
\snippet with_latest_from.cpp with_latest_from sample
\snippet output.txt with_latest_from sample
Only scheduler is present:
\snippet with_latest_from.cpp Coordination with_latest_from sample
\snippet output.txt Coordination with_latest_from sample
Only aggregation function is present:
\snippet with_latest_from.cpp Selector with_latest_from sample
\snippet output.txt Selector with_latest_from sample
Both scheduler and aggregation function are present:
\snippet with_latest_from.cpp Coordination+Selector with_latest_from sample
\snippet output.txt Coordination+Selector with_latest_from sample
*/
#if !defined(RXCPP_OPERATORS_RX_WITH_LATEST_FROM_HPP)
#define RXCPP_OPERATORS_RX_WITH_LATEST_FROM_HPP
namespace rxcpp {
namespace operators {
namespace detail {
template<class... AN>
struct with_latest_from_invalid_arguments {};
template<class... AN>
struct with_latest_from_invalid : public rxo::operator_base<with_latest_from_invalid_arguments<AN...>> {
using type = observable<with_latest_from_invalid_arguments<AN...>, with_latest_from_invalid<AN...>>;
};
template<class... AN>
using with_latest_from_invalid_t = typename with_latest_from_invalid<AN...>::type;
template<class Selector, class... ObservableN>
struct is_with_latest_from_selector_check {
using selector_type = rxu::decay_t<Selector>;
struct tag_not_valid;
template<class CS, class... CON>
static auto check(int) -> decltype(std::declval<CS>()((std::declval<typename CON::value_type>())...));
template<class CS, class... CON>
static tag_not_valid check(...);
using type = decltype(check<selector_type, rxu::decay_t<ObservableN>...>(0));
static const bool value = !std::is_same_v<type, tag_not_valid>;
};
template<class Selector, class... ObservableN>
struct invalid_with_latest_from_selector {
static const bool value = false;
};
template<class Selector, class... ObservableN>
struct is_with_latest_from_selector : public std::conditional_t<
is_with_latest_from_selector_check<Selector, ObservableN...>::value,
is_with_latest_from_selector_check<Selector, ObservableN...>,
invalid_with_latest_from_selector<Selector, ObservableN...>> {
};
template<class Selector, class... ON>
using result_with_latest_from_selector_t = typename is_with_latest_from_selector<Selector, ON...>::type;
template<class Coordination, class Selector, class... ObservableN>
struct with_latest_from_traits {
using tuple_source_type = std::tuple<ObservableN...>;
using tuple_source_value_type = std::tuple<rxu::detail::maybe < typename ObservableN::value_type>...>;
using selector_type = rxu::decay_t<Selector>;
using coordination_type = rxu::decay_t<Coordination>;
using value_type = typename is_with_latest_from_selector<selector_type, ObservableN...>::type;
};
template<class Coordination, class Selector, class... ObservableN>
struct with_latest_from : public operator_base<rxu::value_type_t<with_latest_from_traits<Coordination, Selector, ObservableN...>>>
{
using this_type = with_latest_from<Coordination, Selector, ObservableN...>;
using traits = with_latest_from_traits<Coordination, Selector, ObservableN...>;
using tuple_source_type = typename traits::tuple_source_type;
using tuple_source_value_type = typename traits::tuple_source_value_type;
using selector_type = typename traits::selector_type;
using coordination_type = typename traits::coordination_type;
using coordinator_type = typename coordination_type::coordinator_type;
struct values
{
values(tuple_source_type o, selector_type s, coordination_type sf)
: source(std::move(o))
, selector(std::move(s))
, coordination(std::move(sf))
{
}
tuple_source_type source;
selector_type selector;
coordination_type coordination;
};
values initial;
with_latest_from(coordination_type sf, selector_type s, tuple_source_type ts)
: initial(std::move(ts), std::move(s), std::move(sf))
{
}
template<int Index, class State>
void subscribe_one(std::shared_ptr<State> state) const {
using source_value_type = typename std::tuple_element<Index, tuple_source_type>::type::value_type;
composite_subscription innercs;
// when the out observer is unsubscribed all the
// inner subscriptions are unsubscribed as well
state->out.add(innercs);
auto source = on_exception(
[&](){return state->coordinator.in(std::get<Index>(state->source));},
state->out);
if (source.empty()) {
return;
}
// this subscribe does not share the observer subscription
// so that when it is unsubscribed the observer can be called
// until the inner subscriptions have finished
auto sink = make_subscriber<source_value_type>(
state->out,
innercs,
// on_next
[state](auto&& st) {
auto& value = std::get<Index>(state->latest);
if (value.empty()) {
++state->valuesSet;
}
value.reset(std::forward<decltype(st)>(st));
if (state->valuesSet == sizeof... (ObservableN) && Index == 0) {
auto values = rxu::surely(state->latest);
state->out.on_next(rxu::apply(std::move(values), state->selector));
}
},
// on_error
[state](rxu::error_ptr e) {
state->out.on_error(e);
},
// on_completed
[state]() {
if (--state->pendingCompletions == 0) {
state->out.on_completed();
}
}
);
auto selectedSink = on_exception(
[&](){return state->coordinator.out(sink);},
state->out);
if (selectedSink.empty()) {
return;
}
source->subscribe(std::move(selectedSink.get()));
}
template<class State, int... IndexN>
void subscribe_all(std::shared_ptr<State> state, rxu::values<int, IndexN...>) const {
bool subscribed[] = {(subscribe_one<(sizeof...(IndexN)) - 1 - IndexN>(state), true)...};
subscribed[0] = (*subscribed); // silence warning
}
template<class Subscriber>
void on_subscribe(Subscriber scbr) const {
static_assert(is_subscriber<Subscriber>::value, "subscribe must be passed a subscriber");
using output_type = Subscriber;
struct with_latest_from_state_type
: public std::enable_shared_from_this<with_latest_from_state_type>
, public values
{
with_latest_from_state_type(values i, coordinator_type coor, output_type oarg)
: values(std::move(i))
, pendingCompletions(sizeof... (ObservableN))
, valuesSet(0)
, coordinator(std::move(coor))
, out(std::move(oarg))
{
}
// on_completed on the output must wait until all the
// subscriptions have received on_completed
mutable int pendingCompletions;
mutable int valuesSet;
mutable tuple_source_value_type latest;
coordinator_type coordinator;
output_type out;
};
auto coordinator = initial.coordination.create_coordinator(scbr.get_subscription());
// take a copy of the values for each subscription
auto state = std::make_shared<with_latest_from_state_type>(initial, std::move(coordinator), std::move(scbr));
subscribe_all(state, typename rxu::values_from<int, sizeof...(ObservableN)>::type());
}
};
}
/*! @copydoc rx-with_latest_from.hpp
*/
template<class... AN>
auto with_latest_from(AN&&... an)
-> operator_factory<with_latest_from_tag, AN...> {
return operator_factory<with_latest_from_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<with_latest_from_tag>
{
template<class Observable, class... ObservableN,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, ObservableN...>>,
class with_latest_from = rxo::detail::with_latest_from<identity_one_worker, rxu::detail::pack, rxu::decay_t<Observable>, rxu::decay_t<ObservableN>...>,
class Value = rxu::value_type_t<with_latest_from>,
class Result = observable<Value, with_latest_from>>
static Result member(Observable&& o, ObservableN&&... on)
{
return Result(with_latest_from(identity_current_thread(), rxu::pack(), std::make_tuple(std::forward<Observable>(o), std::forward<ObservableN>(on)...)));
}
template<class Observable, class Selector, class... ObservableN,
class Enabled = rxu::enable_if_all_true_type_t<
operators::detail::is_with_latest_from_selector<Selector, Observable, ObservableN...>,
all_observables<Observable, ObservableN...>>,
class ResolvedSelector = rxu::decay_t<Selector>,
class with_latest_from = rxo::detail::with_latest_from<identity_one_worker, ResolvedSelector, rxu::decay_t<Observable>, rxu::decay_t<ObservableN>...>,
class Value = rxu::value_type_t<with_latest_from>,
class Result = observable<Value, with_latest_from>>
static Result member(Observable&& o, Selector&& s, ObservableN&&... on)
{
return Result(with_latest_from(identity_current_thread(), std::forward<Selector>(s), std::make_tuple(std::forward<Observable>(o), std::forward<ObservableN>(on)...)));
}
template<class Coordination, class Observable, class... ObservableN,
class Enabled = rxu::enable_if_all_true_type_t<
is_coordination<Coordination>,
all_observables<Observable, ObservableN...>>,
class with_latest_from = rxo::detail::with_latest_from<Coordination, rxu::detail::pack, rxu::decay_t<Observable>, rxu::decay_t<ObservableN>...>,
class Value = rxu::value_type_t<with_latest_from>,
class Result = observable<Value, with_latest_from>>
static Result member(Observable&& o, Coordination&& cn, ObservableN&&... on)
{
return Result(with_latest_from(std::forward<Coordination>(cn), rxu::pack(), std::make_tuple(std::forward<Observable>(o), std::forward<ObservableN>(on)...)));
}
template<class Coordination, class Selector, class Observable, class... ObservableN,
class Enabled = rxu::enable_if_all_true_type_t<
is_coordination<Coordination>,
operators::detail::is_with_latest_from_selector<Selector, Observable, ObservableN...>,
all_observables<Observable, ObservableN...>>,
class ResolvedSelector = rxu::decay_t<Selector>,
class with_latest_from = rxo::detail::with_latest_from<Coordination, ResolvedSelector, rxu::decay_t<Observable>, rxu::decay_t<ObservableN>...>,
class Value = rxu::value_type_t<with_latest_from>,
class Result = observable<Value, with_latest_from>>
static Result member(Observable&& o, Coordination&& cn, Selector&& s, ObservableN&&... on)
{
return Result(with_latest_from(std::forward<Coordination>(cn), std::forward<Selector>(s), std::make_tuple(std::forward<Observable>(o), std::forward<ObservableN>(on)...)));
}
template<class... AN>
static operators::detail::with_latest_from_invalid_t<AN...> member(const AN&...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "with_latest_from takes (optional Coordination, optional Selector, required Observable, optional Observable...), Selector takes (Observable::value_type...)");
}
};
}
#endif
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#if !defined(RXCPP_OPERATORS_RX_ZIP_HPP)
#define RXCPP_OPERATORS_RX_ZIP_HPP
/*! \file rx-zip.hpp
\brief Bring by one item from all given observables and select a value to emit from the new observable that is returned.
\tparam AN types of scheduler (optional), aggregate function (optional), and source observables
\param an scheduler (optional), aggregation function (optional), and source observables
\return Observable that emits the result of combining the items emitted and brought by one from each of the source observables.
If scheduler is omitted, identity_current_thread is used.
If aggregation function is omitted, the resulting observable returns tuples of emitted items.
\sample
Neither scheduler nor aggregation function are present:
\snippet zip.cpp zip sample
\snippet output.txt zip sample
Only scheduler is present:
\snippet zip.cpp Coordination zip sample
\snippet output.txt Coordination zip sample
Only aggregation function is present:
\snippet zip.cpp Selector zip sample
\snippet output.txt Selector zip sample
Both scheduler and aggregation function are present:
\snippet zip.cpp Coordination+Selector zip sample
\snippet output.txt Coordination+Selector zip sample
*/
namespace rxcpp {
namespace operators {
namespace detail {
template<class Observable>
struct zip_source_state
{
using value_type = rxu::value_type_t<Observable>;
zip_source_state()
: completed(false)
{
}
std::list<value_type> values;
bool completed;
};
struct values_not_empty {
template<class Observable>
bool operator()(zip_source_state<Observable>& source) const {
return !source.values.empty();
}
};
struct source_completed_values_empty {
template<class Observable>
bool operator()(zip_source_state<Observable>& source) const {
return source.completed && source.values.empty();
}
};
struct extract_value_front {
template<class Observable, class Value = rxu::value_type_t<Observable>>
Value operator()(zip_source_state<Observable>& source) const {
auto val = std::move(source.values.front());
source.values.pop_front();
return val;
}
};
template<class... AN>
struct zip_invalid_arguments {};
template<class... AN>
struct zip_invalid : public rxo::operator_base<zip_invalid_arguments<AN...>> {
using type = observable<zip_invalid_arguments<AN...>, zip_invalid<AN...>>;
};
template<class... AN>
using zip_invalid_t = typename zip_invalid<AN...>::type;
template<class Selector, class... ObservableN>
struct is_zip_selector_check {
using selector_type = rxu::decay_t<Selector>;
struct tag_not_valid;
template<class CS, class... CON>
static auto check(int) -> decltype(std::declval<CS>()((std::declval<typename CON::value_type>())...));
template<class CS, class... CON>
static tag_not_valid check(...);
using type = decltype(check<selector_type, rxu::decay_t<ObservableN>...>(0));
static const bool value = !std::is_same_v<type, tag_not_valid>;
};
template<class Selector, class... ObservableN>
struct invalid_zip_selector {
static const bool value = false;
};
template<class Selector, class... ObservableN>
struct is_zip_selector : public std::conditional_t<
is_zip_selector_check<Selector, ObservableN...>::value,
is_zip_selector_check<Selector, ObservableN...>,
invalid_zip_selector<Selector, ObservableN...>> {
};
template<class Selector, class... ON>
using result_zip_selector_t = typename is_zip_selector<Selector, ON...>::type;
template<class Coordination, class Selector, class... ObservableN>
struct zip_traits {
using tuple_source_type = std::tuple<rxu::decay_t < ObservableN>...>;
using tuple_source_values_type = std::tuple<zip_source_state<ObservableN>...>;
using selector_type = rxu::decay_t<Selector>;
using coordination_type = rxu::decay_t<Coordination>;
using value_type = typename is_zip_selector<selector_type, ObservableN...>::type;
};
template<class Coordination, class Selector, class... ObservableN>
struct zip : public operator_base<rxu::value_type_t<zip_traits<Coordination, Selector, ObservableN...>>>
{
using this_type = zip<Coordination, Selector, ObservableN...>;
using traits = zip_traits<Coordination, Selector, ObservableN...>;
using tuple_source_type = typename traits::tuple_source_type;
using tuple_source_values_type = typename traits::tuple_source_values_type;
using selector_type = typename traits::selector_type;
using coordination_type = typename traits::coordination_type;
using coordinator_type = typename coordination_type::coordinator_type;
struct values
{
values(tuple_source_type o, selector_type s, coordination_type sf)
: source(std::move(o))
, selector(std::move(s))
, coordination(std::move(sf))
{
}
tuple_source_type source;
selector_type selector;
coordination_type coordination;
};
values initial;
zip(coordination_type sf, selector_type s, tuple_source_type ts)
: initial(std::move(ts), std::move(s), std::move(sf))
{
}
template<int Index, class State>
void subscribe_one(std::shared_ptr<State> state) const {
using source_value_type = typename std::tuple_element<Index, tuple_source_type>::type::value_type;
composite_subscription innercs;
// when the out observer is unsubscribed all the
// inner subscriptions are unsubscribed as well
state->out.add(innercs);
auto source = on_exception(
[&](){return state->coordinator.in(std::get<Index>(state->source));},
state->out);
if (source.empty()) {
return;
}
// this subscribe does not share the observer subscription
// so that when it is unsubscribed the observer can be called
// until the inner subscriptions have finished
auto sink = make_subscriber<source_value_type>(
state->out,
innercs,
// on_next
[state](auto&& st) {
auto& values = std::get<Index>(state->pending).values;
values.emplace_back(std::forward<decltype(st)>(st));
if (rxu::apply_to_each(state->pending, values_not_empty(), rxu::all_values_true())) {
state->out.on_next(rxu::apply_to_each(state->pending, extract_value_front(), state->selector));
}
if (rxu::apply_to_each(state->pending, source_completed_values_empty(), rxu::any_value_true())) {
state->out.on_completed();
}
},
// on_error
[state](rxu::error_ptr e) {
state->out.on_error(e);
},
// on_completed
[state]() {
auto& completed = std::get<Index>(state->pending).completed;
completed = true;
if (--state->pendingCompletions == 0) {
state->out.on_completed();
}
}
);
auto selectedSink = on_exception(
[&](){return state->coordinator.out(sink);},
state->out);
if (selectedSink.empty()) {
return;
}
source->subscribe(std::move(selectedSink.get()));
}
template<class State, int... IndexN>
void subscribe_all(std::shared_ptr<State> state, rxu::values<int, IndexN...>) const {
bool subscribed[] = {(subscribe_one<IndexN>(state), true)...};
subscribed[0] = (*subscribed); // silence warning
}
template<class Subscriber>
void on_subscribe(Subscriber scbr) const {
static_assert(is_subscriber<Subscriber>::value, "subscribe must be passed a subscriber");
using output_type = Subscriber;
struct zip_state_type
: public std::enable_shared_from_this<zip_state_type>
, public values
{
zip_state_type(values i, coordinator_type coor, output_type oarg)
: values(std::move(i))
, pendingCompletions(sizeof... (ObservableN))
, valuesSet(0)
, coordinator(std::move(coor))
, out(std::move(oarg))
{
}
// on_completed on the output must wait until all the
// subscriptions have received on_completed
mutable int pendingCompletions;
mutable int valuesSet;
mutable tuple_source_values_type pending;
coordinator_type coordinator;
output_type out;
};
auto coordinator = initial.coordination.create_coordinator(scbr.get_subscription());
// take a copy of the values for each subscription
auto state = std::make_shared<zip_state_type>(initial, std::move(coordinator), std::move(scbr));
subscribe_all(state, typename rxu::values_from<int, sizeof...(ObservableN)>::type());
}
};
}
/*! @copydoc rx-zip.hpp
*/
template<class... AN>
auto zip(AN&&... an)
-> operator_factory<zip_tag, AN...> {
return operator_factory<zip_tag, AN...>(std::make_tuple(std::forward<AN>(an)...));
}
}
template<>
struct member_overload<zip_tag>
{
template<class Observable, class... ObservableN,
class Enabled = rxu::enable_if_all_true_type_t<
all_observables<Observable, ObservableN...>>,
class Zip = rxo::detail::zip<identity_one_worker, rxu::detail::pack, rxu::decay_t<Observable>, rxu::decay_t<ObservableN>...>,
class Value = rxu::value_type_t<Zip>,
class Result = observable<Value, Zip>>
static Result member(Observable&& o, ObservableN&&... on)
{
return Result(Zip(identity_current_thread(), rxu::pack(), std::make_tuple(std::forward<Observable>(o), std::forward<ObservableN>(on)...)));
}
template<class Observable, class Selector, class... ObservableN,
class Enabled = rxu::enable_if_all_true_type_t<
operators::detail::is_zip_selector<Selector, Observable, ObservableN...>,
all_observables<Observable, ObservableN...>>,
class ResolvedSelector = rxu::decay_t<Selector>,
class Zip = rxo::detail::zip<identity_one_worker, ResolvedSelector, rxu::decay_t<Observable>, rxu::decay_t<ObservableN>...>,
class Value = rxu::value_type_t<Zip>,
class Result = observable<Value, Zip>>
static Result member(Observable&& o, Selector&& s, ObservableN&&... on)
{
return Result(Zip(identity_current_thread(), std::forward<Selector>(s), std::make_tuple(std::forward<Observable>(o), std::forward<ObservableN>(on)...)));
}
template<class Coordination, class Observable, class... ObservableN,
class Enabled = rxu::enable_if_all_true_type_t<
is_coordination<Coordination>,
all_observables<Observable, ObservableN...>>,
class Zip = rxo::detail::zip<Coordination, rxu::detail::pack, rxu::decay_t<Observable>, rxu::decay_t<ObservableN>...>,
class Value = rxu::value_type_t<Zip>,
class Result = observable<Value, Zip>>
static Result member(Observable&& o, Coordination&& cn, ObservableN&&... on)
{
return Result(Zip(std::forward<Coordination>(cn), rxu::pack(), std::make_tuple(std::forward<Observable>(o), std::forward<ObservableN>(on)...)));
}
template<class Coordination, class Selector, class Observable, class... ObservableN,
class Enabled = rxu::enable_if_all_true_type_t<
is_coordination<Coordination>,
operators::detail::is_zip_selector<Selector, Observable, ObservableN...>,
all_observables<Observable, ObservableN...>>,
class ResolvedSelector = rxu::decay_t<Selector>,
class Zip = rxo::detail::zip<Coordination, ResolvedSelector, rxu::decay_t<Observable>, rxu::decay_t<ObservableN>...>,
class Value = rxu::value_type_t<Zip>,
class Result = observable<Value, Zip>>
static Result member(Observable&& o, Coordination&& cn, Selector&& s, ObservableN&&... on)
{
return Result(Zip(std::forward<Coordination>(cn), std::forward<Selector>(s), std::make_tuple(std::forward<Observable>(o), std::forward<ObservableN>(on)...)));
}
template<class... AN>
static operators::detail::zip_invalid_t<AN...> member(const AN&...) {
std::terminate();
return {};
static_assert(sizeof...(AN) == 10000, "zip takes (optional Coordination, optional Selector, required Observable, optional Observable...), Selector takes (Observable::value_type...)");
}
};
}
#endif
#endif
#pragma pop_macro("min")
#pragma pop_macro("max")
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment