blob: 87f5c868649f75c357d20e8aa113d9c090907469 [file] [log] [blame]
srs5694e7b4ff92009-08-18 13:16:10 -04001// parttypes.cc
2// Class to manage partition type codes -- a slight variant on MBR type
3// codes, GUID type codes, and associated names.
4
Roderick W. Smithe3ee7332013-09-24 12:56:11 -04005/* This program is copyright (c) 2009-2013 by Roderick W. Smith. It is distributed
srs5694221e0872009-08-29 15:00:31 -04006 under the terms of the GNU GPL version 2, as detailed in the COPYING file. */
7
srs5694e7b4ff92009-08-18 13:16:10 -04008#define __STDC_LIMIT_MACROS
9#define __STDC_CONSTANT_MACROS
10
11#include <string.h>
12#include <stdint.h>
13#include <stdio.h>
srs5694fed16d02010-01-27 23:03:40 -050014#include <iostream>
srs5694e7b4ff92009-08-18 13:16:10 -040015#include "parttypes.h"
16
17using namespace std;
18
srs56946699b012010-02-04 00:55:30 -050019int PartType::numInstances = 0;
20AType* PartType::allTypes = NULL;
21AType* PartType::lastType = NULL;
srs5694e7b4ff92009-08-18 13:16:10 -040022
23// Constructor. Its main task is to initialize the data list, but only
24// if this is the first instance, since it's a static linked list.
25// Partition type codes are MBR type codes multiplied by 0x0100, with
26// additional related codes taking on following numbers. For instance,
27// the FreeBSD disklabel code in MBR is 0xa5; here, it's 0xa500, with
28// additional FreeBSD codes being 0xa501, 0xa502, and so on. This gives
29// related codes similar numbers and (given appropriate entry positions
30// in the linked list) keeps them together in the listings generated
31// by typing "L" at the main gdisk menu.
srs56946699b012010-02-04 00:55:30 -050032PartType::PartType(void) : GUIDData() {
srs5694e7b4ff92009-08-18 13:16:10 -040033 numInstances++;
34 if (numInstances == 1) {
srs56946699b012010-02-04 00:55:30 -050035 AddAllTypes();
srs5694e7b4ff92009-08-18 13:16:10 -040036 } // if
37} // default constructor
38
srs56946699b012010-02-04 00:55:30 -050039PartType::PartType(const PartType & orig) : GUIDData(orig) {
40 numInstances++;
41 if (numInstances == 1) { // should never happen; just being paranoid
42 AddAllTypes();
43 } // if
44} // PartType copy constructor
45
46PartType::PartType(const GUIDData & orig) : GUIDData(orig) {
47 numInstances++;
48 if (numInstances == 1) {
49 AddAllTypes();
50 } // if
51} // PartType copy constructor
52
53PartType::~PartType(void) {
srs5694e7b4ff92009-08-18 13:16:10 -040054 AType* tempType;
55
56 numInstances--;
57 if (numInstances == 0) {
58 while (allTypes != NULL) {
59 tempType = allTypes;
60 allTypes = allTypes->next;
61 delete tempType;
62 } // while
63 } // if
64} // destructor
65
srs56946699b012010-02-04 00:55:30 -050066// Add all partition type codes to the internal linked-list structure.
67// Used by constructors.
srs569455d92612010-03-07 22:16:07 -050068// See http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
69// for a list of MBR partition type codes.
srs56946699b012010-02-04 00:55:30 -050070void PartType::AddAllTypes(void) {
71 // Start with the "unused entry," which should normally appear only
72 // on empty partition table entries....
73 AddType(0x0000, "00000000-0000-0000-0000-000000000000", "Unused entry", 0);
74
srs5694d8eed462012-12-15 01:55:21 -050075 // DOS/Windows partition types, most of which are hidden from the "L" listing
76 // (they're available mainly for MBR-to-GPT conversions).
srs569400b6d7a2011-06-26 22:40:06 -040077 AddType(0x0100, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0); // FAT-12
78 AddType(0x0400, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0); // FAT-16 < 32M
79 AddType(0x0600, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0); // FAT-16
80 AddType(0x0700, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 1); // NTFS (or HPFS)
81 AddType(0x0b00, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0); // FAT-32
82 AddType(0x0c00, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0); // FAT-32 LBA
srs56946699b012010-02-04 00:55:30 -050083 AddType(0x0c01, "E3C9E316-0B5C-4DB8-817D-F92DF00215AE", "Microsoft reserved");
srs569400b6d7a2011-06-26 22:40:06 -040084 AddType(0x0e00, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0); // FAT-16 LBA
85 AddType(0x1100, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0); // Hidden FAT-12
86 AddType(0x1400, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0); // Hidden FAT-16 < 32M
87 AddType(0x1600, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0); // Hidden FAT-16
88 AddType(0x1700, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0); // Hidden NTFS (or HPFS)
89 AddType(0x1b00, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0); // Hidden FAT-32
90 AddType(0x1c00, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0); // Hidden FAT-32 LBA
91 AddType(0x1e00, "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7", "Microsoft basic data", 0); // Hidden FAT-16 LBA
srs56946699b012010-02-04 00:55:30 -050092 AddType(0x2700, "DE94BBA4-06D1-4D40-A16A-BFD50179D6AC", "Windows RE");
Roderick W. Smith0fde58b2013-10-10 22:28:17 -040093
94 // PowerPC reference platform boot partition
95 AddType(0x4100, "9E1A2D38-C612-4316-AA26-8B49521E5A8B", "PowerPC PReP boot");
96
97 // Windows LDM ("dynamic disk") types
srs56946699b012010-02-04 00:55:30 -050098 AddType(0x4200, "AF9B60A0-1431-4F62-BC68-3311714A69AD", "Windows LDM data"); // Logical disk manager
99 AddType(0x4201, "5808C8AA-7E8F-42E0-85D2-E1E90434CFB3", "Windows LDM metadata"); // Logical disk manager
100
101 // An oddball IBM filesystem....
102 AddType(0x7501, "37AFFC90-EF7D-4E96-91C3-2D7AE055B174", "IBM GPFS"); // General Parallel File System (GPFS)
103
srs5694df9d3632011-01-08 18:33:24 -0500104 // ChromeOS-specific partition types...
105 // Values taken from vboot_reference/firmware/lib/cgptlib/include/gpt.h in
106 // ChromeOS source code, retrieved 12/23/2010. They're also at
107 // http://www.chromium.org/chromium-os/chromiumos-design-docs/disk-format.
108 // These have no MBR equivalents, AFAIK, so I'm using 0x7Fxx values, since they're close
109 // to the Linux values.
110 AddType(0x7f00, "FE3A2A5D-4F32-41A7-B725-ACCC3285A309", "ChromeOS kernel");
111 AddType(0x7f01, "3CB8E202-3B7E-47DD-8A3C-7FF2A13CFCEC", "ChromeOS root");
112 AddType(0x7f02, "2E0A753D-9E48-43B0-8337-B15192CB1B5E", "ChromeOS reserved");
113
srs56946699b012010-02-04 00:55:30 -0500114 // Linux-specific partition types....
srs5694d8eed462012-12-15 01:55:21 -0500115 AddType(0x8200, "0657FD6D-A4AB-43C4-84E5-0933C84B4F4F", "Linux swap"); // Linux swap (or Solaris on MBR)
srs569400b6d7a2011-06-26 22:40:06 -0400116 AddType(0x8300, "0FC63DAF-8483-4772-8E79-3D69D8477DE4", "Linux filesystem"); // Linux native
srs56946699b012010-02-04 00:55:30 -0500117 AddType(0x8301, "8DA63339-0007-60C0-C436-083AC8230908", "Linux reserved");
Roderick W. Smith0fde58b2013-10-10 22:28:17 -0400118 // See http://www.freedesktop.org/software/systemd/man/systemd-gpt-auto-generator.html
119 AddType(0x8302, "933AC7E1-2EB4-4F13-B844-0E14E2AEF915", "Linux /home"); // Linux /home (auto-mounted by systemd)
Roderick W. Smith1eea9b02013-07-06 22:52:58 -0400120
121 // Used by Intel Rapid Start technology
122 AddType(0x8400, "D3BFE2DE-3DAF-11DF-BA40-E3A556D89593", "Intel Rapid Start");
123
124 // Another Linux type code....
srs56946699b012010-02-04 00:55:30 -0500125 AddType(0x8e00, "E6D6D379-F507-44C2-A23C-238F2A3DF928", "Linux LVM");
126
127 // FreeBSD partition types....
128 // Note: Rather than extract FreeBSD disklabel data, convert FreeBSD
129 // partitions in-place, and let FreeBSD sort out the details....
srs5694cb76c672010-02-11 22:22:22 -0500130 AddType(0xa500, "516E7CB4-6ECF-11D6-8FF8-00022D09712B", "FreeBSD disklabel");
srs56946699b012010-02-04 00:55:30 -0500131 AddType(0xa501, "83BD6B9D-7F41-11DC-BE0B-001560B84F0F", "FreeBSD boot");
132 AddType(0xa502, "516E7CB5-6ECF-11D6-8FF8-00022D09712B", "FreeBSD swap");
133 AddType(0xa503, "516E7CB6-6ECF-11D6-8FF8-00022D09712B", "FreeBSD UFS");
134 AddType(0xa504, "516E7CBA-6ECF-11D6-8FF8-00022D09712B", "FreeBSD ZFS");
135 AddType(0xa505, "516E7CB8-6ECF-11D6-8FF8-00022D09712B", "FreeBSD Vinum/RAID");
136
srs5694fa3868e2012-03-28 01:45:57 -0400137 // Midnight BSD partition types....
138 AddType(0xa580, "85D5E45A-237C-11E1-B4B3-E89A8F7FC3A7", "Midnight BSD data");
139 AddType(0xa581, "85D5E45E-237C-11E1-B4B3-E89A8F7FC3A7", "Midnight BSD boot");
140 AddType(0xa582, "85D5E45B-237C-11E1-B4B3-E89A8F7FC3A7", "Midnight BSD swap");
141 AddType(0xa583, "0394Ef8B-237E-11E1-B4B3-E89A8F7FC3A7", "Midnight BSD UFS");
142 AddType(0xa584, "85D5E45D-237C-11E1-B4B3-E89A8F7FC3A7", "Midnight BSD ZFS");
143 AddType(0xa585, "85D5E45C-237C-11E1-B4B3-E89A8F7FC3A7", "Midnight BSD Vinum");
144
srs56946699b012010-02-04 00:55:30 -0500145 // A MacOS partition type, separated from others by NetBSD partition types...
146 AddType(0xa800, "55465300-0000-11AA-AA11-00306543ECAC", "Apple UFS"); // Mac OS X
147
148 // NetBSD partition types. Note that the main entry sets it up as a
149 // FreeBSD disklabel. I'm not 100% certain this is the correct behavior.
150 AddType(0xa900, "516E7CB4-6ECF-11D6-8FF8-00022D09712B", "FreeBSD disklabel", 0); // NetBSD disklabel
151 AddType(0xa901, "49F48D32-B10E-11DC-B99B-0019D1879648", "NetBSD swap");
152 AddType(0xa902, "49F48D5A-B10E-11DC-B99B-0019D1879648", "NetBSD FFS");
153 AddType(0xa903, "49F48D82-B10E-11DC-B99B-0019D1879648", "NetBSD LFS");
154 AddType(0xa904, "2DB519C4-B10F-11DC-B99B-0019D1879648", "NetBSD concatenated");
155 AddType(0xa905, "2DB519EC-B10F-11DC-B99B-0019D1879648", "NetBSD encrypted");
156 AddType(0xa906, "49F48DAA-B10E-11DC-B99B-0019D1879648", "NetBSD RAID");
157
158 // Mac OS partition types (See also 0xa800, above)....
159 AddType(0xab00, "426F6F74-0000-11AA-AA11-00306543ECAC", "Apple boot");
160 AddType(0xaf00, "48465300-0000-11AA-AA11-00306543ECAC", "Apple HFS/HFS+");
161 AddType(0xaf01, "52414944-0000-11AA-AA11-00306543ECAC", "Apple RAID");
162 AddType(0xaf02, "52414944-5F4F-11AA-AA11-00306543ECAC", "Apple RAID offline");
163 AddType(0xaf03, "4C616265-6C00-11AA-AA11-00306543ECAC", "Apple label");
164 AddType(0xaf04, "5265636F-7665-11AA-AA11-00306543ECAC", "AppleTV recovery");
srs5694a17fe692011-09-10 20:30:20 -0400165 AddType(0xaf05, "53746F72-6167-11AA-AA11-00306543ECAC", "Apple Core Storage");
srs56946699b012010-02-04 00:55:30 -0500166
167 // Solaris partition types (one of which is shared with MacOS)
168 AddType(0xbe00, "6A82CB45-1DD2-11B2-99A6-080020736631", "Solaris boot");
169 AddType(0xbf00, "6A85CF4D-1DD2-11B2-99A6-080020736631", "Solaris root");
170 AddType(0xbf01, "6A898CC3-1DD2-11B2-99A6-080020736631", "Solaris /usr & Mac ZFS"); // Solaris/MacOS
171 AddType(0xbf02, "6A87C46F-1DD2-11B2-99A6-080020736631", "Solaris swap");
172 AddType(0xbf03, "6A8B642B-1DD2-11B2-99A6-080020736631", "Solaris backup");
173 AddType(0xbf04, "6A8EF2E9-1DD2-11B2-99A6-080020736631", "Solaris /var");
174 AddType(0xbf05, "6A90BA39-1DD2-11B2-99A6-080020736631", "Solaris /home");
175 AddType(0xbf06, "6A9283A5-1DD2-11B2-99A6-080020736631", "Solaris alternate sector");
176 AddType(0xbf07, "6A945A3B-1DD2-11B2-99A6-080020736631", "Solaris Reserved 1");
177 AddType(0xbf08, "6A9630D1-1DD2-11B2-99A6-080020736631", "Solaris Reserved 2");
178 AddType(0xbf09, "6A980767-1DD2-11B2-99A6-080020736631", "Solaris Reserved 3");
179 AddType(0xbf0a, "6A96237F-1DD2-11B2-99A6-080020736631", "Solaris Reserved 4");
180 AddType(0xbf0b, "6A8D2AC7-1DD2-11B2-99A6-080020736631", "Solaris Reserved 5");
181
182 // I can find no MBR equivalents for these, but they're on the
183 // Wikipedia page for GPT, so here we go....
184 AddType(0xc001, "75894C1E-3AEB-11D3-B7C1-7B03A0000000", "HP-UX data");
185 AddType(0xc002, "E2A1E728-32E3-11D6-A682-7B03A0000000", "HP-UX service");
186
Roderick W. Smith1eea9b02013-07-06 22:52:58 -0400187 // See http://www.freedesktop.org/wiki/Specifications/BootLoaderSpec
188 AddType(0xea00, "BC13C2FF-59E6-4262-A352-B275FD6F7172", "Freedesktop $BOOT");
189
srs5694df231c12013-01-09 14:50:30 -0500190 // Type code for Haiku; uses BeOS MBR code as hex code base
191 AddType(0xeb00, "42465331-3BA3-10F1-802A-4861696B7521", "Haiku BFS");
192
srs5694d8eed462012-12-15 01:55:21 -0500193 // Sony uses this GUID on some of its computers.
194 AddType(0xed00, "F4019732-066E-4E12-8273-346C5641494F", "Sony system partition");
195
srs56946699b012010-02-04 00:55:30 -0500196 // EFI system and related partitions
srs569464cbd172011-03-01 22:03:54 -0500197 AddType(0xef00, "C12A7328-F81F-11D2-BA4B-00A0C93EC93B", "EFI System"); // Parted identifies these as having the "boot flag" set
srs56946699b012010-02-04 00:55:30 -0500198 AddType(0xef01, "024DEE41-33E7-11D3-9D69-0008C781F39F", "MBR partition scheme"); // Used to nest MBR in GPT
srs5694d8eed462012-12-15 01:55:21 -0500199 AddType(0xef02, "21686148-6449-6E6F-744E-656564454649", "BIOS boot partition"); // Used by GRUB
200
201 // VMWare ESX partition types codes
202 AddType(0xfb00, "AA31E02A-400F-11DB-9590-000C2911D1B8", "VMWare VMFS");
203 AddType(0xfb01, "9198EFFC-31C0-11DB-8F78-000C2911D1B8", "VMWare reserved");
204 AddType(0xfc00, "9D275380-40AD-11DB-BF97-000C2911D1B8", "VMWare kcore crash protection");
srs56946699b012010-02-04 00:55:30 -0500205
206 // A straggler Linux partition type....
207 AddType(0xfd00, "A19D880F-05FC-4D3B-A006-743F0F84911E", "Linux RAID");
208
209 // Note: DO NOT use the 0xffff code; that's reserved to indicate an
srs569455d92612010-03-07 22:16:07 -0500210 // unknown GUID type code.
srs56946699b012010-02-04 00:55:30 -0500211} // PartType::AddAllTypes()
212
srs5694e7b4ff92009-08-18 13:16:10 -0400213// Add a single type to the linked list of types. Returns 1 if operation
srs5694e321d442010-01-29 17:44:04 -0500214// succeeds, 0 otherwise.
srs56946699b012010-02-04 00:55:30 -0500215int PartType::AddType(uint16_t mbrType, const char * guidData, const char * name,
216 int toDisplay) {
srs5694e7b4ff92009-08-18 13:16:10 -0400217 AType* tempType;
218 int allOK = 1;
219
220 tempType = new AType;
221 if (tempType != NULL) {
222 tempType->MBRType = mbrType;
srs56946699b012010-02-04 00:55:30 -0500223 tempType->GUIDType = guidData;
224 tempType->name = name;
srs5694e7b4ff92009-08-18 13:16:10 -0400225 tempType->display = toDisplay;
226 tempType->next = NULL;
227 if (allTypes == NULL) { // first entry
228 allTypes = tempType;
229 } else {
230 lastType->next = tempType;
231 } // if/else
232 lastType = tempType;
233 } else {
srs56946aae2a92011-06-10 01:16:51 -0400234 cerr << "Unable to allocate memory in PartType::AddType()! Partition type list will\n";
235 cerr << "be incomplete!\n";
srs5694e7b4ff92009-08-18 13:16:10 -0400236 allOK = 0;
237 } // if/else
238 return allOK;
srs56946699b012010-02-04 00:55:30 -0500239} // GUID::AddType(const char* variant)
240
srs569482f3f0b2010-09-22 10:50:24 -0400241// Assignment operator by string. If the original string is short,
242// interpret it as a gdisk hex code; if it's longer, interpret it as
srs56940873e9d2010-10-07 13:00:45 -0400243// a direct entry of a GUID value. If a short string isn't a hex
244// number, do nothing.
srs569482f3f0b2010-09-22 10:50:24 -0400245PartType & PartType::operator=(const string & orig) {
246 uint32_t hexCode;
247
248 if (orig.length() < 32) {
srs56940873e9d2010-10-07 13:00:45 -0400249 if (IsHex(orig)) {
250 sscanf(orig.c_str(), "%x", &hexCode);
251 *this = hexCode;
srs5694a17fe692011-09-10 20:30:20 -0400252 }
srs569482f3f0b2010-09-22 10:50:24 -0400253 } else {
254 GUIDData::operator=(orig);
255 } // if/else hexCode or GUID
256 return *this;
257} // PartType::operator=(const char * orig)
258
259// Assignment from C-style string; rely on C++ casting....
260PartType & PartType::operator=(const char * orig) {
261 return operator=((string) orig);
262} // PartType::operator=(const char * orig)
263
srs56946699b012010-02-04 00:55:30 -0500264// Assign a GUID based on my custom 2-byte (16-bit) MBR hex ID variant
srs5694cb76c672010-02-11 22:22:22 -0500265PartType & PartType::operator=(uint16_t ID) {
srs56946699b012010-02-04 00:55:30 -0500266 AType* theItem = allTypes;
267 int found = 0;
268
srs56946699b012010-02-04 00:55:30 -0500269 // Now search the type list for a match to the ID....
270 while ((theItem != NULL) && (!found)) {
srs569455d92612010-03-07 22:16:07 -0500271 if (theItem->MBRType == ID) {
srs56946699b012010-02-04 00:55:30 -0500272 GUIDData::operator=(theItem->GUIDType);
273 found = 1;
274 } else {
275 theItem = theItem->next;
276 } // if/else
277 } // while
278 if (!found) {
srs569455d92612010-03-07 22:16:07 -0500279 // Assign a default value....
srs56940741fa22013-01-09 12:55:40 -0500280 operator=(DEFAULT_GPT_TYPE);
srs56946699b012010-02-04 00:55:30 -0500281 cout.setf(ios::uppercase);
282 cout.fill('0');
283 cout << "Exact type match not found for type code ";
284 cout.width(4);
srs569400b6d7a2011-06-26 22:40:06 -0400285 cout << hex << ID << "; assigning type code for\n'" << TypeName() << "'\n" << dec;
srs56946699b012010-02-04 00:55:30 -0500286 cout.fill(' ');
287 } // if (!found)
288 return *this;
289} // PartType::operator=(uint16_t ID)
290
srs569400b6d7a2011-06-26 22:40:06 -0400291// Return the English description of the partition type (e.g., "Linux filesystem")
srs56945a081752010-09-24 20:39:41 -0400292string PartType::TypeName(void) const {
srs56946699b012010-02-04 00:55:30 -0500293 AType* theItem = allTypes;
294 int found = 0;
295 string typeName;
296
297 while ((theItem != NULL) && (!found)) {
298 if (theItem->GUIDType == *this) { // found it!
299 typeName = theItem->name;
300 found = 1;
301 } else {
302 theItem = theItem->next;
303 } // if/else
304 } // while
305 if (!found) {
306 typeName = "Unknown";
307 } // if (!found)
308 return typeName;
309} // PartType::TypeName()
310
srs569400b6d7a2011-06-26 22:40:06 -0400311// Return the Unicode description of the partition type (e.g., "Linux filesystem")
srs56945a608532011-03-17 13:53:01 -0400312UnicodeString PartType::UTypeName(void) const {
313 AType* theItem = allTypes;
314 int found = 0;
315 UnicodeString typeName;
316
317 while ((theItem != NULL) && (!found)) {
318 if (theItem->GUIDType == *this) { // found it!
319 typeName = theItem->name.c_str();
320 found = 1;
321 } else {
322 theItem = theItem->next;
323 } // if/else
324 } // while
325 if (!found) {
326 typeName = "Unknown";
327 } // if (!found)
328 return typeName;
329} // PartType::TypeName()
330
srs56946699b012010-02-04 00:55:30 -0500331// Return the custom GPT fdisk 2-byte (16-bit) hex code for this GUID partition type
332// Note that this function ignores entries for which the display variable
333// is set to 0. This enables control of which values get returned when
334// there are multiple possibilities, but opens the algorithm up to the
335// potential for problems should the data in the list be bad.
srs56945a081752010-09-24 20:39:41 -0400336uint16_t PartType::GetHexType() const {
srs56946699b012010-02-04 00:55:30 -0500337 AType* theItem = allTypes;
338 int found = 0;
339 uint16_t theID = 0xFFFF;
340
341 while ((theItem != NULL) && (!found)) {
342 if ((theItem->GUIDType == *this) && (theItem->display == 1)) { // found it!
343 theID = theItem->MBRType;
344 found = 1;
345 } else {
346 theItem = theItem->next;
347 } // if/else
348 } // while
349 if (!found) {
350 theID = 0xFFFF;
351 } // if (!found)
352 return theID;
353} // PartType::GetHex()
srs5694e7b4ff92009-08-18 13:16:10 -0400354
355// Displays the available types and my extended MBR codes for same....
356// Note: This function assumes an 80-column display. On wider displays,
357// it stops at under 80 columns; on narrower displays, lines will wrap
Roderick W. Smithe3ee7332013-09-24 12:56:11 -0400358// in an ugly way. The maxLines value is the maximum number of lines
359// to display before prompting to continue, or 0 (or a negative value)
360// for no limit.
361void PartType::ShowAllTypes(int maxLines) const {
362 int colCount = 1, lineCount = 1;
srs5694e321d442010-01-29 17:44:04 -0500363 size_t i;
srs5694e7b4ff92009-08-18 13:16:10 -0400364 AType* thisType = allTypes;
Roderick W. Smithe3ee7332013-09-24 12:56:11 -0400365 string line;
srs5694e7b4ff92009-08-18 13:16:10 -0400366
srs5694fed16d02010-01-27 23:03:40 -0500367 cout.unsetf(ios::uppercase);
srs5694e7b4ff92009-08-18 13:16:10 -0400368 while (thisType != NULL) {
369 if (thisType->display == 1) { // show it
srs5694fed16d02010-01-27 23:03:40 -0500370 cout.fill('0');
371 cout.width(4);
372 cout << hex << thisType->MBRType << " ";
srs5694e321d442010-01-29 17:44:04 -0500373 cout << thisType->name.substr(0, 20);
srs569455d92612010-03-07 22:16:07 -0500374 for (i = 0; i < (20 - (thisType->name.substr(0, 20).length())); i++)
375 cout << " ";
Roderick W. Smithe3ee7332013-09-24 12:56:11 -0400376 if ((colCount % 3) == 0) {
377 if (thisType->next) {
378 cout << "\n";
379 if ((maxLines > 0) && (lineCount++ % maxLines) == 0) {
380 cout << "Press the <Enter> key to see more codes: ";
381 getline(cin, line);
382 } // if reached screen line limit
383 } // if there's another entry following this one
384 } else {
srs5694e321d442010-01-29 17:44:04 -0500385 cout << " ";
Roderick W. Smithe3ee7332013-09-24 12:56:11 -0400386 }
srs5694e7b4ff92009-08-18 13:16:10 -0400387 colCount++;
388 } // if
389 thisType = thisType->next;
390 } // while
srs56940a697312010-01-28 21:10:52 -0500391 cout.fill(' ');
392 cout << "\n" << dec;
Roderick W. Smithe3ee7332013-09-24 12:56:11 -0400393} // PartType::ShowAllTypes(int maxLines)
srs5694e7b4ff92009-08-18 13:16:10 -0400394
395// Returns 1 if code is a valid extended MBR code, 0 if it's not
srs56945a081752010-09-24 20:39:41 -0400396int PartType::Valid(uint16_t code) const {
srs5694e7b4ff92009-08-18 13:16:10 -0400397 AType* thisType = allTypes;
398 int found = 0;
399
400 while ((thisType != NULL) && (!found)) {
401 if (thisType->MBRType == code) {
402 found = 1;
403 } // if
404 thisType = thisType->next;
405 } // while
406 return found;
srs56946699b012010-02-04 00:55:30 -0500407} // PartType::Valid()