owlps/owlps-positioning/src/textfilereader.cc

67 lines
1.1 KiB
C++
Raw Normal View History

#include "textfilereader.hh"
#include "posexcept.hh"
using namespace std ;
/* *** Constructors *** */
/**
* @param _file_name The name of the file to open.
* @throw error_opening_input_file if the file cannot be opened.
*/
TextFileReader::TextFileReader(const string &_file_name):
file_name(_file_name)
{
file.open(file_name.c_str()) ;
if (! file)
throw error_opening_input_file(file_name) ;
}
TextFileReader::~TextFileReader()
{
file.close() ;
}
/* *** Operations *** */
/**
* @return The string read, or an empty string in case of error.
*/
bool TextFileReader::read_line(string &text)
{
if (eof_close())
return false ;
getline(file, text) ;
return true ;
}
/**
* Tests if #file is opened and there is something more to
* read. If the end of file is reached, the stream is closed.
* @return \em true if the end of file is reached or if the file is
* already closed.
* @return \em false if there is something more to read.
*/
bool TextFileReader::eof_close()
{
if (file)
return false ;
if (file.eof())
{
file.close() ;
return true ;
}
return false ;
}