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
|
/*
* Copyright (C) 2004-2012 Geometer Plus <[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 2 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
#include <cstdlib>
#include <ZLInputStream.h>
#include <ZLUnicodeUtil.h>
#include "FB2MigrationReader.h"
#include "../formats/fb2/FB2TagManager.h"
FB2MigrationReader::FB2MigrationReader(BookInfo &info, bool updateSeries) : myInfo(info), myUpdateSeries(updateSeries), myUpdateTags(info.TagsOption.value().empty()) {
}
void FB2MigrationReader::characterDataHandler(const char *text, std::size_t len) {
if (myReadState == READ_GENRE) {
myGenreBuffer.append(text, len);
}
}
void FB2MigrationReader::startElementHandler(int tag, const char **attributes) {
switch (tag) {
case _BODY:
interrupt();
break;
case _TITLE_INFO:
myReadState = READ_SOMETHING;
break;
case _GENRE:
if ((myReadState == READ_SOMETHING) && myUpdateTags) {
myReadState = READ_GENRE;
}
break;
case _SEQUENCE:
if ((myReadState == READ_SOMETHING) && myUpdateSeries) {
const char *name = attributeValue(attributes, "name");
if (name != 0) {
std::string seriesTitle = name;
ZLUnicodeUtil::utf8Trim(seriesTitle);
myInfo.SeriesTitleOption.setValue(seriesTitle);
const char *number = attributeValue(attributes, "number");
myInfo.IndexInSeriesOption.setValue((number != 0) ? std::string(number) : std::string());
}
}
break;
default:
break;
}
}
void FB2MigrationReader::endElementHandler(int tag) {
switch (tag) {
case _TITLE_INFO:
myReadState = READ_NOTHING;
break;
case _GENRE:
if (myReadState == READ_GENRE) {
ZLUnicodeUtil::utf8Trim(myGenreBuffer);
if (!myGenreBuffer.empty()) {
const std::vector<std::string> &tags =
FB2TagManager::Instance().humanReadableTags(myGenreBuffer);
if (!tags.empty()) {
myTags.insert(tags.begin(), tags.end());
} else {
myTags.insert(myGenreBuffer);
}
myGenreBuffer.erase();
}
myReadState = READ_SOMETHING;
}
break;
default:
break;
}
}
void FB2MigrationReader::doRead(const ZLFile &file) {
myReadState = READ_NOTHING;
readDocument(file);
if (myUpdateTags) {
std::string tagList;
for (std::set<std::string>::const_iterator it = myTags.begin(); it != myTags.end(); ++it) {
if (it != myTags.begin()) {
tagList += ",";
}
tagList += *it;
}
myInfo.TagsOption.setValue(tagList);
}
}
|