/* * Copyright (c) 2024 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 BASE_NOTIFICATION_DISTRIBUTED_NOTIFICATION_SERVICE_SERVICES_ANS_INCLUDE_NOTIFICATION_EXT_H #define BASE_NOTIFICATION_DISTRIBUTED_NOTIFICATION_SERVICE_SERVICES_ANS_INCLUDE_NOTIFICATION_EXT_H #include #include "errors.h" #include "nocopyable.h" #include "notification.h" #include "notification_request.h" #include "notification_unified_group_Info.h" #include "singleton.h" #include "advanced_aggregation_data_roaming_observer.h" namespace OHOS::Notification { class ExtensionWrapper final { DECLARE_DELAYED_SINGLETON(ExtensionWrapper); public: DISALLOW_COPY_AND_MOVE(ExtensionWrapper); void InitExtentionWrapper(); typedef ErrCode (*SYNC_ADDITION_CONFIG)(const std::string& key, const std::string& value); typedef void (*UPDATE_BY_CANCEL)(const std::vector>& notifications, int deleteType); typedef ErrCode (*GET_UNIFIED_GROUP_INFO)(const sptr &request); typedef void (*UPDATE_GROUP_INFO)(const std::string &key, std::shared_ptr &groupInfo); typedef void (*INIT_SUMMARY)(UPDATE_GROUP_INFO func); typedef void (*SET_LOCAL_SWITCH)(bool status); typedef int32_t (*LOCAL_CONTROL)(const sptr &request); typedef void (*UPDATE_BY_BUNDLE)(const std::string bundleName, int deleteType); typedef int32_t (*REMINDER_CONTROL)(const std::string &bundleName); typedef int32_t (*BANNER_CONTROL)(const std::string &bundleName); ErrCode SyncAdditionConfig(const std::string& key, const std::string& value); void UpdateByCancel(const std::vector>& notifications, int deleteReason); ErrCode GetUnifiedGroupInfo(const sptr &request); void RegisterDataSettingObserver(); void SetlocalSwitch(std::string &enable); void CheckIfSetlocalSwitch(); int32_t LocalControl(const sptr &request); void UpdateByBundle(const std::string bundleName, int deleteType); int32_t ReminderControl(const std::string &bundleName); int32_t BannerControl(const std::string &bundleName); private: static int32_t convertToDelType(int32_t deleteReason); void* extensionWrapperHandle_ = nullptr; SYNC_ADDITION_CONFIG syncAdditionConfig_ = nullptr; UPDATE_BY_CANCEL updateByCancel_ = nullptr; GET_UNIFIED_GROUP_INFO getUnifiedGroupInfo_ = nullptr; INIT_SUMMARY initSummary_ = nullptr; SET_LOCAL_SWITCH setLocalSwitch_ = nullptr; LOCAL_CONTROL localControl_ = nullptr; UPDATE_BY_BUNDLE updateByBundle_ = nullptr; REMINDER_CONTROL reminderControl_ = nullptr; BANNER_CONTROL bannerControl_ = nullptr; bool isRegisterDataSettingObserver = false; }; #define EXTENTION_WRAPPER ::OHOS::DelayedSingleton::GetInstance() } // namespace OHOS::Notification #endif // BASE_NOTIFICATION_DISTRIBUTED_NOTIFICATION_SERVICE_SERVICES_ANS_INCLUDE_NOTIFICATION_EXT_H