File: udisksdevice.cpp

package info (click to toggle)
cantata 3.4.0.ds1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 20,428 kB
  • sloc: cpp: 109,584; perl: 1,366; xml: 722; python: 139; lex: 110; sh: 105; yacc: 78; makefile: 8
file content (803 lines) | stat: -rw-r--r-- 24,830 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
/*
    Copyright 2010 Michael Zanetti <mzanetti@kde.org>
    Copyright 2010-2012 Lukáš Tinkl <ltinkl@redhat.com>

    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 "udisksdevice.h"
#include "udisksblock.h"
#include "udisksdevicebackend.h"
#include "udisksdeviceinterface.h"
#include "udisksgenericinterface.h"
#include "udisksopticaldisc.h"
#include "udisksopticaldrive.h"
#include "udisksstorageaccess.h"
#include "udisksstoragevolume.h"

#include <solid-lite/device.h>
#include <solid-lite/deviceinterface.h>
#include <solid-lite/genericinterface.h>

#include <QDebug>

#include <QDBusArgument>
#include <QDBusMessage>
#include <QDBusMetaType>
#include <QDBusPendingReply>

#include <QDomDocument>

using namespace Solid::Backends::UDisks2;

// Adapted from KLocale as Solid needs to be Qt-only
static QString formatByteSize(double size)
{
	// Per IEC 60027-2

	// Binary prefixes
	//Tebi-byte             TiB             2^40    1,099,511,627,776 bytes
	//Gibi-byte             GiB             2^30    1,073,741,824 bytes
	//Mebi-byte             MiB             2^20    1,048,576 bytes
	//Kibi-byte             KiB             2^10    1,024 bytes

	QString s;
	// Gibi-byte
	if (size >= 1073741824.0) {
		size /= 1073741824.0;
		if (size > 1024)// Tebi-byte
			s = QCoreApplication::translate("", "%1 TiB").arg(QLocale().toString(size / 1024.0, 'f', 1));
		else
			s = QCoreApplication::translate("", "%1 GiB").arg(QLocale().toString(size, 'f', 1));
	}
	// Mebi-byte
	else if (size >= 1048576.0) {
		size /= 1048576.0;
		s = QCoreApplication::translate("", "%1 MiB").arg(QLocale().toString(size, 'f', 1));
	}
	// Kibi-byte
	else if (size >= 1024.0) {
		size /= 1024.0;
		s = QCoreApplication::translate("", "%1 KiB").arg(QLocale().toString(size, 'f', 1));
	}
	// Just byte
	else if (size > 0) {
		s = QCoreApplication::translate("", "%1 B").arg(QLocale().toString(size, 'f', 1));
	}
	// Nothing
	else {
		s = QCoreApplication::translate("", "0 B");
	}
	return s;
}

Device::Device(const QString& udi)
	: Solid::Ifaces::Device(), m_backend(DeviceBackend::backendForUDI(udi))
{
	if (m_backend) {
		connect(m_backend, SIGNAL(changed()), this, SIGNAL(changed()));
		connect(m_backend, SIGNAL(propertyChanged(QMap<QString, int>)), this, SIGNAL(propertyChanged(QMap<QString, int>)));
	}
	else {
		qDebug() << "Created invalid Device for udi" << udi;
	}
}

Device::~Device()
{
}

QString Device::udi() const
{
	if (m_backend) {
		return m_backend->udi();
	}

	return QString();
}

QVariant Device::prop(const QString& key) const
{
	if (m_backend) {
		return m_backend->prop(key);
	}

	return QVariant();
}

bool Device::propertyExists(const QString& key) const
{
	if (m_backend) {
		return m_backend->propertyExists(key);
	}

	return false;
}

QVariantMap Device::allProperties() const
{
	if (m_backend) {
		return m_backend->allProperties();
	}

	return QVariantMap();
}

bool Device::hasInterface(const QString& name) const
{
	if (m_backend) {
		return m_backend->interfaces().contains(name);
	}

	return false;
}

QStringList Device::interfaces() const
{
	if (m_backend) {
		return m_backend->interfaces();
	}

	return QStringList();
}

QObject* Device::createDeviceInterface(const Solid::DeviceInterface::Type& type)
{
	if (!queryDeviceInterface(type)) {
		return nullptr;
	}

	DeviceInterface* iface = nullptr;
	switch (type) {
	case Solid::DeviceInterface::GenericInterface:
		iface = new GenericInterface(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 StorageDrive(this);
		break;
	case Solid::DeviceInterface::OpticalDrive:
		iface = new OpticalDrive(this);
		break;
	case Solid::DeviceInterface::StorageVolume:
		iface = new StorageVolume(this);
		break;
	case Solid::DeviceInterface::OpticalDisc:
		iface = new OpticalDisc(this);
		break;
	default:
		break;
	}
	return iface;
}

bool Device::queryDeviceInterface(const Solid::DeviceInterface::Type& type) const
{
	switch (type) {
	case Solid::DeviceInterface::GenericInterface:
		return true;
	case Solid::DeviceInterface::Block:
		return isBlock() || isDrive();
	case Solid::DeviceInterface::StorageVolume:
		return isStorageVolume();
	case Solid::DeviceInterface::StorageAccess:
		return isStorageAccess();
	case Solid::DeviceInterface::StorageDrive:
		return isDrive();
	case Solid::DeviceInterface::OpticalDrive:
		return isOpticalDrive();
	case Solid::DeviceInterface::OpticalDisc:
		return isOpticalDisc();
	default:
		return false;
	}
}

QStringList Device::emblems() const
{
	QStringList res;

	if (queryDeviceInterface(Solid::DeviceInterface::StorageAccess)) {
		const UDisks2::StorageAccess accessIface(const_cast<Device*>(this));
		if (accessIface.isAccessible()) {
			if (isEncryptedContainer())
				res << "emblem-encrypted-unlocked";
			else
				res << "emblem-mounted";
		}
		else {
			if (isEncryptedContainer())
				res << "emblem-encrypted-locked";
			else
				res << "emblem-unmounted";
		}
	}

	return res;
}

QString Device::description() const
{
	const QString hintName = property("HintName").toString();// non-cached
	if (!hintName.isEmpty())
		return hintName;

	if (isLoop())
		return QObject::tr("Loop Device");
	else if (isSwap())
		return QObject::tr("Swap Space");
	else if (queryDeviceInterface(Solid::DeviceInterface::StorageDrive))
		return storageDescription();
	else if (queryDeviceInterface(Solid::DeviceInterface::StorageVolume))
		return volumeDescription();
	else
		return product();
}

QString Device::storageDescription() const
{
	QString description;
	const UDisks2::StorageDrive storageDrive(const_cast<Device*>(this));
	Solid::StorageDrive::DriveType drive_type = storageDrive.driveType();
	const bool drive_is_hotpluggable = storageDrive.isHotpluggable();

	if (drive_type == Solid::StorageDrive::CdromDrive) {
		const UDisks2::OpticalDrive opticalDrive(const_cast<Device*>(this));
		Solid::OpticalDrive::MediumTypes mediumTypes = opticalDrive.supportedMedia();
		QString first;
		QString second;

		first = QCoreApplication::translate("", "CD-ROM", "First item of %1%2 Drive sentence");
		if (mediumTypes & Solid::OpticalDrive::Cdr)
			first = QCoreApplication::translate("", "CD-R", "First item of %1%2 Drive sentence");
		if (mediumTypes & Solid::OpticalDrive::Cdrw)
			first = QCoreApplication::translate("", "CD-RW", "First item of %1%2 Drive sentence");

		if (mediumTypes & Solid::OpticalDrive::Dvd)
			second = QCoreApplication::translate("", "/DVD-ROM", "Second item of %1%2 Drive sentence");
		if (mediumTypes & Solid::OpticalDrive::Dvdplusr)
			second = QCoreApplication::translate("", "/DVD+R", "Second item of %1%2 Drive sentence");
		if (mediumTypes & Solid::OpticalDrive::Dvdplusrw)
			second = QCoreApplication::translate("", "/DVD+RW", "Second item of %1%2 Drive sentence");
		if (mediumTypes & Solid::OpticalDrive::Dvdr)
			second = QCoreApplication::translate("", "/DVD-R", "Second item of %1%2 Drive sentence");
		if (mediumTypes & Solid::OpticalDrive::Dvdrw)
			second = QCoreApplication::translate("", "/DVD-RW", "Second item of %1%2 Drive sentence");
		if (mediumTypes & Solid::OpticalDrive::Dvdram)
			second = QCoreApplication::translate("", "/DVD-RAM", "Second item of %1%2 Drive sentence");
		if ((mediumTypes & Solid::OpticalDrive::Dvdr) && (mediumTypes & Solid::OpticalDrive::Dvdplusr)) {
			if (mediumTypes & Solid::OpticalDrive::Dvdplusdl)
				second = QObject::tr("/DVD±R DL", "Second item of %1%2 Drive sentence");
			else
				second = QObject::tr("/DVD±R", "Second item of %1%2 Drive sentence");
		}
		if ((mediumTypes & Solid::OpticalDrive::Dvdrw) && (mediumTypes & Solid::OpticalDrive::Dvdplusrw)) {
			if ((mediumTypes & Solid::OpticalDrive::Dvdplusdl) || (mediumTypes & Solid::OpticalDrive::Dvdplusdlrw))
				second = QObject::tr("/DVD±RW DL", "Second item of %1%2 Drive sentence");
			else
				second = QObject::tr("/DVD±RW", "Second item of %1%2 Drive sentence");
		}
		if (mediumTypes & Solid::OpticalDrive::Bd)
			second = QCoreApplication::translate("", "/BD-ROM", "Second item of %1%2 Drive sentence");
		if (mediumTypes & Solid::OpticalDrive::Bdr)
			second = QCoreApplication::translate("", "/BD-R", "Second item of %1%2 Drive sentence");
		if (mediumTypes & Solid::OpticalDrive::Bdre)
			second = QCoreApplication::translate("", "/BD-RE", "Second item of %1%2 Drive sentence");
		if (mediumTypes & Solid::OpticalDrive::HdDvd)
			second = QCoreApplication::translate("", "/HD DVD-ROM", "Second item of %1%2 Drive sentence");
		if (mediumTypes & Solid::OpticalDrive::HdDvdr)
			second = QCoreApplication::translate("", "/HD DVD-R", "Second item of %1%2 Drive sentence");
		if (mediumTypes & Solid::OpticalDrive::HdDvdrw)
			second = QCoreApplication::translate("", "/HD DVD-RW", "Second item of %1%2 Drive sentence");

		if (drive_is_hotpluggable)
			description = QCoreApplication::translate("", "External %1%2 Drive", "%1 is CD-ROM/CD-R/etc; %2 is '/DVD-ROM'/'/DVD-R'/etc (with leading slash)").arg(first).arg(second);
		else
			description = QCoreApplication::translate("", "%1%2 Drive", "%1 is CD-ROM/CD-R/etc; %2 is '/DVD-ROM'/'/DVD-R'/etc (with leading slash)").arg(first).arg(second);

		return description;
	}

	if (drive_type == Solid::StorageDrive::Floppy) {
		if (drive_is_hotpluggable)
			description = QCoreApplication::translate("", "External Floppy Drive");
		else
			description = QCoreApplication::translate("", "Floppy Drive");

		return description;
	}

	const bool drive_is_removable = storageDrive.isRemovable();

	if (drive_type == Solid::StorageDrive::HardDisk && !drive_is_removable) {
		QString size_str = formatByteSize(storageDrive.size());
		if (!size_str.isEmpty()) {
			if (drive_is_hotpluggable)
				description = QCoreApplication::translate("", "%1 External Hard Drive", "%1 is the size").arg(size_str);
			else
				description = QCoreApplication::translate("", "%1 Hard Drive", "%1 is the size").arg(size_str);
		}
		else {
			if (drive_is_hotpluggable)
				description = QCoreApplication::translate("", "External Hard Drive");
			else
				description = QCoreApplication::translate("", "Hard Drive");
		}

		return description;
	}

	QString vendormodel_str;
	QString model = product();
	QString vendor_str = vendor();

	if (vendor_str.isEmpty()) {
		if (!model.isEmpty())
			vendormodel_str = model;
	}
	else {
		if (model.isEmpty())
			vendormodel_str = vendor_str;
		else {
			if (model.startsWith(vendor_str)) {
				// e.g. vendor is "Nokia" and model is "Nokia N950" we do not want "Nokia Nokia N950" as description
				vendormodel_str = model;
			}
			else {
				vendormodel_str = QCoreApplication::translate("", "%1 %2", "%1 is the vendor, %2 is the model of the device").arg(vendor_str).arg(model);
			}
		}
	}

	if (vendormodel_str.isEmpty())
		description = QCoreApplication::translate("", "Drive");
	else
		description = vendormodel_str;

	return description;
}

QString Device::volumeDescription() const
{
	QString description;
	const UDisks2::StorageVolume storageVolume(const_cast<Device*>(this));
	QString volume_label = prop("IdLabel").toString();
	if (volume_label.isEmpty())
		volume_label = prop("Name").toString();
	if (!volume_label.isEmpty())
		return volume_label;

	UDisks2::Device storageDevice(drivePath());
	const UDisks2::StorageDrive storageDrive(&storageDevice);
	Solid::StorageDrive::DriveType drive_type = storageDrive.driveType();

	// Handle media in optical drives
	if (drive_type == Solid::StorageDrive::CdromDrive) {
		const UDisks2::OpticalDisc disc(const_cast<Device*>(this));
		switch (disc.discType()) {
		case Solid::OpticalDisc::UnknownDiscType:
		case Solid::OpticalDisc::CdRom:
			description = QCoreApplication::translate("", "CD-ROM");
			break;

		case Solid::OpticalDisc::CdRecordable:
			if (disc.isBlank())
				description = QCoreApplication::translate("", "Blank CD-R");
			else
				description = QCoreApplication::translate("", "CD-R");
			break;

		case Solid::OpticalDisc::CdRewritable:
			if (disc.isBlank())
				description = QCoreApplication::translate("", "Blank CD-RW");
			else
				description = QCoreApplication::translate("", "CD-RW");
			break;

		case Solid::OpticalDisc::DvdRom:
			description = QCoreApplication::translate("", "DVD-ROM");
			break;

		case Solid::OpticalDisc::DvdRam:
			if (disc.isBlank())
				description = QCoreApplication::translate("", "Blank DVD-RAM");
			else
				description = QCoreApplication::translate("", "DVD-RAM");
			break;

		case Solid::OpticalDisc::DvdRecordable:
			if (disc.isBlank())
				description = QCoreApplication::translate("", "Blank DVD-R");
			else
				description = QCoreApplication::translate("", "DVD-R");
			break;

		case Solid::OpticalDisc::DvdPlusRecordableDuallayer:
			if (disc.isBlank())
				description = QCoreApplication::translate("", "Blank DVD+R Dual-Layer");
			else
				description = QCoreApplication::translate("", "DVD+R Dual-Layer");
			break;

		case Solid::OpticalDisc::DvdRewritable:
			if (disc.isBlank())
				description = QCoreApplication::translate("", "Blank DVD-RW");
			else
				description = QCoreApplication::translate("", "DVD-RW");
			break;

		case Solid::OpticalDisc::DvdPlusRecordable:
			if (disc.isBlank())
				description = QCoreApplication::translate("", "Blank DVD+R");
			else
				description = QCoreApplication::translate("", "DVD+R");
			break;

		case Solid::OpticalDisc::DvdPlusRewritable:
			if (disc.isBlank())
				description = QCoreApplication::translate("", "Blank DVD+RW");
			else
				description = QCoreApplication::translate("", "DVD+RW");
			break;

		case Solid::OpticalDisc::DvdPlusRewritableDuallayer:
			if (disc.isBlank())
				description = QCoreApplication::translate("", "Blank DVD+RW Dual-Layer");
			else
				description = QCoreApplication::translate("", "DVD+RW Dual-Layer");
			break;

		case Solid::OpticalDisc::BluRayRom:
			description = QCoreApplication::translate("", "BD-ROM");
			break;

		case Solid::OpticalDisc::BluRayRecordable:
			if (disc.isBlank())
				description = QCoreApplication::translate("", "Blank BD-R");
			else
				description = QCoreApplication::translate("", "BD-R");
			break;

		case Solid::OpticalDisc::BluRayRewritable:
			if (disc.isBlank())
				description = QCoreApplication::translate("", "Blank BD-RE");
			else
				description = QCoreApplication::translate("", "BD-RE");
			break;

		case Solid::OpticalDisc::HdDvdRom:
			description = QCoreApplication::translate("", "HD DVD-ROM");
			break;

		case Solid::OpticalDisc::HdDvdRecordable:
			if (disc.isBlank())
				description = QCoreApplication::translate("", "Blank HD DVD-R");
			else
				description = QCoreApplication::translate("", "HD DVD-R");
			break;

		case Solid::OpticalDisc::HdDvdRewritable:
			if (disc.isBlank())
				description = QCoreApplication::translate("", "Blank HD DVD-RW");
			else
				description = QCoreApplication::translate("", "HD DVD-RW");
			break;
		}

		// Special case for pure audio disc
		if (disc.availableContent() == Solid::OpticalDisc::Audio)
			description = QCoreApplication::translate("", "Audio CD");

		return description;
	}

	const bool drive_is_removable = storageDrive.isRemovable();
	const bool drive_is_hotpluggable = storageDrive.isHotpluggable();

	QString size_str = formatByteSize(storageVolume.size());
	if (isEncryptedContainer()) {
		if (!size_str.isEmpty())
			description = QCoreApplication::translate("", "%1 Encrypted Drive", "%1 is the size").arg(size_str);
		else
			description = QCoreApplication::translate("", "Encrypted Drive");
	}
	else if (drive_type == Solid::StorageDrive::HardDisk && !drive_is_removable) {
		if (!size_str.isEmpty()) {
			if (drive_is_hotpluggable)
				description = QCoreApplication::translate("", "%1 External Hard Drive", "%1 is the size").arg(size_str);
			else
				description = QCoreApplication::translate("", "%1 Hard Drive", "%1 is the size").arg(size_str);
		}
		else {
			if (drive_is_hotpluggable)
				description = QCoreApplication::translate("", "External Hard Drive");
			else
				description = QCoreApplication::translate("", "Hard Drive");
		}
	}
	else {
		if (drive_is_removable)
			description = QCoreApplication::translate("", "%1 Removable Media", "%1 is the size").arg(size_str);
		else
			description = QCoreApplication::translate("", "%1 Media", "%1 is the size").arg(size_str);
	}

	return description;
}

QString Device::icon() const
{
	QString iconName = property("HintIconName").toString();// non-cached

	if (!iconName.isEmpty()) {
		return iconName;
	}
	else if (isLoop() || isSwap()) {
		return "drive-harddisk";
	}
	else if (isDrive()) {
		const bool isRemovable = prop("Removable").toBool();
		const QString conn = prop("ConnectionBus").toString();

		if (isOpticalDrive())
			return "drive-optical";
		else if (isRemovable && !prop("Optical").toBool()) {
			if (conn == "usb")
				return "drive-removable-media-usb";
			else
				return "drive-removable-media";
		}
	}
	else if (isBlock()) {
		const QString drv = drivePath();
		if (drv.isEmpty() || drv == "/")
			return "drive-harddisk";// stuff like loop devices or swap which don't have the Drive prop set

		Device drive(drv);

		// handle media
		const QString media = drive.prop("Media").toString();

		if (!media.isEmpty()) {
			if (drive.prop("Optical").toBool())// optical stuff
			{
				bool isWritable = drive.prop("OpticalBlank").toBool();

				const UDisks2::OpticalDisc disc(const_cast<Device*>(this));
				Solid::OpticalDisc::ContentTypes availContent = disc.availableContent();

				if (availContent & Solid::OpticalDisc::VideoDvd)// Video DVD
					return "media-optical-dvd-video";
				else if ((availContent & Solid::OpticalDisc::VideoCd) || (availContent & Solid::OpticalDisc::SuperVideoCd))// Video CD
					return "media-optical-video";
				else if ((availContent & Solid::OpticalDisc::Data) && (availContent & Solid::OpticalDisc::Audio))// Mixed CD
					return "media-optical-mixed-cd";
				else if (availContent & Solid::OpticalDisc::Audio)// Audio CD
					return "media-optical-audio";
				else if (availContent & Solid::OpticalDisc::Data)// Data CD
					return "media-optical-data";
				else if (isWritable)
					return "media-optical-recordable";
				else {
					if (media.startsWith("optical_dvd") || media.startsWith("optical_hddvd"))// DVD
						return "media-optical-dvd";
					else if (media.startsWith("optical_bd"))// BluRay
						return "media-optical-blu-ray";
				}

				// fallback for every other optical disc
				return "media-optical";
			}

			if (media == "flash_ms")// Flash & Co.
				return "media-flash-memory-stick";
			else if (media == "flash_sd" || media == "flash_sdhc" || media == "flash_sdxc" || media == "flash_mmc")
				return "media-flash-sd-mmc";
			else if (media == "flash_sm")
				return "media-flash-smart-media";
			else if (media == "thumb")
				return "drive-removable-media-usb-pendrive";
			else if (media.startsWith("flash"))
				return "media-flash";
			else if (media == "floppy")// the good ol' floppy
				return "media-floppy";
		}

		if (drive.prop("ConnectionBus").toString() == "sdio")// hack for SD cards connected thru sdio bus
			return "media-flash-sd-mmc";

		return drive.icon();
	}

	return "drive-harddisk";// general fallback
}

QString Device::product() const
{
	if (!isDrive()) {
		Device drive(drivePath());
		return drive.prop("Model").toString();
	}

	return prop("Model").toString();
}

QString Device::vendor() const
{
	if (!isDrive()) {
		Device drive(drivePath());
		return drive.prop("Vendor").toString();
	}

	return prop("Vendor").toString();
}

QString Device::parentUdi() const
{
	QString parent;

	if (propertyExists("Drive"))// block
		parent = drivePath();
	else if (propertyExists("Table"))// partition
		parent = prop("Table").value<QDBusObjectPath>().path();
	else if (parent.isEmpty() || parent == "/") {
		parent = UD2_UDI_DISKS_PREFIX;
	}
	return parent;
}

QString Device::errorToString(const QString& error) const
{
	if (error == UD2_ERROR_UNAUTHORIZED || error == UD2_ERROR_NOT_AUTHORIZED)
		return QCoreApplication::translate("", "You are not authorized to perform this operation");
	else if (error == UD2_ERROR_BUSY)
		return QCoreApplication::translate("", "The device is currently busy");
	else if (error == UD2_ERROR_FAILED)
		return QCoreApplication::translate("", "The requested operation has failed");
	else if (error == UD2_ERROR_CANCELED)
		return QCoreApplication::translate("", "The requested operation has been canceled");
	else if (error == UD2_ERROR_INVALID_OPTION)
		return QCoreApplication::translate("", "An invalid or malformed option has been given");
	else if (error == UD2_ERROR_MISSING_DRIVER)
		return QCoreApplication::translate("", "The kernel driver for this filesystem type is not available");
	else if (error == UD2_ERROR_ALREADY_MOUNTED)
		return QCoreApplication::translate("", "The device is already mounted");
	else if (error == UD2_ERROR_NOT_MOUNTED)
		return QCoreApplication::translate("", "The device is not mounted");
	else if (error == UD2_ERROR_MOUNTED_BY_OTHER_USER)
		return QCoreApplication::translate("", "The device is mounted by another user");
	else if (error == UD2_ERROR_ALREADY_UNMOUNTING)
		return QCoreApplication::translate("", "The device is already unmounting");
	else if (error == UD2_ERROR_TIMED_OUT)
		return QCoreApplication::translate("", "The operation timed out");
	else if (error == UD2_ERROR_WOULD_WAKEUP)
		return QCoreApplication::translate("", "The operation would wake up a disk that is in a deep-sleep state");
	else if (error == UD2_ERROR_ALREADY_CANCELLED)
		return QCoreApplication::translate("", "The operation has already been canceled");
	else
		return QCoreApplication::translate("", "An unspecified error has occurred");
}

Solid::ErrorType Device::errorToSolidError(const QString& error) const
{
	if (error == UD2_ERROR_BUSY)
		return Solid::DeviceBusy;
	else if (error == UD2_ERROR_FAILED)
		return Solid::OperationFailed;
	else if (error == UD2_ERROR_CANCELED)
		return Solid::UserCanceled;
	else if (error == UD2_ERROR_INVALID_OPTION)
		return Solid::InvalidOption;
	else if (error == UD2_ERROR_MISSING_DRIVER)
		return Solid::MissingDriver;
	else
		return Solid::UnauthorizedOperation;
}

bool Device::isBlock() const
{
	return hasInterface(UD2_DBUS_INTERFACE_BLOCK);
}

bool Device::isPartition() const
{
	return hasInterface(UD2_DBUS_INTERFACE_PARTITION);
}

bool Device::isPartitionTable() const
{
	return hasInterface(UD2_DBUS_INTERFACE_PARTITIONTABLE);
}

bool Device::isStorageVolume() const
{
	return isPartition() || isPartitionTable() || isStorageAccess() || isOpticalDisc();
}

bool Device::isStorageAccess() const
{
	return hasInterface(UD2_DBUS_INTERFACE_FILESYSTEM) || isEncryptedContainer();
}

bool Device::isDrive() const
{
	return hasInterface(UD2_DBUS_INTERFACE_DRIVE);
}

bool Device::isOpticalDrive() const
{
	return isDrive() && !prop("MediaCompatibility").toStringList().filter("optical_").isEmpty();
}

bool Device::isOpticalDisc() const
{
	const QString drv = drivePath();
	if (drv.isEmpty() || drv == "/")
		return false;

	Device drive(drv);
	return drive.prop("Optical").toBool();
}

bool Device::mightBeOpticalDisc() const
{
	const QString drv = drivePath();
	if (drv.isEmpty() || drv == "/")
		return false;

	Device drive(drv);
	return drive.isOpticalDrive();
}

bool Device::isMounted() const
{
	return propertyExists("MountPoints") && !qdbus_cast<QByteArrayList>(prop("MountPoints")).isEmpty();
}

bool Device::isEncryptedContainer() const
{
	return hasInterface(UD2_DBUS_INTERFACE_ENCRYPTED);
}

bool Device::isEncryptedCleartext() const
{
	const QString holderDevice = prop("CryptoBackingDevice").toString();
	if (holderDevice.isEmpty() || holderDevice == "/")
		return false;
	else
		return true;
}

bool Device::isSwap() const
{
	return hasInterface(UD2_DBUS_INTERFACE_SWAP);
}

bool Device::isLoop() const
{
	return hasInterface(UD2_DBUS_INTERFACE_LOOP);
}

QString Device::drivePath() const
{
	return prop("Drive").value<QDBusObjectPath>().path();
}