31#ifndef DW_FRAMEWORK_PASSCOLLECTIONDESCRIPTOR_HPP_
32#define DW_FRAMEWORK_PASSCOLLECTIONDESCRIPTOR_HPP_
36#include <dwshared/dwfoundation/dw/core/container/VectorFixed.hpp>
51 dw::core::StringView
const&
getName() const noexcept;
70 dw::core::StringView m_name;
72 dwProcessorType m_processorType;
74 bool m_hasExplicitDependencies;
76 dw::core::VectorFixed<
dw::core::StringView> m_dependencies;
97 size_t getIndex(dw::core::StringView
const& identifier)
const;
107 bool isValid(
size_t const index)
const noexcept;
110 bool isValid(dw::core::StringView
const& identifier)
const noexcept;
121 dw::core::VectorFixed<PassDescriptor> m_descriptors;
129 typename NodeT,
size_t Index,
130 typename std::enable_if_t<!hasPassDependencies<NodeT, Index>(),
void>* =
nullptr>
134 static_cast<void>(descriptor);
139 typename NodeT,
size_t Index,
140 typename std::enable_if_t<hasPassDependencies<NodeT, Index>(),
void>* =
nullptr>
144 for (
size_t i{0U}; i < passDependencies<NodeT, Index>().size(); ++i)
146 descriptor.addDependency(passDependencies<NodeT, Index>()[i]);
152 typename NodeT,
size_t Index,
153 typename std::enable_if_t<Index == passSize<NodeT>(),
void>* =
nullptr>
155void addPassDescriptor(PassCollectionDescriptor& collection)
157 static_cast<void>(collection);
162 typename NodeT,
size_t Index,
163 typename std::enable_if_t<Index<passSize<NodeT>(),
void>* =
nullptr>
165 void addPassDescriptor(PassCollectionDescriptor& collection)
167 PassDescriptor descriptor{passName<NodeT, Index>(), passProcessorType<NodeT, Index>(), hasPassDependencies<NodeT, Index>(), passDependencies<NodeT, Index>().size()};
168 addPassDescriptorDependencies<NodeT, Index>(descriptor);
169 collection.addDescriptor(descriptor);
171 addPassDescriptor<NodeT, Index + 1>(collection);
177template <
typename NodeT>
183 detail::addPassDescriptor<NodeT, 0>(collection);
A collection of pass descriptors.
const PassDescriptor & getDescriptor(dw::core::StringView const &identifier) const
bool isValid(size_t const index) const noexcept
Check if the passed index is valid, which mean is within [0, size()).
PassCollectionDescriptor(size_t const capacity)
Constructor.
const PassDescriptor & getDescriptor(size_t const index) const
Get the pass descriptor for the passed index.
size_t getIndex(dw::core::StringView const &identifier) const
bool isValid(dw::core::StringView const &identifier) const noexcept
Check if the passed pass name matches a pass descriptor in the collection.
void addDescriptor(const PassDescriptor &descriptor)
size_t getSize() const
Get the number of pass descriptors.
The description of a pass.
size_t getNumberOfDependencies() const
Get number of dependencies.
dwProcessorType getProcessorType() const noexcept
Get the processor type running on.
dw::core::StringView const & getName() const noexcept
Get the pass name.
bool hasExplicitDependencies() const noexcept
Check if the pass specifies explicit dependencies.
dw::core::StringView const & getDependency(size_t const index) const
Get the dependent on pass name by index.
PassDescriptor(dw::core::StringView const &name, dwProcessorType const processorType, const bool hasExplicitDependencies, size_t const dependencies)
Constructor.
void addDependency(dw::core::StringView const &dependency)
Add another pass name as a dependency.
static PassCollectionDescriptor createPassCollectionDescriptor()
Create a pass collection descriptor for a give node.