-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaudio-trap.cpp
111 lines (105 loc) · 3.5 KB
/
audio-trap.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
/**
* Program that listens to an audio input device and records audio to file if a threshold is exceeded.
* Program has an in built UI that allow monitoring and configuring. use --ui option to launch it.
*/
#include <QApplication>
#include <QCommandLineParser>
#include <QtGlobal>
#include <unistd.h>
#include <stdio.h>
#include <syslog.h>
#include "audiotraprecorder.h"
#include "audiotrapmainwindow.h"
#include "handle_signals.h"
void appMsgHandler(QtMsgType type, const QMessageLogContext &context, const QString &msg);
void printMsg(QString msg);
int sig_clean_up(int signum);
static QPointer<AudioTrapMainWindow> windowPtr = nullptr;
/**
* Setup application meta then run AudioTrapRecorder.
*/
int main(int argc, char *argv[]) {
handle_signals(sig_clean_up);
qInstallMessageHandler(appMsgHandler);
QApplication::setOrganizationName("audio-trap");
QApplication::setApplicationName("audio-trap");
QApplication a(argc, argv);
QCoreApplication::setApplicationVersion("1.0");
QCommandLineParser parser;
parser.setApplicationDescription("Audio Trap");
parser.addHelpOption();
parser.addVersionOption();
QCommandLineOption uiModeOption("ui", QCoreApplication::translate("main", "Launch UI, write messages to UI instead of CLI"));
parser.addOption(uiModeOption);
parser.process(a);
bool uiMode = parser.isSet(uiModeOption);
AudioTrapRecorder recorder;
AudioTrapMainWindow window(recorder);
if(uiMode) {
windowPtr = QPointer<AudioTrapMainWindow>(&window);
window.show();
}
else {
qDebug() << "Activating Audio Trap";
recorder.activate();
}
return a.exec();
}
/**
* Terminal signal clean up callback.
* Only called with signals handle_signals() determines are terminal.
* For some call qApp->quit() before quitting to allow Qt app to clean itself up the Qt way.
* Returning 1 from this function will make handle_signals() return to program flow to allow Qt quit.
* @see handle_signals.c
*/
int sig_clean_up(int signum) {
int cont = 0;
static int continued = 0;
if(signum == SIGBUS || signum == SIGFPE || signum == SIGILL || signum == SIGSEGV) {
write(STDERR_FILENO, "Abnormal Termination.\n", 22);
}
else if(qApp) {
qApp->quit();
cont = 1;
}
if(continued) {
cont = 0;
}
continued = 1;
return cont;
}
/**
* Simple pipe to syslog. Default Qt fatal generates a core dump and terminates.
* Termination is handy, maintain that. If you want a core dump use SIGABRT.
* @todo qFatal() still terminates app abruptly so qApp->quit() is a null op!
*/
void appMsgHandler(QtMsgType type, const QMessageLogContext &context, const QString &msg) {
(void)(context);
switch (type) {
case QtDebugMsg:
printMsg(QString("%1").arg(msg)); // .arg(context.file).arg(context.line).arg(context.function));
break;
#if (QT_VERSION >= QT_VERSION_CHECK(5, 5, 0))
case QtInfoMsg:
printMsg(QString("INFO: %1").arg(msg));
break;
#endif
case QtWarningMsg:
printMsg(QString("WARNING: %1").arg(msg));
break;
case QtCriticalMsg:
printMsg(QString("CRITICAL: %1").arg(msg));
break;
case QtFatalMsg:
printMsg(QString("FATAL: %1").arg(msg));
abort();
}
}
void printMsg(QString msg) {
if(windowPtr.isNull()) {
fprintf(stderr, "%s\n", msg.toLocal8Bit().constData());
}
else if(windowPtr->isVisible()) {
windowPtr->addMessage(msg);
}
}