-
Notifications
You must be signed in to change notification settings - Fork 244
Expand file tree
/
Copy pathrpcserver.h
More file actions
85 lines (71 loc) · 2.85 KB
/
rpcserver.h
File metadata and controls
85 lines (71 loc) · 2.85 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/******************************************************************************\
* Copyright (c) 2021-2026
*
* Author(s):
* dtinth
* Christian Hoffmann
*
******************************************************************************
*
* This program 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 2 of the License, or (at your option) any later
* version.
*
* This program 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
* this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*
\******************************************************************************/
#pragma once
#include <QObject>
#include <QJsonDocument>
#include <QJsonArray>
#include <QJsonObject>
#include <QTcpServer>
#include <QTcpSocket>
#include <QTimer>
#include <QMap>
#include <QVector>
#include <memory>
typedef std::function<void ( const QJsonObject&, QJsonObject& )> CRpcHandler;
/* Classes ********************************************************************/
class CRpcServer : public QObject
{
Q_OBJECT
public:
CRpcServer ( QObject* parent, QString strBindIP, int iPort, QString secret );
virtual ~CRpcServer();
bool Start();
void HandleMethod ( const QString& strMethod, CRpcHandler pHandler );
void BroadcastNotification ( const QString& strMethod, const QJsonObject& aParams );
static QJsonObject CreateJsonRpcError ( int code, QString message );
// JSON-RPC standard error codes
static const int iErrInvalidRequest = -32600;
static const int iErrMethodNotFound = -32601;
static const int iErrInvalidParams = -32602;
static const int iErrParseError = -32700;
// Our errors
static const int iErrAuthenticationFailed = 400;
static const int iErrUnauthenticated = 401;
private:
QString strBindIP;
int iPort;
QString strSecret;
QTcpServer* pTransportServer;
// A map from method name to handler functions
QMap<QString, CRpcHandler> mapMethodHandlers;
QMap<QTcpSocket*, bool> isAuthenticated;
QVector<QTcpSocket*> vecClients;
void HandleApiAuth ( QTcpSocket* pSocket, const QJsonObject& params, QJsonObject& response );
void ProcessMessage ( QTcpSocket* pSocket, QJsonObject message, QJsonObject& response );
void Send ( QTcpSocket* pSocket, const QJsonDocument& aMessage );
static QJsonObject CreateJsonRpcErrorReply ( int code, QString message );
protected slots:
void OnNewConnection();
};