eac611ab1e
* (cmake) add a warning about 32/64 conversion problems. * fix typo * New connection state for server code + fix OpenSSL double init bug * update README
79 lines
2.0 KiB
C++
79 lines
2.0 KiB
C++
/*
|
|
* IXSocketServer.h
|
|
* Author: Benjamin Sergeant
|
|
* Copyright (c) 2018 Machine Zone, Inc. All rights reserved.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "IXConnectionState.h"
|
|
|
|
#include <utility> // pair
|
|
#include <string>
|
|
#include <set>
|
|
#include <thread>
|
|
#include <mutex>
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <atomic>
|
|
#include <condition_variable>
|
|
|
|
namespace ix
|
|
{
|
|
class SocketServer {
|
|
public:
|
|
using ConnectionStateFactory = std::function<std::shared_ptr<ConnectionState>()>;
|
|
|
|
SocketServer(int port = SocketServer::kDefaultPort,
|
|
const std::string& host = SocketServer::kDefaultHost,
|
|
int backlog = SocketServer::kDefaultTcpBacklog,
|
|
size_t maxConnections = SocketServer::kDefaultMaxConnections);
|
|
virtual ~SocketServer();
|
|
virtual void stop();
|
|
|
|
void setConnectionStateFactory(const ConnectionStateFactory& connectionStateFactory);
|
|
|
|
const static int kDefaultPort;
|
|
const static std::string kDefaultHost;
|
|
const static int kDefaultTcpBacklog;
|
|
const static size_t kDefaultMaxConnections;
|
|
|
|
void start();
|
|
std::pair<bool, std::string> listen();
|
|
void wait();
|
|
|
|
protected:
|
|
|
|
// Logging
|
|
void logError(const std::string& str);
|
|
void logInfo(const std::string& str);
|
|
|
|
private:
|
|
// Member variables
|
|
int _port;
|
|
std::string _host;
|
|
int _backlog;
|
|
size_t _maxConnections;
|
|
|
|
// socket for accepting connections
|
|
int _serverFd;
|
|
|
|
std::mutex _logMutex;
|
|
|
|
std::atomic<bool> _stop;
|
|
std::thread _thread;
|
|
|
|
std::condition_variable _conditionVariable;
|
|
std::mutex _conditionVariableMutex;
|
|
|
|
//
|
|
ConnectionStateFactory _connectionStateFactory;
|
|
|
|
// Methods
|
|
void run();
|
|
virtual void handleConnection(int fd,
|
|
std::shared_ptr<ConnectionState> connectionState) = 0;
|
|
virtual size_t getConnectedClientsCount() = 0;
|
|
};
|
|
}
|