blob: 2b11d05c45345919b2809d44ad731351cf13935f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2025
//
// 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_SELECT
#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 <sys/select.h>
namespace td {
namespace detail {
class Select final : public PollBase {
public:
Select() = default;
Select(const Select &) = delete;
Select &operator=(const Select &) = delete;
Select(Select &&) = delete;
Select &operator=(Select &&) = delete;
~Select() final = default;
void init() final;
void clear() final;
void subscribe(PollableFd fd, PollFlags flags) final;
void unsubscribe(PollableFdRef fd) final;
void unsubscribe_before_close(PollableFdRef fd) final;
void run(int timeout_ms) final;
static bool is_edge_triggered() {
return false;
}
private:
struct FdInfo {
PollableFd fd;
PollFlags flags;
};
vector<FdInfo> fds_;
fd_set all_fd_;
fd_set read_fd_;
fd_set write_fd_;
fd_set except_fd_;
int max_fd_;
};
} // namespace detail
} // namespace td
#endif
|