• <xmp id="om0om">
  • <table id="om0om"><noscript id="om0om"></noscript></table>
  • Compute Graph Framework SDK Reference  5.22
    All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
    PortCollectionDescriptor.hpp
    Go to the documentation of this file.
    1
    2//
    3// Notice
    4// ALL NVIDIA DESIGN SPECIFICATIONS AND CODE ("MATERIALS") ARE PROVIDED "AS IS" NVIDIA MAKES
    5// NO REPRESENTATIONS, WARRANTIES, EXPRESSED, IMPLIED, STATUTORY, OR OTHERWISE WITH RESPECT TO
    6// THE MATERIALS, AND EXPRESSLY DISCLAIMS ANY IMPLIED WARRANTIES OF NONINFRINGEMENT,
    7// MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
    8//
    9// NVIDIA CORPORATION & AFFILIATES assumes no responsibility for the consequences of use of such
    10// information or for any infringement of patents or other rights of third parties that may
    11// result from its use. No license is granted by implication or otherwise under any patent
    12// or patent rights of NVIDIA CORPORATION & AFFILIATES. No third party distribution is allowed unless
    13// expressly authorized by NVIDIA. Details are subject to change without notice.
    14// This code supersedes and replaces all information previously supplied.
    15// NVIDIA CORPORATION & AFFILIATES products are not authorized for use as critical
    16// components in life support devices or systems without express written approval of
    17// NVIDIA CORPORATION & AFFILIATES.
    18//
    19// SPDX-FileCopyrightText: Copyright (c) 2021-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
    20// SPDX-License-Identifier: LicenseRef-NvidiaProprietary
    21//
    22// NVIDIA CORPORATION, its affiliates and licensors retain all intellectual
    23// property and proprietary rights in and to this material, related
    24// documentation and any modifications thereto. Any use, reproduction,
    25// disclosure or distribution of this material and related documentation
    26// without an express license agreement from NVIDIA CORPORATION or
    27// its affiliates is strictly prohibited.
    28//
    30
    31#ifndef DW_FRAMEWORK_PORTCOLLECTIONDESCRIPTOR_HPP_
    32#define DW_FRAMEWORK_PORTCOLLECTIONDESCRIPTOR_HPP_
    33
    34#include <dwcgf/port/Port.hpp>
    36
    37#include <dwshared/dwfoundation/dw/core/container/BaseString.hpp>
    38#include <dwshared/dwfoundation/dw/core/container/StringView.hpp>
    39#include <dwshared/dwfoundation/dw/core/container/VectorFixed.hpp>
    40#include <dwshared/dwfoundation/dw/core/language/Tuple.hpp>
    41
    42#include <string>
    43#include <typeinfo>
    44
    46#define NODE_GET_INPUT_PORT_INDEX_EXTERNAL(NodeT, identifier) dw::framework::portIndex<NodeT, dw::framework::PortDirection::INPUT>(identifier)
    48#define NODE_GET_OUTPUT_PORT_INDEX_EXTERNAL(NodeT, identifier) dw::framework::portIndex<NodeT, dw::framework::PortDirection::OUTPUT>(identifier)
    49
    50namespace dw
    51{
    52namespace framework
    53{
    54
    56{
    57public:
    59 PortDirection direction, dw::core::StringView name,
    60 dw::core::StringView typeName, size_t arraySize, bool bindingRequired,
    61 dw::core::StringView comment);
    63
    64 const dw::core::StringView& getName() const;
    65
    66 const dw::core::StringView& getTypeName() const;
    67
    68 bool isArray() const;
    69
    70 size_t getArraySize() const;
    71
    72 bool isBindingRequired() const;
    73
    74 const dw::core::StringView& getComment() const;
    75
    76private:
    77 PortDirection m_direction;
    78 dw::core::StringView m_name;
    79 dw::core::StringView m_typeName;
    80 size_t m_arraySize;
    81 bool m_bindingRequired;
    82 dw::core::StringView m_comment;
    83};
    84
    85// coverity[autosar_cpp14_a0_1_1_violation] FP: nvbugs/2813925
    86// coverity[autosar_cpp14_a5_1_1_violation] FP: nvbugs/4020293
    87// coverity[autosar_cpp14_m0_1_4_violation] FP: nvbugs/2813925
    88static constexpr const size_t MAX_PORT_DESCRIPTOR_PER_COLLECTION{256U};
    89
    91{
    92public:
    93 PortCollectionDescriptor(PortDirection direction, size_t portOffset = 0U);
    94
    96
    97 size_t getDescriptorSize() const;
    98
    99 size_t getPortSize() const;
    100
    101 const PortDescriptor& getDescriptor(size_t index) const;
    102
    103 size_t getDescriptorIndex(const char* identifier) const;
    104
    105 const PortDescriptor& getDescriptor(const char* identifier) const;
    106
    107 size_t getPortIndex(const char* identifier) const;
    108
    109 bool isValid(size_t portIndex) const;
    110
    111 bool isValid(const char* identifier) const;
    112
    113 void addDescriptor(const PortDescriptor& descriptor);
    114
    115protected:
    118 dw::core::VectorFixed<PortDescriptor, MAX_PORT_DESCRIPTOR_PER_COLLECTION> m_descriptors;
    119};
    120
    121namespace detail
    122{
    123
    124template <
    125 typename NodeT, PortDirection Direction, size_t Index,
    126 typename std::enable_if_t<Index == dw::core::tuple_size<decltype(describePorts<NodeT, Direction>())>::value, void>* = nullptr>
    127// coverity[autosar_cpp14_a2_10_5_violation] FP: nvbugs/3907242
    128void addDescriptors(PortCollectionDescriptor& d)
    129{
    130 static_cast<void>(d);
    131 return;
    132}
    133
    134template <
    135 typename NodeT, PortDirection Direction, size_t Index,
    136 typename std::enable_if_t<Index<dw::core::tuple_size<decltype(describePorts<NodeT, Direction>())>::value, void>* = nullptr>
    137 // coverity[autosar_cpp14_a2_10_5_violation] FP: nvbugs/3907242
    138 void addDescriptors(PortCollectionDescriptor& d)
    139{
    140 // coverity[autosar_cpp14_a8_5_2_violation] FP: nvbugs/3904083
    141 constexpr auto t = dw::core::get<Index>(describePorts<NodeT, Direction>());
    142 d.addDescriptor(PortDescriptor(
    143 Direction,
    144 t.name.data(),
    145 t.typeName.data(),
    146 t.arraySize,
    147 PortBinding::REQUIRED == t.binding,
    148 t.comment.data()));
    149 addDescriptors<NodeT, Direction, Index + 1>(d);
    150}
    151
    152} // namespace detail
    153
    154template <
    155 typename NodeT, PortDirection Direction,
    156 typename std::enable_if_t<Direction == PortDirection::INPUT, void>* = nullptr>
    157// coverity[autosar_cpp14_a2_10_4_violation] FP: nvbugs/4040101
    158// coverity[autosar_cpp14_a2_10_5_violation] FP: nvbugs/3907242
    160{
    161 PortCollectionDescriptor d{Direction};
    162 detail::addDescriptors<NodeT, Direction, 0>(d);
    163 return d;
    164}
    165
    166template <
    167 typename NodeT, PortDirection Direction,
    168 typename std::enable_if_t<Direction == PortDirection::OUTPUT, void>* = nullptr>
    169// coverity[autosar_cpp14_a2_10_4_violation] FP: nvbugs/4040101
    170// coverity[autosar_cpp14_a2_10_5_violation] FP: nvbugs/3907242
    171static PortCollectionDescriptor createPortCollectionDescriptor()
    172{
    173 PortCollectionDescriptor d{Direction, portSize<NodeT, PortDirection::INPUT>()};
    174 detail::addDescriptors<NodeT, Direction, 0>(d);
    175 return d;
    176}
    177
    178} // namespace framework
    179} // namespace dw
    180
    181#endif // DW_FRAMEWORK_PORTCOLLECTIONDESCRIPTOR_HPP_
    bool isValid(const char *identifier) const
    dw::core::VectorFixed< PortDescriptor, MAX_PORT_DESCRIPTOR_PER_COLLECTION > m_descriptors
    const PortDescriptor & getDescriptor(const char *identifier) const
    PortCollectionDescriptor(PortDirection direction, size_t portOffset=0U)
    const PortDescriptor & getDescriptor(size_t index) const
    size_t getDescriptorIndex(const char *identifier) const
    bool isValid(size_t portIndex) const
    size_t getPortIndex(const char *identifier) const
    void addDescriptor(const PortDescriptor &descriptor)
    PortDescriptor(PortDirection direction, dw::core::StringView name, dw::core::StringView typeName, size_t arraySize, bool bindingRequired, dw::core::StringView comment)
    PortDirection getDirection() const
    const dw::core::StringView & getName() const
    const dw::core::StringView & getTypeName() const
    const dw::core::StringView & getComment() const
    constexpr size_t portIndex(StringView identifier)
    static PortCollectionDescriptor createPortCollectionDescriptor()
    static constexpr const size_t MAX_PORT_DESCRIPTOR_PER_COLLECTION
    Definition: Buffer.hpp:41
    人人超碰97caoporen国产