1
0
Fork 0
flightgear/Lib/Misc/fgstream.cxx

161 lines
3.3 KiB
C++
Raw Normal View History

1998-09-01 19:06:28 +00:00
// zlib input file stream wrapper.
//
// Written by Bernie Bright, 1998
//
// Copyright (C) 1998 Bernie Bright - bbright@c031.aone.net.au
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// 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.
//
// $Id$
#include <ctype.h> // isspace()
#include <Misc/fgstream.hxx>
fg_gzifstream::fg_gzifstream()
: istream(&gzbuf)
{
}
1998-09-01 19:06:28 +00:00
//-----------------------------------------------------------------------------
//
// Open a possibly gzipped file for reading.
//
fg_gzifstream::fg_gzifstream( const string& name, ios_openmode io_mode )
: istream(&gzbuf)
1998-09-01 19:06:28 +00:00
{
this->open( name, io_mode );
1998-09-01 19:06:28 +00:00
}
1998-09-24 15:22:17 +00:00
//-----------------------------------------------------------------------------
//
// Attach a stream to an already opened file descriptor.
//
fg_gzifstream::fg_gzifstream( int fd, ios_openmode io_mode )
: istream(&gzbuf)
1998-09-24 15:22:17 +00:00
{
gzbuf.attach( fd, io_mode );
1998-09-24 15:22:17 +00:00
}
1998-09-01 19:06:28 +00:00
//-----------------------------------------------------------------------------
//
// Open a possibly gzipped file for reading.
// If the initial open fails and the filename has a ".gz" extension then
// remove the extension and try again.
// If the initial open fails and the filename doesn't have a ".gz" extension
// then append ".gz" and try again.
//
void
fg_gzifstream::open( const string& name, ios_openmode io_mode )
1998-09-01 19:06:28 +00:00
{
gzbuf.open( name.c_str(), io_mode );
if ( ! gzbuf.is_open() )
1998-09-01 19:06:28 +00:00
{
string s = name;
if ( s.substr( s.length() - 3, 3 ) == ".gz" )
{
// remove ".gz" suffix
1998-09-24 15:22:17 +00:00
s.replace( s.length() - 3, 3, "" );
// s.erase( s.length() - 3, 3 );
1998-09-01 19:06:28 +00:00
}
else
{
// Append ".gz" suffix
s += ".gz";
}
// Try again.
gzbuf.open( s.c_str(), io_mode );
1998-09-01 19:06:28 +00:00
}
}
void
fg_gzifstream::attach( int fd, ios_openmode io_mode )
1998-09-01 19:06:28 +00:00
{
gzbuf.attach( fd, io_mode );
1998-09-01 19:06:28 +00:00
}
1998-09-24 15:22:17 +00:00
//
// Manipulators
//
istream&
skipeol( istream& in )
{
char c = 0;
// skip to end of line.
while ( in.get(c) ) {
if ( (c == '\n') || (c == '\r') ) {
break;
}
#ifdef __MWERKS__
// also break on '\0'
if ( c == '\0' ) {
break;
}
#endif
}
1998-09-24 15:22:17 +00:00
return in;
}
istream&
skipws( istream& in ) {
1998-09-24 15:22:17 +00:00
char c;
while ( in.get(c) ) {
#ifdef __MWERKS__
// -dw- for unix file compatibility
// -clo- this causes problems for unix
if ( (c == '\n') || (c == '\r') || (c == '\0') ) {
break;
}
#endif
if ( ! isspace( c ) ) {
1998-09-24 15:22:17 +00:00
// put pack the non-space character
in.putback(c);
break;
}
}
return in;
}
istream&
skipcomment( istream& in )
{
while ( in )
{
// skip whitespace
#ifdef __MWERKS__
in >> ::skipws;
#else
1998-09-24 15:22:17 +00:00
in >> skipws;
#endif
1998-09-24 15:22:17 +00:00
char c;
if ( in.get( c ) && c != '#' )
{
// not a comment
in.putback(c);
break;
}
in >> skipeol;
}
return in;
}
1998-09-01 19:06:28 +00:00