-
Notifications
You must be signed in to change notification settings - Fork 5
/
main.cpp
98 lines (85 loc) · 3.12 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
/*
Packet Dump Decode (pdd) - Decode a packet hex dump
Copyright (C) Srivats P.
This file is part of Packet Dump Decode (pdd)
This 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 <QApplication>
#include <QSettings>
#include <QMessageBox>
#include "common.h"
#include "pktdumpdecode.h"
QSettings *qAppSettings;
int main(int argc, char *argv[])
{
bool snifferVerified = true;
bool textViewerVerified = true;
int status;
PktView *pktView;
QApplication app(argc, argv);
qAppSettings = new QSettings(QString("%1/%2").arg(
QCoreApplication::applicationDirPath()).arg("pdd.ini"),
QSettings::IniFormat);
if (!qAppSettings->contains("TextViewer"))
{
// Try to auto-locate the default text viewer, otherwise inform user
if (QFile::exists(kDefaultTextViewer) &&
(QFile::permissions(kDefaultTextViewer) & QFile::ExeUser))
{
qAppSettings->setValue("TextViewer", kDefaultTextViewer);
}
else
{
textViewerVerified = false;
QMessageBox::information(NULL, "Text Viewer not found",
"Packet Dump Decode could not auto-locate a text viewer"
" application. Please configure location manually in the"
" 'Settings' dialog (You will not be able to decode to"
" XML)\n\nNOTE: Normal decoding will still work!");
}
}
if (!qAppSettings->contains("Sniffer") || !qAppSettings->contains("SnifferDir"))
{
// Try to auto-locate Wireshark, then Ethereal otherwise inform user
if (QFile::exists(kDefaultWiresharkDir+"/tshark"+kExt) &&
QFile::exists(kDefaultWiresharkDir+"/text2pcap"+kExt) &&
QFile::exists(kDefaultWiresharkDir+"/wireshark"+kExt))
{
qAppSettings->setValue("Sniffer", "Wireshark");
qAppSettings->setValue("SnifferDir", kDefaultWiresharkDir);
}
else if (QFile::exists(kDefaultEtherealDir+"/tethereal"+kExt) &&
QFile::exists(kDefaultEtherealDir+"/text2pcap"+kExt) &&
QFile::exists(kDefaultEtherealDir+"/ethereal"+kExt))
{
qAppSettings->setValue("Sniffer", "Ethereal");
qAppSettings->setValue("SnifferDir", kDefaultEtherealDir);
}
else
{
snifferVerified = false;
QMessageBox::information(NULL, "Sniffer not found",
"Packet Dump Decode could not auto-locate either Wireshark"
" or Ethereal. Please configure location manually in the"
" 'Settings' dialog\n\nNOTE: Packet Dump Decode needs either"
" Wireshark or Ethereal installed to be able to work");
}
}
pktView = new PktView;
pktView->snifferVerified(snifferVerified);
pktView->textViewerVerified(textViewerVerified);
pktView->setWindowFlags(Qt::Window);
pktView->show();
status = app.exec();
delete qAppSettings;
return status;
}