show when lan connection data changed
This commit is contained in:
parent
7afd99b5e3
commit
58a23f9cbb
|
@ -44,7 +44,7 @@ LanPage::LanPage(QWidget *parent) : TabPage(parent)
|
||||||
connect(m_connectResourse, &KyConnectResourse::connectionRemove, this, &LanPage::removeConnectionSlot);
|
connect(m_connectResourse, &KyConnectResourse::connectionRemove, this, &LanPage::removeConnectionSlot);
|
||||||
connect(m_connectResourse, &KyConnectResourse::connectionUpdate, this, &LanPage::connectionUpdateSlot);
|
connect(m_connectResourse, &KyConnectResourse::connectionUpdate, this, &LanPage::connectionUpdateSlot);
|
||||||
|
|
||||||
connect(m_connectResourse, &KyConnectResourse::connectionUpdate, this, &LanPage::onLanDataChange);
|
// connect(m_connectResourse, &KyConnectResourse::connectionUpdate, this, &LanPage::onLanDataChange);
|
||||||
|
|
||||||
connect(m_device, &KyNetworkDeviceResourse::deviceAdd, this, &LanPage::onDeviceAdd);
|
connect(m_device, &KyNetworkDeviceResourse::deviceAdd, this, &LanPage::onDeviceAdd);
|
||||||
connect(m_device, &KyNetworkDeviceResourse::deviceRemove, this, &LanPage::onDeviceRemove);
|
connect(m_device, &KyNetworkDeviceResourse::deviceRemove, this, &LanPage::onDeviceRemove);
|
||||||
|
@ -169,66 +169,6 @@ void LanPage::addConnectionSlot(QString uuid) //新增一个有线
|
||||||
qDebug()<<"[LanPage] GetConnectionItemByUuid is empty when add a new!";
|
qDebug()<<"[LanPage] GetConnectionItemByUuid is empty when add a new!";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
void LanPage::connectionUpdateSlot(QString uuid)
|
|
||||||
{
|
|
||||||
//for dbus
|
|
||||||
QStringList devNameList;
|
|
||||||
if (m_activeResourse->isActiveConnection(uuid, devNameList)) {
|
|
||||||
for (int i = 0; i < devNameList.size(); ++i) {
|
|
||||||
KyConnectItem *item = nullptr;
|
|
||||||
item = m_activeResourse->getActiveConnectionByUuid(uuid, devNameList.at(i));
|
|
||||||
if (nullptr != item) {
|
|
||||||
if (item->m_itemType != NetworkManager::ConnectionSettings::ConnectionType::Wired) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
QStringList info;
|
|
||||||
info << item->m_connectName << uuid << item->m_connectPath;
|
|
||||||
emit lanUpdate(devNameList.at(i), info);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
QString devName;
|
|
||||||
NetworkManager::ConnectionSettings::ConnectionType type;
|
|
||||||
if (!m_connectResourse->getInterfaceByUuid(devName, type, uuid)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (type != NetworkManager::ConnectionSettings::ConnectionType::Wired) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
KyConnectItem *item = nullptr;
|
|
||||||
item = m_connectResourse->getConnectionItemByUuid(uuid, devName);
|
|
||||||
if (nullptr != item) {
|
|
||||||
QStringList info;
|
|
||||||
info << item->m_connectName << uuid << item->m_connectPath;
|
|
||||||
emit lanUpdate(devName, info);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//void LanPage::initDevice()
|
|
||||||
//{
|
|
||||||
// QSettings * m_settings = new QSettings(CONFIG_FILE_PATH, QSettings::IniFormat);
|
|
||||||
// m_settings->beginGroup("DEFAULTCARD");
|
|
||||||
// QString key("wired");
|
|
||||||
// m_deviceName = m_settings->value(key, "").toString();
|
|
||||||
// if (m_deviceName.isEmpty()) {
|
|
||||||
// qDebug() << "initDevice but defalut wired card is null";
|
|
||||||
// if (!m_devList.isEmpty()) {
|
|
||||||
// m_deviceName = m_devList.at(0);
|
|
||||||
// m_settings->setValue(key, m_deviceName);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// updateDefaultDevice(m_deviceName);
|
|
||||||
// qDebug() << "[LanPage] initDevice defaultDevice = " << m_deviceName;
|
|
||||||
|
|
||||||
// m_settings->endGroup();
|
|
||||||
// m_settings->sync();
|
|
||||||
// delete m_settings;
|
|
||||||
// m_settings = nullptr;
|
|
||||||
// for (int i = 0; i < m_devList.size(); ++i) {
|
|
||||||
// qDebug() << "[LanPage] Device: " << m_devList.at(i);
|
|
||||||
// }
|
|
||||||
//}
|
|
||||||
|
|
||||||
void LanPage::initDeviceCombox()
|
void LanPage::initDeviceCombox()
|
||||||
{
|
{
|
||||||
|
@ -270,7 +210,7 @@ void LanPage::initDeviceCombox()
|
||||||
m_activatedNetDivider->hide();
|
m_activatedNetDivider->hide();
|
||||||
m_inactivatedNetDivider->hide();
|
m_inactivatedNetDivider->hide();
|
||||||
return;
|
return;
|
||||||
} else {
|
}
|
||||||
m_activatedNetFrame->show();
|
m_activatedNetFrame->show();
|
||||||
m_inactivatedNetFrame->show();
|
m_inactivatedNetFrame->show();
|
||||||
m_activatedNetDivider->show();
|
m_activatedNetDivider->show();
|
||||||
|
@ -288,7 +228,7 @@ void LanPage::initDeviceCombox()
|
||||||
m_deviceComboBox->addItem(enableDevice.at(j));
|
m_deviceComboBox->addItem(enableDevice.at(j));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
qDebug() << "[LanPage]Current device:" << m_deviceComboBox->currentText();
|
qDebug() << "[LanPage]Current device:" << m_deviceComboBox->currentText();
|
||||||
m_deviceName = m_deviceComboBox->currentText();
|
m_deviceName = m_deviceComboBox->currentText();
|
||||||
initList(m_deviceName);
|
initList(m_deviceName);
|
||||||
|
@ -420,6 +360,7 @@ void LanPage::initList(QString m_deviceName) //程序拉起,初始化显
|
||||||
if (!m_activedList.isEmpty()) {
|
if (!m_activedList.isEmpty()) {
|
||||||
for (int i = 0; i < m_activedList.size(); i++) {
|
for (int i = 0; i < m_activedList.size(); i++) {
|
||||||
KyConnectItem *activeItemData = m_activedList.at(i);
|
KyConnectItem *activeItemData = m_activedList.at(i);
|
||||||
|
qDebug() << "[??????]" << activeItemData->m_connectName;
|
||||||
addNewItem(activeItemData, m_activatedLanListWidget);
|
addNewItem(activeItemData, m_activatedLanListWidget);
|
||||||
|
|
||||||
m_activeMap.insert(activeItemData, m_listWidgetItem);
|
m_activeMap.insert(activeItemData, m_listWidgetItem);
|
||||||
|
@ -578,35 +519,104 @@ void LanPage::getWiredList(QMap<QString, QVector<QStringList> > &map)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
void LanPage::onLanDataChange(QString uuid)
|
void LanPage::connectionUpdateSlot(QString uuid)
|
||||||
{
|
{
|
||||||
QString devName;
|
QStringList devNameList;
|
||||||
NetworkManager::ConnectionSettings::ConnectionType type;
|
bool isCurrentDevice = false;
|
||||||
|
KyConnectItem *item = nullptr;
|
||||||
|
|
||||||
if(m_connectResourse->getInterfaceByUuid(devName, type, uuid)) {
|
qDebug() << "[LanPage]:Connection Changed" << Q_FUNC_INFO << __LINE__;
|
||||||
if (type != NetworkManager::ConnectionSettings::ConnectionType::Wired) {
|
|
||||||
qDebug() << "[LanPage] Connection data changed but type is not Wired";
|
if (m_activeResourse->isActiveConnection(uuid, devNameList)) { //从activeResourse里找
|
||||||
|
for (int i = 0; i < devNameList.size(); ++i) {
|
||||||
|
item = m_activeResourse->getActiveConnectionByUuid(uuid, devNameList.at(i));
|
||||||
|
if (nullptr != item) {
|
||||||
|
if (item->m_itemType != NetworkManager::ConnectionSettings::ConnectionType::Wired) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
qDebug() << "[LanPage] Connection data changed!";
|
if (devNameList.at(i) == m_deviceName) {
|
||||||
// KyConnectItem *m_itemData = new KyConnectItem(this);
|
qDebug() << "[LanPage]:Connection's device:" << devNameList.at(i) << Q_FUNC_INFO << __LINE__;
|
||||||
// m_itemData = m_connectResourse->getConnectionItemByUuid(uuid, devName);
|
isCurrentDevice = true;
|
||||||
// qDebug() << "[LanPage] DATA" << m_itemData->m_connectState;
|
}
|
||||||
|
//for dbus
|
||||||
|
QStringList info;
|
||||||
|
info << item->m_connectName << uuid << item->m_connectPath;
|
||||||
|
emit lanUpdate(devNameList.at(i), info);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
QString devName;
|
||||||
|
NetworkManager::ConnectionSettings::ConnectionType type;
|
||||||
|
if (!m_connectResourse->getInterfaceByUuid(devName, type, uuid)) { //从connectResourse里找
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (type != NetworkManager::ConnectionSettings::ConnectionType::Wired) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
item = m_connectResourse->getConnectionItemByUuid(uuid, devName);
|
||||||
|
if (nullptr != item) {
|
||||||
|
if (devName == m_deviceName) {
|
||||||
|
qDebug() << "[LanPage]:Connection's device:" << devName << Q_FUNC_INFO << __LINE__;
|
||||||
|
isCurrentDevice = true;
|
||||||
|
}
|
||||||
|
//for dbus
|
||||||
|
QStringList info;
|
||||||
|
info << item->m_connectName << uuid << item->m_connectPath;
|
||||||
|
emit lanUpdate(devName, info);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
qDebug() << "[LanPage]:Connection belong to current device:" << isCurrentDevice;
|
||||||
|
QMap<KyConnectItem *, QListWidgetItem *>::iterator iter;
|
||||||
|
for (iter = m_deactiveMap.begin(); iter != m_deactiveMap.constEnd(); ++iter) {
|
||||||
|
KyConnectItem *m_item = iter.key();
|
||||||
|
if (m_item->m_connectUuid == uuid) {
|
||||||
|
if (!isCurrentDevice) { //当前未激活连接的设备改变
|
||||||
|
m_inactivatedLanListWidget->removeItemWidget(iter.value());
|
||||||
|
delete iter.value();
|
||||||
|
m_deactiveMap.erase(iter);
|
||||||
|
qDebug() << "[LanPage]:Deactive Connection's device change, remove it" << Q_FUNC_INFO << __LINE__;
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
if (m_item->m_connectState == item->m_connectState) { //当前未激活连接的其他数据改变(除了激活状态外)
|
||||||
|
qDebug() << "[LanPage]:Deactive Connection's data change expect for ConnectState" << Q_FUNC_INFO << __LINE__;
|
||||||
|
qDebug() << "new:" << item->m_connectUuid << item->m_connectName << item->m_connectPath << item->m_connectState << item->m_ifaceName;
|
||||||
|
qDebug() << "old:" << m_item->m_connectUuid << m_item->m_connectName << m_item->m_connectPath << m_item->m_connectState << m_item->m_ifaceName;
|
||||||
|
m_inactivatedLanListWidget->removeItemWidget(iter.value());
|
||||||
|
delete iter.value();
|
||||||
|
m_deactiveMap.erase(iter);
|
||||||
|
|
||||||
// QMap<KyConnectItem *, QListWidgetItem *>::iterator iter;
|
addNewItem(item, m_inactivatedLanListWidget);
|
||||||
// for (iter = m_deactiveMap.begin(); iter != m_deactiveMap.constEnd(); ++iter) {
|
m_deactiveMap.insert(item, m_listWidgetItem);
|
||||||
// KyConnectItem *m_item = iter.key();
|
break;
|
||||||
// if (m_item->m_connectUuid == uuid) {
|
}
|
||||||
// m_inactivatedLanListWidget->removeItemWidget(iter.value());
|
}
|
||||||
// delete iter.value();
|
}
|
||||||
// m_deactiveMap.erase(iter);
|
}
|
||||||
// KyConnectItem *m_itemData = new KyConnectItem(this);
|
QMap<KyConnectItem *, QListWidgetItem *>::iterator iters;
|
||||||
// m_itemData = m_connectResourse->getConnectionItemByUuid(uuid, devName);
|
for (iters = m_activeMap.begin(); iters != m_activeMap.constEnd(); ++iters) {
|
||||||
// m_deactiveMap.insert(m_itemData, m_listWidgetItem);
|
KyConnectItem *m_item = iters.key();
|
||||||
// addNewItem(m_itemData, m_inactivatedLanListWidget);
|
if (m_item->m_connectUuid == uuid) {
|
||||||
// break;
|
if (!isCurrentDevice) { //当前激活连接的设备改变
|
||||||
// }
|
m_activatedLanListWidget->removeItemWidget(iters.value());
|
||||||
// }
|
delete iters.value();
|
||||||
|
m_activeMap.erase(iters);
|
||||||
|
qDebug() << "[LanPage]:Active Connection's device change, remove it" << Q_FUNC_INFO << __LINE__;
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
if (m_item->m_connectState == item->m_connectState) { //当前激活连接的其他数据改变(除了激活状态外)
|
||||||
|
qDebug() << "[LanPage]:Active Connection's data change expect for ConnectState" << Q_FUNC_INFO << __LINE__;
|
||||||
|
qDebug() << "new:" << item->m_connectUuid << item->m_connectName << item->m_connectPath << item->m_connectState << item->m_ifaceName;
|
||||||
|
qDebug() << "old:" << m_item->m_connectUuid << m_item->m_connectName << m_item->m_connectPath << m_item->m_connectState << m_item->m_ifaceName;
|
||||||
|
m_activatedLanListWidget->removeItemWidget(iters.value());
|
||||||
|
delete iters.value();
|
||||||
|
m_activeMap.erase(iters);
|
||||||
|
|
||||||
|
addNewItem(item, m_activatedLanListWidget);
|
||||||
|
m_activeMap.insert(item, m_listWidgetItem);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -79,7 +79,7 @@ private slots:
|
||||||
void onDeviceRemove(QString deviceName);
|
void onDeviceRemove(QString deviceName);
|
||||||
void onDeviceNameUpdate(QString oldName, QString newName);
|
void onDeviceNameUpdate(QString oldName, QString newName);
|
||||||
void onDeviceComboxIndexChanged(int currentIndex);
|
void onDeviceComboxIndexChanged(int currentIndex);
|
||||||
void onLanDataChange(QString uuid);
|
// void onLanDataChange(QString uuid);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // LANPAGE_H
|
#endif // LANPAGE_H
|
||||||
|
|
Loading…
Reference in New Issue