μHAL (v2.8.17)
Part of the IPbus software repository
Loading...
Searching...
No Matches
ClientInterface.cpp
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
34
35
36#include <memory>
37#include <mutex>
38#include <sstream>
39
40#include "uhal/Buffers.hpp"
41#include "uhal/log/LogLevels.hpp" // for BaseLo...
42#include "uhal/log/log_inserters.integer.hpp" // for Integer
43#include "uhal/log/log.hpp"
45
46
47namespace uhal
48{
49
50 ClientInterface::ClientInterface ( const std::string& aId, const URI& aUri, const boost::posix_time::time_duration& aTimeoutPeriod ) :
51 mBuffers(),
52#ifdef NO_PREEMPTIVE_DISPATCH
53 mNoPreemptiveDispatchBuffers(),
54#endif
55 mId ( aId ),
56 mTimeoutPeriod ( aTimeoutPeriod ),
57 mUri ( aUri ),
58 mUriString( toString(aUri) )
59 {
60 }
61
62
64 mBuffers(),
65#ifdef NO_PREEMPTIVE_DISPATCH
66 mNoPreemptiveDispatchBuffers(),
67#endif
68 mId ( ),
69 mTimeoutPeriod ( boost::posix_time::pos_infin ),
70 mUri ( ),
71 mUriString( "" )
72 {
73 }
74
75
77 mBuffers(),
78#ifdef NO_PREEMPTIVE_DISPATCH
79 mNoPreemptiveDispatchBuffers(),
80#endif
81 mId ( aClientInterface.mId ),
82 mTimeoutPeriod ( aClientInterface.mTimeoutPeriod ),
83 mUri ( aClientInterface.mUri ),
84 mUriString( aClientInterface.mUriString )
85 {
86 }
87
88
90 {
92 mId = aClientInterface.mId;
93 mUri = aClientInterface.mUri;
94 mUriString = aClientInterface.mUriString;
95 mTimeoutPeriod = aClientInterface.mTimeoutPeriod;
96 return *this;
97 }
98
99
101 {
103 }
104
105 const std::string& ClientInterface::id() const
106 {
107 return mId;
108 }
109
110
111 // void ClientInterface::ping()
112 // {
113 // try
114 // {
115 // std::string lInstruction ( "ping -q -c 1 " + mUri.mHostname + " &> /dev/null" );
116 // log ( Info() , "Pinging " , Quote ( mId ) , " with instruction : " , lInstruction );
117 // //Cant use ICMP here because it requires raw socket (and hence superuser) access, so use system PING instead
118 // int lPingStatus = system ( lInstruction.c_str() );
119
120 // if ( WEXITSTATUS ( lPingStatus ) )
121 // {
122 // log ( Error() , "Pinging " , Quote ( mId ) , " at address " , Quote( mUri.mHostname ) , " returned exit status ", Integer ( WEXITSTATUS ( lPingStatus ) ) );
123 // throw exception::// PingFailed();
124 // }
125 // }
126 // catch ( uhal::exception& aExc )
127 // {
128 // aExc.throw r;
129 // }
130 // catch ( const std::exception& aExc )
131 // {
132 // throw // StdException ( aExc );
133 // }
134 // }
135
136
137 const std::string& ClientInterface::uri() const
138 {
139 return mUriString;
140 }
141
142
144 {
145 std::lock_guard<std::mutex> lLock ( mUserSideMutex );
146
147 try
148 {
149#ifdef NO_PREEMPTIVE_DISPATCH
150 log ( Info() , "mNoPreemptiveDispatchBuffers.size() = " , Integer ( mNoPreemptiveDispatchBuffers.size() ) );
151
152 for (auto& lBuffer: mNoPreemptiveDispatchBuffers)
153 {
154 this->predispatch ( lBuffer );
155 this->implementDispatch ( lBuffer ); //responsibility for lBuffer passed to the implementDispatch function
156 lBuffer.reset();
157 }
158
159 {
160 std::lock_guard<std::mutex> lLock ( mBufferMutex );
161 mNoPreemptiveDispatchBuffers.clear();
162 }
163
164 this->Flush();
165#endif
166
167 if ( mCurrentBuffers )
168 {
170 this->implementDispatch ( mCurrentBuffers ); //responsibility for mCurrentBuffers passed to the implementDispatch function
171 mCurrentBuffers.reset();
172 this->Flush();
173 }
174 }
175 catch ( ... )
176 {
178 throw;
179 }
180 }
181
182
184 {}
185
186
187 exception::exception* ClientInterface::validate ( std::shared_ptr< Buffers > aBuffers )
188 {
189 exception::exception* lRet = this->validate ( aBuffers->getSendBuffer() ,
190 aBuffers->getSendBuffer() + aBuffers->sendCounter() ,
191 aBuffers->getReplyBuffer().begin() ,
192 aBuffers->getReplyBuffer().end() );
193
194 //results are valid, so mark returned data as valid
195 if ( !lRet )
196 {
197 aBuffers->validate ();
198 }
199
200 returnBufferToPool ( aBuffers );
201 return lRet;
202 }
203
204
206 {
207 return 0;
208 }
209
210
211 void ClientInterface::preamble ( std::shared_ptr< Buffers > )
212 {}
213
214
215 void ClientInterface::predispatch ( std::shared_ptr< Buffers > )
216 {}
217
218
219
220 void ClientInterface::returnBufferToPool ( std::shared_ptr< Buffers >& aBuffers )
221 {
222 std::lock_guard<std::mutex> lLock ( mBufferMutex );
223
224 if ( aBuffers )
225 {
226 mBuffers.push_back ( aBuffers );
227 aBuffers.reset();
228 }
229 }
230
231
232 void ClientInterface::returnBufferToPool ( std::deque< std::shared_ptr< Buffers > >& aBuffers )
233 {
234 std::lock_guard<std::mutex> lLock ( mBufferMutex );
235
236 for (auto& lBuf : aBuffers)
237 {
238 if (lBuf)
239 mBuffers.push_back(lBuf);
240 }
241
242 aBuffers.clear();
243 }
244
245
246 void ClientInterface::returnBufferToPool ( std::vector< std::shared_ptr<Buffers> >& aBuffers )
247 {
248 std::lock_guard<std::mutex> lLock ( mBufferMutex );
249
250 for (auto& lBuf: aBuffers)
251 {
252 if (lBuf)
253 mBuffers.push_back (lBuf);
254 }
255
256 aBuffers.clear();
257 }
258
259
260 void ClientInterface::returnBufferToPool ( std::deque< std::vector< std::shared_ptr<Buffers> > >& aBuffers )
261 {
262 std::lock_guard<std::mutex> lLock ( mBufferMutex );
263
264 for ( std::deque < std::vector < std::shared_ptr< Buffers > > >::iterator lIt1 = aBuffers.begin(); lIt1 != aBuffers.end(); ++lIt1 )
265 {
266 for ( std::vector< std::shared_ptr<Buffers> >::iterator lIt2 = lIt1->begin(); lIt2 != lIt1->end(); ++lIt2 )
267 {
268 if ( *lIt2 )
269 {
270 mBuffers.push_back ( *lIt2 );
271 }
272 }
273 }
274
275 aBuffers.clear();
276 }
277
278
279 //-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
280 std::shared_ptr< Buffers > ClientInterface::checkBufferSpace ( const uint32_t& aRequestedSendSize , const uint32_t& aRequestedReplySize , uint32_t& aAvailableSendSize , uint32_t& aAvailableReplySize )
281 {
282 log ( Debug() , "Checking buffer space" );
283 //if there are no existing buffers in the pool, create them
285 uint32_t lSendBufferFreeSpace ( this->getMaxSendSize() - mCurrentBuffers->sendCounter() );
286 uint32_t lReplyBufferFreeSpace ( this->getMaxReplySize() - mCurrentBuffers->replyCounter() );
287
288 if ( ( aRequestedSendSize <= lSendBufferFreeSpace ) && ( aRequestedReplySize <= lReplyBufferFreeSpace ) )
289 {
290 aAvailableSendSize = aRequestedSendSize;
291 aAvailableReplySize = aRequestedReplySize;
292 return mCurrentBuffers;
293 }
294
295 if ( ( lSendBufferFreeSpace > 16 ) && ( lReplyBufferFreeSpace > 16 ) )
296 {
297 aAvailableSendSize = lSendBufferFreeSpace;
298 aAvailableReplySize = lReplyBufferFreeSpace;
299 return mCurrentBuffers;
300 }
301
302#ifdef NO_PREEMPTIVE_DISPATCH
303 mNoPreemptiveDispatchBuffers.push_back ( mCurrentBuffers );
304 mCurrentBuffers.reset();
305#else
306 log ( Debug() , "Triggering automated dispatch" );
307
308 try
309 {
312 mCurrentBuffers.reset();
313 }
314 catch ( ... )
315 {
317 throw;
318 }
319
320#endif
322 lSendBufferFreeSpace = this->getMaxSendSize() - mCurrentBuffers->sendCounter();
323 lReplyBufferFreeSpace = this->getMaxReplySize() - mCurrentBuffers->replyCounter();
324
325 if ( ( aRequestedSendSize <= lSendBufferFreeSpace ) && ( aRequestedReplySize <= lReplyBufferFreeSpace ) )
326 {
327 aAvailableSendSize = aRequestedSendSize;
328 aAvailableReplySize = aRequestedReplySize;
329 return mCurrentBuffers;
330 }
331
332 aAvailableSendSize = lSendBufferFreeSpace;
333 aAvailableReplySize = lReplyBufferFreeSpace;
334 return mCurrentBuffers;
335 }
336 //-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
337
338
340 {
341 if ( ! mCurrentBuffers )
342 {
343 {
344 std::lock_guard<std::mutex> lLock ( mBufferMutex );
345
346 if ( mBuffers.size() == 0 )
347 {
348 for ( uint32_t i=0; i!=10; ++i )
349 {
350 mBuffers.push_back ( std::shared_ptr< Buffers > ( new Buffers ( this->getMaxSendSize() ) ) );
351 }
352 }
353
354 mCurrentBuffers = mBuffers.front();
355 mBuffers.pop_front();
356 mCurrentBuffers->clear();
357 }
358 this->preamble ( mCurrentBuffers );
359 }
360 }
361
362
364 {
365 std::lock_guard<std::mutex> lLock ( mBufferMutex );
366 mBuffers.clear();
367
368#ifdef NO_PREEMPTIVE_DISPATCH
369 mNoPreemptiveDispatchBuffers.clear();
370#endif
371
372 if ( mCurrentBuffers )
373 {
374 mCurrentBuffers.reset();
375 }
376
377 }
378
379
381 {
383 }
384
385
386 std::pair < ValHeader , _ValHeader_* > ClientInterface::CreateValHeader()
387 {
388 ValHeader lReply;
389 return std::make_pair ( lReply , & ( * ( lReply.mMembers ) ) );
390 }
391
392
393 std::pair < ValWord<uint32_t> , _ValWord_<uint32_t>* > ClientInterface::CreateValWord ( const uint32_t& aValue , const uint32_t& aMask )
394 {
395 ValWord<uint32_t> lReply ( aValue , aMask );
396 return std::make_pair ( lReply , & ( * ( lReply.mMembers ) ) );
397 }
398
399
400 std::pair < ValVector<uint32_t> , _ValVector_<uint32_t>* > ClientInterface::CreateValVector ( const uint32_t& aSize )
401 {
402 ValVector<uint32_t> lReply ( aSize );
403 return std::make_pair ( lReply , & ( * ( lReply.mMembers ) ) );
404 }
405
406
407 //-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
408 ValHeader ClientInterface::write ( const uint32_t& aAddr, const uint32_t& aSource )
409 {
410 std::lock_guard<std::mutex> lLock ( mUserSideMutex );
411 return implementWrite ( aAddr , aSource );
412 }
413
414
415 ValHeader ClientInterface::write ( const uint32_t& aAddr, const uint32_t& aSource, const uint32_t& aMask )
416 {
417 std::lock_guard<std::mutex> lLock ( mUserSideMutex );
418 uint32_t lShiftSize ( utilities::TrailingRightBits ( aMask ) );
419 uint32_t lBitShiftedSource ( aSource << lShiftSize );
420
421 if ( ( lBitShiftedSource >> lShiftSize ) != aSource )
422 {
423 exception::BitsSetWhichAreForbiddenByBitMask lExc;
424 log ( lExc , "Source data (" , Integer ( aSource , IntFmt<hex,fixed>() ) , ") for address " , Integer ( aAddr , IntFmt<hex,fixed>() ) ,
425 " has bits which would be shifted outside the register " );
426 throw lExc;
427 }
428
429 uint32_t lOverlap ( lBitShiftedSource & ~aMask );
430
431 if ( lOverlap )
432 {
433 exception::BitsSetWhichAreForbiddenByBitMask lExc;
434 log ( lExc , "Source data (" , Integer ( aSource , IntFmt<hex,fixed>() ) , ") for address " , Integer ( aAddr , IntFmt<hex,fixed>() ) ,
435 " has the following bits set outside the bounds allowed by the bit-mask ( ", Integer ( aSource , IntFmt<hex,fixed>() ) , ") : " ,
436 Integer ( lOverlap , IntFmt<hex,fixed>() )
437 );
438 throw lExc;
439 }
440
441 return ( ValHeader ) ( implementRMWbits ( aAddr , ~aMask , lBitShiftedSource & aMask ) );
442 }
443
444
445 ValHeader ClientInterface::writeBlock ( const uint32_t& aAddr, const std::vector< uint32_t >& aSource, const defs::BlockReadWriteMode& aMode )
446 {
447 std::lock_guard<std::mutex> lLock ( mUserSideMutex );
448 return implementWriteBlock ( aAddr, aSource, aMode );
449 }
450 //-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
451
452
453 //-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
455 {
456 std::lock_guard<std::mutex> lLock ( mUserSideMutex );
457 return implementRead ( aAddr );
458 }
459
460
461 ValWord< uint32_t > ClientInterface::read ( const uint32_t& aAddr, const uint32_t& aMask )
462 {
463 std::lock_guard<std::mutex> lLock ( mUserSideMutex );
464 return implementRead ( aAddr, aMask );
465 }
466
467
468 ValVector< uint32_t > ClientInterface::readBlock ( const uint32_t& aAddr, const uint32_t& aSize, const defs::BlockReadWriteMode& aMode )
469 {
470 std::lock_guard<std::mutex> lLock ( mUserSideMutex );
471 return implementReadBlock ( aAddr, aSize, aMode );
472 }
473 //-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
474
475
476 //-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
477 ValWord< uint32_t > ClientInterface::rmw_bits ( const uint32_t& aAddr , const uint32_t& aANDterm , const uint32_t& aORterm )
478 {
479 std::lock_guard<std::mutex> lLock ( mUserSideMutex );
480 return implementRMWbits ( aAddr , aANDterm , aORterm );
481 }
482 //-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
483
484
485 //-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
486 ValWord< uint32_t > ClientInterface::rmw_sum ( const uint32_t& aAddr , const int32_t& aAddend )
487 {
488 std::lock_guard<std::mutex> lLock ( mUserSideMutex );
489 return implementRMWsum ( aAddr , aAddend );
490 }
491 //-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
492
493
494 void ClientInterface::setTimeoutPeriod ( const uint32_t& aTimeoutPeriod )
495 {
496 std::lock_guard<std::mutex> lLock ( mUserSideMutex );
497
498 if ( aTimeoutPeriod == 0 )
499 {
500 mTimeoutPeriod = boost::posix_time::pos_infin;
501 }
502 else
503 {
504 mTimeoutPeriod = boost::posix_time::milliseconds ( aTimeoutPeriod );
505 }
506 }
507
508
510 {
511 std::lock_guard<std::mutex> lLock ( mUserSideMutex );
512 return mTimeoutPeriod.total_milliseconds();
513 }
514
515
516 const boost::posix_time::time_duration& ClientInterface::getBoostTimeoutPeriod()
517 {
518 return mTimeoutPeriod;
519 }
520
521}
\rst Wraps a Python iterator so that it can also be used as a C++ input iterator
Definition: pytypes.h:1102
A class wrapping the send and recieve buffers that are to be filled and transported and the validated...
Definition: Buffers.hpp:56
An abstract base class for defining the interface to the various IPbus clients as well as providing t...
std::pair< ValVector< uint32_t >, _ValVector_< uint32_t > * > CreateValVector(const uint32_t &aSize)
Helper function to create a ValVector object.
ValHeader write(const uint32_t &aAddr, const uint32_t &aValue)
Write a single, unmasked word to a register.
void updateCurrentBuffers()
If the current buffer is null, allocate a buffer from the buffer pool for it If the buffer pool is em...
ValHeader writeBlock(const uint32_t &aAddr, const std::vector< uint32_t > &aValues, const defs::BlockReadWriteMode &aMode=defs::INCREMENTAL)
Write a block of data to a block of registers or a block-write port.
virtual uint32_t getMaxReplySize()=0
Return the maximum size of reply packet based on the buffer size in the target.
void dispatch()
Method to dispatch all queued transactions, and wait until all corresponding responses have been rece...
virtual void implementDispatch(std::shared_ptr< Buffers > aBuffers)=0
Pure virtual function which actually performs the dispatch operation.
std::pair< ValWord< uint32_t >, _ValWord_< uint32_t > * > CreateValWord(const uint32_t &aValue, const uint32_t &aMask=defs::NOMASK)
Helper function to create a ValWord object.
void setTimeoutPeriod(const uint32_t &aTimeoutPeriod=0)
A method to modify the timeout period for any pending or future transactions.
ValWord< uint32_t > rmw_bits(const uint32_t &aAddr, const uint32_t &aANDterm, const uint32_t &aORterm)
Read the value of a register, apply the AND-term, apply the OR-term, set the register to this new val...
virtual ClientInterface & operator=(const ClientInterface &aClientInterface)
Assignment operator.
ClientInterface()
Default Constructor.
ValWord< uint32_t > rmw_sum(const uint32_t &aAddr, const int32_t &aAddend)
Read the value of a register, add the addend, set the register to this new value and return a copy of...
virtual ValHeader implementWriteBlock(const uint32_t &aAddr, const std::vector< uint32_t > &aValues, const defs::BlockReadWriteMode &aMode=defs::INCREMENTAL)=0
Write a block of data to a block of registers or a block-write port.
ValVector< uint32_t > readBlock(const uint32_t &aAddr, const uint32_t &aSize, const defs::BlockReadWriteMode &aMode=defs::INCREMENTAL)
Read a block of unsigned data from a block of registers or a block-read port.
virtual void preamble(std::shared_ptr< Buffers > aBuffers)
Add a preamble to an IPbus buffer.
std::mutex mUserSideMutex
A MutEx lock used to make sure the access functions are thread safe.
virtual void predispatch(std::shared_ptr< Buffers > aBuffers)
Finalize the buffer before it is transmitted.
std::shared_ptr< Buffers > mCurrentBuffers
A pointer to a buffer-wrapper object.
virtual ValWord< uint32_t > implementRMWbits(const uint32_t &aAddr, const uint32_t &aANDterm, const uint32_t &aORterm)=0
Read the value of a register, apply the AND-term, apply the OR-term, set the register to this new val...
const boost::posix_time::time_duration & getBoostTimeoutPeriod()
A method to retrieve the timeout period currently being used.
void returnBufferToPool(std::shared_ptr< Buffers > &aBuffers)
Function to return a buffer to the buffer pool.
boost::posix_time::time_duration mTimeoutPeriod
Timeout period for transactions.
virtual uint32_t getMaxSendSize()=0
Return the maximum size to be sent based on the buffer size in the target.
ValWord< uint32_t > read(const uint32_t &aAddr)
Read a single, unmasked, unsigned word.
const std::string & id() const
Return the identifier of the target for this client.
virtual ValWord< uint32_t > implementRead(const uint32_t &aAddr, const uint32_t &aMask=defs::NOMASK)=0
Read a single, masked, unsigned word.
virtual ValVector< uint32_t > implementReadBlock(const uint32_t &aAddr, const uint32_t &aSize, const defs::BlockReadWriteMode &aMode=defs::INCREMENTAL)=0
Read a block of unsigned data from a block of registers or a block-read port.
std::pair< ValHeader, _ValHeader_ * > CreateValHeader()
Helper function to create a ValHeader object.
virtual std::shared_ptr< Buffers > checkBufferSpace(const uint32_t &aSendSize, const uint32_t &aReplySize, uint32_t &aAvailableSendSize, uint32_t &aAvailableReplySize)
Function which checks the available space in the currently filling buffer against requested send and ...
std::deque< std::shared_ptr< Buffers > > mBuffers
A memory pool of buffers which will be dispatched.
virtual void dispatchExceptionHandler()
Function which is called when an exception is thrown.
const std::string & uri() const
Return the url of the target for this client.
URI mUri
a struct containing the full URI of the target for this client
virtual uint32_t getPreambleSize()
Return the size of the preamble.
std::string mId
the identifier of the target for this client
std::mutex mBufferMutex
A MutEx lock used to make sure the access to the buffers is thread safe.
virtual ValHeader implementWrite(const uint32_t &aAddr, const uint32_t &aValue)=0
Write a single, unmasked word to a register.
virtual ~ClientInterface()
Destructor.
virtual void Flush()
Virtual function to dispatch all buffers and block until all replies are received.
uint64_t getTimeoutPeriod()
A method to retrieve the timeout period currently being used.
virtual exception::exception * validate(std::shared_ptr< Buffers > aBuffers)
Function which dispatch calls when the reply is received to check that the headers are as expected.
virtual ValWord< uint32_t > implementRMWsum(const uint32_t &aAddr, const int32_t &aAddend)=0
Read the value of a register, add the addend, set the register to this new value and return a copy of...
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::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
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
An abstract base exception class, including an interface to throw as the derived type (for passing ex...
Definition: exception.hpp:71
BlockReadWriteMode
define whether transactions target a single register, a block of registers, a block-read/write port o...
Definition: definitions.hpp:53
unsigned int TrailingRightBits(uint32_t aValue)
Helper function to calculate the number of zero-bits at the righthand end of a 32-bit number.
Definition: bits.cpp:44
DebugLevel Debug
Definition: LogLevels.cpp:133
std::string toString(const URI &aURI)
Definition: URI.cpp:61
_Integer< T, IntFmt<> > Integer(const T &aT)
Forward declare a function which creates an instance of the ultra-lightweight wrapper from an integer...
void log(FatalLevel &aFatal, const T0 &aArg0)
Function to add a log entry at Fatal level.
Definition: log.hxx:18
InfoLevel Info
Definition: LogLevels.cpp:115
A Template helper struct wrapping a block of IPbus header, a register for storing a block of data and...
Definition: ValMem.hpp:126
A Template helper struct wrapping an IPbus header, a register for storing a single word of data,...
Definition: ValMem.hpp:102
Empty struct which acts as a dummy variable for passing the formatting information around.
Struct to store a URI when parsed by boost spirit.
Definition: URI.hpp:50