2013-12-03 13:04:53 +01:00
|
|
|
#ifndef NETWORK_DEPENDENCIES_THREADED_CLIENT_H
|
|
|
|
#define NETWORK_DEPENDENCIES_THREADED_CLIENT_H
|
|
|
|
|
|
|
|
//////////////////////////////////
|
|
|
|
// Created by Sam Svensson 2013 //
|
|
|
|
//////////////////////////////////
|
|
|
|
|
|
|
|
#include "../../Misc/Thread/IThreadObject.h"
|
2013-12-08 23:56:17 +01:00
|
|
|
#include "PostBox.h"
|
|
|
|
#include "Connection.h"
|
2013-12-03 13:04:53 +01:00
|
|
|
#include "../../Misc/Thread/OysterThread.h"
|
|
|
|
#include "../../Misc/Thread/OysterMutex.h"
|
2013-12-04 12:40:49 +01:00
|
|
|
#include "../../Misc/Utilities.h"
|
2013-12-03 13:04:53 +01:00
|
|
|
|
|
|
|
namespace Oyster
|
|
|
|
{
|
|
|
|
namespace Network
|
|
|
|
{
|
2013-12-08 23:56:17 +01:00
|
|
|
class OysterByte;
|
|
|
|
class ThreadedClient : public Thread::IThreadObject
|
2013-12-03 13:04:53 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ThreadedClient();
|
|
|
|
ThreadedClient(unsigned int socket);
|
2013-12-08 23:56:17 +01:00
|
|
|
ThreadedClient(IPostBox<Utility::DynamicMemory::SmartPointer<OysterByte>> *postBox, unsigned int socket);
|
2013-12-03 13:04:53 +01:00
|
|
|
virtual ~ThreadedClient();
|
|
|
|
|
2013-12-08 23:56:17 +01:00
|
|
|
int Send(Utility::DynamicMemory::SmartPointer<OysterByte>& byte);
|
2013-12-03 13:04:53 +01:00
|
|
|
|
|
|
|
int Connect(unsigned short port, const char serverName[]);
|
|
|
|
|
2013-12-08 23:56:17 +01:00
|
|
|
void setRecvPostBox(IPostBox<Utility::DynamicMemory::SmartPointer<OysterByte>> *postBox);
|
2013-12-03 13:04:53 +01:00
|
|
|
|
2013-12-03 23:12:48 +01:00
|
|
|
private:
|
2013-12-03 13:04:53 +01:00
|
|
|
virtual int Send();
|
|
|
|
virtual int Recv();
|
|
|
|
|
|
|
|
virtual void ThreadEntry();
|
|
|
|
virtual void ThreadExit();
|
|
|
|
virtual bool DoWork();
|
|
|
|
|
2013-12-03 23:12:48 +01:00
|
|
|
private:
|
2013-12-03 13:04:53 +01:00
|
|
|
Connection* connection;
|
2013-12-04 12:40:49 +01:00
|
|
|
IPostBox<Utility::DynamicMemory::SmartPointer<OysterByte>> *sendPostBox;
|
|
|
|
IPostBox<Utility::DynamicMemory::SmartPointer<OysterByte>> *recvPostBox;
|
2013-12-03 13:04:53 +01:00
|
|
|
Oyster::Thread::OysterThread thread;
|
|
|
|
OysterMutex mutex;
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|