49 template<
typename T >
60 template<
typename T >
90 template<
typename T >
92 mMembers ( new
_ValWord_<T> ( aValue , false , aMask ) )
97 template<
typename T >
99 mMembers ( aVal.mMembers )
104 template<
typename T >
106 mMembers ( new
_ValWord_<T> ( T() , false , 0xFFFFFFFF ) )
111 template<
typename T >
114 return mMembers->valid;
118 template<
typename T >
121 mMembers->valid = aValid;
125 template<
typename T >
128 mMembers->
value = aValue ;
133 template<
typename T >
140 template<
typename T >
143 if ( mMembers->valid )
149 exception::NonValidatedMemory lExc;
150 log ( lExc ,
"Access attempted on non-validated memory" );
156 template<
typename T >
159 if ( !mMembers->valid )
161 mMembers->value = aValue;
165 exception::ValMemImutabilityViolation lExc;
166 log ( lExc ,
"Attempted to modify validated memory" );
172 template<
typename T >
175 return mMembers->mask;
179 template<
typename T >
182 mMembers->mask = aMask ;
188 template<
typename T >
190 mMembers ( new
_ValVector_<T> ( aValues , false ) )
195 template<
typename T >
197 mMembers ( aValues.mMembers )
202 template<
typename T >
204 mMembers ( new
_ValVector_<T> (
std::vector<T> ( aSize , T() ) , false ) )
209 template<
typename T >
216 template<
typename T >
219 return mMembers->valid;
223 template<
typename T >
226 mMembers->valid = aValid;
231 template<
typename T >
234 if ( !mMembers->valid )
236 mMembers->value.push_back ( aValue );
240 exception::ValMemImutabilityViolation lExc;
241 log ( lExc ,
"Attempted to modify validated memory" );
247 template<
typename T >
250 if ( mMembers->valid )
252 return ( mMembers->value ) [aIndex];
256 exception::NonValidatedMemory lExc;
257 log ( lExc ,
"Access attempted on non-validated memory" );
263 template<
typename T >
266 if ( mMembers->valid )
268 return mMembers->value.at ( aIndex );
272 exception::NonValidatedMemory lExc;
273 log ( lExc ,
"Access attempted on non-validated memory" );
279 template<
typename T >
282 return mMembers->value.size();
286 template<
typename T >
289 if ( mMembers->valid )
291 return mMembers->value.data();
295 exception::NonValidatedMemory lExc;
296 log ( lExc ,
"Access attempted on non-validated memory" );
302 template<
typename T >
305 mMembers->valid =
false;
306 mMembers->value.clear();
310 template<
typename T >
313 if ( mMembers->valid )
315 return mMembers->value.begin();
319 exception::NonValidatedMemory lExc;
320 log ( lExc ,
"Access attempted on non-validated memory" );
326 template<
typename T >
329 if ( mMembers->valid )
331 return mMembers->value.end();
335 exception::NonValidatedMemory lExc;
336 log ( lExc ,
"Access attempted on non-validated memory" );
342 template<
typename T >
345 if ( mMembers->valid )
347 return mMembers->value.rbegin();
351 exception::NonValidatedMemory lExc;
352 log ( lExc ,
"Access attempted on non-validated memory" );
358 template<
typename T >
361 if ( mMembers->valid )
363 return mMembers->value.rend();
367 exception::NonValidatedMemory lExc;
368 log ( lExc ,
"Access attempted on non-validated memory" );
374 template<
typename T >
377 if ( mMembers->valid )
379 return mMembers->value;
383 exception::NonValidatedMemory lExc;
384 log ( lExc ,
"Access attempted on non-validated memory" );
389 template<
typename T >
392 if ( !mMembers->valid )
394 mMembers->value = aValue;
398 exception::ValMemImutabilityViolation lExc;
399 log ( lExc ,
"Attempted to modify validated memory" );
405 template class ValWord< uint8_t >;
408 template class ValVector< uint8_t >;
A class which wraps a block of data and marks whether or not it is valid.
const_reverse_iterator rbegin() const
If the memory has previously been marked as valid, return a const reverse iterator to the reverse beg...
void clear()
Clear the underlying memory and set Validity to false.
const_iterator begin() const
If the memory has previously been marked as valid, return a const iterator to the beginning of the un...
const T * data() const
Return the address of the underlying memory.
void push_back(const T &aValue)
If the memory has not previously been marked as valid, add an entry to the end of it.
const_reverse_iterator rend() const
If the memory has previously been marked as valid, return a const reverse iterator to the reverse end...
bool valid()
Return whether the Validated memory is marked as valid.
const T & operator[](std::size_t aIndex) const
If the memory has previously been marked as valid, give random access into memory.
const T & at(std::size_t aIndex) const
If the memory has previously been marked as valid, give random access into memory.
std::vector< T >::const_reverse_iterator const_reverse_iterator
typedef iterator to be that of the underlying storage type
const_iterator end() const
If the memory has previously been marked as valid, return a const iterator to the end (one past last ...
std::vector< T >::const_iterator const_iterator
typedef iterator to be that of the underlying storage type
std::size_t size() const
Return the size of the underlying memory.
std::vector< T > value() const
Return the value of the validated memory with check on validity.
ValVector()
Default constructor.
A class which wraps a single word of data and marks whether or not it is valid.
const uint32_t & mask() const
Return the mask used by this validated memory.
T value() const
Return the value of the validated memory with check on validity.
bool valid()
Return whether the Validated memory is marked as valid.
ValWord()
Default constructor.
ValWord & operator=(const T &aValue)
Assignment operator - no check on whether the data has previously been marked as valid.
unsigned int TrailingRightBits(uint32_t aValue)
Helper function to calculate the number of zero-bits at the righthand end of a 32-bit number.
void log(FatalLevel &aFatal, const T0 &aArg0)
Function to add a log entry at Fatal level.
A Template helper struct wrapping a block of IPbus header, a register for storing a block of data and...
_ValVector_(const std::vector< T > &aValue, const bool &aValid)
Constructor Private, since this struct should only be used by the ValVector.
A Template helper struct wrapping an IPbus header, a register for storing a single word of data,...
_ValWord_(const T &aValue, const bool &aValid, const uint32_t aMask)
Constructor Private, since this struct should only be used by the ValWord.