VirtualBox

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

Last change on this file since 31713 was 31461, checked in by vboxsync, 14 years ago

added VBoxManage internalcommands sethdparentuuid

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.9 KB
Line 
1/* $Id: VBoxManage.h 31461 2010-08-09 08:13:58Z vboxsync $ */
2/** @file
3 * VBoxManage - VirtualBox command-line interface, internal header file.
4 */
5
6/*
7 * Copyright (C) 2006-2010 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#endif /* !VBOX_ONLY_DOCS */
27
28#include <iprt/types.h>
29
30////////////////////////////////////////////////////////////////////////////////
31//
32// definitions
33//
34////////////////////////////////////////////////////////////////////////////////
35
36/** @name Syntax diagram category.
37 * @{ */
38#define USAGE_DUMPOPTS 0
39#define USAGE_LIST RT_BIT_64(0)
40#define USAGE_SHOWVMINFO RT_BIT_64(1)
41#define USAGE_REGISTERVM RT_BIT_64(2)
42#define USAGE_UNREGISTERVM RT_BIT_64(3)
43#define USAGE_CREATEVM RT_BIT_64(4)
44#define USAGE_MODIFYVM RT_BIT_64(5)
45#define USAGE_STARTVM RT_BIT_64(6)
46#define USAGE_CONTROLVM RT_BIT_64(7)
47#define USAGE_DISCARDSTATE RT_BIT_64(8)
48#define USAGE_SNAPSHOT RT_BIT_64(9)
49#define USAGE_OPENMEDIUM RT_BIT_64(10)
50#define USAGE_CLOSEMEDIUM RT_BIT_64(11)
51#define USAGE_SHOWHDINFO RT_BIT_64(12)
52#define USAGE_CREATEHD RT_BIT_64(13)
53#define USAGE_MODIFYHD RT_BIT_64(14)
54#define USAGE_CLONEHD RT_BIT_64(15)
55#define USAGE_ADDISCSIDISK RT_BIT_64(16)
56#define USAGE_CREATEHOSTIF RT_BIT_64(17)
57#define USAGE_REMOVEHOSTIF RT_BIT_64(18)
58#define USAGE_GETEXTRADATA RT_BIT_64(19)
59#define USAGE_SETEXTRADATA RT_BIT_64(20)
60#define USAGE_SETPROPERTY RT_BIT_64(21)
61#define USAGE_USBFILTER (RT_BIT_64(22) | RT_BIT_64(23) | RT_BIT_64(24))
62#define USAGE_USBFILTER_ADD RT_BIT_64(22)
63#define USAGE_USBFILTER_MODIFY RT_BIT_64(23)
64#define USAGE_USBFILTER_REMOVE RT_BIT_64(24)
65#define USAGE_SHAREDFOLDER (RT_BIT_64(25) | RT_BIT_64(26))
66#define USAGE_SHAREDFOLDER_ADD RT_BIT_64(25)
67#define USAGE_SHAREDFOLDER_REMOVE RT_BIT_64(26)
68#define USAGE_LOADSYMS RT_BIT_64(29)
69#define USAGE_UNLOADSYMS RT_BIT_64(30)
70#define USAGE_SETHDUUID RT_BIT_64(31)
71#define USAGE_CONVERTFROMRAW RT_BIT_64(32)
72#define USAGE_LISTPARTITIONS RT_BIT_64(33)
73#define USAGE_CREATERAWVMDK RT_BIT_64(34)
74#define USAGE_VM_STATISTICS RT_BIT_64(35)
75#define USAGE_ADOPTSTATE RT_BIT_64(36)
76#define USAGE_MODINSTALL RT_BIT_64(37)
77#define USAGE_MODUNINSTALL RT_BIT_64(38)
78#define USAGE_RENAMEVMDK RT_BIT_64(39)
79#ifdef VBOX_WITH_GUEST_PROPS
80# define USAGE_GUESTPROPERTY RT_BIT_64(40)
81#endif /* VBOX_WITH_GUEST_PROPS defined */
82#define USAGE_CONVERTTORAW RT_BIT_64(41)
83#define USAGE_METRICS RT_BIT_64(42)
84#define USAGE_CONVERTHD RT_BIT_64(43)
85#define USAGE_IMPORTAPPLIANCE RT_BIT_64(44)
86#define USAGE_EXPORTAPPLIANCE RT_BIT_64(45)
87#define USAGE_HOSTONLYIFS RT_BIT_64(46)
88#define USAGE_DHCPSERVER RT_BIT_64(47)
89#define USAGE_DUMPHDINFO RT_BIT_64(48)
90#define USAGE_STORAGEATTACH RT_BIT_64(49)
91#define USAGE_STORAGECONTROLLER RT_BIT_64(50)
92#ifdef VBOX_WITH_GUEST_CONTROL
93# define USAGE_GUESTCONTROL RT_BIT_64(51)
94#endif /* VBOX_WITH_GUEST_CONTROL defined */
95#define USAGE_DEBUGLOG RT_BIT_64(52)
96#define USAGE_SETHDPARENTUUID RT_BIT_64(53)
97#define USAGE_ALL (~(uint64_t)0)
98/** @} */
99
100typedef uint64_t USAGECATEGORY;
101
102/** command handler argument */
103struct HandlerArg
104{
105 int argc;
106 char **argv;
107
108#ifndef VBOX_ONLY_DOCS
109 ComPtr<IVirtualBox> virtualBox;
110 ComPtr<ISession> session;
111#endif
112};
113
114/** flag whether we're in internal mode */
115extern bool g_fInternalMode;
116
117/** showVMInfo details */
118typedef enum
119{
120 VMINFO_NONE = 0,
121 VMINFO_STANDARD = 1, /**< standard details */
122 VMINFO_FULL = 2, /**< both */
123 VMINFO_MACHINEREADABLE = 3, /**< both, and make it machine readable */
124 VMINFO_COMPACT = 4
125} VMINFO_DETAILS;
126
127////////////////////////////////////////////////////////////////////////////////
128//
129// global variables
130//
131////////////////////////////////////////////////////////////////////////////////
132
133extern bool g_fDetailedProgress; // in VBoxManage.cpp
134
135////////////////////////////////////////////////////////////////////////////////
136//
137// prototypes
138//
139////////////////////////////////////////////////////////////////////////////////
140
141/* VBoxManageHelp.cpp */
142void printUsage(USAGECATEGORY u64Cmd);
143int errorSyntax(USAGECATEGORY u64Cmd, const char *pszFormat, ...);
144int errorGetOpt(USAGECATEGORY u64Cmd, int rc, union RTGETOPTUNION const *pValueUnion);
145int errorArgument(const char *pszFormat, ...);
146
147void printUsageInternal(USAGECATEGORY u64Cmd);
148
149#ifndef VBOX_ONLY_DOCS
150HRESULT showProgress(ComPtr<IProgress> progress);
151#endif
152
153/* VBoxManage.cpp */
154void showLogo(void);
155
156#ifndef VBOX_ONLY_DOCS
157int handleInternalCommands(HandlerArg *a);
158#endif /* !VBOX_ONLY_DOCS */
159
160/* VBoxManageControlVM.cpp */
161int handleControlVM(HandlerArg *a);
162
163/* VBoxManageModifyVM.cpp */
164int handleModifyVM(HandlerArg *a);
165
166/* VBoxManageGuestProp.cpp */
167extern void usageGuestProperty(void);
168#ifndef VBOX_ONLY_DOCS
169extern int handleGuestProperty(HandlerArg *a);
170
171/* VBoxManageGuestCtrl.cpp */
172extern int handleGuestControl(HandlerArg *a);
173extern void usageGuestControl(void);
174
175/* VBoxManageVMInfo.cpp */
176void showSnapshots(ComPtr<ISnapshot> &rootSnapshot,
177 ComPtr<ISnapshot> &currentSnapshot,
178 VMINFO_DETAILS details,
179 const com::Bstr &prefix = "",
180 int level = 0);
181int handleShowVMInfo(HandlerArg *a);
182HRESULT showVMInfo(ComPtr<IVirtualBox> virtualBox,
183 ComPtr<IMachine> machine,
184 VMINFO_DETAILS details = VMINFO_NONE,
185 ComPtr <IConsole> console = ComPtr<IConsole>());
186
187/* VBoxManageList.cpp */
188int handleList(HandlerArg *a);
189
190/* VBoxManageMetrics.cpp */
191int handleMetrics(HandlerArg *a);
192
193/* VBoxManageMisc.cpp */
194int handleRegisterVM(HandlerArg *a);
195int handleUnregisterVM(HandlerArg *a);
196int handleCreateVM(HandlerArg *a);
197int handleStartVM(HandlerArg *a);
198int handleDiscardState(HandlerArg *a);
199int handleAdoptState(HandlerArg *a);
200int handleGetExtraData(HandlerArg *a);
201int handleSetExtraData(HandlerArg *a);
202int handleSetProperty(HandlerArg *a);
203int handleSharedFolder(HandlerArg *a);
204int handleVMStatistics(HandlerArg *a);
205
206/* VBoxManageDisk.cpp */
207int handleCreateHardDisk(HandlerArg *a);
208int handleModifyHardDisk(HandlerArg *a);
209int handleCloneHardDisk(HandlerArg *a);
210int handleConvertFromRaw(int argc, char *argv[]);
211int handleAddiSCSIDisk(HandlerArg *a);
212int handleShowHardDiskInfo(HandlerArg *a);
213int handleOpenMedium(HandlerArg *a);
214int handleCloseMedium(HandlerArg *a);
215
216/* VBoxManageStorageController.cpp */
217int handleStorageAttach(HandlerArg *a);
218int handleStorageController(HandlerArg *a);
219
220// VBoxManageImport.cpp
221int handleImportAppliance(HandlerArg *a);
222int handleExportAppliance(HandlerArg *a);
223
224// VBoxManageSnapshot.cpp
225int handleSnapshot(HandlerArg *a);
226
227/* VBoxManageUSB.cpp */
228int handleUSBFilter(HandlerArg *a);
229
230/* VBoxManageHostonly.cpp */
231int handleHostonlyIf(HandlerArg *a);
232
233/* VBoxManageHostonly.cpp */
234int handleDHCPServer(HandlerArg *a);
235
236#endif /* !VBOX_ONLY_DOCS */
237
238#endif /* !___H_VBOXMANAGE */
239
Note: See TracBrowser for help on using the repository browser.

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