summaryrefslogtreecommitdiffstats
path: root/network/wifinetworkmodel.cpp
blob: 6df41163678cae110f63663d71d98a35b867e903 (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#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(const QString &service, const QVariantMap &properties)
{
	ConnectionProfile *network;
	QVector<int> vroles;
	bool sbcast = false;

	network = getNetwork(service);
	if (!network)
		return;

	QString key = "IPv4";
        if (properties.contains(key)) {
		QVariantMap ip4_map = properties.value(key).toMap();

		key = "Address";
		if (ip4_map.contains(key)) {
			QString address = ip4_map.value(key).toString();
			network->setAddress(address);
			vroles.push_back(AddressRole);
		}
	}

	key = "State";
        if (properties.contains(key)) {
		QString state = properties.value(key).toString();
		network->setState(state);
		vroles.push_back(StateRole);
		if ((network->state() == "ready") ||
		    (network->state() == "online"))
			sbcast = true;
	}

	key = "Strength";
        if (properties.contains(key)) {
		int strength =  properties.value(key).toInt();
		network->setStrength(strength);
		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());
	}
}