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

57 lines
1.2 KiB
C
Raw Normal View History

//
2022-01-01 01:35:39 +01:00
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
//
// 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/detail/PollableFd.h"
#include "td/utils/port/PollBase.h"
#include "td/utils/port/PollFlags.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;
2021-07-03 22:51:36 +02:00
~Poll() final = default;
2021-07-03 22:51:36 +02:00
void init() final;
2021-07-03 22:51:36 +02:00
void clear() final;
2021-07-03 22:51:36 +02:00
void subscribe(PollableFd fd, PollFlags flags) final;
2021-07-03 22:51:36 +02:00
void unsubscribe(PollableFdRef fd) final;
2021-07-03 22:51:36 +02:00
void unsubscribe_before_close(PollableFdRef fd) final;
2021-07-03 22:51:36 +02:00
void run(int timeout_ms) final;
static bool is_edge_triggered() {
return false;
}
private:
vector<pollfd> pollfds_;
vector<PollableFd> fds_;
};
} // namespace detail
} // namespace td
#endif