Commit 6eb8dace authored by Kirk Shoop's avatar Kirk Shoop Committed by Facebook Github Bot

add flow support to on()

Summary: add support for flow to `on()` - requested by Songqiao

Reviewed By: ericniebler

Differential Revision: D14814588

fbshipit-source-id: 3989d0aa554a32482dcc15c1ba706d5604c95eb8
parent 2d2aabcd
...@@ -26,37 +26,189 @@ namespace detail { ...@@ -26,37 +26,189 @@ namespace detail {
struct on_fn { struct on_fn {
private: private:
template <class In, class Out> template <class Exec, class Out>
struct on_value_impl { struct down_shared : std::enable_shared_from_this<down_shared<Exec, Out>> {
In in_; Exec exec_;
Out out_; Out out_;
void operator()(any) { std::atomic<bool> done_;
submit(in_, std::move(out_)); down_shared(Exec exec, Out out)
: exec_(std::move(exec)), out_(std::move(out)), done_(false) {}
Exec& exec() {
return exec_;
}
Out& out() {
return out_;
}
std::atomic<bool>& done() {
return done_;
} }
}; };
template <class Factory>
template <class DownShared, class Up>
struct up_shared : std::enable_shared_from_this<up_shared<DownShared, Up>> {
DownShared shared_;
Up up_;
up_shared(DownShared shared, Up up)
: shared_(std::move(shared)), up_(std::move(up)) {}
auto& exec() {
return shared_->exec();
}
auto& out() {
return shared_->out();
}
std::atomic<bool>& done() {
return shared_->done();
}
};
template <class Shared, class Dest, class CPO, class... AN>
struct continuation_impl {
using receiver_category = receiver_tag;
const CPO& fn_;
std::tuple<Dest, AN...> an_;
Shared shared_;
void value(any) {
::folly::pushmi::apply(fn_, std::move(an_));
}
template <class E>
void error(E e) noexcept {
set_error(shared_->out(), e);
}
void done() {}
};
template <class Shared, class CPO, class... AN>
static void down(Shared& shared, const CPO& fn, AN&&... an) {
submit(
::folly::pushmi::schedule(shared->exec_),
continuation_impl<
Shared,
decltype(shared->out_)&,
CPO,
std::decay_t<AN>...>{
fn,
std::tuple<decltype(shared->out_)&, std::decay_t<AN>...>{
shared->out_, (AN &&) an...},
shared});
}
template <class Shared, class CPO, class... AN>
static void up(Shared& shared, const CPO& fn, AN&&... an) {
if (shared->done().load()) {
return;
}
submit(
::folly::pushmi::schedule(shared->exec()),
continuation_impl<
Shared,
decltype(shared->up_)&,
CPO,
std::decay_t<AN>...>{
fn,
std::tuple<decltype(shared->up_)&, std::decay_t<AN>...>{
shared->up_, (AN &&) an...},
shared});
}
template <class Shared>
struct up_impl {
Shared shared_;
using receiver_category = receiver_tag;
template <class... VN>
void value(VN&&... vn) {
// call up.set_value from executor context
up(shared_, set_value, (VN &&) vn...);
}
template <class E>
void error(E&& e) noexcept {
// call up.set_error from executor context
up(shared_, set_error, (E &&) e);
}
void done() {
// call up.set_done from executor context
up(shared_, set_done);
}
};
template <bool IsFlow, class Shared>
struct down_impl {
Shared shared_;
using receiver_category =
std::conditional_t<IsFlow, flow_receiver_tag, receiver_tag>;
template <class... VN>
void value(VN&&... vn) {
if (shared_->done().load()) {
return;
}
// call out.set_value from executor context
down(shared_, set_value, (VN &&) vn...);
}
template <class E>
void error(E&& e) noexcept {
if (shared_->done().exchange(true)) {
return;
}
// call out.set_error from executor context
down(shared_, set_error, (E &&) e);
}
void done() {
if (shared_->done().exchange(true)) {
return;
}
// call out.set_done from executor context
down(shared_, set_done);
}
PUSHMI_TEMPLATE(class Up)
(requires IsFlow&& Receiver<Up>) //
void starting(Up&& up) {
auto shared =
std::make_shared<up_shared<Shared, Up>>(shared_, (Up &&) up);
auto receiver = up_impl<decltype(shared)>{shared};
// call out.set_starting from executor context
down(shared_, set_starting, std::move(receiver));
}
};
template <class Factory, class In>
struct submit_impl { struct submit_impl {
Factory ef_; Factory ef_;
PUSHMI_TEMPLATE(class In, class Out) PUSHMI_TEMPLATE(class SIn, class Out)
(requires SenderTo<In, Out>) // (requires SenderTo<In, Out>) //
void void
operator()(In&& in, Out out) const { operator()(SIn&& in, Out out) {
auto exec = ::folly::pushmi::make_strand(ef_); auto exec = ::folly::pushmi::make_strand(ef_);
auto shared = std::make_shared<down_shared<decltype(exec), Out>>(
std::move(exec), (Out &&) out);
auto receiver = down_impl<FlowSender<In>, decltype(shared)>{shared};
// call in.submit from executor context
submit( submit(
::folly::pushmi::schedule(exec), ::folly::pushmi::schedule(shared->exec()),
::folly::pushmi::make_receiver(on_value_impl<std::decay_t<In>, Out>{ continuation_impl<
(In&&) in, std::move(out)})); decltype(shared),
std::decay_t<In>,
decltype(submit),
decltype(receiver)>{
submit,
std::tuple<std::decay_t<In>, decltype(receiver)>{
(In &&) in, std::move(receiver)},
shared});
} }
}; };
template <class Factory> template <class Factory>
struct adapt_impl { struct adapt_impl {
Factory ef_; Factory ef_;
PUSHMI_TEMPLATE(class In) PUSHMI_TEMPLATE(class In)
(requires Sender<In>) // (requires Sender<In>) //
auto auto
operator()(In&& in) const { operator()(In&& in) & {
return ::folly::pushmi::detail::sender_from(
(In &&) in, submit_impl<Factory, In>{ef_});
}
PUSHMI_TEMPLATE(class In)
(requires Sender<In>) //
auto
operator()(In&& in) && {
return ::folly::pushmi::detail::sender_from( return ::folly::pushmi::detail::sender_from(
(In&&) in, submit_impl<Factory>{ef_}); (In &&) in, submit_impl<Factory, In>{std::move(ef_)});
} }
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment