00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #include <simgear/compiler.h>
00024 #include <string>
00025 #include <ctype.h>
00026 #include <cerrno>
00027
00028 #include "sgstream.hxx"
00029
00030 using std::string;
00031 using std::istream;
00032
00033 sg_gzifstream::sg_gzifstream()
00034 : istream(&gzbuf)
00035 {
00036 }
00037
00038
00039
00040
00041
00042 sg_gzifstream::sg_gzifstream( const string& name, ios_openmode io_mode )
00043 : istream(&gzbuf)
00044 {
00045 this->open( name, io_mode );
00046 }
00047
00048
00049
00050
00051
00052 sg_gzifstream::sg_gzifstream( int fd, ios_openmode io_mode )
00053 : istream(&gzbuf)
00054 {
00055 gzbuf.attach( fd, io_mode );
00056 }
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066 void
00067 sg_gzifstream::open( const string& name, ios_openmode io_mode )
00068 {
00069 gzbuf.open( name.c_str(), io_mode );
00070 if ( ! gzbuf.is_open() )
00071 {
00072 string s = name;
00073 if ( s.substr( s.length() - 3, 3 ) == ".gz" )
00074 {
00075
00076 s.replace( s.length() - 3, 3, "" );
00077
00078 }
00079 else
00080 {
00081
00082 s += ".gz";
00083 }
00084
00085
00086 gzbuf.open( s.c_str(), io_mode );
00087 }
00088 }
00089
00090 void
00091 sg_gzifstream::attach( int fd, ios_openmode io_mode )
00092 {
00093 gzbuf.attach( fd, io_mode );
00094 }
00095
00096
00097
00098
00099
00100 istream&
00101 skipeol( istream& in )
00102 {
00103 char c = '\0';
00104
00105
00106 while ( in.get(c) ) {
00107 if ( (c == '\n') || (c == '\r') ) {
00108 break;
00109 }
00110 }
00111
00112 return in;
00113 }
00114
00115 istream&
00116 skipws( istream& in ) {
00117 char c;
00118 while ( in.get(c) ) {
00119
00120 if ( ! isspace( c ) ) {
00121
00122 in.putback(c);
00123 break;
00124 }
00125 }
00126 return in;
00127 }
00128
00129 istream&
00130 skipcomment( istream& in )
00131 {
00132 while ( in )
00133 {
00134
00135 in >> skipws;
00136
00137 char c;
00138 if ( in.get( c ) && c != '#' )
00139 {
00140
00141 in.putback(c);
00142 break;
00143 }
00144 in >> skipeol;
00145 }
00146 return in;
00147 }
00148