mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-02 18:05:20 +00:00
vbox: Rewrite vboxDomainShutdownFlags
This commit is contained in:
parent
395ecc456e
commit
67533a8148
@ -2456,3 +2456,51 @@ int vboxDomainResume(virDomainPtr dom)
|
|||||||
vboxIIDUnalloc(&iid);
|
vboxIIDUnalloc(&iid);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int vboxDomainShutdownFlags(virDomainPtr dom, unsigned int flags)
|
||||||
|
{
|
||||||
|
VBOX_OBJECT_CHECK(dom->conn, int, -1);
|
||||||
|
IMachine *machine = NULL;
|
||||||
|
vboxIIDUnion iid;
|
||||||
|
IConsole *console = NULL;
|
||||||
|
PRUint32 state;
|
||||||
|
PRBool isAccessible = PR_FALSE;
|
||||||
|
|
||||||
|
virCheckFlags(0, -1);
|
||||||
|
|
||||||
|
if (openSessionForMachine(data, dom->uuid, &iid, &machine, false) < 0)
|
||||||
|
goto cleanup;
|
||||||
|
|
||||||
|
if (!machine)
|
||||||
|
goto cleanup;
|
||||||
|
|
||||||
|
gVBoxAPI.UIMachine.GetAccessible(machine, &isAccessible);
|
||||||
|
if (!isAccessible)
|
||||||
|
goto cleanup;
|
||||||
|
|
||||||
|
gVBoxAPI.UIMachine.GetState(machine, &state);
|
||||||
|
|
||||||
|
if (gVBoxAPI.machineStateChecker.Paused(state)) {
|
||||||
|
virReportError(VIR_ERR_OPERATION_FAILED, "%s",
|
||||||
|
_("machine paused, so can't power it down"));
|
||||||
|
goto cleanup;
|
||||||
|
} else if (gVBoxAPI.machineStateChecker.PoweredOff(state)) {
|
||||||
|
virReportError(VIR_ERR_OPERATION_FAILED, "%s",
|
||||||
|
_("machine already powered down"));
|
||||||
|
goto cleanup;
|
||||||
|
}
|
||||||
|
|
||||||
|
gVBoxAPI.UISession.OpenExisting(data, &iid, machine);
|
||||||
|
gVBoxAPI.UISession.GetConsole(data->vboxSession, &console);
|
||||||
|
if (console) {
|
||||||
|
gVBoxAPI.UIConsole.PowerButton(console);
|
||||||
|
VBOX_RELEASE(console);
|
||||||
|
ret = 0;
|
||||||
|
}
|
||||||
|
gVBoxAPI.UISession.Close(data->vboxSession);
|
||||||
|
|
||||||
|
cleanup:
|
||||||
|
VBOX_RELEASE(machine);
|
||||||
|
vboxIIDUnalloc(&iid);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
@ -933,60 +933,6 @@ vboxSocketParseAddrUtf16(vboxGlobalData *data, const PRUnichar *utf16,
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int vboxDomainShutdownFlags(virDomainPtr dom,
|
|
||||||
unsigned int flags)
|
|
||||||
{
|
|
||||||
VBOX_OBJECT_CHECK(dom->conn, int, -1);
|
|
||||||
IMachine *machine = NULL;
|
|
||||||
vboxIID iid = VBOX_IID_INITIALIZER;
|
|
||||||
IConsole *console = NULL;
|
|
||||||
PRUint32 state = MachineState_Null;
|
|
||||||
PRBool isAccessible = PR_FALSE;
|
|
||||||
nsresult rc;
|
|
||||||
|
|
||||||
virCheckFlags(0, -1);
|
|
||||||
|
|
||||||
vboxIIDFromUUID(&iid, dom->uuid);
|
|
||||||
rc = VBOX_OBJECT_GET_MACHINE(iid.value, &machine);
|
|
||||||
if (NS_FAILED(rc)) {
|
|
||||||
virReportError(VIR_ERR_NO_DOMAIN,
|
|
||||||
_("no domain with matching id %d"), dom->id);
|
|
||||||
goto cleanup;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!machine)
|
|
||||||
goto cleanup;
|
|
||||||
|
|
||||||
machine->vtbl->GetAccessible(machine, &isAccessible);
|
|
||||||
if (isAccessible) {
|
|
||||||
machine->vtbl->GetState(machine, &state);
|
|
||||||
|
|
||||||
if (state == MachineState_Paused) {
|
|
||||||
virReportError(VIR_ERR_OPERATION_FAILED, "%s",
|
|
||||||
_("machine paused, so can't power it down"));
|
|
||||||
goto cleanup;
|
|
||||||
} else if (state == MachineState_PoweredOff) {
|
|
||||||
virReportError(VIR_ERR_OPERATION_FAILED, "%s",
|
|
||||||
_("machine already powered down"));
|
|
||||||
goto cleanup;
|
|
||||||
}
|
|
||||||
|
|
||||||
VBOX_SESSION_OPEN_EXISTING(iid.value, machine);
|
|
||||||
data->vboxSession->vtbl->GetConsole(data->vboxSession, &console);
|
|
||||||
if (console) {
|
|
||||||
console->vtbl->PowerButton(console);
|
|
||||||
VBOX_RELEASE(console);
|
|
||||||
ret = 0;
|
|
||||||
}
|
|
||||||
VBOX_SESSION_CLOSE();
|
|
||||||
}
|
|
||||||
|
|
||||||
cleanup:
|
|
||||||
VBOX_RELEASE(machine);
|
|
||||||
vboxIIDUnalloc(&iid);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int vboxDomainShutdown(virDomainPtr dom)
|
static int vboxDomainShutdown(virDomainPtr dom)
|
||||||
{
|
{
|
||||||
return vboxDomainShutdownFlags(dom, 0);
|
return vboxDomainShutdownFlags(dom, 0);
|
||||||
@ -9952,6 +9898,12 @@ _consoleResume(IConsole *console)
|
|||||||
return console->vtbl->Resume(console);
|
return console->vtbl->Resume(console);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static nsresult
|
||||||
|
_consolePowerButton(IConsole *console)
|
||||||
|
{
|
||||||
|
return console->vtbl->PowerButton(console);
|
||||||
|
}
|
||||||
|
|
||||||
static nsresult
|
static nsresult
|
||||||
_progressWaitForCompletion(IProgress *progress, PRInt32 timeout)
|
_progressWaitForCompletion(IProgress *progress, PRInt32 timeout)
|
||||||
{
|
{
|
||||||
@ -10390,6 +10342,11 @@ static bool _machineStatePaused(PRUint32 state)
|
|||||||
return state == MachineState_Paused;
|
return state == MachineState_Paused;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static bool _machineStatePoweredOff(PRUint32 state)
|
||||||
|
{
|
||||||
|
return state == MachineState_PoweredOff;
|
||||||
|
}
|
||||||
|
|
||||||
static vboxUniformedPFN _UPFN = {
|
static vboxUniformedPFN _UPFN = {
|
||||||
.Initialize = _pfnInitialize,
|
.Initialize = _pfnInitialize,
|
||||||
.Uninitialize = _pfnUninitialize,
|
.Uninitialize = _pfnUninitialize,
|
||||||
@ -10472,6 +10429,7 @@ static vboxUniformedIConsole _UIConsole = {
|
|||||||
.SaveState = _consoleSaveState,
|
.SaveState = _consoleSaveState,
|
||||||
.Pause = _consolePause,
|
.Pause = _consolePause,
|
||||||
.Resume = _consoleResume,
|
.Resume = _consoleResume,
|
||||||
|
.PowerButton = _consolePowerButton,
|
||||||
};
|
};
|
||||||
|
|
||||||
static vboxUniformedIProgress _UIProgress = {
|
static vboxUniformedIProgress _UIProgress = {
|
||||||
@ -10559,6 +10517,7 @@ static uniformedMachineStateChecker _machineStateChecker = {
|
|||||||
.NotStart = _machineStateNotStart,
|
.NotStart = _machineStateNotStart,
|
||||||
.Running = _machineStateRunning,
|
.Running = _machineStateRunning,
|
||||||
.Paused = _machineStatePaused,
|
.Paused = _machineStatePaused,
|
||||||
|
.PoweredOff = _machineStatePoweredOff,
|
||||||
};
|
};
|
||||||
|
|
||||||
void NAME(InstallUniformedAPI)(vboxUniformedAPI *pVBoxAPI)
|
void NAME(InstallUniformedAPI)(vboxUniformedAPI *pVBoxAPI)
|
||||||
|
@ -239,6 +239,7 @@ typedef struct {
|
|||||||
nsresult (*SaveState)(IConsole *console, IProgress **progress);
|
nsresult (*SaveState)(IConsole *console, IProgress **progress);
|
||||||
nsresult (*Pause)(IConsole *console);
|
nsresult (*Pause)(IConsole *console);
|
||||||
nsresult (*Resume)(IConsole *console);
|
nsresult (*Resume)(IConsole *console);
|
||||||
|
nsresult (*PowerButton)(IConsole *console);
|
||||||
} vboxUniformedIConsole;
|
} vboxUniformedIConsole;
|
||||||
|
|
||||||
/* Functions for IProgress */
|
/* Functions for IProgress */
|
||||||
@ -343,6 +344,7 @@ typedef struct {
|
|||||||
bool (*NotStart)(PRUint32 state);
|
bool (*NotStart)(PRUint32 state);
|
||||||
bool (*Running)(PRUint32 state);
|
bool (*Running)(PRUint32 state);
|
||||||
bool (*Paused)(PRUint32 state);
|
bool (*Paused)(PRUint32 state);
|
||||||
|
bool (*PoweredOff)(PRUint32 state);
|
||||||
} uniformedMachineStateChecker;
|
} uniformedMachineStateChecker;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
@ -420,6 +422,7 @@ int vboxDomainIsPersistent(virDomainPtr dom);
|
|||||||
int vboxDomainIsUpdated(virDomainPtr dom);
|
int vboxDomainIsUpdated(virDomainPtr dom);
|
||||||
int vboxDomainSuspend(virDomainPtr dom);
|
int vboxDomainSuspend(virDomainPtr dom);
|
||||||
int vboxDomainResume(virDomainPtr dom);
|
int vboxDomainResume(virDomainPtr dom);
|
||||||
|
int vboxDomainShutdownFlags(virDomainPtr dom, unsigned int flags);
|
||||||
|
|
||||||
/* Version specified functions for installing uniformed API */
|
/* Version specified functions for installing uniformed API */
|
||||||
void vbox22InstallUniformedAPI(vboxUniformedAPI *pVBoxAPI);
|
void vbox22InstallUniformedAPI(vboxUniformedAPI *pVBoxAPI);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user