forked from dresden-elektronik/deconz-ota-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
std_otau_widget.cpp
464 lines (387 loc) · 12.5 KB
/
std_otau_widget.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
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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
#include <QDebug>
#include <QDir>
#include <QFileDialog>
#include <QTimer>
#include <QSortFilterProxyModel>
#include <stdint.h>
#include "std_otau_widget.h"
#include "std_otau_plugin.h"
#include "otau_file_loader.h"
#include "otau_model.h"
#include "otau_node.h"
#include "ui_std_otau_widget.h"
#define UNLIMITED_WATING_TIME 0xfffffffful
StdOtauWidget::StdOtauWidget(QWidget *parent) :
QWidget(parent),
ui(new Ui::StdOtauWidget)
{
ui->setupUi(this);
// OTAU update tab
m_ouNode = nullptr;
connect(ui->ou_queryButton, SIGNAL(clicked()),
this, SLOT(queryClicked()));
connect(ui->ou_abortButton, SIGNAL(clicked()),
this, SLOT(abortClicked()));
connect(ui->ou_updateButton, SIGNAL(clicked()),
this, SLOT(updateClicked()));
connect(ui->ou_fileSelectButton, SIGNAL(clicked()),
this, SLOT(fileSelectClicked()));
connect(ui->tableView, SIGNAL(clicked(QModelIndex)),
this, SLOT(otauTableActivated(QModelIndex)));
// OTAU file tab
connect(ui->saveButton, SIGNAL(clicked()),
this, SLOT(saveClicked()));
connect(ui->saveAsButton, SIGNAL(clicked()),
this, SLOT(saveAsClicked()));
connect(ui->openButton, SIGNAL(clicked()),
this, SLOT(openClicked()));
ui->tableView->setSortingEnabled(true);
ui->tableView->setStyleSheet("QTableView::item { border: 0px; padding-left: 2px; padding-right: 2px; padding-top: 0px; padding-bottom: 0px; }");
}
StdOtauWidget::~StdOtauWidget()
{
delete ui;
}
void StdOtauWidget::setOtauModel(OtauModel *model)
{
if (!proxyModel)
{
proxyModel = new QSortFilterProxyModel(this);
proxyModel->setDynamicSortFilter(true);
}
proxyModel->setSourceModel(model);
ui->tableView->setModel(proxyModel);
connect(model, &OtauModel::rowsInserted, [this, model](const QModelIndex &, int, int) {
if (model->rowCount(QModelIndex()) == 1)
{
// adjust columns
ui->tableView->resizeColumnToContents(OtauModel::SectionAddress);
ui->tableView->resizeColumnToContents(OtauModel::SectionManufacturer);
ui->tableView->resizeColumnToContents(OtauModel::SectionImageType);
ui->tableView->resizeColumnToContents(OtauModel::SectionSoftwareVersion);
ui->tableView->resizeColumnToContents(OtauModel::SectionProgress);
ui->tableView->resizeColumnToContents(OtauModel::SectionDuration);
}
ui->tableView->isSortingEnabled();
ui->tableView->sortByColumn(0, Qt::AscendingOrder);
});
}
uint StdOtauWidget::restartTime()
{
if (ui->restartAfterUpgradeCheckbox->isChecked())
{
return ui->restartAfterUpgradeSpinBox->value();
}
return UNLIMITED_WATING_TIME;
}
void StdOtauWidget::queryClicked()
{
if (m_ouNode)
{
emit unicastImageNotify(m_ouNode->address());
}
}
void StdOtauWidget::abortClicked()
{
if (m_ouNode)
{
m_ouNode->setPermitUpdate(false);
m_ouNode->setState(OtauNode::NodeAbort);
}
}
void StdOtauWidget::updateClicked()
{
deCONZ::ApsController *apsCtrl = deCONZ::ApsController::instance();
if (!apsCtrl)
{
return;
}
// if otau is not activated yet do it here since thats what the user expects
if (apsCtrl->getParameter(deCONZ::ParamOtauActive) == 0)
{
if (!apsCtrl->setParameter(deCONZ::ParamOtauActive, 1))
{
DBG_Printf(DBG_OTA, "failed to enable otau server\n");
}
}
if (m_ouNode)
{
m_ouNode->setState(OtauNode::NodeIdle);
if (m_ouNode->hasData())
{
m_ouNode->setPermitUpdate(true);
emit unicastImageNotify(m_ouNode->address());
}
}
}
void StdOtauWidget::fileSelectClicked()
{
if (m_ouNode)
{
QString dirpath;
if (!m_path.isEmpty())
{
QFileInfo fi(m_path);
dirpath = fi.dir().absolutePath();
}
if (dirpath.isEmpty())
{
QString defaultImgPath = deCONZ::getStorageLocation(deCONZ::HomeLocation) + "/otau";
dirpath = deCONZ::appArgumentString("--otau-img-path", defaultImgPath);
}
QString path = QFileDialog::getOpenFileName(this,
"Select a firmware file",
dirpath,
"Firmware (*.zigbee *.ota.signed *.ota *.fw2 *.sbl-ota)");
if (path.isEmpty())
{
clearSettingsBox();
}
else
{
OtauFileLoader ld;
if (ld.readFile(path, m_ouNode->file))
{
m_ouNode->setHasData(true);
m_ouNode->lastActivity.restart();
updateSettingsBox();
}
else
{
clearSettingsBox();
}
}
}
}
bool StdOtauWidget::acksEnabled() const
{
return ui->useAcksCheckBox->isChecked();
}
bool StdOtauWidget::pageRequestEnabled() const
{
return ui->usePageRequestCheckBox->isChecked();
}
int StdOtauWidget::packetSpacingMs() const
{
return ui->spacingSpinBox->value();
}
void StdOtauWidget::setPacketSpacingMs(int spacing)
{
ui->spacingSpinBox->setValue(spacing);
}
void StdOtauWidget::stateChanged(int state)
{
if (state == StdOtauPlugin::StateDisabled)
{
ui->labelOtauState->setText(tr("OTAU disabled"));
}
else if (state == StdOtauPlugin::StateDisabled)
{
ui->labelOtauState->setText(tr("OTAU wait sensors idle"));
}
else
{
ui->labelOtauState->setText(tr("OTAU enabled"));
}
}
void StdOtauWidget::clearSettingsBox()
{
ui->ou_fileEdit->setText(QString());
ui->ou_fileVersionEdit->setText("0x00000000");
ui->ou_fileVersionEdit->setToolTip(QString());
ui->ou_imageTypeEdit->setText("0x0000");
ui->ou_manufacturerEdit->setText("0x0000");
ui->ou_SizeEdit->setText("0x00000000");
}
void StdOtauWidget::updateSettingsBox()
{
if (m_ouNode)
{
if (m_ouNode->hasData())
{
const OtauFile &of = m_ouNode->file;
ui->ou_fileEdit->setText(of.path);
QString str = "0x" + QString("%1").arg(of.fileVersion, 8, 16, QLatin1Char('0')).toUpper();
ui->ou_fileVersionEdit->setText(str);
QString version;
if (of.fileVersion != 0)
{
version = QString("%1.%2 build %3").arg((of.fileVersion & 0xF0000000U) >> 28).arg((of.fileVersion & 0x0FF00000U) >> 20).arg((of.fileVersion & 0x000FFFFFU));
}
ui->ou_fileVersionEdit->setToolTip(version);
str = "0x" + QString("%1").arg(of.imageType, 4, 16, QLatin1Char('0')).toUpper();
ui->ou_imageTypeEdit->setText(str);
str = "0x" + QString("%1").arg(of.manufacturerCode, 4, 16, QLatin1Char('0')).toUpper();
ui->ou_manufacturerEdit->setText(str);
str = "0x" + QString("%1 (%2 kB)").arg(of.totalImageSize, 8, 16, QLatin1Char('0')).arg(of.totalImageSize / 1014).toUpper();
ui->ou_SizeEdit->setText(str);
}
else
{
clearSettingsBox();
}
}
}
void StdOtauWidget::otauTableActivated(const QModelIndex &index)
{
if (index.isValid())
{
emit activatedNodeAtRow(proxyModel->mapToSource(index).row());
}
}
void StdOtauWidget::saveClicked()
{
if (m_path.endsWith(".bin"))
{
m_path.replace(".bin", ".zigbee");
ui->fileNameLabel->setText(m_path);
}
else if (m_path.endsWith(".bin.GCF"))
{
m_path.replace(".bin.GCF", ".zigbee");
ui->fileNameLabel->setText(m_path);
}
else if (m_path.endsWith(".GCF"))
{
m_path.replace(".GCF", ".zigbee");
ui->fileNameLabel->setText(m_path);
}
m_editOf.fileVersion = ui->of_FileVersionEdit->text().toUInt(nullptr, 16);
m_editOf.headerVersion = ui->of_headerVersionEdit->text().toUShort(nullptr, 16);
m_editOf.imageType = ui->of_imageTypeEdit->text().toUShort(nullptr, 16);
m_editOf.manufacturerCode = ui->of_manufacturerEdit->text().toUShort(nullptr, 16);
m_editOf.zigBeeStackVersion = ui->of_zigbeeStackVersionEdit->text().toUShort(nullptr, 16);
// TODO: description
// preserve sub element "upgrade image"
OtauFile::SubElement subImage;
{
std::list<OtauFile::SubElement>::iterator it = m_editOf.subElements.begin();
std::list<OtauFile::SubElement>::iterator end = m_editOf.subElements.end();
for (;it != end; ++it)
{
if (it->tag == TAG_UPGRADE_IMAGE)
{
subImage = *it;
}
}
}
// clean all elements
m_editOf.subElements.clear();
// restore upgrade image as first sub element
m_editOf.subElements.push_back(subImage);
OtauFileLoader ld;
if (!ld.saveFile(m_path, m_editOf))
{
}
}
void StdOtauWidget::saveAsClicked()
{
}
void StdOtauWidget::openClicked()
{
QString path;
if (!m_path.isEmpty())
{
QFileInfo fi(m_path);
path = fi.dir().absolutePath();
}
if (path.isEmpty())
{
QString defaultImgPath = deCONZ::getStorageLocation(deCONZ::HomeLocation) + "/otau";
path = deCONZ::appArgumentString("--otau-img-path", defaultImgPath);
}
m_path = QFileDialog::getOpenFileName(this,
tr("Select a firmware file"),
path,
"Firmware (*.GCF *.bin *.zigbee *.ota.signed *.ota *.fw2 *.sbl-ota)");
if (!m_path.isEmpty())
{
OtauFileLoader ld;
if (ld.readFile(m_path, m_editOf))
{
ui->fileNameLabel->setText(m_path);
updateEditor();
}
else
{
ui->fileNameLabel->setText(tr("Invalid file"));
}
}
}
void StdOtauWidget::displayNode(OtauNode *node)
{
m_ouNode = node;
if (node)
{
updateSettingsBox();
if (node->lastQueryTime().isValid())
{
ui->lastQueryLabel->setText(node->lastQueryTime().toString("hh:mm:ss"));
}
else
{
ui->lastQueryLabel->setText(tr("None"));
}
}
else
{
ui->lastQueryLabel->setText(tr("None"));
clearSettingsBox();
}
}
void StdOtauWidget::displayNode(OtauNode *node, const QModelIndex &index)
{
ui->tableView->selectRow(proxyModel->mapFromSource(index).row());
displayNode(node);
}
void StdOtauWidget::clearNode()
{
ui->tableView->clearSelection();
displayNode(nullptr);
}
void StdOtauWidget::updateEditor()
{
QString str;
str = "0x" + QString("%1").arg(m_editOf.fileVersion, 8, 16, QLatin1Char('0')).toUpper();
ui->of_FileVersionEdit->setText(str);
str = "0x" + QString("%1").arg(m_editOf.headerVersion, 4, 16, QLatin1Char('0')).toUpper();
ui->of_headerVersionEdit->setText(str);
str = "0x" + QString("%1").arg(m_editOf.imageType, 4, 16, QLatin1Char('0')).toUpper();
ui->of_imageTypeEdit->setText(str);
str = "0x" + QString("%1").arg(m_editOf.manufacturerCode, 4, 16, QLatin1Char('0')).toUpper();
ui->of_manufacturerEdit->setText(str);
str = "0x" + QString("%1").arg(m_editOf.zigBeeStackVersion, 4, 16, QLatin1Char('0')).toUpper();
ui->of_zigbeeStackVersionEdit->setText(str);
QString descr;
for (size_t i = 0; i < sizeof(m_editOf.headerString); i++)
{
if (isprint(m_editOf.headerString[i]))
{
descr.append(static_cast<char>(m_editOf.headerString[i]));
}
else
{
descr.append(' ');
}
}
ui->of_descriptionEdit->setPlainText(descr);
str = "0x" + QString("%1").arg(m_editOf.minHardwareVersion, 4, 16, QLatin1Char('0')).toUpper();
ui->of_minHwVersionEdit->setText(str);
str = "0x" + QString("%1").arg(m_editOf.maxHardwareVersion, 4, 16, QLatin1Char('0')).toUpper();
ui->of_maxHwVersionEdit->setText(str);
// standard 0
str = "0x" + QString("%1").arg(0, 8, 16, QLatin1Char('0')).toUpper();
ui->of_firmwareSizeEdit->setText(str);
{
std::list<OtauFile::SubElement>::iterator it = m_editOf.subElements.begin();
std::list<OtauFile::SubElement>::iterator end = m_editOf.subElements.end();
for (;it != end; ++it)
{
if (it->tag == TAG_UPGRADE_IMAGE)
{
str = "0x" + QString("%1 (%2 kB)").arg(it->length, 8, 16, QLatin1Char('0')).arg(it->length / 1024).toUpper();
ui->of_firmwareSizeEdit->setText(str);
}
}
}
}