Skip to content

iceoryx_posh/internal/popo/ports/subscriber_port_multi_producer.hpp🔗

Namespaces🔗

Name
iox
iox::popo

Classes🔗

Name
class iox::popo::SubscriberPortMultiProducer
The SubscriberPortMultiProducer is the implementation of the SubscriberPortRouDi for a setup where subscribers can have multiple matching publishers. I.e. a n:m pub/sub deployment. The handling of CaPro messages is different for 1:m and n:m deployment.

Source code🔗

// Copyright (c) 2020 by Robert Bosch GmbH. 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_POPO_SUBSCRIBER_PORT_MULTI_PRODUCER_HPP_
#define IOX_POPO_SUBSCRIBER_PORT_MULTI_PRODUCER_HPP_

#include "iceoryx_posh/internal/capro/capro_message.hpp"
#include "iceoryx_posh/internal/popo/ports/subscriber_port_roudi.hpp"
#include "iceoryx_utils/cxx/optional.hpp"

namespace iox
{
namespace popo
{
class SubscriberPortMultiProducer : public SubscriberPortRouDi
{
  public:
    using MemberType_t = SubscriberPortData;

    explicit SubscriberPortMultiProducer(cxx::not_null<MemberType_t* const> publisherPortDataPtr) noexcept;

    SubscriberPortMultiProducer(const SubscriberPortMultiProducer& other) = delete;
    SubscriberPortMultiProducer& operator=(const SubscriberPortMultiProducer&) = delete;
    SubscriberPortMultiProducer(SubscriberPortMultiProducer&& rhs) = default;
    SubscriberPortMultiProducer& operator=(SubscriberPortMultiProducer&& rhs) = default;
    ~SubscriberPortMultiProducer() = default;

    cxx::optional<capro::CaproMessage> tryGetCaProMessage() noexcept override;

    cxx::optional<capro::CaproMessage>
    dispatchCaProMessageAndGetPossibleResponse(const capro::CaproMessage& caProMessage) noexcept override;
};

} // namespace popo
} // namespace iox

#endif

Updated on 17 June 2021 at 11:15:27 CEST