-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
127 lines (109 loc) · 3.31 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
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
/**
@file
@author Jan
*/
#include <QCoreApplication>
#include <QDir>
#include "httplistener.h"
#include "device-handler.h"
#ifdef __HAVE_SDRPLAY_V2__
#include "sdrplay-handler.h"
#endif
#ifdef __HAVE_SDRPLAY_V3__
#include "sdrplay-handler_v3.h"
#endif
#ifdef __HAVE_RTLSDR__
#include "rtlsdr-handler.h"
#endif
#include "radio-interface.h"
using namespace stefanfrings;
deviceHandler *findDevice () {
deviceHandler *theDevice = nullptr;
#ifdef __HAVE_RTLSDR__
try {
fprintf (stderr, "trying for rtlsdr\n");
theDevice = new rtlsdrHandler ();
return theDevice;
} catch (...) {}
#endif
#ifdef __HAVE_SDRPLAY_V2__
try {
fprintf (stderr, "trying for sdrplay\n");
theDevice = new sdrplayHandler ();
return theDevice;
} catch (...) {}
#endif
#ifdef __HAVE_SDRPLAY_V3__
try {
theDevice = new sdrplayHandler_v3 ();
return theDevice;
} catch (...) {}
#endif
return nullptr;
}
/**
Entry point of the program.
*/
int main (int argc, char *argv[]) {
deviceHandler *theDevice;
int port = 8080;
int minThreads = 1;
int maxThreads = 1;
int cleanupInterval = 60000;
int readTimeout = 60000;
int maxRequestSize = 16000;
int maxMultiPartSize = 10000000;
int opt;
const char *optionsString = "P:M:m:";
fprintf (stderr, "experimental webDAB server v0.3 \nCopyright J van Katwijk, Lazy Char Computing\nCopyrigt webServer Stefan Frings\n");
while ((opt = getopt (argc, argv, optionsString)) != -1) {
switch (opt) {
case 'P': port = atoi (optarg);
break;
case 'M': maxThreads = atoi (optarg);
break;
case 'm': minThreads = atoi (optarg);
break;
default:
break;
}
}
if (maxThreads < minThreads)
maxThreads = minThreads;
if ((minThreads < 1) || (maxThreads < 1)) {
minThreads = 1;
maxThreads = 1;
}
QCoreApplication app (argc,argv);
app. setApplicationName ("webDab");
app. setOrganizationName ("Lazy Chair Computing");
QString configFileName = QDir::homePath ();
configFileName. append ("/");
configFileName. append (".webDab.ini");
// Configure the DAB settings
QSettings* dabSettings =
new QSettings (configFileName, QSettings::IniFormat,&app);
// Configure and start the TCP listener
QSettings* listenerSettings =
new QSettings (configFileName, QSettings::IniFormat,&app);
listenerSettings -> setValue ("port", port);
listenerSettings -> setValue ("readTimeout", readTimeout);
listenerSettings -> setValue ("minThreads", minThreads);
listenerSettings -> setValue ("cleanupInterval",
cleanupInterval);
listenerSettings -> setValue ("maxThreads", maxThreads);
listenerSettings -> setValue ("maxRequestSize",
maxRequestSize);
listenerSettings -> setValue ("maxMultiPartSize",
maxMultiPartSize);
theDevice = findDevice ();
if (theDevice == nullptr) {
fprintf (stderr, "server cannot work without device\n");
exit (1);
}
new HttpListener (listenerSettings,
new radioInterface (theDevice, dabSettings, &app), &app);
qInfo ("Application has started");
app. exec();
qInfo("Application has stopped");
}