Files
cantata/3rdparty/solid-lite/backends/wmi/wmidevice.cpp
Craig Drummond eff0e66d39 Use AUTOMOC
2018-03-07 19:04:14 +00:00

706 lines
20 KiB
C++

/*
Copyright 2012 Patrick von Reth <vonreth@kde.org>
Copyright 2005-2007 Kevin Ottens <ervin@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) version 3, or any
later version accepted by the membership of KDE e.V. (or its
successor approved by the membership of KDE e.V.), which shall
act as a proxy defined in Section 6 of version 3 of the license.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#include "wmidevice.h"
#include <solid-lite/genericinterface.h>
#include "wmiquery.h"
#include "wmimanager.h"
#include "wmideviceinterface.h"
#include "wmigenericinterface.h"
//#include "wmiprocessor.h"
#include "wmiblock.h"
#include "wmistorageaccess.h"
#include "wmistorage.h"
#include "wmicdrom.h"
#include "wmivolume.h"
#include "wmiopticaldisc.h"
//#include "wmicamera.h"
#include "wmiportablemediaplayer.h"
//#include "wminetworkinterface.h"
//#include "wmiacadapter.h"
//#include "wmibattery.h"
//#include "wmibutton.h"
//#include "wmiaudiointerface.h"
//#include "wmidvbinterface.h"
//#include "wmivideo.h"
#include <QDebug>
using namespace Solid::Backends::Wmi;
class Solid::Backends::Wmi::WmiDevicePrivate
{
public:
WmiDevicePrivate(const QString &_udi)
: parent(0)
, m_udi(_udi)
, m_wmiTable()
, m_wmiProperty()
, m_wmiValue()
{
}
~WmiDevicePrivate()
{
}
void discoverType()
{
if (!convertUDItoWMI(m_udi,m_wmiTable,m_wmiProperty,m_wmiValue,m_type))
return;
interfaceList<<getInterfaces(m_type);
}
const QString udi() const { return m_udi; }
WmiQuery::Item sendQuery()
{
if(m_item.isNull()){
QString query("SELECT * FROM " + m_wmiTable + " WHERE " + m_wmiProperty + "='" + m_wmiValue + "'");
WmiQuery::ItemList items = WmiQuery::instance().sendQuery(query);
Q_ASSERT(items.length() == 1);
if(items.length() != 1)
qDebug()<<"WmiDevicePrivate::sendQuery() failed";
m_item = items[0];
}
return m_item;
}
static bool convertUDItoWMI(const QString &udi, QString &wmiTable, QString &wmiProperty, QString &wmiValue,Solid::DeviceInterface::Type &type)
{
QString _udi = udi;
QStringList x = _udi.remove("/org/kde/solid/wmi/").split('/');
if (x.size() != 2 || x[1].isEmpty()) {
qDebug() << "invalid udi detected" << udi;
return false;
}
type = DeviceInterface::fromString(x[0]);
wmiProperty = getPropertyNameForUDI(type);
wmiValue = x[1];
wmiTable = getWMITable(type);
// qDebug()<<"wmi"<< type <<wmiTable <<wmiProperty <<wmiValue;
return true;
}
static bool exists(const QString &udi)
{
QString wmiTable;
QString wmiProperty;
QString wmiValue;
Solid::DeviceInterface::Type solidDevice;
if (!convertUDItoWMI(udi, wmiTable, wmiProperty, wmiValue,solidDevice))
return false;
QString query("SELECT * FROM " + wmiTable + " WHERE " + wmiProperty + "='" + wmiValue + "'");
WmiQuery::ItemList list = WmiQuery::instance().sendQuery(query);
if(list.size() > 0)
return true;
qWarning()<<"Device UDI:"<<udi<<"doesnt exist";
// qDebug()<<query;
return false;
}
static QString generateUDI(const QString &key, const QString &property)
{
return QString("/org/kde/solid/wmi/%1/%2").arg(key).arg(property);
}
static QList<Solid::DeviceInterface::Type> getInterfaces(const Solid::DeviceInterface::Type &type)
{
QList<Solid::DeviceInterface::Type> interfaceList;
interfaceList<<type;
switch (type)
{
case Solid::DeviceInterface::GenericInterface:
break;
//case Solid::DeviceInterface::Processor:
// break;
//case Solid::DeviceInterface::Block:
break;
case Solid::DeviceInterface::StorageAccess:
break;
case Solid::DeviceInterface::StorageDrive:
break;
case Solid::DeviceInterface::OpticalDrive:
interfaceList <<Solid::DeviceInterface::Block<<Solid::DeviceInterface::StorageDrive;
break;
case Solid::DeviceInterface::StorageVolume:
interfaceList <<Solid::DeviceInterface::Block<<Solid::DeviceInterface::StorageAccess;
break;
case Solid::DeviceInterface::OpticalDisc:
interfaceList <<Solid::DeviceInterface::Block<<Solid::DeviceInterface::StorageVolume;
break;
//case Solid::DeviceInterface::Camera:
// break;
case Solid::DeviceInterface::PortableMediaPlayer:
break;
/*case Solid::DeviceInterface::NetworkInterface:
break;
case Solid::DeviceInterface::AcAdapter:
break;
case Solid::DeviceInterface::Battery:
break;
case Solid::DeviceInterface::Button:
break;
case Solid::DeviceInterface::AudioInterface:
break;
case Solid::DeviceInterface::DvbInterface:
break;
case Solid::DeviceInterface::Video:
break;
*/
case Solid::DeviceInterface::Unknown:
case Solid::DeviceInterface::Last:
default:
break;
}
if (interfaceList.size() == 0)
qWarning() << "no interface found for type" << type;
return interfaceList;
}
static QString getUDIKey(const Solid::DeviceInterface::Type &type)
{
QStringList list = DeviceInterface::toStringList(type);
QString value = list.size() > 0 ? list[0] : QString();
return value;
}
static QString getWMITable(const Solid::DeviceInterface::Type &type)
{
QString wmiTable;
switch (type)
{
case Solid::DeviceInterface::GenericInterface:
break;
//case Solid::DeviceInterface::Processor:
// wmiTable = "Win32_Processor";
// break;
case Solid::DeviceInterface::Block:
break;
case Solid::DeviceInterface::StorageAccess:
wmiTable = "Win32_DiskPartition";
break;
case Solid::DeviceInterface::StorageDrive:
wmiTable = "Win32_DiskDrive";
break;
case Solid::DeviceInterface::OpticalDrive:
wmiTable = "Win32_CDROMDrive";
break;
case Solid::DeviceInterface::StorageVolume:
wmiTable = "Win32_DiskPartition";
break;
case Solid::DeviceInterface::OpticalDisc:
wmiTable = "Win32_CDROMDrive";
break;
//case Solid::DeviceInterface::Camera:
// break;
case Solid::DeviceInterface::PortableMediaPlayer:
break;
/*case Solid::DeviceInterface::NetworkInterface:
break;
case Solid::DeviceInterface::AcAdapter:
case Solid::DeviceInterface::Battery:
wmiTable = "Win32_Battery";
break;
case Solid::DeviceInterface::Button:
break;
case Solid::DeviceInterface::AudioInterface:
break;
case Solid::DeviceInterface::DvbInterface:
break;
case Solid::DeviceInterface::Video:
break;
*/
case Solid::DeviceInterface::Unknown:
case Solid::DeviceInterface::Last:
default:
wmiTable = "unknown";
break;
}
return wmiTable;
}
static QString getIgnorePattern(const Solid::DeviceInterface::Type &type)
{
QString propertyName;
switch(type){
case Solid::DeviceInterface::OpticalDisc:
propertyName = " WHERE MediaLoaded=TRUE";
break;
}
return propertyName;
}
static QString getPropertyNameForUDI(const Solid::DeviceInterface::Type &type)
{
QString propertyName;
switch(type){
case Solid::DeviceInterface::OpticalDrive:
case Solid::DeviceInterface::OpticalDisc:
propertyName = "Drive";
break;
case Solid::DeviceInterface::StorageDrive:
propertyName = "Index";
break;
default:
propertyName = "DeviceID";
}
return propertyName;
}
static QStringList generateUDIList(const Solid::DeviceInterface::Type &type)
{
QStringList result;
WmiQuery::ItemList list = WmiQuery::instance().sendQuery( "SELECT * FROM " + getWMITable(type) + getIgnorePattern(type));
foreach(const WmiQuery::Item& item, list) {
QString propertyName = getPropertyNameForUDI(type);
QString property = item.getProperty(propertyName).toString();
result << generateUDI(getUDIKey(type),property.toLower());
}
return result;
}
WmiDevice *parent;
static int m_instanceCount;
QString m_parent_uid;
QString m_udi;
QString m_wmiTable;
QString m_wmiProperty;
QString m_wmiValue;
Solid::DeviceInterface::Type m_type;
WmiQuery::Item m_item;
QList<Solid::DeviceInterface::Type> interfaceList;
};
Q_DECLARE_METATYPE(ChangeDescription)
Q_DECLARE_METATYPE(QList<ChangeDescription>)
WmiDevice::WmiDevice(const QString &udi)
: Device(), d(new WmiDevicePrivate(udi))
{
d->discoverType();
foreach (Solid::DeviceInterface::Type type, d->interfaceList)
{
createDeviceInterface(type);
}
}
WmiDevice::~WmiDevice()
{
//delete d->parent;
delete d;
}
QStringList WmiDevice::generateUDIList(const Solid::DeviceInterface::Type &type)
{
return WmiDevicePrivate::generateUDIList(type);
}
bool WmiDevice::exists(const QString &udi)
{
return WmiDevicePrivate::exists(udi);
}
bool WmiDevice::isValid() const
{
// does not work
//return sendQuery( "SELECT * FROM Win32_SystemDevices WHERE PartComponent='\\\\\\\\BEAST\root\cimv2:Win32_Processor.DeviceID=\"CPU0\"'" ).count() == 1;
return true;
}
QString WmiDevice::udi() const
{
return d->udi();
}
QString WmiDevice::parentUdi() const
{
if(!d->m_parent_uid.isEmpty())
return d->m_parent_uid;
QString result;
const QString value = udi().split("/").last();
switch(d->m_type){
case Solid::DeviceInterface::StorageVolume:
case Solid::DeviceInterface::StorageAccess:
result = "/org/kde/solid/wmi/storage/"+property("DiskIndex").toString();
break;
case Solid::DeviceInterface::OpticalDisc:
result = "/org/kde/solid/wmi/storage.cdrom/"+property("Drive").toString().toLower();
break;
}
if(result.isEmpty() && !value.isEmpty()){
result = udi();
result = result.remove("/"+value);
}
d->m_parent_uid = result;
return d->m_parent_uid;
}
QString WmiDevice::vendor() const
{
QString propertyName;
switch(type()){
//case Solid::DeviceInterface::Processor:
// propertyName = "Manufacturer";
// break;
case Solid::DeviceInterface::OpticalDrive:
case Solid::DeviceInterface::OpticalDisc:
propertyName = "Caption";
break;
//case Solid::DeviceInterface::Battery:
// propertyName = "DeviceID";
// break;
case Solid::DeviceInterface::StorageAccess:
case Solid::DeviceInterface::StorageVolume:
{
WmiDevice parent(parentUdi());
return parent.vendor();
}
break;
case Solid::DeviceInterface::StorageDrive:
propertyName = "Model";
break;
default:
propertyName = "DeviceID";//TODO:
}
return property(propertyName).toString();
}
QString WmiDevice::product() const
{
QString propertyName;
switch(type()){
//case Solid::DeviceInterface::Processor:
// propertyName = "Name";
// break;
case Solid::DeviceInterface::StorageAccess:
case Solid::DeviceInterface::StorageVolume:
{
WmiQuery::Item item = win32LogicalDiskByDiskPartitionID(property("DeviceID").toString());
return item.getProperty("VolumeName").toString();
}
break;
//case Solid::DeviceInterface::AcAdapter:
// return description();
default:
propertyName = "Caption";
}
return property(propertyName).toString();
}
QString WmiDevice::icon() const
{
QString propertyName;
switch(type()){
//case Solid::DeviceInterface::Processor:
// propertyName = "cpu";
// break;
case Solid::DeviceInterface::OpticalDisc:
{
WmiDevice dev(udi());
OpticalDisc disk(&dev);
if(disk.availableContent() | Solid::OpticalDisc::Audio)//no other are recognized yet
propertyName = "media-optical-audio";
else
propertyName = "drive-optical";
break;
}
//case Solid::DeviceInterface::Battery:
// propertyName = "battery";
// break;
case Solid::DeviceInterface::StorageAccess:
case Solid::DeviceInterface::StorageVolume:
{
WmiDevice parent(parentUdi());
Storage storage(&parent);
if(storage.bus() == Solid::StorageDrive::Usb)
propertyName = "drive-removable-media-usb-pendrive";
else
propertyName = "drive-harddisk";
}
break;
}
return propertyName;
}
QStringList WmiDevice::emblems() const
{
return QStringList(); // TODO
}
QString WmiDevice::description() const
{
switch(type()){
case Solid::DeviceInterface::OpticalDisc:
return property("VolumeName").toString();
/*case Solid::DeviceInterface::AcAdapter:
return QObject::tr("A/C Adapter");
case Solid::DeviceInterface::Battery:
{
WmiDevice dev(udi());
Battery bat(&dev);
return QObject::tr("%1 Battery", "%1 is battery technology").arg(bat.batteryTechnology());
}
*/
default:
return product();
}
}
QVariant WmiDevice::property(const QString &key) const
{
WmiQuery::Item item = d->sendQuery();
QVariant result = item.getProperty(key);
// qDebug()<<"property"<<key<<result;
return result;
}
const Solid::DeviceInterface::Type WmiDevice::type() const{
return d->m_type;
}
/**
* @brief WmiDevice::win32DiskPartitionByDeviceIndex
* @param deviceID something like "\\.\PHYSICALDRIVE0"
* @return
*/
WmiQuery::Item WmiDevice::win32DiskPartitionByDeviceIndex(const QString &deviceID){
WmiQuery::Item result;
QString id = deviceID;
QString query("ASSOCIATORS OF {Win32_DiskDrive.DeviceID='"+ id +"'} WHERE AssocClass = Win32_DiskDriveToDiskPartition");
WmiQuery::ItemList items = WmiQuery::instance().sendQuery(query);
if(items.length()>0){
result = items[0];
}
return result;
}
/**
* @brief WmiDevice::win32DiskDriveByDiskPartitionID
* @param deviceID something like "disk #1, partition #0"
* @return
*/
WmiQuery::Item WmiDevice::win32DiskDriveByDiskPartitionID(const QString &deviceID){
WmiQuery::Item result;
QString id = deviceID;
QString query("ASSOCIATORS OF {Win32_DiskPartition.DeviceID='"+ id +"'} WHERE AssocClass = Win32_DiskDriveToDiskPartition");
WmiQuery::ItemList items = WmiQuery::instance().sendQuery(query);
if(items.length()>0){
result = items[0];
}
return result;
}
/**
* @brief WmiDevice::win32LogicalDiskByDiskPartitionID
* @param deviceID something like "disk #1, partition #0"
* @return
*/
WmiQuery::Item WmiDevice::win32LogicalDiskByDiskPartitionID(const QString &deviceID){
WmiQuery::Item result;
QString id = deviceID;
QString query("ASSOCIATORS OF {Win32_DiskPartition.DeviceID='" + id + "'} WHERE AssocClass = Win32_LogicalDiskToPartition");
WmiQuery::ItemList items = WmiQuery::instance().sendQuery(query);
if(items.length()>0){
result = items[0];
}
return result;
}
/**
* @brief WmiDevice::win32DiskPartitionByDriveLetter
* @param driveLetter something lik "D:"
* @return
*/
WmiQuery::Item WmiDevice::win32DiskPartitionByDriveLetter(const QString &driveLetter){
WmiQuery::Item result;
QString id = driveLetter;
QString query("ASSOCIATORS OF {Win32_LogicalDisk.DeviceID='" + id + "'} WHERE AssocClass = Win32_LogicalDiskToPartition");
WmiQuery::ItemList items = WmiQuery::instance().sendQuery(query);
if(items.length()>0){
result = items[0];
}
return result;
}
/**
* @brief WmiDevice::win32LogicalDiskByDriveLetter
* @param driveLetter something lik "D:"
* @return
*/
WmiQuery::Item WmiDevice::win32LogicalDiskByDriveLetter(const QString &driveLetter){
WmiQuery::Item result;
QString id = driveLetter;
QString query("SELECT * FROM Win32_LogicalDisk WHERE DeviceID='"+id+"'");
WmiQuery::ItemList items = WmiQuery::instance().sendQuery(query);
if(items.length()>0){
result = items[0];
}
return result;
}
QMap<QString, QVariant> WmiDevice::allProperties() const
{
WmiQuery::Item item = d->sendQuery();
return item.getAllProperties();
}
bool WmiDevice::propertyExists(const QString &key) const
{
WmiQuery::Item item = d->sendQuery();
const bool isEmpty = item.getProperty( key ).isValid();
return isEmpty;
}
bool WmiDevice::queryDeviceInterface(const Solid::DeviceInterface::Type &type) const
{
// Special cases not matching with WMI capabilities
if (type==Solid::DeviceInterface::GenericInterface) {
return true;
}
return d->interfaceList.contains(type);
}
QObject *WmiDevice::createDeviceInterface(const Solid::DeviceInterface::Type &type)
{
if (!queryDeviceInterface(type)) {
return 0;
}
DeviceInterface *iface = 0;
switch (type)
{
case Solid::DeviceInterface::GenericInterface:
iface = new GenericInterface(this);
break;
//case Solid::DeviceInterface::Processor:
// iface = new Processor(this);
// break;
case Solid::DeviceInterface::Block:
iface = new Block(this);
break;
case Solid::DeviceInterface::StorageAccess:
iface = new StorageAccess(this);
break;
case Solid::DeviceInterface::StorageDrive:
iface = new Storage(this);
break;
case Solid::DeviceInterface::OpticalDrive:
iface = new Cdrom(this);
break;
case Solid::DeviceInterface::StorageVolume:
iface = new Volume(this);
break;
case Solid::DeviceInterface::OpticalDisc:
iface = new OpticalDisc(this);
break;
//case Solid::DeviceInterface::Camera:
// iface = new Camera(this);
// break;
case Solid::DeviceInterface::PortableMediaPlayer:
iface = new PortableMediaPlayer(this);
break;
/*case Solid::DeviceInterface::NetworkInterface:
iface = new NetworkInterface(this);
break;
case Solid::DeviceInterface::AcAdapter:
iface = new AcAdapter(this);
break;
case Solid::DeviceInterface::Battery:
iface = new Battery(this);
break;
case Solid::DeviceInterface::Button:
iface = new Button(this);
break;
case Solid::DeviceInterface::AudioInterface:
iface = new AudioInterface(this);
break;
case Solid::DeviceInterface::DvbInterface:
iface = new DvbInterface(this);
break;
case Solid::DeviceInterface::Video:
iface = new Video(this);
break;
*/
case Solid::DeviceInterface::Unknown:
case Solid::DeviceInterface::Last:
break;
}
return iface;
}
void WmiDevice::slotPropertyModified(int /*count */, const QList<ChangeDescription> &changes)
{
QMap<QString,int> result;
foreach (const ChangeDescription &change, changes)
{
QString key = change.key;
bool added = change.added;
bool removed = change.removed;
Solid::GenericInterface::PropertyChange type = Solid::GenericInterface::PropertyModified;
if (added)
{
type = Solid::GenericInterface::PropertyAdded;
}
else if (removed)
{
type = Solid::GenericInterface::PropertyRemoved;
}
result[key] = type;
}
emit propertyChanged(result);
}
void WmiDevice::slotCondition(const QString &condition, const QString &reason)
{
emit conditionRaised(condition, reason);
}
#include "backends/wmi/moc_wmidevice.cpp"