GSock/gsock.h

132 lines
3.2 KiB
C
Raw Normal View History

2017-07-27 19:52:58 +08:00
/** General Socket Wrapper
* Created By Kiritow. (https://github.com/kiritow)
* Licensed under MIT
*/
#ifndef _gsock_h
#define _gsock_h
2017-07-27 19:52:58 +08:00
#include <cstdint>
#include <string>
2017-07-27 19:52:58 +08:00
2018-05-05 15:37:50 +08:00
class vsock
2017-07-27 19:52:58 +08:00
{
2018-05-05 15:37:50 +08:00
protected:
vsock();
vsock(const vsock&)=delete;
vsock& operator = (const vsock&)=delete;
2018-05-09 21:30:34 +08:00
vsock(vsock&& v);
vsock& operator = (vsock&& v);
2018-05-05 15:37:50 +08:00
~vsock();
2018-05-09 21:30:34 +08:00
//vsock(int);
2018-05-05 15:37:50 +08:00
struct _impl;
_impl* _vp;
};
2017-07-27 19:52:58 +08:00
2018-05-05 15:37:50 +08:00
class sock : public vsock
{
public:
/// Return:
/// 0: Connection Established. No Error.
/// -1: connect() call error. See errno.
/// -2: This socket has been connected before.
/// -3: socket() call error. Failed to create socket. See errno.
2017-07-27 19:52:58 +08:00
int connect(const std::string& IPStr,int Port);
template<typename T>
int send(const T&);
template<typename T>
int recv(T&);
/// Return:
/// return what send() and recv() call returns.
int send(const void* Buffer,int Length);
int recv(void* Buffer, int MaxToRecv);
2017-07-27 19:52:58 +08:00
int getsendtime(int& _out_Second,int& _out_uSecond);
int getrecvtime(int& _out_Second,int& _out_uSecond);
int setsendtime(int Second);
int setrecvtime(int Second);
2018-05-04 17:44:39 +08:00
2018-05-04 18:04:29 +08:00
/// Return:
/// 0: Success. No Error.
/// -1: getlocalname() or getpeername() call error. See errno.
/// -2: Socket not created.
2018-05-04 17:44:39 +08:00
int getlocal(std::string& IPStr,int& Port);
int getpeer(std::string& IPStr,int& Port);
2018-05-05 15:37:50 +08:00
2017-07-27 19:52:58 +08:00
friend class serversock;
};
2018-05-05 15:37:50 +08:00
class serversock : public vsock
2017-07-27 19:52:58 +08:00
{
public:
/// Return:
/// 0: Bind Succeed. No Error.
/// -1: bind() call error. See errno.
/// -2: This socket has been created before.
/// -3: socket() call error. Failed to create socket. See errno.
2017-07-27 19:52:58 +08:00
int bind(int Port);
2017-07-27 19:52:58 +08:00
int set_reuse();
/// Return:
/// return what listen() call returns
2017-07-27 19:52:58 +08:00
int listen(int MaxCount);
/// Return:
/// 0: Accept Succeed. No Error. _out_s holds the new socket.
/// -1: accept() call error. See errno.
/// -2: _out_s is a connected socket, which should not be passed in.
int accept(sock& _out_s);
2017-07-27 19:52:58 +08:00
};
2018-05-05 15:37:50 +08:00
class udpsock : public vsock
{
public:
udpsock();
2018-05-05 15:37:50 +08:00
/// Use udp socket as tcp socket. (but of course it is not).
/// connect call just copy the target socket data to kernel. See connect() for more info.
int connect(const std::string& IPStr,int Port);
int broadcast_at(int Port);
/// Must be called in broadcast mode.
int set_broadcast();
/// Explict bind() call is only need when you have to receive data.
int bind(int Port);
int sendto(const std::string& IPStr, int Port, const void* buffer, int length);
2018-05-05 15:37:50 +08:00
int broadcast(int Port,const void* buffer,int length);
/// Must call bind() before calling recvfrom().
2018-05-05 15:37:50 +08:00
int recvfrom(std::string& fromIP, int& fromPort, void* buffer, int bufferLength);
2018-05-05 15:37:50 +08:00
/// send() and recv() should only be called after connect(). Or it will fail.
int send(const void* buffer,int length);
int recv(void* buffer,int bufferLength);
};
/// Select
class selector
{
public:
selector();
void clear();
void add_read(const vsock&);
void add_write(const vsock&);
void add_error(const vsock&);
int select(int);
private:
struct _impl;
_impl* _pp;
};
/// Net Tools
2017-07-27 19:52:58 +08:00
int DNSResolve(const std::string& HostName,std::string& _out_IPStr);
2018-05-04 17:44:39 +08:00
#endif // _gsock_h