1 /* 2 * Copyright (c) 2021 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef HDI_CAMERA_HOST_SERVICE_STUB_INF_H 17 #define HDI_CAMERA_HOST_SERVICE_STUB_INF_H 18 19 #include <refbase.h> 20 #include <message_parcel.h> 21 #include <message_option.h> 22 #include "icamera_host_callback.h" 23 #include "icamera_device_callback.h" 24 #include "camera_host.h" 25 #include "types.h" 26 #include "camera.h" 27 #include "cmd_common.h" 28 29 namespace OHOS::Camera { 30 class CameraHostStub { 31 public: 32 CameraHostStub(); ~CameraHostStub()33 virtual ~CameraHostStub() {} 34 RetCode Init(); 35 int32_t CameraHostStubSetCallback(MessageParcel& data, MessageParcel& reply, MessageOption& option); 36 int32_t CameraHostStubGetCameraIds(MessageParcel& data, MessageParcel& reply, MessageOption& option); 37 int32_t CameraHostStubGetCameraAbility(MessageParcel& data, MessageParcel& reply, MessageOption& option); 38 int32_t CameraHostStubOpenCamera(MessageParcel& data, MessageParcel& reply, MessageOption& option); 39 int32_t CameraHostStubSetFlashlight(MessageParcel& data, MessageParcel& reply, MessageOption& option); 40 static inline const std::u16string metaDescriptor_ = u"HDI.Camera.V1_0.Host"; GetDescriptor()41 static inline const std::u16string &GetDescriptor() 42 { 43 return metaDescriptor_; 44 } 45 46 int32_t CameraHostServiceStubOnRemoteRequest(int cmdId, 47 MessageParcel& data, MessageParcel& reply, MessageOption& option); 48 49 private: 50 std::shared_ptr<CameraHost> cameraHost_ = nullptr; 51 }; 52 } 53 54 void *CameraHostStubInstance(void); 55 56 void DestroyCameraHostStub(void *obj); 57 58 int32_t CameraHostServiceOnRemoteRequest(void *stub, int cmdId, struct HdfSBuf *data, struct HdfSBuf *reply); 59 60 #endif // HDI_CAMERA_HOST_SERVICE_STUB_INF_H