libzypp  16.22.5
zypp::base::Fd Class Reference

Assert close called on open filedescriptor. More...

#include <Fd.h>

Public Member Functions

 Fd (const Pathname &file_r, int open_flags, mode_t mode=0)
 Ctor opens file. More...
 
 Fd (Fd &&rhs)
 Move ctor. More...
 
Fdoperator= (Fd &&rhs)
 Move assign. More...
 
 ~Fd ()
 Dtor closes file. More...
 
void close ()
 Explicitly close the file. More...
 
bool isOpen () const
 Test for valid filedescriptor. More...
 
int fd () const
 Return the filedescriptor. More...
 
int operator* () const
 Return the filedescriptor. More...
 

Private Member Functions

 NON_COPYABLE (Fd)
 

Private Attributes

int m_fd
 The filedescriptor. More...
 

Detailed Description

Assert close called on open filedescriptor.

...
scoped_ptr<Fd> fd; // calls close when going out of scope
try {
fd.reset( new Fd( "/some/file" ) );
} catch ( ... ) {
// open failed.
}
read( fd->fd(), ... ),
Todo:
It's dumb. Openflags and more related functions (read/write..) could be added.

Definition at line 44 of file Fd.h.

Constructor & Destructor Documentation

zypp::base::Fd::Fd ( const Pathname &  file_r,
int  open_flags,
mode_t  mode = 0 
)

Ctor opens file.

Exceptions
EXCEPTIONIf open fails.

Definition at line 36 of file Fd.cc.

zypp::base::Fd::Fd ( Fd &&  rhs)
inline

Move ctor.

Definition at line 54 of file Fd.h.

zypp::base::Fd::~Fd ( )
inline

Dtor closes file.

Definition at line 63 of file Fd.h.

Member Function Documentation

zypp::base::Fd::NON_COPYABLE ( Fd  )
private
Fd& zypp::base::Fd::operator= ( Fd &&  rhs)
inline

Move assign.

Definition at line 59 of file Fd.h.

void zypp::base::Fd::close ( )

Explicitly close the file.

Definition at line 49 of file Fd.cc.

bool zypp::base::Fd::isOpen ( ) const
inline

Test for valid filedescriptor.

Definition at line 70 of file Fd.h.

int zypp::base::Fd::fd ( ) const
inline

Return the filedescriptor.

Definition at line 74 of file Fd.h.

int zypp::base::Fd::operator* ( ) const
inline

Return the filedescriptor.

Definition at line 78 of file Fd.h.

Member Data Documentation

int zypp::base::Fd::m_fd
private

The filedescriptor.

Definition at line 83 of file Fd.h.


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