Yifan Hong | 5e2318c | 2016-10-27 17:19:21 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include <hidl/TaskRunner.h> |
| 18 | #include <thread> |
| 19 | |
| 20 | namespace android { |
| 21 | namespace hardware { |
Yifan Hong | 0a35139 | 2017-03-20 17:17:52 -0700 | [diff] [blame] | 22 | namespace details { |
Yifan Hong | 5e2318c | 2016-10-27 17:19:21 -0700 | [diff] [blame] | 23 | |
| 24 | TaskRunner::TaskRunner() { |
Yifan Hong | 6f66754 | 2017-03-20 19:04:05 -0700 | [diff] [blame] | 25 | } |
| 26 | |
| 27 | void TaskRunner::start(size_t limit) { |
| 28 | mQueue = std::make_shared<SynchronizedQueue<Task>>(limit); |
Yifan Hong | 8184c12 | 2017-03-20 18:26:43 -0700 | [diff] [blame] | 29 | |
| 30 | // Allow the thread to continue running in background; |
| 31 | // TaskRunner do not care about the std::thread object. |
| 32 | std::thread{[q = mQueue] { |
| 33 | Task nextTask; |
| 34 | while (!!(nextTask = q->wait_pop())) { |
| 35 | nextTask(); |
Yifan Hong | 5e2318c | 2016-10-27 17:19:21 -0700 | [diff] [blame] | 36 | } |
Yifan Hong | 8184c12 | 2017-03-20 18:26:43 -0700 | [diff] [blame] | 37 | }}.detach(); |
Yifan Hong | 5e2318c | 2016-10-27 17:19:21 -0700 | [diff] [blame] | 38 | } |
Yifan Hong | 8184c12 | 2017-03-20 18:26:43 -0700 | [diff] [blame] | 39 | |
Yifan Hong | 5e2318c | 2016-10-27 17:19:21 -0700 | [diff] [blame] | 40 | TaskRunner::~TaskRunner() { |
Yifan Hong | 6f66754 | 2017-03-20 19:04:05 -0700 | [diff] [blame] | 41 | if (mQueue) { |
| 42 | mQueue->push(nullptr); |
| 43 | } |
Yifan Hong | 5e2318c | 2016-10-27 17:19:21 -0700 | [diff] [blame] | 44 | } |
| 45 | |
Steven Moreland | 0540d28 | 2017-05-08 16:03:11 -0700 | [diff] [blame] | 46 | bool TaskRunner::push(const Task &t) { |
| 47 | return (mQueue != nullptr) && (!!t) && this->mQueue->push(t); |
| 48 | } |
| 49 | |
Yifan Hong | 0a35139 | 2017-03-20 17:17:52 -0700 | [diff] [blame] | 50 | } // namespace details |
Yifan Hong | 5e2318c | 2016-10-27 17:19:21 -0700 | [diff] [blame] | 51 | } // namespace hardware |
| 52 | } // namespace android |
| 53 | |