μHAL (v2.8.17)
Part of the IPbus software repository
Loading...
Searching...
No Matches
ValMem.hpp
Go to the documentation of this file.
1/*
2---------------------------------------------------------------------------
3
4 This file is part of uHAL.
5
6 uHAL is a hardware access library and programming framework
7 originally developed for upgrades of the Level-1 trigger of the CMS
8 experiment at CERN.
9
10 uHAL is free software: you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation, either version 3 of the License, or
13 (at your option) any later version.
14
15 uHAL is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with uHAL. If not, see <http://www.gnu.org/licenses/>.
22
23
24 Andrew Rose, Imperial College, London
25 email: awr01 <AT> imperial.ac.uk
26
27 Marc Magrans de Abril, CERN
28 email: marc.magrans.de.abril <AT> cern.ch
29
30---------------------------------------------------------------------------
31*/
32
40#ifndef _uhal_ValMem_hpp_
41#define _uhal_ValMem_hpp_
42
43
44#include <cstddef> // for size_t
45#include <deque>
46#include <memory>
47#include <stdint.h> // for uint32_t, uint8_t
48#include <vector>
49
51#include "uhal/definitions.hpp"
52
53
54
55namespace uhal
56{
57 namespace exception
58 {
60 UHAL_DEFINE_EXCEPTION_CLASS ( NonValidatedMemory , "Exception class to handle the case of attempted access on unvalidated memory." )
62 UHAL_DEFINE_EXCEPTION_CLASS ( ValMemImutabilityViolation , "Exception class to handle the case of attempted modification of validated memory." )
63 }
64
65 // Forward declare ClientInterface so it can be our friend
66 class ClientInterface;
67
68
69 // Forward declaration so we can define friends
70 class ValHeader;
71 // Forward declaration so we can define friends
72 template< typename T > class ValWord;
73 // Forward declaration so we can define friends
74 template< typename T > class ValVector;
75
76
79 {
80 public:
82 bool valid;
84 std::deque<uint32_t> IPbusHeaders;
85
86 protected:
88 friend class ValHeader;
94 _ValHeader_ ( const bool& aValid );
95 };
96
97
98
100 template< typename T >
101 struct _ValWord_ : public _ValHeader_
102 {
103 public:
107 uint32_t mask;
108
109 protected:
111 friend class ValWord<T>;
119 _ValWord_ ( const T& aValue , const bool& aValid , const uint32_t aMask );
120 };
121
122
124 template< typename T >
125 struct _ValVector_ : public _ValHeader_
126 {
127 public:
129 std::vector<T> value;
130
131 protected:
133 friend class ValVector<T>;
140 _ValVector_ ( const std::vector<T>& aValue , const bool& aValid );
141 };
142
143
144
147 {
149 friend class ClientInterface;
150
151 public:
153 ValHeader();
154
159 template< typename T >
160 ValHeader ( const ValWord<T>& aValWord );
161
166 template< typename T >
167 ValHeader ( const ValVector<T>& aValVector );
168
173 bool valid();
178 void valid ( bool aValid );
179
180 protected:
182 std::shared_ptr< _ValHeader_ > mMembers;
183 };
184
185
187 template< typename T >
189 {
190
192 friend class ClientInterface;
193
195 friend class ValHeader;
196
197 public:
203 ValWord ( const T& aValue , const uint32_t& aMask = defs::NOMASK );
204
209 ValWord ( const ValWord<T>& aVal );
210
212 ValWord();
213
218 bool valid();
219
224 void valid ( bool aValid );
225
231 ValWord& operator = ( const T& aValue );
232
237 operator T();
238
243 T value() const;
244
249 void value ( const T& aValue );
250
255 const uint32_t& mask() const;
256
261 void mask ( const uint32_t& aMask );
262
263 private:
265 std::shared_ptr< _ValWord_<T> > mMembers;
266
267 };
268
269
271 template< typename T >
273 {
275 friend class ClientInterface;
276
278 friend class ValHeader;
279
280 public:
282 typedef typename std::vector< T >::iterator iterator;
284 typedef typename std::vector< T >::const_iterator const_iterator;
286 typedef typename std::vector< T >::reverse_iterator reverse_iterator;
288 typedef typename std::vector< T >::const_reverse_iterator const_reverse_iterator;
289
290 public:
295 ValVector ( const std::vector<T>& aValues );
296
301 ValVector ( const ValVector& aValues );
302
307 ValVector ( const uint32_t& aSize );
308
310 ValVector();
311
316 bool valid();
317
322 void valid ( bool aValid );
323
329 template <class InputIterator> void assign ( InputIterator aBegin , InputIterator aEnd );
330
335 void push_back ( const T& aValue );
336
342 const T& operator[] ( std::size_t aIndex ) const;
343
349 const T& at ( std::size_t aIndex ) const;
350
355 std::size_t size() const;
356
361 const T* data() const;
362
364 void clear();
365
370 const_iterator begin() const;
371
376 const_iterator end() const;
377
382 const_reverse_iterator rbegin() const;
383
388 const_reverse_iterator rend() const;
389
394 std::vector<T> value() const;
395
400 void value ( const std::vector<T>& aValue );
401
402 private:
404 std::shared_ptr< _ValVector_<T> > mMembers;
405
406 };
407
408}
409
411
412#endif
413
Wrapper to generate a new Python exception type.
Definition: pybind11.h:2517
\rst Holds a reference to a Python object (no reference counting)
Definition: pytypes.h:194
An abstract base class for defining the interface to the various IPbus clients as well as providing t...
A class which wraps a single word of data and marks whether or not it is valid.
Definition: ValMem.hpp:147
std::shared_ptr< _ValHeader_ > mMembers
A shared pointer to a ValWord struct, so that every copy of this ValWord points to the same underlyin...
Definition: ValMem.hpp:182
A class which wraps a block of data and marks whether or not it is valid.
Definition: ValMem.hpp:273
std::vector< T >::reverse_iterator reverse_iterator
typedef iterator to be that of the underlying storage type
Definition: ValMem.hpp:286
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...
Definition: ValMem.hpp:404
std::vector< T >::const_reverse_iterator const_reverse_iterator
typedef iterator to be that of the underlying storage type
Definition: ValMem.hpp:288
std::vector< T >::iterator iterator
typedef iterator to be that of the underlying storage type
Definition: ValMem.hpp:282
std::vector< T >::const_iterator const_iterator
typedef iterator to be that of the underlying storage type
Definition: ValMem.hpp:284
A class which wraps a single word of data and marks whether or not it is valid.
Definition: ValMem.hpp:189
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...
Definition: ValMem.hpp:265
#define UHAL_DEFINE_EXCEPTION_CLASS(ClassName, ClassDescription)
Definition: exception.hpp:59
arr data(const arr &a, Ix... index)
A helper struct wrapping an IPbus header and a valid flag.
Definition: ValMem.hpp:79
std::deque< uint32_t > IPbusHeaders
The IPbus header associated with the transaction that returned this data.
Definition: ValMem.hpp:84
bool valid
A flag for marking whether the data is actually valid.
Definition: ValMem.hpp:82
A Template helper struct wrapping a block of IPbus header, a register for storing a block of data and...
Definition: ValMem.hpp:126
std::vector< T > value
A block of memory for storing data.
Definition: ValMem.hpp:129
A Template helper struct wrapping an IPbus header, a register for storing a single word of data,...
Definition: ValMem.hpp:102
uint32_t mask
A mask for modifying returned values.
Definition: ValMem.hpp:107
T value
A register for storing data.
Definition: ValMem.hpp:105