Belle II Software  release-08-01-10
StreamInterceptor Class Reference

Base class with all necessary features to intercept output to a file descriptor. More...

#include <IOIntercept.h>

Inheritance diagram for StreamInterceptor:
Collaboration diagram for StreamInterceptor:

Public Member Functions

 StreamInterceptor (std::ostream &stream, FILE *fileObject)
 Construct keeping a reference to the std::ostream and the file descriptor which are associated with this stream as well as a file descriptor for the replacement. More...
 
 ~StreamInterceptor ()
 close file descriptors
 
bool start ()
 start intercepting the stream. More...
 
bool finish ()
 stop intercepting the stream. More...
 

Protected Member Functions

void setReplacementFD (int fd)
 set the replacement file descriptor, should be called in the constructor of derived classes
 
bool replaceFD (int fileDescriptor)
 Replace the file descriptor of m_fileObject with the one passed. More...
 

Static Protected Member Functions

static void readFD (int fd, std::string &out)
 Read the contents of a file descriptor until there is no more input and place them in out. More...
 

Protected Attributes

std::ostream & m_stream
 C++ stream object, only needed to flush before replacement.
 
FILE * m_fileObject
 File object of the file we want to replace, needed to obtain file descriptor and to flush.
 
int m_savedFD { -1}
 Saved file descriptor: a duplicate of the file descriptor of m_fileObject.
 
int m_replacementFD { -1}
 Replacement file descriptor to be used while capturing.
 
bool m_capturing {false}
 Check whether we are already capturing.
 

Detailed Description

Base class with all necessary features to intercept output to a file descriptor.

Definition at line 23 of file IOIntercept.h.

Constructor & Destructor Documentation

◆ StreamInterceptor()

StreamInterceptor ( std::ostream &  stream,
FILE *  fileObject 
)

Construct keeping a reference to the std::ostream and the file descriptor which are associated with this stream as well as a file descriptor for the replacement.

Parameters
streamC++ ostream which is associated with the file descriptor we want to intercept
fileObjectfile object which is associated with the file descriptor we want to intercept

Definition at line 88 of file IOIntercept.cc.

88  :
89  m_stream(stream), m_fileObject(fileObject), m_savedFD(dup(fileno(m_fileObject)))
90  {
91  if (m_savedFD < 0) {
92  B2ERROR("Error duplicating file descriptor: " << std::strerror(errno));
93  }
94  }
std::ostream & m_stream
C++ stream object, only needed to flush before replacement.
Definition: IOIntercept.h:65
FILE * m_fileObject
File object of the file we want to replace, needed to obtain file descriptor and to flush.
Definition: IOIntercept.h:67
int m_savedFD
Saved file descriptor: a duplicate of the file descriptor of m_fileObject.
Definition: IOIntercept.h:69

Member Function Documentation

◆ finish()

bool finish ( )
inline

stop intercepting the stream.

Returns
true if the object was capturing and stream could be restored

Definition at line 46 of file IOIntercept.h.

◆ readFD()

void readFD ( int  fd,
std::string &  out 
)
staticprotected

Read the contents of a file descriptor until there is no more input and place them in out.

Parameters
fdfile descriptor to read, should be opened in non blocking mode O_NOBLOCK
outstring to be replaced with all the bytes read from fd

Definition at line 102 of file IOIntercept.cc.

◆ replaceFD()

bool replaceFD ( int  fileDescriptor)
protected

Replace the file descriptor of m_fileObject with the one passed.

Parameters
fileDescriptorfile descriptor to be set for m_fileObject using dup2()

Definition at line 120 of file IOIntercept.cc.

◆ start()

bool start ( )
inline

start intercepting the stream.

Returns
true on success, false on any error

Definition at line 38 of file IOIntercept.h.


The documentation for this class was generated from the following files: