aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/udisks/udisksplugin.cpp
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2010-08-29 15:59:19 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2010-08-29 15:59:19 +0000
commitdd5a730d8a67b8bd4eb0d906e920c5720f380d37 (patch)
treec7cccae124ec17e51e388664fd1cb2291527f6b6 /src/plugins/General/udisks/udisksplugin.cpp
parent8656a3e4be6700e5b1a7de740923eebecdd07bd6 (diff)
downloadqmmp-dd5a730d8a67b8bd4eb0d906e920c5720f380d37.tar.gz
qmmp-dd5a730d8a67b8bd4eb0d906e920c5720f380d37.tar.bz2
qmmp-dd5a730d8a67b8bd4eb0d906e920c5720f380d37.zip
added udisks plugin
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1856 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/udisks/udisksplugin.cpp')
-rw-r--r--src/plugins/General/udisks/udisksplugin.cpp255
1 files changed, 255 insertions, 0 deletions
diff --git a/src/plugins/General/udisks/udisksplugin.cpp b/src/plugins/General/udisks/udisksplugin.cpp
new file mode 100644
index 000000000..1683f095b
--- /dev/null
+++ b/src/plugins/General/udisks/udisksplugin.cpp
@@ -0,0 +1,255 @@
+/***************************************************************************
+ * Copyright (C) 2010 by Ilya Kotov *
+ * forkotov02@hotmail.ru *
+ * *
+ * This program 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 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ * This program 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 this program; if not, write to the *
+ * Free Software Foundation, Inc., *
+ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
+ ***************************************************************************/
+
+#include <QtDBus>
+#include <QActionGroup>
+#include <qmmpui/generalhandler.h>
+#include <qmmpui/mediaplayer.h>
+#include <qmmpui/playlistmanager.h>
+#include <qmmpui/playlistitem.h>
+#include <qmmp/qmmp.h>
+#include "udisksdevice.h"
+#include "udisksmanager.h"
+#include "udisksplugin.h"
+
+UDisksPlugin::UDisksPlugin(QObject *parent)
+ : General(parent)
+{
+ m_manager = new UDisksManager(this);
+ m_actions = new QActionGroup(this);
+ connect(m_manager,SIGNAL(deviceAdded(QDBusObjectPath)), SLOT(addDevice(QDBusObjectPath)));
+ connect(m_manager,SIGNAL(deviceRemoved(QDBusObjectPath)), SLOT(removeDevice(QDBusObjectPath)));
+ connect(m_actions,SIGNAL(triggered (QAction *)), SLOT(processAction(QAction *)));
+ //load settings
+ QSettings settings(Qmmp::configFile(), QSettings::IniFormat);
+ settings.beginGroup("UDisks");
+ m_detectCDA = settings.value("cda", true).toBool();
+ m_detectRemovable = settings.value("removable", true).toBool();
+ m_addTracks = false; //do not load tracks on startup
+ m_addFiles = false;
+ //find existing devices
+ QList<QDBusObjectPath> devs = m_manager->findAllDevices();
+ foreach(QDBusObjectPath o, devs)
+ addDevice(o);
+ //load remaining settings
+ m_addTracks = settings.value("add_tracks", false).toBool();
+ m_removeTracks = settings.value("remove_tracks", false).toBool();
+ m_addFiles = settings.value("add_files", false).toBool();
+ m_removeFiles = settings.value("remove_files", false).toBool();
+ settings.endGroup();
+}
+
+
+UDisksPlugin::~UDisksPlugin()
+{
+}
+
+void UDisksPlugin::removeDevice(QDBusObjectPath o)
+{
+ foreach(UDisksDevice *device, m_devices)
+ {
+ if (device->objectPath() == o)
+ {
+ m_devices.removeAll(device);
+ delete device;
+ qDebug("UDisksPlugin: device \"%s\" removed", qPrintable(o.path()));
+ updateActions();
+ break;
+ }
+ }
+}
+
+void UDisksPlugin::addDevice(QDBusObjectPath o)
+{
+ foreach(UDisksDevice *device, m_devices) //is it already exists?
+ {
+ if (device->objectPath() == o)
+ return;
+ }
+ UDisksDevice *device = new UDisksDevice(o, this);
+
+ //audio cd
+ if (device->property("DeviceIsOpticalDisc").toBool() &&
+ device->property("OpticalDiscNumAudioTracks").toInt())
+ {
+ if (m_detectCDA)
+ {
+ qDebug("UDisksPlugin: device \"%s\" added (cd audio)", qPrintable(o.path()));
+ m_devices << device;
+ connect(device, SIGNAL(changed()), SLOT(updateActions()));
+ updateActions();
+ }
+ else
+ delete device;
+ return;
+ }
+
+ // filter mounted partitions
+ if ((!device->property("DeviceIsPartition").toBool() ||
+ device->property("DeviceIsSystemInternal").toBool()) &&
+ !device->property("DeviceIsOpticalDisc").toBool())
+ {
+ delete device;
+ return;
+ }
+ if (device->property("PartitionSize").toLongLong() < 17000000000LL &&
+ (device->property("IdType").toString() == "vfat" ||
+ device->property("IdType").toString() == "iso9660" ||
+ device->property("IdType").toString() == "udf" ||
+ device->property("IdType").toString() == "ext2"))
+ {
+ if (m_detectRemovable)
+ {
+ qDebug("UDisksPlugin: device \"%s\" added (removable)", qPrintable(o.path()));
+ m_devices << device;
+ updateActions();
+ connect(device, SIGNAL(changed()), SLOT(updateActions()));
+ }
+ else
+ delete device;
+ return;
+ }
+ delete device;
+}
+
+void UDisksPlugin::updateActions()
+{
+ // add action for cd audio or mounted volume
+ foreach(UDisksDevice *device, m_devices)
+ {
+ QString dev_path;
+ if (device->property("DeviceIsOpticalDisc").toBool() &&
+ device->property("OpticalDiscNumAudioTracks").toInt()) //cd audio
+ dev_path = "cdda://" + device->property("block.device").toString();
+ else if (device->property("DeviceIsMounted").toBool()) //mounted volume
+ dev_path = device->property("DeviceMountPaths").toStringList()[0];
+ else
+ continue;
+
+ if (!findAction(dev_path))
+ {
+ QAction *action = new QAction(this);
+ QString actionText;
+ if (device->property("DeviceIsOpticalDisc").toBool()
+ && device->property("OpticalDiscNumAudioTracks").toInt())
+ actionText = QString(tr("Add CD \"%1\"")).arg(device->property("DeviceFile").toString());
+ else
+ {
+ QString name = device->property("IdLabel").toString();
+ if (name.isEmpty())
+ name = dev_path;
+ actionText = QString(tr("Add Volume \"%1\"")).arg(name);
+ }
+ action->setText(actionText);
+ action->setData(dev_path);
+ m_actions->addAction(action);
+ GeneralHandler::instance()->addAction(action, GeneralHandler::TOOLS_MENU);
+ addPath(dev_path);
+ }
+ }
+ // remove action if device is unmounted/removed
+ foreach(QAction *action, m_actions->actions ())
+ {
+ if (!findDevice(action))
+ {
+ m_actions->removeAction(action);
+ GeneralHandler::instance()->removeAction(action);
+ removePath(action->data().toString());
+ action->deleteLater();
+ }
+ }
+}
+
+void UDisksPlugin::processAction(QAction *action)
+{
+ qDebug("UDisksPlugin: action triggered: %s", qPrintable(action->data().toString()));
+ QString path = action->data().toString();
+ if (path.startsWith("cdda://"))
+ MediaPlayer::instance()->playListManager()->selectedPlayList()->addFile(path);
+ else
+ MediaPlayer::instance()->playListManager()->selectedPlayList()->addDirectory(path);
+}
+
+QAction *UDisksPlugin::findAction(const QString &dev_path)
+{
+ foreach(QAction *action, m_actions->actions ())
+ {
+ if (action->data().toString() == dev_path)
+ return action;
+ }
+ return 0;
+}
+
+UDisksDevice *UDisksPlugin::findDevice(QAction *action)
+{
+ foreach(UDisksDevice *device, m_devices)
+ {
+ QString dev_path;
+ if (device->property("DeviceIsOpticalDisc").toBool() &&
+ device->property("OpticalDiscNumAudioTracks").toInt())
+ {
+ dev_path = "cdda://" + device->property("DeviceFile").toString();
+ if (dev_path == action->data().toString())
+ return device;
+ }
+ if (device->property("DeviceIsMounted").toBool())
+ {
+ dev_path = device->property("DeviceMountPaths").toStringList()[0];
+ if (dev_path == action->data().toString())
+ return device;
+ }
+ }
+ return 0;
+}
+
+void UDisksPlugin::addPath(const QString &path)
+{
+ foreach(PlayListItem *item, MediaPlayer::instance()->playListManager()->selectedPlayList()->items()) // Is it already exist?
+ {
+ if (item->url().startsWith(path))
+ return;
+ }
+
+ if (path.startsWith("cdda://") && m_addTracks)
+ {
+ MediaPlayer::instance()->playListManager()->selectedPlayList()->addFile(path);
+ return;
+ }
+ else if (!path.startsWith("cdda://") && m_addFiles)
+ MediaPlayer::instance()->playListManager()->selectedPlayList()->addDirectory(path);
+}
+
+void UDisksPlugin::removePath(const QString &path)
+{
+ if ((path.startsWith("cdda://") && !m_removeTracks) ||
+ (!path.startsWith("cdda://") && !m_removeFiles)) //process settings
+ return;
+
+ PlayListModel *model = MediaPlayer::instance()->playListManager()->selectedPlayList();
+
+ int i = 0;
+ while (model->count() > 0 && i < model->count())
+ {
+ if (model->item(i)->url ().startsWith(path))
+ model->removeAt (i);
+ else
+ ++i;
+ }
+}