• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2018 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #include "epoll.h"
18 
19 #include <stdint.h>
20 #include <sys/epoll.h>
21 
22 #include <chrono>
23 #include <functional>
24 #include <map>
25 
26 namespace android {
27 namespace init {
28 
Epoll()29 Epoll::Epoll() {}
30 
Open()31 Result<void> Epoll::Open() {
32     if (epoll_fd_ >= 0) return {};
33     epoll_fd_.reset(epoll_create1(EPOLL_CLOEXEC));
34 
35     if (epoll_fd_ == -1) {
36         return ErrnoError() << "epoll_create1 failed";
37     }
38     return {};
39 }
40 
RegisterHandler(int fd,Handler handler,uint32_t events)41 Result<void> Epoll::RegisterHandler(int fd, Handler handler, uint32_t events) {
42     if (!events) {
43         return Error() << "Must specify events";
44     }
45     auto sp = std::make_shared<decltype(handler)>(std::move(handler));
46     auto [it, inserted] = epoll_handlers_.emplace(fd, std::move(sp));
47     if (!inserted) {
48         return Error() << "Cannot specify two epoll handlers for a given FD";
49     }
50     epoll_event ev;
51     ev.events = events;
52     // std::map's iterators do not get invalidated until erased, so we use the
53     // pointer to the std::function in the map directly for epoll_ctl.
54     ev.data.ptr = reinterpret_cast<void*>(&it->second);
55     if (epoll_ctl(epoll_fd_, EPOLL_CTL_ADD, fd, &ev) == -1) {
56         Result<void> result = ErrnoError() << "epoll_ctl failed to add fd";
57         epoll_handlers_.erase(fd);
58         return result;
59     }
60     return {};
61 }
62 
UnregisterHandler(int fd)63 Result<void> Epoll::UnregisterHandler(int fd) {
64     if (epoll_ctl(epoll_fd_, EPOLL_CTL_DEL, fd, nullptr) == -1) {
65         return ErrnoError() << "epoll_ctl failed to remove fd";
66     }
67     if (epoll_handlers_.erase(fd) != 1) {
68         return Error() << "Attempting to remove epoll handler for FD without an existing handler";
69     }
70     return {};
71 }
72 
Wait(std::optional<std::chrono::milliseconds> timeout)73 Result<std::vector<std::shared_ptr<Epoll::Handler>>> Epoll::Wait(
74         std::optional<std::chrono::milliseconds> timeout) {
75     int timeout_ms = -1;
76     if (timeout && timeout->count() < INT_MAX) {
77         timeout_ms = timeout->count();
78     }
79     const auto max_events = epoll_handlers_.size();
80     epoll_event ev[max_events];
81     auto num_events = TEMP_FAILURE_RETRY(epoll_wait(epoll_fd_, ev, max_events, timeout_ms));
82     if (num_events == -1) {
83         return ErrnoError() << "epoll_wait failed";
84     }
85     std::vector<std::shared_ptr<Handler>> pending_functions;
86     for (int i = 0; i < num_events; ++i) {
87         auto sp = *reinterpret_cast<std::shared_ptr<Handler>*>(ev[i].data.ptr);
88         pending_functions.emplace_back(std::move(sp));
89     }
90 
91     return pending_functions;
92 }
93 
94 }  // namespace init
95 }  // namespace android
96