X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fio%2Fsg_file.cxx;h=0cf66f77d6f0139dc654e914ff89c3d403f3437d;hb=c8aa989ac776395a20229700e6b801ee510e4a7a;hp=0caf3f4a44357152ecdcc75ec275eef32f91c0c7;hpb=7f2dfaa5b41905e31c3df92e9dda6a1db7b49ff6;p=simgear.git diff --git a/simgear/io/sg_file.cxx b/simgear/io/sg_file.cxx index 0caf3f4a..0cf66f77 100644 --- a/simgear/io/sg_file.cxx +++ b/simgear/io/sg_file.cxx @@ -16,32 +16,49 @@ // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software -// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // // $Id$ #include -#include STL_STRING +#include -#if defined(_MSC_VER) || defined(__MINGW32__) +#ifdef _WIN32 # include #endif +#include + +#include +#include +#include + +#if !defined(_MSC_VER) +# include +#endif + +#include #include #include "sg_file.hxx" -SG_USING_STD(string); - -SGFile::SGFile( const string &file) { +SGFile::SGFile(const std::string &file, int repeat_) + : file_name(file), fp(-1), eof_flag(true), repeat(repeat_), iteration(0) +{ set_type( sgFileType ); - file_name = file; - eof_flag = true; } +SGFile::SGFile( int existingFd ) : + fp(existingFd), + eof_flag(false), + repeat(1), + iteration(0) +{ + set_type( sgFileType ); +} SGFile::~SGFile() { } @@ -52,7 +69,7 @@ bool SGFile::open( const SGProtocolDir d ) { set_dir( d ); if ( get_dir() == SG_IO_OUT ) { -#if defined(_MSC_VER) || defined(__MINGW32__) +#ifdef _WIN32 int mode = 00666; #else mode_t mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH; @@ -81,7 +98,20 @@ int SGFile::read( char *buf, int length ) { // read a chunk ssize_t result = ::read( fp, buf, length ); if ( length > 0 && result == 0 ) { - eof_flag = true; + if (repeat < 0 || iteration < repeat - 1) { + iteration++; + // loop reading the file, unless it is empty + off_t fileLen = ::lseek(fp, 0, SEEK_CUR); + if (fileLen == 0) { + eof_flag = true; + return 0; + } else { + ::lseek(fp, 0, SEEK_SET); + return ::read(fp, buf, length); + } + } else { + eof_flag = true; + } } return result; } @@ -95,7 +125,13 @@ int SGFile::readline( char *buf, int length ) { // read a chunk ssize_t result = ::read( fp, buf, length ); if ( length > 0 && result == 0 ) { - eof_flag = true; + if ((repeat < 0 || iteration < repeat - 1) && pos != 0) { + iteration++; + pos = ::lseek(fp, 0, SEEK_SET); + result = ::read(fp, buf, length); + } else { + eof_flag = true; + } } // find the end of line and reset position @@ -128,7 +164,7 @@ int SGFile::write( const char *buf, const int length ) { // write null terminated string to a file int SGFile::writestring( const char *str ) { - int length = strlen( str ); + int length = std::strlen( str ); return write( str, length ); }