1794c9f46Sopenharmony_ci/* 2794c9f46Sopenharmony_ci * Copyright (c) 2022-2024 Huawei Device Co., Ltd. 3794c9f46Sopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License"); 4794c9f46Sopenharmony_ci * you may not use this file except in compliance with the License. 5794c9f46Sopenharmony_ci * You may obtain a copy of the License at 6794c9f46Sopenharmony_ci * 7794c9f46Sopenharmony_ci * http://www.apache.org/licenses/LICENSE-2.0 8794c9f46Sopenharmony_ci * 9794c9f46Sopenharmony_ci * Unless required by applicable law or agreed to in writing, software 10794c9f46Sopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS, 11794c9f46Sopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12794c9f46Sopenharmony_ci * See the License for the specific language governing permissions and 13794c9f46Sopenharmony_ci * limitations under the License. 14794c9f46Sopenharmony_ci */ 15794c9f46Sopenharmony_ci 16794c9f46Sopenharmony_ci#include "publisher.h" 17794c9f46Sopenharmony_ci 18794c9f46Sopenharmony_cinamespace OHOS { 19794c9f46Sopenharmony_cinamespace DistributedHardware { 20794c9f46Sopenharmony_ciIMPLEMENT_SINGLE_INSTANCE(Publisher); 21794c9f46Sopenharmony_ciPublisher::Publisher() : publisherItems_({ 22794c9f46Sopenharmony_ci { DHTopic::TOPIC_START_DSCREEN, std::make_shared<PublisherItem>(DHTopic::TOPIC_START_DSCREEN) }, 23794c9f46Sopenharmony_ci { DHTopic::TOPIC_SINK_PROJECT_WINDOW_INFO, 24794c9f46Sopenharmony_ci std::make_shared<PublisherItem>(DHTopic::TOPIC_SINK_PROJECT_WINDOW_INFO) }, 25794c9f46Sopenharmony_ci { DHTopic::TOPIC_STOP_DSCREEN, std::make_shared<PublisherItem>(DHTopic::TOPIC_STOP_DSCREEN) }, 26794c9f46Sopenharmony_ci { DHTopic::TOPIC_DEV_OFFLINE, std::make_shared<PublisherItem>(DHTopic::TOPIC_DEV_OFFLINE) }, 27794c9f46Sopenharmony_ci { DHTopic::TOPIC_LOW_LATENCY, std::make_shared<PublisherItem>(DHTopic::TOPIC_LOW_LATENCY) }, 28794c9f46Sopenharmony_ci { DHTopic::TOPIC_INIT_DHMS_READY, std::make_shared<PublisherItem>(DHTopic::TOPIC_INIT_DHMS_READY) }, 29794c9f46Sopenharmony_ci { DHTopic::TOPIC_PHY_DEV_PLUGIN, std::make_shared<PublisherItem>(DHTopic::TOPIC_PHY_DEV_PLUGIN) }, 30794c9f46Sopenharmony_ci { DHTopic::TOPIC_ISOMERISM, std::make_shared<PublisherItem>(DHTopic::TOPIC_ISOMERISM) } 31794c9f46Sopenharmony_ci }) 32794c9f46Sopenharmony_ci{ 33794c9f46Sopenharmony_ci} 34794c9f46Sopenharmony_ci 35794c9f46Sopenharmony_ciPublisher::~Publisher() 36794c9f46Sopenharmony_ci{ 37794c9f46Sopenharmony_ci} 38794c9f46Sopenharmony_ci 39794c9f46Sopenharmony_civoid Publisher::RegisterListener(const DHTopic topic, const sptr<IPublisherListener> listener) 40794c9f46Sopenharmony_ci{ 41794c9f46Sopenharmony_ci publisherItems_[topic]->AddListener(listener); 42794c9f46Sopenharmony_ci} 43794c9f46Sopenharmony_ci 44794c9f46Sopenharmony_civoid Publisher::UnregisterListener(const DHTopic topic, const sptr<IPublisherListener> listener) 45794c9f46Sopenharmony_ci{ 46794c9f46Sopenharmony_ci publisherItems_[topic]->RemoveListener(listener); 47794c9f46Sopenharmony_ci} 48794c9f46Sopenharmony_ci 49794c9f46Sopenharmony_civoid Publisher::PublishMessage(const DHTopic topic, const std::string &message) 50794c9f46Sopenharmony_ci{ 51794c9f46Sopenharmony_ci publisherItems_[topic]->PublishMessage(message); 52794c9f46Sopenharmony_ci} 53794c9f46Sopenharmony_ci} // namespace DistributedHardware 54794c9f46Sopenharmony_ci} // namespace OHOS