-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.cpp
120 lines (104 loc) · 3.35 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
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
/****************************************************************************
** Copyright (C) 2009-2012 Arzel Jérôme <myst6re@gmail.com>
**
** 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 <QCoreApplication>
#include "Arguments.h"
#include "lzs/LZS.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
#ifdef Q_OS_WIN
QTextCodec::setCodecForLocale(QTextCodec::codecForName("IBM 850"));
#endif
Arguments args;
qint32 lzsSize = 0;
LZSObserver *observer;
LZSObserverStdOut stdObserver;
if (args.quiet()) {
observer = nullptr;
} else {
observer = &stdObserver;
}
if (args.help() || args.paths().isEmpty()) {
args.showHelp();
} else {
bool hasMultipleFiles = args.paths().count() > 1;
foreach (const QString &path, args.paths()) {
if (hasMultipleFiles) {
stdObserver.setFilename(QDir::toNativeSeparators(path));
}
QFile f(path);
if (f.open(QIODevice::ReadOnly)) {
QFile dest(args.destination(path));
bool destExistsBefore = dest.exists();
if (dest.open(QIODevice::WriteOnly | QIODevice::Truncate)) {
QByteArray data;
bool needToRemoveDest = false;
if (args.offset() > 0) {
dest.seek(args.offset());
}
if (args.size() == 0) {
qWarning() << "Please specify a size > 0.";
needToRemoveDest = true;
} else {
if (args.decompress()) {
if (args.hasHeader() && f.read((char *)&lzsSize, 4) != 4) {
qWarning() << "Error when reading file." << QDir::toNativeSeparators(path);
needToRemoveDest = true;
} else {
if (args.hasHeader() && args.validateHeader() && lzsSize != f.size() - 4) {
qWarning() << "Invalid LZS header." << QDir::toNativeSeparators(path);
needToRemoveDest = true;
} else {
if (args.size() < 0) {
data = f.readAll();
} else {
data = f.read(args.size());
}
dest.write(LZS::decompressAll(data, observer));
}
}
} else {
if (args.size() < 0) {
data = f.readAll();
} else {
data = f.read(args.size());
}
const QByteArray &lzsed = LZS::compress(data, observer);
lzsSize = lzsed.size();
dest.write((char *)&lzsSize, 4);
dest.write(lzsed);
}
}
if (!destExistsBefore && needToRemoveDest) {
dest.remove();
}
dest.close();
} else {
qWarning() << "Error opening destination file." << dest.errorString();
}
f.close();
} else {
qWarning() << "Error opening source file." << QDir::toNativeSeparators(path) << f.errorString();
}
if (hasMultipleFiles) {
printf("\n");
}
}
}
QTimer::singleShot(0, &a, SLOT(quit()));
return a.exec();
}