2018-12-31 20:04:05 +01:00
|
|
|
//
|
2018-12-31 23:02:34 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019
|
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/ClientJson.h"
|
|
|
|
|
|
|
|
#include "td/telegram/td_api.h"
|
|
|
|
#include "td/telegram/td_api_json.h"
|
|
|
|
|
|
|
|
#include "td/tl/tl_json.h"
|
|
|
|
|
|
|
|
#include "td/utils/format.h"
|
|
|
|
#include "td/utils/JsonBuilder.h"
|
|
|
|
#include "td/utils/logging.h"
|
2018-10-31 15:51:07 +01:00
|
|
|
#include "td/utils/port/thread_local.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/Status.h"
|
|
|
|
|
2018-10-31 15:51:07 +01:00
|
|
|
#include <utility>
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
namespace td {
|
|
|
|
|
2018-10-31 15:51:07 +01:00
|
|
|
static Result<std::pair<td_api::object_ptr<td_api::Function>, string>> to_request(Slice request) {
|
2018-12-31 20:04:05 +01:00
|
|
|
auto request_str = request.str();
|
|
|
|
TRY_RESULT(json_value, json_decode(request_str));
|
|
|
|
if (json_value.type() != JsonValue::Type::Object) {
|
2018-05-20 14:30:36 +02:00
|
|
|
return Status::Error("Expected an Object");
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
2018-10-31 15:51:07 +01:00
|
|
|
|
|
|
|
string extra;
|
2018-05-20 15:16:16 +02:00
|
|
|
if (has_json_object_field(json_value.get_object(), "@extra")) {
|
2018-10-31 15:51:07 +01:00
|
|
|
extra = json_encode<string>(
|
2018-05-20 15:16:16 +02:00
|
|
|
get_json_object_field(json_value.get_object(), "@extra", JsonValue::Type::Null).move_as_ok());
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
td_api::object_ptr<td_api::Function> func;
|
|
|
|
TRY_STATUS(from_json(func, json_value));
|
2018-10-31 15:51:07 +01:00
|
|
|
return std::make_pair(std::move(func), extra);
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
2018-10-31 15:51:07 +01:00
|
|
|
static std::string from_response(const td_api::Object &object, const string &extra) {
|
|
|
|
auto str = json_encode<string>(ToJson(object));
|
2018-12-31 20:04:05 +01:00
|
|
|
CHECK(!str.empty() && str.back() == '}');
|
|
|
|
if (!extra.empty()) {
|
|
|
|
str.pop_back();
|
2018-10-31 15:51:07 +01:00
|
|
|
str.reserve(str.size() + 11 + extra.size());
|
2018-12-31 20:04:05 +01:00
|
|
|
str += ",\"@extra\":";
|
|
|
|
str += extra;
|
2018-10-31 15:51:07 +01:00
|
|
|
str += '}';
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2018-10-31 15:51:07 +01:00
|
|
|
static TD_THREAD_LOCAL std::string *current_output;
|
|
|
|
|
|
|
|
static CSlice store_string(std::string str) {
|
|
|
|
init_thread_local<std::string>(current_output);
|
|
|
|
*current_output = std::move(str);
|
|
|
|
return *current_output;
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ClientJson::send(Slice request) {
|
2018-05-20 01:56:41 +02:00
|
|
|
auto r_request = to_request(request);
|
|
|
|
if (r_request.is_error()) {
|
|
|
|
LOG(ERROR) << "Failed to parse " << tag("request", format::escaped(request)) << " " << r_request.error();
|
|
|
|
return;
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-10-31 15:51:07 +01:00
|
|
|
std::uint64_t extra_id = extra_id_.fetch_add(1, std::memory_order_relaxed);
|
|
|
|
if (!r_request.ok_ref().second.empty()) {
|
|
|
|
std::lock_guard<std::mutex> guard(mutex_);
|
|
|
|
extra_[extra_id] = std::move(r_request.ok_ref().second);
|
|
|
|
}
|
|
|
|
client_.send(Client::Request{extra_id, std::move(r_request.ok_ref().first)});
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
CSlice ClientJson::receive(double timeout) {
|
|
|
|
auto response = client_.receive(timeout);
|
|
|
|
if (!response.object) {
|
|
|
|
return {};
|
|
|
|
}
|
2018-10-31 15:51:07 +01:00
|
|
|
|
|
|
|
std::string extra;
|
|
|
|
if (response.id != 0) {
|
|
|
|
std::lock_guard<std::mutex> guard(mutex_);
|
|
|
|
auto it = extra_.find(response.id);
|
|
|
|
if (it != extra_.end()) {
|
|
|
|
extra = std::move(it->second);
|
|
|
|
extra_.erase(it);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return store_string(from_response(*response.object, extra));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
CSlice ClientJson::execute(Slice request) {
|
|
|
|
auto r_request = to_request(request);
|
|
|
|
if (r_request.is_error()) {
|
|
|
|
LOG(ERROR) << "Failed to parse " << tag("request", format::escaped(request)) << " " << r_request.error();
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2018-10-31 15:51:07 +01:00
|
|
|
return store_string(from_response(*Client::execute(Client::Request{0, std::move(r_request.ok_ref().first)}).object,
|
|
|
|
r_request.ok().second));
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace td
|