You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

153 lines
5.9 KiB

/*
Copyright (C) 2010 by Jacopo De Simoi <wilderkde@gmail.com>
Copyright (C) 2014 by Lukáš Tinkl <ltinkl@redhat.com>
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, 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "ksolidnotify.h"
#include <Solid/DeviceNotifier>
#include <Solid/DeviceInterface>
#include <Solid/StorageDrive>
#include <Solid/StorageVolume>
#include <Solid/StorageAccess>
#include <Solid/OpticalDrive>
#include <Solid/OpticalDisc>
#include <Solid/PortableMediaPlayer>
#include <Solid/Predicate>
#include <KLocalizedString>
KSolidNotify::KSolidNotify(QObject* parent):
QObject(parent)
{
Solid::Predicate p(Solid::DeviceInterface::StorageAccess);
p |= Solid::Predicate(Solid::DeviceInterface::OpticalDrive);
p |= Solid::Predicate(Solid::DeviceInterface::PortableMediaPlayer);
QList<Solid::Device> devices = Solid::Device::listFromQuery(p);
foreach (const Solid::Device &dev, devices)
{
m_devices.insert(dev.udi(), dev);
connectSignals(&m_devices[dev.udi()]);
}
connect(Solid::DeviceNotifier::instance(), SIGNAL(deviceAdded(const QString &)),
this, SLOT(onDeviceAdded(const QString &)));
connect(Solid::DeviceNotifier::instance(), SIGNAL(deviceRemoved(const QString &)),
this, SLOT(onDeviceRemoved(const QString &)));
}
void KSolidNotify::onDeviceAdded(const QString &udi)
{
Solid::Device device(udi);
m_devices.insert(udi, device);
connectSignals(&m_devices[udi]);
}
void KSolidNotify::onDeviceRemoved(const QString &udi)
{
if (m_devices[udi].is<Solid::StorageVolume>())
{
Solid::StorageAccess *access = m_devices[udi].as<Solid::StorageAccess>();
if (access)
disconnect(access, 0, this, 0);
}
m_devices.remove(udi);
}
bool KSolidNotify::isSafelyRemovable(const QString &udi)
{
Solid::Device parent = m_devices[udi].parent();
if (parent.is<Solid::StorageDrive>())
{
Solid::StorageDrive *drive = parent.as<Solid::StorageDrive>();
return (!drive->isInUse() && (drive->isHotpluggable() || drive->isRemovable()));
}
Solid::StorageAccess* access = m_devices[udi].as<Solid::StorageAccess>();
if (access) {
return !m_devices[udi].as<Solid::StorageAccess>()->isAccessible();
} else {
// If this check fails, the device has been already physically
// ejected, so no need to say that it is safe to remove it
return false;
}
}
void KSolidNotify::connectSignals(Solid::Device* device)
{
Solid::StorageAccess *access = device->as<Solid::StorageAccess>();
if (access) {
connect(access, SIGNAL(teardownDone(Solid::ErrorType, QVariant, const QString &)),
this, SLOT(storageTeardownDone(Solid::ErrorType, QVariant , const QString &)));
connect(access, SIGNAL(setupDone(Solid::ErrorType, QVariant, const QString &)),
this, SLOT(storageSetupDone(Solid::ErrorType, QVariant , const QString &)));
}
if (device->is<Solid::OpticalDisc>()) {
Solid::OpticalDrive *drive = device->parent().as<Solid::OpticalDrive>();
connect(drive, SIGNAL(ejectDone(Solid::ErrorType, QVariant, const QString &)),
this, SLOT(storageEjectDone(Solid::ErrorType, QVariant , const QString &)));
}
}
void KSolidNotify::storageSetupDone(Solid::ErrorType error, QVariant errorData, const QString &udi)
{
if (error) {
Solid::Device device(udi);
const QString errorMessage = i18n("Could not mount the following device: %1", device.description());
emit notify(error, errorMessage, errorData.toString(), udi);
}
}
void KSolidNotify::storageTeardownDone(Solid::ErrorType error, QVariant errorData, const QString &udi)
{
if (error) {
Solid::Device device(udi);
const QString errorMessage = i18n("Could not unmount the following device: %1\nOne or more files on this device are open within an application ", device.description());
emit notify(error, errorMessage, errorData.toString(), udi);
} else if (isSafelyRemovable(udi)) {
Solid::Device device(udi);
const QString errorMessage = i18nc("The term \"remove\" here means \"physically disconnect the device from the computer\", whereas \"safely\" means \"without risk of data loss\"", "The following device can now be safely removed: %1", device.description());
emit notify(error, errorMessage, errorData.toString(), udi);
}
}
void KSolidNotify::storageEjectDone(Solid::ErrorType error, QVariant errorData, const QString &udi)
{
if (error)
{
QString discUdi;
foreach (Solid::Device device, m_devices) {
if (device.parentUdi() == udi) {
discUdi = device.udi();
}
}
if (discUdi.isNull()) {
//This should not happen, bail out
return;
}
Solid::Device discDevice(discUdi);
const QString errorMessage = i18n("Could not eject the following device: %1\nOne or more files on this device are open within an application ", discDevice.description());
emit notify(error, errorMessage, errorData.toString(), udi);
} else if (isSafelyRemovable(udi)) {
Solid::Device device(udi);
const QString errorMessage = i18n("The following device can now be safely removed: %1", device.description());
emit notify(error, errorMessage, errorData.toString(), udi);
}
}