#ifndef __TRACYSOCKET_HPP__ #define __TRACYSOCKET_HPP__ #include namespace tracy { #ifdef _WIN32 void InitWinSock(); #endif class Socket { enum { BufSize = 128 * 1024 }; public: Socket(); Socket( int sock ); ~Socket(); bool Connect( const char* addr, const char* port ); void Close(); int Send( const void* buf, int len ); int GetSendBufSize(); bool Read( void* buf, int len, int timeout, std::function exitCb ); bool ReadRaw( void* buf, int len, int timeout ); bool HasData(); Socket( const Socket& ) = delete; Socket( Socket&& ) = delete; Socket& operator=( const Socket& ) = delete; Socket& operator=( Socket&& ) = delete; private: int RecvBuffered( void* buf, int len, int timeout ); int Recv( void* buf, int len, int timeout ); char* m_buf; char* m_bufPtr; int m_sock; int m_bufLeft; }; class ListenSocket { public: ListenSocket(); ~ListenSocket(); bool Listen( const char* port, int backlog ); Socket* Accept(); void Close(); ListenSocket( const ListenSocket& ) = delete; ListenSocket( ListenSocket&& ) = delete; ListenSocket& operator=( const ListenSocket& ) = delete; ListenSocket& operator=( ListenSocket&& ) = delete; private: int m_sock; }; } #endif