-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.cpp
506 lines (426 loc) · 10.5 KB
/
mainwindow.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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
#include "mainwindow.h"
#include "./ui_mainwindow.h"
#include "funcData_Button.h"
#include <vector>
#include <QFileDialog>
#include <QMessageBox>
#include <QFile>
#include <QJsonDocument>
#include <QJsonObject>
#include <QStandardPaths>
/*
arg——实参(Argument)
param——形参(Parameter)
"int jsonTest(char *args, char *resmsg, char *errmsg, int readTimeout, int writeTimeout);": {
"args": [{}, [1024], [128], 15, 15]
}
func_declare: int jsonTest(char *args, char *resmsg, char *errmsg, int readTimeout, int writeTimeout);
func_name: jsonTest
func_paramList: [char *args, char *resmsg, char *errmsg, int readTimeout, int writeTimeout]
func_argList: [{}, [1024], [128], 15, 15]
func_typeRef: i_F_str_pc_pc_i_i
*/
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent), ui(new Ui::MainWindow)
{
ui->setupUi(this);
ui->splitter->setStretchFactor(0, 40);
ui->splitter->setStretchFactor(1, 60);
flowLayout = new FlowLayout();
ui->main_vLayout->insertLayout(1, flowLayout);
ui->main_vLayout->setStretch(1, 1);
ui->oeUTF8->setChecked(true);
ui->reUTF8->setChecked(true);
ui->result->setContextMenuPolicy(Qt::CustomContextMenu);
connect(ui->result, &QTextBrowser::customContextMenuRequested, [this](const QPoint &pos) {
showContextMenu(pos, ui->result);
});
}
void MainWindow::setLibrary(const QString &path)
{
ui->LibraryPath->setText(path);
}
void MainWindow::setConfig(const QString &path)
{
ui->ConfigPath->setText(path);
}
MainWindow::~MainWindow()
{
delete ui;
if (lib)
{
delete lib;
lib = nullptr;
}
for (int i{flowLayout->count()}; i > 0; i--)
{
auto *widget = flowLayout->itemAt(0)->widget();
flowLayout->removeWidget(widget);
widget->hide();
delete widget;
}
}
void MainWindow::on_oeUTF8_triggered()
{
ui->oeGBK->setChecked(false);
ui->result->append("输出编码设置为UTF-8");
}
void MainWindow::on_oeGBK_triggered()
{
ui->oeUTF8->setChecked(false);
ui->result->append("输出编码设置为GB18030");
}
void MainWindow::on_reUTF8_triggered()
{
ui->reGBK->setChecked(false);
}
void MainWindow::on_reGBK_triggered()
{
ui->reUTF8->setChecked(false);
}
QJsonObject readJsonFile(const QString &filePath)
{
QFile file(filePath);
if (!file.open(QIODevice::ReadOnly | QIODevice::Text))
{
return {};
}
QByteArray jsonData = file.readAll();
file.close();
QJsonDocument document = QJsonDocument::fromJson(jsonData);
if (document.isNull() || !document.isObject())
{
return {};
}
return document.object();
}
void removeComment(QByteArray &str)
{
QByteArray out;
bool line_comment{false};
bool block_comment{false};
for (int i = 0; i < str.size(); i++) // 先判断是否在注释中,尽量早点退出注释,负责再判断注释
{
if (block_comment)
{
if (str[i] == '*' && str[i + 1] == '/')
{
block_comment = false;
i++;
}
continue; // 在注释中,跳过
}
if (line_comment)
{
if (str[i] == '\n')
{
line_comment = false;
}
continue; // 在注释中,跳过
}
if (str[i] == '/' && str[i + 1] == '/')
{
line_comment = true;
i++;
continue;
}
if (str[i] == '/' && str[i + 1] == '*')
{
block_comment = true;
i++;
continue;
}
if (str[i] != '\n' && str[i] != '\t')
out.append(str[i]);
}
str.clear();
str = out;
}
QList<QByteArray> getExternFuncs(const QByteArray &str)
{
int start{}, end{};
for (int i = str.indexOf("extern") + 6; i < str.size(); i++)
{
if (start == 0)
{
if (str[i] == ' ')
{
continue;
}
else if (str[i] == '"' && str[i + 1] == 'C' && str[i + 2] == '"')
{
start = i + 3;
}
else
return {}; // error
}
else
{
static int inside{0};
if (str[i] == '{')
{
if (inside == 0)
start = i + 1;
else
inside++;
}
else if (str[i] == '}')
{
if (inside > 0)
inside--;
else
end = i - 1;
}
}
}
return str.mid(start, end - start).split(';');
}
QJsonObject header2Json(const QString &filePath)
{
QFile file(filePath);
if (!file.open(QIODevice::ReadOnly | QIODevice::Text))
{
return {};
}
QByteArray headStr = file.readAll();
file.close();
removeComment(headStr);
auto funcs = getExternFuncs(headStr);
QJsonObject jsonObject;
QJsonObject innerObject;
innerObject["args"] = QJsonArray(); // 创建 {"args": []}
// 使用 keyList 作为键
for (const QByteArray &func : funcs)
{
jsonObject[func] = innerObject;
}
QJsonDocument document(jsonObject);
if (document.isNull() || !document.isObject())
{
return {};
}
return document.object();
}
void MainWindow::on_LibrarySelector_clicked()
{
QString fileName = QFileDialog::getOpenFileName(
this,
tr("open a Library."),
"./",
tr("Library(*.so *.dll);;All files(*.*)"));
if (fileName.isEmpty())
{
QMessageBox::warning(this, "Warning!", "Failed to open the Library!");
}
else
{
ui->LibraryPath->setText(fileName);
}
}
void MainWindow::on_SelectLibrary_triggered()
{
on_LibrarySelector_clicked();
}
void MainWindow::on_ConfigSelector_clicked()
{
QString fileName = QFileDialog::getOpenFileName(
this,
tr("open a Config."),
"./",
tr("Config(*.json);;Header(*.h);;All files(*.*)"));
if (fileName.isEmpty())
{
QMessageBox::warning(this, "Warning!", "Failed to open the Config!");
}
else
{
ui->ConfigPath->setText(fileName);
}
}
void MainWindow::on_SelectConfig_triggered()
{
on_ConfigSelector_clicked();
}
void MainWindow::on_pB_LOAD_clicked()
{
lib = new DynamicLib(ui->LibraryPath->text().toStdString());
QJsonObject configs;
auto configPath = ui->ConfigPath->text();
if (QFileInfo(configPath).suffix() == "h")
configs = header2Json(configPath);
else
configs = readJsonFile(configPath);
if (configs.empty())
{
ui->result->setText("配置文件错误");
return;
}
ui->pB_LOAD->hide();
// ui->result->append(printJson(configs));
for (const auto &key : configs.keys())
{
// ui->result->append(key + ":" + printJson(configs[key]));
if (key == "Output Encode")
{
const auto &value = configs[key].toString();
if (value.compare("GBK", Qt::CaseInsensitive) || value.compare("GB18030", Qt::CaseInsensitive))
this->on_oeGBK_triggered();
}
auto *newPB = new funcData_Button(key, configs[key], this);
newPB->autoResize();
flowLayout->addWidget(newPB);
if (!check_funcList(newPB->func_data()->getTypeRef()))
{
QString errMsg = "没有实现的函数指针类型:" + newPB->func_data()->getTypeRef();
ui->result->append(errMsg);
newPB->setDisabled(true);
continue;
}
if (!newPB->func_loadLib(lib))
{
QString errMsg = "load function " + newPB->text() + " fail. errMsg=" + lib->getErrorMsg().c_str();
ui->result->append(errMsg);
newPB->setDisabled(true);
continue;
}
QObject::connect(newPB, &funcData_Button::leftClicked, [&](func_Data *func) {
QString msg = "Call " + func->getName();
func->loadArgs(ui->param_inputTable);
try
{
msg += func->call(ui->oeGBK->isChecked());
} catch (std::exception &e)
{
msg += " fail: ";
msg += e.what();
}
ui->result->append(msg);
});
QObject::connect(newPB, &funcData_Button::rightClicked, [&](const func_Data *func) {
func->display2table(ui->param_inputTable);
});
}
}
void MainWindow::on_Close_triggered()
{
ui->param_inputTable->clear();
ui->param_inputTable->setRowCount(0);
ui->param_inputTable->setColumnCount(0);
ui->result->clear();
if (lib)
{
delete lib;
lib = nullptr;
}
for (int i{flowLayout->count()}; i > 0; i--)
{
auto *button = qobject_cast<funcData_Button *>(flowLayout->itemAt(0)->widget());
flowLayout->removeWidget(button);
button->hide();
delete button;
}
ui->pB_LOAD->show();
}
void MainWindow::on_Save_triggered()
{
QFileInfo fileInfo{ui->ConfigPath->text()};
if (fileInfo.suffix() != "json")
{
ui->result->append("当前配置文件不是json,请选择其它保存路径");
return on_SaveAs_triggered();
}
QString filePath = fileInfo.absoluteFilePath();
QFile file(filePath);
if (!file.open(QIODevice::WriteOnly | QIODevice::Text))
{
ui->result->append("打开" + filePath + "失败");
return;
}
QJsonObject jsonObject;
for (int i{0}; i < flowLayout->count(); i++)
{
auto *button = qobject_cast<funcData_Button *>(flowLayout->itemAt(i)->widget());
button->func_data()->loadArgs(ui->param_inputTable);
auto buttonObj = button->getJsonObj();
jsonObject[std::get<0>(buttonObj)] = std::get<1>(buttonObj);
}
QByteArray data{QJsonDocument(jsonObject).toJson()};
file.write(data);
file.close();
ui->result->append(filePath + "已保存");
}
void MainWindow::on_SaveAs_triggered()
{
QString filePath = QFileDialog::getSaveFileName(
this,
tr("save as Config."),
"./",
tr("Config(*.json);;All files(*.*)"));
if (filePath.isEmpty())
{
QMessageBox::warning(this, "Warning!", "Failed to save this file!");
return;
}
QFile file(filePath);
if (!file.open(QIODevice::WriteOnly | QIODevice::Text))
{
return;
}
QJsonObject jsonObject;
for (int i{0}; i < flowLayout->count(); i++)
{
auto *button = qobject_cast<funcData_Button *>(flowLayout->itemAt(i)->widget());
auto buttonObj = button->getJsonObj();
jsonObject[std::get<0>(buttonObj)] = std::get<1>(buttonObj);
}
QByteArray data{QJsonDocument(jsonObject).toJson()};
file.write(data);
file.close();
ui->result->append(filePath + "已保存");
}
void MainWindow::on_pB_Test1_clicked()
{
static int var{1};
auto *newPB = new funcData_Button(QString::number(var++), this);
newPB->autoResize();
flowLayout->addWidget(newPB);
qDebug() << "add " << newPB;
}
void MainWindow::on_pB_Test2_clicked()
{
for (int i{flowLayout->count()}; i > 0; i--)
{
auto *widget = flowLayout->itemAt(0)->widget();
qDebug() << "remove " << widget;
flowLayout->removeWidget(widget);
widget->hide();
delete widget;
}
}
void MainWindow::on_pB_Test3_clicked()
{
#if 1
QString tempDir = QStandardPaths::writableLocation(QStandardPaths::TempLocation);
auto def_path{tempDir + "/def.cpp"};
QFile def_file(def_path);
if (!def_file.open(QIODevice::WriteOnly | QIODevice::Text))
{
ui->result->append("fail, def_path=" + def_path);
return;
}
QString tmp_map;
for (int i{0}; i < flowLayout->count(); i++)
{
auto *button = qobject_cast<funcData_Button *>(flowLayout->itemAt(i)->widget());
if (!button->isEnabled())
{
def_file.write(button->getDefParsing().toLocal8Bit());
auto typeRef = button->func_data()->getTypeRef();
tmp_map += "{\"" + typeRef + "\", " + typeRef + "_},\n\t";
}
}
def_file.write(tmp_map.toLocal8Bit());
def_file.close();
ui->result->append("success, def_path=" + def_path);
#endif
}