2018-12-31 20:04:05 +01:00
|
|
|
//
|
2018-12-31 23:02:34 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019
|
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
|
|
|
|
|
|
|
|
#include "td/utils/port/config.h"
|
|
|
|
|
|
|
|
#ifdef TD_POLL_WINEVENT
|
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
2018-09-07 02:41:21 +02:00
|
|
|
#include "td/utils/port/detail/PollableFd.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/port/PollBase.h"
|
2018-09-10 03:08:15 +02:00
|
|
|
#include "td/utils/port/PollFlags.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
namespace td {
|
|
|
|
namespace detail {
|
|
|
|
|
|
|
|
class WineventPoll final : public PollBase {
|
|
|
|
public:
|
|
|
|
WineventPoll() = default;
|
|
|
|
WineventPoll(const WineventPoll &) = delete;
|
|
|
|
WineventPoll &operator=(const WineventPoll &) = delete;
|
|
|
|
WineventPoll(WineventPoll &&) = delete;
|
|
|
|
WineventPoll &operator=(WineventPoll &&) = delete;
|
|
|
|
~WineventPoll() override = default;
|
|
|
|
|
|
|
|
void init() override;
|
|
|
|
|
|
|
|
void clear() override;
|
|
|
|
|
2018-08-13 19:15:09 +02:00
|
|
|
void subscribe(PollableFd fd, PollFlags flags) override;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-08-13 19:15:09 +02:00
|
|
|
void unsubscribe(PollableFdRef fd) override;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-08-13 19:15:09 +02:00
|
|
|
void unsubscribe_before_close(PollableFdRef fd) override;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void run(int timeout_ms) override;
|
|
|
|
|
2018-08-13 19:15:09 +02:00
|
|
|
static bool is_edge_triggered() {
|
|
|
|
return true;
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace detail
|
|
|
|
} // namespace td
|
|
|
|
|
|
|
|
#endif
|