blob: 8f6295be60fe2aab155f8b5d5ebd58b4833b9253 [file] [log] [blame]
Sean Paulcb8676c2015-05-13 06:22:10 -07001/*
Adrian Salidofa37f672017-02-16 10:29:46 -08002 * Copyright (C) 2015-2016 The Android Open Source Project
Sean Paulcb8676c2015-05-13 06:22:10 -07003 *
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 Reizner8467b122015-11-10 15:18:08 -080020#include <stdint.h>
Adrian Salidofa37f672017-02-16 10:29:46 -080021#include <stdlib.h>
Sean Paulcb8676c2015-05-13 06:22:10 -070022#include <string>
23
Adrian Salidofa37f672017-02-16 10:29:46 -080024#include <condition_variable>
25#include <mutex>
26#include <thread>
27
Sean Paulcb8676c2015-05-13 06:22:10 -070028namespace android {
29
30class Worker {
31 public:
Adrian Salidofa37f672017-02-16 10:29:46 -080032 void Lock() {
33 mutex_.lock();
34 }
35 void Unlock() {
36 mutex_.unlock();
37 }
Sean Paulcb8676c2015-05-13 06:22:10 -070038
Adrian Salidofa37f672017-02-16 10:29:46 -080039 void Signal() {
40 cond_.notify_all();
41 }
42 void Exit();
Sean Paulcb8676c2015-05-13 06:22:10 -070043
Adrian Salidofa37f672017-02-16 10:29:46 -080044 bool initialized() const {
45 return initialized_;
46 }
Sean Paulcb8676c2015-05-13 06:22:10 -070047
48 protected:
49 Worker(const char *name, int priority);
50 virtual ~Worker();
51
52 int InitWorker();
Sean Paulcb8676c2015-05-13 06:22:10 -070053 virtual void Routine() = 0;
54
55 /*
Zach Reizner8467b122015-11-10 15:18:08 -080056 * 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 Paulcb8676c2015-05-13 06:22:10 -070060 */
Zach Reizner8467b122015-11-10 15:18:08 -080061 int WaitForSignalOrExitLocked(int64_t max_nanoseconds = -1);
Sean Paulcb8676c2015-05-13 06:22:10 -070062
Adrian Salidofa37f672017-02-16 10:29:46 -080063 bool should_exit() const {
64 return exit_;
65 }
Sean Paulcb8676c2015-05-13 06:22:10 -070066
Adrian Salidofa37f672017-02-16 10:29:46 -080067 std::mutex mutex_;
68 std::condition_variable cond_;
69
70 private:
71 void InternalRoutine();
Sean Paulcb8676c2015-05-13 06:22:10 -070072
73 std::string name_;
74 int priority_;
75
Adrian Salidofa37f672017-02-16 10:29:46 -080076 std::unique_ptr<std::thread> thread_;
Sean Paulcb8676c2015-05-13 06:22:10 -070077 bool exit_;
78 bool initialized_;
79};
80}
Sean Paulcb8676c2015-05-13 06:22:10 -070081#endif