-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmain.cpp
73 lines (59 loc) · 2.65 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
#include "defs.h"
#include <QApplication>
#include <QQmlApplicationEngine>
#include "cffflashcontainer.h"
#include "cffflashheader.h"
#include "cffflashdescriptionheader.h"
#include "cffflashdatablock.h"
#include "cffflashdatablocksmodel.h"
#include "cffflashsegment.h"
#include "cffflashsegmentmodel.h"
int main(int argc, char *argv[])
{
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
#endif
QApplication app(argc, argv);
app.setApplicationName("CFFFlashFileTools");
app.setApplicationVersion("0.1_alpha");
app.setOrganizationName("xplatforms");
qRegisterMetaType<uint32_t>("uint32_t");
qmlRegisterType<CFFFlashContainer>("xplatforms.cffflashcontainer.container", 1, 0, "CFFFlashContainer");
qmlRegisterType<CFFFlashHeader>("xplatforms.cffflashcontainer.flashheader", 1, 0, "CFFFlashHeader");
qmlRegisterType<CFFFlashDataBlock>("xplatforms.cffflashcontainer.flashblock", 1, 0, "CFFFlashDataBlock");
qmlRegisterType<CFFFlashSegment>("xplatforms.cffflashcontainer.flashsegment", 1, 0, "CFFFlashSegment");
qmlRegisterType<CFFFlashDataBlocksModel>("xplatforms.cffflashcontainer.flashblocksmodel", 1, 0, "CFFFlashDataBlocksModel");
qmlRegisterType<CFFFlashSegmentModel>("xplatforms.cffflashcontainer.flashsegmentmodel", 1, 0, "CFFFlashSegmentModel");
QQmlApplicationEngine engine;
const QUrl url(QStringLiteral("qrc:/qml/main.qml"));
QObject::connect(&engine, &QQmlApplicationEngine::objectCreated,
&app, [url](QObject *obj, const QUrl &objUrl) {
if (!obj && url == objUrl)
QCoreApplication::exit(-1);
}, Qt::QueuedConnection);
engine.load(url);
return app.exec();
}
/*
auto cff = CFFFlashContainer::openCaesarFlashContainer("c:\\Dev\\2194470151_001.cff", obj);
auto header = cff->readHeader();
auto cff_header = cff->readCFFHeader();
auto cff_chksum = cff->readChecksum();
auto cff_calc_chksum = cff->genChecksum();
auto cff_flash_header = cff->readFlashCFF();
auto ctf_header = cff->readCTF();
qDbg() << " foreach data bloc";
foreach(auto db, cff_flash_header->FlashDataBlocks())
{
foreach(auto segment, db->FlashSegments())
{
qDbg() << "Segment: " << segment->SegmentName();
QFile seg_file("c:\\Dev\\MB\\"+segment->SegmentName()+".flash");
if(seg_file.open(QIODevice::WriteOnly))
{
seg_file.write(segment->readFlashSegment());
seg_file.close();
}
}
}*/
//foreach(auto db , cff_flash_header->)