harbour-fernschreiber/src/tdlibreceiver.h

70 lines
2.8 KiB
C
Raw Normal View History

/*
Copyright (C) 2020 Sebastian J. Wolf
This file is part of Fernschreiber.
Fernschreiber is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Fernschreiber is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Fernschreiber. If not, see <http://www.gnu.org/licenses/>.
*/
2020-08-10 21:17:13 +03:00
#ifndef TDLIBRECEIVER_H
#define TDLIBRECEIVER_H
#include <QDebug>
#include <QThread>
#include <QJsonDocument>
#include <QJsonObject>
2020-08-10 21:17:13 +03:00
#include <td/telegram/td_json_client.h>
class TDLibReceiver : public QThread
{
Q_OBJECT
void run() Q_DECL_OVERRIDE {
receiverLoop();
}
public:
explicit TDLibReceiver(void *tdLibClient, QObject *parent = nullptr);
void setActive(const bool &active);
signals:
void versionDetected(const QString &version);
void authorizationStateChanged(const QString &authorizationState);
2020-08-13 00:51:09 +03:00
void optionUpdated(const QString &optionName, const QVariant &optionValue);
2020-08-13 01:20:28 +03:00
void connectionStateChanged(const QString &connectionState);
void userUpdated(const QVariantMap &userInformation);
void fileUpdated(const QVariantMap &fileInformation);
2020-08-16 18:38:51 +03:00
void newChatDiscovered(const QVariantMap &chatInformation);
2020-08-17 00:31:20 +03:00
void unreadMessageCountUpdated(const QVariantMap &messageCountInformation);
void unreadChatCountUpdated(const QVariantMap &chatCountInformation);
2020-08-20 15:58:32 +03:00
void chatLastMessageUpdated(const QString &chatId, const QString &order, const QVariantMap &lastMessage);
void chatOrderUpdated(const QString &chatId, const QString &order);
2020-08-10 21:17:13 +03:00
private:
void *tdLibClient;
bool isActive;
void receiverLoop();
2020-08-12 11:50:01 +03:00
void processReceivedDocument(const QJsonDocument &receivedJsonDocument);
void processUpdateOption(const QVariantMap &receivedInformation);
void processUpdateAuthorizationState(const QVariantMap &receivedInformation);
2020-08-13 01:20:28 +03:00
void processUpdateConnectionState(const QVariantMap &receivedInformation);
void processUpdateUser(const QVariantMap &receivedInformation);
void processUpdateFile(const QVariantMap &receivedInformation);
2020-08-16 18:38:51 +03:00
void processUpdateNewChat(const QVariantMap &receivedInformation);
2020-08-17 00:31:20 +03:00
void processUpdateUnreadMessageCount(const QVariantMap &receivedInformation);
void processUpdateUnreadChatCount(const QVariantMap &receivedInformation);
void processUpdateChatLastMessage(const QVariantMap &receivedInformation);
void processUpdateChatOrder(const QVariantMap &receivedInformation);
2020-08-10 21:17:13 +03:00
};
#endif // TDLIBRECEIVER_H