dde-dock/plugins/network/networkplugin.cpp
石博文 133b711d1f update license
Change-Id: I9df92e43b79f7c2b3688b595f80df7b3a7bb7ed2
2018-02-07 11:52:47 +08:00

233 lines
6.4 KiB
C++

/*
* Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
*
* Author: sbw <sbw@sbw.so>
*
* Maintainer: sbw <sbw@sbw.so>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program 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 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 "networkplugin.h"
#include "item/wireditem.h"
#include "item/wirelessitem.h"
#define WIRED_ITEM "wired"
#define WIRELESS_ITEM "wireless"
#define STATE_KEY "enabled"
NetworkPlugin::NetworkPlugin(QObject *parent)
: QObject(parent),
m_settings("deepin", "dde-dock-network"),
m_networkManager(NetworkManager::instance(this)),
m_refershTimer(new QTimer(this))
{
}
const QString NetworkPlugin::pluginName() const
{
return "network";
}
const QString NetworkPlugin::pluginDisplayName() const
{
return tr("Network");
}
void NetworkPlugin::init(PluginProxyInterface *proxyInter)
{
m_proxyInter = proxyInter;
m_refershTimer->setInterval(100);
m_refershTimer->setSingleShot(true);
connect(m_networkManager, &NetworkManager::networkStateChanged, this, &NetworkPlugin::networkStateChanged);
connect(m_networkManager, &NetworkManager::deviceTypesChanged, this, &NetworkPlugin::deviceTypesChanged);
connect(m_networkManager, &NetworkManager::deviceAdded, this, &NetworkPlugin::deviceAdded);
connect(m_networkManager, &NetworkManager::deviceRemoved, this, &NetworkPlugin::deviceRemoved);
connect(m_networkManager, &NetworkManager::deviceChanged, m_refershTimer, static_cast<void (QTimer::*)(void)>(&QTimer::start));
connect(m_refershTimer, &QTimer::timeout, this, &NetworkPlugin::refershDeviceItemVisible);
m_networkManager->init();
}
void NetworkPlugin::invokedMenuItem(const QString &itemKey, const QString &menuId, const bool checked)
{
Q_UNUSED(checked)
for (auto item : m_deviceItemList)
if (item->path() == itemKey)
return item->invokeMenuItem(menuId);
Q_UNREACHABLE();
}
void NetworkPlugin::refershIcon(const QString &itemKey)
{
Q_UNUSED(itemKey);
for (auto *item : m_deviceItemList)
item->refreshIcon();
}
void NetworkPlugin::pluginStateSwitched()
{
m_settings.setValue(STATE_KEY, !m_settings.value(STATE_KEY, true).toBool());
m_refershTimer->start();
}
bool NetworkPlugin::pluginIsDisable()
{
return !m_settings.value(STATE_KEY, true).toBool();
}
const QString NetworkPlugin::itemCommand(const QString &itemKey)
{
for (auto deviceItem : m_deviceItemList)
if (deviceItem->path() == itemKey)
return deviceItem->itemCommand();
Q_UNREACHABLE();
return QString();
}
const QString NetworkPlugin::itemContextMenu(const QString &itemKey)
{
for (auto item : m_deviceItemList)
if (item->path() == itemKey)
return item->itemContextMenu();
Q_UNREACHABLE();
return QString();
}
QWidget *NetworkPlugin::itemWidget(const QString &itemKey)
{
for (auto deviceItem : m_deviceItemList)
if (deviceItem->path() == itemKey)
{
return deviceItem;
}
return nullptr;
}
QWidget *NetworkPlugin::itemTipsWidget(const QString &itemKey)
{
for (auto deviceItem : m_deviceItemList)
if (deviceItem->path() == itemKey)
return deviceItem->itemPopup();
return nullptr;
}
QWidget *NetworkPlugin::itemPopupApplet(const QString &itemKey)
{
for (auto deviceItem : m_deviceItemList)
if (deviceItem->path() == itemKey)
return deviceItem->itemApplet();
return nullptr;
}
void NetworkPlugin::deviceAdded(const NetworkDevice &device)
{
DeviceItem *item = nullptr;
switch (device.type())
{
case NetworkDevice::Wired: item = new WiredItem(device.path()); break;
case NetworkDevice::Wireless: item = new WirelessItem(device.path()); break;
default:;
}
if (!item)
return;
connect(item, &DeviceItem::requestContextMenu, this, &NetworkPlugin::contextMenuRequested);
m_deviceItemList.append(item);
m_refershTimer->start();
}
void NetworkPlugin::deviceRemoved(const NetworkDevice &device)
{
const auto item = std::find_if(m_deviceItemList.begin(), m_deviceItemList.end(),
[&] (DeviceItem *dev) {return device == dev->path();});
if (item == m_deviceItemList.cend())
return;
m_proxyInter->itemRemoved(this, (*item)->path());
(*item)->deleteLater();
m_deviceItemList.erase(item);
}
void NetworkPlugin::networkStateChanged(const NetworkDevice::NetworkTypes &states)
{
Q_UNUSED(states)
m_refershTimer->start();
}
void NetworkPlugin::deviceTypesChanged(const NetworkDevice::NetworkTypes &types)
{
Q_UNUSED(types)
m_refershTimer->start();
}
void NetworkPlugin::refershDeviceItemVisible()
{
const NetworkDevice::NetworkTypes types = m_networkManager->types();
const bool hasWiredDevice = types.testFlag(NetworkDevice::Wired);
const bool hasWirelessDevice = types.testFlag(NetworkDevice::Wireless);
// qDebug() << hasWiredDevice << hasWirelessDevice;
if (m_settings.value(STATE_KEY, true).toBool())
{
for (auto item : m_deviceItemList)
{
switch (item->type())
{
case NetworkDevice::Wireless:
m_proxyInter->itemAdded(this, item->path());
break;
case NetworkDevice::Wired:
if (hasWiredDevice && (item->state() == NetworkDevice::Activated || !hasWirelessDevice))
m_proxyInter->itemAdded(this, item->path());
else
m_proxyInter->itemRemoved(this, item->path());
break;
default:
Q_UNREACHABLE();
}
}
} else {
for (auto item : m_deviceItemList)
m_proxyInter->itemRemoved(this, item->path());
}
}
void NetworkPlugin::contextMenuRequested()
{
DeviceItem *item = qobject_cast<DeviceItem *>(sender());
Q_ASSERT(item);
m_proxyInter->requestContextMenu(this, item->path());
}