52#ifdef NO_PREEMPTIVE_DISPATCH
53 mNoPreemptiveDispatchBuffers(),
56 mTimeoutPeriod ( aTimeoutPeriod ),
65#ifdef NO_PREEMPTIVE_DISPATCH
66 mNoPreemptiveDispatchBuffers(),
69 mTimeoutPeriod (
boost::posix_time::pos_infin ),
78#ifdef NO_PREEMPTIVE_DISPATCH
79 mNoPreemptiveDispatchBuffers(),
81 mId ( aClientInterface.mId ),
82 mTimeoutPeriod ( aClientInterface.mTimeoutPeriod ),
83 mUri ( aClientInterface.mUri ),
84 mUriString( aClientInterface.mUriString )
92 mId = aClientInterface.
mId;
149#ifdef NO_PREEMPTIVE_DISPATCH
150 log (
Info() ,
"mNoPreemptiveDispatchBuffers.size() = " ,
Integer ( mNoPreemptiveDispatchBuffers.size() ) );
152 for (
auto& lBuffer: mNoPreemptiveDispatchBuffers)
161 mNoPreemptiveDispatchBuffers.clear();
190 aBuffers->getSendBuffer() + aBuffers->sendCounter() ,
191 aBuffers->getReplyBuffer().begin() ,
192 aBuffers->getReplyBuffer().end() );
197 aBuffers->validate ();
236 for (
auto& lBuf : aBuffers)
250 for (
auto& lBuf: aBuffers)
264 for ( std::deque < std::vector < std::shared_ptr< Buffers > > >
::iterator lIt1 = aBuffers.begin(); lIt1 != aBuffers.end(); ++lIt1 )
266 for ( std::vector< std::shared_ptr<Buffers> >
::iterator lIt2 = lIt1->begin(); lIt2 != lIt1->end(); ++lIt2 )
280 std::shared_ptr< Buffers >
ClientInterface::checkBufferSpace (
const uint32_t& aRequestedSendSize ,
const uint32_t& aRequestedReplySize , uint32_t& aAvailableSendSize , uint32_t& aAvailableReplySize )
282 log (
Debug() ,
"Checking buffer space" );
288 if ( ( aRequestedSendSize <= lSendBufferFreeSpace ) && ( aRequestedReplySize <= lReplyBufferFreeSpace ) )
290 aAvailableSendSize = aRequestedSendSize;
291 aAvailableReplySize = aRequestedReplySize;
295 if ( ( lSendBufferFreeSpace > 16 ) && ( lReplyBufferFreeSpace > 16 ) )
297 aAvailableSendSize = lSendBufferFreeSpace;
298 aAvailableReplySize = lReplyBufferFreeSpace;
302#ifdef NO_PREEMPTIVE_DISPATCH
306 log (
Debug() ,
"Triggering automated dispatch" );
325 if ( ( aRequestedSendSize <= lSendBufferFreeSpace ) && ( aRequestedReplySize <= lReplyBufferFreeSpace ) )
327 aAvailableSendSize = aRequestedSendSize;
328 aAvailableReplySize = aRequestedReplySize;
332 aAvailableSendSize = lSendBufferFreeSpace;
333 aAvailableReplySize = lReplyBufferFreeSpace;
348 for ( uint32_t i=0; i!=10; ++i )
368#ifdef NO_PREEMPTIVE_DISPATCH
369 mNoPreemptiveDispatchBuffers.clear();
389 return std::make_pair ( lReply , & ( * ( lReply.
mMembers ) ) );
396 return std::make_pair ( lReply , & ( * ( lReply.
mMembers ) ) );
403 return std::make_pair ( lReply , & ( * ( lReply.
mMembers ) ) );
419 uint32_t lBitShiftedSource ( aSource << lShiftSize );
421 if ( ( lBitShiftedSource >> lShiftSize ) != aSource )
423 exception::BitsSetWhichAreForbiddenByBitMask lExc;
425 " has bits which would be shifted outside the register " );
429 uint32_t lOverlap ( lBitShiftedSource & ~aMask );
433 exception::BitsSetWhichAreForbiddenByBitMask lExc;
435 " has the following bits set outside the bounds allowed by the bit-mask ( ",
Integer ( aSource ,
IntFmt<hex,fixed>() ) ,
") : " ,
498 if ( aTimeoutPeriod == 0 )
504 mTimeoutPeriod = boost::posix_time::milliseconds ( aTimeoutPeriod );
\rst Wraps a Python iterator so that it can also be used as a C++ input iterator
A class wrapping the send and recieve buffers that are to be filled and transported and the validated...
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 block of data and marks whether or not it is valid.
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...
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...
An abstract base exception class, including an interface to throw as the derived type (for passing ex...
BlockReadWriteMode
define whether transactions target a single register, a block of registers, a block-read/write port o...
unsigned int TrailingRightBits(uint32_t aValue)
Helper function to calculate the number of zero-bits at the righthand end of a 32-bit number.
std::string toString(const URI &aURI)
_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.
A Template helper struct wrapping a block of IPbus header, a register for storing a block of data and...
A Template helper struct wrapping an IPbus header, a register for storing a single word of data,...
Empty struct which acts as a dummy variable for passing the formatting information around.
Struct to store a URI when parsed by boost spirit.