Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LHCb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LHCb
LHCb
Commits
c4f5176e
Commit
c4f5176e
authored
2 years ago
by
Andre Gunther
Browse files
Options
Downloads
Patches
Plain Diff
IOSvc info print number of processed files
parent
c9fb719a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!3808
IOSvc info print number of processed files
Pipeline
#4597214
passed
2 years ago
Stage: test
Stage: .post
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
DAQ/MDF/components/IOSvcFileRead.cpp
+4
-1
4 additions, 1 deletion
DAQ/MDF/components/IOSvcFileRead.cpp
DAQ/MDF/components/IOSvcMM.cpp
+4
-1
4 additions, 1 deletion
DAQ/MDF/components/IOSvcMM.cpp
with
8 additions
and
2 deletions
DAQ/MDF/components/IOSvcFileRead.cpp
+
4
−
1
View file @
c4f5176e
...
...
@@ -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
++
;
...
...
This diff is collapsed.
Click to expand it.
DAQ/MDF/components/IOSvcMM.cpp
+
4
−
1
View file @
c4f5176e
...
...
@@ -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
();
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment