2018-02-27 18:06:05 +01:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
|
|
|
* This file was part of Clementine.
|
|
|
|
* Copyright 2010, David Sansome <me@davidsansome.com>
|
2021-03-20 21:14:47 +01:00
|
|
|
* Copyright 2018-2021, Jonas Kvinge <jonas@jkvinge.net>
|
2018-02-27 18:06:05 +01:00
|
|
|
*
|
|
|
|
* Strawberry 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
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
2018-08-09 18:39:44 +02:00
|
|
|
*
|
2018-02-27 18:06:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GIOLISTER_H
|
|
|
|
#define GIOLISTER_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
// Work around compile issue with glib >= 2.25
|
|
|
|
#ifdef signals
|
2018-12-29 02:57:22 +01:00
|
|
|
# undef signals
|
2018-02-27 18:06:05 +01:00
|
|
|
#endif
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <glib.h>
|
|
|
|
#include <glib-object.h>
|
2018-02-27 18:06:05 +01:00
|
|
|
#include <gio/gio.h>
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QtGlobal>
|
|
|
|
#include <QObject>
|
2018-12-29 02:57:22 +01:00
|
|
|
#include <QMutex>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QList>
|
|
|
|
#include <QMap>
|
|
|
|
#include <QMetaType>
|
|
|
|
#include <QString>
|
2018-02-27 18:06:05 +01:00
|
|
|
#include <QStringList>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QUrl>
|
|
|
|
|
|
|
|
#include "core/scopedgobject.h"
|
|
|
|
#include "devicelister.h"
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
class GioLister : public DeviceLister {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2021-06-20 19:04:08 +02:00
|
|
|
explicit GioLister(QObject *parent = nullptr) : DeviceLister(parent) {}
|
2020-06-15 21:55:05 +02:00
|
|
|
~GioLister() override;
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2020-06-15 21:55:05 +02:00
|
|
|
int priority() const override { return 50; }
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2020-06-15 21:55:05 +02:00
|
|
|
QStringList DeviceUniqueIDs() override;
|
|
|
|
QVariantList DeviceIcons(const QString &id) override;
|
|
|
|
QString DeviceManufacturer(const QString &id) override;
|
|
|
|
QString DeviceModel(const QString &id) override;
|
|
|
|
quint64 DeviceCapacity(const QString &id) override;
|
|
|
|
quint64 DeviceFreeSpace(const QString &id) override;
|
|
|
|
QVariantMap DeviceHardwareInfo(const QString &id) override;
|
|
|
|
bool DeviceNeedsMount(const QString &id) override;
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2020-06-15 21:55:05 +02:00
|
|
|
QString MakeFriendlyName(const QString &id) override;
|
|
|
|
QList<QUrl> MakeDeviceUrls(const QString &id) override;
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
public slots:
|
2020-06-15 21:55:05 +02:00
|
|
|
void MountDevice(const QString &id, const int request_id) override;
|
|
|
|
void UnmountDevice(const QString &id) override;
|
|
|
|
void UpdateDeviceFreeSpace(const QString &id) override;
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
protected:
|
2020-06-15 21:55:05 +02:00
|
|
|
bool Init() override;
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
struct DeviceInfo {
|
|
|
|
DeviceInfo() : drive_removable(false), filesystem_size(0),filesystem_free(0), invalid_enclosing_mount(false) {}
|
|
|
|
|
|
|
|
QString unique_id() const;
|
|
|
|
bool is_suitable() const;
|
|
|
|
|
|
|
|
static QString ConvertAndFree(char *str);
|
|
|
|
void ReadDriveInfo(GDrive *drive);
|
|
|
|
void ReadVolumeInfo(GVolume *volume);
|
|
|
|
void ReadMountInfo(GMount *mount);
|
|
|
|
|
|
|
|
// Only available if it's a physical drive
|
2020-04-23 21:08:28 +02:00
|
|
|
ScopedGObject<GVolume> volume_ptr;
|
2018-02-27 18:06:05 +01:00
|
|
|
QString volume_name;
|
|
|
|
QString volume_unix_device;
|
|
|
|
QString volume_root_uri;
|
|
|
|
QString volume_uuid;
|
|
|
|
|
|
|
|
// Only available if it's a physical drive
|
2020-04-23 21:08:28 +02:00
|
|
|
ScopedGObject<GDrive> drive_ptr;
|
2018-02-27 18:06:05 +01:00
|
|
|
QString drive_name;
|
|
|
|
bool drive_removable;
|
|
|
|
|
|
|
|
// Only available if it's mounted
|
2020-04-23 21:08:28 +02:00
|
|
|
ScopedGObject<GMount> mount_ptr;
|
2018-02-27 18:06:05 +01:00
|
|
|
QString mount_path;
|
|
|
|
QString mount_uri;
|
|
|
|
QString mount_name;
|
|
|
|
QStringList mount_icon_names;
|
|
|
|
QString mount_uuid;
|
|
|
|
quint64 filesystem_size;
|
|
|
|
quint64 filesystem_free;
|
|
|
|
QString filesystem_type;
|
|
|
|
|
|
|
|
bool invalid_enclosing_mount;
|
|
|
|
};
|
|
|
|
|
|
|
|
void VolumeAdded(GVolume *volume);
|
|
|
|
void VolumeRemoved(GVolume *volume);
|
|
|
|
|
|
|
|
void MountAdded(GMount *mount);
|
|
|
|
void MountChanged(GMount *mount);
|
|
|
|
void MountRemoved(GMount *mount);
|
|
|
|
|
|
|
|
static void VolumeAddedCallback(GVolumeMonitor*, GVolume*, gpointer);
|
|
|
|
static void VolumeRemovedCallback(GVolumeMonitor*, GVolume*, gpointer);
|
|
|
|
|
|
|
|
static void MountAddedCallback(GVolumeMonitor*, GMount*, gpointer);
|
|
|
|
static void MountChangedCallback(GVolumeMonitor*, GMount*, gpointer);
|
|
|
|
static void MountRemovedCallback(GVolumeMonitor*, GMount*, gpointer);
|
|
|
|
|
|
|
|
static void VolumeMountFinished(GObject *object, GAsyncResult *result, gpointer);
|
|
|
|
static void VolumeEjectFinished(GObject *object, GAsyncResult *result, gpointer);
|
|
|
|
static void MountEjectFinished(GObject *object, GAsyncResult *result, gpointer);
|
|
|
|
static void MountUnmountFinished(GObject *object, GAsyncResult *result, gpointer);
|
|
|
|
|
|
|
|
// You MUST hold the mutex while calling this function
|
|
|
|
QString FindUniqueIdByMount(GMount *mount) const;
|
|
|
|
QString FindUniqueIdByVolume(GVolume *volume) const;
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
T LockAndGetDeviceInfo(const QString &id, T DeviceInfo::*field);
|
|
|
|
|
|
|
|
private:
|
|
|
|
ScopedGObject<GVolumeMonitor> monitor_;
|
|
|
|
QList<gulong> signals_;
|
|
|
|
|
|
|
|
QMutex mutex_;
|
|
|
|
QMap<QString, DeviceInfo> devices_;
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
T GioLister::LockAndGetDeviceInfo(const QString &id, T DeviceInfo::*field) {
|
|
|
|
QMutexLocker l(&mutex_);
|
|
|
|
if (!devices_.contains(id)) return T();
|
|
|
|
|
|
|
|
return devices_[id].*field;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // GIOLISTER_H
|