e23a551b41ecd6260f44cc7b94d2169f95a756ab
[dcpomatic.git] / src / lib / image_filename_sorter.cc
1 /*
2     Copyright (C) 2015-2016 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "raw_convert.h"
21 #include "image_filename_sorter.h"
22 #include <boost/filesystem.hpp>
23 #include <boost/foreach.hpp>
24 #include <iostream>
25
26 using std::list;
27
28 bool
29 ImageFilenameSorter::operator() (boost::filesystem::path a, boost::filesystem::path b)
30 {
31         std::list<int> na = extract_numbers (a);
32         std::list<int> nb = extract_numbers (b);
33         if (na.empty() || nb.empty()) {
34                 return a.string() < b.string();
35         }
36
37         if (na.size() != nb.size()) {
38                 /* Just use the first one */
39                 return na.front() < nb.front();
40         }
41
42         std::list<int>::const_iterator i = na.begin ();
43         std::list<int>::const_iterator j = nb.begin ();
44
45         while (i != na.end()) {
46                 if (*i != *j) {
47                         return *i < *j;
48                 }
49                 ++i;
50                 ++j;
51         }
52
53         /* All the same */
54         return false;
55
56 }
57
58 list<int>
59 ImageFilenameSorter::extract_numbers (boost::filesystem::path p)
60 {
61         p = p.leaf ();
62
63         std::list<std::string> numbers;
64
65         std::string current;
66         for (size_t i = 0; i < p.string().size(); ++i) {
67                 if (isdigit (p.string()[i])) {
68                         current += p.string()[i];
69                 } else {
70                         if (!current.empty ()) {
71                                 numbers.push_back (current);
72                                 current.clear ();
73                         }
74                 }
75         }
76
77         if (!current.empty ()) {
78                 numbers.push_back (current);
79         }
80
81         std::list<int> numbers_as_int;
82         BOOST_FOREACH (std::string i, numbers) {
83                 numbers_as_int.push_back (raw_convert<int> (i));
84         }
85
86         return numbers_as_int;
87 }