2018-12-31 20:04:05 +01:00
|
|
|
//
|
2021-01-01 13:57:46 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2021
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
2018-09-07 02:41:21 +02:00
|
|
|
#include "td/utils/port/detail/NativeFd.h"
|
|
|
|
#include "td/utils/port/detail/PollableFd.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/port/SocketFd.h"
|
|
|
|
|
|
|
|
#include "td/utils/Slice.h"
|
|
|
|
#include "td/utils/Status.h"
|
|
|
|
|
2018-09-27 03:19:03 +02:00
|
|
|
#include <memory>
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
namespace td {
|
2018-08-13 19:15:09 +02:00
|
|
|
namespace detail {
|
|
|
|
class ServerSocketFdImpl;
|
|
|
|
class ServerSocketFdImplDeleter {
|
|
|
|
public:
|
|
|
|
void operator()(ServerSocketFdImpl *impl);
|
|
|
|
};
|
|
|
|
} // namespace detail
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
class ServerSocketFd {
|
|
|
|
public:
|
2018-08-13 19:15:09 +02:00
|
|
|
ServerSocketFd();
|
2018-12-31 20:04:05 +01:00
|
|
|
ServerSocketFd(const ServerSocketFd &) = delete;
|
|
|
|
ServerSocketFd &operator=(const ServerSocketFd &) = delete;
|
2021-10-18 13:36:15 +02:00
|
|
|
ServerSocketFd(ServerSocketFd &&) noexcept;
|
|
|
|
ServerSocketFd &operator=(ServerSocketFd &&) noexcept;
|
2018-08-13 19:15:09 +02:00
|
|
|
~ServerSocketFd();
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
static Result<ServerSocketFd> open(int32 port, CSlice addr = CSlice("0.0.0.0")) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
2018-08-13 19:15:09 +02:00
|
|
|
PollableFdInfo &get_poll_info();
|
|
|
|
const PollableFdInfo &get_poll_info() const;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
Status get_pending_error() TD_WARN_UNUSED_RESULT;
|
|
|
|
|
|
|
|
Result<SocketFd> accept() TD_WARN_UNUSED_RESULT;
|
|
|
|
|
|
|
|
void close();
|
|
|
|
bool empty() const;
|
|
|
|
|
2018-08-13 19:15:09 +02:00
|
|
|
const NativeFd &get_native_fd() const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-08-13 19:15:09 +02:00
|
|
|
private:
|
|
|
|
std::unique_ptr<detail::ServerSocketFdImpl, detail::ServerSocketFdImplDeleter> impl_;
|
2018-09-27 03:19:03 +02:00
|
|
|
explicit ServerSocketFd(unique_ptr<detail::ServerSocketFdImpl> impl);
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
|
|
|
} // namespace td
|