2018-12-31 20:04:05 +01:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#include "td/telegram/CallManager.h"
|
|
|
|
|
2021-09-18 23:47:05 +02:00
|
|
|
#include "td/telegram/telegram_api.hpp"
|
|
|
|
|
2019-02-12 22:26:36 +01:00
|
|
|
#include "td/utils/common.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/logging.h"
|
|
|
|
#include "td/utils/misc.h"
|
2021-05-17 14:21:11 +02:00
|
|
|
#include "td/utils/SliceBuilder.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
#include <limits>
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
CallManager::CallManager(ActorShared<> parent) : parent_(std::move(parent)) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void CallManager::update_call(Update call) {
|
|
|
|
int64 call_id = 0;
|
|
|
|
downcast_call(*call->phone_call_, [&](auto &update) { call_id = update.id_; });
|
2020-05-29 10:26:08 +02:00
|
|
|
LOG(DEBUG) << "Receive UpdateCall for " << call_id;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
auto &info = call_info_[call_id];
|
|
|
|
|
|
|
|
if (!info.call_id.is_valid() && call->phone_call_->get_id() == telegram_api::phoneCallRequested::ID) {
|
|
|
|
info.call_id = create_call_actor();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!info.call_id.is_valid()) {
|
2020-05-29 10:26:08 +02:00
|
|
|
LOG(INFO) << "Call_id is not valid for " << call_id << ", postpone update " << to_string(call);
|
2018-12-31 20:04:05 +01:00
|
|
|
info.updates.push_back(std::move(call));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto actor = get_call_actor(info.call_id);
|
|
|
|
if (actor.empty()) {
|
2018-04-27 10:00:56 +02:00
|
|
|
LOG(INFO) << "Drop update: " << to_string(call);
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
send_closure(actor, &CallActor::update_call, std::move(call->phone_call_));
|
|
|
|
}
|
|
|
|
|
2020-05-29 10:26:08 +02:00
|
|
|
void CallManager::update_call_signaling_data(int64 call_id, string data) {
|
|
|
|
auto info_it = call_info_.find(call_id);
|
|
|
|
if (info_it == call_info_.end() || !info_it->second.call_id.is_valid()) {
|
|
|
|
LOG(INFO) << "Ignore signaling data for " << call_id;
|
2020-09-14 15:02:37 +02:00
|
|
|
return;
|
2020-05-29 10:26:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
auto actor = get_call_actor(info_it->second.call_id);
|
|
|
|
if (actor.empty()) {
|
|
|
|
LOG(INFO) << "Ignore signaling data for " << info_it->second.call_id;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
send_closure(actor, &CallActor::update_call_signaling_data, std::move(data));
|
|
|
|
}
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void CallManager::create_call(UserId user_id, tl_object_ptr<telegram_api::InputUser> &&input_user,
|
2019-06-08 11:26:35 +02:00
|
|
|
CallProtocol &&protocol, bool is_video, Promise<CallId> promise) {
|
2018-12-31 20:04:05 +01:00
|
|
|
LOG(INFO) << "Create call with " << user_id;
|
|
|
|
auto call_id = create_call_actor();
|
|
|
|
auto actor = get_call_actor(call_id);
|
|
|
|
CHECK(!actor.empty());
|
2022-08-30 11:03:26 +02:00
|
|
|
auto safe_promise = SafePromise<CallId>(std::move(promise), Status::Error(400, "Call not found"));
|
2019-06-08 11:26:35 +02:00
|
|
|
send_closure(actor, &CallActor::create_call, user_id, std::move(input_user), std::move(protocol), is_video,
|
2022-08-30 11:03:26 +02:00
|
|
|
std::move(safe_promise));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
2022-04-22 14:16:09 +02:00
|
|
|
void CallManager::accept_call(CallId call_id, CallProtocol &&protocol, Promise<Unit> promise) {
|
2018-12-31 20:04:05 +01:00
|
|
|
auto actor = get_call_actor(call_id);
|
|
|
|
if (actor.empty()) {
|
|
|
|
return promise.set_error(Status::Error(400, "Call not found"));
|
|
|
|
}
|
2022-08-30 11:03:26 +02:00
|
|
|
auto safe_promise = SafePromise<Unit>(std::move(promise), Status::Error(400, "Call not found"));
|
|
|
|
send_closure(actor, &CallActor::accept_call, std::move(protocol), std::move(safe_promise));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
2022-04-22 14:16:09 +02:00
|
|
|
void CallManager::send_call_signaling_data(CallId call_id, string &&data, Promise<Unit> promise) {
|
2018-12-31 20:04:05 +01:00
|
|
|
auto actor = get_call_actor(call_id);
|
|
|
|
if (actor.empty()) {
|
|
|
|
return promise.set_error(Status::Error(400, "Call not found"));
|
|
|
|
}
|
2022-08-30 11:03:26 +02:00
|
|
|
auto safe_promise = SafePromise<Unit>(std::move(promise), Status::Error(400, "Call not found"));
|
|
|
|
send_closure(actor, &CallActor::send_call_signaling_data, std::move(data), std::move(safe_promise));
|
2020-08-10 10:34:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CallManager::discard_call(CallId call_id, bool is_disconnected, int32 duration, bool is_video, int64 connection_id,
|
2022-04-22 14:16:09 +02:00
|
|
|
Promise<Unit> promise) {
|
2020-08-10 10:34:28 +02:00
|
|
|
auto actor = get_call_actor(call_id);
|
|
|
|
if (actor.empty()) {
|
|
|
|
return promise.set_error(Status::Error(400, "Call not found"));
|
|
|
|
}
|
2022-08-30 11:03:26 +02:00
|
|
|
auto safe_promise = SafePromise<Unit>(std::move(promise), Status::Error(400, "Call not found"));
|
|
|
|
send_closure(actor, &CallActor::discard_call, is_disconnected, duration, is_video, connection_id,
|
|
|
|
std::move(safe_promise));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
2019-08-06 19:07:23 +02:00
|
|
|
void CallManager::rate_call(CallId call_id, int32 rating, string comment,
|
2022-04-22 14:16:09 +02:00
|
|
|
vector<td_api::object_ptr<td_api::CallProblem>> &&problems, Promise<Unit> promise) {
|
2018-12-31 20:04:05 +01:00
|
|
|
auto actor = get_call_actor(call_id);
|
|
|
|
if (actor.empty()) {
|
|
|
|
return promise.set_error(Status::Error(400, "Call not found"));
|
|
|
|
}
|
2022-08-30 11:03:26 +02:00
|
|
|
auto safe_promise = SafePromise<Unit>(std::move(promise), Status::Error(400, "Call not found"));
|
|
|
|
send_closure(actor, &CallActor::rate_call, rating, std::move(comment), std::move(problems), std::move(safe_promise));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
2022-04-22 14:16:09 +02:00
|
|
|
void CallManager::send_call_debug_information(CallId call_id, string data, Promise<Unit> promise) {
|
2018-12-31 20:04:05 +01:00
|
|
|
auto actor = get_call_actor(call_id);
|
|
|
|
if (actor.empty()) {
|
|
|
|
return promise.set_error(Status::Error(400, "Call not found"));
|
|
|
|
}
|
2022-08-30 11:03:26 +02:00
|
|
|
auto safe_promise = SafePromise<Unit>(std::move(promise), Status::Error(400, "Call not found"));
|
|
|
|
send_closure(actor, &CallActor::send_call_debug_information, std::move(data), std::move(safe_promise));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
2022-04-22 14:16:09 +02:00
|
|
|
void CallManager::send_call_log(CallId call_id, td_api::object_ptr<td_api::InputFile> log_file, Promise<Unit> promise) {
|
|
|
|
auto actor = get_call_actor(call_id);
|
|
|
|
if (actor.empty()) {
|
|
|
|
return promise.set_error(Status::Error(400, "Call not found"));
|
|
|
|
}
|
2022-08-30 11:03:26 +02:00
|
|
|
auto safe_promise = SafePromise<Unit>(std::move(promise), Status::Error(400, "Call not found"));
|
|
|
|
send_closure(actor, &CallActor::send_call_log, std::move(log_file), std::move(safe_promise));
|
2022-04-22 14:16:09 +02:00
|
|
|
}
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
CallId CallManager::create_call_actor() {
|
|
|
|
if (next_call_id_ == std::numeric_limits<int32>::max()) {
|
|
|
|
next_call_id_ = 1;
|
|
|
|
}
|
|
|
|
auto id = CallId(next_call_id_++);
|
|
|
|
CHECK(id.is_valid());
|
|
|
|
auto it_flag = id_to_actor_.emplace(id, ActorOwn<CallActor>());
|
|
|
|
CHECK(it_flag.second);
|
|
|
|
LOG(INFO) << "Create CallActor: " << id;
|
2019-03-20 19:13:45 +01:00
|
|
|
auto main_promise = PromiseCreator::lambda([actor_id = actor_id(this), id](Result<int64> call_id) {
|
2018-12-31 20:04:05 +01:00
|
|
|
send_closure(actor_id, &CallManager::set_call_id, id, std::move(call_id));
|
|
|
|
});
|
|
|
|
it_flag.first->second = create_actor<CallActor>(PSLICE() << "Call " << id.get(), id, actor_shared(this, id.get()),
|
|
|
|
std::move(main_promise));
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CallManager::set_call_id(CallId call_id, Result<int64> r_server_call_id) {
|
|
|
|
if (r_server_call_id.is_error()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto server_call_id = r_server_call_id.move_as_ok();
|
|
|
|
auto &call_info = call_info_[server_call_id];
|
|
|
|
CHECK(!call_info.call_id.is_valid() || call_info.call_id == call_id);
|
|
|
|
call_info.call_id = call_id;
|
|
|
|
auto actor = get_call_actor(call_id);
|
|
|
|
if (actor.empty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (auto &update : call_info.updates) {
|
|
|
|
send_closure(actor, &CallActor::update_call, std::move(update->phone_call_));
|
|
|
|
}
|
|
|
|
call_info.updates.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
ActorId<CallActor> CallManager::get_call_actor(CallId call_id) {
|
|
|
|
auto it = id_to_actor_.find(call_id);
|
|
|
|
if (it == id_to_actor_.end()) {
|
|
|
|
return ActorId<CallActor>();
|
|
|
|
}
|
|
|
|
return it->second.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CallManager::hangup() {
|
|
|
|
close_flag_ = true;
|
|
|
|
for (auto &it : id_to_actor_) {
|
2022-10-01 00:28:54 +02:00
|
|
|
LOG(INFO) << "Ask to close CallActor " << it.first.get();
|
2018-12-31 20:04:05 +01:00
|
|
|
it.second.reset();
|
|
|
|
}
|
|
|
|
if (id_to_actor_.empty()) {
|
|
|
|
stop();
|
|
|
|
}
|
|
|
|
}
|
2022-09-29 13:50:25 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void CallManager::hangup_shared() {
|
|
|
|
auto token = narrow_cast<int32>(get_link_token());
|
|
|
|
auto it = id_to_actor_.find(CallId(token));
|
2022-10-01 00:28:54 +02:00
|
|
|
CHECK(it != id_to_actor_.end());
|
|
|
|
CHECK(it->second.empty());
|
|
|
|
LOG(INFO) << "Closed CallActor " << it->first.get();
|
|
|
|
id_to_actor_.erase(it);
|
2018-12-31 20:04:05 +01:00
|
|
|
if (close_flag_ && id_to_actor_.empty()) {
|
|
|
|
stop();
|
|
|
|
}
|
|
|
|
}
|
2022-09-29 13:50:25 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
} // namespace td
|