/* * Copyright (c) 2023 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef HDI_SENSOR_IF_SERVICE_H #define HDI_SENSOR_IF_SERVICE_H #include #include "v2_0/isensor_interface.h" #include "isensor_interface_vdi.h" #include "sensor_callback_vdi.h" #include "sensor_client_info.h" #include "sensor_clients_manager.h" namespace OHOS { namespace HDI { namespace Sensor { namespace V2_0 { using GroupIdCallBackMap = std::unordered_map>>; class SensorIfService : public ISensorInterface { public: SensorIfService(); ~SensorIfService(); int32_t Init(void); int32_t GetAllSensorInfo(std::vector &info) override; int32_t Enable(int32_t sensorId) override; int32_t Disable(int32_t sensorId) override; int32_t DisableSensor(int32_t sensorId, uint32_t serviceId); int32_t SetBatch(int32_t sensorId, int64_t samplingInterval, int64_t reportInterval) override; int32_t SetBatchSenior(int32_t serviceId, int32_t sensorId, int32_t mode, int64_t samplingInterval, int64_t reportInterval); int32_t SetMode(int32_t sensorId, int32_t mode) override; int32_t SetOption(int32_t sensorId, uint32_t option) override; int32_t Register(int32_t groupId, const sptr &callbackObj) override; int32_t Unregister(int32_t groupId, const sptr &callbackObj) override; int32_t ReadData(int32_t sensorId, std::vector &event) override; int32_t SetSdcSensor(int32_t sensorId, bool enabled, int32_t rateLevel) override; int32_t GetSdcSensorInfo(std::vector& sdcSensorInfo) override; int32_t GetSensorVdiImpl(); void OnRemoteDied(const wptr &object); std::mutex sensorServiceMutex_; private: int32_t AddSensorDeathRecipient(const sptr &callbackObj); int32_t RemoveSensorDeathRecipient(const sptr &callbackObj); void RemoveDeathNotice(int32_t sensorType); int32_t AddCallbackMap(int32_t groupId, const sptr &callbackObj); int32_t RemoveCallbackMap(int32_t groupId, int serviceId, const sptr &callbackObj); sptr GetSensorCb(int32_t groupId, const sptr &callbackObj, bool cbFlag); void RegisteDumpHost(); OHOS::HDI::Sensor::V1_1::ISensorInterfaceVdi *sensorVdiImpl_ = nullptr; struct HdfVdiObject *vdi_ = nullptr; GroupIdCallBackMap callbackMap = {}; sptr traditionalCb = nullptr; sptr medicalCb = nullptr; std::vector hdfSensorInformations; int32_t SetDelay(int32_t sensorId, int64_t &samplingInterval, int64_t &reportInterval); }; } // V2_0 } // Sensor } // HDI } // OHOS #endif // HDI_SENSOR_IF_SERVICE_H