1 // sg_file.cxx -- File I/O routines
3 // Written by Curtis Olson, started November 1999.
5 // Copyright (C) 1999 Curtis L. Olson - curt@flightgear.org
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 // General Public License for more details.
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #include <simgear/compiler.h>
32 #include <simgear/debug/logstream.hxx>
34 #include "sg_file.hxx"
39 SGFile::SGFile( const string &file) {
40 set_type( sgFileType );
49 // open the file based on specified direction
50 bool SGFile::open( const SGProtocolDir d ) {
53 if ( get_dir() == SG_IO_OUT ) {
57 mode_t mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH;
59 fp = ::open( file_name.c_str(), O_WRONLY | O_CREAT | O_TRUNC, mode );
60 } else if ( get_dir() == SG_IO_IN ) {
61 fp = ::open( file_name.c_str(), O_RDONLY );
63 SG_LOG( SG_IO, SG_ALERT,
64 "Error: bidirection mode not available for files." );
69 SG_LOG( SG_IO, SG_ALERT, "Error opening file: " << file_name );
77 // read a block of data of specified size
78 int SGFile::read( char *buf, int length ) {
80 return ::read( fp, buf, length );
84 // read a line of data, length is max size of input buffer
85 int SGFile::readline( char *buf, int length ) {
86 // save our current position
87 int pos = lseek( fp, 0, SEEK_CUR );
90 int result = ::read( fp, buf, length );
92 // find the end of line and reset position
94 for ( i = 0; i < result && buf[i] != '\n'; ++i );
95 if ( buf[i] == '\n' ) {
100 lseek( fp, pos + result, SEEK_SET );
103 buf[ result ] = '\0';
109 // write data to a file
110 int SGFile::write( const char *buf, const int length ) {
111 int result = ::write( fp, buf, length );
112 if ( result != length ) {
113 SG_LOG( SG_IO, SG_ALERT, "Error writing data: " << file_name );
120 // write null terminated string to a file
121 int SGFile::writestring( const char *str ) {
122 int length = strlen( str );
123 return write( str, length );
128 bool SGFile::close() {
129 if ( ::close( fp ) == -1 ) {