1686862fbSopenharmony_ci/* 2686862fbSopenharmony_ci * Copyright (c) 2022 Huawei Device Co., Ltd. 3686862fbSopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License"); 4686862fbSopenharmony_ci * you may not use this file except in compliance with the License. 5686862fbSopenharmony_ci * You may obtain a copy of the License at 6686862fbSopenharmony_ci * 7686862fbSopenharmony_ci * http://www.apache.org/licenses/LICENSE-2.0 8686862fbSopenharmony_ci * 9686862fbSopenharmony_ci * Unless required by applicable law or agreed to in writing, software 10686862fbSopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS, 11686862fbSopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12686862fbSopenharmony_ci * See the License for the specific language governing permissions and 13686862fbSopenharmony_ci * limitations under the License. 14686862fbSopenharmony_ci */ 15686862fbSopenharmony_ci 16686862fbSopenharmony_ci#ifndef OHOS_DISTRIBUTED_ABILITY_MANAGER_NOTIFIER_INFO_H 17686862fbSopenharmony_ci#define OHOS_DISTRIBUTED_ABILITY_MANAGER_NOTIFIER_INFO_H 18686862fbSopenharmony_ci 19686862fbSopenharmony_ci#include <functional> 20686862fbSopenharmony_ci#include <iosfwd> 21686862fbSopenharmony_ci#include <map> 22686862fbSopenharmony_ci#include <memory> 23686862fbSopenharmony_ci#include <string> 24686862fbSopenharmony_ci 25686862fbSopenharmony_ci#include "connect_status_info.h" 26686862fbSopenharmony_ci#include "iremote_object.h" 27686862fbSopenharmony_ci#include "notifier_death_recipient.h" 28686862fbSopenharmony_ci#include "refbase.h" 29686862fbSopenharmony_ci 30686862fbSopenharmony_cinamespace OHOS { 31686862fbSopenharmony_cinamespace DistributedSchedule { 32686862fbSopenharmony_ciclass NotifierInfo { 33686862fbSopenharmony_cipublic: 34686862fbSopenharmony_ci NotifierInfo() = default; 35686862fbSopenharmony_ci ~NotifierInfo() = default; 36686862fbSopenharmony_ci 37686862fbSopenharmony_ci using NotifierMap = std::map<std::string, sptr<IRemoteObject>>; 38686862fbSopenharmony_ci sptr<IRemoteObject> GetNotifier(const std::string& cbType) const; 39686862fbSopenharmony_ci void SetNotifier(const std::string& cbType, const sptr<IRemoteObject>& notifier); 40686862fbSopenharmony_ci void DeleteNotifier(const std::string& cbType); 41686862fbSopenharmony_ci bool QueryNotifier(const sptr<IRemoteObject>& notifier) const; 42686862fbSopenharmony_ci bool IsNotifierMapEmpty(); 43686862fbSopenharmony_ci void RemoveDeathRecipient(const sptr<IRemoteObject::DeathRecipient>& notifierDeathRecipient, 44686862fbSopenharmony_ci const std::string& cbType = std::string()); 45686862fbSopenharmony_ci std::shared_ptr<ConnectStatusInfo> GetConnectStatusInfo() const; 46686862fbSopenharmony_ci void SetConnectStatusInfo(const std::shared_ptr<ConnectStatusInfo>& connectStatusInfo); 47686862fbSopenharmony_ciprivate: 48686862fbSopenharmony_ci NotifierMap notifierMap_; 49686862fbSopenharmony_ci std::shared_ptr<ConnectStatusInfo> connectStatusInfo_; 50686862fbSopenharmony_ci}; 51686862fbSopenharmony_ci} // namespace DistributedSchedule 52686862fbSopenharmony_ci} // namespace OHOS 53686862fbSopenharmony_ci#endif // OHOS_DISTRIBUTED_ABILITY_MANAGER_NOTIFIER_INFO_H