mirror of https://github.com/Icinga/icinga2.git
65 lines
1.2 KiB
C++
65 lines
1.2 KiB
C++
#ifndef SOCKET_H
|
|
#define SOCKET_H
|
|
|
|
namespace icinga {
|
|
|
|
struct I2_BASE_API SocketErrorEventArgs : public EventArgs
|
|
{
|
|
typedef shared_ptr<SocketErrorEventArgs> Ptr;
|
|
typedef weak_ptr<SocketErrorEventArgs> WeakPtr;
|
|
|
|
int Code;
|
|
string Message;
|
|
};
|
|
|
|
class I2_BASE_API Socket : public Object
|
|
{
|
|
private:
|
|
SOCKET m_FD;
|
|
|
|
int ExceptionEventHandler(const EventArgs& ea);
|
|
|
|
static string GetAddressFromSockaddr(sockaddr *address, socklen_t len);
|
|
|
|
protected:
|
|
Socket(void);
|
|
|
|
void HandleSocketError(void);
|
|
virtual void CloseInternal(bool from_dtor);
|
|
|
|
public:
|
|
typedef shared_ptr<Socket> Ptr;
|
|
typedef weak_ptr<Socket> WeakPtr;
|
|
|
|
typedef list<Socket::WeakPtr> CollectionType;
|
|
|
|
static Socket::CollectionType Sockets;
|
|
|
|
~Socket(void);
|
|
|
|
void SetFD(SOCKET fd);
|
|
SOCKET GetFD(void) const;
|
|
|
|
Event<EventArgs> OnReadable;
|
|
Event<EventArgs> OnWritable;
|
|
Event<EventArgs> OnException;
|
|
|
|
Event<SocketErrorEventArgs> OnError;
|
|
Event<EventArgs> OnClosed;
|
|
|
|
virtual bool WantsToRead(void) const;
|
|
virtual bool WantsToWrite(void) const;
|
|
|
|
virtual void Start(void);
|
|
virtual void Stop(void);
|
|
|
|
void Close(void);
|
|
|
|
string GetClientAddress(void);
|
|
string GetPeerAddress(void);
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* SOCKET_H */
|