Epoll refactor
[platform/core/security/vasum.git] / common / epoll / event-poll.hpp
1 /*
2  *  Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *  Contact: Piotr Bartosiewicz <p.bartosiewi@partner.samsung.com>
5  *
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License
17  */
18
19 /**
20  * @file
21  * @author  Piotr Bartosiewicz (p.bartosiewi@partner.samsung.com)
22  * @brief   C++ epoll wrapper
23  */
24
25 #ifndef COMMON_EPOLL_EVENT_POLL_HPP
26 #define COMMON_EPOLL_EVENT_POLL_HPP
27
28 #include "epoll/events.hpp"
29
30 #include <functional>
31 #include <mutex>
32 #include <unordered_map>
33 #include <memory>
34
35 namespace vasum {
36 namespace epoll {
37
38 class EventPoll {
39 public:
40     typedef std::function<bool(int fd, Events events)> Callback;
41
42     EventPoll();
43     ~EventPoll();
44
45     int getPollFD() const;
46
47     void addFD(const int fd, const Events events, Callback&& callback);
48     void removeFD(const int fd);
49
50     bool dispatchIteration(const int timeoutMs);
51     void dispatchLoop();
52
53 private:
54     typedef std::recursive_mutex Mutex;
55
56     const int mPollFD;
57     Mutex mMutex;
58     std::unordered_map<int, std::shared_ptr<Callback>> mCallbacks;
59
60     bool addFDInternal(const int fd, const Events events);
61     void removeFDInternal(const int fd);
62 };
63
64
65 } // namespace epoll
66 } // namespace vasum
67
68 #endif // COMMON_EPOLL_EVENT_POLL_HPP