sensor: check if the event value is NaN
[platform/core/system/sensord.git] / src / shared / accept_event_handler.cpp
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 #include "accept_event_handler.h"
21
22 #include "sensor_log.h"
23 #include "ipc_server.h"
24
25 using namespace ipc;
26
27 accept_event_handler::accept_event_handler(ipc_server *server)
28 : m_server(server)
29 {
30 }
31
32 bool accept_event_handler::handle(int fd, event_condition condition)
33 {
34         retv_if((condition & (EVENT_HUP)), false);
35
36         stream_socket *cli_sock = new(std::nothrow) stream_socket();
37         retvm_if(!cli_sock, false, "Failed to allocate memory");
38
39         m_server->accept(*cli_sock);
40
41         channel *_ch = new(std::nothrow) channel(cli_sock);
42         retvm_if(!_ch, false, "Failed to allocate memory");
43
44         m_server->register_channel(cli_sock->get_fd(), _ch);
45
46         return true;
47 }