This repository has been archived by the owner on May 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
main.cpp
61 lines (53 loc) · 2.15 KB
/
main.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
/*
* Read Lingoes Dictionary Files (*.ld2 or *.ldx)
* Copyright (C) 2013-2015 by Symeon Huang <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
* published by the Free Software Foundation; either version 3 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 Library 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 <QCoreApplication>
#include <QFileInfo>
#include <QStringList>
#include <QCommandLineParser>
#include <QDebug>
#include "lingoes.h"
int main(int argc, char** argv)
{
QCoreApplication app(argc, argv);
app.setApplicationName("KDictionary-Lingoes");
app.setApplicationVersion("1.0");
QCommandLineParser parser;
parser.setApplicationDescription("Lingoes dictionary file (LD2/LDX) reader/extracter.");
parser.addHelpOption();
parser.addVersionOption();
QCommandLineOption ldxfile("i", "Input Lingoes dictionary file (default: input.ld2).", "input", "input.ld2");
QCommandLineOption outfile("o", "Output extracted text file (default: output.txt).", "output", "output.txt");
QCommandLineOption notrim("disable-trim", "Disable HTML tag trimming.");
parser.addOption(ldxfile);
parser.addOption(outfile);
parser.addOption(notrim);
parser.process(app);
const QString inputFile = parser.value(ldxfile);
QFileInfo ld2FileInfo(inputFile);
if (!ld2FileInfo.exists()) {
qCritical()<<"Error: Input file" << inputFile << "doesn't exist.";
exit(1);
}
QString ld2file = ld2FileInfo.canonicalFilePath();
bool trim = !parser.isSet(notrim);
Lingoes ldx(ld2file, trim);
ldx.extractToFile(parser.value(outfile));
return 0;
}