Skip to content

iceoryx_posh/runtime/port_config_info.hpp🔗

Namespaces🔗

Name
iox
iox::runtime

Classes🔗

Name
struct iox::runtime::PortConfigInfo
Stores information necessary to create the right type of port on RouDi side. Different types of ports are required if e.g. different types of shared memory are used (e.g. on GPU).

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_POSH_RUNTIME_PORT_CONFIG_INFO_HPP
#define IOX_POSH_RUNTIME_PORT_CONFIG_INFO_HPP

#include "iceoryx_posh/mepoo/memory_info.hpp"
#include "iceoryx_utils/cxx/serialization.hpp"

#include <cstdint>

namespace iox
{
namespace runtime
{
struct PortConfigInfo
{
    static constexpr uint32_t DEFAULT_PORT_TYPE{0u};
    static constexpr uint32_t DEFAULT_DEVICE_ID{0u};
    static constexpr uint32_t DEFAULT_MEMORY_TYPE{0u};

    // these are intentionally not defined as enum classes for flexibility and extendibility
    // with specific user defined codes used by custom ports
    // values will be resolved at lower level, (i.e. in the port creation factory)

    uint32_t portType{DEFAULT_PORT_TYPE};
    iox::mepoo::MemoryInfo memoryInfo;

    PortConfigInfo(const PortConfigInfo&) = default;
    PortConfigInfo(PortConfigInfo&&) = default;
    PortConfigInfo& operator=(const PortConfigInfo&) = default;
    PortConfigInfo& operator=(PortConfigInfo&&) = default;

    PortConfigInfo(uint32_t portType = DEFAULT_PORT_TYPE,
                   uint32_t deviceId = DEFAULT_DEVICE_ID,
                   uint32_t memoryType = DEFAULT_MEMORY_TYPE) noexcept;

    PortConfigInfo(const cxx::Serialization& serialization);

    operator cxx::Serialization() const noexcept;
};

} // namespace runtime
} // namespace iox

#endif // IOX_POSH_RUNTIME_PORT_CONFIG_INFO_HPP

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