summaryrefslogtreecommitdiffstats
path: root/src/imports/wifi/qwifinetworklist.cpp
blob: 0bb9ead00fe8002c7640d0a3b491f8f6c4e75e4e (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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/****************************************************************************
**
** Copyright (C) 2014 Digia Plc
** All rights reserved.
** For any questions to Digia, please use the contact form at
** http://qt.digia.com/
**
** This file is part of Qt Enterprise Embedded.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.
**
** If you have questions regarding the use of this file, please use
** the contact form at http://qt.digia.com/
**
****************************************************************************/
#include "qwifinetworklist.h"

#include <QtCore>

const int ID_NETWORK = (Qt::ItemDataRole) (Qt::UserRole + 1);

QWifiNetworkList::QWifiNetworkList(QWifiManager *manager)
    : m_manager(manager)
{
}

QHash<int, QByteArray> QWifiNetworkList::roleNames() const
{
    QHash<int, QByteArray> names;
    names.insert(ID_NETWORK, "network");
    return names;
}

QVariant QWifiNetworkList::data(const QModelIndex &index, int role) const
{
    QWifiNetwork *n = m_networks.at(index.row());
    switch (role) {
        case ID_NETWORK: return QVariant::fromValue((QObject *) n);
    }

    qWarning("QWifiNetworkList::data(), undefined role: %d\n", role);

    return QVariant();
}

QWifiNetwork *QWifiNetworkList::networkForSSID(const QByteArray &ssid, int *pos)
{
    for (int i=0; i<m_networks.size(); ++i) {
        if (m_networks.at(i)->ssid() == ssid) {
            if (pos)
                *pos = i;
            return m_networks.at(i);
        }
    }
    return 0;
}

void QWifiNetworkList::parseScanResults(const QByteArray &results)
{
    QList<QByteArray> lines = results.split('\n');

    QSet<QByteArray> sensibleNetworks;
    for (int i=1; i<lines.size(); ++i) {
        QList<QByteArray> info = lines.at(i).split('\t');
        if (info.size() < 5 || info.at(4).isEmpty() || info.at(0).isEmpty())
            continue;
        int pos = 0;
        if (!sensibleNetworks.contains(info.at(4)))
            sensibleNetworks.insert(info.at(4));
        QWifiNetwork *existingNetwork = networkForSSID(info.at(4), &pos);
        if (!existingNetwork) {
            QWifiNetwork *network = new QWifiNetwork();
            network->setBssid(info.at(0));
            network->setFlags(info.at(3));
            // signal strength is in dBm
            network->setSignalStrength(info.at(2).toInt());
            network->setSsid(info.at(4));
            beginInsertRows(QModelIndex(), m_networks.size(), m_networks.size());
            m_networks << network;
            endInsertRows();
        } else {
            // ssids are the same, compare bssids..
            if (existingNetwork->bssid() == info.at(0)) {
                // same access point, simply update the signal strength
                existingNetwork->setSignalStrength(info.at(2).toInt());
                dataChanged(createIndex(pos, 0), createIndex(pos, 0));
            } else if (existingNetwork->signalStrength() < info.at(2).toInt()) {
                // replace with a stronger access point within the same network
                m_networks.at(pos)->setBssid(info.at(0));
                m_networks.at(pos)->setFlags(info.at(3));
                m_networks.at(pos)->setSignalStrength(info.at(2).toInt());
                m_networks.at(pos)->setSsid(info.at(4));
                dataChanged(createIndex(pos, 0), createIndex(pos, 0));
            }
        }
    }
    // remove networks that have gone out of range
    for (int i = 0; i < m_networks.size(); ++i) {
        if (!sensibleNetworks.contains(m_networks.at(i)->ssid())) {
            beginRemoveRows(QModelIndex(), i, i);
            delete m_networks.takeAt(i);
            endRemoveRows();
        } else {
            ++i;
        }
    }
}