forked from Tulon/scantailor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FileNameDisambiguator.cpp
294 lines (240 loc) · 7.74 KB
/
FileNameDisambiguator.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
/*
Scan Tailor - Interactive post-processing tool for scanned pages.
Copyright (C) Joseph Artsimovich <[email protected]>
This program 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 3 of the License, or
(at your option) any later version.
This program 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, see <http://www.gnu.org/licenses/>.
*/
#include "FileNameDisambiguator.h"
#include "RelinkablePath.h"
#include "AbstractRelinker.h"
#include <QString>
#include <QFileInfo>
#include <QDomDocument>
#include <QDomElement>
#include <QMutex>
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <boost/multi_index/sequenced_index.hpp>
#include <boost/multi_index/member.hpp>
#include <boost/multi_index/composite_key.hpp>
#include <boost/lambda/lambda.hpp>
#include <boost/foreach.hpp>
using namespace boost::multi_index;
class FileNameDisambiguator::Impl
{
public:
Impl();
Impl(QDomElement const& disambiguator_el,
boost::function<QString(QString const&)> const& file_path_unpacker);
QDomElement toXml(QDomDocument& doc, QString const& name,
boost::function<QString(QString const&)> const& file_path_packer) const;
int getLabel(QString const& file_path) const;
int registerFile(QString const& file_path);
void performRelinking(AbstractRelinker const& relinker);
private:
class ItemsByFilePathTag;
class ItemsByFileNameLabelTag;
class UnorderedItemsTag;
struct Item
{
QString filePath;
QString fileName;
int label;
Item(QString const& file_path, int lbl);
Item(QString const& file_path, QString const& file_name, int lbl);
};
typedef multi_index_container<
Item,
indexed_by<
ordered_unique<
tag<ItemsByFilePathTag>,
member<Item, QString, &Item::filePath>
>,
ordered_unique<
tag<ItemsByFileNameLabelTag>,
composite_key<
Item,
member<Item, QString, &Item::fileName>,
member<Item, int, &Item::label>
>
>,
sequenced<tag<UnorderedItemsTag> >
>
> Container;
typedef Container::index<ItemsByFilePathTag>::type ItemsByFilePath;
typedef Container::index<ItemsByFileNameLabelTag>::type ItemsByFileNameLabel;
typedef Container::index<UnorderedItemsTag>::type UnorderedItems;
mutable QMutex m_mutex;
Container m_items;
ItemsByFilePath& m_itemsByFilePath;
ItemsByFileNameLabel& m_itemsByFileNameLabel;
UnorderedItems& m_unorderedItems;
};
/*====================== FileNameDisambiguator =========================*/
FileNameDisambiguator::FileNameDisambiguator()
: m_ptrImpl(new Impl)
{
}
FileNameDisambiguator::FileNameDisambiguator(
QDomElement const& disambiguator_el)
: m_ptrImpl(new Impl(disambiguator_el, boost::lambda::_1))
{
}
FileNameDisambiguator::FileNameDisambiguator(
QDomElement const& disambiguator_el,
boost::function<QString(QString const&)> const& file_path_unpacker)
: m_ptrImpl(new Impl(disambiguator_el, file_path_unpacker))
{
}
QDomElement
FileNameDisambiguator::toXml(QDomDocument& doc, QString const& name) const
{
return m_ptrImpl->toXml(doc, name, boost::lambda::_1);
}
QDomElement
FileNameDisambiguator::toXml(
QDomDocument& doc, QString const& name,
boost::function<QString(QString const&)> const& file_path_packer) const
{
return m_ptrImpl->toXml(doc, name, file_path_packer);
}
int
FileNameDisambiguator::getLabel(QString const& file_path) const
{
return m_ptrImpl->getLabel(file_path);
}
int
FileNameDisambiguator::registerFile(QString const& file_path)
{
return m_ptrImpl->registerFile(file_path);
}
void
FileNameDisambiguator::performRelinking(AbstractRelinker const& relinker)
{
m_ptrImpl->performRelinking(relinker);
}
/*==================== FileNameDisambiguator::Impl ====================*/
FileNameDisambiguator::Impl::Impl()
: m_items(),
m_itemsByFilePath(m_items.get<ItemsByFilePathTag>()),
m_itemsByFileNameLabel(m_items.get<ItemsByFileNameLabelTag>()),
m_unorderedItems(m_items.get<UnorderedItemsTag>())
{
}
FileNameDisambiguator::Impl::Impl(
QDomElement const& disambiguator_el,
boost::function<QString(QString const&)> const& file_path_unpacker)
: m_items(),
m_itemsByFilePath(m_items.get<ItemsByFilePathTag>()),
m_itemsByFileNameLabel(m_items.get<ItemsByFileNameLabelTag>()),
m_unorderedItems(m_items.get<UnorderedItemsTag>())
{
QDomNode node(disambiguator_el.firstChild());
for (; !node.isNull(); node = node.nextSibling()) {
if (!node.isElement()) {
continue;
}
if (node.nodeName() != "mapping") {
continue;
}
QDomElement const file_el(node.toElement());
QString const file_path_shorthand(file_el.attribute("file"));
QString const file_path = file_path_unpacker(file_path_shorthand);
if (file_path.isEmpty()) {
// Unresolved shorthand - skipping this record.
continue;
}
int const label = file_el.attribute("label").toInt();
m_items.insert(Item(file_path, label));
}
}
QDomElement
FileNameDisambiguator::Impl::toXml(
QDomDocument& doc, QString const& name,
boost::function<QString(QString const&)> const& file_path_packer) const
{
QMutexLocker const locker(&m_mutex);
QDomElement el(doc.createElement(name));
BOOST_FOREACH(Item const& item, m_unorderedItems) {
QString const file_path_shorthand = file_path_packer(item.filePath);
if (file_path_shorthand.isEmpty()) {
// Unrepresentable file path - skipping this record.
continue;
}
QDomElement file_el(doc.createElement("mapping"));
file_el.setAttribute("file", file_path_shorthand);
file_el.setAttribute("label", item.label);
el.appendChild(file_el);
}
return el;
}
int
FileNameDisambiguator::Impl::getLabel(QString const& file_path) const
{
QMutexLocker const locker(&m_mutex);
ItemsByFilePath::iterator const fp_it(m_itemsByFilePath.find(file_path));
if (fp_it != m_itemsByFilePath.end()) {
return fp_it->label;
}
return 0;
}
int
FileNameDisambiguator::Impl::registerFile(QString const& file_path)
{
QMutexLocker const locker(&m_mutex);
ItemsByFilePath::iterator const fp_it(m_itemsByFilePath.find(file_path));
if (fp_it != m_itemsByFilePath.end()) {
return fp_it->label;
}
int label = 0;
QString const file_name(QFileInfo(file_path).fileName());
ItemsByFileNameLabel::iterator const fn_it(
m_itemsByFileNameLabel.upper_bound(boost::make_tuple(file_name))
);
// If the item preceeding fn_it has the same file name,
// the new file belongs to the same disambiguation group.
if (fn_it != m_itemsByFileNameLabel.begin()) {
ItemsByFileNameLabel::iterator prev(fn_it);
--prev;
if (prev->fileName == file_name) {
label = prev->label + 1;
}
} // Otherwise, label remains 0.
Item const new_item(file_path, file_name, label);
m_itemsByFileNameLabel.insert(fn_it, new_item);
return label;
}
void
FileNameDisambiguator::Impl::performRelinking(AbstractRelinker const& relinker)
{
QMutexLocker const locker(&m_mutex);
Container new_items;
BOOST_FOREACH(Item const& item, m_unorderedItems) {
RelinkablePath const old_path(item.filePath, RelinkablePath::File);
Item new_item(relinker.substitutionPathFor(old_path), item.label);
new_items.insert(new_item);
}
m_items.swap(new_items);
}
/*============================ Impl::Item =============================*/
FileNameDisambiguator::Impl::Item::Item(QString const& file_path, int lbl)
: filePath(file_path),
fileName(QFileInfo(file_path).fileName()),
label(lbl)
{
}
FileNameDisambiguator::Impl::Item::Item(
QString const& file_path, QString const& file_name, int lbl)
: filePath(file_path),
fileName(file_name),
label(lbl)
{
}