sensord: remove build warnings in ipc-utils
[platform/core/system/sensord.git] / src / shared / channel_event_handler.h
1 /*
2  * sensord
3  *
4  * Copyright (c) 2017 Samsung Electronics Co., Ltd.
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 #ifndef __CHANNEL_EVENT_HANDLER_H__
21 #define __CHANNEL_EVENT_HANDLER_H__
22
23 #include <unordered_map>
24
25 #include "event_handler.h"
26 #include "channel_handler.h"
27
28 namespace ipc {
29
30 class channel;
31
32 class channel_event_handler : public event_handler, public channel_handler {
33 public:
34         channel_event_handler(channel *ch, channel_handler *handler);
35         virtual ~channel_event_handler();
36
37         bool handle(int fd, event_condition condition);
38
39         void connected(channel *ch);
40         void disconnected(channel *ch);
41         void read(channel *ch, message &msg);
42         void read_complete(channel *ch);
43         void error_caught(channel *ch, int error);
44
45 private:
46         channel *m_ch;
47         channel_handler *m_handler;
48 };
49
50 }
51
52 #endif /* __CHANNEL_EVENT_HANDLER_H__ */