/* Copyright 2011 Ilia Kats Copyright 2013 Daniel Nicoletti 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 . */ #include "olpcmeshdevice.h" #include "olpcmeshdevice_p.h" #include "manager_p.h" #include "wimaxnsp.h" NetworkManager::OlpcMeshDevicePrivate::OlpcMeshDevicePrivate(const QString &path, OlpcMeshDevice *q) : DevicePrivate(path, q) , iface(NetworkManagerPrivate::DBUS_SERVICE, path, QDBusConnection::systemBus()) { } NetworkManager::OlpcMeshDevice::OlpcMeshDevice(const QString &path, QObject *parent) : Device(*new OlpcMeshDevicePrivate(path, this), parent) { Q_D(OlpcMeshDevice); d->hardwareAddress = d->iface.hwAddress(); d->activeChannel = d->iface.activeChannel(); d->companion = d->iface.companion().path(); connect(&d->iface, SIGNAL(PropertiesChanged(QVariantMap)), this, SLOT(propertiesChanged(QVariantMap))); } NetworkManager::OlpcMeshDevice::~OlpcMeshDevice() { } NetworkManager::Device::Type NetworkManager::OlpcMeshDevice::type() const { return NetworkManager::Device::OlpcMesh; } QString NetworkManager::OlpcMeshDevice::hardwareAddress() const { Q_D(const OlpcMeshDevice); return d->hardwareAddress; } uint NetworkManager::OlpcMeshDevice::activeChannel() const { Q_D(const OlpcMeshDevice); return d->activeChannel; } NetworkManager::Device::Ptr NetworkManager::OlpcMeshDevice::companionDevice() const { Q_D(const OlpcMeshDevice); return NetworkManager::findNetworkInterface(d->companion); } void NetworkManager::OlpcMeshDevice::propertyChanged(const QString &property, const QVariant &value) { Q_D(OlpcMeshDevice); if (property == QLatin1String("ActiveChannel")) { d->activeChannel = value.toUInt(); emit activeChannelChanged(d->activeChannel); } else if (property == QLatin1String("HwAddress")) { d->hardwareAddress = value.toString(); emit hardwareAddressChanged(d->hardwareAddress); } else if (property == QLatin1String("Companion")) { d->companion = qdbus_cast(value).path(); emit companionChanged(NetworkManager::findNetworkInterface(d->companion)); } else { Device::propertyChanged(property, value); } } #include "olpcmeshdevice.moc"