// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2021 // // 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 managed(push, off) #include "td/telegram/Client.h" #pragma managed(pop) #include "td/telegram/TdDotNetApi.h" #include "td/utils/port/CxCli.h" #pragma managed(push, off) #include #pragma managed(pop) namespace Telegram { namespace Td { using namespace CxCli; #if !TD_CLI /// /// A type of callback function that will be called when a message is added to the internal TDLib log. /// /// Log verbosity level with which the message was added (-1 - 1024). /// If 0, then TDLib will crash as soon as the callback returns. /// None of the TDLib methods can be called from the callback. /// Null-terminated string with the message added to the log. public delegate void LogMessageCallback(int verbosityLevel, String^ message); #endif /// /// Interface for handler for results of queries to TDLib and incoming updates from TDLib. /// public interface class ClientResultHandler { /// /// Callback called on result of query to TDLib or incoming update from TDLib. /// /// Result of query or update of type Telegram.Td.Api.Update about new events. void OnResult(Api::BaseObject^ object); }; /// /// Main class for interaction with the TDLib. /// public ref class Client sealed { public: /// /// Sends a request to the TDLib. /// /// Object representing a query to the TDLib. /// Result handler with OnResult method which will be called with result /// of the query or with Telegram.Td.Api.Error as parameter. If it is null, nothing will be called. /// Thrown when query is null. void Send(Api::Function^ function, ClientResultHandler^ handler) { std::uint64_t requestId = Increment(currentRequestId); if (handler != nullptr) { handlers[requestId] = handler; } auto request = td::td_api::move_object_as(ToUnmanaged(function)->get_object_ptr()); td::ClientManager::get_manager_singleton()->send(clientId, requestId, std::move(request)); } /// /// Synchronously executes a TDLib request. Only a few marked accordingly requests can be executed synchronously. /// /// Object representing a query to the TDLib. /// Returns request result. /// Thrown when query is null. static Api::BaseObject^ Execute(Api::Function^ function) { auto request = td::td_api::move_object_as(ToUnmanaged(function)->get_object_ptr()); return Api::FromUnmanaged(*td::ClientManager::execute(std::move(request))); } /// /// Launches a cycle which will fetch all results of queries to TDLib and incoming updates from TDLib. /// Must be called once on a separate dedicated thread, on which all updates and query results from all Clients will be handled. /// Never returns. /// static void Run() { while (true) { auto response = td::ClientManager::get_manager_singleton()->receive(300.0); if (response.object != nullptr) { bool isClosed = response.object->get_id() == td::td_api::updateAuthorizationState::ID && static_cast(*response.object).authorization_state_->get_id() == td::td_api::authorizationStateClosed::ID && response.request_id == 0; ClientResultHandler^ handler; if (response.request_id == 0 ? updateHandlers.TryGetValue(response.client_id, handler) : handlers.TryRemove(response.request_id, handler)) { // TODO try/catch handler->OnResult(Api::FromUnmanaged(*response.object)); } if (isClosed) { updateHandlers.TryRemove(response.client_id, handler); } } } } /// /// Creates new Client. /// /// Handler for incoming updates. /// Returns created Client. static Client^ Create(ClientResultHandler^ updateHandler) { return REF_NEW Client(updateHandler); } #if !TD_CLI /// /// Sets the callback that will be called when a message is added to the internal TDLib log. /// None of the TDLib methods can be called from the callback. /// /// The maximum verbosity level of messages for which the callback will be called. /// Callback that will be called when a message is added to the internal TDLib log. /// Pass null to remove the callback. static void SetLogMessageCallback(std::int32_t max_verbosity_level, LogMessageCallback^ callback) { std::lock_guard lock(logMutex); if (callback == nullptr) { td::ClientManager::set_log_message_callback(max_verbosity_level, nullptr); logMessageCallback = nullptr; } else { logMessageCallback = callback; td::ClientManager::set_log_message_callback(max_verbosity_level, LogMessageCallbackWrapper); } } #endif private: Client(ClientResultHandler^ updateHandler) { clientId = td::ClientManager::get_manager_singleton()->create_client_id(); if (updateHandler != nullptr) { updateHandlers[clientId] = updateHandler; } Send(REF_NEW Api::GetOption("version"), nullptr); } #if !TD_CLI static std::int64_t currentRequestId; #else static std::int64_t currentRequestId = 0; #endif static ConcurrentDictionary handlers; static ConcurrentDictionary updateHandlers; std::int32_t clientId; #if !TD_CLI static std::mutex logMutex; static LogMessageCallback^ logMessageCallback; static void LogMessageCallbackWrapper(int verbosity_level, const char *message) { auto callback = logMessageCallback; if (callback != nullptr) { callback(verbosity_level, string_from_unmanaged(message)); } } #endif }; #if !TD_CLI std::int64_t Client::currentRequestId = 0; ConcurrentDictionary Client::handlers; ConcurrentDictionary Client::updateHandlers; std::mutex Client::logMutex; LogMessageCallback^ Client::logMessageCallback; #endif } // namespace Td } // namespace Telegram