2018-12-31 20:04:05 +01:00
|
|
|
//
|
2021-01-01 13:57:46 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2021
|
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)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "td/telegram/Client.h"
|
|
|
|
|
|
|
|
#include "td/utils/Slice.h"
|
|
|
|
|
|
|
|
#include <atomic>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <mutex>
|
|
|
|
#include <string>
|
|
|
|
#include <unordered_map>
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2021-05-18 03:35:36 +02:00
|
|
|
// TODO can be made private in TDLib 2.0
|
2018-12-31 20:04:05 +01:00
|
|
|
class ClientJson final {
|
|
|
|
public:
|
|
|
|
void send(Slice request);
|
|
|
|
|
2020-10-05 14:48:37 +02:00
|
|
|
const char *receive(double timeout);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-10-05 14:48:37 +02:00
|
|
|
static const char *execute(Slice request);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
Client client_;
|
|
|
|
std::mutex mutex_; // for extra_
|
|
|
|
std::unordered_map<std::int64_t, std::string> extra_;
|
|
|
|
std::atomic<std::uint64_t> extra_id_{1};
|
|
|
|
};
|
2018-10-31 15:51:07 +01:00
|
|
|
|
2020-11-14 23:13:11 +01:00
|
|
|
int json_create_client_id();
|
2020-10-05 15:08:07 +02:00
|
|
|
|
2020-11-12 12:45:18 +01:00
|
|
|
void json_send(int client_id, Slice request);
|
2020-10-05 15:08:07 +02:00
|
|
|
|
2020-11-12 12:45:18 +01:00
|
|
|
const char *json_receive(double timeout);
|
2020-10-05 15:08:07 +02:00
|
|
|
|
2020-11-12 12:45:18 +01:00
|
|
|
const char *json_execute(Slice request);
|
2020-10-05 15:08:07 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
} // namespace td
|