VirtualBox

Ignore:
Timestamp:
Oct 19, 2007 4:50:01 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
25497
Message:

VBoxManage: Added "adoptstate <vm> <state_file>" to instruct the VM to adopt the external saved state file.

Location:
trunk/src/VBox/Frontends/VBoxManage
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp

    r5292 r5391  
    416416    {
    417417        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"
    418424                 "\n");
    419425    }
     
    35873593    ULONG guestStatInterval = (ULONG)-1;
    35883594
    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)
    35923598        return errorSyntax(USAGE_MODIFYVM, "Not enough parameters");
    3593     }
    35943599
    35953600    /* Get the number of network adapters */
     
    41514156        else if (strncmp(argv[i], "-guestmemoryballoon", 19) == 0)
    41524157        {
    4153                 if (argc <= i + 1)
    4154                     return errorArgument("Missing argument to '%s'", argv[i-1]);
    4155                 i++;
    4156                 uint32_t uVal;
    4157                 int vrc;
    4158                 vrc = RTStrToUInt32Ex(argv[i], NULL, 0, &uVal);
    4159                 if (vrc != VINF_SUCCESS)
    4160                     return errorArgument("Error parsing guest memory balloon size '%s'", argv[i]);
    4161                 guestMemBalloonSize = uVal;
     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;
    41624167        }
    41634168        else if (strncmp(argv[i], "-gueststatisticsinterval", 24) == 0)
    41644169        {
    4165                 if (argc <= i + 1)
    4166                     return errorArgument("Missing argument to '%s'", argv[i-1]);
    4167                 i++;
    4168                 uint32_t uVal;
    4169                 int vrc;
    4170                 vrc = RTStrToUInt32Ex(argv[i], NULL, 0, &uVal);
    4171                 if (vrc != VINF_SUCCESS)
    4172                     return errorArgument("Error parsing guest statistics interval '%s'", argv[i]);
    4173                 guestStatInterval = uVal;
     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;
    41744179        }
    41754180        else
     
    51005105        /* commit changes */
    51015106        CHECK_ERROR(machine, SaveSettings());
    5102     } while (0);
     5107    }
     5108    while (0);
    51035109
    51045110    /* it's important to always close sessions */
     
    56275633            machine->COMGETTER(Id)(guid.asOutParam());
    56285634            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);
    56325642            CHECK_ERROR_BREAK(session, Close());
    5633         } while (0);
     5643        }
     5644        while (0);
     5645    }
     5646
     5647    return SUCCEEDED(rc) ? 0 : 1;
     5648}
     5649
     5650static 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);
    56345686    }
    56355687
     
    74917543        { "controlvm",        handleControlVM },
    74927544        { "discardstate",     handleDiscardState },
     7545        { "adoptstate",       handleAdoptdState },
    74937546        { "snapshot",         handleSnapshot },
    74947547        { "registerimage",    handleRegisterImage },
     
    75227575    }
    75237576
     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();
    75247583
    75257584    // end "all-stuff" scope
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h

    r5204 r5391  
    6868#endif /* !VBOX_OSE */
    6969#define USAGE_VM_STATISTICS         BIT64(35)
     70#define USAGE_ADOPTSTATE            BIT64(36)
    7071#define USAGE_ALL                   (~(uint64_t)0)
    7172/** @} */
Note: See TracChangeset for help on using the changeset viewer.

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