Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Public Member Functions | Private Member Functions | Private Attributes | List of all members
columnar::ColumnarToolWrapperData Class Reference

a class that holds the columnar data for a single call to ColumnarToolWrapper More...

#include <ColumnarToolWrapper.h>

Collaboration diagram for columnar::ColumnarToolWrapperData:

Public Member Functions

 ColumnarToolWrapperData (const ColumnarToolWrapper *val_wrapper) noexcept
 constructor: wrap the given tool More...
 
template<typename CT >
void setColumn (const std::string &name, std::size_t size, CT *dataPtr)
 set the data for the given column picking up the type via a template More...
 
void setColumnVoid (const std::string &name, std::size_t size, const void *dataPtr, const std::type_info &type, bool isConst)
 set the data for the given column with the user passing in the type More...
 
void setColumnNumpy (const std::string &name, std::size_t size, const void *dataPtr, int type, unsigned bits, bool isConst)
 set the data for the given column with the user passing in the type information from numpy More...
 
void call ()
 call the tool More...
 
void checkColumnsValid ()
 check that all columns are valid More...
 
template<typename CT >
std::pair< std::size_t, CT * > getColumn (const std::string &name)
 get the data for the given column picking up the type via a template More...
 
std::pair< std::size_t, const void * > getColumnVoid (const std::string &name, const std::type_info *type, bool isConst)
 get the data for the given column in a type-erased manner More...
 
void ** data () noexcept
 the data vector we have assembled More...
 

Private Member Functions

void checkColumn (const std::pair< const std::string, ColumnarToolWrapper::MyColumnInfo > &column)
 

Private Attributes

const ColumnarToolWrapperm_wrapper = nullptr
 
std::vector< void * > m_data
 
std::vector< std::size_t > m_dataSize
 
std::vector< bool > m_columnIsChecked
 
std::vector< bool > m_columnIsFilled
 

Detailed Description

a class that holds the columnar data for a single call to ColumnarToolWrapper

The idea is that this is a fairly lightweight class that can be instantiated once per call and contain all thread-local information (i.e. the pointers to the user data). For every use of this tool the caller should create a new instance of this class.

The basic usage is something like this:

ColumnarToolWrapper wrapper {...};
std::span<const float> input1 = ...;
data.setColumn ("input1", input1.size(), input1.data());
std::span<float> output1 = ...;
data.setColumn ("output1", output1.size(), output1.data());
data.call ();

Definition at line 135 of file ColumnarToolWrapper.h.

Constructor & Destructor Documentation

◆ ColumnarToolWrapperData()

columnar::ColumnarToolWrapperData::ColumnarToolWrapperData ( const ColumnarToolWrapper val_wrapper)
explicitnoexcept

constructor: wrap the given tool

Public Members

Definition at line 111 of file ColumnarToolWrapper.cxx.

113  : m_wrapper (val_wrapper),
114  m_data (m_wrapper->m_numColumns, nullptr),
118  {}

Member Function Documentation

◆ call()

void columnar::ColumnarToolWrapperData::call ( )

call the tool

Definition at line 197 of file ColumnarToolWrapper.cxx.

199  {
201  m_wrapper->m_tool->callVoid (m_data.data());
202  }

◆ checkColumn()

void columnar::ColumnarToolWrapperData::checkColumn ( const std::pair< const std::string, ColumnarToolWrapper::MyColumnInfo > &  column)
private

Definition at line 206 of file ColumnarToolWrapper.cxx.

208  {
209  if (m_columnIsChecked.at(column.second.index))
210  return;
211  if (!m_columnIsFilled.at(column.second.index))
212  {
213  if (!column.second.isOptional)
214  throw std::runtime_error ("column not filled: " + column.first);
215  m_columnIsChecked[column.second.index] = true;
216  return;
217  }
218 
219  ColumnarOffsetType expectedSize = 1u;
220  if (column.second.offsets)
221  {
222  checkColumn (*column.second.offsets);
223  if (m_data[column.second.offsets->second.index] == nullptr)
224  throw std::runtime_error ("offset column not filled: " + column.second.offsets->first);
225  const auto offsetIndex = column.second.offsets->second.index;
226  auto *offsetsPtr = static_cast<const ColumnarOffsetType*>(m_data[offsetIndex]);
227  expectedSize = offsetsPtr[m_dataSize[offsetIndex]-1];
228  }
229  expectedSize *= column.second.fixedDimensions;
230 
231  if (column.second.isOffset)
232  expectedSize += 1u;
233 
234  if (m_dataSize[column.second.index] != expectedSize)
235  throw std::runtime_error ("column size doesn't match expected size: " + column.first + ", found " + std::to_string (m_dataSize[column.second.index]) + " vs " + std::to_string (expectedSize));
236 
237  if (column.second.isOffset)
238  {
239  auto *dataPtr = static_cast<const ColumnarOffsetType*>(m_data[column.second.index]);
240  if (dataPtr[0] != 0)
241  throw std::runtime_error ("offset column doesn't start with 0: " + column.first);
242  }
243 
244  m_columnIsChecked[column.second.index] = true;
245  }

◆ checkColumnsValid()

void columnar::ColumnarToolWrapperData::checkColumnsValid ( )

check that all columns are valid

Testing/Validation Members

These members shouldn't be needed for regular users, but it can help in debugging issues with the tool or the wrapper.

Definition at line 188 of file ColumnarToolWrapper.cxx.

190  {
191  for (auto& column : m_wrapper->m_columns)
193  }

◆ data()

void** columnar::ColumnarToolWrapperData::data ( )
inlinenoexcept

the data vector we have assembled

Definition at line 201 of file ColumnarToolWrapper.h.

201  {
202  return m_data.data();}

◆ getColumn()

template<typename CT >
std::pair<std::size_t,CT*> columnar::ColumnarToolWrapperData::getColumn ( const std::string &  name)
inline

get the data for the given column picking up the type via a template

Definition at line 187 of file ColumnarToolWrapper.h.

188  {
189  auto [size, ptr] = getColumnVoid (name, &typeid (std::decay_t<CT>), std::is_const_v<CT>);
190  if constexpr (std::is_const_v<CT>)
191  return std::make_pair (size, static_cast<CT*>(ptr));
192  else
193  return std::make_pair (size, static_cast<CT*>(const_cast<void*>(ptr)));
194  }

◆ getColumnVoid()

std::pair< std::size_t, const void * > columnar::ColumnarToolWrapperData::getColumnVoid ( const std::string &  name,
const std::type_info *  type,
bool  isConst 
)

get the data for the given column in a type-erased manner

Definition at line 168 of file ColumnarToolWrapper.cxx.

170  {
171  auto column = m_wrapper->m_columns.find (name);
172  if (column == m_wrapper->m_columns.end())
173  throw std::runtime_error ("unknown column name: " + name);
174 
175  if (*type != *column->second.type)
176  throw std::runtime_error ("invalid type for column: " + name);
177  if (!isConst && column->second.isConst)
178  throw std::runtime_error ("retrieving non-const vector from a const column: " + name);
179  if (m_data[column->second.index] != nullptr)
180  return std::make_pair (m_dataSize[column->second.index],
181  m_data[column->second.index]);
182  else
183  return std::make_pair (0u, nullptr);
184  }

◆ setColumn()

template<typename CT >
void columnar::ColumnarToolWrapperData::setColumn ( const std::string &  name,
std::size_t  size,
CT dataPtr 
)
inline

set the data for the given column picking up the type via a template

Definition at line 149 of file ColumnarToolWrapper.h.

149  {
150  auto voidPtr = reinterpret_cast<const void*>(const_cast<const CT*>(dataPtr));
151  setColumnVoid (name, size, voidPtr, typeid (std::decay_t<CT>), std::is_const_v<CT>);
152  }

◆ setColumnNumpy()

void columnar::ColumnarToolWrapperData::setColumnNumpy ( const std::string &  name,
std::size_t  size,
const void *  dataPtr,
int  type,
unsigned  bits,
bool  isConst 
)

set the data for the given column with the user passing in the type information from numpy

Definition at line 145 of file ColumnarToolWrapper.cxx.

147  {
148  auto column = m_wrapper->m_columns.find (name);
149  if (column == m_wrapper->m_columns.end())
150  throw std::runtime_error ("unknown column name: " + name);
151 
152  if (type != column->second.numpyType || bits != column->second.numpyBits)
153  throw std::runtime_error ("invalid type for column: " + name + " (expected " + std::to_string (column->second.numpyType) + "/" + std::to_string (column->second.numpyBits) + " but got " + std::to_string (type) + "/" + std::to_string (bits) + ")");
154  if (isConst && !column->second.isConst)
155  throw std::runtime_error ("assigning const vector to a non-const column: " + name);
156  if (column->second.index == 0)
157  throw std::runtime_error ("column has no index assigned: " + name);
158  if (m_columnIsFilled[column->second.index])
159  throw std::runtime_error ("column filled multiple times: " + name);
160  m_columnIsFilled[column->second.index] = true;
161  auto *castDataPtr ATLAS_THREAD_SAFE = const_cast<void*>(dataPtr);
162  m_data[column->second.index] = castDataPtr;
163  m_dataSize[column->second.index] = size;
164  }

◆ setColumnVoid()

void columnar::ColumnarToolWrapperData::setColumnVoid ( const std::string &  name,
std::size_t  size,
const void *  dataPtr,
const std::type_info &  type,
bool  isConst 
)

set the data for the given column with the user passing in the type

Definition at line 122 of file ColumnarToolWrapper.cxx.

124  {
125  auto column = m_wrapper->m_columns.find (name);
126  if (column == m_wrapper->m_columns.end())
127  throw std::runtime_error ("unknown column name: " + name);
128 
129  if (type != *column->second.type)
130  throw std::runtime_error ("invalid type for column: " + name);
131  if (isConst && !column->second.isConst)
132  throw std::runtime_error ("assigning const vector to a non-const column: " + name);
133  if (column->second.index == 0)
134  throw std::runtime_error ("column has no index assigned: " + name);
135  if (m_columnIsFilled[column->second.index])
136  throw std::runtime_error ("column filled multiple times: " + name);
137  m_columnIsFilled[column->second.index] = true;
138  auto *castDataPtr ATLAS_THREAD_SAFE = const_cast<void*>(dataPtr);
139  m_data[column->second.index] = castDataPtr;
140  m_dataSize[column->second.index] = size;
141  }

Member Data Documentation

◆ m_columnIsChecked

std::vector<bool> columnar::ColumnarToolWrapperData::m_columnIsChecked
private

Definition at line 215 of file ColumnarToolWrapper.h.

◆ m_columnIsFilled

std::vector<bool> columnar::ColumnarToolWrapperData::m_columnIsFilled
private

Definition at line 216 of file ColumnarToolWrapper.h.

◆ m_data

std::vector<void*> columnar::ColumnarToolWrapperData::m_data
private

Definition at line 213 of file ColumnarToolWrapper.h.

◆ m_dataSize

std::vector<std::size_t> columnar::ColumnarToolWrapperData::m_dataSize
private

Definition at line 214 of file ColumnarToolWrapper.h.

◆ m_wrapper

const ColumnarToolWrapper* columnar::ColumnarToolWrapperData::m_wrapper = nullptr
private

Private Members

Definition at line 211 of file ColumnarToolWrapper.h.


The documentation for this class was generated from the following files:
columnar::ColumnarToolWrapperData::m_wrapper
const ColumnarToolWrapper * m_wrapper
Definition: ColumnarToolWrapper.h:211
columnar::IColumnarTool::callVoid
virtual void callVoid(void **data) const =0
run the tool on the data vector
columnar::ColumnarToolWrapperData::getColumnVoid
std::pair< std::size_t, const void * > getColumnVoid(const std::string &name, const std::type_info *type, bool isConst)
get the data for the given column in a type-erased manner
Definition: ColumnarToolWrapper.cxx:169
columnar::ColumnarToolWrapperData::checkColumnsValid
void checkColumnsValid()
check that all columns are valid
Definition: ColumnarToolWrapper.cxx:189
DeMoUpdate.column
dictionary column
Definition: DeMoUpdate.py:1110
columnar::ColumnarToolWrapperData::m_data
std::vector< void * > m_data
Definition: ColumnarToolWrapper.h:213
dbg::ptr
void * ptr(T *p)
Definition: SGImplSvc.cxx:74
Trk::u
@ u
Enums for curvilinear frames.
Definition: ParamDefs.h:77
python.CaloAddPedShiftConfig.type
type
Definition: CaloAddPedShiftConfig.py:42
columnar::ColumnarToolWrapperData::checkColumn
void checkColumn(const std::pair< const std::string, ColumnarToolWrapper::MyColumnInfo > &column)
Definition: ColumnarToolWrapper.cxx:207
skel.input1
tuple input1
Definition: skel.GENtoEVGEN.py:771
columnar::ColumnarToolWrapperData::setColumnVoid
void setColumnVoid(const std::string &name, std::size_t size, const void *dataPtr, const std::type_info &type, bool isConst)
set the data for the given column with the user passing in the type
Definition: ColumnarToolWrapper.cxx:123
columnar::ColumnarToolWrapperData::m_dataSize
std::vector< std::size_t > m_dataSize
Definition: ColumnarToolWrapper.h:214
columnar::ColumnarToolWrapperData::m_columnIsChecked
std::vector< bool > m_columnIsChecked
Definition: ColumnarToolWrapper.h:215
columnar::size
std::size_t size() const noexcept
Definition: ObjectRange.h:132
columnar::ColumnarToolWrapperData::m_columnIsFilled
std::vector< bool > m_columnIsFilled
Definition: ColumnarToolWrapper.h:216
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
ActsTrk::to_string
std::string to_string(const DetectorType &type)
Definition: GeometryDefs.h:34
columnar::ColumnarToolWrapper::m_tool
const IColumnarTool * m_tool
the wrapped tool
Definition: ColumnarToolWrapper.h:78
columnar::ColumnarToolWrapperData::ColumnarToolWrapperData
ColumnarToolWrapperData(const ColumnarToolWrapper *val_wrapper) noexcept
constructor: wrap the given tool
Definition: ColumnarToolWrapper.cxx:112
columnar::ColumnarToolWrapper::m_columns
std::unordered_map< std::string, MyColumnInfo > m_columns
Definition: ColumnarToolWrapper.h:105
columnar::CT
CT
Definition: ColumnAccessor.h:160
columnar::ColumnarToolWrapper::m_numColumns
unsigned m_numColumns
the number of columns that the tool expects (equal to the greatest column index + 1)
Definition: ColumnarToolWrapper.h:110
ATLAS_THREAD_SAFE
#define ATLAS_THREAD_SAFE
Definition: checker_macros.h:211
columnar::ColumnarOffsetType
std::size_t ColumnarOffsetType
the type used for the size and offsets in the columnar data
Definition: IColumnarTool.h:20
columnar::ColumnarToolWrapperData::data
void ** data() noexcept
the data vector we have assembled
Definition: ColumnarToolWrapper.h:201