Changeset 5391 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Oct 19, 2007 4:50:01 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 25497
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r5292 r5391 416 416 { 417 417 RTPrintf("VBoxManage discardstate <uuid>|<name>\n" 418 "\n"); 419 } 420 421 if (u64Cmd & USAGE_ADOPTSTATE) 422 { 423 RTPrintf("VBoxManage adoptstate <uuid>|<name> <state_file>\n" 418 424 "\n"); 419 425 } … … 3587 3593 ULONG guestStatInterval = (ULONG)-1; 3588 3594 3589 /* VM ID + at least one parameter + value */3590 if (argc < 3)3591 {3595 /* VM ID + at least one parameter. Parameter arguments are checked 3596 * individually. */ 3597 if (argc < 2) 3592 3598 return errorSyntax(USAGE_MODIFYVM, "Not enough parameters"); 3593 }3594 3599 3595 3600 /* Get the number of network adapters */ … … 4151 4156 else if (strncmp(argv[i], "-guestmemoryballoon", 19) == 0) 4152 4157 { 4153 4154 return errorArgument("Missing argument to '%s'", argv[i-1]);4155 4156 4157 4158 4159 4160 4161 4158 if (argc <= i + 1) 4159 return errorArgument("Missing argument to '%s'", argv[i]); 4160 i++; 4161 uint32_t uVal; 4162 int vrc; 4163 vrc = RTStrToUInt32Ex(argv[i], NULL, 0, &uVal); 4164 if (vrc != VINF_SUCCESS) 4165 return errorArgument("Error parsing guest memory balloon size '%s'", argv[i]); 4166 guestMemBalloonSize = uVal; 4162 4167 } 4163 4168 else if (strncmp(argv[i], "-gueststatisticsinterval", 24) == 0) 4164 4169 { 4165 4166 return errorArgument("Missing argument to '%s'", argv[i-1]);4167 4168 4169 4170 4171 4172 4173 4170 if (argc <= i + 1) 4171 return errorArgument("Missing argument to '%s'", argv[i]); 4172 i++; 4173 uint32_t uVal; 4174 int vrc; 4175 vrc = RTStrToUInt32Ex(argv[i], NULL, 0, &uVal); 4176 if (vrc != VINF_SUCCESS) 4177 return errorArgument("Error parsing guest statistics interval '%s'", argv[i]); 4178 guestStatInterval = uVal; 4174 4179 } 4175 4180 else … … 5100 5105 /* commit changes */ 5101 5106 CHECK_ERROR(machine, SaveSettings()); 5102 } while (0); 5107 } 5108 while (0); 5103 5109 5104 5110 /* it's important to always close sessions */ … … 5627 5633 machine->COMGETTER(Id)(guid.asOutParam()); 5628 5634 CHECK_ERROR_BREAK(virtualBox, OpenSession(session, guid)); 5629 ComPtr<IConsole> console; 5630 CHECK_ERROR_BREAK(session, COMGETTER(Console)(console.asOutParam())); 5631 CHECK_ERROR_BREAK(console, DiscardSavedState()); 5635 do 5636 { 5637 ComPtr<IConsole> console; 5638 CHECK_ERROR_BREAK(session, COMGETTER(Console)(console.asOutParam())); 5639 CHECK_ERROR_BREAK(console, DiscardSavedState()); 5640 } 5641 while (0); 5632 5642 CHECK_ERROR_BREAK(session, Close()); 5633 } while (0); 5643 } 5644 while (0); 5645 } 5646 5647 return SUCCEEDED(rc) ? 0 : 1; 5648 } 5649 5650 static int handleAdoptdState(int argc, char *argv[], 5651 ComPtr<IVirtualBox> virtualBox, ComPtr<ISession> session) 5652 { 5653 HRESULT rc; 5654 5655 if (argc != 2) 5656 { 5657 return errorSyntax(USAGE_ADOPTSTATE, "Incorrect number of parameters"); 5658 } 5659 5660 ComPtr<IMachine> machine; 5661 /* assume it's a UUID */ 5662 rc = virtualBox->GetMachine(Guid(argv[0]), machine.asOutParam()); 5663 if (FAILED(rc) || !machine) 5664 { 5665 /* must be a name */ 5666 CHECK_ERROR(virtualBox, FindMachine(Bstr(argv[0]), machine.asOutParam())); 5667 } 5668 if (machine) 5669 { 5670 do 5671 { 5672 /* we have to open a session for this task */ 5673 Guid guid; 5674 machine->COMGETTER(Id)(guid.asOutParam()); 5675 CHECK_ERROR_BREAK(virtualBox, OpenSession(session, guid)); 5676 do 5677 { 5678 ComPtr<IConsole> console; 5679 CHECK_ERROR_BREAK(session, COMGETTER(Console)(console.asOutParam())); 5680 CHECK_ERROR_BREAK(console, AdoptSavedState (Bstr (argv[1]))); 5681 } 5682 while (0); 5683 CHECK_ERROR_BREAK(session, Close()); 5684 } 5685 while (0); 5634 5686 } 5635 5687 … … 7491 7543 { "controlvm", handleControlVM }, 7492 7544 { "discardstate", handleDiscardState }, 7545 { "adoptstate", handleAdoptdState }, 7493 7546 { "snapshot", handleSnapshot }, 7494 7547 { "registerimage", handleRegisterImage }, … … 7522 7575 } 7523 7576 7577 /* Although all handlers should always close the session if they open it, 7578 * we do it here just in case if some of the handlers contains a bug -- 7579 * leaving the direct session not closed will turn the machine state to 7580 * Aborted which may have unwanted side effects like killing the saved 7581 * state file (if the machine was in the Saved state before). */ 7582 session->Close(); 7524 7583 7525 7584 // end "all-stuff" scope -
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h
r5204 r5391 68 68 #endif /* !VBOX_OSE */ 69 69 #define USAGE_VM_STATISTICS BIT64(35) 70 #define USAGE_ADOPTSTATE BIT64(36) 70 71 #define USAGE_ALL (~(uint64_t)0) 71 72 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.