mirror of https://gitee.com/openkylin/libvirt.git
virsh: Refactor block job waiting in cmdBlockCopy
Similarly to the refactor of cmdBlockCommit in a previous commit this does the same change for cmdBlockCopy.
This commit is contained in:
parent
7408403560
commit
faa1439123
|
@ -2263,20 +2263,13 @@ cmdBlockCopy(vshControl *ctl, const vshCmd *cmd)
|
||||||
bool blocking = vshCommandOptBool(cmd, "wait") || finish || pivot;
|
bool blocking = vshCommandOptBool(cmd, "wait") || finish || pivot;
|
||||||
bool async = vshCommandOptBool(cmd, "async");
|
bool async = vshCommandOptBool(cmd, "async");
|
||||||
int timeout = 0;
|
int timeout = 0;
|
||||||
struct sigaction sig_action;
|
|
||||||
struct sigaction old_sig_action;
|
|
||||||
sigset_t sigmask, oldsigmask;
|
|
||||||
struct timeval start;
|
|
||||||
struct timeval curr;
|
|
||||||
const char *path = NULL;
|
const char *path = NULL;
|
||||||
bool quit = false;
|
|
||||||
int abort_flags = 0;
|
int abort_flags = 0;
|
||||||
const char *xml = NULL;
|
const char *xml = NULL;
|
||||||
char *xmlstr = NULL;
|
char *xmlstr = NULL;
|
||||||
virTypedParameterPtr params = NULL;
|
virTypedParameterPtr params = NULL;
|
||||||
|
vshBlockJobWaitDataPtr bjWait = NULL;
|
||||||
int nparams = 0;
|
int nparams = 0;
|
||||||
int status = -1;
|
|
||||||
int cb_id = -1;
|
|
||||||
|
|
||||||
if (vshCommandOptStringReq(ctl, cmd, "path", &path) < 0)
|
if (vshCommandOptStringReq(ctl, cmd, "path", &path) < 0)
|
||||||
return false;
|
return false;
|
||||||
|
@ -2335,33 +2328,14 @@ cmdBlockCopy(vshControl *ctl, const vshCmd *cmd)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (blocking) {
|
|
||||||
sigemptyset(&sigmask);
|
|
||||||
sigaddset(&sigmask, SIGINT);
|
|
||||||
|
|
||||||
intCaught = 0;
|
|
||||||
sig_action.sa_sigaction = vshCatchInt;
|
|
||||||
sig_action.sa_flags = SA_SIGINFO;
|
|
||||||
sigemptyset(&sig_action.sa_mask);
|
|
||||||
sigaction(SIGINT, &sig_action, &old_sig_action);
|
|
||||||
|
|
||||||
GETTIMEOFDAY(&start);
|
|
||||||
}
|
|
||||||
|
|
||||||
virConnectDomainEventGenericCallback cb =
|
|
||||||
VIR_DOMAIN_EVENT_CALLBACK(vshBlockJobStatusHandler);
|
|
||||||
|
|
||||||
if ((cb_id = virConnectDomainEventRegisterAny(ctl->conn,
|
|
||||||
dom,
|
|
||||||
VIR_DOMAIN_EVENT_ID_BLOCK_JOB,
|
|
||||||
cb,
|
|
||||||
&status,
|
|
||||||
NULL)) < 0)
|
|
||||||
vshResetLibvirtError();
|
|
||||||
|
|
||||||
if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
|
if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
|
||||||
|
if (blocking &&
|
||||||
|
!(bjWait = vshBlockJobWaitInit(ctl, dom, path, _("Block Copy"), verbose,
|
||||||
|
timeout, async)))
|
||||||
|
goto cleanup;
|
||||||
|
|
||||||
if (xml) {
|
if (xml) {
|
||||||
if (virFileReadAll(xml, VSH_MAX_XML_FILE, &xmlstr) < 0) {
|
if (virFileReadAll(xml, VSH_MAX_XML_FILE, &xmlstr) < 0) {
|
||||||
vshReportError(ctl);
|
vshReportError(ctl);
|
||||||
|
@ -2436,83 +2410,52 @@ cmdBlockCopy(vshControl *ctl, const vshCmd *cmd)
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
|
|
||||||
while (blocking) {
|
/* Execution continues here only if --wait or friends were specified */
|
||||||
virDomainBlockJobInfo info;
|
switch (vshBlockJobWait(bjWait)) {
|
||||||
int result;
|
case -1:
|
||||||
|
|
||||||
pthread_sigmask(SIG_BLOCK, &sigmask, &oldsigmask);
|
|
||||||
result = virDomainGetBlockJobInfo(dom, path, &info, 0);
|
|
||||||
pthread_sigmask(SIG_SETMASK, &oldsigmask, NULL);
|
|
||||||
|
|
||||||
if (result < 0) {
|
|
||||||
vshError(ctl, _("failed to query job for disk %s"), path);
|
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
|
||||||
|
|
||||||
if (result == 0) {
|
case VIR_DOMAIN_BLOCK_JOB_CANCELED:
|
||||||
vshError(ctl, _("Block Copy unexpectedly failed"));
|
vshPrint(ctl, "\n%s", _("Copy aborted"));
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
|
||||||
|
|
||||||
if (verbose)
|
|
||||||
vshPrintJobProgress(_("Block Copy"), info.end - info.cur, info.end);
|
|
||||||
if (info.cur == info.end)
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
GETTIMEOFDAY(&curr);
|
case VIR_DOMAIN_BLOCK_JOB_FAILED:
|
||||||
if (intCaught || (timeout &&
|
vshPrint(ctl, "\n%s", _("Copy failed"));
|
||||||
(((int)(curr.tv_sec - start.tv_sec) * 1000 +
|
goto cleanup;
|
||||||
(int)(curr.tv_usec - start.tv_usec) / 1000) >
|
break;
|
||||||
timeout))) {
|
|
||||||
vshDebug(ctl, VSH_ERR_DEBUG,
|
case VIR_DOMAIN_BLOCK_JOB_READY:
|
||||||
intCaught ? "interrupted" : "timeout");
|
case VIR_DOMAIN_BLOCK_JOB_COMPLETED:
|
||||||
intCaught = 0;
|
break;
|
||||||
timeout = 0;
|
|
||||||
status = VIR_DOMAIN_BLOCK_JOB_CANCELED;
|
|
||||||
if (virDomainBlockJobAbort(dom, path, abort_flags) < 0) {
|
|
||||||
vshError(ctl, _("failed to abort job for disk %s"), path);
|
|
||||||
goto cleanup;
|
|
||||||
}
|
|
||||||
if (abort_flags & VIR_DOMAIN_BLOCK_JOB_ABORT_ASYNC)
|
|
||||||
break;
|
|
||||||
} else {
|
|
||||||
usleep(500 * 1000);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (status == VIR_DOMAIN_BLOCK_JOB_CANCELED)
|
if (pivot) {
|
||||||
quit = true;
|
|
||||||
|
|
||||||
if (!quit && pivot) {
|
|
||||||
abort_flags |= VIR_DOMAIN_BLOCK_JOB_ABORT_PIVOT;
|
abort_flags |= VIR_DOMAIN_BLOCK_JOB_ABORT_PIVOT;
|
||||||
if (virDomainBlockJobAbort(dom, path, abort_flags) < 0) {
|
if (virDomainBlockJobAbort(dom, path, abort_flags) < 0) {
|
||||||
vshError(ctl, _("failed to pivot job for disk %s"), path);
|
vshError(ctl, _("failed to pivot job for disk %s"), path);
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
} else if (finish && !quit &&
|
|
||||||
virDomainBlockJobAbort(dom, path, abort_flags) < 0) {
|
|
||||||
vshError(ctl, _("failed to finish job for disk %s"), path);
|
|
||||||
goto cleanup;
|
|
||||||
}
|
|
||||||
if (quit)
|
|
||||||
vshPrint(ctl, "\n%s", _("Copy aborted"));
|
|
||||||
else if (pivot)
|
|
||||||
vshPrint(ctl, "\n%s", _("Successfully pivoted"));
|
vshPrint(ctl, "\n%s", _("Successfully pivoted"));
|
||||||
else if (finish)
|
} else if (finish) {
|
||||||
|
if (virDomainBlockJobAbort(dom, path, abort_flags) < 0) {
|
||||||
|
vshError(ctl, _("failed to finish job for disk %s"), path);
|
||||||
|
goto cleanup;
|
||||||
|
}
|
||||||
|
|
||||||
vshPrint(ctl, "\n%s", _("Successfully copied"));
|
vshPrint(ctl, "\n%s", _("Successfully copied"));
|
||||||
else
|
} else {
|
||||||
vshPrint(ctl, "\n%s", _("Now in mirroring phase"));
|
vshPrint(ctl, "\n%s", _("Now in mirroring phase"));
|
||||||
|
}
|
||||||
|
|
||||||
ret = true;
|
ret = true;
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
VIR_FREE(xmlstr);
|
VIR_FREE(xmlstr);
|
||||||
virTypedParamsFree(params, nparams);
|
virTypedParamsFree(params, nparams);
|
||||||
if (dom)
|
virDomainFree(dom);
|
||||||
virDomainFree(dom);
|
vshBlockJobWaitFree(bjWait);
|
||||||
if (blocking)
|
|
||||||
sigaction(SIGINT, &old_sig_action, NULL);
|
|
||||||
if (cb_id >= 0)
|
|
||||||
virConnectDomainEventDeregisterAny(ctl->conn, cb_id);
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue