1 /*
2 * Copyright (C) 2013 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 #define LOG_TAG "AppOpsCallback"
18
19 #include <binder/IAppOpsCallback.h>
20
21 #include <utils/Debug.h>
22 #include <utils/Log.h>
23 #include <binder/Parcel.h>
24 #include <utils/String8.h>
25
26 #include <private/binder/Static.h>
27
28 namespace android {
29
30 // ----------------------------------------------------------------------
31
32 class BpAppOpsCallback : public BpInterface<IAppOpsCallback>
33 {
34 public:
BpAppOpsCallback(const sp<IBinder> & impl)35 BpAppOpsCallback(const sp<IBinder>& impl)
36 : BpInterface<IAppOpsCallback>(impl)
37 {
38 }
39
opChanged(int32_t op,const String16 & packageName)40 virtual void opChanged(int32_t op, const String16& packageName) {
41 Parcel data, reply;
42 data.writeInterfaceToken(IAppOpsCallback::getInterfaceDescriptor());
43 data.writeInt32(op);
44 data.writeString16(packageName);
45 remote()->transact(OP_CHANGED_TRANSACTION, data, &reply);
46 }
47 };
48
49 IMPLEMENT_META_INTERFACE(AppOpsCallback, "com.android.internal.app.IAppOpsCallback");
50
51 // ----------------------------------------------------------------------
52
onTransact(uint32_t code,const Parcel & data,Parcel * reply,uint32_t flags)53 status_t BnAppOpsCallback::onTransact(
54 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
55 {
56 switch(code) {
57 case OP_CHANGED_TRANSACTION: {
58 CHECK_INTERFACE(IAppOpsCallback, data, reply);
59 int32_t op = data.readInt32();
60 String16 packageName = data.readString16();
61 opChanged(op, packageName);
62 reply->writeNoException();
63 return NO_ERROR;
64 } break;
65 default:
66 return BBinder::onTransact(code, data, reply, flags);
67 }
68 }
69
70 }; // namespace android
71