// Copyright (c) 2019 by Robert Bosch GmbH. All rights reserved.// Copyright (c) 2021 - 2022 by Apex.AI Inc. All rights reserved.//// 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.//// SPDX-License-Identifier: Apache-2.0#ifndef IOX_POSH_RUNTIME_SERVICE_DISCOVERY_HPP#define IOX_POSH_RUNTIME_SERVICE_DISCOVERY_HPP#include"iceoryx_posh/iceoryx_posh_types.hpp"#include"iceoryx_posh/internal/roudi/service_registry.hpp"#include"iceoryx_posh/popo/subscriber.hpp"#include"iceoryx_posh/runtime/posh_runtime.hpp"#include<memory>#include<mutex>namespaceiox{namespacepopo{enumclassMessagingPattern{PUB_SUB,REQ_RES};}// namespace poponamespaceruntime{enumclassServiceDiscoveryEvent:popo::EventEnumIdentifier{SERVICE_REGISTRY_CHANGED};classServiceDiscovery{public:ServiceDiscovery()noexcept;ServiceDiscovery(constServiceDiscovery&)=delete;ServiceDiscovery&operator=(constServiceDiscovery&)=delete;ServiceDiscovery(ServiceDiscovery&&)=delete;ServiceDiscovery&operator=(ServiceDiscovery&&)=delete;~ServiceDiscovery()noexcept=default;voidfindService(constcxx::optional<capro::IdString_t>&service,constcxx::optional<capro::IdString_t>&instance,constcxx::optional<capro::IdString_t>&event,constcxx::function_ref<void(constcapro::ServiceDescription&)>&callableForEach,constpopo::MessagingPatternpattern)noexcept;friendiox::popo::NotificationAttorney;private:voidenableEvent(popo::TriggerHandle&&triggerHandle,constServiceDiscoveryEventevent)noexcept;voiddisableEvent(constServiceDiscoveryEventevent)noexcept;voidinvalidateTrigger(constuint64_tuniqueTriggerId);iox::popo::WaitSetIsConditionSatisfiedCallbackgetCallbackForIsStateConditionSatisfied(constpopo::SubscriberStatestate);// use dynamic memory to reduce stack usagestd::unique_ptr<roudi::ServiceRegistry>m_serviceRegistry{newiox::roudi::ServiceRegistry};std::mutexm_serviceRegistryMutex;popo::Subscriber<roudi::ServiceRegistry>m_serviceRegistrySubscriber{{SERVICE_DISCOVERY_SERVICE_NAME,SERVICE_DISCOVERY_INSTANCE_NAME,SERVICE_DISCOVERY_EVENT_NAME},{1U,1U,iox::NodeName_t("Service Registry"),true}};voidupdate();};}// namespace runtime}// namespace iox#endif // IOX_POSH_RUNTIME_SERVICE_DISCOVERY_HPP