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/net/NetQuery.h"
|
|
|
|
|
2022-02-05 21:28:43 +01:00
|
|
|
#include "td/telegram/ChainId.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/Global.h"
|
2019-02-19 19:15:08 +01:00
|
|
|
#include "td/telegram/telegram_api.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2022-02-05 21:28:43 +01:00
|
|
|
#include "td/utils/algorithm.h"
|
2018-12-19 22:57:56 +01:00
|
|
|
#include "td/utils/as.h"
|
2018-06-26 01:43:11 +02:00
|
|
|
#include "td/utils/misc.h"
|
2021-05-17 14:21:11 +02:00
|
|
|
#include "td/utils/SliceBuilder.h"
|
2018-06-26 01:43:11 +02:00
|
|
|
|
2022-02-08 15:30:06 +01:00
|
|
|
#include <algorithm>
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
namespace td {
|
2018-04-24 18:21:47 +02:00
|
|
|
|
2020-10-05 17:07:23 +02:00
|
|
|
int VERBOSITY_NAME(net_query) = VERBOSITY_NAME(INFO);
|
|
|
|
|
2021-09-03 11:27:59 +02:00
|
|
|
int64 NetQuery::get_my_id() {
|
2018-12-31 20:04:05 +01:00
|
|
|
return G()->get_my_id();
|
|
|
|
}
|
|
|
|
|
2022-02-05 21:28:43 +01:00
|
|
|
void NetQuery::set_chain_ids(vector<ChainId> &&chain_ids) {
|
2022-02-05 22:16:16 +01:00
|
|
|
chain_ids_ = transform(chain_ids, [](ChainId chain_id) { return chain_id.get() == 0 ? 1 : chain_id.get(); });
|
2022-02-05 21:28:43 +01:00
|
|
|
td::unique(chain_ids_);
|
2022-02-08 15:30:06 +01:00
|
|
|
// LOG(ERROR) << chain_ids_;
|
2022-02-05 21:28:43 +01:00
|
|
|
}
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void NetQuery::on_net_write(size_t size) {
|
|
|
|
if (file_type_ == -1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
G()->get_net_stats_file_callbacks().at(file_type_)->on_write(size);
|
|
|
|
}
|
2018-04-19 19:21:26 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void NetQuery::on_net_read(size_t size) {
|
|
|
|
if (file_type_ == -1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
G()->get_net_stats_file_callbacks().at(file_type_)->on_read(size);
|
|
|
|
}
|
2018-04-19 19:21:26 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
int32 NetQuery::tl_magic(const BufferSlice &buffer_slice) {
|
|
|
|
auto slice = buffer_slice.as_slice();
|
|
|
|
if (slice.size() < 4) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return as<int32>(slice.begin());
|
|
|
|
}
|
|
|
|
|
2018-06-08 20:42:04 +02:00
|
|
|
void NetQuery::set_error(Status status, string source) {
|
2021-05-31 20:51:48 +02:00
|
|
|
if (status.code() == Error::Resend || status.code() == Error::Canceled || status.code() == Error::ResendInvokeAfter) {
|
2018-06-08 20:42:04 +02:00
|
|
|
return set_error_impl(Status::Error(200, PSLICE() << status), std::move(source));
|
|
|
|
}
|
|
|
|
|
2018-06-24 23:52:17 +02:00
|
|
|
if (begins_with(status.message(), "INPUT_METHOD_INVALID")) {
|
2018-06-08 20:42:04 +02:00
|
|
|
LOG(ERROR) << "Receive INPUT_METHOD_INVALID for query " << format::as_hex_dump<4>(Slice(query_.as_slice()));
|
|
|
|
}
|
|
|
|
if (status.message() == "BOT_METHOD_INVALID") {
|
2019-02-19 19:15:08 +01:00
|
|
|
auto id = tl_constructor();
|
2020-04-28 15:25:56 +02:00
|
|
|
if (id != telegram_api::help_getNearestDc::ID && id != telegram_api::help_getAppConfig::ID) {
|
2019-02-19 19:15:08 +01:00
|
|
|
LOG(ERROR) << "Receive BOT_METHOD_INVALID for query " << format::as_hex(id);
|
|
|
|
}
|
2018-06-08 20:42:04 +02:00
|
|
|
}
|
2018-06-21 21:32:56 +02:00
|
|
|
if (status.message() == "MSG_WAIT_FAILED" && status.code() != 400) {
|
|
|
|
status = Status::Error(400, "MSG_WAIT_FAILED");
|
|
|
|
}
|
2018-06-08 20:42:04 +02:00
|
|
|
set_error_impl(std::move(status), std::move(source));
|
|
|
|
}
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
} // namespace td
|