Fabcoin Core  0.16.2
P2P Digital Currency
Public Member Functions | Private Member Functions | Private Attributes | List of all members
CAutoFile Class Reference

Non-refcounted RAII wrapper for FILE*. More...

#include <streams.h>

Public Member Functions

 CAutoFile (FILE *filenew, int nTypeIn, int nVersionIn)
 
 ~CAutoFile ()
 
void fclose ()
 
FILE * release ()
 Get wrapped FILE* with transfer of ownership. More...
 
FILE * Get () const
 Get wrapped FILE* without transfer of ownership. More...
 
bool IsNull () const
 Return true if the wrapped FILE* is nullptr, false otherwise. More...
 
int GetType () const
 
int GetVersion () const
 
void read (char *pch, size_t nSize)
 
void ignore (size_t nSize)
 
void write (const char *pch, size_t nSize)
 
template<typename T >
CAutoFileoperator<< (const T &obj)
 
template<typename T >
CAutoFileoperator>> (T &obj)
 

Private Member Functions

 CAutoFile (const CAutoFile &)
 
CAutoFileoperator= (const CAutoFile &)
 

Private Attributes

const int nType
 
const int nVersion
 
FILE * file
 

Detailed Description

Non-refcounted RAII wrapper for FILE*.

Will automatically close the file when it goes out of scope if not null. If you're returning the file pointer, return file.release(). If you need to close the file early, use file.fclose() instead of fclose(file).

Definition at line 455 of file streams.h.

Constructor & Destructor Documentation

CAutoFile::CAutoFile ( const CAutoFile )
private
CAutoFile::CAutoFile ( FILE *  filenew,
int  nTypeIn,
int  nVersionIn 
)
inline

Definition at line 468 of file streams.h.

CAutoFile::~CAutoFile ( )
inline

Definition at line 473 of file streams.h.

Member Function Documentation

void CAutoFile::fclose ( )
inline

Definition at line 478 of file streams.h.

Here is the caller graph for this function:

FILE* CAutoFile::Get ( ) const
inline

Get wrapped FILE* without transfer of ownership.

Note
Ownership of the FILE* will remain with this class. Use this only if the scope of the CAutoFile outlives use of the passed pointer.

Definition at line 496 of file streams.h.

Here is the caller graph for this function:

int CAutoFile::GetType ( ) const
inline

Definition at line 505 of file streams.h.

int CAutoFile::GetVersion ( ) const
inline

Definition at line 506 of file streams.h.

void CAutoFile::ignore ( size_t  nSize)
inline

Definition at line 516 of file streams.h.

bool CAutoFile::IsNull ( ) const
inline

Return true if the wrapped FILE* is nullptr, false otherwise.

Definition at line 500 of file streams.h.

Here is the caller graph for this function:

template<typename T >
CAutoFile& CAutoFile::operator<< ( const T obj)
inline

Definition at line 538 of file streams.h.

Here is the call graph for this function:

CAutoFile& CAutoFile::operator= ( const CAutoFile )
private
template<typename T >
CAutoFile& CAutoFile::operator>> ( T obj)
inline

Definition at line 548 of file streams.h.

Here is the call graph for this function:

void CAutoFile::read ( char *  pch,
size_t  nSize 
)
inline

Definition at line 508 of file streams.h.

FILE* CAutoFile::release ( )
inline

Get wrapped FILE* with transfer of ownership.

Note
This will invalidate the CAutoFile object, and makes it the responsibility of the caller of this function to clean up the returned FILE*.

Definition at line 490 of file streams.h.

void CAutoFile::write ( const char *  pch,
size_t  nSize 
)
inline

Definition at line 529 of file streams.h.

Member Data Documentation

FILE* CAutoFile::file
private

Definition at line 465 of file streams.h.

const int CAutoFile::nType
private

Definition at line 462 of file streams.h.

const int CAutoFile::nVersion
private

Definition at line 463 of file streams.h.


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