• 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_CLIENT_PROXY_H
17 #define HDI_CAMERA_HOST_CLIENT_PROXY_H
18 
19 #include <iremote_proxy.h>
20 #include "icamera_host.h"
21 
22 namespace OHOS::Camera {
23 class ICameraHostCallback;
24 class CameraHostProxy : public IRemoteProxy<ICameraHost> {
25 public:
CameraHostProxy(const sptr<IRemoteObject> & impl)26     explicit CameraHostProxy(const sptr<IRemoteObject>& impl) : IRemoteProxy<ICameraHost>(impl) {}
~CameraHostProxy()27     virtual ~CameraHostProxy() {}
28 
29     virtual CamRetCode SetCallback(const OHOS::sptr<ICameraHostCallback> &callback) override;
30     virtual CamRetCode GetCameraIds(std::vector<std::string> &cameraIds) override;
31     virtual CamRetCode GetCameraAbility(const std::string &cameraId,
32         std::shared_ptr<CameraAbility> &ability) override;
33     virtual CamRetCode OpenCamera(const std::string &cameraId,
34         const OHOS::sptr<ICameraDeviceCallback> &callback,
35         OHOS::sptr<ICameraDevice> &pDevice) override;
36     virtual CamRetCode SetFlashlight(const std::string &cameraId, bool &isEnable) override;
37 
38 private:
39     static constexpr int CMD_CAMERA_HOST_REMOTE_SET_CALLBACK = 0;
40     static constexpr int CMD_CAMERA_HOST_REMOTE_GET_CAMERAID = 1;
41     static constexpr int CMD_CAMERA_HOST_REMOTE_GET_CAMERA_ABILITY = 2;
42     static constexpr int CMD_CAMERA_HOST_REMOTE_OPEN_CAMERA = 3;
43     static constexpr int CMD_CAMERA_HOST_REMOTE_SET_FLASH_LIGHT = 4;
44 
45     static inline BrokerDelegator<CameraHostProxy> delegator_;
46 };
47 }
48 #endif // HDI_CAMERA_HOST_CLIENT_PROXY_H