summaryrefslogtreecommitdiff
path: root/libs/tdlib/td/td/telegram/ClientJson.h
blob: 880f144d94ff62b6ac6084a901a81f997ecd0106 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2018
//
// 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/port/thread_local.h"
#include "td/utils/Slice.h"
#include "td/utils/Status.h"

#include <atomic>
#include <cstdint>
#include <mutex>
#include <string>
#include <unordered_map>
#include <vector>

namespace td {

class ClientJson final {
 public:
  void send(Slice request);

  CSlice receive(double timeout);

  CSlice execute(Slice request);

 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};
  static TD_THREAD_LOCAL std::string *current_output_;

  CSlice store_string(std::string str);

  Result<Client::Request> to_request(Slice request);
  std::string from_response(Client::Response response);
};
}  // namespace td