tdlight/tdutils/td/utils/port/detail/Poll.h

51 lines
1.0 KiB
C
Raw Normal View History

//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2018
//
// 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
#include "td/utils/port/config.h"
#ifdef TD_POLL_POLL
#include "td/utils/common.h"
#include "td/utils/port/Fd.h"
#include "td/utils/port/PollBase.h"
#include <poll.h>
namespace td {
namespace detail {
class Poll final : public PollBase {
public:
Poll() = default;
Poll(const Poll &) = delete;
Poll &operator=(const Poll &) = delete;
Poll(Poll &&) = delete;
Poll &operator=(Poll &&) = delete;
~Poll() override = default;
void init() override;
void clear() override;
void subscribe(const Fd &fd, Fd::Flags flags) override;
void unsubscribe(const Fd &fd) override;
void unsubscribe_before_close(const Fd &fd) override;
void run(int timeout_ms) override;
private:
vector<pollfd> pollfds_;
};
} // namespace detail
} // namespace td
#endif