-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimportfilter.cpp
292 lines (239 loc) · 8.73 KB
/
importfilter.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
#include "importfilter.h"
#include <QFile>
#include <QTextStream>
#include <QRegExp>
#include <QRegularExpression>
#include <QCoreApplication>
#include <QProcess>
#include <QStandardPaths>
#include <QApplication>
#include <QDebug>
#include "../Lib/supportfunctions.h"
#include "../Lib/iniconfig.h"
#include "formatselect.h"
#include "filetypes.h"
extern bool gDebugEnabled ;
//////////////////////////////////////////////////////////////////////////
///
/// Record Class
///
Record::Record(QString ext, QString codec, QString command)
{
dext = ext ;
dcodec = codec ;
dcommand = command ;
}
QString Record::ext()
{
return dext ;
}
QString Record::codec()
{
return dcodec ;
}
QString Record::command()
{
return dcommand ;
}
bool Record::isEmpty()
{
return dcommand.isEmpty() ;
}
////////////////////////////////////////////////////////////////////////
///
/// ImportFilter Class
///
ImportFilter::ImportFilter()
{
conf.clear() ;
Record x("", "", "") ;
Record n(TXT.replace(".",""), "UTF-8", "-") ;
Record e(ENC.replace(".",""), "UTF-8", "Z") ;
Record b(BAK.replace(".",""), "UTF-8", "-") ;
Record z(ENB.replace(".",""), "UTF-8", "Z") ;
conf.append(x) ;
conf.append(n) ;
conf.append(e) ;
conf.append(b) ;
conf.append(z) ;
enc=NULL ;
}
bool ImportFilter::init(IniConfig& ini, QString inipath, Encryption *enc)
{
// Save Encryption
this->enc = enc ;
// Initialise import filter and Codec Dialog filter
int numentries = ini.numSections() ;
codecSelectDialog.addItem(" System Default Text Format ", "System") ;
for (int i=0; i<numentries; i++) {
QString section = ini.getSection(i) ;
if (section.left(6).toLower().compare(QString("import"))==0) {
QString ext = ini.get(section, QString("extension")) ;
QString codec = ini.get(section, QString("codec")) ;
QString cmd = ini.get(section, QString("command")) ;
Record n(ext, codec, cmd) ;
conf.append(n) ;
} else if (section.left(4).toLower().compare("load")==0) {
QString codec = ini.get(section, "codec") ;
QString description = ini.get(section, "description") ;
codecSelectDialog.addItem(description, codec) ;
}
}
this->inipath = inipath ;
return true ;
}
bool ImportFilter::registerTypes()
{
#ifdef Q_OS_WIN
// Register extension with operating system
QString appexe = QApplication::applicationFilePath().replace("/","\\") ;
QSettings appsettings("HKEY_CURRENT_USER\\Software\\Classes\\EasyNotepad\\shell\\open\\command", QSettings::NativeFormat);
appsettings.setValue(".", QString("\"") + appexe + QString("\" \"%1\"")) ;
QSettings iconsettings("HKEY_CURRENT_USER\\Software\\Classes\\EasyNotepad\\DefaultIcon", QSettings::NativeFormat);
iconsettings.setValue(".", QString("\"") + appexe + QString("\"")) ;
for (int i=0; i<conf.size(); i++) {
// Register extension with operating system
Record& rec = conf[i] ;
QString ext = rec.ext() ;
if (!ext.isEmpty()) {
QSettings extsettings(QString("HKEY_CURRENT_USER\\Software\\Classes\\.") + ext, QSettings::NativeFormat) ;
extsettings.setValue(".", QString("EasyNotepad")) ;
}
}
return true ;
#endif
}
Record& ImportFilter::FindFilter(QString filename)
{
filename = filename.replace(".autosave","") ;
QRegExp rx(".*\\.([^\\.]*)") ;
if (rx.indexIn(filename)!=-1) {
QString ext = rx.cap(1).toLower() ;
for (int i=0, sz=conf.size(); i<sz; i++) {
Record& thisrecord = (Record &)conf.at(i) ;
if (ext.compare(thisrecord.ext())==0) return (Record &)conf.at(i) ;
}
}
return (Record &)conf.at(0) ;
}
bool ImportFilter::LoadFile(QString filename, QString& contents, QString datadir)
{
Record filter = FindFilter(filename) ;
QString command = filter.command() ;
QString codec = filter.codec() ;
contents = "" ;
if (command.compare("Z")==0 && enc) {
// Open the Encrypted UTF-8 File
int t=0 ;
while (!enc->loggedIn() && t<3) {
enc->login() ;
t++ ;
}
if (!enc->loggedIn()) {
contents = "Unable to login. Please check your login password\n" ;
return false ;
}
QByteArray text ;
if (!enc->load(filename, text)) {
contents = "Error loading file. Did you have the correct password and key\n" ;
return false ;
} else {
QTextCodec *codec = QTextCodec::codecForName("UTF-8");
QTextDecoder *decoderWithoutBom = codec->makeDecoder( QTextCodec::IgnoreHeader ) ;
contents = decoderWithoutBom->toUnicode(text) ;
return true ;
}
}
if (command.compare("-")==0) {
// Open the file
QFile file(filename);
if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
contents = "Unable to open file: " + filename + "\n\n";
return false ;
} else {
QByteArray filedata=file.readAll() ;
file.close() ;
// Attempt file load as UTF-8
QTextCodec::ConverterState state;
QTextCodec *c = QTextCodec::codecForName("UTF-8");
contents = c->toUnicode(filedata.constData(), filedata.size(), &state);
if (state.invalidChars > 0) {
// Error loading, so ask for correct Codec
codecSelectDialog.exec() ;
QString altcodec = codecSelectDialog.getSelection() ;
c = QTextCodec::codecForName(altcodec.toLatin1().data()) ;
if (c==NULL) {
contents = "Unrecognised format, or unsupported / unknown codec in ini file\n\n" ;
return false ;
} else {
contents = c->toUnicode(filedata.constData(), filedata.size(), &state);
}
}
}
return true ;
} else if (command.isEmpty()) {
// Error, No Appropriate Filter
contents = "Unsupported file type for file: " + filename + "\n" ;
contents = contents + "check that the import filter is correctly configured in the ini file\n" ;
return false ;
} else {
// Run Program to Filter Input
command = ExpandVars(command, filename, datadir) ;
QProcess myProcess ;
QStringList args = command.split( QRegularExpression(" (?=[^\"]*(\"[^\"]*\"[^\"]*)*$)") );
for (int a=0; a<args.length(); a++) {
QString entry = args.at(a) ;
entry = entry.replace("\\\"", "***REALQUOTE***") ;
entry = entry.replace("\"", "") ;
entry = entry.replace("***REALQUOTE***", "\\\"") ;
args.replace(a, entry) ;
}
QString cmd = args.at(0) ;
args.removeAt(0) ;
if (gDebugEnabled) {
warningOkDialog(0, "Debug", QString("Executing: ") + command) ;
}
myProcess.start(cmd, args) ;
myProcess.waitForFinished() ;
QByteArray filedata = myProcess.readAllStandardOutput();
QString error = myProcess.readAllStandardError() ;
// QProcess::ExitStatus status = myProcess.exitStatus() ;
myProcess.close() ;
QTextCodec *c ;
// Convert filedata contents to correct codec
if (codec.compare("auto")==0) {
bool isutf8 = true ;
for (int a=filedata.length()-1; a>0; a--) {
unsigned char ch0 = filedata.at(a-1) ;
unsigned char ch1 = filedata.at(a) ;
unsigned char ch2 = filedata.at(a+1) ;
if (ch1>127 && ch0<=127 && ch2<=127) isutf8=false ;
}
if (isutf8) {
c=QTextCodec::codecForName("UTF8") ;
} else {
c=QTextCodec::codecForLocale() ;
}
} else {
c=QTextCodec::codecForName(codec.toLatin1().data()) ;
if (codec.isEmpty() || c==NULL) c=QTextCodec::codecForName("UTF8") ;
}
contents=c->toUnicode(filedata) ;
if (!contents.isEmpty()) {
return true ;
} else {
contents = "File is empty, or error running: " + command + "\n" + error ;
return false ;
}
}
}
QString ImportFilter::ExpandVars(QString src, QString filepath, QString datadir)
{
src = src.replace("$FILEPATH", filepath) ;
src = src.replace("$APPDIR", QApplication::applicationDirPath()) ;
src = src.replace("ENDIR", datadir) ;
src = src.replace("$HOME", QStandardPaths::writableLocation(QStandardPaths::HomeLocation)) ;
src = src.replace("$CONFIG", QStandardPaths::writableLocation(QStandardPaths::HomeLocation) + "/TrumptonApps") ;
src = src.replace("$INI", inipath) ;
return src ;
}