X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fimage_filename_sorter.cc;h=ea5f46da64401e5c92596201e3011a119a319b74;hb=c162f9d8b127f56b8da46b83908000611033e6a5;hp=f58abba157532701536d3e43c7291df5e8bee67a;hpb=3828baf56467224f5d44049bf1e7a7ed11f43a05;p=dcpomatic.git diff --git a/src/lib/image_filename_sorter.cc b/src/lib/image_filename_sorter.cc index f58abba15..ea5f46da6 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,71 +18,44 @@ */ -#include "raw_convert.h" #include "image_filename_sorter.h" +#include #include -#include +#include #include using std::list; +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(); - } - - if (na.size() != nb.size()) { - /* Just use the first one */ - return na.front() < nb.front(); - } + string an = extract_numbers (a); + string bn = extract_numbers (b); - 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; + string 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; }