/* This file is part of TON Blockchain Library. TON Blockchain Library is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. TON Blockchain Library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with TON Blockchain Library. If not, see . Copyright 2017-2019 Telegram Systems LLP */ #pragma once #include "td/actor/common.h" #include "td/actor/ActorId.h" #include "td/actor/ActorOwn.h" #include "td/actor/ActorShared.h" namespace td { namespace actor { template TD_WARN_UNUSED_RESULT ActorOwn create_actor(ActorOptions options, ArgsT &&... args) { return ActorOwn(ActorId::create(options, std::forward(args)...)); } template TD_WARN_UNUSED_RESULT ActorOwn create_actor(Slice name, ArgsT &&... args) { return ActorOwn(ActorId::create(ActorOptions().with_name(name), std::forward(args)...)); } #define SEND_CLOSURE_LATER 1 #ifndef SEND_CLOSURE_LATER template , size_t argument_count = member_function_argument_count(), std::enable_if_t with_promise = false> void send_closure(ActorIdT &&actor_id, FunctionT function, ArgsT &&... args) { using ActorT = typename std::decay_t::ActorT; static_assert(std::is_base_of::value, "unsafe send_closure"); ActorIdT id = std::forward(actor_id); detail::send_closure(id.as_actor_ref(), function, std::forward(args)...); } template , size_t argument_count = member_function_argument_count(), std::enable_if_t with_promise = true> void send_closure(ActorIdT &&actor_id, FunctionT function, ArgsT &&... args) { using ActorT = typename std::decay_t::ActorT; static_assert(std::is_base_of::value, "unsafe send_closure"); ActorIdT id = std::forward(actor_id); detail::send_closure_with_promise(id.as_actor_ref(), call_n_arguments( [&function](auto &&... nargs) { return create_immediate_closure(function, std::forward(nargs)...); }, std::forward(args)...), get_last_argument(std::forward(args)...)); } #else template , size_t argument_count = member_function_argument_count(), std::enable_if_t with_promise = false> void send_closure(ActorIdT &&actor_id, FunctionT function, ArgsT &&... args) { using ActorT = typename std::decay_t::ActorT; static_assert(std::is_base_of::value, "unsafe send_closure"); ActorIdT id = std::forward(actor_id); detail::send_closure_later(id.as_actor_ref(), function, std::forward(args)...); } template , size_t argument_count = member_function_argument_count(), std::enable_if_t with_promise = true> void send_closure(ActorIdT &&actor_id, FunctionT function, ArgsT &&... args) { using ActorT = typename std::decay_t::ActorT; static_assert(std::is_base_of::value, "unsafe send_closure"); ActorIdT id = std::forward(actor_id); detail::send_closure_with_promise_later(id.as_actor_ref(), call_n_arguments( [&function](auto &&... nargs) { return create_delayed_closure(function, std::forward(nargs)...); }, std::forward(args)...), get_last_argument(std::forward(args)...)); } #endif template bool send_closure_bool(ActorIdT &&actor_id, FunctionT function, ArgsT &&... args) { send_closure(std::forward(actor_id), function, std::forward(args)...); return true; } template , size_t argument_count = member_function_argument_count(), std::enable_if_t with_promise = false> void send_closure_later(ActorIdT &&actor_id, FunctionT function, ArgsT &&... args) { using ActorT = typename std::decay_t::ActorT; static_assert(std::is_base_of::value, "unsafe send_closure"); ActorIdT id = std::forward(actor_id); detail::send_closure_later(id.as_actor_ref(), function, std::forward(args)...); } template , size_t argument_count = member_function_argument_count(), std::enable_if_t with_promise = true> void send_closure_later(ActorIdT &&actor_id, FunctionT function, ArgsT &&... args) { using ActorT = typename std::decay_t::ActorT; static_assert(std::is_base_of::value, "unsafe send_closure"); ActorIdT id = std::forward(actor_id); detail::send_closure_with_promise_later(id.as_actor_ref(), call_n_arguments( [&function](auto &&... nargs) { return create_delayed_closure(function, std::forward(nargs)...); }, std::forward(args)...), get_last_argument(std::forward(args)...)); } template bool send_closure_later_bool(ActorIdT &&actor_id, FunctionT function, ArgsT &&... args) { send_closure_later(std::forward(actor_id), function, std::forward(args)...); return true; } template void send_lambda(ActorIdT &&actor_id, ArgsT &&... args) { ActorIdT id = std::forward(actor_id); detail::send_lambda(id.as_actor_ref(), std::forward(args)...); } template void send_lambda_later(ActorIdT &&actor_id, ArgsT &&... args) { ActorIdT id = std::forward(actor_id); detail::send_lambda_later(id.as_actor_ref(), std::forward(args)...); } template void send_signals(ActorIdT &&actor_id, ActorSignals signals) { ActorIdT id = std::forward(actor_id); detail::send_signals(id.as_actor_ref(), signals); } template void send_signals_later(ActorIdT &&actor_id, ActorSignals signals) { ActorIdT id = std::forward(actor_id); detail::send_signals_later(id.as_actor_ref(), signals); } } // namespace actor } // namespace td