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
|
/*
* Copyright (C) 2014 Canonical, Ltd.
*
* Authors:
* Jonas G. Drange <jonas.drange@canonical.com>
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, as published
* by the Free Software Foundation.
*
* 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 General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <QDBusReply>
#include <QtDebug>
#include <QDBusInterface>
#include "connectivity.h"
#ifdef ENABLE_DEVICEINFO
#include <QVariant>
#include <deviceinfo.h>
#endif
namespace {
const QString conn_service("com.lomiri.connectivity1");
const QString conn_object("/com/lomiri/connectivity1/Private");
const QString conn_interface("com.lomiri.connectivity1.Private");
const QString conn_unlockall_method("UnlockAllModems");
}
Connectivity::Connectivity(QObject *parent) : QObject(parent)
{
#ifdef ENABLE_DEVICEINFO
DeviceInfo info;
m_imsSupported = QVariant(
QString::fromStdString(info.get("OfonoImplementsIms", "false"))).toBool();
#endif
}
void Connectivity::unlockAllModems() {
QDBusInterface connectivityIface (
conn_service,
conn_object,
conn_interface,
QDBusConnection::sessionBus(),
this);
auto reply = connectivityIface.call(conn_unlockall_method);
if (reply.type() == QDBusMessage::ErrorMessage) {
qWarning() << "Failed to unlock modems" << reply.errorMessage();
}
}
|