blob: 428db4d579bdd7dc86154ae0cc7129ce55ea9da6 [file] [log] [blame]
Sudheer Shanka6ef26f12016-11-23 15:52:26 -08001/*
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
Nick Kralevichec9ec7d2016-12-17 19:47:27 -080017#include <unistd.h>
18#include <fcntl.h>
19
Sudheer Shanka6ef26f12016-11-23 15:52:26 -080020#include <binder/IActivityManager.h>
21
22#include <binder/Parcel.h>
23
24namespace android {
25
26// ------------------------------------------------------------------------------------
27
28class BpActivityManager : public BpInterface<IActivityManager>
29{
30public:
31 explicit BpActivityManager(const sp<IBinder>& impl)
32 : BpInterface<IActivityManager>(impl)
33 {
34 }
35
36 virtual int openContentUri(const String16& stringUri)
37 {
38 Parcel data, reply;
Sudheer Shankaff81a092017-03-02 12:27:58 -080039 data.writeInterfaceToken(IActivityManager::getInterfaceDescriptor());
Sudheer Shanka6ef26f12016-11-23 15:52:26 -080040 data.writeString16(stringUri);
41 status_t ret = remote()->transact(OPEN_CONTENT_URI_TRANSACTION, data, & reply);
42 int fd = -1;
43 if (ret == NO_ERROR) {
44 int32_t exceptionCode = reply.readExceptionCode();
45 if (!exceptionCode) {
46 // Success is indicated here by a nonzero int followed by the fd;
47 // failure by a zero int with no data following.
48 if (reply.readInt32() != 0) {
Nick Kralevichec9ec7d2016-12-17 19:47:27 -080049 fd = fcntl(reply.readParcelFileDescriptor(), F_DUPFD_CLOEXEC, 0);
Sudheer Shanka6ef26f12016-11-23 15:52:26 -080050 }
51 } else {
52 // An exception was thrown back; fall through to return failure
53 ALOGD("openContentUri(%s) caught exception %d\n",
54 String8(stringUri).string(), exceptionCode);
55 }
56 }
57 return fd;
58 }
Ganesh Mahendran4d85b8c2017-11-02 14:43:38 +000059
60 virtual void registerUidObserver(const sp<IUidObserver>& observer,
61 const int32_t event,
62 const int32_t cutpoint,
63 const String16& callingPackage)
64 {
65 Parcel data, reply;
66 data.writeInterfaceToken(IActivityManager::getInterfaceDescriptor());
67 data.writeStrongBinder(IInterface::asBinder(observer));
68 data.writeInt32(event);
69 data.writeInt32(cutpoint);
70 data.writeString16(callingPackage);
71 remote()->transact(REGISTER_UID_OBSERVER_TRANSACTION, data, &reply);
72 }
73
74 virtual void unregisterUidObserver(const sp<IUidObserver>& observer)
75 {
76 Parcel data, reply;
77 data.writeInterfaceToken(IActivityManager::getInterfaceDescriptor());
78 data.writeStrongBinder(IInterface::asBinder(observer));
79 remote()->transact(UNREGISTER_UID_OBSERVER_TRANSACTION, data, &reply);
80 }
Svet Ganovfa851802018-03-27 17:17:46 -070081
82 virtual bool isUidActive(const uid_t uid, const String16& callingPackage)
83 {
84 Parcel data, reply;
85 data.writeInterfaceToken(IActivityManager::getInterfaceDescriptor());
86 data.writeInt32(uid);
87 data.writeString16(callingPackage);
88 remote()->transact(IS_UID_ACTIVE_TRANSACTION, data, &reply);
89 // fail on exception
90 if (reply.readExceptionCode() != 0) return false;
91 return reply.readInt32() == 1;
92 }
Sudheer Shanka6ef26f12016-11-23 15:52:26 -080093};
94
95// ------------------------------------------------------------------------------------
96
97IMPLEMENT_META_INTERFACE(ActivityManager, "android.app.IActivityManager");
98
99}; // namespace android