Sean Paul | cb8676c | 2015-05-13 06:22:10 -0700 | [diff] [blame] | 1 | /* |
Adrian Salido | fa37f67 | 2017-02-16 10:29:46 -0800 | [diff] [blame] | 2 | * Copyright (C) 2015-2016 The Android Open Source Project |
Sean Paul | cb8676c | 2015-05-13 06:22:10 -0700 | [diff] [blame] | 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 | #ifndef ANDROID_WORKER_H_ |
| 18 | #define ANDROID_WORKER_H_ |
| 19 | |
Zach Reizner | 8467b12 | 2015-11-10 15:18:08 -0800 | [diff] [blame] | 20 | #include <stdint.h> |
Adrian Salido | fa37f67 | 2017-02-16 10:29:46 -0800 | [diff] [blame] | 21 | #include <stdlib.h> |
Sean Paul | cb8676c | 2015-05-13 06:22:10 -0700 | [diff] [blame] | 22 | #include <string> |
| 23 | |
Adrian Salido | fa37f67 | 2017-02-16 10:29:46 -0800 | [diff] [blame] | 24 | #include <condition_variable> |
| 25 | #include <mutex> |
| 26 | #include <thread> |
| 27 | |
Sean Paul | cb8676c | 2015-05-13 06:22:10 -0700 | [diff] [blame] | 28 | namespace android { |
| 29 | |
| 30 | class Worker { |
| 31 | public: |
Adrian Salido | fa37f67 | 2017-02-16 10:29:46 -0800 | [diff] [blame] | 32 | void Lock() { |
| 33 | mutex_.lock(); |
| 34 | } |
| 35 | void Unlock() { |
| 36 | mutex_.unlock(); |
| 37 | } |
Sean Paul | cb8676c | 2015-05-13 06:22:10 -0700 | [diff] [blame] | 38 | |
Adrian Salido | fa37f67 | 2017-02-16 10:29:46 -0800 | [diff] [blame] | 39 | void Signal() { |
| 40 | cond_.notify_all(); |
| 41 | } |
| 42 | void Exit(); |
Sean Paul | cb8676c | 2015-05-13 06:22:10 -0700 | [diff] [blame] | 43 | |
Adrian Salido | fa37f67 | 2017-02-16 10:29:46 -0800 | [diff] [blame] | 44 | bool initialized() const { |
| 45 | return initialized_; |
| 46 | } |
Sean Paul | cb8676c | 2015-05-13 06:22:10 -0700 | [diff] [blame] | 47 | |
| 48 | protected: |
| 49 | Worker(const char *name, int priority); |
| 50 | virtual ~Worker(); |
| 51 | |
| 52 | int InitWorker(); |
Sean Paul | cb8676c | 2015-05-13 06:22:10 -0700 | [diff] [blame] | 53 | virtual void Routine() = 0; |
| 54 | |
| 55 | /* |
Zach Reizner | 8467b12 | 2015-11-10 15:18:08 -0800 | [diff] [blame] | 56 | * Must be called with the lock acquired. max_nanoseconds may be negative to |
| 57 | * indicate infinite timeout, otherwise it indicates the maximum time span to |
| 58 | * wait for a signal before returning. |
| 59 | * Returns -EINTR if interrupted by exit request, or -ETIMEDOUT if timed out |
Sean Paul | cb8676c | 2015-05-13 06:22:10 -0700 | [diff] [blame] | 60 | */ |
Zach Reizner | 8467b12 | 2015-11-10 15:18:08 -0800 | [diff] [blame] | 61 | int WaitForSignalOrExitLocked(int64_t max_nanoseconds = -1); |
Sean Paul | cb8676c | 2015-05-13 06:22:10 -0700 | [diff] [blame] | 62 | |
Adrian Salido | fa37f67 | 2017-02-16 10:29:46 -0800 | [diff] [blame] | 63 | bool should_exit() const { |
| 64 | return exit_; |
| 65 | } |
Sean Paul | cb8676c | 2015-05-13 06:22:10 -0700 | [diff] [blame] | 66 | |
Adrian Salido | fa37f67 | 2017-02-16 10:29:46 -0800 | [diff] [blame] | 67 | std::mutex mutex_; |
| 68 | std::condition_variable cond_; |
| 69 | |
| 70 | private: |
| 71 | void InternalRoutine(); |
Sean Paul | cb8676c | 2015-05-13 06:22:10 -0700 | [diff] [blame] | 72 | |
| 73 | std::string name_; |
| 74 | int priority_; |
| 75 | |
Adrian Salido | fa37f67 | 2017-02-16 10:29:46 -0800 | [diff] [blame] | 76 | std::unique_ptr<std::thread> thread_; |
Sean Paul | cb8676c | 2015-05-13 06:22:10 -0700 | [diff] [blame] | 77 | bool exit_; |
| 78 | bool initialized_; |
| 79 | }; |
| 80 | } |
Sean Paul | cb8676c | 2015-05-13 06:22:10 -0700 | [diff] [blame] | 81 | #endif |