2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2018-10-18 09:27:04 +02:00
|
|
|
* Copyright (C) 2012-2018 Icinga Development Team (https://icinga.com/) *
|
2012-05-10 12:06:41 +02:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
2012-05-11 13:33:57 +02:00
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
2012-05-10 12:06:41 +02:00
|
|
|
******************************************************************************/
|
|
|
|
|
2012-04-02 08:56:30 +02:00
|
|
|
#ifndef SOCKET_H
|
|
|
|
#define SOCKET_H
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/i2-base.hpp"
|
2014-12-15 10:16:06 +01:00
|
|
|
#include "base/object.hpp"
|
2018-01-04 18:24:45 +01:00
|
|
|
#include <boost/thread/mutex.hpp>
|
2013-03-15 18:21:29 +01:00
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2012-05-15 10:58:14 +02:00
|
|
|
/**
|
2012-11-22 12:04:32 +01:00
|
|
|
* Base class for connection-oriented sockets.
|
2012-05-18 22:21:28 +02:00
|
|
|
*
|
|
|
|
* @ingroup base
|
2012-05-15 10:58:14 +02:00
|
|
|
*/
|
2017-12-31 07:22:16 +01:00
|
|
|
class Socket : public Object
|
2012-03-28 13:24:49 +02:00
|
|
|
{
|
|
|
|
public:
|
2014-11-07 12:32:25 +01:00
|
|
|
DECLARE_PTR_TYPEDEFS(Socket);
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2018-01-04 09:43:49 +01:00
|
|
|
Socket() = default;
|
2013-04-04 16:08:02 +02:00
|
|
|
Socket(SOCKET fd);
|
2018-01-04 05:12:56 +01:00
|
|
|
~Socket() override;
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
SOCKET GetFD() const;
|
2014-04-23 13:42:59 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void Close();
|
2012-04-27 11:44:05 +02:00
|
|
|
|
2018-08-02 08:38:42 +02:00
|
|
|
std::pair<String, String> GetClientAddressDetails();
|
2018-01-04 04:25:35 +01:00
|
|
|
String GetClientAddress();
|
2018-08-02 08:38:42 +02:00
|
|
|
std::pair<String, String> GetPeerAddressDetails();
|
2018-01-04 04:25:35 +01:00
|
|
|
String GetPeerAddress();
|
2012-05-21 23:42:54 +02:00
|
|
|
|
2013-04-04 16:08:02 +02:00
|
|
|
size_t Read(void *buffer, size_t size);
|
|
|
|
size_t Write(const void *buffer, size_t size);
|
2012-11-22 12:04:32 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void Listen();
|
|
|
|
Socket::Ptr Accept();
|
2012-07-17 20:41:06 +02:00
|
|
|
|
2017-12-14 15:37:20 +01:00
|
|
|
bool Poll(bool read, bool write, struct timeval *timeout = nullptr);
|
2014-04-23 13:42:59 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void MakeNonBlocking();
|
2014-04-23 13:42:59 +02:00
|
|
|
|
2015-02-13 21:02:48 +01:00
|
|
|
static void SocketPair(SOCKET s[2]);
|
2017-05-23 12:05:01 +02:00
|
|
|
|
2012-05-21 23:42:54 +02:00
|
|
|
protected:
|
2012-06-24 02:56:48 +02:00
|
|
|
void SetFD(SOCKET fd);
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
int GetError() const;
|
2017-05-23 12:04:08 +02:00
|
|
|
|
2012-08-13 13:06:43 +02:00
|
|
|
mutable boost::mutex m_SocketMutex;
|
2012-08-06 10:01:21 +02:00
|
|
|
|
2012-05-21 23:42:54 +02:00
|
|
|
private:
|
2018-01-04 09:43:49 +01:00
|
|
|
SOCKET m_FD{INVALID_SOCKET}; /**< The socket descriptor. */
|
2012-05-21 23:42:54 +02:00
|
|
|
|
2018-08-02 08:38:42 +02:00
|
|
|
static std::pair<String, String> GetDetailsFromSockaddr(sockaddr *address, socklen_t len);
|
|
|
|
static String GetHumanReadableAddress(const std::pair<String, String>& socketDetails);
|
2012-03-28 13:24:49 +02:00
|
|
|
};
|
|
|
|
|
2013-03-11 13:45:08 +01:00
|
|
|
class socket_error : virtual public std::exception, virtual public boost::exception { };
|
2012-05-26 20:00:03 +02:00
|
|
|
|
2012-03-28 13:24:49 +02:00
|
|
|
}
|
|
|
|
|
2012-04-02 08:56:30 +02:00
|
|
|
#endif /* SOCKET_H */
|