blob: 3378d97255bfb13ab1621c888269ef07d781a9d3 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2005 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 ANDROID_IPC_THREAD_STATE_H
18#define ANDROID_IPC_THREAD_STATE_H
19
20#include <utils/Errors.h>
Mathias Agopian07952722009-05-19 19:08:10 -070021#include <binder/Parcel.h>
22#include <binder/ProcessState.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023#include <utils/Vector.h>
24
25#ifdef HAVE_WIN32_PROC
26typedef int uid_t;
27#endif
28
29// ---------------------------------------------------------------------------
30namespace android {
31
32class IPCThreadState
33{
34public:
35 static IPCThreadState* self();
Brad Fitzpatrick0bd52432010-12-13 16:52:35 -080036 static IPCThreadState* selfOrNull(); // self(), but won't instantiate
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037
38 sp<ProcessState> process();
39
40 status_t clearLastError();
41
42 int getCallingPid();
43 int getCallingUid();
Brad Fitzpatrick27b3a7a2010-06-18 13:07:53 -070044
45 void setStrictModePolicy(int32_t policy);
46 int32_t getStrictModePolicy() const;
Brad Fitzpatrick02343762010-08-30 16:01:16 -070047
48 void setLastTransactionBinderFlags(int32_t flags);
49 int32_t getLastTransactionBinderFlags() const;
50
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051 int64_t clearCallingIdentity();
52 void restoreCallingIdentity(int64_t token);
53
54 void flushCommands();
55
56 void joinThreadPool(bool isMain = true);
57
58 // Stop the local process.
59 void stopProcess(bool immediate = true);
60
61 status_t transact(int32_t handle,
62 uint32_t code, const Parcel& data,
63 Parcel* reply, uint32_t flags);
64
65 void incStrongHandle(int32_t handle);
66 void decStrongHandle(int32_t handle);
67 void incWeakHandle(int32_t handle);
68 void decWeakHandle(int32_t handle);
69 status_t attemptIncStrongHandle(int32_t handle);
70 static void expungeHandle(int32_t handle, IBinder* binder);
71 status_t requestDeathNotification( int32_t handle,
72 BpBinder* proxy);
73 status_t clearDeathNotification( int32_t handle,
74 BpBinder* proxy);
75
76 static void shutdown();
77
Dianne Hackborn887f3552009-12-07 17:59:37 -080078 // Call this to disable switching threads to background scheduling when
79 // receiving incoming IPC calls. This is specifically here for the
80 // Android system process, since it expects to have background apps calling
81 // in to it but doesn't want to acquire locks in its services while in
82 // the background.
83 static void disableBackgroundScheduling(bool disable);
84
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085private:
86 IPCThreadState();
87 ~IPCThreadState();
88
89 status_t sendReply(const Parcel& reply, uint32_t flags);
90 status_t waitForResponse(Parcel *reply,
91 status_t *acquireResult=NULL);
92 status_t talkWithDriver(bool doReceive=true);
93 status_t writeTransactionData(int32_t cmd,
94 uint32_t binderFlags,
95 int32_t handle,
96 uint32_t code,
97 const Parcel& data,
98 status_t* statusBuffer);
99 status_t executeCommand(int32_t command);
100
101 void clearCaller();
102
103 static void threadDestructor(void *st);
104 static void freeBuffer(Parcel* parcel,
105 const uint8_t* data, size_t dataSize,
106 const size_t* objects, size_t objectsSize,
107 void* cookie);
108
109 const sp<ProcessState> mProcess;
Dianne Hackborn887f3552009-12-07 17:59:37 -0800110 const pid_t mMyThreadId;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800111 Vector<BBinder*> mPendingStrongDerefs;
112 Vector<RefBase::weakref_type*> mPendingWeakDerefs;
Dianne Hackborn887f3552009-12-07 17:59:37 -0800113
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800114 Parcel mIn;
115 Parcel mOut;
116 status_t mLastError;
117 pid_t mCallingPid;
118 uid_t mCallingUid;
Brad Fitzpatrick27b3a7a2010-06-18 13:07:53 -0700119 int32_t mStrictModePolicy;
Brad Fitzpatrick02343762010-08-30 16:01:16 -0700120 int32_t mLastTransactionBinderFlags;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800121};
Brad Fitzpatrick27b3a7a2010-06-18 13:07:53 -0700122
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800123}; // namespace android
124
125// ---------------------------------------------------------------------------
126
127#endif // ANDROID_IPC_THREAD_STATE_H