Beginnings of some code to handle removable devices. DeviceKit engine for linux. Doesn't do anything useful yet.

This commit is contained in:
David Sansome 2010-06-25 19:04:10 +00:00
parent a9addb3c54
commit ad9d6e7e73
10 changed files with 413 additions and 4 deletions

View File

@ -52,6 +52,10 @@ set(SOURCES
core/taskmanager.cpp
core/utilities.cpp
devices/device.cpp
devices/deviceengine.cpp
devices/filesystemdeviceengine.cpp
engines/enginebase.cpp
library/groupbydialog.cpp
@ -168,6 +172,10 @@ set(HEADERS
core/songloader.h
core/taskmanager.h
devices/device.h
devices/deviceengine.h
devices/filesystemdeviceengine.h
engines/enginebase.h
library/groupbydialog.h
@ -398,6 +406,11 @@ list(APPEND OTHER_SOURCES
if(NOT APPLE AND NOT WIN32)
file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/dbus)
# Hack to get it to generate interfaces without namespaces - required
# because otherwise org::freedesktop::UDisks and
# org::freedesktop::UDisks::Device conflict.
list(APPEND QT_DBUSXML2CPP_EXECUTABLE -N)
# MPRIS DBUS interfaces
qt4_add_dbus_adaptor(SOURCES
dbus/org.freedesktop.MediaPlayer.player.xml

22
src/devices/device.cpp Normal file
View File

@ -0,0 +1,22 @@
/* This file is part of Clementine.
Clementine 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.
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#include "device.h"
Device::Device(QObject *parent)
: QObject(parent)
{
}

29
src/devices/device.h Normal file
View File

@ -0,0 +1,29 @@
/* This file is part of Clementine.
Clementine 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.
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef DEVICE_H
#define DEVICE_H
#include <QObject>
class Device : public QObject {
Q_OBJECT
public:
Device(QObject *parent = 0);
};
#endif // DEVICE_H

View File

@ -0,0 +1,22 @@
/* This file is part of Clementine.
Clementine 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.
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#include "deviceengine.h"
DeviceEngine::DeviceEngine(QObject *parent)
: QAbstractItemModel(parent)
{
}

View File

@ -0,0 +1,42 @@
/* This file is part of Clementine.
Clementine 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.
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef DEVICEENGINE_H
#define DEVICEENGINE_H
#include <QAbstractItemModel>
class DeviceEngine : public QAbstractItemModel {
Q_OBJECT
public:
DeviceEngine(QObject* parent = 0);
enum Column {
Column_UniqueID = 0,
Column_FriendlyName,
Column_Manufacturer,
Column_Model,
Column_Capacity,
Column_FreeSpace,
LastDeviceEngineColumn
};
virtual bool Init() = 0;
};
#endif // DEVICEENGINE_H

View File

@ -0,0 +1,191 @@
/* This file is part of Clementine.
Clementine 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.
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#include "filesystemdeviceengine.h"
#include "dbus/udisks.h"
#include "dbus/udisksdevice.h"
FilesystemDeviceEngine::FilesystemDeviceEngine(QObject *parent)
: DeviceEngine(parent)
{
}
FilesystemDeviceEngine::~FilesystemDeviceEngine() {
}
bool FilesystemDeviceEngine::Init() {
interface_.reset(new OrgFreedesktopUDisksInterface(
OrgFreedesktopUDisksInterface::staticInterfaceName(),
"/org/freedesktop/UDisks", QDBusConnection::systemBus()));
if (!interface_->isValid()) {
qWarning() << "Error connecting to the DeviceKit-disks DBUS service";
interface_.reset();
return false;
}
connect(interface_.get(), SIGNAL(DeviceAdded(QDBusObjectPath)), SLOT(DeviceAdded(QDBusObjectPath)));
connect(interface_.get(), SIGNAL(DeviceRemoved(QDBusObjectPath)), SLOT(DeviceRemoved(QDBusObjectPath)));
connect(interface_.get(), SIGNAL(DeviceChanged(QDBusObjectPath)), SLOT(DeviceChanged(QDBusObjectPath)));
Reset();
return true;
}
QModelIndex FilesystemDeviceEngine::index(int row, int column, const QModelIndex &parent) const {
if (parent.isValid())
return QModelIndex();
return createIndex(row, column);
}
int FilesystemDeviceEngine::rowCount(const QModelIndex &parent) const {
if (parent.isValid())
return 0;
return device_info_.count();
}
int FilesystemDeviceEngine::columnCount(const QModelIndex &parent) const {
return LastFilesystemDeviceEngineColumn;
}
QVariant FilesystemDeviceEngine::data(const QModelIndex &index, int role) const {
const DeviceInfo& info = device_info_[index.row()];
switch (index.column()) {
case Column_UniqueID:
return info.unique_id();
case Column_FriendlyName:
if (!info.device_presentation_name.isEmpty())
return info.device_presentation_name;
if (!info.drive_model.isEmpty() || !info.drive_vendor.isEmpty())
return QString("%1 %2").arg(info.drive_vendor, info.drive_model);
return info.drive_serial;
case Column_Manufacturer:
return info.drive_vendor;
case Column_Model:
return info.drive_model;
case Column_Capacity:
return info.device_size;
case Column_FreeSpace:
return QVariant();
case Column_DbusPath:
return info.dbus_path;
case Column_MountPath:
return info.device_mount_paths.isEmpty() ? QVariant() : info.device_mount_paths[0];
default:
return QVariant();
}
}
void FilesystemDeviceEngine::Reset() {
QDBusPendingReply<QList<QDBusObjectPath> > reply = interface_->EnumerateDevices();
reply.waitForFinished();
if (!reply.isValid()) {
qWarning() << "Error enumerating DeviceKit-disks devices:" << reply.error();
return;
}
#if QT_VERSION >= 0x040600
emit beginResetModel();
#endif
device_info_.clear();
foreach (const QDBusObjectPath& path, reply.value()) {
DeviceInfo info = ReadDeviceInfo(path);
if (info.suitable)
device_info_ << info;
}
#if QT_VERSION >= 0x040600
emit endResetModel();
#else
reset();
#endif
}
FilesystemDeviceEngine::DeviceInfo FilesystemDeviceEngine::ReadDeviceInfo(
const QDBusObjectPath &path) const {
DeviceInfo ret;
OrgFreedesktopUDisksDeviceInterface device(
OrgFreedesktopUDisksDeviceInterface::staticInterfaceName(),
path.path(), QDBusConnection::systemBus());
if (!device.isValid()) {
qWarning() << "Error connecting to the device interface on" << path.path();
return ret;
}
// Don't do anything with internal drives, hidden drives, or things that
// aren't partitions
if (device.deviceIsSystemInternal() ||
device.devicePresentationHide() ||
!device.deviceIsPartition()) {
return ret;
}
ret.suitable = true;
ret.dbus_path = path.path();
ret.drive_serial = device.driveSerial();
ret.drive_model = device.driveModel();
ret.drive_vendor = device.driveVendor();
ret.device_presentation_name = device.devicePresentationName();
ret.device_presentation_icon_name = device.devicePresentationIconName();
ret.device_size = device.deviceSize();
return ret;
}
void FilesystemDeviceEngine::DeviceAdded(const QDBusObjectPath &path) {
DeviceInfo info = ReadDeviceInfo(path);
if (!info.suitable)
return;
emit beginInsertRows(QModelIndex(), device_info_.count(), device_info_.count());
device_info_ << info;
emit endInsertRows();
}
void FilesystemDeviceEngine::DeviceRemoved(const QDBusObjectPath &path) {
QModelIndex index = FindDevice(path);
if (!index.isValid())
return;
emit beginRemoveRows(QModelIndex(), index.row(), index.row());
device_info_.removeAt(index.row());
emit endRemoveRows();
}
void FilesystemDeviceEngine::DeviceChanged(const QDBusObjectPath &path) {
QModelIndex index = FindDevice(path);
DeviceInfo info = ReadDeviceInfo(path);
if (index.isValid() && !info.suitable)
DeviceRemoved(path);
else if (!index.isValid() && info.suitable)
DeviceAdded(path);
else if (index.isValid() && info.suitable) {
device_info_[index.row()] = info;
emit dataChanged(index, index.sibling(index.row(), columnCount()));
}
}

View File

@ -0,0 +1,84 @@
/* This file is part of Clementine.
Clementine 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.
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef FILESYSTEMDEVICEENGINE_H
#define FILESYSTEMDEVICEENGINE_H
#include "deviceengine.h"
#include <QStringList>
#include <boost/scoped_ptr.hpp>
class OrgFreedesktopUDisksInterface;
class QDBusObjectPath;
class FilesystemDeviceEngine : public DeviceEngine {
Q_OBJECT
public:
FilesystemDeviceEngine(QObject *parent = 0);
~FilesystemDeviceEngine();
enum Column {
Column_MountPath = LastDeviceEngineColumn,
Column_DbusPath,
LastFilesystemDeviceEngineColumn
};
bool Init();
QModelIndex index(int row, int column, const QModelIndex &parent) const;
int rowCount(const QModelIndex &parent = QModelIndex()) const;
int columnCount(const QModelIndex &parent = QModelIndex()) const;
QVariant data(const QModelIndex &index, int role) const;
private slots:
void DeviceAdded(const QDBusObjectPath& path);
void DeviceRemoved(const QDBusObjectPath& path);
void DeviceChanged(const QDBusObjectPath& path);
private:
struct DeviceInfo {
DeviceInfo() : suitable(false), device_size(0) {}
bool suitable;
QString dbus_path;
QString drive_serial;
QString drive_model;
QString drive_vendor;
QString device_presentation_name;
QString device_presentation_icon_name;
QStringList device_mount_paths;
quint64 device_size;
QString unique_id() const;
};
void Reset();
DeviceInfo ReadDeviceInfo(const QDBusObjectPath& path) const;
QModelIndex FindDevice(const QDBusObjectPath& path) const;
private:
boost::scoped_ptr<OrgFreedesktopUDisksInterface> interface_;
QList<DeviceInfo> device_info_;
};
#endif // FILESYSTEMDEVICEENGINE_H

View File

@ -18,6 +18,10 @@
#include "osdpretty.h"
#include "ui/systemtrayicon.h"
#ifdef Q_WS_X11
# include "dbus/notification.h"
#endif
#include <QCoreApplication>
#include <QtDebug>
#include <QSettings>

View File

@ -17,6 +17,7 @@
#ifndef OSD_H
#define OSD_H
#include <QDateTime>
#include <QImage>
#include <QObject>
@ -26,6 +27,7 @@
#include "core/song.h"
class NetworkAccessManager;
class OrgFreedesktopNotificationsInterface;
class OSDPretty;
class SystemTrayIcon;
@ -34,7 +36,6 @@ class QDBusPendingCallWatcher;
#ifdef Q_WS_X11
# include <QDBusArgument>
# include <boost/scoped_ptr.hpp>
# include "dbus/notification.h"
QDBusArgument& operator<< (QDBusArgument& arg, const QImage& image);
const QDBusArgument& operator>> (const QDBusArgument& arg, QImage& image);
@ -118,7 +119,7 @@ class OSD : public QObject {
#endif // Q_OS_DARWIN
#ifdef Q_WS_X11
boost::scoped_ptr<org::freedesktop::Notifications> interface_;
boost::scoped_ptr<OrgFreedesktopNotificationsInterface> interface_;
uint notification_id_;
QDateTime last_notification_time_;
#endif

View File

@ -15,6 +15,7 @@
*/
#include "osd.h"
#include "dbus/notification.h"
#include <QCoreApplication>
#include <QtDebug>
@ -52,8 +53,8 @@ const QDBusArgument& operator>> (const QDBusArgument& arg, QImage& image) {
}
void OSD::Init() {
interface_.reset(new org::freedesktop::Notifications(
"org.freedesktop.Notifications",
interface_.reset(new OrgFreedesktopNotificationsInterface(
OrgFreedesktopNotificationsInterface::staticInterfaceName(),
"/org/freedesktop/Notifications",
QDBusConnection::sessionBus()));
if (!interface_->isValid()) {