mirror of
https://github.com/qemu/qemu.git
synced 2024-11-23 19:03:38 +08:00
376253ece4
Refactor the monitor API and prepare it for decoupled terminals: term_print functions are renamed to monitor_* and all monitor services gain a new parameter (mon) that will once refer to the monitor instance the output is supposed to appear on. However, the argument remains unused for now. All monitor command callbacks are also extended by a mon parameter so that command handlers are able to pass an appropriate reference to monitor output services. For the case that monitor outputs so far happen without clearly identifiable context, the global variable cur_mon is introduced that shall once provide a pointer either to the current active monitor (while processing commands) or to the default one. On the mid or long term, those use case will be obsoleted so that this variable can be removed again. Due to the broad usage of the monitor interface, this patch mostly deals with converting users of the monitor API. A few of them are already extended to pass 'mon' from the command handler further down to internal functions that invoke monitor_printf. At this chance, monitor-related prototypes are moved from console.h to a new monitor.h. The same is done for the readline API. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6711 c046a42c-6fe2-441c-8c8c-71466251a162
100 lines
2.3 KiB
C
100 lines
2.3 KiB
C
/*
|
|
* QEMU live migration
|
|
*
|
|
* Copyright IBM, Corp. 2008
|
|
*
|
|
* Authors:
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
* the COPYING file in the top-level directory.
|
|
*
|
|
*/
|
|
|
|
#ifndef QEMU_MIGRATION_H
|
|
#define QEMU_MIGRATION_H
|
|
|
|
#include "qemu-common.h"
|
|
|
|
#define MIG_STATE_ERROR -1
|
|
#define MIG_STATE_COMPLETED 0
|
|
#define MIG_STATE_CANCELLED 1
|
|
#define MIG_STATE_ACTIVE 2
|
|
|
|
typedef struct MigrationState MigrationState;
|
|
|
|
struct MigrationState
|
|
{
|
|
/* FIXME: add more accessors to print migration info */
|
|
void (*cancel)(MigrationState *s);
|
|
int (*get_status)(MigrationState *s);
|
|
void (*release)(MigrationState *s);
|
|
};
|
|
|
|
typedef struct FdMigrationState FdMigrationState;
|
|
|
|
struct FdMigrationState
|
|
{
|
|
MigrationState mig_state;
|
|
int64_t bandwidth_limit;
|
|
QEMUFile *file;
|
|
int fd;
|
|
int detach;
|
|
int state;
|
|
int (*get_error)(struct FdMigrationState*);
|
|
int (*close)(struct FdMigrationState*);
|
|
int (*write)(struct FdMigrationState*, const void *, size_t);
|
|
void *opaque;
|
|
};
|
|
|
|
void qemu_start_incoming_migration(const char *uri);
|
|
|
|
void do_migrate(Monitor *mon, int detach, const char *uri);
|
|
|
|
void do_migrate_cancel(Monitor *mon);
|
|
|
|
void do_migrate_set_speed(Monitor *mon, const char *value);
|
|
|
|
void do_info_migrate(Monitor *mon);
|
|
|
|
int exec_start_incoming_migration(const char *host_port);
|
|
|
|
MigrationState *exec_start_outgoing_migration(const char *host_port,
|
|
int64_t bandwidth_limit,
|
|
int detach);
|
|
|
|
int tcp_start_incoming_migration(const char *host_port);
|
|
|
|
MigrationState *tcp_start_outgoing_migration(const char *host_port,
|
|
int64_t bandwidth_limit,
|
|
int detach);
|
|
|
|
void migrate_fd_error(FdMigrationState *s);
|
|
|
|
void migrate_fd_cleanup(FdMigrationState *s);
|
|
|
|
void migrate_fd_put_notify(void *opaque);
|
|
|
|
ssize_t migrate_fd_put_buffer(void *opaque, const void *data, size_t size);
|
|
|
|
void migrate_fd_connect(FdMigrationState *s);
|
|
|
|
void migrate_fd_put_ready(void *opaque);
|
|
|
|
int migrate_fd_get_status(MigrationState *mig_state);
|
|
|
|
void migrate_fd_cancel(MigrationState *mig_state);
|
|
|
|
void migrate_fd_release(MigrationState *mig_state);
|
|
|
|
void migrate_fd_wait_for_unfreeze(void *opaque);
|
|
|
|
int migrate_fd_close(void *opaque);
|
|
|
|
static inline FdMigrationState *migrate_to_fms(MigrationState *mig_state)
|
|
{
|
|
return container_of(mig_state, FdMigrationState, mig_state);
|
|
}
|
|
|
|
#endif
|