VirtualBox

source: vbox/trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h@ 42176

Last change on this file since 42176 was 42176, checked in by vboxsync, 13 years ago

Main+Frontends/VBoxManage: implement saving the settings, and add the matching VBoxManage support

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.3 KB
Line 
1/* $Id: VBoxManage.h 42176 2012-07-17 12:23:50Z vboxsync $ */
2/** @file
3 * VBoxManage - VirtualBox command-line interface, internal header file.
4 */
5
6/*
7 * Copyright (C) 2006-2011 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef ___H_VBOXMANAGE
19#define ___H_VBOXMANAGE
20
21#ifndef VBOX_ONLY_DOCS
22#include <VBox/com/com.h>
23#include <VBox/com/ptr.h>
24#include <VBox/com/VirtualBox.h>
25#include <VBox/com/string.h>
26#include <VBox/com/array.h>
27#endif /* !VBOX_ONLY_DOCS */
28
29#include <iprt/types.h>
30#include <iprt/message.h>
31#include <iprt/stream.h>
32
33////////////////////////////////////////////////////////////////////////////////
34//
35// definitions
36//
37////////////////////////////////////////////////////////////////////////////////
38
39/** @name Syntax diagram category.
40 * @{ */
41#define USAGE_DUMPOPTS 0
42#define USAGE_LIST RT_BIT_64(0)
43#define USAGE_SHOWVMINFO RT_BIT_64(1)
44#define USAGE_REGISTERVM RT_BIT_64(2)
45#define USAGE_UNREGISTERVM RT_BIT_64(3)
46#define USAGE_CREATEVM RT_BIT_64(4)
47#define USAGE_MODIFYVM RT_BIT_64(5)
48#define USAGE_CLONEVM RT_BIT_64(6)
49#define USAGE_STARTVM RT_BIT_64(7)
50#define USAGE_CONTROLVM RT_BIT_64(8)
51#define USAGE_DISCARDSTATE RT_BIT_64(9)
52#define USAGE_SNAPSHOT RT_BIT_64(10)
53#define USAGE_CLOSEMEDIUM RT_BIT_64(11)
54#define USAGE_SHOWHDINFO RT_BIT_64(12)
55#define USAGE_CREATEHD RT_BIT_64(13)
56#define USAGE_MODIFYHD RT_BIT_64(14)
57#define USAGE_CLONEHD RT_BIT_64(15)
58#define USAGE_CREATEHOSTIF RT_BIT_64(17)
59#define USAGE_REMOVEHOSTIF RT_BIT_64(18)
60#define USAGE_GETEXTRADATA RT_BIT_64(19)
61#define USAGE_SETEXTRADATA RT_BIT_64(20)
62#define USAGE_SETPROPERTY RT_BIT_64(21)
63#define USAGE_USBFILTER (RT_BIT_64(22) | RT_BIT_64(23) | RT_BIT_64(24))
64#define USAGE_USBFILTER_ADD RT_BIT_64(22)
65#define USAGE_USBFILTER_MODIFY RT_BIT_64(23)
66#define USAGE_USBFILTER_REMOVE RT_BIT_64(24)
67#define USAGE_SHAREDFOLDER (RT_BIT_64(25) | RT_BIT_64(26))
68#define USAGE_SHAREDFOLDER_ADD RT_BIT_64(25)
69#define USAGE_SHAREDFOLDER_REMOVE RT_BIT_64(26)
70#define USAGE_LOADSYMS RT_BIT_64(29)
71#define USAGE_LOADMAP RT_BIT_64(30)
72#define USAGE_SETHDUUID RT_BIT_64(31)
73#define USAGE_CONVERTFROMRAW RT_BIT_64(32)
74#define USAGE_LISTPARTITIONS RT_BIT_64(33)
75#define USAGE_CREATERAWVMDK RT_BIT_64(34)
76#define USAGE_DEBUGVM RT_BIT_64(35)
77#define USAGE_ADOPTSTATE RT_BIT_64(36)
78#define USAGE_MODINSTALL RT_BIT_64(37)
79#define USAGE_MODUNINSTALL RT_BIT_64(38)
80#define USAGE_RENAMEVMDK RT_BIT_64(39)
81#ifdef VBOX_WITH_GUEST_PROPS
82# define USAGE_GUESTPROPERTY RT_BIT_64(40)
83#endif /* VBOX_WITH_GUEST_PROPS defined */
84#define USAGE_CONVERTTORAW RT_BIT_64(41)
85#define USAGE_METRICS RT_BIT_64(42)
86#define USAGE_CONVERTHD RT_BIT_64(43)
87#define USAGE_IMPORTAPPLIANCE RT_BIT_64(44)
88#define USAGE_EXPORTAPPLIANCE RT_BIT_64(45)
89#define USAGE_HOSTONLYIFS RT_BIT_64(46)
90#define USAGE_DHCPSERVER RT_BIT_64(47)
91#define USAGE_DUMPHDINFO RT_BIT_64(48)
92#define USAGE_STORAGEATTACH RT_BIT_64(49)
93#define USAGE_STORAGECONTROLLER RT_BIT_64(50)
94#ifdef VBOX_WITH_GUEST_CONTROL
95# define USAGE_GUESTCONTROL RT_BIT_64(51)
96#endif /* VBOX_WITH_GUEST_CONTROL defined */
97#define USAGE_DEBUGLOG RT_BIT_64(52)
98#define USAGE_SETHDPARENTUUID RT_BIT_64(53)
99#define USAGE_PASSWORDHASH RT_BIT_64(54)
100#define USAGE_EXTPACK RT_BIT_64(55)
101#define USAGE_BANDWIDTHCONTROL RT_BIT_64(56)
102#define USAGE_GUESTSTATS RT_BIT_64(57)
103#define USAGE_REPAIRHD RT_BIT_64(58)
104#define USAGE_ALL (~(uint64_t)0)
105/** @} */
106
107typedef uint64_t USAGECATEGORY;
108
109/** command handler argument */
110struct HandlerArg
111{
112 int argc;
113 char **argv;
114
115#ifndef VBOX_ONLY_DOCS
116 ComPtr<IVirtualBox> virtualBox;
117 ComPtr<ISession> session;
118#endif
119};
120
121/** flag whether we're in internal mode */
122extern bool g_fInternalMode;
123
124/** showVMInfo details */
125typedef enum
126{
127 VMINFO_NONE = 0,
128 VMINFO_STANDARD = 1, /**< standard details */
129 VMINFO_FULL = 2, /**< both */
130 VMINFO_MACHINEREADABLE = 3, /**< both, and make it machine readable */
131 VMINFO_COMPACT = 4
132} VMINFO_DETAILS;
133
134////////////////////////////////////////////////////////////////////////////////
135//
136// global variables
137//
138////////////////////////////////////////////////////////////////////////////////
139
140extern bool g_fDetailedProgress; // in VBoxManage.cpp
141
142////////////////////////////////////////////////////////////////////////////////
143//
144// prototypes
145//
146////////////////////////////////////////////////////////////////////////////////
147
148/* VBoxManageHelp.cpp */
149void printUsage(USAGECATEGORY u64Cmd, PRTSTREAM pStrm);
150RTEXITCODE errorSyntax(USAGECATEGORY u64Cmd, const char *pszFormat, ...);
151RTEXITCODE errorGetOpt(USAGECATEGORY u64Cmd, int rc, union RTGETOPTUNION const *pValueUnion);
152RTEXITCODE errorArgument(const char *pszFormat, ...);
153
154void printUsageInternal(USAGECATEGORY u64Cmd, PRTSTREAM pStrm);
155
156#ifndef VBOX_ONLY_DOCS
157HRESULT showProgress(ComPtr<IProgress> progress);
158#endif
159
160/* VBoxManage.cpp */
161void showLogo(PRTSTREAM pStrm);
162
163#ifndef VBOX_ONLY_DOCS
164int handleInternalCommands(HandlerArg *a);
165#endif /* !VBOX_ONLY_DOCS */
166
167/* VBoxManageControlVM.cpp */
168int handleControlVM(HandlerArg *a);
169#ifndef VBOX_ONLY_DOCS
170unsigned int getMaxNics(IVirtualBox* vbox, IMachine* mach);
171#endif
172
173/* VBoxManageModifyVM.cpp */
174#ifndef VBOX_ONLY_DOCS
175void parseGroups(const char *pcszGroups, com::SafeArray<BSTR> *pGroups);
176#endif
177int handleModifyVM(HandlerArg *a);
178
179/* VBoxManageDebugVM.cpp */
180int handleDebugVM(HandlerArg *a);
181
182/* VBoxManageGuestProp.cpp */
183extern void usageGuestProperty(PRTSTREAM pStrm);
184
185/* VBoxManageGuestCtrl.cpp */
186extern void usageGuestControl(PRTSTREAM pStrm);
187
188#ifndef VBOX_ONLY_DOCS
189/* VBoxManageGuestProp.cpp */
190extern int handleGuestProperty(HandlerArg *a);
191
192/* VBoxManageGuestCtrl.cpp */
193extern int handleGuestControl(HandlerArg *a);
194
195/* VBoxManageVMInfo.cpp */
196HRESULT showSnapshots(ComPtr<ISnapshot> &rootSnapshot,
197 ComPtr<ISnapshot> &currentSnapshot,
198 VMINFO_DETAILS details,
199 const com::Bstr &prefix = "",
200 int level = 0);
201int handleShowVMInfo(HandlerArg *a);
202HRESULT showVMInfo(ComPtr<IVirtualBox> virtualBox,
203 ComPtr<IMachine> machine,
204 VMINFO_DETAILS details = VMINFO_NONE,
205 ComPtr <IConsole> console = ComPtr<IConsole>());
206const char *machineStateToName(MachineState_T machineState, bool fShort);
207HRESULT showBandwidthGroups(ComPtr<IBandwidthControl> &bwCtrl,
208 VMINFO_DETAILS details);
209
210/* VBoxManageList.cpp */
211int handleList(HandlerArg *a);
212
213/* VBoxManageMetrics.cpp */
214int handleMetrics(HandlerArg *a);
215
216/* VBoxManageMisc.cpp */
217int handleRegisterVM(HandlerArg *a);
218int handleUnregisterVM(HandlerArg *a);
219int handleCreateVM(HandlerArg *a);
220int handleCloneVM(HandlerArg *a);
221int handleStartVM(HandlerArg *a);
222int handleDiscardState(HandlerArg *a);
223int handleAdoptState(HandlerArg *a);
224int handleGetExtraData(HandlerArg *a);
225int handleSetExtraData(HandlerArg *a);
226int handleSetProperty(HandlerArg *a);
227int handleSharedFolder(HandlerArg *a);
228int handleExtPack(HandlerArg *a);
229
230/* VBoxManageDisk.cpp */
231HRESULT findMedium(HandlerArg *a, const char *pszFilenameOrUuid,
232 DeviceType_T enmDevType, bool fSilent,
233 ComPtr<IMedium> &pMedium);
234HRESULT findOrOpenMedium(HandlerArg *a, const char *pszFilenameOrUuid,
235 DeviceType_T enmDevType, AccessMode_T enmAccessMode,
236 ComPtr<IMedium> &pMedium, bool fForceNewUuidOnOpen,
237 bool *pfWasUnknown);
238int handleCreateHardDisk(HandlerArg *a);
239int handleModifyHardDisk(HandlerArg *a);
240int handleCloneHardDisk(HandlerArg *a);
241RTEXITCODE handleConvertFromRaw(int argc, char *argv[]);
242int handleShowHardDiskInfo(HandlerArg *a);
243int handleCloseMedium(HandlerArg *a);
244int parseDiskType(const char *psz, MediumType_T *pDiskType);
245
246/* VBoxManageStorageController.cpp */
247int handleStorageAttach(HandlerArg *a);
248int handleStorageController(HandlerArg *a);
249
250// VBoxManageImport.cpp
251int handleImportAppliance(HandlerArg *a);
252int handleExportAppliance(HandlerArg *a);
253
254// VBoxManageSnapshot.cpp
255int handleSnapshot(HandlerArg *a);
256
257/* VBoxManageUSB.cpp */
258int handleUSBFilter(HandlerArg *a);
259
260/* VBoxManageHostonly.cpp */
261int handleHostonlyIf(HandlerArg *a);
262
263/* VBoxManageHostonly.cpp */
264int handleDHCPServer(HandlerArg *a);
265
266/* VBoxManageBandwidthControl.cpp */
267int handleBandwidthControl(HandlerArg *a);
268
269#endif /* !VBOX_ONLY_DOCS */
270
271#endif /* !___H_VBOXMANAGE */
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette