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