Allow + in DCP names for ISDCF RU rating strings.
[dcpomatic.git] / src / lib / image_filename_sorter.cc
index 7bb1b4c376bb24762a860b3990fb4b5acebc1087..c32b07115245145061bd4c87c206db9c565cb3a0 100644 (file)
@@ -1,62 +1,64 @@
 /*
-    Copyright (C) 2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2015-2017 Carl Hetherington <cth@carlh.net>
 
-    This program is free software; you can redistribute it and/or modify
+    This file is part of DCP-o-matic.
+
+    DCP-o-matic 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,
+    DCP-o-matic 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.
+    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
 
 */
 
-#include <iostream>
+#include "image_filename_sorter.h"
+#include <dcp/locale_convert.h>
 #include <boost/filesystem.hpp>
+#include <boost/foreach.hpp>
 #include <boost/optional.hpp>
-#include <dcp/raw_convert.h>
+#include <iostream>
 
-class ImageFilenameSorter
-{
-public:
-       bool operator() (boost::filesystem::path a, boost::filesystem::path b)
-       {
-               boost::optional<int> na = extract_number (a);
-               boost::optional<int> nb = extract_number (b);
-               if (!na || !nb) {
-                       std::cout << a << " " << b << " " << (a.string() < b.string()) << "\n";
-                       return a.string() < b.string();
-               }
+using std::list;
+using std::string;
+using dcp::locale_convert;
+using boost::optional;
 
-               return na.get() < nb.get();
+bool
+ImageFilenameSorter::operator() (boost::filesystem::path a, boost::filesystem::path b)
+{
+       optional<int> na = extract_numbers (a);
+       optional<int> nb = extract_numbers (b);
+       if (!na || !nb) {
+               return a.string() < b.string();
        }
 
-private:
-       boost::optional<int> extract_number (boost::filesystem::path p)
-       {
-               p = p.leaf ();
-               
-               std::string number;
-               for (size_t i = 0; i < p.string().size(); ++i) {
-                       if (isdigit (p.string()[i])) {
-                               number += p.string()[i];
-                       } else {
-                               if (!number.empty ()) {
-                                       break;
-                               }
-                       }
-               }
+       return *na < *nb;
+}
 
-               if (number.empty ()) {
-                       return boost::optional<int> ();
+optional<int>
+ImageFilenameSorter::extract_numbers (boost::filesystem::path p)
+{
+       string numbers;
+       string const ps = p.leaf().string();
+       for (size_t i = 0; i < ps.size(); ++i) {
+               if (isdigit (ps[i])) {
+                       numbers += ps[i];
                }
+       }
 
-               return dcp::raw_convert<int> (number);
+       if (numbers.empty ()) {
+               return optional<int> ();
        }
-};
+
+       /* locale_convert is quicker than raw_convert and numbers can only contain
+          things which are isdigit() so locale_convert is fine to use.
+       */
+       return locale_convert<int> (numbers);
+}