19using std::stringstream;
27UDPServerClient::UDPServerClient(
const uint32_t clientId,
const string& ip,
const unsigned int port) :
33 shutdownRequested(false),
34 messageMapSafeMutex(
"nioudpserverclient_messagemapsafe") {
77 stringstream* frame =
new stringstream();
78 frame->exceptions(std::ios_base::failbit | std::ios_base::badbit);
86 frame->seekp(0, ios_base::end);
89 if (frame->tellp() > 512) {
101 "UDPServerClient::send(): send failed for client '" +
104 (RTTI::demangle(
typeid(exception).name())) +
112 bool messageProcessed =
false;
113 MessageMapSafe::iterator it;
122 messageProcessed =
true;
123 Message* message = &it->second;
130 message.
time = Time::getCurrentMillis();
132 messageMapSafe.insert(it, pair<uint32_t, Message>(messageId, message));
148 "UDPServerClient::sendAcknowledgement(): send failed for client '" +
151 (RTTI::demangle(
typeid(exception).name())) +
158 return messageProcessed ==
true?
false:
true;
164 char keySize =
key.size();
165 frame->write(&keySize, 1);
166 frame->write(
key.data(), keySize);
174 "UDPServerClient::sendConnected(): send failed for client '" +
177 (RTTI::demangle(
typeid(exception).name())) +
201 Console::println(
"UDPServerClient::onFrameReceived(): client request declined from '" + (
ip) +
"'. Shutting down client");
270 uint64_t now = Time::getCurrentMillis();
273 Message* message = &it->second;
286 if (retries == 0)
return 0L;
Base exception class for network server exceptions.
static STATIC_DLL_IMPEXT const char * KEY_PREFIX_UNNAMED
static const uint32_t MESSAGE_ID_UNSUPPORTED
static const uint8_t MESSAGE_RETRIES_NONE
@ REQUESTTYPE_CLIENT_INIT
@ REQUESTTYPE_CLIENT_CUSTOM
@ REQUESTTYPE_CLIENT_CLOSE
@ REQUESTTYPE_CLIENT_REQUEST
static const string EVENT_CUSTOM_NONE
bool setClientKey(CLIENT *client, const std::string &clientKey)
sets a client identification key
void closeClient(CLIENT *client)
closes a client connection
Base class for network UDP server clients.
void cleanUpSafeMessages()
Clean up safe messages.
void init()
initiates this network client
MessageMapSafe messageMapSafe
static stringstream * createFrame()
Creates a frame to be used with send.
void fireEvent(const string &type)
fires an custom event
void close()
Shuts down this network client.
static const uint64_t MESSAGESSAFE_KEEPTIME
uint64_t getRetryTime(const uint8_t retries)
const string & getIp() const
returns client's ip
void shutdown()
Shuts down this network client.
void send(stringstream *frame, bool safe=true, bool deleteFrame=true)
Sends a frame to client, takes over ownership of frame.
const string & getKey() const
Client identification key.
const unsigned int getPort() const
returns client port
virtual void onFrameReceived(stringstream *frame, const uint32_t messageId=0, const uint8_t retries=0)
Event, which will be called if frame has been received, defaults to worker thread pool.
const bool setKey(const string &key)
sets the clients identification key
const uint32_t getClientId()
Get client id.
UDPServer * getServer()
Returns server.
virtual ~UDPServerClient()
public destructor, should only be called implicitly by Reference::releaseReference()
Mutex messageMapSafeMutex
void sendConnected()
Sends an connect message to client.
volatile bool shutdownRequested
bool processSafeMessage(const uint32_t messageId)
Checks if message has already been processed and sends an acknowlegdement to client / safe client mes...
static const int MESSAGEACK_RESENDTIMES_TRIES
static const uint64_t MESSAGEACK_RESENDTIMES[MESSAGEACK_RESENDTIMES_TRIES]
Base class for network UDP servers.
static void initializeHeader(stringstream *frame)
Writes a empty header to message.
@ MESSAGETYPE_ACKNOWLEDGEMENT
ServerWorkerThreadPool * workerThreadPool
void sendMessage(const UDPServerClient *client, stringstream *frame, const bool safe, const bool deleteFrame, const MessageType messageType, const uint32_t messageId=MESSAGE_ID_NONE)
pushes a message to be send, takes over ownership of frame
void unlock()
Unlocks this mutex.
void lock()
Locks the mutex, additionally mutex locks will block until other locks have been unlocked.
bool addElement(T *element, const bool declinable)
Adds an element to this queue, signals threads which waits for an element.
Run time type information utility class.
void releaseReference()
releases a reference, thus decrementing the counter and delete it if reference counter is zero
void acquireReference()
acquires a reference, incrementing the counter