1 /* 2 * Copyright (c) 2021-2022 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 OHOS_CAMERA_ICAMERA_DEVICE_SERVICE_H 17 #define OHOS_CAMERA_ICAMERA_DEVICE_SERVICE_H 18 19 #include "camera_metadata_info.h" 20 #include "icamera_device_service_callback.h" 21 #include "iremote_broker.h" 22 23 namespace OHOS { 24 namespace CameraStandard { 25 class ICameraDeviceService : public IRemoteBroker { 26 public: 27 virtual int32_t Open() = 0; 28 29 virtual int32_t OpenSecureCamera(uint64_t* secureSeqId) = 0; 30 31 virtual int32_t Close() = 0; 32 33 virtual int32_t Release() = 0; 34 35 virtual int32_t SetCallback(sptr<ICameraDeviceServiceCallback> &callback) = 0; 36 37 virtual int32_t UpdateSetting(const std::shared_ptr<OHOS::Camera::CameraMetadata> &settings) = 0; 38 39 virtual int32_t SetUsedAsPosition(uint8_t value) = 0; 40 41 virtual int32_t GetStatus(std::shared_ptr<OHOS::Camera::CameraMetadata> &metaIn, 42 std::shared_ptr<OHOS::Camera::CameraMetadata> &metaOut) = 0; 43 44 virtual int32_t GetEnabledResults(std::vector<int32_t> &results) = 0; 45 46 virtual int32_t EnableResult(std::vector<int32_t> &results) = 0; 47 48 virtual int32_t DisableResult(std::vector<int32_t> &results) = 0; 49 50 DECLARE_INTERFACE_DESCRIPTOR(u"ICameraDeviceService"); 51 }; 52 } // namespace CameraStandard 53 } // namespace OHOS 54 #endif // OHOS_CAMERA_ICAMERA_DEVICE_SERVICE_H 55