Merge "sensord: delete batch latency/attribute when client is terminated unexpectedly...
[platform/core/system/sensord.git] / src / server / command_queue.cpp
1 /*
2  * sensord
3  *
4  * Copyright (c) 2015 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_log.h>
21 #include <command_queue.h>
22
23 command_queue& command_queue::get_instance(void)
24 {
25         static command_queue inst;
26         return inst;
27 }
28
29 void command_queue::push(std::shared_ptr<external_command_t> &command)
30 {
31         lock l(m_mutex);
32
33         bool wake = m_queue.empty();
34
35         if (m_queue.size() >= QUEUE_FULL_SIZE) {
36                 _E("Queue is full, drop it!");
37         } else {
38                 m_queue.push(command);
39         }
40
41         if (wake)
42                 m_cond_var.notify_one();
43 }
44
45 std::shared_ptr<external_command_t> command_queue::pop(void)
46 {
47         ulock u(m_mutex);
48
49         while (m_queue.empty())
50                 m_cond_var.wait(u);
51
52         std::shared_ptr<external_command_t> command = m_queue.front();
53         m_queue.pop();
54         return command;
55 }