}
} // end of the apt.dat header
- while ( ! in.eof() ) {
- in.getline(tmp, 2048);
+ throwExceptionIfStreamError(in, "apt.dat", apt_dat);
+
+ while ( in.getline(tmp, 2048) ) {
line = tmp; // string copy, ack
line_num++;
}
}
+ throwExceptionIfStreamError(in, "apt.dat", apt_dat);
finishAirport();
}
NavDataCache* cache;
PositionedID currentAirportID;
-
+
+ void throwExceptionIfStreamError(const sg_gzifstream& input_stream,
+ const std::string& short_name,
+ const std::string& full_path)
+ {
+ if ( input_stream.bad() ) {
+ // strerror() isn't thread-safe, unfortunately...
+ SG_LOG( SG_GENERAL, SG_ALERT, "error while reading " << full_path );
+ throw sg_io_exception("error while reading " + short_name,
+ full_path.c_str());
+ }
+ }
+
void finishAirport()
{
if (currentAirportID == 0) {