A file I/O class based on SGIOChannel. More...
#include <sg_file.hxx>
Public Member Functions | |
SGFile (const string &file, int repeat_=1) | |
Create an instance of SGFile. | |
~SGFile () | |
Destructor. | |
bool | open (const SGProtocolDir dir) |
Open a channel. | |
int | read (char *buf, int length) |
The read() method is modeled after the read() Unix system call. | |
int | readline (char *buf, int length) |
The readline() method is similar to read() except that it will stop at the first end of line encountered in the input buffer. | |
int | write (const char *buf, const int length) |
The write() method is modeled after the write() Unix system call and is analogous to the read() method. | |
int | writestring (const char *str) |
The writestring() method is a simple wrapper that will calculate the length of a null terminated character array and write it to the output channel. | |
bool | close () |
The close() method is modeled after the close() Unix system call and will close an open device. | |
string | get_file_name () const |
bool | eof () const |
A file I/O class based on SGIOChannel.
Definition at line 53 of file sg_file.hxx.
SGFile::SGFile | ( | const string & | file, | |
int | repeat_ = 1 | |||
) |
Create an instance of SGFile.
When calling the constructor you need to provide a file name. This file is not opened immediately, but instead will be opened when the open() method is called.
file | name of file to open | |
repeat | On eof restart at the beginning of the file |
Definition at line 42 of file sg_file.cxx.
bool SGFile::close | ( | ) | [virtual] |
The close() method is modeled after the close() Unix system call and will close an open device.
You should call this method when you are done using your IO class, before it is destructed.
Reimplemented from SGIOChannel.
Definition at line 159 of file sg_file.cxx.
bool SGFile::eof | ( | ) | const [inline] |
Definition at line 100 of file sg_file.hxx.
string SGFile::get_file_name | ( | ) | const [inline] |
Definition at line 97 of file sg_file.hxx.
bool SGFile::open | ( | const SGProtocolDir | d | ) | [virtual] |
Open a channel.
d | channel communication "direction" Direction can be one of:
|
Reimplemented from SGIOChannel.
Definition at line 54 of file sg_file.cxx.
int SGFile::read | ( | char * | buf, | |
int | length | |||
) | [virtual] |
The read() method is modeled after the read() Unix system call.
You must provide a pointer to a character buffer that has enough allocated space for your potential read. You can also specify the maximum number of bytes allowed for this particular read. The actual number of bytes read is returned. You are responsible to ensure that the size of buf is large enough to accomodate your input message
buf | a char pointer to your input buffer | |
length | max number of bytes to read |
Reimplemented from SGIOChannel.
Definition at line 83 of file sg_file.cxx.
int SGFile::readline | ( | char * | buf, | |
int | length | |||
) | [virtual] |
The readline() method is similar to read() except that it will stop at the first end of line encountered in the input buffer.
buf | a char pointer to your input buffer | |
length | max number of bytes to read |
Reimplemented from SGIOChannel.
Definition at line 107 of file sg_file.cxx.
int SGFile::write | ( | const char * | buf, | |
const int | length | |||
) | [virtual] |
The write() method is modeled after the write() Unix system call and is analogous to the read() method.
You provide a pointer to a buffer of data, and then length of that data to be written out. The number of bytes written is returned.
buf | a char pointer to your output buffer | |
length | number of bytes to write |
Reimplemented from SGIOChannel.
Definition at line 141 of file sg_file.cxx.
int SGFile::writestring | ( | const char * | str | ) | [virtual] |
The writestring() method is a simple wrapper that will calculate the length of a null terminated character array and write it to the output channel.
buf | a char pointer to your output buffer |
Reimplemented from SGIOChannel.
Definition at line 152 of file sg_file.cxx.