2010-03-11 15:13:27 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 or
|
|
|
|
* (at your option) version 3 of the License.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QEMU_SPICE_H
|
|
|
|
#define QEMU_SPICE_H
|
|
|
|
|
include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef. Since then, we've moved to include qemu/osdep.h
everywhere. Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h. That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h. Include qapi/error.h in .c files that need it and don't
get it now. Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly. Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h. Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third. Unfortunately, the number depending on
qapi-types.h shrinks only a little. More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2016-03-14 09:01:28 +01:00
|
|
|
#include "qapi/error.h"
|
2013-12-01 22:23:38 +01:00
|
|
|
|
2010-03-11 15:13:27 +01:00
|
|
|
#ifdef CONFIG_SPICE
|
|
|
|
|
|
|
|
#include <spice.h>
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/config-file.h"
|
2010-03-11 15:13:27 +01:00
|
|
|
|
|
|
|
extern int using_spice;
|
|
|
|
|
|
|
|
void qemu_spice_init(void);
|
2010-03-11 15:13:28 +01:00
|
|
|
void qemu_spice_input_init(void);
|
2010-11-09 17:29:46 +01:00
|
|
|
void qemu_spice_audio_init(void);
|
2013-10-11 22:39:59 +02:00
|
|
|
void qemu_spice_display_init(void);
|
2012-02-13 14:43:08 +01:00
|
|
|
int qemu_spice_display_add_client(int csock, int skipauth, int tls);
|
2010-03-11 15:13:27 +01:00
|
|
|
int qemu_spice_add_interface(SpiceBaseInstance *sin);
|
2013-10-11 22:39:59 +02:00
|
|
|
bool qemu_spice_have_display_interface(QemuConsole *con);
|
|
|
|
int qemu_spice_add_display_interface(QXLInstance *qxlin, QemuConsole *con);
|
2010-10-07 12:22:54 +02:00
|
|
|
int qemu_spice_set_passwd(const char *passwd,
|
|
|
|
bool fail_if_connected, bool disconnect_if_connected);
|
|
|
|
int qemu_spice_set_pw_expire(time_t expires);
|
2010-04-23 13:28:21 +02:00
|
|
|
int qemu_spice_migrate_info(const char *hostname, int port, int tls_port,
|
2015-03-05 09:30:16 +01:00
|
|
|
const char *subject);
|
2010-03-11 15:13:27 +01:00
|
|
|
|
2016-08-09 21:02:27 +02:00
|
|
|
#if !defined(SPICE_SERVER_VERSION) || (SPICE_SERVER_VERSION < 0xc06)
|
|
|
|
#define SPICE_NEEDS_SET_MM_TIME 1
|
|
|
|
#else
|
|
|
|
#define SPICE_NEEDS_SET_MM_TIME 0
|
|
|
|
#endif
|
2012-12-05 16:15:36 +01:00
|
|
|
void qemu_spice_register_ports(void);
|
2011-01-19 09:49:50 +01:00
|
|
|
|
2010-03-11 15:13:27 +01:00
|
|
|
#else /* CONFIG_SPICE */
|
|
|
|
|
2016-04-19 21:55:23 +02:00
|
|
|
#include "qemu/error-report.h"
|
|
|
|
|
2010-03-11 15:13:27 +01:00
|
|
|
#define using_spice 0
|
2013-07-22 15:34:12 +02:00
|
|
|
#define spice_displays 0
|
2011-02-01 15:53:23 +01:00
|
|
|
static inline int qemu_spice_set_passwd(const char *passwd,
|
|
|
|
bool fail_if_connected,
|
|
|
|
bool disconnect_if_connected)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
static inline int qemu_spice_set_pw_expire(time_t expires)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
2011-10-17 10:03:18 +02:00
|
|
|
static inline int qemu_spice_migrate_info(const char *h, int p, int t,
|
2015-03-05 09:30:16 +01:00
|
|
|
const char *s)
|
2011-10-17 10:03:18 +02:00
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
2010-03-11 15:13:27 +01:00
|
|
|
|
2012-02-13 14:43:08 +01:00
|
|
|
static inline int qemu_spice_display_add_client(int csock, int skipauth,
|
|
|
|
int tls)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-04-19 21:55:23 +02:00
|
|
|
static inline void qemu_spice_display_init(void)
|
|
|
|
{
|
|
|
|
/* This must never be called if CONFIG_SPICE is disabled */
|
|
|
|
error_report("spice support is disabled");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void qemu_spice_init(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-03-11 15:13:27 +01:00
|
|
|
#endif /* CONFIG_SPICE */
|
|
|
|
|
2015-01-13 17:07:15 +01:00
|
|
|
static inline bool qemu_using_spice(Error **errp)
|
|
|
|
{
|
|
|
|
if (!using_spice) {
|
2015-01-13 17:21:45 +01:00
|
|
|
error_set(errp, ERROR_CLASS_DEVICE_NOT_ACTIVE,
|
|
|
|
"SPICE is not in use");
|
2015-01-13 17:07:15 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-03-11 15:13:27 +01:00
|
|
|
#endif /* QEMU_SPICE_H */
|