X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fimage_filename_sorter.cc;h=ab0d298fc1bd0f9bcceb881a83744d9157681433;hb=182b9d2e2feb6545592868606aaf0f0146095481;hp=25a8acb3da5455af942c5774af88c0876c1fe3a5;hpb=73654117144c6de0ec4efe39ddc88485df546cc9;p=dcpomatic.git diff --git a/src/lib/image_filename_sorter.cc b/src/lib/image_filename_sorter.cc index 25a8acb3d..ab0d298fc 100644 --- a/src/lib/image_filename_sorter.cc +++ b/src/lib/image_filename_sorter.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2015-2016 Carl Hetherington + Copyright (C) 2015-2017 Carl Hetherington This file is part of DCP-o-matic. @@ -18,72 +18,47 @@ */ + #include "image_filename_sorter.h" -#include +#include #include -#include +#include #include + using std::list; -using dcp::raw_convert; +using std::string; +using dcp::locale_convert; +using boost::optional; + bool ImageFilenameSorter::operator() (boost::filesystem::path a, boost::filesystem::path b) { - std::list na = extract_numbers (a); - std::list nb = extract_numbers (b); - if (na.empty() || nb.empty()) { - return a.string() < b.string(); - } + auto an = extract_numbers (a); + auto bn = extract_numbers (b); - if (na.size() != nb.size()) { - /* Just use the first one */ - return na.front() < nb.front(); - } - - std::list::const_iterator i = na.begin (); - std::list::const_iterator j = nb.begin (); + int const anl = an.length (); + int const bnl = bn.length (); - while (i != na.end()) { - if (*i != *j) { - return *i < *j; - } - ++i; - ++j; + if (anl > bnl) { + bn = string(anl - bnl, '0') + bn; + } else if (bnl > anl) { + an = string(bnl - anl, '0') + an; } - /* All the same */ - return false; - + return an < bn; } -list +string ImageFilenameSorter::extract_numbers (boost::filesystem::path p) { - p = p.leaf (); - - std::list numbers; - - std::string current; - for (size_t i = 0; i < p.string().size(); ++i) { - if (isdigit (p.string()[i])) { - current += p.string()[i]; - } else { - if (!current.empty ()) { - numbers.push_back (current); - current.clear (); - } + string numbers; + auto const ps = p.leaf().string(); + for (size_t i = 0; i < ps.size(); ++i) { + if (isdigit (ps[i])) { + numbers += ps[i]; } } - - if (!current.empty ()) { - numbers.push_back (current); - } - - std::list numbers_as_int; - BOOST_FOREACH (std::string i, numbers) { - numbers_as_int.push_back (raw_convert (i)); - } - - return numbers_as_int; + return numbers; }