• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
28 namespace OHOS::Camera {
29 enum {
30     CMD_CAMERA_HOST_SET_CALLBACK = 0,
31     CMD_CAMERA_HOST_GET_CAMERAID,
32     CMD_CAMERA_HOST_GET_CAMERA_ABILITY,
33     CMD_CAMERA_HOST_OPEN_CAMERA,
34     CMD_CAMERA_HOST_SET_FLASH_LIGHT,
35 };
36 
37 class CameraHostStub {
38 public:
39     CameraHostStub();
~CameraHostStub()40     virtual ~CameraHostStub() {}
41     RetCode Init();
42     int32_t CameraHostStubSetCallback(MessageParcel& data, MessageParcel& reply, MessageOption& option);
43     int32_t CameraHostStubGetCameraIds(MessageParcel& data, MessageParcel& reply, MessageOption& option);
44     int32_t CameraHostStubGetCameraAbility(MessageParcel& data, MessageParcel& reply, MessageOption& option);
45     int32_t CameraHostStubOpenCamera(MessageParcel& data, MessageParcel& reply, MessageOption& option);
46     int32_t CameraHostStubSetFlashlight(MessageParcel& data, MessageParcel& reply, MessageOption& option);
47 
48     int32_t CameraHostServiceStubOnRemoteRequest(int cmdId,
49         MessageParcel& data, MessageParcel& reply, MessageOption& option);
50 
51 private:
52     std::shared_ptr<CameraHost> cameraHost_ = nullptr;
53 };
54 }
55 
56 void *CameraHostStubInstance();
57 
58 void DestroyCameraHostStub(void *obj);
59 
60 int32_t CameraHostServiceOnRemoteRequest(void *stub, int cmdId, struct HdfSBuf *data, struct HdfSBuf *reply);
61 
62 #endif // HDI_CAMERA_HOST_SERVICE_STUB_INF_H