增加volume manager用于获取设备挂载信息
This commit is contained in:
parent
e09044dfee
commit
993c8e30ea
|
@ -2,8 +2,10 @@ INCLUDEPATH += $$PWD
|
||||||
|
|
||||||
HEADERS += \
|
HEADERS += \
|
||||||
$$PWD/dir-watcher-adaptor.h \
|
$$PWD/dir-watcher-adaptor.h \
|
||||||
$$PWD/dir-watcher.h
|
$$PWD/dir-watcher.h \
|
||||||
|
$$PWD/volume-manager.h
|
||||||
|
|
||||||
SOURCES += \
|
SOURCES += \
|
||||||
$$PWD/dir-watcher-adaptor.cpp \
|
$$PWD/dir-watcher-adaptor.cpp \
|
||||||
$$PWD/dir-watcher.cpp
|
$$PWD/dir-watcher.cpp \
|
||||||
|
$$PWD/volume-manager.cpp
|
||||||
|
|
|
@ -0,0 +1,158 @@
|
||||||
|
#include "volume-manager.h"
|
||||||
|
#include <mutex>
|
||||||
|
#include <QMutexLocker>
|
||||||
|
#include <QDebug>
|
||||||
|
static std::once_flag flag;
|
||||||
|
static VolumeManager *global_intance = nullptr;
|
||||||
|
|
||||||
|
Volume::Volume()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
Volume::Volume(const QString& device)
|
||||||
|
{
|
||||||
|
m_device = device;
|
||||||
|
}
|
||||||
|
|
||||||
|
QString Volume::device()
|
||||||
|
{
|
||||||
|
return m_device;
|
||||||
|
}
|
||||||
|
|
||||||
|
QStringList Volume::duplicatesMountPoints() const
|
||||||
|
{
|
||||||
|
QStringList tmp;
|
||||||
|
for (auto iter = m_mountPoints.constBegin(); iter != m_mountPoints.constEnd(); ++iter) {
|
||||||
|
if(iter.value().isEmpty()) {
|
||||||
|
tmp.append(iter.key());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(tmp.size() == 1) {
|
||||||
|
tmp.clear();
|
||||||
|
}
|
||||||
|
return tmp;
|
||||||
|
}
|
||||||
|
|
||||||
|
QMap<QString, QString> Volume::subVolumes() const
|
||||||
|
{
|
||||||
|
QMap<QString, QString> tmp;
|
||||||
|
for (auto iter = m_mountPoints.constBegin(); iter != m_mountPoints.constEnd(); ++iter) {
|
||||||
|
if(!iter.value().isEmpty()) {
|
||||||
|
tmp.insert(iter.key(), iter.value());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return tmp;
|
||||||
|
}
|
||||||
|
|
||||||
|
QStringList Volume::mountPoints() const
|
||||||
|
{
|
||||||
|
return m_mountPoints.keys();
|
||||||
|
}
|
||||||
|
|
||||||
|
void Volume::setDevice(const QString& device)
|
||||||
|
{
|
||||||
|
m_device = device;
|
||||||
|
}
|
||||||
|
|
||||||
|
void Volume::addMountPoint(const QString &mountPoint, const QString &subVolume)
|
||||||
|
{
|
||||||
|
m_mountPoints.insert(mountPoint, subVolume);
|
||||||
|
}
|
||||||
|
|
||||||
|
VolumeManager *VolumeManager::self()
|
||||||
|
{
|
||||||
|
std::call_once(flag, [ & ] {
|
||||||
|
global_intance = new VolumeManager();
|
||||||
|
});
|
||||||
|
return global_intance;
|
||||||
|
}
|
||||||
|
|
||||||
|
VolumeManager::VolumeManager(QObject *parent)
|
||||||
|
: QObject{parent}
|
||||||
|
{
|
||||||
|
this->refresh();
|
||||||
|
m_volumeMonitor = g_volume_monitor_get();
|
||||||
|
if (!m_volumeMonitor) {
|
||||||
|
qDebug() << "Fail to init volume monitor";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
m_mountAddHandle = g_signal_connect(m_volumeMonitor, "mount-added", G_CALLBACK(mountAddCallback), this);
|
||||||
|
m_mountRemoveHandle = g_signal_connect(m_volumeMonitor, "mount-removed", G_CALLBACK(mountRemoveCallback), this);
|
||||||
|
}
|
||||||
|
|
||||||
|
VolumeManager::~VolumeManager()
|
||||||
|
{
|
||||||
|
if(m_volumeMonitor){
|
||||||
|
g_signal_handler_disconnect(m_volumeMonitor, m_mountAddHandle);
|
||||||
|
g_signal_handler_disconnect(m_volumeMonitor, m_mountRemoveHandle);
|
||||||
|
g_object_unref(m_volumeMonitor);
|
||||||
|
m_volumeMonitor = nullptr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
QVector<QStringList> VolumeManager::getDuplicates()
|
||||||
|
{
|
||||||
|
QMutexLocker locker(&m_mutex);
|
||||||
|
QVector<QStringList> tmp;
|
||||||
|
for (auto iter = m_volumes.constBegin(); iter != m_volumes.constEnd(); ++iter) {
|
||||||
|
QStringList duplicates = iter.value().duplicatesMountPoints();
|
||||||
|
if(!duplicates.isEmpty()) {
|
||||||
|
tmp.append(duplicates);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return tmp;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
QVector<Volume> VolumeManager::volumesHaveSubVolumes()
|
||||||
|
{
|
||||||
|
QMutexLocker locker(&m_mutex);
|
||||||
|
QVector<Volume> tmp;
|
||||||
|
for (auto iter = m_volumes.constBegin(); iter != m_volumes.constEnd(); ++iter) {
|
||||||
|
if(!iter.value().subVolumes().isEmpty()) {
|
||||||
|
tmp.append(iter.value());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return tmp;
|
||||||
|
}
|
||||||
|
|
||||||
|
QVector<Volume> VolumeManager::volumes()
|
||||||
|
{
|
||||||
|
QMutexLocker locker(&m_mutex);
|
||||||
|
return m_volumes.values().toVector();
|
||||||
|
}
|
||||||
|
|
||||||
|
void VolumeManager::refresh()
|
||||||
|
{
|
||||||
|
QMutexLocker locker(&m_mutex);
|
||||||
|
m_volumes.clear();
|
||||||
|
//遍历当前系统所有挂载设备
|
||||||
|
for (const QStorageInfo &storage: QStorageInfo::mountedVolumes()) {
|
||||||
|
if (storage.isValid() and storage.isReady()) {
|
||||||
|
Volume volume(storage.device());
|
||||||
|
if(m_volumes.contains(storage.device())) {
|
||||||
|
volume = m_volumes.value(storage.device());
|
||||||
|
}
|
||||||
|
volume.addMountPoint(storage.rootPath(), storage.subvolume());
|
||||||
|
m_volumes.insert(storage.device(), volume);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Q_EMIT VolumeDataUpdated();
|
||||||
|
}
|
||||||
|
|
||||||
|
void VolumeManager::mountAddCallback(GVolumeMonitor *monitor, GMount *gmount, VolumeManager *pThis)
|
||||||
|
{
|
||||||
|
Q_UNUSED(monitor)
|
||||||
|
Q_UNUSED(gmount)
|
||||||
|
//TODO 识别U盘等移动设备
|
||||||
|
pThis->refresh();
|
||||||
|
}
|
||||||
|
|
||||||
|
void VolumeManager::mountRemoveCallback(GVolumeMonitor *monitor, GMount *gmount, VolumeManager *pThis)
|
||||||
|
{
|
||||||
|
Q_UNUSED(monitor)
|
||||||
|
Q_UNUSED(gmount)
|
||||||
|
pThis->refresh();
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,53 @@
|
||||||
|
#ifndef VOLUMEMANAGER_H
|
||||||
|
#define VOLUMEMANAGER_H
|
||||||
|
#include <gio/gio.h>
|
||||||
|
#include <gio/gunixmounts.h>
|
||||||
|
#include <QObject>
|
||||||
|
#include <QStorageInfo>
|
||||||
|
#include <QMultiMap>
|
||||||
|
#include <QMutex>
|
||||||
|
#include <QVector>
|
||||||
|
|
||||||
|
class Volume
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
Volume();
|
||||||
|
Volume(const QString& device);
|
||||||
|
QString device();
|
||||||
|
QStringList duplicatesMountPoints() const;
|
||||||
|
QMap<QString, QString> subVolumes() const;
|
||||||
|
QStringList mountPoints() const;
|
||||||
|
|
||||||
|
void setDevice(const QString& device);
|
||||||
|
void addMountPoint(const QString& mountPoint, const QString& subVolume = QString());
|
||||||
|
private:
|
||||||
|
QString m_device;
|
||||||
|
QMap<QString, QString> m_mountPoints; //挂载点->子卷路径
|
||||||
|
};
|
||||||
|
|
||||||
|
class VolumeManager : public QObject
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
static VolumeManager *self();
|
||||||
|
~VolumeManager();
|
||||||
|
QVector<QStringList> getDuplicates();
|
||||||
|
QVector<Volume> volumesHaveSubVolumes();
|
||||||
|
QVector<Volume> volumes();
|
||||||
|
Q_SIGNALS:
|
||||||
|
void VolumeDataUpdated();
|
||||||
|
|
||||||
|
private:
|
||||||
|
explicit VolumeManager(QObject *parent = nullptr);
|
||||||
|
void refresh();
|
||||||
|
static void mountAddCallback(GVolumeMonitor *monitor, GMount *gmount, VolumeManager *pThis);
|
||||||
|
static void mountRemoveCallback(GVolumeMonitor *monitor, GMount *gmount, VolumeManager *pThis);
|
||||||
|
GVolumeMonitor* m_volumeMonitor = nullptr;
|
||||||
|
quint64 m_mountAddHandle;
|
||||||
|
quint64 m_mountRemoveHandle;
|
||||||
|
QMap<QString, Volume> m_volumes; //device -> Volume
|
||||||
|
QMutex m_mutex;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
#endif // VOLUMEMANAGER_H
|
Loading…
Reference in New Issue