tdesktop/Telegram/SourceFiles/rpl/producer.h

1158 lines
30 KiB
C
Raw Normal View History

/*
This file is part of Telegram Desktop,
the official desktop version of Telegram messaging app, see https://telegram.org
Telegram Desktop is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
It is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
In addition, as a special exception, the copyright holders give permission
to link the code of portions of this program with the OpenSSL library.
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
*/
#pragma once
#include "base/lambda.h"
2017-09-12 13:58:14 +00:00
#include <rpl/consumer.h>
#include <rpl/lifetime.h>
namespace rpl {
2017-09-12 13:58:14 +00:00
namespace details {
template <typename Lambda>
class mutable_lambda_wrap {
public:
mutable_lambda_wrap(Lambda &&lambda)
: _lambda(std::move(lambda)) {
}
template <typename... Args>
auto operator()(Args&&... args) const {
return (const_cast<mutable_lambda_wrap*>(this)->_lambda)(
std::forward<Args>(args)...);
}
private:
Lambda _lambda;
};
// Type-erased copyable mutable lambda using base::lambda.
template <typename Function> class mutable_lambda;
template <typename Return, typename ...Args>
class mutable_lambda<Return(Args...)> {
public:
// Copy / move construct / assign from an arbitrary type.
template <
typename Lambda,
typename = std::enable_if_t<std::is_convertible<
decltype(std::declval<Lambda>()(
std::declval<Args>()...)),
2017-09-12 13:58:14 +00:00
Return
>::value>>
mutable_lambda(Lambda other) : _implementation(
mutable_lambda_wrap<Lambda>(std::move(other))) {
2017-09-12 13:58:14 +00:00
}
2017-09-12 13:58:14 +00:00
template <
typename ...OtherArgs,
typename = std::enable_if_t<
(sizeof...(Args) == sizeof...(OtherArgs))>>
2017-09-12 13:58:14 +00:00
Return operator()(OtherArgs&&... args) {
return _implementation(std::forward<OtherArgs>(args)...);
}
private:
base::lambda<Return(Args...)> _implementation;
};
} // namespace details
template <typename Value = empty_value, typename Error = no_error>
class producer {
public:
using value_type = Value;
using error_type = Error;
2017-09-12 13:58:14 +00:00
using consumer_type = consumer<Value, Error>;
template <
typename Generator,
typename = std::enable_if<std::is_convertible<
decltype(std::declval<Generator>()(
std::declval<consumer_type>())),
lifetime>::value>>
producer(Generator &&generator);
template <
typename OnNext,
typename OnError,
typename OnDone,
typename = std::enable_if_t<
details::is_callable_v<OnNext, Value>
&& details::is_callable_v<OnError, Error>
&& details::is_callable_v<OnDone>>>
lifetime start(
OnNext &&next,
OnError &&error,
2017-09-12 13:58:14 +00:00
OnDone &&done) &&;
template <
typename OnNext,
typename OnError,
typename OnDone,
typename = std::enable_if_t<
details::is_callable_v<OnNext, Value>
&& details::is_callable_v<OnError, Error>
&& details::is_callable_v<OnDone>>>
2017-09-12 13:58:14 +00:00
lifetime start_copy(
OnNext &&next,
OnError &&error,
OnDone &&done) const &;
lifetime start_existing(const consumer_type &consumer) &&;
private:
2017-09-12 13:58:14 +00:00
details::mutable_lambda<
lifetime(const consumer_type &)> _generator;
};
template <typename Value, typename Error>
template <typename Generator, typename>
inline producer<Value, Error>::producer(Generator &&generator)
: _generator(std::forward<Generator>(generator)) {
}
template <typename Value, typename Error>
template <
typename OnNext,
typename OnError,
typename OnDone,
typename>
inline lifetime producer<Value, Error>::start(
OnNext &&next,
OnError &&error,
2017-09-12 13:58:14 +00:00
OnDone &&done) && {
return std::move(*this).start_existing(consumer<Value, Error>(
std::forward<OnNext>(next),
std::forward<OnError>(error),
std::forward<OnDone>(done)));
}
template <typename Value, typename Error>
template <
typename OnNext,
typename OnError,
typename OnDone,
typename>
inline lifetime producer<Value, Error>::start_copy(
2017-09-12 13:58:14 +00:00
OnNext &&next,
OnError &&error,
OnDone &&done) const & {
auto copy = *this;
return std::move(copy).start(
std::forward<OnNext>(next),
std::forward<OnError>(error),
std::forward<OnDone>(done));
2017-09-12 13:58:14 +00:00
}
template <typename Value, typename Error>
inline lifetime producer<Value, Error>::start_existing(
2017-09-12 13:58:14 +00:00
const consumer_type &consumer) && {
consumer.add_lifetime(std::move(_generator)(consumer));
return [consumer] { consumer.terminate(); };
}
template <typename Value, typename Error>
inline producer<Value, Error> duplicate(
const producer<Value, Error> &value) {
return value;
}
template <
typename Value,
typename Error,
typename Method,
typename = decltype(std::declval<Method>()(
std::declval<producer<Value, Error>>()))>
inline auto operator|(producer<Value, Error> &&value, Method &&method) {
return std::forward<Method>(method)(std::move(value));
}
template <typename OnNext>
2017-09-12 13:58:14 +00:00
inline auto bind_on_next(OnNext &&handler) {
return [handler = std::forward<OnNext>(handler)](
auto &&existing) mutable {
using error_type = typename std::decay_t<decltype(existing)>::error_type;
return producer<no_value, error_type>([
existing = std::move(existing),
2017-09-12 13:58:14 +00:00
handler = std::move(handler)
](const consumer<no_value, error_type> &consumer) mutable {
return std::move(existing).start(
std::move(handler),
[consumer](error_type &&error) {
consumer.put_error(std::move(error));
}, [consumer] {
consumer.put_done();
});
});
};
}
template <typename OnError>
2017-09-12 13:58:14 +00:00
inline auto bind_on_error(OnError &&handler) {
return [handler = std::forward<OnError>(handler)](auto &&existing) mutable {
using value_type = typename std::decay_t<decltype(existing)>::value_type;
return producer<value_type, no_error>([
existing = std::move(existing),
2017-09-12 13:58:14 +00:00
handler = std::move(handler)
](const consumer<value_type, no_error> &consumer) mutable {
return std::move(existing).start(
[consumer](value_type &&value) {
consumer.put_next(std::move(value));
},
std::move(handler),
[consumer] {
consumer.put_done();
});
});
};
}
template <typename OnDone>
2017-09-12 13:58:14 +00:00
inline auto bind_on_done(OnDone &&handler) {
return [handler = std::forward<OnDone>(handler)](auto &&existing) mutable {
using value_type = typename std::decay_t<decltype(existing)>::value_type;
using error_type = typename std::decay_t<decltype(existing)>::error_type;
return producer<value_type, error_type>([
existing = std::move(existing),
2017-09-12 13:58:14 +00:00
handler = std::move(handler)
](const consumer<value_type, error_type> &consumer) mutable {
return std::move(existing).start(
[consumer](value_type &&value) {
consumer.put_next(std::move(value));
},
[consumer](error_type &&value) {
consumer.put_error(std::move(value));
},
std::move(handler));
});
};
}
namespace details {
template <typename OnNext>
struct next_holder {
OnNext next;
};
template <typename OnError>
struct error_holder {
OnError error;
};
template <typename OnDone>
struct done_holder {
OnDone done;
};
template <
typename Value,
typename Error,
typename OnNext>
struct producer_with_next {
producer<Value, Error> bound;
OnNext next;
};
template <
typename Value,
typename Error,
typename OnError>
struct producer_with_error {
producer<Value, Error> bound;
OnError error;
};
template <
typename Value,
typename Error,
typename OnDone>
struct producer_with_done {
producer<Value, Error> bound;
OnDone done;
};
template <
typename Value,
typename Error,
typename OnNext,
typename OnError>
struct producer_with_next_error {
producer<Value, Error> bound;
OnNext next;
OnError error;
};
template <
typename Value,
typename Error,
typename OnNext,
typename OnDone>
struct producer_with_next_done {
producer<Value, Error> bound;
OnNext next;
OnDone done;
};
template <
typename Value,
typename Error,
typename OnError,
typename OnDone>
struct producer_with_error_done {
producer<Value, Error> bound;
OnError error;
OnDone done;
};
template <
typename Value,
typename Error,
typename OnNext,
typename OnError,
typename OnDone>
struct producer_with_next_error_done {
producer<Value, Error> bound;
OnNext next;
OnError error;
OnDone done;
};
struct lifetime_holder {
lifetime &alive_while;
};
template <typename Callback1>
struct lifetime_holder_1 {
Callback1 callback1;
lifetime &alive_while;
};
template <typename Callback1, typename Callback2>
struct lifetime_holder_2 {
Callback1 callback1;
Callback2 callback2;
lifetime &alive_while;
};
template <typename Callback1, typename Callback2, typename Callback3>
struct lifetime_holder_3 {
Callback1 callback1;
Callback2 callback2;
Callback3 callback3;
lifetime &alive_while;
};
enum class CallbackType {
Next,
Error,
Done,
Invalid,
};
template <typename Callback, CallbackType type>
inline auto on_next_dispatch(
Callback &&callback,
std::integral_constant<CallbackType, type>) {
return [](const auto&) {};
}
template <typename Callback>
inline decltype(auto) on_next_dispatch(
Callback &&callback,
std::integral_constant<CallbackType, CallbackType::Next>) {
return std::forward<Callback>(callback);
}
template <typename Callback, CallbackType type>
inline auto on_error_dispatch(
Callback &&callback,
std::integral_constant<CallbackType, type>) {
return [](const auto&) {};
}
template <typename Callback>
inline decltype(auto) on_error_dispatch(
Callback &&callback,
std::integral_constant<CallbackType, CallbackType::Error>) {
return std::forward<Callback>(callback);
}
template <typename Callback, CallbackType type>
inline auto on_done_dispatch(
Callback &&callback,
std::integral_constant<CallbackType, type>) {
return [] {};
}
template <typename Callback>
inline decltype(auto) on_done_dispatch(
Callback &&callback,
std::integral_constant<CallbackType, CallbackType::Done>) {
return std::forward<Callback>(callback);
}
enum class CallbacksType {
NextError,
NextDone,
ErrorDone,
Invalid,
};
template <typename Callback1, CallbacksType type>
inline auto on_next_dispatch(
Callback1 &&callback1,
std::integral_constant<CallbacksType, type>) {
return [](const auto&) {};
}
template <typename Callback1>
inline decltype(auto) on_next_dispatch(
Callback1 &&callback1,
std::integral_constant<CallbacksType, CallbacksType::NextError>) {
return std::forward<Callback1>(callback1);
}
template <typename Callback1>
inline decltype(auto) on_next_dispatch(
Callback1 &&callback1,
std::integral_constant<CallbacksType, CallbacksType::NextDone>) {
return std::forward<Callback1>(callback1);
}
template <typename Callback1, typename Callback2, CallbacksType type>
inline auto on_error_dispatch(
Callback1 &&callback1,
Callback2 &&callback2,
std::integral_constant<CallbacksType, type>) {
return [](const auto&) {};
}
template <typename Callback1, typename Callback2>
inline decltype(auto) on_error_dispatch(
Callback1 &&callback1,
Callback2 &&callback2,
std::integral_constant<CallbacksType, CallbacksType::NextError>) {
return std::forward<Callback2>(callback2);
}
template <typename Callback1, typename Callback2>
inline decltype(auto) on_error_dispatch(
Callback1 &&callback1,
Callback2 &&callback2,
std::integral_constant<CallbacksType, CallbacksType::ErrorDone>) {
return std::forward<Callback1>(callback1);
}
template <typename Callback2, CallbacksType type>
inline auto on_done_dispatch(
Callback2 &&callback2,
std::integral_constant<CallbacksType, type>) {
return [] {};
}
template <typename Callback2>
inline decltype(auto) on_done_dispatch(
Callback2 &&callback2,
std::integral_constant<CallbacksType, CallbacksType::NextDone>) {
return std::forward<Callback2>(callback2);
}
template <typename Callback2>
inline decltype(auto) on_done_dispatch(
Callback2 &&callback2,
std::integral_constant<CallbacksType, CallbacksType::ErrorDone>) {
return std::forward<Callback2>(callback2);
}
} // namespace details
template <typename OnNext>
inline details::next_holder<std::decay_t<OnNext>> on_next(OnNext &&handler) {
return { std::forward<OnNext>(handler) };
}
template <typename OnError>
inline details::error_holder<std::decay_t<OnError>> on_error(OnError &&handler) {
return { std::forward<OnError>(handler) };
}
template <typename OnDone>
inline details::done_holder<std::decay_t<OnDone>> on_done(OnDone &&handler) {
return { std::forward<OnDone>(handler) };
}
inline details::lifetime_holder start(lifetime &alive_while) {
return { alive_while };
}
template <typename Callback1>
inline details::lifetime_holder_1<
std::decay_t<Callback1>> start(
Callback1 &&callback1,
lifetime &alive_while) {
return {
std::forward<Callback1>(callback1),
alive_while };
}
template <typename Callback1, typename Callback2>
inline details::lifetime_holder_2<
std::decay_t<Callback1>,
std::decay_t<Callback2>> start(
Callback1 &&callback1,
Callback2 &&callback2,
lifetime &alive_while) {
return {
std::forward<Callback1>(callback1),
std::forward<Callback2>(callback2),
alive_while };
}
template <typename Callback1, typename Callback2, typename Callback3>
inline details::lifetime_holder_3<
std::decay_t<Callback1>,
std::decay_t<Callback2>,
std::decay_t<Callback3>> start(
Callback1 &&callback1,
Callback2 &&callback2,
Callback3 &&callback3,
lifetime &alive_while) {
return {
std::forward<Callback1>(callback1),
std::forward<Callback2>(callback2),
std::forward<Callback3>(callback3),
alive_while };
}
namespace details {
template <
typename Value,
typename Error,
typename OnNext,
typename = std::enable_if_t<
is_callable_v<OnNext, Value>>>
inline producer_with_next<Value, Error, OnNext> operator|(
producer<Value, Error> &&value,
next_holder<OnNext> &&handler) {
return { std::move(value), std::move(handler.next) };
}
template <
typename Value,
typename Error,
typename OnError,
typename = std::enable_if_t<
is_callable_v<OnError, Error>>>
inline producer_with_error<Value, Error, OnError> operator|(
producer<Value, Error> &&value,
error_holder<OnError> &&handler) {
return { std::move(value), std::move(handler.error) };
}
template <
typename Value,
typename Error,
typename OnDone,
typename = std::enable_if_t<
is_callable_v<OnDone>>>
inline producer_with_done<Value, Error, OnDone> operator|(
producer<Value, Error> &&value,
done_holder<OnDone> &&handler) {
return { std::move(value), std::move(handler.done) };
}
template <
typename Value,
typename Error,
typename OnNext,
typename OnError,
typename = std::enable_if_t<
is_callable_v<OnNext, Value>>,
typename = std::enable_if_t<
is_callable_v<OnError, Error>>>
inline producer_with_next_error<Value, Error, OnNext, OnError> operator|(
producer_with_next<Value, Error, OnNext> &&producer_with_next,
error_holder<OnError> &&handler) {
return {
std::move(producer_with_next.bound),
std::move(producer_with_next.next),
std::move(handler.error) };
}
template <
typename Value,
typename Error,
typename OnNext,
typename OnError,
typename = std::enable_if_t<
is_callable_v<OnNext, Value>>,
typename = std::enable_if_t<
is_callable_v<OnError, Error>>>
inline producer_with_next_error<Value, Error, OnNext, OnError> operator|(
producer_with_error<Value, Error, OnError> &&producer_with_error,
next_holder<OnNext> &&handler) {
return {
std::move(producer_with_error.bound),
std::move(handler.next),
std::move(producer_with_error.error) };
}
template <
typename Value,
typename Error,
typename OnNext,
typename OnDone,
typename = std::enable_if_t<
is_callable_v<OnNext, Value>
&& is_callable_v<OnDone>>>
inline producer_with_next_done<Value, Error, OnNext, OnDone> operator|(
producer_with_next<Value, Error, OnNext> &&producer_with_next,
done_holder<OnDone> &&handler) {
return {
std::move(producer_with_next.bound),
std::move(producer_with_next.next),
std::move(handler.done) };
}
template <
typename Value,
typename Error,
typename OnNext,
typename OnDone,
typename = std::enable_if_t<
is_callable_v<OnNext, Value>
&& is_callable_v<OnDone>>>
inline producer_with_next_done<Value, Error, OnNext, OnDone> operator|(
producer_with_done<Value, Error, OnDone> &&producer_with_done,
next_holder<OnNext> &&handler) {
return {
std::move(producer_with_done.bound),
std::move(handler.next),
std::move(producer_with_done.done) };
}
template <
typename Value,
typename Error,
typename OnError,
typename OnDone,
typename = std::enable_if_t<
is_callable_v<OnError, Error>
&& is_callable_v<OnDone>>>
inline producer_with_error_done<Value, Error, OnError, OnDone> operator|(
producer_with_error<Value, Error, OnError> &&producer_with_error,
done_holder<OnDone> &&handler) {
return {
std::move(producer_with_error.bound),
std::move(producer_with_error.error),
std::move(handler.done) };
}
template <
typename Value,
typename Error,
typename OnError,
typename OnDone,
typename = std::enable_if_t<
is_callable_v<OnError, Error>
&& is_callable_v<OnDone>>>
inline producer_with_error_done<Value, Error, OnError, OnDone> operator|(
producer_with_done<Value, Error, OnDone> &&producer_with_done,
error_holder<OnError> &&handler) {
return {
std::move(producer_with_done.bound),
std::move(handler.error),
std::move(producer_with_done.done) };
}
template <
typename Value,
typename Error,
typename OnNext,
typename OnError,
typename OnDone,
typename = std::enable_if_t<
is_callable_v<OnNext, Value>
&& is_callable_v<OnError, Error>
&& is_callable_v<OnDone>>>
inline producer_with_next_error_done<
Value,
Error,
OnNext,
OnError,
OnDone> operator|(
producer_with_next_error<
Value,
Error,
OnNext,
OnError> &&producer_with_next_error,
done_holder<OnDone> &&handler) {
return {
std::move(producer_with_next_error.bound),
std::move(producer_with_next_error.next),
std::move(producer_with_next_error.error),
std::move(handler.done) };
}
template <
typename Value,
typename Error,
typename OnNext,
typename OnError,
typename OnDone,
typename = std::enable_if_t<
is_callable_v<OnNext, Value>
&& is_callable_v<OnError, Error>
&& is_callable_v<OnDone>>>
inline producer_with_next_error_done<
Value,
Error,
OnNext,
OnError,
OnDone> operator|(
producer_with_next_done<
Value,
Error,
OnNext,
OnDone> &&producer_with_next_done,
error_holder<OnError> &&handler) {
return {
std::move(producer_with_next_done.bound),
std::move(producer_with_next_done.next),
std::move(handler.error),
std::move(producer_with_next_done.done) };
}
template <
typename Value,
typename Error,
typename OnNext,
typename OnError,
typename OnDone,
typename = std::enable_if_t<
is_callable_v<OnNext, Value>
&& is_callable_v<OnError, Error>
&& is_callable_v<OnDone>>>
inline producer_with_next_error_done<
Value,
Error,
OnNext,
OnError,
OnDone> operator|(
producer_with_error_done<
Value,
Error,
OnError,
OnDone> &&producer_with_error_done,
next_holder<OnNext> &&handler) {
return {
std::move(producer_with_error_done.bound),
std::move(handler.next),
std::move(producer_with_error_done.error),
std::move(producer_with_error_done.done) };
}
template <
typename Value,
typename Error,
typename OnNext,
typename OnError,
typename OnDone>
inline void operator|(
producer_with_next_error_done<
Value,
Error,
OnNext,
OnError,
OnDone> &&producer_with_next_error_done,
lifetime_holder &&lifetime) {
2017-09-12 13:58:14 +00:00
lifetime.alive_while.add(
std::move(producer_with_next_error_done.bound).start(
2017-09-12 13:58:14 +00:00
std::move(producer_with_next_error_done.next),
std::move(producer_with_next_error_done.error),
std::move(producer_with_next_error_done.done)));
}
template <typename Value, typename Error>
inline void operator|(
producer<Value, Error> &&value,
lifetime_holder &&start_with_lifetime) {
return std::move(value)
| on_next([](const Value&) {})
| on_error([](const Error&) {})
| on_done([] {})
| std::move(start_with_lifetime);
}
template <typename Value, typename Error, typename OnNext>
inline void operator|(
producer_with_next<
Value,
Error,
OnNext> &&producer_with_next,
lifetime_holder &&start_with_lifetime) {
return std::move(producer_with_next)
| on_error([](const Error&) {})
| on_done([] {})
| std::move(start_with_lifetime);
}
template <typename Value, typename Error, typename OnError>
inline void operator|(
producer_with_error<
Value,
Error,
OnError> &&producer_with_error,
lifetime_holder &&start_with_lifetime) {
return std::move(producer_with_error)
| on_next([](const Value&) {})
| on_done([] {})
| std::move(start_with_lifetime);
}
template <typename Value, typename Error, typename OnDone>
inline void operator|(
producer_with_done<
Value,
Error,
OnDone> &&producer_with_done,
lifetime_holder &&start_with_lifetime) {
return std::move(producer_with_done)
| on_next([](const Value&) {})
| on_error([](const Error&) {})
| std::move(start_with_lifetime);
}
template <
typename Value,
typename Error,
typename OnNext,
typename OnError>
inline void operator|(
producer_with_next_error<
Value,
Error,
OnNext,
OnError> &&producer_with_next_error,
lifetime_holder &&start_with_lifetime) {
return std::move(producer_with_next_error)
| on_done([] {})
| std::move(start_with_lifetime);
}
template <
typename Value,
typename Error,
typename OnNext,
typename OnDone>
inline void operator|(
producer_with_next_done<
Value,
Error,
OnNext,
OnDone> &&producer_with_next_done,
lifetime_holder &&start_with_lifetime) {
return std::move(producer_with_next_done)
| on_error([](const Error&) {})
| std::move(start_with_lifetime);
}
template <
typename Value,
typename Error,
typename OnError,
typename OnDone>
inline void operator|(
producer_with_error_done<
Value,
Error,
OnError,
OnDone> &&producer_with_error_done,
lifetime_holder &&start_with_lifetime) {
return std::move(producer_with_error_done)
| on_next([](const Value&) {})
| std::move(start_with_lifetime);
}
template <
typename Value,
typename Error,
typename Callback1,
typename = std::enable_if_t<
is_callable_v<Callback1, Value>
// || is_callable_v<Callback1, Error>
|| is_callable_v<Callback1>
>>
inline void operator|(
producer<Value, Error> &&value,
lifetime_holder_1<Callback1> &&start_with_lifetime) {
using callback1_type = std::integral_constant<CallbackType,
is_callable_v<Callback1, Value> ? CallbackType::Next :
// is_callable_v<Callback1, Error> ? CallbackType::Error :
is_callable_v<Callback1> ? CallbackType::Done :
CallbackType::Invalid>;
start_with_lifetime.alive_while.add(
std::move(value).start(
on_next_dispatch(std::move(start_with_lifetime.callback1), callback1_type{}),
on_error_dispatch(std::move(start_with_lifetime.callback1), callback1_type{}),
on_done_dispatch(std::move(start_with_lifetime.callback1), callback1_type{})));
}
template <
typename Value,
typename Error,
typename OnNext,
typename Callback1,
typename = std::enable_if_t<
is_callable_v<Callback1, Error>
|| is_callable_v<Callback1>
>>
inline void operator|(
producer_with_next<Value, Error, OnNext> &&producer_with_next,
lifetime_holder_1<Callback1> &&start_with_lifetime) {
using callback1_type = std::integral_constant<CallbackType,
is_callable_v<Callback1, Error> ? CallbackType::Error :
is_callable_v<Callback1> ? CallbackType::Done :
CallbackType::Invalid>;
start_with_lifetime.alive_while.add(
std::move(producer_with_next.bound).start(
std::move(producer_with_next.next),
on_error_dispatch(std::move(start_with_lifetime.callback1), callback1_type{}),
on_done_dispatch(std::move(start_with_lifetime.callback1), callback1_type{})));
}
template <
typename Value,
typename Error,
typename OnError,
typename Callback1,
typename = std::enable_if_t<
is_callable_v<Callback1, Value>
|| is_callable_v<Callback1>
>>
inline void operator|(
producer_with_error<Value, Error, OnError> &&producer_with_error,
lifetime_holder_1<Callback1> &&start_with_lifetime) {
using callback1_type = std::integral_constant<CallbackType,
is_callable_v<Callback1, Value> ? CallbackType::Next :
is_callable_v<Callback1> ? CallbackType::Done :
CallbackType::Invalid>;
start_with_lifetime.alive_while.add(
std::move(producer_with_error.bound).start(
on_next_dispatch(std::move(start_with_lifetime.callback1), callback1_type{}),
std::move(producer_with_error.error),
on_done_dispatch(std::move(start_with_lifetime.callback1), callback1_type{})));
}
template <
typename Value,
typename Error,
typename OnDone,
typename Callback1,
typename = std::enable_if_t<
is_callable_v<Callback1, Value>
// || is_callable_v<Callback1, Error>
>>
inline void operator|(
producer_with_done<Value, Error, OnDone> &&producer_with_done,
lifetime_holder_1<Callback1> &&start_with_lifetime) {
using callback1_type = std::integral_constant<CallbackType,
is_callable_v<Callback1, Value> ? CallbackType::Next :
// is_callable_v<Callback1, Error> ? CallbackType::Error :
CallbackType::Invalid>;
start_with_lifetime.alive_while.add(
std::move(producer_with_done.bound).start(
on_next_dispatch(std::move(start_with_lifetime.callback1), callback1_type{}),
on_error_dispatch(std::move(start_with_lifetime.callback1), callback1_type{}),
std::move(producer_with_done.done)));
}
template <
typename Value,
typename Error,
typename OnNext,
typename OnError,
typename Callback1,
typename = std::enable_if_t<
is_callable_v<Callback1>>>
inline void operator|(
producer_with_next_error<Value, Error, OnNext, OnError> &&producer_with_next_error,
lifetime_holder_1<Callback1> &&start_with_lifetime) {
start_with_lifetime.alive_while.add(
std::move(producer_with_next_error.bound).start(
std::move(producer_with_next_error.next),
std::move(producer_with_next_error.error),
std::move(start_with_lifetime.callback1)));
}
template <
typename Value,
typename Error,
typename OnNext,
typename OnDone,
typename Callback1,
typename = std::enable_if_t<
is_callable_v<Callback1, Error>>>
inline void operator|(
producer_with_next_done<Value, Error, OnNext, OnDone> &&producer_with_next_done,
lifetime_holder_1<Callback1> &&start_with_lifetime) {
start_with_lifetime.alive_while.add(
std::move(producer_with_next_done.bound).start(
std::move(producer_with_next_done.next),
std::move(start_with_lifetime.callback1),
std::move(producer_with_next_done.done)));
}
template <
typename Value,
typename Error,
typename OnError,
typename OnDone,
typename Callback1,
typename = std::enable_if_t<
is_callable_v<Callback1, Value>>>
inline void operator|(
producer_with_error_done<Value, Error, OnError, OnDone> &&producer_with_error_done,
lifetime_holder_1<Callback1> &&start_with_lifetime) {
start_with_lifetime.alive_while.add(
std::move(producer_with_error_done.bound).start(
std::move(start_with_lifetime.callback1),
std::move(producer_with_error_done.error),
std::move(producer_with_error_done.done)));
}
template <
typename Value,
typename Error,
typename Callback1,
typename Callback2,
typename = std::enable_if_t<
(is_callable_v<Callback1, Value> && is_callable_v<Callback2, Error>)
|| (is_callable_v<Callback1, Value> && is_callable_v<Callback2>)
// || (is_callable_v<Callback1, Error> && is_callable_v<Callback2>)
>>
inline void operator|(
producer<Value, Error> &&value,
lifetime_holder_2<Callback1, Callback2> &&start_with_lifetime) {
using callbacks_type = std::integral_constant<CallbacksType,
(is_callable_v<Callback1, Value> && is_callable_v<Callback2, Error>) ? CallbacksType::NextError :
(is_callable_v<Callback1, Value> && is_callable_v<Callback2>) ? CallbacksType::NextDone :
// (is_callable_v<Callback1, Error> && is_callable_v<Callback2>) ? CallbacksType::ErrorDone :
CallbacksType::Invalid>;
start_with_lifetime.alive_while.add(
std::move(value).start(
on_next_dispatch(std::move(start_with_lifetime.callback1), callbacks_type{}),
on_error_dispatch(std::move(start_with_lifetime.callback1), std::move(start_with_lifetime.callback2), callbacks_type{}),
on_done_dispatch(std::move(start_with_lifetime.callback2), callbacks_type{})));
}
template <
typename Value,
typename Error,
typename OnNext,
typename Callback1,
typename Callback2,
typename = std::enable_if_t<
is_callable_v<Callback1, Error>>,
typename = std::enable_if_t<
is_callable_v<Callback2>>>
inline void operator|(
producer_with_next<Value, Error, OnNext> &&producer_with_next,
lifetime_holder_2<Callback1, Callback2> &&start_with_lifetime) {
start_with_lifetime.alive_while.add(
std::move(producer_with_next.bound).start(
std::move(producer_with_next.next),
std::move(start_with_lifetime.callback1),
std::move(start_with_lifetime.callback2)));
}
template <
typename Value,
typename Error,
typename OnError,
typename Callback1,
typename Callback2,
typename = std::enable_if_t<
is_callable_v<Callback1, Value>>,
typename = std::enable_if_t<
is_callable_v<Callback2>>>
inline void operator|(
producer_with_error<Value, Error, OnError> &&producer_with_error,
lifetime_holder_2<Callback1, Callback2> &&start_with_lifetime) {
start_with_lifetime.alive_while.add(
std::move(producer_with_error.bound).start(
std::move(start_with_lifetime.callback1),
std::move(producer_with_error.error),
std::move(start_with_lifetime.callback2)));
}
template <
typename Value,
typename Error,
typename OnDone,
typename Callback1,
typename Callback2,
typename = std::enable_if_t<
is_callable_v<Callback1, Value>>,
typename = std::enable_if_t<
is_callable_v<Callback1, Error>>>
inline void operator|(
producer_with_done<Value, Error, OnDone> &&producer_with_done,
lifetime_holder_2<Callback1, Callback2> &&start_with_lifetime) {
start_with_lifetime.alive_while.add(
std::move(producer_with_done.bound).start(
std::move(start_with_lifetime.callback1),
std::move(start_with_lifetime.callback2),
std::move(producer_with_done.done)));
}
template <
typename Value,
typename Error,
typename Callback1,
typename Callback2,
typename Callback3,
typename = std::enable_if_t<
is_callable_v<Callback1, Value>>,
typename = std::enable_if_t<
is_callable_v<Callback2, Error>>,
typename = std::enable_if_t<
is_callable_v<Callback3>>>
inline void operator|(
producer<Value, Error> &&value,
lifetime_holder_3<Callback1, Callback2, Callback3> &&start_with_lifetime) {
start_with_lifetime.alive_while.add(
std::move(value).start(
std::move(start_with_lifetime.callback1),
std::move(start_with_lifetime.callback2),
std::move(start_with_lifetime.callback3)));
}
} // namespace details
} // namespace rpl