2014-11-15 04:16:00 +02:00
|
|
|
/* This file is part of the KDE project
|
|
|
|
|
2022-04-08 21:56:14 +03:00
|
|
|
Copyright (c) 2010 Klarälvdalens Datakonsult AB,
|
2014-11-15 04:16:00 +02:00
|
|
|
a KDAB Group company <info@kdab.com>
|
|
|
|
Author: Kevin Ottens <kevin.ottens@kdab.com>
|
|
|
|
|
|
|
|
Copyright (c) 2011 Lukas Tinkl <ltinkl@redhat.com>
|
|
|
|
Copyright (c) 2011-2012 Lamarque V. Souza <lamarque@kde.org>
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) version 3, or any
|
|
|
|
later version accepted by the membership of KDE e.V. (or its
|
|
|
|
successor approved by the membership of KDE e.V.), which shall
|
|
|
|
act as a proxy defined in Section 6 of version 3 of the license.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "networkmanagerstatus.h"
|
|
|
|
|
|
|
|
#include <QtDBus/QDBusReply>
|
|
|
|
|
2022-04-08 21:56:14 +03:00
|
|
|
#include <KDebug>
|
2014-11-15 04:16:00 +02:00
|
|
|
|
2022-04-09 15:28:24 +03:00
|
|
|
// for reference:
|
|
|
|
// https://developer-old.gnome.org/NetworkManager/stable/gdbus-org.freedesktop.NetworkManager.html
|
|
|
|
|
2022-04-08 21:56:14 +03:00
|
|
|
#define NM_DBUS_SERVICE "org.freedesktop.NetworkManager"
|
|
|
|
#define NM_DBUS_PATH "/org/freedesktop/NetworkManager"
|
|
|
|
#define NM_DBUS_INTERFACE "org.freedesktop.NetworkManager"
|
2014-11-15 04:16:00 +02:00
|
|
|
|
2022-04-08 21:56:14 +03:00
|
|
|
NetworkManagerStatus::NetworkManagerStatus(QObject *parent)
|
|
|
|
: SystemStatusInterface(parent),
|
|
|
|
m_status(Solid::Networking::Unknown),
|
|
|
|
m_nm(NM_DBUS_SERVICE, NM_DBUS_PATH, NM_DBUS_INTERFACE, QDBusConnection::systemBus())
|
2014-11-15 04:16:00 +02:00
|
|
|
{
|
2021-03-13 21:29:06 +02:00
|
|
|
if (isSupported()) {
|
2022-04-08 21:56:14 +03:00
|
|
|
connect(&m_nm, SIGNAL(StateChanged(uint)), this, SLOT(nmStateChanged(uint)));
|
2014-11-15 04:16:00 +02:00
|
|
|
|
2022-04-08 21:56:14 +03:00
|
|
|
QDBusReply<uint> reply = m_nm.call("state");
|
|
|
|
if (reply.isValid()) {
|
|
|
|
nmStateChanged(reply.value());
|
2021-03-13 21:29:06 +02:00
|
|
|
}
|
2014-11-15 04:16:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Solid::Networking::Status NetworkManagerStatus::status() const
|
|
|
|
{
|
|
|
|
return m_status;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool NetworkManagerStatus::isSupported() const
|
|
|
|
{
|
2022-04-08 21:56:14 +03:00
|
|
|
return m_nm.isValid();
|
2014-11-15 04:16:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QString NetworkManagerStatus::serviceName() const
|
|
|
|
{
|
2022-04-08 21:56:14 +03:00
|
|
|
return QString::fromLatin1(NM_DBUS_SERVICE);
|
2014-11-15 04:16:00 +02:00
|
|
|
}
|
|
|
|
|
2022-04-08 21:56:14 +03:00
|
|
|
void NetworkManagerStatus::nmStateChanged(uint nmState)
|
2014-11-15 04:16:00 +02:00
|
|
|
{
|
2022-04-08 21:56:14 +03:00
|
|
|
m_status = Solid::Networking::Unknown;
|
2014-11-15 04:16:00 +02:00
|
|
|
switch (nmState) {
|
2022-04-08 21:56:14 +03:00
|
|
|
case 0:
|
|
|
|
case 10:
|
|
|
|
case 20:
|
|
|
|
m_status = Solid::Networking::Unconnected;
|
2014-11-15 04:16:00 +02:00
|
|
|
break;
|
2022-04-08 21:56:14 +03:00
|
|
|
case 30:
|
|
|
|
m_status = Solid::Networking::Disconnecting;
|
2014-11-15 04:16:00 +02:00
|
|
|
break;
|
2022-04-08 21:56:14 +03:00
|
|
|
case 40:
|
|
|
|
m_status = Solid::Networking::Connecting;
|
2014-11-15 04:16:00 +02:00
|
|
|
break;
|
2022-04-08 21:56:14 +03:00
|
|
|
case 50:
|
|
|
|
case 60:
|
|
|
|
case 70:
|
|
|
|
m_status = Solid::Networking::Connected;
|
2014-11-15 04:16:00 +02:00
|
|
|
break;
|
2022-04-08 21:56:14 +03:00
|
|
|
default:
|
|
|
|
kWarning() << "unknown state" << nmState;
|
2022-04-09 15:28:24 +03:00
|
|
|
break;
|
2014-11-15 04:16:00 +02:00
|
|
|
}
|
2022-04-08 21:56:14 +03:00
|
|
|
Q_EMIT statusChanged(m_status);
|
2014-11-15 04:16:00 +02:00
|
|
|
}
|
|
|
|
|
2015-02-27 09:28:46 +00:00
|
|
|
#include "moc_networkmanagerstatus.cpp"
|