blob: 4a34abd788134bcb72cf405b63ca03897bfefaf5 [file] [log] [blame]
Mathias Agopian2bd99592012-02-25 23:02:14 -08001/*
2 * Copyright (C) 2007 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#ifndef _LIBS_UTILS_THREAD_H
18#define _LIBS_UTILS_THREAD_H
19
20#include <stdint.h>
21#include <sys/types.h>
22#include <time.h>
23
24#if defined(HAVE_PTHREADS)
25# include <pthread.h>
26#endif
27
28#include <utils/Condition.h>
29#include <utils/Errors.h>
30#include <utils/Mutex.h>
31#include <utils/RefBase.h>
32#include <utils/Timers.h>
33#include <utils/ThreadDefs.h>
34
35// ---------------------------------------------------------------------------
36namespace android {
37// ---------------------------------------------------------------------------
38
39class Thread : virtual public RefBase
40{
41public:
42 // Create a Thread object, but doesn't create or start the associated
43 // thread. See the run() method.
44 Thread(bool canCallJava = true);
45 virtual ~Thread();
46
47 // Start the thread in threadLoop() which needs to be implemented.
48 virtual status_t run( const char* name = 0,
49 int32_t priority = PRIORITY_DEFAULT,
50 size_t stack = 0);
51
52 // Ask this object's thread to exit. This function is asynchronous, when the
53 // function returns the thread might still be running. Of course, this
54 // function can be called from a different thread.
55 virtual void requestExit();
56
57 // Good place to do one-time initializations
58 virtual status_t readyToRun();
59
60 // Call requestExit() and wait until this object's thread exits.
61 // BE VERY CAREFUL of deadlocks. In particular, it would be silly to call
62 // this function from this object's thread. Will return WOULD_BLOCK in
63 // that case.
64 status_t requestExitAndWait();
65
66 // Wait until this object's thread exits. Returns immediately if not yet running.
67 // Do not call from this object's thread; will return WOULD_BLOCK in that case.
68 status_t join();
69
70#ifdef HAVE_ANDROID_OS
71 // Return the thread's kernel ID, same as the thread itself calling gettid() or
72 // androidGetTid(), or -1 if the thread is not running.
73 pid_t getTid() const;
74#endif
75
76protected:
77 // exitPending() returns true if requestExit() has been called.
78 bool exitPending() const;
79
80private:
81 // Derived class must implement threadLoop(). The thread starts its life
82 // here. There are two ways of using the Thread object:
83 // 1) loop: if threadLoop() returns true, it will be called again if
84 // requestExit() wasn't called.
85 // 2) once: if threadLoop() returns false, the thread will exit upon return.
86 virtual bool threadLoop() = 0;
87
88private:
89 Thread& operator=(const Thread&);
90 static int _threadLoop(void* user);
91 const bool mCanCallJava;
92 // always hold mLock when reading or writing
93 thread_id_t mThread;
94 mutable Mutex mLock;
95 Condition mThreadExitedCondition;
96 status_t mStatus;
97 // note that all accesses of mExitPending and mRunning need to hold mLock
98 volatile bool mExitPending;
99 volatile bool mRunning;
100 sp<Thread> mHoldSelf;
101#ifdef HAVE_ANDROID_OS
102 // legacy for debugging, not used by getTid() as it is set by the child thread
103 // and so is not initialized until the child reaches that point
104 pid_t mTid;
105#endif
106};
107
108
109}; // namespace android
110
111// ---------------------------------------------------------------------------
112#endif // _LIBS_UTILS_THREAD_H
113// ---------------------------------------------------------------------------