b90927915f
- 将Q_PROPERTY类型从qint64改为double - 将QML属性类型从qint64改为real - 修复插件无法加载的问题
95 lines
2.6 KiB
C++
95 lines
2.6 KiB
C++
// SPDX-FileCopyrightText: 2024 MyCompany
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <applet.h>
|
|
|
|
#include <QString>
|
|
#include <QStringList>
|
|
#include <QTimer>
|
|
#include <QVariantList>
|
|
#include <QMap>
|
|
|
|
DS_BEGIN_NAMESPACE
|
|
|
|
struct NetworkInterface {
|
|
QString name; // 接口名称,如 "eth0", "wlan0"
|
|
qint64 rxBytes; // 接收字节数
|
|
qint64 txBytes; // 发送字节数
|
|
qint64 rxPackets; // 接收包数
|
|
qint64 txPackets; // 发送包数
|
|
qint64 rxErrors; // 接收错误数
|
|
qint64 txErrors; // 发送错误数
|
|
qint64 rxDropped; // 接收丢弃数
|
|
qint64 txDropped; // 发送丢弃数
|
|
};
|
|
|
|
class NetworkMonitorApplet : public DApplet
|
|
{
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(double downloadSpeed READ downloadSpeed NOTIFY speedChanged)
|
|
Q_PROPERTY(double uploadSpeed READ uploadSpeed NOTIFY speedChanged)
|
|
Q_PROPERTY(double totalDownload READ totalDownload NOTIFY totalChanged)
|
|
Q_PROPERTY(double totalUpload READ totalUpload NOTIFY totalChanged)
|
|
Q_PROPERTY(QStringList networkInterfaces READ networkInterfaces NOTIFY interfacesChanged)
|
|
Q_PROPERTY(QStringList interfaceStats READ interfaceStats NOTIFY statsChanged)
|
|
Q_PROPERTY(bool ready READ ready NOTIFY readyChanged)
|
|
Q_PROPERTY(QString activeInterface READ activeInterface NOTIFY activeInterfaceChanged)
|
|
|
|
public:
|
|
explicit NetworkMonitorApplet(QObject *parent = nullptr);
|
|
~NetworkMonitorApplet();
|
|
|
|
virtual bool load() override;
|
|
virtual bool init() override;
|
|
|
|
double downloadSpeed() const;
|
|
double uploadSpeed() const;
|
|
double totalDownload() const;
|
|
double totalUpload() const;
|
|
QStringList networkInterfaces() const;
|
|
QStringList interfaceStats() const;
|
|
bool ready() const;
|
|
QString activeInterface() const;
|
|
|
|
Q_INVOKABLE void refresh();
|
|
Q_INVOKABLE void setActiveInterface(const QString &interface);
|
|
|
|
signals:
|
|
void speedChanged();
|
|
void totalChanged();
|
|
void interfacesChanged();
|
|
void statsChanged();
|
|
void readyChanged();
|
|
void activeInterfaceChanged();
|
|
|
|
private:
|
|
void readNetworkStats();
|
|
void calculateSpeed();
|
|
void detectInterfaces();
|
|
qint64 getActiveRxBytes() const;
|
|
qint64 getActiveTxBytes() const;
|
|
|
|
QTimer *m_refreshTimer;
|
|
QMap<QString, NetworkInterface> m_interfaces;
|
|
QStringList m_interfaceList;
|
|
QString m_activeInterface;
|
|
|
|
// 速度计算
|
|
qint64 m_lastRxBytes;
|
|
qint64 m_lastTxBytes;
|
|
qint64 m_downloadSpeed;
|
|
qint64 m_uploadSpeed;
|
|
|
|
// 总量
|
|
qint64 m_totalDownload;
|
|
qint64 m_totalUpload;
|
|
|
|
bool m_ready;
|
|
bool m_firstUpdate;
|
|
};
|
|
|
|
DS_END_NAMESPACE |