2018-01-28 11:58:33 +01:00
|
|
|
//
|
2024-01-01 01:07:21 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
|
2018-01-28 11:58:33 +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)
|
|
|
|
//
|
|
|
|
package org.drinkless.tdlib;
|
|
|
|
|
|
|
|
import java.util.concurrent.ConcurrentHashMap;
|
|
|
|
import java.util.concurrent.atomic.AtomicLong;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Main class for interaction with the TDLib.
|
|
|
|
*/
|
2020-10-11 20:28:33 +02:00
|
|
|
public final class Client {
|
2022-09-08 13:27:07 +02:00
|
|
|
static {
|
|
|
|
try {
|
|
|
|
System.loadLibrary("tdjni");
|
|
|
|
} catch (UnsatisfiedLinkError e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-28 11:58:33 +01:00
|
|
|
/**
|
|
|
|
* Interface for handler for results of queries to TDLib and incoming updates from TDLib.
|
|
|
|
*/
|
|
|
|
public interface ResultHandler {
|
|
|
|
/**
|
|
|
|
* Callback called on result of query to TDLib or incoming update from TDLib.
|
|
|
|
*
|
|
|
|
* @param object Result of query or update of type TdApi.Update about new events.
|
|
|
|
*/
|
|
|
|
void onResult(TdApi.Object object);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface for handler of exceptions thrown while invoking ResultHandler.
|
|
|
|
* By default, all such exceptions are ignored.
|
|
|
|
* All exceptions thrown from ExceptionHandler are ignored.
|
|
|
|
*/
|
|
|
|
public interface ExceptionHandler {
|
|
|
|
/**
|
|
|
|
* Callback called on exceptions thrown while invoking ResultHandler.
|
|
|
|
*
|
|
|
|
* @param e Exception thrown by ResultHandler.
|
|
|
|
*/
|
|
|
|
void onException(Throwable e);
|
|
|
|
}
|
|
|
|
|
2022-07-08 14:01:38 +02:00
|
|
|
/**
|
|
|
|
* Interface for handler of messages that are added to the internal TDLib log.
|
|
|
|
*/
|
|
|
|
public interface LogMessageHandler {
|
|
|
|
/**
|
|
|
|
* Callback called on messages that are added to the internal TDLib log.
|
|
|
|
*
|
|
|
|
* @param verbosityLevel Log verbosity level with which the message was added from -1 up to 1024.
|
|
|
|
* If 0, then TDLib will crash as soon as the callback returns.
|
|
|
|
* None of the TDLib methods can be called from the callback.
|
|
|
|
* @param message The message added to the internal TDLib log.
|
|
|
|
*/
|
|
|
|
void onLogMessage(int verbosityLevel, String message);
|
|
|
|
}
|
|
|
|
|
2023-10-24 20:52:34 +02:00
|
|
|
/**
|
|
|
|
* Exception class thrown when TDLib error occurred while performing {@link #execute(TdApi.Function)}.
|
|
|
|
*/
|
2023-10-30 19:36:29 +01:00
|
|
|
public static class ExecutionException extends Exception {
|
2023-10-24 20:52:34 +02:00
|
|
|
/**
|
|
|
|
* Original TDLib error occurred when performing one of the synchronous functions.
|
|
|
|
*/
|
|
|
|
public final TdApi.Error error;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param error TDLib error occurred while performing {@link #execute(TdApi.Function)}.
|
|
|
|
*/
|
2023-10-30 19:36:29 +01:00
|
|
|
ExecutionException (TdApi.Error error) {
|
2023-10-24 20:52:34 +02:00
|
|
|
super(error.code + ": " + error.message);
|
|
|
|
this.error = error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-28 11:58:33 +01:00
|
|
|
/**
|
|
|
|
* Sends a request to the TDLib.
|
|
|
|
*
|
|
|
|
* @param query Object representing a query to the TDLib.
|
|
|
|
* @param resultHandler Result handler with onResult method which will be called with result
|
|
|
|
* of the query or with TdApi.Error as parameter. If it is null, nothing
|
|
|
|
* will be called.
|
|
|
|
* @param exceptionHandler Exception handler with onException method which will be called on
|
|
|
|
* exception thrown from resultHandler. If it is null, then
|
|
|
|
* defaultExceptionHandler will be called.
|
|
|
|
*/
|
|
|
|
public void send(TdApi.Function query, ResultHandler resultHandler, ExceptionHandler exceptionHandler) {
|
2020-10-11 20:28:33 +02:00
|
|
|
long queryId = currentQueryId.incrementAndGet();
|
|
|
|
if (resultHandler != null) {
|
2018-01-28 11:58:33 +01:00
|
|
|
handlers.put(queryId, new Handler(resultHandler, exceptionHandler));
|
|
|
|
}
|
2020-10-11 20:28:33 +02:00
|
|
|
nativeClientSend(nativeClientId, queryId, query);
|
2018-01-28 11:58:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sends a request to the TDLib with an empty ExceptionHandler.
|
|
|
|
*
|
|
|
|
* @param query Object representing a query to the TDLib.
|
|
|
|
* @param resultHandler Result handler with onResult method which will be called with result
|
|
|
|
* of the query or with TdApi.Error as parameter. If it is null, then
|
|
|
|
* defaultExceptionHandler will be called.
|
|
|
|
*/
|
|
|
|
public void send(TdApi.Function query, ResultHandler resultHandler) {
|
|
|
|
send(query, resultHandler, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Synchronously executes a TDLib request. Only a few marked accordingly requests can be executed synchronously.
|
|
|
|
*
|
|
|
|
* @param query Object representing a query to the TDLib.
|
2023-10-30 19:32:34 +01:00
|
|
|
* @param <T> Automatically deduced return type of the query.
|
2018-01-28 11:58:33 +01:00
|
|
|
* @return request result.
|
2023-10-30 19:36:29 +01:00
|
|
|
* @throws ExecutionException if query execution fails.
|
2018-01-28 11:58:33 +01:00
|
|
|
*/
|
2024-02-10 23:58:09 +01:00
|
|
|
@SuppressWarnings("unchecked")
|
2023-10-30 19:36:29 +01:00
|
|
|
public static <T extends TdApi.Object> T execute(TdApi.Function<T> query) throws ExecutionException {
|
2023-10-24 20:52:34 +02:00
|
|
|
TdApi.Object object = nativeClientExecute(query);
|
|
|
|
if (object instanceof TdApi.Error) {
|
2023-10-30 19:36:29 +01:00
|
|
|
throw new ExecutionException((TdApi.Error) object);
|
2023-10-24 20:52:34 +02:00
|
|
|
}
|
|
|
|
return (T) object;
|
2018-01-28 11:58:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates new Client.
|
|
|
|
*
|
2020-10-05 19:13:15 +02:00
|
|
|
* @param updateHandler Handler for incoming updates.
|
|
|
|
* @param updateExceptionHandler Handler for exceptions thrown from updateHandler. If it is null, exceptions will be iggnored.
|
2018-01-28 11:58:33 +01:00
|
|
|
* @param defaultExceptionHandler Default handler for exceptions thrown from all ResultHandler. If it is null, exceptions will be iggnored.
|
|
|
|
* @return created Client
|
|
|
|
*/
|
2020-10-05 19:13:15 +02:00
|
|
|
public static Client create(ResultHandler updateHandler, ExceptionHandler updateExceptionHandler, ExceptionHandler defaultExceptionHandler) {
|
|
|
|
Client client = new Client(updateHandler, updateExceptionHandler, defaultExceptionHandler);
|
2020-10-11 20:28:33 +02:00
|
|
|
synchronized (responseReceiver) {
|
|
|
|
if (!responseReceiver.isRun) {
|
|
|
|
responseReceiver.isRun = true;
|
|
|
|
|
|
|
|
Thread receiverThread = new Thread(responseReceiver, "TDLib thread");
|
|
|
|
receiverThread.setDaemon(true);
|
|
|
|
receiverThread.start();
|
|
|
|
}
|
|
|
|
}
|
2018-01-28 11:58:33 +01:00
|
|
|
return client;
|
|
|
|
}
|
|
|
|
|
2022-07-08 14:01:38 +02:00
|
|
|
/**
|
|
|
|
* Sets the handler for messages that are added to the internal TDLib log.
|
|
|
|
* None of the TDLib methods can be called from the callback.
|
|
|
|
*
|
|
|
|
* @param maxVerbosityLevel The maximum verbosity level of messages for which the callback will be called.
|
|
|
|
* @param logMessageHandler Handler for messages that are added to the internal TDLib log. Pass null to remove the handler.
|
|
|
|
*/
|
|
|
|
public static void setLogMessageHandler(int maxVerbosityLevel, Client.LogMessageHandler logMessageHandler) {
|
|
|
|
nativeClientSetLogMessageHandler(maxVerbosityLevel, logMessageHandler);
|
|
|
|
}
|
|
|
|
|
2020-10-11 20:28:33 +02:00
|
|
|
private static class ResponseReceiver implements Runnable {
|
|
|
|
public boolean isRun = false;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
while (true) {
|
|
|
|
int resultN = nativeClientReceive(clientIds, eventIds, events, 100000.0 /*seconds*/);
|
|
|
|
for (int i = 0; i < resultN; i++) {
|
|
|
|
processResult(clientIds[i], eventIds[i], events[i]);
|
|
|
|
events[i] = null;
|
|
|
|
}
|
2018-01-28 11:58:33 +01:00
|
|
|
}
|
2020-10-11 20:28:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private void processResult(int clientId, long id, TdApi.Object object) {
|
|
|
|
boolean isClosed = false;
|
|
|
|
if (id == 0 && object instanceof TdApi.UpdateAuthorizationState) {
|
|
|
|
TdApi.AuthorizationState authorizationState = ((TdApi.UpdateAuthorizationState) object).authorizationState;
|
|
|
|
if (authorizationState instanceof TdApi.AuthorizationStateClosed) {
|
|
|
|
isClosed = true;
|
|
|
|
}
|
2018-01-28 11:58:33 +01:00
|
|
|
}
|
2020-10-11 20:28:33 +02:00
|
|
|
|
|
|
|
Handler handler = id == 0 ? updateHandlers.get(clientId) : handlers.remove(id);
|
|
|
|
if (handler != null) {
|
|
|
|
try {
|
|
|
|
handler.resultHandler.onResult(object);
|
|
|
|
} catch (Throwable cause) {
|
|
|
|
ExceptionHandler exceptionHandler = handler.exceptionHandler;
|
|
|
|
if (exceptionHandler == null) {
|
|
|
|
exceptionHandler = defaultExceptionHandlers.get(clientId);
|
|
|
|
}
|
|
|
|
if (exceptionHandler != null) {
|
|
|
|
try {
|
|
|
|
exceptionHandler.onException(cause);
|
|
|
|
} catch (Throwable ignored) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-28 11:58:33 +01:00
|
|
|
}
|
2020-10-11 20:28:33 +02:00
|
|
|
|
|
|
|
if (isClosed) {
|
|
|
|
updateHandlers.remove(clientId); // there will be no more updates
|
|
|
|
defaultExceptionHandlers.remove(clientId); // ignore further exceptions
|
2020-10-13 14:39:17 +02:00
|
|
|
clientCount.decrementAndGet();
|
2018-01-28 11:58:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-11 20:28:33 +02:00
|
|
|
private static final int MAX_EVENTS = 1000;
|
|
|
|
private final int[] clientIds = new int[MAX_EVENTS];
|
|
|
|
private final long[] eventIds = new long[MAX_EVENTS];
|
|
|
|
private final TdApi.Object[] events = new TdApi.Object[MAX_EVENTS];
|
|
|
|
}
|
2018-01-28 11:58:33 +01:00
|
|
|
|
2020-10-11 20:28:33 +02:00
|
|
|
private final int nativeClientId;
|
2020-10-05 17:58:38 +02:00
|
|
|
|
2020-10-11 20:28:33 +02:00
|
|
|
private static final ConcurrentHashMap<Integer, ExceptionHandler> defaultExceptionHandlers = new ConcurrentHashMap<Integer, ExceptionHandler>();
|
|
|
|
private static final ConcurrentHashMap<Integer, Handler> updateHandlers = new ConcurrentHashMap<Integer, Handler>();
|
|
|
|
private static final ConcurrentHashMap<Long, Handler> handlers = new ConcurrentHashMap<Long, Handler>();
|
|
|
|
private static final AtomicLong currentQueryId = new AtomicLong();
|
2020-10-13 14:39:17 +02:00
|
|
|
private static final AtomicLong clientCount = new AtomicLong();
|
2018-01-28 11:58:33 +01:00
|
|
|
|
2020-10-11 20:28:33 +02:00
|
|
|
private static final ResponseReceiver responseReceiver = new ResponseReceiver();
|
2018-01-28 11:58:33 +01:00
|
|
|
|
|
|
|
private static class Handler {
|
|
|
|
final ResultHandler resultHandler;
|
|
|
|
final ExceptionHandler exceptionHandler;
|
|
|
|
|
|
|
|
Handler(ResultHandler resultHandler, ExceptionHandler exceptionHandler) {
|
|
|
|
this.resultHandler = resultHandler;
|
|
|
|
this.exceptionHandler = exceptionHandler;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-05 19:13:15 +02:00
|
|
|
private Client(ResultHandler updateHandler, ExceptionHandler updateExceptionHandler, ExceptionHandler defaultExceptionHandler) {
|
2020-10-13 14:39:17 +02:00
|
|
|
clientCount.incrementAndGet();
|
2018-01-28 11:58:33 +01:00
|
|
|
nativeClientId = createNativeClient();
|
2020-10-11 20:28:33 +02:00
|
|
|
if (updateHandler != null) {
|
|
|
|
updateHandlers.put(nativeClientId, new Handler(updateHandler, updateExceptionHandler));
|
|
|
|
}
|
2020-10-05 20:31:27 +02:00
|
|
|
if (defaultExceptionHandler != null) {
|
2020-10-11 20:28:33 +02:00
|
|
|
defaultExceptionHandlers.put(nativeClientId, defaultExceptionHandler);
|
2020-10-05 20:31:27 +02:00
|
|
|
}
|
2020-11-14 20:57:59 +01:00
|
|
|
send(new TdApi.GetOption("version"), null, null);
|
2018-01-28 11:58:33 +01:00
|
|
|
}
|
|
|
|
|
2020-10-11 20:28:33 +02:00
|
|
|
private static native int createNativeClient();
|
2018-01-28 11:58:33 +01:00
|
|
|
|
2020-10-11 20:28:33 +02:00
|
|
|
private static native void nativeClientSend(int nativeClientId, long eventId, TdApi.Function function);
|
2018-01-28 11:58:33 +01:00
|
|
|
|
2020-10-11 20:28:33 +02:00
|
|
|
private static native int nativeClientReceive(int[] clientIds, long[] eventIds, TdApi.Object[] events, double timeout);
|
2018-01-28 11:58:33 +01:00
|
|
|
|
|
|
|
private static native TdApi.Object nativeClientExecute(TdApi.Function function);
|
2022-07-08 14:01:38 +02:00
|
|
|
|
|
|
|
private static native void nativeClientSetLogMessageHandler(int maxVerbosityLevel, LogMessageHandler logMessageHandler);
|
2018-01-28 11:58:33 +01:00
|
|
|
}
|