qemu_monitor_text.h 5.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
/*
 * qemu_monitor_text.h: interaction with QEMU monitor console
 *
 * Copyright (C) 2006-2009 Red Hat, Inc.
 * Copyright (C) 2006 Daniel P. Berrange
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */


#ifndef QEMU_MONITOR_TEXT_H
#define QEMU_MONITOR_TEXT_H

#include "internal.h"

#include "domain_conf.h"

/* XXX remove these two from public header */
#define QEMU_CMD_PROMPT "\n(qemu) "
#define QEMU_PASSWD_PROMPT "Password: "

/* Return -1 for error, 0 for success */
typedef int qemudMonitorExtraPromptHandler(const virDomainObjPtr vm,
                                           const char *buf,
                                           const char *prompt,
                                           void *data);

/* These first 4 APIs are generic monitor interaction. They will
 * go away eventually
 */
int qemudMonitorCommand(const virDomainObjPtr vm,
                        const char *cmd,
                        char **reply);
int qemudMonitorCommandWithFd(const virDomainObjPtr vm,
                              const char *cmd,
                              int scm_fd,
                              char **reply);
int qemudMonitorCommandWithHandler(const virDomainObjPtr vm,
                                   const char *cmd,
                                   const char *extraPrompt,
                                   qemudMonitorExtraPromptHandler extraHandler,
                                   void *handlerData,
                                   int scm_fd,
                                   char **reply);
int qemudMonitorCommandExtra(const virDomainObjPtr vm,
                             const char *cmd,
                             const char *extra,
                             const char *extraPrompt,
                             int scm_fd,
                             char **reply);

/* Formal APIs for each required monitor command */

68
int qemuMonitorStartCPUs(virConnectPtr conn,
69
                         const virDomainObjPtr vm);
70
int qemuMonitorStopCPUs(const virDomainObjPtr vm);
71

72 73
int qemuMonitorSystemPowerdown(const virDomainObjPtr vm);

74 75
int qemuMonitorGetCPUInfo(const virDomainObjPtr vm,
                          int **pids);
76 77
int qemuMonitorGetBalloonInfo(const virDomainObjPtr vm,
                              unsigned long *currmem);
78 79 80 81 82 83 84 85
int qemuMonitorGetBlockStatsInfo(const virDomainObjPtr vm,
                                 const char *devname,
                                 long long *rd_req,
                                 long long *rd_bytes,
                                 long long *wr_req,
                                 long long *wr_bytes,
                                 long long *errs);

86

87 88
int qemuMonitorSetVNCPassword(const virDomainObjPtr vm,
                              const char *password);
89 90
int qemuMonitorSetBalloon(const virDomainObjPtr vm,
                          unsigned long newmem);
91

92 93 94 95 96 97 98 99 100 101
/* XXX should we pass the virDomainDiskDefPtr instead
 * and hide devname details inside monitor. Reconsider
 * this when doing the QMP implementation
 */
int qemuMonitorEjectMedia(const virDomainObjPtr vm,
                          const char *devname);
int qemuMonitorChangeMedia(const virDomainObjPtr vm,
                           const char *devname,
                           const char *newmedia);

102 103 104 105 106 107 108 109 110 111

int qemuMonitorSaveVirtualMemory(const virDomainObjPtr vm,
                                 unsigned long long offset,
                                 size_t length,
                                 const char *path);
int qemuMonitorSavePhysicalMemory(const virDomainObjPtr vm,
                                  unsigned long long offset,
                                  size_t length,
                                  const char *path);

112 113 114
int qemuMonitorSetMigrationSpeed(const virDomainObjPtr vm,
                                 unsigned long bandwidth);

115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
enum {
    QEMU_MONITOR_MIGRATION_STATUS_INACTIVE,
    QEMU_MONITOR_MIGRATION_STATUS_ACTIVE,
    QEMU_MONITOR_MIGRATION_STATUS_COMPLETED,
    QEMU_MONITOR_MIGRATION_STATUS_ERROR,
    QEMU_MONITOR_MIGRATION_STATUS_CANCELLED,

    QEMU_MONITOR_MIGRATION_STATUS_LAST
};

int qemuMonitorGetMigrationStatus(const virDomainObjPtr vm,
                                  int *status,
                                  unsigned long long *transferred,
                                  unsigned long long *remaining,
                                  unsigned long long *total);

131
#endif /* QEMU_MONITOR_TEXT_H */