sensord: fix incorrect return type
[platform/core/system/sensord.git] / src / server / sensor_event_queue.cpp
1 /*
2  * sensord
3  *
4  * Copyright (c) 2013 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 <sensor_event_queue.h>
21 #include <sensor_log.h>
22
23 sensor_event_queue& sensor_event_queue::get_instance(void)
24 {
25         static sensor_event_queue inst;
26         return inst;
27 }
28
29 void sensor_event_queue::push_internal(void *event)
30 {
31         lock l(m_mutex);
32         bool wake = m_queue.empty();
33
34         if (m_queue.size() >= QUEUE_FULL_SIZE) {
35                 _E("Queue is full, drop it!");
36                 free(event);
37         } else {
38                 m_queue.push(event);
39         }
40
41         if (wake)
42                 m_cond_var.notify_one();
43 }
44
45 void* sensor_event_queue::pop(void)
46 {
47         ulock u(m_mutex);
48         while (m_queue.empty())
49                 m_cond_var.wait(u);
50
51         void *event = m_queue.front();
52         m_queue.pop();
53
54         return event;
55 }
56
57 void sensor_event_queue::push(sensor_event_t *event)
58 {
59         push_internal(event);
60 }