blob: 7c3277927c11415b1def5203f8d72c84d981a06f (
plain)
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
|
#include "wifinetworkmodel.h"
#include "connectionprofile.h"
#include <QVector>
#include <QDebug>
WifiNetworkModel::WifiNetworkModel(QObject *parent)
: AbstractNetworkModel(parent)
{
}
QVariant WifiNetworkModel::data(const QModelIndex &index, int role) const
{
if (index.row() < 0 || index.row() >= m_networks.count())
return QVariant();
ConnectionProfile *network = m_networks[index.row()];
switch (role) {
case AddressRole:
return network->address();
case SecurityRole:
return network->security();
case ServiceRole:
return network->service();
case SsidRole:
return network->ssid();
case StateRole:
return network->state();
case StrengthRole:
return network->strength();
}
return QVariant();
}
QHash<int, QByteArray> WifiNetworkModel::roleNames() const {
QHash<int, QByteArray> roles;
roles[AddressRole] = "address";
roles[SecurityRole] = "security";
roles[ServiceRole] = "service";
roles[SsidRole] = "ssid";
roles[StateRole] = "sstate";
roles[StrengthRole] = "strength";
return roles;
}
void WifiNetworkModel::updateProperties(QString service, QJsonObject properties)
{
ConnectionProfile *network;
QVector<int> vroles;
bool sbcast = false;
if ((network = getNetwork(service))) {
if (properties.contains("ipv4")) {
QString address = properties.value("ipv4").toObject().value("address").toString();
network->setAddress(address);
vroles.push_back(AddressRole);
}
if (properties.contains("state")) {
network->setState(properties.value("state").toString());
vroles.push_back(StateRole);
if ((network->state() == "ready") ||
(network->state() == "online"))
sbcast = true;
}
if (properties.contains("strength")) {
network->setStrength(properties.value("strength").toInt());
vroles.push_back(StrengthRole);
if ((network->state() == "ready") ||
(network->state() == "online"))
sbcast = true;
}
if (!vroles.isEmpty()) {
emit dataChanged(indexOf(network), indexOf(network), vroles);
if (sbcast)
emit strengthChanged(network->strength());
}
}
}
|