Ruben Brunk | 2823ce0 | 2015-05-19 17:25:13 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 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 "BpCameraServiceProxy" |
| 18 | |
| 19 | #include <stdint.h> |
| 20 | |
| 21 | #include <binder/Parcel.h> |
| 22 | |
| 23 | #include <camera/ICameraServiceProxy.h> |
| 24 | |
| 25 | namespace android { |
| 26 | |
| 27 | class BpCameraServiceProxy: public BpInterface<ICameraServiceProxy> { |
| 28 | public: |
Chih-Hung Hsieh | 090ef60 | 2016-04-27 10:39:54 -0700 | [diff] [blame] | 29 | explicit BpCameraServiceProxy(const sp<IBinder>& impl) |
| 30 | : BpInterface<ICameraServiceProxy>(impl) {} |
Ruben Brunk | 2823ce0 | 2015-05-19 17:25:13 -0700 | [diff] [blame] | 31 | |
| 32 | virtual void pingForUserUpdate() { |
Eino-Ville Talvala | 412fe56 | 2015-08-20 17:08:32 -0700 | [diff] [blame] | 33 | Parcel data; |
Ruben Brunk | 2823ce0 | 2015-05-19 17:25:13 -0700 | [diff] [blame] | 34 | data.writeInterfaceToken(ICameraServiceProxy::getInterfaceDescriptor()); |
Eino-Ville Talvala | 412fe56 | 2015-08-20 17:08:32 -0700 | [diff] [blame] | 35 | remote()->transact(BnCameraServiceProxy::PING_FOR_USER_UPDATE, data, nullptr, |
Ruben Brunk | 2823ce0 | 2015-05-19 17:25:13 -0700 | [diff] [blame] | 36 | IBinder::FLAG_ONEWAY); |
| 37 | } |
Eino-Ville Talvala | 412fe56 | 2015-08-20 17:08:32 -0700 | [diff] [blame] | 38 | |
| 39 | virtual void notifyCameraState(String16 cameraId, CameraState newCameraState) { |
| 40 | Parcel data; |
| 41 | data.writeInterfaceToken(ICameraServiceProxy::getInterfaceDescriptor()); |
| 42 | data.writeString16(cameraId); |
| 43 | data.writeInt32(newCameraState); |
| 44 | remote()->transact(BnCameraServiceProxy::NOTIFY_CAMERA_STATE, data, nullptr, |
| 45 | IBinder::FLAG_ONEWAY); |
| 46 | } |
| 47 | |
Ruben Brunk | 2823ce0 | 2015-05-19 17:25:13 -0700 | [diff] [blame] | 48 | }; |
| 49 | |
| 50 | |
| 51 | IMPLEMENT_META_INTERFACE(CameraServiceProxy, "android.hardware.ICameraServiceProxy"); |
| 52 | |
| 53 | status_t BnCameraServiceProxy::onTransact(uint32_t code, const Parcel& data, Parcel* reply, |
| 54 | uint32_t flags) { |
| 55 | switch(code) { |
| 56 | case PING_FOR_USER_UPDATE: { |
| 57 | CHECK_INTERFACE(ICameraServiceProxy, data, reply); |
| 58 | pingForUserUpdate(); |
| 59 | return NO_ERROR; |
| 60 | } break; |
Eino-Ville Talvala | 412fe56 | 2015-08-20 17:08:32 -0700 | [diff] [blame] | 61 | case NOTIFY_CAMERA_STATE: { |
| 62 | CHECK_INTERFACE(ICameraServiceProxy, data, reply); |
| 63 | String16 cameraId = data.readString16(); |
| 64 | CameraState newCameraState = |
| 65 | static_cast<CameraState>(data.readInt32()); |
| 66 | notifyCameraState(cameraId, newCameraState); |
| 67 | return NO_ERROR; |
| 68 | } break; |
Ruben Brunk | 2823ce0 | 2015-05-19 17:25:13 -0700 | [diff] [blame] | 69 | default: |
| 70 | return BBinder::onTransact(code, data, reply, flags); |
| 71 | } |
| 72 | } |
| 73 | }; // namespace android |