libktorrent  2.1.1
rpcserver.h
1 /***************************************************************************
2  * Copyright (C) 2005 by Joris Guisson *
3  * joris.guisson@gmail.com *
4  * *
5  * This program is free software; you can redistribute it and/or modify *
6  * it under the terms of the GNU General Public License as published by *
7  * the Free Software Foundation; either version 2 of the License, or *
8  * (at your option) any later version. *
9  * *
10  * This program is distributed in the hope that it will be useful, *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13  * GNU General Public License for more details. *
14  * *
15  * You should have received a copy of the GNU General Public License *
16  * along with this program; if not, write to the *
17  * Free Software Foundation, Inc., *
18  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19  ***************************************************************************/
20 #ifndef DHTRPCSERVER_H
21 #define DHTRPCSERVER_H
22 
23 #include <QList>
24 #include <QObject>
25 #include <dht/rpcserverinterface.h>
26 #include <net/address.h>
27 #include <net/socket.h>
28 #include <util/constants.h>
29 #include <util/ptrmap.h>
30 
31 using bt::Uint32;
32 using bt::Uint16;
33 using bt::Uint8;
34 
35 namespace dht
36 {
37  class Key;
38  class DHT;
39 
45  class RPCServer : public QObject, public RPCServerInterface
46  {
47  Q_OBJECT
48  public:
49  RPCServer(DHT* dh_table, Uint16 port, QObject *parent = 0);
50  ~RPCServer() override;
51 
53  void start();
54 
56  void stop();
57 
63  RPCCall* doCall(RPCMsg::Ptr msg) override;
64 
70  void sendMsg(RPCMsg::Ptr msg);
71 
77  void sendMsg(const RPCMsg & msg);
78 
83  void ping(const dht::Key & our_id, const net::Address & addr);
84 
86  Uint32 getNumActiveRPCCalls() const;
87 
88  private Q_SLOTS:
89  void callTimeout(RPCCall* call);
90 
91  private:
92  class Private;
93  Private* d;
94  };
95 
96 }
97 
98 #endif
dht::RPCServer::ping
void ping(const dht::Key &our_id, const net::Address &addr)
net::Address
Definition: address.h:59
dht::Key
Key in the distributed hash table.
Definition: key.h:57
dht::RPCMsg
Definition: rpcmsg.h:67
dht::RPCServer
Definition: rpcserver.h:46
dht::RPCServer::sendMsg
void sendMsg(const RPCMsg &msg)
dht::RPCServer::getNumActiveRPCCalls
Uint32 getNumActiveRPCCalls() const
Get the number of active calls.
dht::RPCServer::stop
void stop()
Stop the server.
dht::RPCServer::start
void start()
Start the server.
dht::RPCServerInterface
Definition: rpcserverinterface.h:52
dht::RPCServer::doCall
RPCCall * doCall(RPCMsg::Ptr msg) override
dht::RPCServer::sendMsg
void sendMsg(RPCMsg::Ptr msg)
dht::RPCCall
Definition: rpccall.h:78
dht::DHT
Definition: dht.h:63