/* * Copyright (c) 2025 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 OHOS_DM_DATASHARE_COMMON_EVENT_H #define OHOS_DM_DATASHARE_COMMON_EVENT_H #include "common_event_manager.h" #include "system_ability_status_change_stub.h" namespace OHOS { namespace DistributedHardware { using OHOS::EventFwk::CommonEventData; using OHOS::EventFwk::CommonEventSubscriber; using OHOS::EventFwk::CommonEventSubscribeInfo; using DataShareEventCallback = std::function; class DmDataShareEventSubscriber : public CommonEventSubscriber { public: DmDataShareEventSubscriber(const CommonEventSubscribeInfo &subscribeInfo, const DataShareEventCallback &callback, const std::vector &eventNameVec) : CommonEventSubscriber(subscribeInfo), eventNameVec_(eventNameVec), callback_(callback) {} ~DmDataShareEventSubscriber() override = default; std::vector GetSubscriberEventNameVec() const; void OnReceiveEvent(const CommonEventData &data) override; private: std::vector eventNameVec_; DataShareEventCallback callback_; }; class DmDataShareCommonEventManager { public: DmDataShareCommonEventManager() = default; ~DmDataShareCommonEventManager(); bool SubscribeDataShareCommonEvent(const std::vector &eventNameVec, const DataShareEventCallback &callback); bool UnsubscribeDataShareCommonEvent(); private: std::vector eventNameVec_; bool eventValidFlag_ = false; std::mutex evenSubscriberMutex_; std::shared_ptr subscriber_ = nullptr; sptr statusChangeListener_ = nullptr; private: class SystemAbilityStatusChangeListener : public SystemAbilityStatusChangeStub { public: explicit SystemAbilityStatusChangeListener(std::shared_ptr DataShareSubscriber) : changeSubscriber_(DataShareSubscriber) {} ~SystemAbilityStatusChangeListener() = default; void OnAddSystemAbility(int32_t systemAbilityId, const std::string& deviceId) override; void OnRemoveSystemAbility(int32_t systemAbilityId, const std::string& deviceId) override; private: std::shared_ptr changeSubscriber_; }; }; } // namespace DistributedHardware } // namespace OHOS #endif // OHOS_DM_DATASHARE_COMMON_EVENT_H