Epoll refactor
[platform/core/security/vasum.git] / common / epoll / events.cpp
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   Epoll events
23  */
24
25 #include "config.hpp"
26 #include "epoll/events.hpp"
27
28 #include <sstream>
29
30 namespace vasum {
31 namespace epoll {
32
33 namespace {
34
35 std::string eventToString(Events event)
36 {
37     switch (event) {
38     case EPOLLIN: return "IN";
39     case EPOLLOUT: return "OUT";
40     case EPOLLERR: return "ERR";
41     case EPOLLHUP: return "HUP";
42     case EPOLLRDHUP: return "RDHUP";
43     default:
44         std::ostringstream ss;
45         ss << "0x" << std::hex << event;
46         return ss.str();
47     }
48 }
49
50 } // namespace
51
52 std::string eventsToString(Events events)
53 {
54     if (events == 0) {
55         return "<NONE>";
56     }
57     std::string ret;
58     for (unsigned int i = 0; i<32; ++i) {
59         Events event = 1u << i;
60         if (events & event) {
61             if (!ret.empty()) {
62                 ret.append(", ");
63             }
64             ret.append(eventToString(event));
65         }
66     }
67     return ret;
68 }
69
70 } // namespace epoll
71 } // namespace vasum