]> git.mxchange.org Git - flightgear.git/commitdiff
apt.dat parser: better input stream handling
authorFlorent Rougon <f.rougon@free.fr>
Sun, 24 Apr 2016 17:33:41 +0000 (19:33 +0200)
committerFlorent Rougon <f.rougon@free.fr>
Wed, 27 Apr 2016 08:39:21 +0000 (10:39 +0200)
- use ( in.getline(...) ) as the main loop condition instead of
  ( ! in.eof() ). This should behave better (see
  <https://gehrcke.de/2011/06/reading-files-in-c-using-ifstream-dealing-correctly-with-badbit-failbit-eofbit-and-perror/>);
- check in.bad() after exiting from each reading loop; if the exit was
  caused by an error, log an appropriate message and throw an
  exception.

src/Airports/apt_loader.cxx

index a7ad198ace55486fdfde008156ce9fb92763ccac..9545dddfa1024eed7caf88d4be5506258ff062e9 100644 (file)
@@ -128,8 +128,9 @@ public:
       }
     } // 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++;
 
@@ -203,6 +204,7 @@ public:
       }
     }
 
+    throwExceptionIfStreamError(in, "apt.dat", apt_dat);
     finishAirport();
   }
   
@@ -225,7 +227,19 @@ private:
   
   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) {