2018-09-27 14:56:48 -07:00
|
|
|
/*
|
|
|
|
* IXSocket.h
|
|
|
|
* Author: Benjamin Sergeant
|
|
|
|
* Copyright (c) 2017-2018 Machine Zone, Inc. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <functional>
|
|
|
|
#include <mutex>
|
2018-10-01 14:46:11 -07:00
|
|
|
#include <atomic>
|
2018-09-27 14:56:48 -07:00
|
|
|
|
2019-01-05 21:02:55 -08:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <BaseTsd.h>
|
|
|
|
typedef SSIZE_T ssize_t;
|
|
|
|
#endif
|
|
|
|
|
2018-11-01 17:02:49 -07:00
|
|
|
#include "IXEventFd.h"
|
2018-12-14 16:28:11 -08:00
|
|
|
#include "IXCancellationRequest.h"
|
2018-11-01 17:02:49 -07:00
|
|
|
|
2019-02-20 18:59:07 -08:00
|
|
|
namespace ix
|
2018-09-27 14:56:48 -07:00
|
|
|
{
|
2019-01-24 12:42:49 -08:00
|
|
|
enum PollResultType
|
|
|
|
{
|
|
|
|
PollResultType_ReadyForRead = 0,
|
|
|
|
PollResultType_Timeout = 1,
|
|
|
|
PollResultType_Error = 2
|
|
|
|
};
|
|
|
|
|
2018-09-27 14:56:48 -07:00
|
|
|
class Socket {
|
|
|
|
public:
|
2019-01-24 12:42:49 -08:00
|
|
|
using OnPollCallback = std::function<void(PollResultType)>;
|
2018-09-27 14:56:48 -07:00
|
|
|
|
2018-12-29 21:53:33 -08:00
|
|
|
Socket(int fd = -1);
|
2018-09-27 14:56:48 -07:00
|
|
|
virtual ~Socket();
|
|
|
|
|
|
|
|
void configure();
|
|
|
|
|
2019-01-24 12:42:49 -08:00
|
|
|
virtual void poll(const OnPollCallback& onPollCallback,
|
|
|
|
int timeoutSecs = kDefaultPollTimeout);
|
2018-09-27 14:56:48 -07:00
|
|
|
virtual void wakeUpFromPoll();
|
|
|
|
|
|
|
|
// Virtual methods
|
2019-02-20 18:59:07 -08:00
|
|
|
virtual bool connect(const std::string& url,
|
2018-09-27 14:56:48 -07:00
|
|
|
int port,
|
2018-12-09 17:56:20 -08:00
|
|
|
std::string& errMsg,
|
2018-12-14 16:28:11 -08:00
|
|
|
const CancellationRequest& isCancellationRequested);
|
2018-09-27 14:56:48 -07:00
|
|
|
virtual void close();
|
|
|
|
|
2019-01-05 20:53:50 -08:00
|
|
|
virtual ssize_t send(char* buffer, size_t length);
|
|
|
|
virtual ssize_t send(const std::string& buffer);
|
|
|
|
virtual ssize_t recv(void* buffer, size_t length);
|
2018-09-27 14:56:48 -07:00
|
|
|
|
2019-01-02 07:45:07 -08:00
|
|
|
// Blocking and cancellable versions, working with socket that can be set
|
|
|
|
// to non blocking mode. Used during HTTP upgrade.
|
|
|
|
bool readByte(void* buffer,
|
|
|
|
const CancellationRequest& isCancellationRequested);
|
|
|
|
bool writeBytes(const std::string& str,
|
|
|
|
const CancellationRequest& isCancellationRequested);
|
2019-01-02 16:08:32 -08:00
|
|
|
std::pair<bool, std::string> readLine(const CancellationRequest& isCancellationRequested);
|
2019-01-02 07:45:07 -08:00
|
|
|
|
2019-01-04 17:28:13 -08:00
|
|
|
static int getErrno();
|
2018-10-08 21:42:45 -07:00
|
|
|
static bool init(); // Required on Windows to initialize WinSocket
|
|
|
|
static void cleanup(); // Required on Windows to cleanup WinSocket
|
|
|
|
|
2018-09-27 14:56:48 -07:00
|
|
|
protected:
|
2018-10-08 21:42:45 -07:00
|
|
|
void closeSocket(int fd);
|
|
|
|
|
2018-09-27 14:56:48 -07:00
|
|
|
std::atomic<int> _sockfd;
|
|
|
|
std::mutex _socketMutex;
|
2018-11-01 17:02:49 -07:00
|
|
|
EventFd _eventfd;
|
2019-01-24 12:42:49 -08:00
|
|
|
|
|
|
|
private:
|
|
|
|
static const int kDefaultPollTimeout;
|
|
|
|
static const int kDefaultPollNoTimeout;
|
2018-09-27 14:56:48 -07:00
|
|
|
};
|
|
|
|
}
|