40#ifndef _uhal_ValMem_hpp_
41#define _uhal_ValMem_hpp_
60 UHAL_DEFINE_EXCEPTION_CLASS ( NonValidatedMemory ,
"Exception class to handle the case of attempted access on unvalidated memory." )
66 class ClientInterface;
72 template< typename T > class ValWord;
74 template< typename T > class ValVector;
100 template<
typename T >
119 _ValWord_ (
const T& aValue ,
const bool& aValid ,
const uint32_t aMask );
124 template<
typename T >
140 _ValVector_ (
const std::vector<T>& aValue ,
const bool& aValid );
159 template<
typename T >
166 template<
typename T >
178 void valid (
bool aValid );
187 template<
typename T >
203 ValWord (
const T& aValue ,
const uint32_t& aMask = defs::NOMASK );
224 void valid (
bool aValid );
231 ValWord& operator = (
const T& aValue );
249 void value (
const T& aValue );
255 const uint32_t& mask()
const;
261 void mask (
const uint32_t& aMask );
271 template<
typename T >
282 typedef typename std::vector< T >::iterator
iterator;
295 ValVector (
const std::vector<T>& aValues );
322 void valid (
bool aValid );
329 template <
class InputIterator>
void assign ( InputIterator aBegin , InputIterator aEnd );
335 void push_back (
const T& aValue );
342 const T& operator[] ( std::size_t aIndex )
const;
349 const T& at ( std::size_t aIndex )
const;
355 std::size_t size()
const;
361 const T*
data()
const;
394 std::vector<T> value()
const;
400 void value (
const std::vector<T>& aValue );
Wrapper to generate a new Python exception type.
\rst Holds a reference to a Python object (no reference counting)
An abstract base class for defining the interface to the various IPbus clients as well as providing t...
A class which wraps a block of data and marks whether or not it is valid.
std::vector< T >::reverse_iterator reverse_iterator
typedef iterator to be that of the underlying storage type
std::shared_ptr< _ValVector_< T > > mMembers
A shared pointer to a ValVector struct, so that every copy of this ValVector points to the same under...
std::vector< T >::const_reverse_iterator const_reverse_iterator
typedef iterator to be that of the underlying storage type
std::vector< T >::iterator iterator
typedef iterator to be that of the underlying storage type
std::vector< T >::const_iterator const_iterator
typedef iterator to be that of the underlying storage type
A class which wraps a single word of data and marks whether or not it is valid.
std::shared_ptr< _ValWord_< T > > mMembers
A shared pointer to a ValWord struct, so that every copy of this ValWord points to the same underlyin...
#define UHAL_DEFINE_EXCEPTION_CLASS(ClassName, ClassDescription)
arr data(const arr &a, Ix... index)
A Template helper struct wrapping a block of IPbus header, a register for storing a block of data and...
std::vector< T > value
A block of memory for storing data.
A Template helper struct wrapping an IPbus header, a register for storing a single word of data,...
uint32_t mask
A mask for modifying returned values.
T value
A register for storing data.