VirtualBox

source: vbox/trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp@ 33595

Last change on this file since 33595 was 33556, checked in by vboxsync, 14 years ago

VRDE: More API changes for the VRDP server separation.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 14.6 KB
Line 
1/* $Id: VBoxManage.cpp 33556 2010-10-28 13:16:42Z vboxsync $ */
2/** @file
3 * VBoxManage - VirtualBox's command-line interface.
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
19/*******************************************************************************
20* Header Files *
21*******************************************************************************/
22#ifndef VBOX_ONLY_DOCS
23# include <VBox/com/com.h>
24# include <VBox/com/string.h>
25# include <VBox/com/Guid.h>
26# include <VBox/com/array.h>
27# include <VBox/com/ErrorInfo.h>
28# include <VBox/com/errorprint.h>
29# include <VBox/com/EventQueue.h>
30
31# include <VBox/com/VirtualBox.h>
32#endif /* !VBOX_ONLY_DOCS */
33
34#include <VBox/err.h>
35#include <VBox/version.h>
36
37#include <iprt/asm.h>
38#include <iprt/buildconfig.h>
39#include <iprt/initterm.h>
40#include <iprt/stream.h>
41#include <iprt/string.h>
42
43#include <signal.h>
44
45#include "VBoxManage.h"
46
47
48/*******************************************************************************
49* Global Variables *
50*******************************************************************************/
51/*extern*/ bool g_fDetailedProgress = false;
52
53#ifndef VBOX_ONLY_DOCS
54/** Set by the signal handler. */
55static volatile bool g_fCanceled = false;
56
57
58/**
59 * Signal handler that sets g_fCanceled.
60 *
61 * This can be executed on any thread in the process, on Windows it may even be
62 * a thread dedicated to delivering this signal. Do not doing anything
63 * unnecessary here.
64 */
65static void showProgressSignalHandler(int iSignal)
66{
67 NOREF(iSignal);
68 ASMAtomicWriteBool(&g_fCanceled, true);
69}
70
71
72/**
73 * Print out progress on the console
74 */
75HRESULT showProgress(ComPtr<IProgress> progress)
76{
77 using namespace com;
78
79 BOOL fCompleted;
80 ULONG ulCurrentPercent;
81 ULONG ulLastPercent = 0;
82
83 ULONG ulCurrentOperationPercent;
84 ULONG ulLastOperationPercent = (ULONG)-1;
85
86 ULONG ulLastOperation = (ULONG)-1;
87 Bstr bstrOperationDescription;
88
89 ULONG cOperations;
90 progress->COMGETTER(OperationCount)(&cOperations);
91
92 if (!g_fDetailedProgress)
93 {
94 RTStrmPrintf(g_pStdErr, "0%%...");
95 RTStrmFlush(g_pStdErr);
96 }
97
98 /* setup signal handling if cancelable */
99 bool fCanceledAlready = false;
100 BOOL fCancelable;
101 HRESULT hrc = progress->COMGETTER(Cancelable)(&fCancelable);
102 if (FAILED(hrc))
103 fCancelable = FALSE;
104 if (fCancelable)
105 {
106 signal(SIGINT, showProgressSignalHandler);
107#ifdef SIGBREAK
108 signal(SIGBREAK, showProgressSignalHandler);
109#endif
110 }
111
112 while (SUCCEEDED(progress->COMGETTER(Completed(&fCompleted))))
113 {
114 ULONG ulOperation;
115 progress->COMGETTER(Operation)(&ulOperation);
116
117 progress->COMGETTER(Percent(&ulCurrentPercent));
118 progress->COMGETTER(OperationPercent(&ulCurrentOperationPercent));
119
120 if (g_fDetailedProgress)
121 {
122 if (ulLastOperation != ulOperation)
123 {
124 progress->COMGETTER(OperationDescription(bstrOperationDescription.asOutParam()));
125 ulLastPercent = (ULONG)-1; // force print
126 ulLastOperation = ulOperation;
127 }
128
129 if ( ulCurrentPercent != ulLastPercent
130 || ulCurrentOperationPercent != ulLastOperationPercent
131 )
132 {
133 LONG lSecsRem;
134 progress->COMGETTER(TimeRemaining)(&lSecsRem);
135
136 RTStrmPrintf(g_pStdErr, "(%ld/%ld) %ls %ld%% => %ld%% (%d s remaining)\n", ulOperation + 1, cOperations, bstrOperationDescription.raw(), ulCurrentOperationPercent, ulCurrentPercent, lSecsRem);
137 ulLastPercent = ulCurrentPercent;
138 ulLastOperationPercent = ulCurrentOperationPercent;
139 }
140 }
141 else
142 {
143 /* did we cross a 10% mark? */
144 if (ulCurrentPercent / 10 > ulLastPercent / 10)
145 {
146 /* make sure to also print out missed steps */
147 for (ULONG curVal = (ulLastPercent / 10) * 10 + 10; curVal <= (ulCurrentPercent / 10) * 10; curVal += 10)
148 {
149 if (curVal < 100)
150 {
151 RTStrmPrintf(g_pStdErr, "%ld%%...", curVal);
152 RTStrmFlush(g_pStdErr);
153 }
154 }
155 ulLastPercent = (ulCurrentPercent / 10) * 10;
156 }
157 }
158 if (fCompleted)
159 break;
160
161 /* process async cancelation */
162 if (g_fCanceled && !fCanceledAlready)
163 {
164 hrc = progress->Cancel();
165 if (SUCCEEDED(hrc))
166 fCanceledAlready = true;
167 else
168 g_fCanceled = false;
169 }
170
171 /* make sure the loop is not too tight */
172 progress->WaitForCompletion(100);
173 }
174
175 /* undo signal handling */
176 if (fCancelable)
177 {
178 signal(SIGINT, SIG_DFL);
179#ifdef SIGBREAK
180 signal(SIGBREAK, SIG_DFL);
181#endif
182 }
183
184 /* complete the line. */
185 LONG iRc = E_FAIL;
186 if (SUCCEEDED(progress->COMGETTER(ResultCode)(&iRc)))
187 {
188 if (SUCCEEDED(iRc))
189 RTStrmPrintf(g_pStdErr, "100%%\n");
190 else if (g_fCanceled)
191 RTStrmPrintf(g_pStdErr, "CANCELED\n");
192 else
193 RTStrmPrintf(g_pStdErr, "FAILED\n");
194 }
195 else
196 RTStrmPrintf(g_pStdErr, "\n");
197 RTStrmFlush(g_pStdErr);
198 return iRc;
199}
200
201#endif /* !VBOX_ONLY_DOCS */
202
203int main(int argc, char *argv[])
204{
205 /*
206 * Before we do anything, init the runtime without loading
207 * the support driver.
208 */
209 RTR3Init();
210
211 bool fShowLogo = false;
212 bool fShowHelp = false;
213 int iCmd = 1;
214 int iCmdArg;
215
216 /* global options */
217 for (int i = 1; i < argc || argc <= iCmd; i++)
218 {
219 if ( argc <= iCmd
220 || !strcmp(argv[i], "help")
221 || !strcmp(argv[i], "-?")
222 || !strcmp(argv[i], "-h")
223 || !strcmp(argv[i], "-help")
224 || !strcmp(argv[i], "--help"))
225 {
226 if (i >= argc - 1)
227 {
228 showLogo(g_pStdOut);
229 printUsage(USAGE_ALL, g_pStdOut);
230 return 0;
231 }
232 fShowLogo = true;
233 fShowHelp = true;
234 iCmd++;
235 continue;
236 }
237
238 if ( !strcmp(argv[i], "-v")
239 || !strcmp(argv[i], "-version")
240 || !strcmp(argv[i], "-Version")
241 || !strcmp(argv[i], "--version"))
242 {
243 /* Print version number, and do nothing else. */
244 RTPrintf("%sr%d\n", VBOX_VERSION_STRING, RTBldCfgRevision());
245 return 0;
246 }
247
248 if ( !strcmp(argv[i], "--dumpopts")
249 || !strcmp(argv[i], "-dumpopts"))
250 {
251 /* Special option to dump really all commands,
252 * even the ones not understood on this platform. */
253 printUsage(USAGE_DUMPOPTS, g_pStdOut);
254 return 0;
255 }
256
257 if ( !strcmp(argv[i], "--nologo")
258 || !strcmp(argv[i], "-nologo")
259 || !strcmp(argv[i], "-q"))
260 {
261 /* suppress the logo */
262 fShowLogo = false;
263 iCmd++;
264 }
265 else
266 {
267 break;
268 }
269 }
270
271 iCmdArg = iCmd + 1;
272
273 if (fShowLogo)
274 showLogo(g_pStdOut);
275
276
277#ifdef VBOX_ONLY_DOCS
278 int rc = 0;
279#else /* !VBOX_ONLY_DOCS */
280 using namespace com;
281 HRESULT rc = 0;
282
283 rc = com::Initialize();
284 if (FAILED(rc))
285 {
286 RTMsgError("Failed to initialize COM!");
287 return rc;
288 }
289
290 /*
291 * The input is in the host OS'es codepage (NT guarantees ACP).
292 * For VBox we use UTF-8 and convert to UCS-2 when calling (XP)COM APIs.
293 * For simplicity, just convert the argv[] array here.
294 */
295 for (int i = iCmdArg; i < argc; i++)
296 {
297 char *converted;
298 RTStrCurrentCPToUtf8(&converted, argv[i]);
299 if (converted)
300 argv[i] = converted;
301 else
302 /* Conversion was not possible,probably due to invalid characters.
303 * Keep in mind that we do RTStrFree on the whole array below. */
304 argv[i] = RTStrDup(argv[i]);
305 }
306
307 do
308 {
309 // scopes all the stuff till shutdown
310 ////////////////////////////////////////////////////////////////////////////
311
312 /* convertfromraw: does not need a VirtualBox instantiation. */
313 if (argc >= iCmdArg && ( !strcmp(argv[iCmd], "convertfromraw")
314 || !strcmp(argv[iCmd], "convertdd")))
315 {
316 rc = handleConvertFromRaw(argc - iCmdArg, argv + iCmdArg);
317 break;
318 }
319
320 ComPtr<IVirtualBox> virtualBox;
321 ComPtr<ISession> session;
322
323 rc = virtualBox.createLocalObject(CLSID_VirtualBox);
324 if (FAILED(rc))
325 RTMsgError("Failed to create the VirtualBox object!");
326 else
327 {
328 rc = session.createInprocObject(CLSID_Session);
329 if (FAILED(rc))
330 RTMsgError("Failed to create a session object!");
331 }
332
333 if (FAILED(rc))
334 {
335 com::ErrorInfo info;
336 if (!info.isFullAvailable() && !info.isBasicAvailable())
337 {
338 com::GluePrintRCMessage(rc);
339 RTMsgError("Most likely, the VirtualBox COM server is not running or failed to start.");
340 }
341 else
342 com::GluePrintErrorInfo(info);
343 break;
344 }
345
346 HandlerArg handlerArg = { 0, NULL, virtualBox, session };
347
348 /*
349 * All registered command handlers
350 */
351 static const struct
352 {
353 const char *command;
354 USAGECATEGORY help;
355 int (*handler)(HandlerArg *a);
356 } s_commandHandlers[] =
357 {
358 { "internalcommands", 0, handleInternalCommands },
359 { "list", USAGE_LIST, handleList },
360 { "showvminfo", USAGE_SHOWVMINFO, handleShowVMInfo },
361 { "registervm", USAGE_REGISTERVM, handleRegisterVM },
362 { "unregistervm", USAGE_UNREGISTERVM, handleUnregisterVM },
363 { "createhd", USAGE_CREATEHD, handleCreateHardDisk },
364 { "createvdi", USAGE_CREATEHD, handleCreateHardDisk }, /* backward compatibility */
365 { "modifyhd", USAGE_MODIFYHD, handleModifyHardDisk },
366 { "modifyvdi", USAGE_MODIFYHD, handleModifyHardDisk }, /* backward compatibility */
367 { "clonehd", USAGE_CLONEHD, handleCloneHardDisk },
368 { "clonevdi", USAGE_CLONEHD, handleCloneHardDisk }, /* backward compatibility */
369 { "addiscsidisk", USAGE_ADDISCSIDISK, handleAddiSCSIDisk },
370 { "createvm", USAGE_CREATEVM, handleCreateVM },
371 { "modifyvm", USAGE_MODIFYVM, handleModifyVM },
372 { "startvm", USAGE_STARTVM, handleStartVM },
373 { "controlvm", USAGE_CONTROLVM, handleControlVM },
374 { "discardstate", USAGE_DISCARDSTATE, handleDiscardState },
375 { "adoptstate", USAGE_ADOPTSTATE, handleAdoptState },
376 { "snapshot", USAGE_SNAPSHOT, handleSnapshot },
377 { "closemedium", USAGE_CLOSEMEDIUM, handleCloseMedium },
378 { "storageattach", USAGE_STORAGEATTACH, handleStorageAttach },
379 { "storagectl", USAGE_STORAGECONTROLLER, handleStorageController },
380 { "showhdinfo", USAGE_SHOWHDINFO, handleShowHardDiskInfo },
381 { "showvdiinfo", USAGE_SHOWHDINFO, handleShowHardDiskInfo }, /* backward compatibility */
382 { "getextradata", USAGE_GETEXTRADATA, handleGetExtraData },
383 { "setextradata", USAGE_SETEXTRADATA, handleSetExtraData },
384 { "setproperty", USAGE_SETPROPERTY, handleSetProperty },
385 { "usbfilter", USAGE_USBFILTER, handleUSBFilter },
386 { "sharedfolder", USAGE_SHAREDFOLDER, handleSharedFolder },
387 { "vmstatistics", USAGE_VM_STATISTICS, handleVMStatistics },
388#ifdef VBOX_WITH_GUEST_PROPS
389 { "guestproperty", USAGE_GUESTPROPERTY, handleGuestProperty },
390#endif
391#ifdef VBOX_WITH_GUEST_CONTROL
392 { "guestcontrol", USAGE_GUESTCONTROL, handleGuestControl },
393#endif
394 { "metrics", USAGE_METRICS, handleMetrics },
395 { "import", USAGE_IMPORTAPPLIANCE, handleImportAppliance },
396 { "export", USAGE_EXPORTAPPLIANCE, handleExportAppliance },
397#ifdef VBOX_WITH_NETFLT
398 { "hostonlyif", USAGE_HOSTONLYIFS, handleHostonlyIf },
399#endif
400 { "dhcpserver", USAGE_DHCPSERVER, handleDHCPServer},
401 { "vrde", USAGE_VRDE, handleVRDE},
402 { NULL, 0, NULL }
403 };
404
405 int commandIndex;
406 for (commandIndex = 0; s_commandHandlers[commandIndex].command != NULL; commandIndex++)
407 {
408 if (!strcmp(s_commandHandlers[commandIndex].command, argv[iCmd]))
409 {
410 handlerArg.argc = argc - iCmdArg;
411 handlerArg.argv = &argv[iCmdArg];
412
413 if ( fShowHelp
414 || ( argc - iCmdArg == 0
415 && s_commandHandlers[commandIndex].help))
416 {
417 printUsage(s_commandHandlers[commandIndex].help, g_pStdOut);
418 rc = 1; /* error */
419 }
420 else
421 rc = s_commandHandlers[commandIndex].handler(&handlerArg);
422 break;
423 }
424 }
425 if (!s_commandHandlers[commandIndex].command)
426 rc = errorSyntax(USAGE_ALL, "Invalid command '%s'", Utf8Str(argv[iCmd]).c_str());
427
428 /* Although all handlers should always close the session if they open it,
429 * we do it here just in case if some of the handlers contains a bug --
430 * leaving the direct session not closed will turn the machine state to
431 * Aborted which may have unwanted side effects like killing the saved
432 * state file (if the machine was in the Saved state before). */
433 session->UnlockMachine();
434
435 EventQueue::getMainEventQueue()->processEventQueue(0);
436 // end "all-stuff" scope
437 ////////////////////////////////////////////////////////////////////////////
438 } while (0);
439
440 com::Shutdown();
441#endif /* !VBOX_ONLY_DOCS */
442
443 /*
444 * Free converted argument vector
445 */
446 for (int i = iCmdArg; i < argc; i++)
447 RTStrFree(argv[i]);
448
449 return rc != 0;
450}
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