-
Notifications
You must be signed in to change notification settings - Fork 25
/
main.cpp
241 lines (205 loc) · 6.03 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
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
/*
* This file is part of the SmuView project.
*
* Copyright (C) 2012 Joel Holdsworth <[email protected]>
* Copyright (C) 2017-2021 Frank Stettner <[email protected]>
*
* This program 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 <getopt.h>
#include <memory>
#include <unistd.h>
#include <libsigrokcxx/libsigrokcxx.hpp>
#include <QDateTime>
#include <QDebug>
#include <QSettings>
#include "config.h"
#include "src/application.hpp"
#include "src/devicemanager.hpp"
#include "src/session.hpp"
#include "src/settingsmanager.hpp"
#include "src/mainwindow.hpp"
#include "src/ui/tabs/smuscripttab.hpp"
#ifdef ENABLE_SIGNALS
#include "signalhandler.hpp"
#endif
#ifdef _WIN32
#include <QtPlugin>
Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
Q_IMPORT_PLUGIN(QSvgPlugin)
#endif
using std::exception;
using std::make_shared;
using std::shared_ptr;
using std::string;
using std::vector;
void usage()
{
fprintf(stdout,
"Usage:\n"
" %s [OPTIONS] [FILE]\n"
"\n"
"Help Options:\n"
" -h, -?, --help Show help option\n"
"\n"
"Application Options:\n"
" -V, --version Show release version\n"
" -l, --loglevel Set libsigrok loglevel (0-5, default: 2)\n"
" -d, --driver Specify the device driver(s) to use\n"
" -D, --dont-scan Don't auto-scan for devices, use -d spec only\n"
" -s, --script Specify the SmuScript to load and execute\n"
" -c, --clean Don't restore previous settings on startup\n"
/* Disable cmd line options i and I
" -i, --input-file Load input from file\n"
" -I, --input-format Input format\n"
*/
"\n"
"Examples:\n"
" %s --driver tecpel-dmm-8061-ser:conn=/dev/ttyUSB0\n"
"\n"
" %s --driver uni-t-ut61e:conn=1a86.e008\n"
"\n"
" %s --driver voltcraft-k204:conn=/dev/ttyUSB0 \\\n"
" --driver uni-t-ut61d:conn=1a86.e008 \\\n"
" --driver uni-t-ut61e-ser:conn=/dev/ttyUSB1\n",
SV_BIN_NAME, SV_BIN_NAME, SV_BIN_NAME, SV_BIN_NAME);
}
int main(int argc, char *argv[])
{
int ret = 0;
shared_ptr<sigrok::Context> context;
int loglevel = -1;
vector<string> drivers;
//string open_file;
//string open_file_format;
bool do_scan = true;
string script_file;
bool restore_settings = true;
Application app(argc, argv);
// Parse arguments
while (true) {
static const struct option long_options[] = {
{ "help", no_argument, nullptr, 'h' },
{ "version", no_argument, nullptr, 'V' },
{ "loglevel", required_argument, nullptr, 'l' },
{ "driver", required_argument, nullptr, 'd' },
{ "dont-scan", no_argument, nullptr, 'D' },
{ "script", required_argument, nullptr, 's' },
{ "clean", no_argument, nullptr, 'c' },
/* Disable cmd line options i and I
{ "input-file", required_argument, nullptr, 'i' },
{ "input-format", required_argument, nullptr, 'I' },
*/
{ nullptr, 0, nullptr, 0 }
};
/* Disable cmd line options i and I
const int arg_char = getopt_long(argc, argv,
"l:Vhc?d:i:I:", long_options, nullptr);
*/
const int arg_char = getopt_long(argc, argv,
"h?VDl:d:s:c", long_options, nullptr);
if (arg_char == -1)
break;
switch (arg_char) {
case 'h':
case '?':
usage();
return 0;
case 'V':
// Print version info
fprintf(stdout, "%s %s\n", SV_TITLE, SV_VERSION_STRING);
return 0;
case 'l':
{
loglevel = atoi(optarg);
if (loglevel >= 5) {
const QSettings settings;
qDebug() << "Settings:" << settings.fileName()
<< "format" << settings.format();
}
break;
}
case 'd':
drivers.push_back(optarg);
break;
case 'D':
do_scan = false;
break;
case 's':
script_file = optarg;
break;
case 'c':
restore_settings = false;
break;
/* Disable cmd line options i and I
case 'i':
open_file = optarg;
break;
case 'I':
open_file_format = optarg;
break;
*/
}
}
/* Disable cmd line options i and I
if (argc - optind > 1) {
fprintf(stderr, "Only one file can be opened.\n");
return 1;
}
if (argc - optind == 1)
open_file = argv[argc - 1];
*/
// Initialise libsigrok
context = sigrok::Context::create();
sv::Session::sr_context = context;
do {
try {
if (loglevel >= 0)
context->set_log_level(sigrok::LogLevel::get(loglevel));
sv::SettingsManager::set_restore_settings(restore_settings);
// Initialize global start timestamp
// TODO: use std::chrono / std::time
sv::Session::session_start_timestamp =
(double)QDateTime::currentMSecsSinceEpoch() / (double)1000;
// Create the device manager, initialise the drivers
sv::DeviceManager device_manager(context, drivers, do_scan);
// Initialise the session.
auto session = make_shared<sv::Session>(device_manager);
// Initialise the main window.
sv::MainWindow main_window(device_manager, session);
main_window.show();
if (!script_file.empty())
main_window.add_smuscript_tab(script_file)->run_script();
#ifdef ENABLE_SIGNALS
if (SignalHandler::prepare_signals()) {
SignalHandler *const handler = new SignalHandler(&main_window);
QObject::connect(handler, &SignalHandler::int_received,
&main_window, &sv::MainWindow::close);
QObject::connect(handler, &SignalHandler::term_received,
&main_window, &sv::MainWindow::close);
}
else {
qWarning() << "Could not prepare signal handler.";
}
#endif
// Run the application
ret = Application::exec();
}
catch (exception &e) {
qCritical() << "main() failed: " << e.what();
}
}
while (false);
return ret;
}