Add API to allow the user to query dumping status. Signed-off-by: Wen Congyang <we...@cn.fujitsu.com> --- dump.c | 32 ++++++++++++++++++++++++++++++++ hmp-commands.hx | 2 ++ hmp.c | 17 +++++++++++++++++ hmp.h | 1 + monitor.c | 7 +++++++ qapi-schema.json | 26 ++++++++++++++++++++++++++ qmp-commands.hx | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 7 files changed, 134 insertions(+), 0 deletions(-)
diff --git a/dump.c b/dump.c index dab0c84..d569867 100644 --- a/dump.c +++ b/dump.c @@ -724,3 +724,35 @@ void qmp_dump_cancel(Error **errp) s->state = DUMP_STATE_CANCELLED; dump_cleanup(s); } + +DumpInfo *qmp_query_dump(Error **errp) +{ + DumpInfo *info = g_malloc0(sizeof(*info)); + DumpState *s = dump_get_current(); + + switch (s->state) { + case DUMP_STATE_SETUP: + /* no migration has happened ever */ + break; + case DUMP_STATE_ACTIVE: + info->has_status = true; + info->status = g_strdup("active"); + break; + case DUMP_STATE_COMPLETED: + info->has_status = true; + info->status = g_strdup("completed"); + break; + case DUMP_STATE_ERROR: + info->has_status = true; + info->status = g_strdup("failed"); + info->has_error = true; + info->error = g_strdup(s->error); + break; + case DUMP_STATE_CANCELLED: + info->has_status = true; + info->status = g_strdup("cancelled"); + break; + } + + return info; +} diff --git a/hmp-commands.hx b/hmp-commands.hx index 63193ec..b936bb7 100644 --- a/hmp-commands.hx +++ b/hmp-commands.hx @@ -1435,6 +1435,8 @@ show device tree show qdev device model list @item info roms show roms +@item info dump +show dumping status @end table ETEXI diff --git a/hmp.c b/hmp.c index d427e49..81dd23d 100644 --- a/hmp.c +++ b/hmp.c @@ -871,3 +871,20 @@ void hmp_dump_cancel(Monitor *mon, const QDict *qdict) { qmp_dump_cancel(NULL); } + +void hmp_info_dump(Monitor *mon) +{ + DumpInfo *info; + + info = qmp_query_dump(NULL); + + if (info->has_status) { + monitor_printf(mon, "Dumping status: %s\n", info->status); + } + + if (info->has_error) { + monitor_printf(mon, "Dumping failed reason: %s\n", info->error); + } + + qapi_free_DumpInfo(info); +} diff --git a/hmp.h b/hmp.h index 75c6c1d..3d105a9 100644 --- a/hmp.h +++ b/hmp.h @@ -61,5 +61,6 @@ void hmp_block_job_set_speed(Monitor *mon, const QDict *qdict); void hmp_block_job_cancel(Monitor *mon, const QDict *qdict); void hmp_dump(Monitor *mon, const QDict *qdict); void hmp_dump_cancel(Monitor *mon, const QDict *qdict); +void hmp_info_dump(Monitor *mon); #endif diff --git a/monitor.c b/monitor.c index 96af5e0..f240895 100644 --- a/monitor.c +++ b/monitor.c @@ -2603,6 +2603,13 @@ static mon_cmd_t info_cmds[] = { .mhandler.info = do_trace_print_events, }, { + .name = "dump", + .args_type = "", + .params = "", + .help = "show dumping status", + .mhandler.info = hmp_info_dump, + }, + { .name = NULL, }, }; diff --git a/qapi-schema.json b/qapi-schema.json index d40ba69..41428ed 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -1658,3 +1658,29 @@ # Since: 1.1 ## { 'command': 'dump_cancel' } + +## +# @DumpInfo +# +# Information about current migration process. +# +# @status: #optional string describing the current dumping status. +# As of 1,1 this can be 'active', 'completed', 'failed' or +# 'cancelled'. If this field is not returned, no migration process +# has been initiated +# +# Since: 1.1 +## +{ 'type': 'DumpInfo', + 'data': { '*status': 'str', '*error': 'str' } } + +## +# @query-dump +# +# Returns information about current dumping process. +# +# Returns: @DumpInfo +# +# Since: 1.1 +## +{ 'command': 'query-dump', 'returns': 'DumpInfo' } diff --git a/qmp-commands.hx b/qmp-commands.hx index 1b36262..c532561 100644 --- a/qmp-commands.hx +++ b/qmp-commands.hx @@ -616,6 +616,8 @@ Example: Notes: (1) All boolean arguments default to false +(2) The 'info dump' command should be used to check dumping's progress + and final result (this information is provided by the 'status' member) EQMP #endif @@ -2090,6 +2092,53 @@ EQMP }, SQMP +query-dump +------------- + +Dumping status. + +Return a json-object. + +The main json-object contains the following: + +- "status": migration status (json-string) + - Possible values: "active", "completed", "failed", "cancelled" + +Examples: + +1. Before the first migration + +-> { "execute": "query-dump" } +<- { "return": {} } + +2. Migration is done and has succeeded + +-> { "execute": "query-dump" } +<- { "return": { "status": "completed" } } + +3. Migration is done and has failed + +-> { "execute": "query-dump" } +<- { "return": { "status": "failed" } } + +4. Migration is being performed: + +-> { "execute": "query-dump" } +<- { + "return":{ + "status":"active", + } + } + +EQMP + + { + .name = "query-dump", + .args_type = "", + .mhandler.cmd_new = qmp_marshal_input_query_dump, + }, + +SQMP query-balloon ------------- -- 1.7.1