-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdrive.cpp
More file actions
305 lines (240 loc) · 7.45 KB
/
drive.cpp
File metadata and controls
305 lines (240 loc) · 7.45 KB
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
#include "drive.h"
#include "driveworker.h"
#include "settings.h"
#include "future.h"
#include <QDebug>
#define WORKER_THREAD_WAIT_MAX 1000000UL
Drive::Drive(QObject *parent) : QObject(parent)
{
worker = new DriveWorker();
connect(worker, &DriveWorker::errorOccured, this, &Drive::errorOccured);
connect(worker, &DriveWorker::information, this, &Drive::information);
connect(worker, &DriveWorker::connected, this, &Drive::connected);
connect(worker, &DriveWorker::disconnected, this, &Drive::disconnected);
connect(worker, &DriveWorker::updated, this, &Drive::updated);
connect(worker, &DriveWorker::driveErrorOccured, this, &Drive::driveErrorOccured);
connect(this, &Drive::connectToDevice, worker, &DriveWorker::connectToDevice);
connect(this, &Drive::disconnectFromDevice, worker, &DriveWorker::disconnectFromDevice);
connect(this, &Drive::setRunning, worker, &DriveWorker::setRunning);
connect(this, &Drive::start, worker, &DriveWorker::startDrive);
connect(this, &Drive::stop, worker, &DriveWorker::stopDrive);
connect(this, &Drive::emergencyStop, worker, &DriveWorker::emergencyStopDrive);
connect(this, &Drive::reboot, worker, &DriveWorker::rebootDrive);
connect(this, &Drive::setReference, worker, &DriveWorker::setReference);
connect(this, &Drive::clearErrors, worker, &DriveWorker::clearErrors);
connect(this, &Drive::clearEvents, worker, &DriveWorker::clearEvents);
connect(this, &Drive::makeStatusEvent, worker, &DriveWorker::makeStatusEvent);
connect(this, &Drive::calibratePower, worker, &DriveWorker::calibratePower);
connect(this, &Drive::saveParams, worker, &DriveWorker::saveParams);
connect(this, &Drive::setDateTime, worker, &DriveWorker::setDateTime);
connect(this, &Drive::doutUserOn, worker, &DriveWorker::doutUserOn);
connect(this, &Drive::doutUserOff, worker, &DriveWorker::doutUserOff);
connect(this, &Drive::doutUserToggle, worker, &DriveWorker::doutUserToggle);
connect(this, &Drive::resetFanRuntime, worker, &DriveWorker::resetFanRuntime);
connect(this, &Drive::selftune, worker, &DriveWorker::selftune);
connect(this, &Drive::readNextParams, worker, &DriveWorker::readNextParams);
connect(this, &Drive::writeNextParams, worker, &DriveWorker::writeNextParams);
connect(this, &Drive::doReadEvents, worker, &DriveWorker::readEvents);
connect(this, &Drive::doReadOscillograms, worker, &DriveWorker::readOscillograms);
connect(this, &Drive::doReadSelectedOscillograms, worker, &DriveWorker::readSelectedOscillograms);
connect(this, &Drive::doReadOscillogramsList, worker, &DriveWorker::readOscillogramsList);
connect(this, &Drive::doClearReadedOscillograms, worker, &DriveWorker::clearReadedOscillograms);
}
Drive::~Drive()
{
stopWorkerThread();
delete worker;
}
bool Drive::setup()
{
stopWorkerThread();
if(!worker->setup()) return false;
startWorkerThread();
return true;
}
bool Drive::good()
{
return worker->good();
}
bool Drive::connectedToDevice() const
{
return worker->connectedToDevice();
}
float Drive::reference() const
{
return worker->reference();
}
bool Drive::running() const
{
return worker->running();
}
drive_state_t Drive::state() const
{
return worker->state();
}
unsigned int Drive::devLifetime() const
{
return worker->devLifetime();
}
unsigned int Drive::devRuntime() const
{
return worker->devRuntime();
}
unsigned int Drive::devFanRuntime() const
{
return worker->devFanRuntime();
}
unsigned int Drive::devLastRuntime() const
{
return worker->devLastRuntime();
}
drive_errors_t Drive::errors() const
{
return worker->errors();
}
drive_warnings_t Drive::warnings() const
{
return worker->warnings();
}
drive_power_errors_t Drive::powerErrors() const
{
return worker->powerErrors();
}
drive_power_warnings_t Drive::powerWarnings() const
{
return worker->powerWarnings();
}
drive_phase_errors_t Drive::phaseErrors() const
{
return worker->phaseErrors();
}
QList<DriveEvent> Drive::events() const
{
return worker->events();
}
QList<DriveOscillogram> Drive::oscillograms() const
{
return worker->oscillograms();
}
QList<drive_event_id_t> Drive::oscillogramsList() const
{
return worker->oscillogramsList();
}
size_t Drive::oscillogramsCount() const
{
return worker->oscillogramsCount();
}
DriveOscillogram Drive::oscillogram(size_t index) const
{
return worker->oscillogram(index);
}
void Drive::addOscillogram(const DriveOscillogram& osc)
{
worker->addOscillogram(osc);
}
void Drive::addUpdParam(Parameter *param)
{
worker->addUpdParam(param);
}
void Drive::removeUpdParam(Parameter *param)
{
worker->removeUpdParam(param);
}
Future *Drive::readParams(QList<Parameter *> ¶ms)
{
Future* future = new Future();
future->moveToThread(worker);
worker->addReadParams(params, future);
connect(worker, &DriveWorker::finished, future, &Future::deleteLater);
emit readNextParams();
return future;
}
Future *Drive::writeParams(QList<Parameter *> ¶ms)
{
Future* future = new Future();
future->moveToThread(worker);
worker->addWriteParams(params, future);
connect(worker, &DriveWorker::finished, future, &Future::deleteLater);
emit writeNextParams();
return future;
}
Future *Drive::readEvents()
{
Future* future = new Future();
future->moveToThread(worker);
connect(worker, &DriveWorker::finished, future, &Future::deleteLater);
emit doReadEvents(future);
return future;
}
Future *Drive::readOscillograms()
{
Future* future = new Future();
future->moveToThread(worker);
connect(worker, &DriveWorker::finished, future, &Future::deleteLater);
emit doReadOscillograms(future);
return future;
}
Future*Drive::readSelectedOscillograms(QList<size_t> osc_list)
{
Future* future = new Future();
future->moveToThread(worker);
connect(worker, &DriveWorker::finished, future, &Future::deleteLater);
emit doReadSelectedOscillograms(future, osc_list);
return future;
}
Future *Drive::readOscillogramsList()
{
Future* future = new Future();
future->moveToThread(worker);
connect(worker, &DriveWorker::finished, future, &Future::deleteLater);
emit doReadOscillogramsList(future);
return future;
}
Future *Drive::clearReadedOscillograms()
{
Future* future = new Future();
future->moveToThread(worker);
connect(worker, &DriveWorker::finished, future, &Future::deleteLater);
emit doClearReadedOscillograms(future);
return future;
}
QString Drive::errorToString(drive_error_t err)
{
switch(err){
default:
case DRIVE_ERROR_NONE:
return QString("DRIVE_ERROR_NONE");
case DRIVE_ERROR_POWER_DATA_NOT_AVAIL:
return QString("DRIVE_ERROR_POWER_DATA_NOT_AVAIL");
case DRIVE_ERROR_POWER_INVALID:
return QString("DRIVE_ERROR_POWER_INVALID");
case DRIVE_ERROR_EMERGENCY_STOP:
return QString("DRIVE_ERROR_EMERGENCY_STOP");
case DRIVE_ERROR_PHASE:
return QString("DRIVE_ERROR_PHASE");
}
return QString();
}
QStringList Drive::errorsToString(drive_errors_t errs)
{
QStringList list;
while(errs != 0){
if(errs & 0x1)
list << errorToString(static_cast<drive_error_t>(errs & 0x1));
errs >>= 1;
}
return list;
}
void Drive::startWorkerThread()
{
if(!worker->isRunning()){
worker->start();
}
}
void Drive::stopWorkerThread()
{
if(worker->isRunning()){
worker->quit();
worker->wait(WORKER_THREAD_WAIT_MAX);
}
}