plugin status fixes from 2.X
authorPaul Davis <paul@linuxaudiosystems.com>
Fri, 22 Jan 2010 11:57:51 +0000 (11:57 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Fri, 22 Jan 2010 11:57:51 +0000 (11:57 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@6539 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/ardour/ardour/plugin_manager.h
libs/ardour/plugin_manager.cc

index 14c419078759040cc2a981f706603ba6634a1340..302b6d2bc9f0c8bf56791d788406d48a8c59d74d 100644 (file)
@@ -86,7 +86,12 @@ class PluginManager : public boost::noncopyable {
            }
 
            bool operator<(const PluginStatus& other) const {
-                   return other.type < type || other.unique_id < unique_id;
+                   if (other.type < type) {
+                           return true;
+                   } else if (other.type == type && other.unique_id < unique_id) {
+                           return true;
+                   }
+                   return false;
            }
        };
        typedef std::set<PluginStatus> PluginStatusList;
index 9b5898ddb907f770343abe9c977a0cbe89647c85..b0d40f6124a14aa61a69da4702f4c0334fbc64bf 100644 (file)
@@ -40,6 +40,7 @@
 #include <glibmm/miscutils.h>
 
 #include "pbd/pathscanner.h"
+#include "pbd/whitespace.h"
 
 #include "ardour/ladspa.h"
 #include "ardour/session.h"
@@ -600,7 +601,7 @@ PluginManager::save_statuses ()
                        break;
                }
 
-               ofs << ' ' << (*i).unique_id << ' ';
+               ofs << ' ';
 
                switch ((*i).status) {
                case Normal:
@@ -613,7 +614,9 @@ PluginManager::save_statuses ()
                        ofs << "Hidden";
                        break;
                }
-
+       
+               ofs << ' ';
+               ofs << (*i).unique_id;;
                ofs << endl;
        }
 
@@ -630,12 +633,13 @@ PluginManager::load_statuses ()
        if (!ifs) {
                return;
        }
-
+       
        std::string stype;
-       std::string id;
        std::string sstatus;
+       std::string id;
        PluginType type;
        PluginStatusType status;
+       char buf[1024];
 
        while (ifs) {
 
@@ -644,15 +648,31 @@ PluginManager::load_statuses ()
                        break;
 
                }
-               ifs >> id;
+
+               ifs >> sstatus;
                if (!ifs) {
                        break;
+
                }
 
-               ifs >> sstatus;
+               /* rest of the line is the plugin ID */
+
+               ifs.getline (buf, sizeof (buf), '\n');
                if (!ifs) {
                        break;
+               }
 
+               if (sstatus == "Normal") {
+                       status = Normal;
+               } else if (sstatus == "Favorite") {
+                       status = Favorite;
+               } else if (sstatus == "Hidden") {
+                       status = Hidden;
+               } else {
+                       error << string_compose (_("unknown plugin status type \"%1\" - all entries ignored"), sstatus)
+                                 << endmsg;
+                       statuses.clear ();
+                       break;
                }
 
                if (stype == "LADSPA") {
@@ -668,21 +688,12 @@ PluginManager::load_statuses ()
                              << endmsg;
                        continue;
                }
-               if (sstatus == "Normal") {
-                       status = Normal;
-               } else if (sstatus == "Favorite") {
-                       status = Favorite;
-               } else if (sstatus == "Hidden") {
-                       status = Hidden;
-               } else {
-                       error << string_compose (_("unknown plugin status type \"%1\" - ignored"), stype)
-                             << endmsg;
-                       continue;
-               }
-
+               
+               id = buf;
+               strip_whitespace_edges (id);
                set_status (type, id, status);
        }
-
+       
        ifs.close ();
 }