VirtualBox

source: vbox/trunk/src/VBox/Main/Global.cpp@ 14437

Last change on this file since 14437 was 14437, checked in by vboxsync, 16 years ago

FE/Qt4: 2883: Structure OS list. Feature request implemented in base designed variant.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Date Revision Author Id
File size: 10.4 KB
Line 
1/* $Id: Global.cpp 14437 2008-11-20 21:37:06Z vboxsync $ */
2
3/** @file
4 *
5 * VirtualBox COM global definitions
6 *
7 * NOTE: This file is part of both VBoxC.dll and VBoxSVC.exe.
8 */
9
10/*
11 * Copyright (C) 2008 Sun Microsystems, Inc.
12 *
13 * This file is part of VirtualBox Open Source Edition (OSE), as
14 * available from http://www.virtualbox.org. This file is free software;
15 * you can redistribute it and/or modify it under the terms of the GNU
16 * General Public License (GPL) as published by the Free Software
17 * Foundation, in version 2 as it comes in the "COPYING" file of the
18 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
19 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
20 *
21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
22 * Clara, CA 95054 USA or visit http://www.sun.com if you need
23 * additional information or have any questions.
24 */
25
26#include "Global.h"
27
28#include <iprt/assert.h>
29
30/* static */
31const Global::OSType Global::sOSTypes [SchemaDefs::OSTypeId_COUNT] =
32{
33 /* NOTE1: we assume that unknown is always the first entry!
34 * NOTE2: please use powers of 2 when specifying the size of harddisks since
35 * '2GB' looks better than '1.95GB' (= 2000MB) */
36 { "Other", "Other", SchemaDefs_OSTypeId_Other, "Other/Unknown",
37 VBOXOSTYPE_Unknown, false, 64, 4, 2 * _1K },
38 { "Other", "Other", SchemaDefs_OSTypeId_DOS, "DOS",
39 VBOXOSTYPE_DOS, false, 32, 4, 512 },
40 { "Other", "Other", SchemaDefs_OSTypeId_Netware, "Netware",
41 VBOXOSTYPE_Netware, false, 512, 4, 4 * _1K },
42 { "Other", "Other", SchemaDefs_OSTypeId_L4, "L4",
43 VBOXOSTYPE_L4, false, 64, 4, 2 * _1K },
44 { "Windows", "Microsoft Windows", SchemaDefs_OSTypeId_Windows31, "Windows 3.1",
45 VBOXOSTYPE_Win31, false, 32, 4, 1 * _1K },
46 { "Windows", "Microsoft Windows", SchemaDefs_OSTypeId_Windows95, "Windows 95",
47 VBOXOSTYPE_Win95, false, 64, 4, 2 * _1K },
48 { "Windows", "Microsoft Windows", SchemaDefs_OSTypeId_Windows98, "Windows 98",
49 VBOXOSTYPE_Win98, false, 64, 4, 2 * _1K },
50 { "Windows", "Microsoft Windows", SchemaDefs_OSTypeId_WindowsMe, "Windows Me",
51 VBOXOSTYPE_WinMe, false, 64, 4, 4 * _1K },
52 { "Windows", "Microsoft Windows", SchemaDefs_OSTypeId_WindowsNT4, "Windows NT 4",
53 VBOXOSTYPE_WinNT4, false, 128, 4, 2 * _1K },
54 { "Windows", "Microsoft Windows", SchemaDefs_OSTypeId_Windows2000, "Windows 2000",
55 VBOXOSTYPE_Win2k, false, 168, 12, 4 * _1K },
56 { "Windows", "Microsoft Windows", SchemaDefs_OSTypeId_WindowsXP, "Windows XP",
57 VBOXOSTYPE_WinXP, false, 192, 12, 10 * _1K },
58 { "Windows", "Microsoft Windows", SchemaDefs_OSTypeId_WindowsXP_64, "Windows XP (64 bit)",
59 VBOXOSTYPE_WinXP_x64, true, 192, 12, 10 * _1K },
60 { "Windows", "Microsoft Windows", SchemaDefs_OSTypeId_Windows2003, "Windows 2003",
61 VBOXOSTYPE_Win2k3, false, 256, 12, 20 * _1K },
62 { "Windows", "Microsoft Windows", SchemaDefs_OSTypeId_Windows2003_64, "Windows 2003 (64 bit)",
63 VBOXOSTYPE_Win2k3_x64, true, 256, 12, 20 * _1K },
64 { "Windows", "Microsoft Windows", SchemaDefs_OSTypeId_WindowsVista, "Windows Vista",
65 VBOXOSTYPE_WinVista, false, 512, 12, 20 * _1K },
66 { "Windows", "Microsoft Windows", SchemaDefs_OSTypeId_WindowsVista_64, "Windows Vista (64 bit)",
67 VBOXOSTYPE_WinVista_x64, true, 512, 12, 20 * _1K },
68 { "Windows", "Microsoft Windows", SchemaDefs_OSTypeId_Windows2008, "Windows 2008",
69 VBOXOSTYPE_Win2k8, false, 512, 12, 20 * _1K },
70 { "Windows", "Microsoft Windows", SchemaDefs_OSTypeId_Windows2008_64, "Windows 2008 (64 bit)",
71 VBOXOSTYPE_Win2k8_x64, true, 512, 12, 20 * _1K },
72 { "Windows", "Microsoft Windows", SchemaDefs_OSTypeId_WindowsNT, "Other Windows",
73 VBOXOSTYPE_WinNT, false, 512, 12, 20 * _1K },
74 { "OS2", "IBM OS/2", SchemaDefs_OSTypeId_OS2Warp3, "OS/2 Warp 3",
75 VBOXOSTYPE_OS2Warp3, false, 48, 4, 1 * _1K },
76 { "OS2", "IBM OS/2", SchemaDefs_OSTypeId_OS2Warp4, "OS/2 Warp 4",
77 VBOXOSTYPE_OS2Warp4, false, 64, 4, 2 * _1K },
78 { "OS2", "IBM OS/2", SchemaDefs_OSTypeId_OS2Warp45, "OS/2 Warp 4.5",
79 VBOXOSTYPE_OS2Warp45, false, 96, 4, 2 * _1K },
80 { "OS2", "IBM OS/2", SchemaDefs_OSTypeId_OS2eCS, "eComStation",
81 VBOXOSTYPE_ECS, false, 96, 4, 2 * _1K },
82 { "OS2", "IBM OS/2", SchemaDefs_OSTypeId_OS2, "Other OS/2",
83 VBOXOSTYPE_OS2, false, 96, 4, 2 * _1K },
84 { "Linux", "Linux", SchemaDefs_OSTypeId_Linux22, "Linux 2.2",
85 VBOXOSTYPE_Linux22, false, 64, 4, 2 * _1K },
86 { "Linux", "Linux", SchemaDefs_OSTypeId_Linux24, "Linux 2.4",
87 VBOXOSTYPE_Linux24, false, 128, 4, 4 * _1K },
88 { "Linux", "Linux", SchemaDefs_OSTypeId_Linux24_64, "Linux 2.4 (64 bit)",
89 VBOXOSTYPE_Linux24_x64, true, 128, 4, 4 * _1K },
90 { "Linux", "Linux", SchemaDefs_OSTypeId_Linux26, "Linux 2.6",
91 VBOXOSTYPE_Linux26, false, 256, 4, 8 * _1K },
92 { "Linux", "Linux", SchemaDefs_OSTypeId_Linux26_64, "Linux 2.6 (64 bit)",
93 VBOXOSTYPE_Linux26_x64, true, 256, 4, 8 * _1K },
94 { "Linux", "Linux", SchemaDefs_OSTypeId_ArchLinux, "Arch Linux",
95 VBOXOSTYPE_ArchLinux, false, 256, 12, 8 * _1K },
96 { "Linux", "Linux", SchemaDefs_OSTypeId_ArchLinux_64, "Arch Linux (64 bit)",
97 VBOXOSTYPE_ArchLinux_x64, true, 256, 12, 8 * _1K },
98 { "Linux", "Linux", SchemaDefs_OSTypeId_Debian, "Debian",
99 VBOXOSTYPE_Debian, false, 256, 12, 8 * _1K },
100 { "Linux", "Linux", SchemaDefs_OSTypeId_Debian_64, "Debian (64 bit)",
101 VBOXOSTYPE_Debian_x64, true, 256, 12, 8 * _1K },
102 { "Linux", "Linux", SchemaDefs_OSTypeId_OpenSUSE, "openSUSE",
103 VBOXOSTYPE_OpenSUSE, false, 256, 12, 8 * _1K },
104 { "Linux", "Linux", SchemaDefs_OSTypeId_OpenSUSE_64, "openSUSE (64 bit)",
105 VBOXOSTYPE_OpenSUSE_x64, true, 256, 12, 8 * _1K },
106 { "Linux", "Linux", SchemaDefs_OSTypeId_Fedora, "Fedora",
107 VBOXOSTYPE_FedoraCore, false, 256, 12, 8 * _1K },
108 { "Linux", "Linux", SchemaDefs_OSTypeId_Fedora_64, "Fedora (64 bit)",
109 VBOXOSTYPE_FedoraCore_x64, true, 256, 12, 8 * _1K },
110 { "Linux", "Linux", SchemaDefs_OSTypeId_Gentoo, "Gentoo",
111 VBOXOSTYPE_Gentoo, false, 256, 12, 8 * _1K },
112 { "Linux", "Linux", SchemaDefs_OSTypeId_Gentoo_64, "Gentoo (64 bit)",
113 VBOXOSTYPE_Gentoo_x64, true, 256, 12, 8 * _1K },
114 { "Linux", "Linux", SchemaDefs_OSTypeId_Mandriva, "Mandriva",
115 VBOXOSTYPE_Mandriva, false, 256, 12, 8 * _1K },
116 { "Linux", "Linux", SchemaDefs_OSTypeId_Mandriva_64, "Mandriva (64 bit)",
117 VBOXOSTYPE_Mandriva_x64, true, 256, 12, 8 * _1K },
118 { "Linux", "Linux", SchemaDefs_OSTypeId_RedHat, "Red Hat",
119 VBOXOSTYPE_RedHat, false, 256, 12, 8 * _1K },
120 { "Linux", "Linux", SchemaDefs_OSTypeId_RedHat_64, "Red Hat (64 bit)",
121 VBOXOSTYPE_RedHat_x64, true, 256, 12, 8 * _1K },
122 { "Linux", "Linux", SchemaDefs_OSTypeId_Ubuntu, "Ubuntu",
123 VBOXOSTYPE_Ubuntu, false, 256, 12, 8 * _1K },
124 { "Linux", "Linux", SchemaDefs_OSTypeId_Ubuntu_64, "Ubuntu (64 bit)",
125 VBOXOSTYPE_Ubuntu_x64, true, 256, 12, 8 * _1K },
126 { "Linux", "Linux", SchemaDefs_OSTypeId_Xandros, "Xandros",
127 VBOXOSTYPE_Xandros, false, 256, 12, 8 * _1K },
128 { "Linux", "Linux", SchemaDefs_OSTypeId_Xandros_64, "Xandros (64 bit)",
129 VBOXOSTYPE_Xandros_x64, true, 256, 12, 8 * _1K },
130 { "Linux", "Linux", SchemaDefs_OSTypeId_Linux, "Other Linux",
131 VBOXOSTYPE_Linux, false, 256, 12, 8 * _1K },
132 { "BSD", "BSD", SchemaDefs_OSTypeId_FreeBSD, "FreeBSD",
133 VBOXOSTYPE_FreeBSD, false, 64, 4, 2 * _1K },
134 { "BSD", "BSD", SchemaDefs_OSTypeId_FreeBSD_64, "FreeBSD (64 bit)",
135 VBOXOSTYPE_FreeBSD_x64, true, 64, 4, 2 * _1K },
136 { "BSD", "BSD", SchemaDefs_OSTypeId_OpenBSD, "OpenBSD",
137 VBOXOSTYPE_OpenBSD, false, 64, 4, 2 * _1K },
138 { "BSD", "BSD", SchemaDefs_OSTypeId_OpenBSD_64, "OpenBSD (64 bit)",
139 VBOXOSTYPE_OpenBSD_x64, true, 64, 4, 2 * _1K },
140 { "BSD", "BSD", SchemaDefs_OSTypeId_NetBSD, "NetBSD",
141 VBOXOSTYPE_NetBSD, false, 64, 4, 2 * _1K },
142 { "BSD", "BSD", SchemaDefs_OSTypeId_NetBSD_64, "NetBSD (64 bit)",
143 VBOXOSTYPE_NetBSD_x64, true, 64, 4, 2 * _1K },
144 { "Solaris", "Solaris", SchemaDefs_OSTypeId_Solaris, "Solaris",
145 VBOXOSTYPE_Solaris, false, 512, 12, 16 * _1K },
146 { "Solaris", "Solaris", SchemaDefs_OSTypeId_Solaris_64, "Solaris (64 bit)",
147 VBOXOSTYPE_Solaris_x64, true, 512, 12, 16 * _1K },
148 { "Solaris", "Solaris", SchemaDefs_OSTypeId_OpenSolaris, "OpenSolaris",
149 VBOXOSTYPE_OpenSolaris, false, 512, 12, 16 * _1K },
150 { "Solaris", "Solaris", SchemaDefs_OSTypeId_OpenSolaris_64, "OpenSolaris (64 bit)",
151 VBOXOSTYPE_OpenSolaris_x64, true, 512, 12, 16 * _1K }
152};
153
154/**
155 * Returns an OS Type ID for the given VBOXOSTYPE value.
156 *
157 * The returned ID will correspond to the IGuestOSType::id value of one of the
158 * objects stored in the IVirtualBox::guestOSTypes
159 * (VirtualBoxImpl::COMGETTER(GuestOSTypes)) collection.
160 */
161/* static */
162const char *Global::OSTypeId (VBOXOSTYPE aOSType)
163{
164 for (size_t i = 0; i < RT_ELEMENTS (sOSTypes); ++ i)
165 {
166 if (sOSTypes [i].osType == aOSType)
167 return sOSTypes [i].id;
168 }
169
170 AssertMsgFailed (("No record for VBOXOSTYPE %d\n", aOSType));
171 return sOSTypes [0].id;
172}
173
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use