TDME2 1.9.121
ServerClient.h
Go to the documentation of this file.
1#pragma once
2
3#include <stdint.h>
4
5#include <exception>
6#include <sstream>
7#include <string>
8
9#include <tdme/tdme.h>
14
15using std::string;
16using std::stringstream;
17
20
21namespace tdme {
22namespace network {
23namespace udpserver {
24class ServerRequest;
25};
26};
27};
28
29/**
30 * Base class for network server clients
31 * @author Andreas Drewke
32 */
34friend class ServerWorkerThread;
35
36public:
38
39 /**
40 * @brief returns client's ip
41 * @return client ip
42 */
43 virtual const string& getIp() const = 0;
44
45 /**
46 * @brief returns client port
47 * @return client port
48 */
49 virtual const unsigned int getPort() const = 0;
50
51 /**
52 * @brief Client identification key
53 * @return client key
54 */
55 virtual const string& getKey() const = 0;
56
57 /**
58 * @brief sets the clients identification key
59 * @param &key client identification key
60 * @return if setting the key was succesful
61 */
62 virtual const bool setKey(const string &key) = 0;
63
64 /**
65 * @brief Creates a frame to be used with send
66 * @return frame to be send
67 */
68 stringstream* createFrame();
69
70 /**
71 * @brief Shuts down this network client
72 */
73 virtual void shutdown() = 0;
74
75protected:
76 /**
77 * @brief To be overwritten with a request handler, will be called from worker
78 * @param frame frame
79 * @param messageId message id (udp server only)
80 * @param retries retries (udp server only)
81 */
82 virtual void onRequest(stringstream* frame, const uint32_t messageId, const uint8_t retries) = 0;
83
84 /*
85 * @brief event method called if client will be initiated, will be called from worker
86 */
87 virtual void onInit() = 0;
88
89 /*
90 * @brief event method called if client will be closed, will be called from worker
91 */
92 virtual void onClose() = 0;
93
94 /*
95 * @brief custom event method called if fired, will be called from worker
96 */
97 virtual void onCustom(const string& type) = 0;
98
99 /**
100 * @brief Event, which will be called if frame has been received, defaults to worker thread pool
101 * @param frame frame
102 * @param messageId message id (upd server only)
103 * @param retries retries (udp server only)
104 */
105 virtual void onFrameReceived(stringstream* frame, const uint32_t messageId = 0, const uint8_t retries = 0) = 0;
106
107 /**
108 * @brief Shuts down this network client
109 */
110 virtual void close() = 0;
111
112 //
113 std::string key;
114};
115
Base class for network server clients.
Definition: ServerClient.h:33
virtual const unsigned int getPort() const =0
returns client port
stringstream * createFrame()
Creates a frame to be used with send.
virtual const string & getIp() const =0
returns client's ip
virtual void shutdown()=0
Shuts down this network client.
virtual const bool setKey(const string &key)=0
sets the clients identification key
static STATIC_DLL_IMPEXT const char * KEY_PREFIX_UNNAMED
Definition: ServerClient.h:37
virtual void onRequest(stringstream *frame, const uint32_t messageId, const uint8_t retries)=0
To be overwritten with a request handler, will be called from worker.
virtual void onFrameReceived(stringstream *frame, const uint32_t messageId=0, const uint8_t retries=0)=0
Event, which will be called if frame has been received, defaults to worker thread pool.
virtual const string & getKey() const =0
Client identification key.
virtual void close()=0
Shuts down this network client.
virtual void onCustom(const string &type)=0
Reference counter implementation to be used with inheritance.
Definition: Reference.h:10
std::exception Exception
Exception base class.
Definition: Exception.h:19
Definition: fwd-tdme.h:4
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11