forked from linuxdeepin/udisks2-qt5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdblockpartition.cpp
743 lines (686 loc) · 22.4 KB
/
dblockpartition.cpp
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
// SPDX-FileCopyrightText: 2020 - 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: GPL-3.0-or-later
#include "dblockpartition.h"
#include "private/dblockdevice_p.h"
#include "udisks2_interface.h"
class DBlockPartitionPrivate : public DBlockDevicePrivate
{
public:
DBlockPartitionPrivate(DBlockPartition *qq);
OrgFreedesktopUDisks2PartitionInterface *dbus;
};
DBlockPartitionPrivate::DBlockPartitionPrivate(DBlockPartition *qq)
: DBlockDevicePrivate(qq)
{
}
qulonglong DBlockPartition::flags() const
{
Q_D(const DBlockPartition);
return d->dbus->flags();
}
bool DBlockPartition::isContained() const
{
Q_D(const DBlockPartition);
return d->dbus->isContained();
}
bool DBlockPartition::isContainer() const
{
Q_D(const DBlockPartition);
return d->dbus->isContainer();
}
QString DBlockPartition::name() const
{
Q_D(const DBlockPartition);
return d->dbus->name();
}
uint DBlockPartition::number() const
{
Q_D(const DBlockPartition);
return d->dbus->number();
}
qulonglong DBlockPartition::offset() const
{
Q_D(const DBlockPartition);
return d->dbus->offset();
}
qulonglong DBlockPartition::size() const
{
Q_D(const DBlockPartition);
return d->dbus->size();
}
QString DBlockPartition::table() const
{
Q_D(const DBlockPartition);
return d->dbus->table().path();
}
QString DBlockPartition::type() const
{
Q_D(const DBlockPartition);
return d->dbus->type();
}
DBlockPartition::Type DBlockPartition::eType() const
{
const QString &type = this->type();
if (type.isEmpty())
return Empty;
bool ok = false;
int value = type.toInt(&ok, 16);
if (!ok) {
return Unknow;
}
return static_cast<Type>(value);
}
QString DBlockPartition::UUID() const
{
Q_D(const DBlockPartition);
return d->dbus->uUID();
}
DBlockPartition::GUIDType DBlockPartition::guidType() const
{
static QByteArrayList list;
if (list.isEmpty()) {
// None
list << "00000000-0000-0000-0000-000000000000"
<< "024DEE41-33E7-11D3-9D69-0008C781F39F"
<< "C12A7328-F81F-11D2-BA4B-00A0C93EC93B"
<< "21686148-6449-6E6F-744E-656564454649"
<< "D3BFE2DE-3DAF-11DF-BA40-E3A556D89593"
<< "F4019732-066E-4E12-8273-346C5641494F"
<< "BFBFAFE7-A34F-448A-9A5B-6213EB736C22"
// Windows
<< "E3C9E316-0B5C-4DB8-817D-F92DF00215AE"
<< "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7"
<< "5808C8AA-7E8F-42E0-85D2-E1E90434CFB3"
<< "AF9B60A0-1431-4F62-BC68-3311714A69AD"
<< "DE94BBA4-06D1-4D40-A16A-BFD50179D6AC"
<< "37AFFC90-EF7D-4e96-91C3-2D7AE055B174"
<< "E75CAF8F-F680-4CEE-AFA3-B001E56EFC2D"
// HP-UX
<< "75894C1E-3AEB-11D3-B7C1-7B03A0000000"
<< "E2A1E728-32E3-11D6-A682-7B03A0000000"
// Linux
<< "0FC63DAF-8483-4772-8E79-3D69D8477DE4"
<< "A19D880F-05FC-4D3B-A006-743F0F84911E"
<< "44479540-F297-41B2-9AF7-D131D5F0458A"
<< "4F68BCE3-E8CD-4DB1-96E7-FBCAF984B709"
<< "69DAD710-2CE4-4E3C-B16C-21A1D49ABED3"
<< "B921B045-1DF0-41C3-AF44-4C6F280D3FAE"
<< "0657FD6D-A4AB-43C4-84E5-0933C84B4F4F"
<< "E6D6D379-F507-44C2-A23C-238F2A3DF928"
<< "933AC7E1-2EB4-4F13-B844-0E14E2AEF915"
<< "3B8F8425-20E0-4F3B-907F-1A25A76F98E8"
<< "7FFEC5C9-2D00-49B7-8941-3EA10A5586B7"
<< "CA7D7CCB-63ED-4C53-861C-1742536059CC"
<< "8DA63339-0007-60C0-C436-083AC8230908"
// FreeBSD
<< "83BD6B9D-7F41-11DC-BE0B-001560B84F0F"
<< "516E7CB4-6ECF-11D6-8FF8-00022D09712B"
<< "516E7CB5-6ECF-11D6-8FF8-00022D09712B"
<< "516E7CB6-6ECF-11D6-8FF8-00022D09712B"
<< "516E7CB8-6ECF-11D6-8FF8-00022D09712B"
<< "516E7CBA-6ECF-11D6-8FF8-00022D09712B"
// macOS Darwin
<< "48465300-0000-11AA-AA11-00306543ECAC"
<< "55465300-0000-11AA-AA11-00306543ECAC"
<< "6A898CC3-1DD2-11B2-99A6-080020736631"
<< "52414944-0000-11AA-AA11-00306543ECAC"
<< "52414944-5F4F-11AA-AA11-00306543ECAC"
<< "426F6F74-0000-11AA-AA11-00306543ECAC"
<< "4C616265-6C00-11AA-AA11-00306543ECAC"
<< "5265636F-7665-11AA-AA11-00306543ECAC"
<< "53746F72-6167-11AA-AA11-00306543ECAC"
<< "B6FA30DA-92D2-4A9A-96F1-871EC6486200"
<< "2E313465-19B9-463F-8126-8A7993773801"
<< "FA709C7E-65B1-4593-BFD5-E71D61DE9B02"
<< "BBBA6DF5-F46F-4A89-8F59-8765B2727503"
// Solaris illumos
<< "6A82CB45-1DD2-11B2-99A6-080020736631"
<< "6A85CF4D-1DD2-11B2-99A6-080020736631"
<< "6A87C46F-1DD2-11B2-99A6-080020736631"
<< "6A8B642B-1DD2-11B2-99A6-080020736631"
// << "6A898CC3-1DD2-11B2-99A6-080020736631"
<< "6A8EF2E9-1DD2-11B2-99A6-080020736631"
<< "6A90BA39-1DD2-11B2-99A6-080020736631"
<< "6A9283A5-1DD2-11B2-99A6-080020736631"
// reserved partition
<< "6A945A3B-1DD2-11B2-99A6-080020736631"
<< "6A9630D1-1DD2-11B2-99A6-080020736631"
<< "6A980767-1DD2-11B2-99A6-080020736631"
<< "6A96237F-1DD2-11B2-99A6-080020736631"
<< "6A8D2AC7-1DD2-11B2-99A6-080020736631"
// NetBSD
<< "49F48D32-B10E-11DC-B99B-0019D1879648"
<< "49F48D5A-B10E-11DC-B99B-0019D1879648"
<< "49F48D82-B10E-11DC-B99B-0019D1879648"
<< "49F48DAA-B10E-11DC-B99B-0019D1879648"
<< "2DB519C4-B10F-11DC-B99B-0019D1879648"
<< "2DB519EC-B10F-11DC-B99B-0019D1879648"
// ChromeOS
<< "FE3A2A5D-4F32-41A7-B725-ACCC3285A309"
<< "3CB8E202-3B7E-47DD-8A3C-7FF2A13CFCEC"
<< "2E0A753D-9E48-43B0-8337-B15192CB1B5E"
// HaiKu
<< "42465331-3BA3-10F1-802A-4861696B7521"
// MidnightBSD
<< "85D5E45E-237C-11E1-B4B3-E89A8F7FC3A7"
<< "85D5E45A-237C-11E1-B4B3-E89A8F7FC3A7"
<< "85D5E45B-237C-11E1-B4B3-E89A8F7FC3A7"
<< "0394EF8B-237E-11E1-B4B3-E89A8F7FC3A7"
<< "85D5E45C-237C-11E1-B4B3-E89A8F7FC3A7"
<< "85D5E45D-237C-11E1-B4B3-E89A8F7FC3A7"
// Ceph
<< "45B0969E-9B03-4F30-B4C6-B4B80CEFF106"
<< "45B0969E-9B03-4F30-B4C6-5EC00CEFF106"
<< "4FBD7E29-9D25-41B8-AFD0-062C0CEFF05D"
<< "4FBD7E29-9D25-41B8-AFD0-5EC00CEFF05D"
<< "89C57F98-2FE5-4DC0-89C1-F3AD0CEFF2BE"
<< "89C57F98-2FE5-4DC0-89C1-5EC00CEFF2BE"
// OpenBSD
<< "824CC7A0-36A8-11E3-890A-952519AD3F61"
// QNX
<< "CEF5A9AD-73BC-4601-89F3-CDEEEEE321A1"
// Plan 9
<< "C91818F9-8025-47AF-89D2-F030D7000C2C"
// VMware ESX
<< "9D275380-40AD-11DB-BF97-000C2911D1B8"
<< "AA31E02A-400F-11DB-9590-000C2911D1B8"
<< "9198EFFC-31C0-11DB-8F78-000C2911D1B8"
// Android-IA
<< "2568845D-2332-4675-BC39-8FA5A4748D15"
<< "114EAFFE-1552-4022-B26E-9B053604CF84"
<< "49A4D17F-93A3-45C1-A0DE-F50B2EBE2599"
<< "4177C722-9E92-4AAB-8644-43502BFD5506"
<< "EF32A33B-A409-486C-9141-9FFB711F6266"
<< "20AC26BE-20B7-11E3-84C5-6CFDB94711E9"
<< "38F428E6-D326-425D-9140-6E0EA133647C"
<< "A893EF21-E428-470A-9E55-0668FD91A2D9"
<< "DC76DDA9-5AC1-491C-AF42-A82591580C0D"
<< "EBC597D0-2053-4B15-8B64-E0AAC75F4DB1"
<< "8F68CC74-C5E5-48DA-BE91-A0C8C15E9C80"
<< "767941D0-2085-11E3-AD3B-6CFDB94711E9"
<< "AC6D7924-EB71-4DF8-B48D-E267B27148FF"
// Open Network Install Environment (ONIE)
<< "7412F7D5-A156-4B13-81DC-867174929325"
<< "D4E6E2CD-4469-46F3-B5CB-1BFF57AFC149"
// PowerPC
<< "9E1A2D38-C612-4316-AA26-8B49521E5A8B"
// freedesktop.org OSes (Linux, etc.)
<< "BC13C2FF-59E6-4262-A352-B275FD6F7172"
// Atari IOS
<< "734E5AFE-F61A-11E6-BC64-92361F002671";
}
const QString &guid = this->type();
if (guid.isEmpty())
return InvalidUUID;
int index = list.indexOf(guid.toLatin1());
if (index < 0)
return UnknowUUID;
return static_cast<GUIDType>((index + GUIDTypeBegin));
}
QString DBlockPartition::typeDescription(DBlockPartition::Type type)
{
switch (type) {
case Empty:
return "Empty";
case FAT12Type:
return "FAT12";
case XENIX_root:
return "XENIX root";
case XENIX_usr:
return "XENIX usr";
case FAT16_Less_32M:
return "FAT16 <32M";
case Extended:
return "Extended";
case FAT16Type:
return "FAT16";
case HPFS_NTFS:
return "HPFS/NTFS";
case AIX:
return "AIX";
case AIX_bootable:
return "AIX bootable";
case OS2_Boot_Manager:
return "OS2 Boot Manager";
case Win95_FAT32:
return "Win95 FAT32";
case Win95_FAT32_LBA:
return "Win95 FAT32 (LBA)";
case Win95_FAT16_LBA:
return "Win95 FAT16 (LBA)";
case Win95_Extended_LBA:
return "Win95 Ext'd (LBA)";
case OPUS:
return "OPUS";
case Hidden_FAT12:
return "Hidden FAT12";
case Compaq_diagnostics:
return "Compaq diagnostics";
case Hidden_FAT16_Less_32M:
return "Hidden FAT16 <32M";
case Hidden_FAT16:
return "Hidden FAT16";
case Hidden_HPFS_or_NTFS:
return "Hidden HPFS/NTFS";
case AST_SmartSleep:
return "AST SmartSleep";
case Hidden_Win95_FAT32:
return "Hidden Win95 FAT32";
case Hidden_Win95_FAT32_LBA:
return "Hidden Win95 FAT32 (LBA)";
case Hidden_Win95_FAT16_LBA:
return "Hidden Win95 FAT16";
case NEC_DOS:
return "NEC DOS";
case Plan9:
return "Plan 9";
case PartitionMagic_recovery:
return "PartitionMagic recovery";
case Venix_80286:
return "Venix 80286";
case PPC_PReP_Boot:
return "PPC PReP Boot";
case SFS:
return "SFS";
case QNX4_dot_x:
return "QNX4.x";
case QNX4_dot_x_2nd_part:
return "QNX4.x.2nd part";
case QNX4_dot_x_3rd_part:
return "QNX4.x 3rd part";
case OnTrack_DM:
return "OnTrack DM";
case OnTrack_DM6_Aux1:
return "OnTrack DM6 Aux1";
case CP_M:
return "CP/M";
case OnTrack_DM6_Aux3:
return "OnTrack DM6 Aux3";
case OnTrackDM6:
return "OnTrackDM6";
case EZ_Drive:
return "EZ-Drive";
case Golden_Bow:
return "Golden Bow";
case Priam_Edisk:
return "Priam Edisk";
case SpeedStor:
return "SpeedStor";
case GNU_HURD_or_SysV:
return "GNU HURD or SysV";
case Novell_Netware_286:
return "Novell Netware 286";
case Novell_Netware_386:
return "Novell Netware 386";
case DiskSecure_Multi_Boot:
return "DiskSecure Multi-Boot";
case PC_IX:
return "PC/IX";
case Old_Minix:
return "Old Minix";
case Minix_old_Linux:
return "Minix / old Linux";
case Linux_swap:
return "Linux swap";
case Linux:
return "Linux";
case OS2_hidden_C_drive:
return "OS/2 hidden C: drive";
case Linux_extended:
return "Linux extended";
case NTFS_volume_set_1:
return "NTFS volume set";
case NTFS_volume_set_2:
return "NTFS volume set";
case Linux_LVM:
return "Linux LVM";
case Amoeba:
return "Amoeba";
case Amoeba_BBT:
return "Amoeba BBT";
case BSD_OS:
return "BSD/OS";
case IBM_Thinkpad_hibernation:
return "IBM Thinkpad hibernation";
case FreeBSD:
return "FreeBSD";
case OpenBSD:
return "OpenBSD";
case NeXTSTEP:
return "NeXTSTEP";
case NetBSD:
return "NetBSD";
case BSDI_fs:
return "BSDI fs";
case BSDI_swap:
return "BSDI swap";
case Boot_Wizard_hidden:
return "Boot Wizard hidden";
case DRDOS_sec_FAT12:
return "DRDOS/sec (FAT-12)";
case DRDOS_sec_FAT16_Less_32M:
return "DRDOS/sec (FAT-16 < 32M)";
case DRDOS_sec_FAT16:
return "DRDOS/sec (FAT-16)";
case Syrinx:
return "Syrinx";
case Non_FS_data:
return "Non-FS data";
case CP_M_CTOS_dot_dot_dot:
return "CP/M / CTOS / ...";
case Dell_Utility:
return "Dell Utility";
case BootIt:
return "BootIt";
case DOS_access:
return "DOS access";
case DOS_R_O:
return "DOS R/O";
case SpeedStor_1:
return "SpeedStor";
case BeOS_fs:
return "BeOS fs";
case EFI_GPT:
return "EFI GPT";
case EFI_FAT12_16_32:
return "EFI (FAT-12/16/32)";
case Linux_PA_RISC_boot:
return "Linux/PA-RISC boot";
case SpeedStor_2:
return "SpeedStor";
case SeppdStor_3:
return "SpeedStor";
case DOS_secondary:
return "DOS secondary";
case Linux_raid_autodetect:
return "Linux raid autodetect";
case LANstep:
return "LANstep";
case BBT:
return "BBT";
default:
break;
}
return QString();
}
QString DBlockPartition::guidTypeDescription(GUIDType type)
{
switch ((int)type) {
case Unused_None:
return "Unused entry";
case MBR_PS_None:
return "MBR partition scheme";
case EFI_SP_None:
return "EFI System partition";
case BIOS_BP_None:
return "BIOS boot partition";
case iFFS_None:
return "Intel Fast Flash (iFFS) partition (for Intel Rapid Start technology)";
case Sony_BP_None:
return "Sony boot partition";
case Lenove_BP_None:
return "Lenovo boot partition";
// Windows
case MSR_Win:
return "Microsoft Reserved Partition (MSR)";
case BasicData_Win:
return "Basic data partition of Windows";
case LDM_Win:
return "Logical Disk Manager (LDM) metadata partition of Windows";
case LDM_DP_Win:
return "Logical Disk Manager data partition of Windows";
case WRE_Win:
return "Windows Recovery Environment";
case IBM_GPFS_Win:
return "IBM General Parallel File System (GPFS) partition of Windows";
case SSP_Win:
return "Storage Spaces partition of Windows";
// HP-UX
case DP_HPUX:
return "Data partition of HP-UX";
case SP_HPUX:
return "Service Partition of HP-UX";
// Linux
case LFD_Linux:
return "Linux filesystem data";
case RAID_P_Linux:
return "RAID partition of Linux";
case RP_x86_Linux:
return "Root partition (x86) of Linux";
case RP_x86_64_Linux:
return "Root partition (x86-64) of Linux";
case RP_32bit_ARM_Linux:
return "Root partition (32-bit ARM) of Linux";
case RP_64bit_ARM_Linux:
return "Root partition (64-bit ARM/AArch64) of Linux";
case SP_Linux:
return "Swap partition of Linux";
case LVM_P_Linux:
return "Logical Volume Manager (LVM) partition of Linux";
case Home_P_Linux:
return "/home partition of Linux";
case Srv_P_Linux:
return "/srv (server data) partition of Linux";
case Plain_DC_P_Linux:
return "Plain dm-crypt partition of Linux";
case LUKS_P_Linux:
return "LUKS partition of Linux";
case Reserved_Linux:
return "Reserved of Linux";
// FreeBSD
case BP_FreeBSD:
return "Boot partition of FreeBSD";
case DP_FreeBSD:
return "Data partition of FreeBSD";
case SP_FreeBSD:
return "Swap partition of FreeBSD";
case UFS_P_FreeBSD:
return "Unix File System (UFS) partition of FreeBSD";
case VVM_P_FreeBSD:
return "Vinum volume manager partition of FreeBSD";
case ZFS_P_FreeBSD:
return "ZFS partition of FreeBSD";
// macOS Darwin
case HFS_PLUS_P_Mac:
return "Hierarchical File System Plus (HFS+) partition of macOS";
case UFS_Mac:
return "Apple UFS";
case ZFS_Mac:
return "ZFS of macOS(Or /usr partition of Solaris illumos)";
case RAID_P_Mac:
return "Apple RAID partition";
case RAID_P_Offline_Mac:
return "Apple RAID partition, offline";
case BP_Mac:
return "Apple Boot partition (Recovery HD)";
case Label_Mac:
return "Apple Label";
case TV_RP_Mac:
return "Apple TV Recovery partition";
case CS_P_Mac:
return "Apple Core Storage (i.e. Lion FileVault) partition";
case SoftRAID_Status_Mac:
return "SoftRAID_Status of macOS";
case SoftRAID_Scratch_Mac:
return "SoftRAID_Scratch of macOS";
case SoftRAID_Volume_Mac:
return "SoftRAID_Volume of macOS";
case SoftRAID_Cache_Mac:
return "SoftRAID_Cache of macOS";
// Solaris illumos
case BP_Solaris:
return "Boot partition of Solaris illumos";
case RP_Solaris:
return "Root partition of Solaris illumos";
case SP_Solaris:
return "Swap partition of Solaris illumos";
case Backup_P_Solaris:
return "Backup partition of Solaris illumos";
case Var_P_Solaris:
return "/var partition of Solaris illumos";
case Home_P_Solaris:
return "/home partition of Solaris illumos";
case AS_Solaris:
return "Alternate sector os Solaris illumos";
case Reserved_Solaris:
return "Reserved partition os Solaris illumos";
// NetBSD
case SP_NetBSD:
return "Swap partition of NetBSD";
case FFS_P_NetBSD:
return "FFS partition of NetBSD";
case LFS_P_NetBSD:
return "LFS partition of NetBSD";
case RAID_P_NetBSD:
return "RAID partition of NetBSD";
case CP_NetBSD:
return "Concatenated partition of NetBSD";
case EP_NetBSD:
return "Encrypted partition of NetBSD";
// ChromeOS
case Kernel_ChromeOS:
return "ChromeOS kernel";
case Rootfs_ChromeOS:
return "ChromeOS rootfs";
case FU_ChromeOS:
return "ChromeOS future use";
// Haiku
case BFS_Haiku:
return "Haiku BFS";
// MidnightBSD
case BP_MidnightBSD:
return "Boot partition of MidnightBSD";
case DP_MidnightBSD:
return "Data partition of MidnightBSD";
case SP_MidnightBSD:
return "Swap partition of MidnightBSD";
case UFS_P_MidnightBSD:
return "Unix File System (UFS) partition of MidnightBSD";
case VVM_P_MidnightBSD:
return "Vinum volume manager partition of MidnightBSD";
case ZFS_P_MidnightBSD:
return "ZFS partition of MidnightBSD";
// Ceph
case Journal_Ceph:
return "Ceph Journal";
case DC_EJ_Ceph:
return "Ceph dm-crypt Encrypted Journal";
case OSD_Ceph:
return "Ceph OSD";
case DC_OSD_Ceph:
return "Ceph dm-crypt OSD";
case DIC_Ceph:
return "Ceph disk in creation";
case DC_DIC_Ceph:
return "Ceph dm-crypt disk in creation";
// OpenBSD
case DP_OpenBSD:
return "Data partition of OpenBSD";
// QNX
case PAFS_QNX:
return "Power-safe (QNX6) file system of QNX";
// Plan9
case Partition_Plan9:
return "Plan 9 partition of Plan9";
// VMware ESX
case Vmkcore_VMware:
return "vmkcore (coredump partition)";
case VMFS_VMware:
return "VMFS filesystem partition";
case Reserved_VMware:
return "VMware Reserved";
// Android-IA
case Bootloader_Android:
return "Android Bootloader";
case Bottloader2_Android:
return "Android Bootloader2";
case Boot_Android:
return "Android Boot";
case Recovery_Android:
return "Android Recovery";
case Misc_Android:
return "Android Misc";
case Metadata_Android:
return "Android Metadata";
case System_Android:
return "Android System";
case Cache_Android:
return "Android Cache";
case Data_Android:
return "Android Data";
case Persistent_Android:
return "Android Persistent";
case Factory_Android:
return "Android Factory";
case Fastboot_Android:
return "Android Fastboot";
case OEM_Android:
return "Android OEM";
// Open Network Install Environment (ONIE)
case Boot_ONIE:
return "Open Network Install Environment Boot";
case Config_ONIE:
return "Open Network Install Environment Config";
// PowerPC
case Boot_PowerPC:
return "PowerPC PReP boot";
// freedesktop.org OSes (Linux, etc.)
case SBLC_OSes:
return "Shared boot loader configuration of freedesktop.org OSes (Linux, etc.)";
// Atari TOS
case BD_P_Atari:
return "Basic data partition (GEM, BGM, F32) of Atari TOS";
case UnknowUUID:
return "Unknow GUID";
}
return "Invalid GUID type";
}
void DBlockPartition::deletePartition(const QVariantMap &options)
{
Q_D(DBlockPartition);
d->dbus->Delete(options);
}
void DBlockPartition::resize(qulonglong size, const QVariantMap &options)
{
Q_D(DBlockPartition);
d->dbus->Resize(size, options);
}
void DBlockPartition::setFlags(qulonglong flags, const QVariantMap &options)
{
Q_D(DBlockPartition);
d->dbus->SetFlags(flags, options);
}
void DBlockPartition::setName(const QString &name, const QVariantMap &options)
{
Q_D(DBlockPartition);
d->dbus->SetName(name, options);
}
void DBlockPartition::setType(const QString &type, const QVariantMap &options)
{
Q_D(DBlockPartition);
d->dbus->SetType(type, options);
}
void DBlockPartition::setType(DBlockPartition::Type type, const QVariantMap &options)
{
if (type == Unknow)
return;
QString type_string = QString::asprintf("0x%.2s", QByteArray::number(type, 16).constData());
type_string.replace(" ", "0");
setType(type_string, options);
}
/*!
* \class DBlockPartition
* \inmodule dde-file-manager-lib
*
* \brief DBlockPartition class comment goes here
*
* \sa DDiskManager::createBlockPartition
*/
DBlockPartition::DBlockPartition(const QString &path, QObject *parent)
: DBlockDevice(*new DBlockPartitionPrivate(this), path, parent)
{
d_func()->dbus = new OrgFreedesktopUDisks2PartitionInterface(UDISKS2_SERVICE, path, QDBusConnection::systemBus(), this);
connect(this, &DBlockPartition::typeChanged, this, &DBlockPartition::eTypeChanged);
connect(this, &DBlockPartition::UUIDChanged, this, &DBlockPartition::guidTypeChanged);
}