The Gaudi Framework  v36r2 (27905625)
Gaudi::Functional::details::zip Namespace Reference

Functions

template<typename OS , typename Arg >
void printSizes (OS &out, Arg &&arg)
 Print the parameter. More...
 
template<typename OS , typename Arg , typename... Args>
void printSizes (OS &out, Arg &&arg, Args &&... args)
 Print the parameters. More...
 
template<typename A >
bool check_sizes (const A &) noexcept
 Resolve case there is only one container in the range. More...
 
template<typename A , typename B >
bool check_sizes (const A &a, const B &b) noexcept
 Compare sizes of two containers. More...
 
template<typename A , typename B , typename... C>
bool check_sizes (const A &a, const B &b, const C &... c) noexcept
 Compare sizes of 3 or more containers. More...
 
template<typename... Args>
decltype(auto) verifySizes (Args &... args)
 Verify the data container sizes have the same sizes. More...
 
template<typename... Args>
decltype(auto) range (Args &&... args)
 Zips multiple containers together to form a single range. More...
 
template<typename... Args>
decltype(auto) const_range (Args &&... args)
 Zips multiple containers together to form a single const range. More...
 

Function Documentation

◆ check_sizes() [1/3]

template<typename A >
bool Gaudi::Functional::details::zip::check_sizes ( const A &  )
inlinenoexcept

Resolve case there is only one container in the range.

Definition at line 72 of file FunctionalDetails.h.

72  {
73  return true;
74  }

◆ check_sizes() [2/3]

template<typename A , typename B >
bool Gaudi::Functional::details::zip::check_sizes ( const A &  a,
const B &  b 
)
inlinenoexcept

Compare sizes of two containers.

Definition at line 78 of file FunctionalDetails.h.

78  {
79  return a.size() == b.size();
80  }

◆ check_sizes() [3/3]

template<typename A , typename B , typename... C>
bool Gaudi::Functional::details::zip::check_sizes ( const A &  a,
const B &  b,
const C &...  c 
)
inlinenoexcept

Compare sizes of 3 or more containers.

Definition at line 84 of file FunctionalDetails.h.

84  {
85  return ( check_sizes( a, b ) && check_sizes( b, c... ) );
86  }

◆ const_range()

template<typename... Args>
decltype( auto ) Gaudi::Functional::details::zip::const_range ( Args &&...  args)
inline

Zips multiple containers together to form a single const range.

Definition at line 110 of file FunctionalDetails.h.

110  {
111 #ifndef NDEBUG
112  verifySizes( args... );
113 #endif
114  return ranges::views::const_( ranges::views::zip( std::forward<Args>( args )... ) );
115  }

◆ printSizes() [1/2]

template<typename OS , typename Arg >
void Gaudi::Functional::details::zip::printSizes ( OS &  out,
Arg &&  arg 
)

Print the parameter.

Definition at line 58 of file FunctionalDetails.h.

58  {
59  out << "SizeOf'" << System::typeinfoName( typeid( Arg ) ) << "'=" << std::forward<Arg>( arg ).size();
60  }

◆ printSizes() [2/2]

template<typename OS , typename Arg , typename... Args>
void Gaudi::Functional::details::zip::printSizes ( OS &  out,
Arg &&  arg,
Args &&...  args 
)

Print the parameters.

Definition at line 64 of file FunctionalDetails.h.

64  {
65  printSizes( out, arg );
66  out << ", ";
67  printSizes( out, args... );
68  }

◆ range()

template<typename... Args>
decltype( auto ) Gaudi::Functional::details::zip::range ( Args &&...  args)
inline

Zips multiple containers together to form a single range.

Definition at line 101 of file FunctionalDetails.h.

101  {
102 #ifndef NDEBUG
103  verifySizes( args... );
104 #endif
105  return ranges::views::zip( std::forward<Args>( args )... );
106  }

◆ verifySizes()

template<typename... Args>
decltype( auto ) Gaudi::Functional::details::zip::verifySizes ( Args &...  args)
inline

Verify the data container sizes have the same sizes.

Definition at line 90 of file FunctionalDetails.h.

90  {
91  if ( UNLIKELY( !check_sizes( args... ) ) ) {
92  std::ostringstream mess;
93  mess << "Zipped containers have different sizes : ";
94  printSizes( mess, args... );
95  throw GaudiException( mess.str(), "Gaudi::Functional::details::zip::verifySizes", StatusCode::FAILURE );
96  }
97  }
std::string::size
T size(T... args)
GaudiException
Definition: GaudiException.h:31
gaudirun.c
c
Definition: gaudirun.py:509
System::typeinfoName
GAUDI_API const std::string typeinfoName(const std::type_info &)
Get platform independent information about the class type.
Definition: System.cpp:308
Gaudi::Functional::details::zip::check_sizes
bool check_sizes(const A &a, const B &b, const C &... c) noexcept
Compare sizes of 3 or more containers.
Definition: FunctionalDetails.h:84
std::ostringstream
STL class.
Gaudi::Functional::details::zip::verifySizes
decltype(auto) verifySizes(Args &... args)
Verify the data container sizes have the same sizes.
Definition: FunctionalDetails.h:90
gaudirun.args
args
Definition: gaudirun.py:319
std::ostringstream::str
T str(T... args)
Gaudi::Functional::details::zip::printSizes
void printSizes(OS &out, Arg &&arg, Args &&... args)
Print the parameters.
Definition: FunctionalDetails.h:64
StatusCode::FAILURE
constexpr static const auto FAILURE
Definition: StatusCode.h:101
UNLIKELY
#define UNLIKELY(x)
Definition: Kernel.h:106
PrepareBase.out
out
Definition: PrepareBase.py:20