Skip to content
Snippets Groups Projects
Commit c4f5176e authored by Andre Gunther's avatar Andre Gunther :island:
Browse files

IOSvc info print number of processed files

parent c9fb719a
No related branches found
No related tags found
1 merge request!3808IOSvc info print number of processed files
Pipeline #4597214 passed
......@@ -16,6 +16,7 @@
#include "GaudiUtils/IIODataManager.h"
#include <assert.h>
#include <fmt/format.h>
#include <mutex>
namespace {
......@@ -164,7 +165,9 @@ void InputHandler::readNextEventHeader( LHCb::MDFHeader& header ) {
StatusCode sc = m_ioMgr->read( &m_curConnection, (std::byte*)&header, sizeof( LHCb::MDFHeader ) );
while ( !sc.isSuccess() ) {
// No space left ? Or input error ? Anyway close current input
m_ioSvc->info() << "Over with input from " << m_input[m_curInput] << " : " << sc << endmsg;
m_ioSvc->info() << fmt::format( "Over with input from {}, processed {}/{} files : ", m_input[m_curInput],
m_curInput + 1, m_input.size() )
<< sc << endmsg;
m_ioMgr->disconnect( &m_curConnection ).ignore();
// and connect to next one
m_curInput++;
......
......@@ -16,6 +16,7 @@
#include "MDF/MDFHeader.h"
#include "MDF/RawDataConnection.h"
#include <fmt/format.h>
#include <mutex>
#include <sys/mman.h>
......@@ -130,7 +131,9 @@ LHCb::MDFHeader* InputHandler::readNextEventHeader() {
m_curMappedFile = connectToCurrentInput();
m_curPtr = m_curMappedFile->data().data();
// End of the file reached
m_ioSvc->info() << "Over with input from " << m_input[m_curInput - 1] << endmsg;
m_ioSvc->info() << fmt::format( "Over with input from {}, processed {}/{} files.", m_input[m_curInput - 1],
m_curInput, m_input.size() )
<< endmsg;
// throw End of file exception
throw EndOfFile();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment