Skip to content

Commit

Permalink
add check in TOF compressor before to save RDH open
Browse files Browse the repository at this point in the history
  • Loading branch information
noferini committed Aug 16, 2024
1 parent 34b6824 commit 46bf8aa
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Detectors/TOF/compression/src/Compressor.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,17 @@ bool Compressor<RDH, verbose, paranoid>::processHBF()
mErrorCounter++;
}

// before to move to RDH close check we are not already out of buffer (it is the last chance to call rewind and not to store RDH open)
if (mEncoderPointer >= mEncoderPointerMax) {
LOG(error) << "link = " << rdh->feeId << ": beyond the buffer size mEncoderPointer in RDH open = " << mEncoderPointer << " >= "
<< "mEncoderPointerMax = " << mEncoderPointerMax;
long byteOutOfBuffer = mEncoderPointer + rdh->headerSize - mEncoderPointerMax;
LOG(error) << "byte out of buffer = " << byteOutOfBuffer;

encoderRewind();
return true;
}

/** copy RDH close to encoder buffer **/
/** CAREFUL WITH THE PAGE COUNTER **/
if (mEncoderPointer + rdh->headerSize >= mEncoderPointerMax) {
Expand Down

0 comments on commit 46bf8aa

Please sign in to comment.