remove unusued roll_delay member of DiskReader
[ardour.git] / libs / gtkmm2ext / cursors.cc
index a99a45703281cf32d314bc5d75c71b740377d2d1..2ac0dba627fd73e4734f810f30cf02e30610f1fb 100644 (file)
 */
 
 #include <sstream>
-#include <fstream>
+
+#include "pbd/gstdio_compat.h"
+#include "pbd/error.h"
+#include "pbd/compose.h"
 
 #include "gtkmm2ext/cursors.h"
 
+#include "pbd/i18n.h"
+
 using namespace Gtkmm2ext;
 
 CursorInfo::Infos CursorInfo::infos;
@@ -36,34 +41,49 @@ CursorInfo::CursorInfo (const std::string& n, int hotspot_x, int hotspot_y)
 int
 CursorInfo::load_cursor_info (const std::string& path)
 {
-        std::ifstream infofile (path.c_str());
-
-        if (!infofile) {
-                return -1;
-        }
+       gchar *buf = NULL;
+       if (!g_file_get_contents (path.c_str(), &buf, NULL, NULL))  {
+               return -1;
+       }
+       std::stringstream infofile (buf);
+       g_free (buf);
 
-        std::stringstream s;
         std::string name;
         int x;
         int y;
+       bool parse_ok;
+       int line_number = 1;
 
         do {
-                s << infofile;
+               parse_ok = false;
+               infofile >> name;
                 if (!infofile) {
+                       /* failing here is OK ... EOF */
+                       parse_ok = true;
                         break;
                 }
-                s >> name;
-                s >> x;
-                s >> y;
-                if (!s) {
+               infofile >> x;
+                if (!infofile) {
                         break;
                 }
-                
-                CursorInfo* ci = new CursorInfo (name, x, y);
-                infos[name] = ci;
+               infofile >> y;
+                if (!infofile) {
+                        break;
+                }
+
+                parse_ok = true;
+               line_number++;
+
+                infos[name] = new CursorInfo (name, x, y);
 
         } while (true);
 
+       if (!parse_ok) {
+               PBD::error << string_compose (_("cursor hotspots info file %1 has an error on line %2"), path, line_number) << endmsg;
+               infos.clear ();
+               return -1;
+       }
+
         return 0;
 }