mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00

Add a VMStateDescriptor for QemuClipboardInfo. Each clipboard owner will have to save its QemuClipboardInfo and reregister its owned clipboard after loading. (the global cbinfo has only pointers to owners, so it can't restore the relation with its owner if it was to handle migration) Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
294 lines
7.5 KiB
C
294 lines
7.5 KiB
C
#ifndef QEMU_CLIPBOARD_H
|
|
#define QEMU_CLIPBOARD_H
|
|
|
|
#include "qemu/notify.h"
|
|
#include "migration/vmstate.h"
|
|
|
|
/**
|
|
* DOC: Introduction
|
|
*
|
|
* The header ``ui/clipboard.h`` declares the qemu clipboard interface.
|
|
*
|
|
* All qemu elements which want use the clipboard can register as
|
|
* clipboard peer. Subsequently they can set the clipboard content
|
|
* and get notifications for clipboard updates.
|
|
*
|
|
* Typical users are user interfaces (gtk), remote access protocols
|
|
* (vnc) and devices talking to the guest (vdagent).
|
|
*
|
|
* Even though the design allows different data types only plain text
|
|
* is supported for now.
|
|
*/
|
|
|
|
typedef enum QemuClipboardType QemuClipboardType;
|
|
typedef enum QemuClipboardNotifyType QemuClipboardNotifyType;
|
|
typedef enum QemuClipboardSelection QemuClipboardSelection;
|
|
typedef struct QemuClipboardPeer QemuClipboardPeer;
|
|
typedef struct QemuClipboardNotify QemuClipboardNotify;
|
|
typedef struct QemuClipboardInfo QemuClipboardInfo;
|
|
typedef struct QemuClipboardContent QemuClipboardContent;
|
|
|
|
extern const VMStateDescription vmstate_cbinfo;
|
|
|
|
/**
|
|
* enum QemuClipboardType
|
|
*
|
|
* @QEMU_CLIPBOARD_TYPE_TEXT: text/plain; charset=utf-8
|
|
* @QEMU_CLIPBOARD_TYPE__COUNT: type count.
|
|
*/
|
|
enum QemuClipboardType {
|
|
QEMU_CLIPBOARD_TYPE_TEXT,
|
|
QEMU_CLIPBOARD_TYPE__COUNT,
|
|
};
|
|
|
|
/* same as VD_AGENT_CLIPBOARD_SELECTION_* */
|
|
/**
|
|
* enum QemuClipboardSelection
|
|
*
|
|
* @QEMU_CLIPBOARD_SELECTION_CLIPBOARD: clipboard (explitcit cut+paste).
|
|
* @QEMU_CLIPBOARD_SELECTION_PRIMARY: primary selection (select + middle mouse button).
|
|
* @QEMU_CLIPBOARD_SELECTION_SECONDARY: secondary selection (dunno).
|
|
* @QEMU_CLIPBOARD_SELECTION__COUNT: selection count.
|
|
*/
|
|
enum QemuClipboardSelection {
|
|
QEMU_CLIPBOARD_SELECTION_CLIPBOARD,
|
|
QEMU_CLIPBOARD_SELECTION_PRIMARY,
|
|
QEMU_CLIPBOARD_SELECTION_SECONDARY,
|
|
QEMU_CLIPBOARD_SELECTION__COUNT,
|
|
};
|
|
|
|
/**
|
|
* struct QemuClipboardPeer
|
|
*
|
|
* @name: peer name.
|
|
* @notifier: notifier for clipboard updates.
|
|
* @request: callback for clipboard data requests.
|
|
*
|
|
* Clipboard peer description.
|
|
*/
|
|
struct QemuClipboardPeer {
|
|
const char *name;
|
|
Notifier notifier;
|
|
void (*request)(QemuClipboardInfo *info,
|
|
QemuClipboardType type);
|
|
};
|
|
|
|
/**
|
|
* enum QemuClipboardNotifyType
|
|
*
|
|
* @QEMU_CLIPBOARD_UPDATE_INFO: clipboard info update
|
|
* @QEMU_CLIPBOARD_RESET_SERIAL: reset clipboard serial
|
|
*
|
|
* Clipboard notify type.
|
|
*/
|
|
enum QemuClipboardNotifyType {
|
|
QEMU_CLIPBOARD_UPDATE_INFO,
|
|
QEMU_CLIPBOARD_RESET_SERIAL,
|
|
};
|
|
|
|
/**
|
|
* struct QemuClipboardNotify
|
|
*
|
|
* @type: the type of event.
|
|
* @info: a QemuClipboardInfo event.
|
|
*
|
|
* Clipboard notify data.
|
|
*/
|
|
struct QemuClipboardNotify {
|
|
QemuClipboardNotifyType type;
|
|
union {
|
|
QemuClipboardInfo *info;
|
|
};
|
|
};
|
|
|
|
|
|
/**
|
|
* struct QemuClipboardContent
|
|
*
|
|
* @available: whether the data is available
|
|
* @requested: whether the data was requested
|
|
* @size: the size of the @data
|
|
* @data: the clipboard data
|
|
*
|
|
* Clipboard content.
|
|
*/
|
|
struct QemuClipboardContent {
|
|
bool available;
|
|
bool requested;
|
|
uint32_t size;
|
|
void *data;
|
|
};
|
|
|
|
/**
|
|
* struct QemuClipboardInfo
|
|
*
|
|
* @refcount: reference counter.
|
|
* @owner: clipboard owner.
|
|
* @selection: clipboard selection.
|
|
* @types: clipboard data array (one entry per type).
|
|
* @has_serial: whether @serial is available.
|
|
* @serial: the grab serial counter.
|
|
*
|
|
* Clipboard content data and metadata.
|
|
*/
|
|
struct QemuClipboardInfo {
|
|
uint32_t refcount;
|
|
QemuClipboardPeer *owner;
|
|
int selection; /* QemuClipboardSelection */
|
|
bool has_serial;
|
|
uint32_t serial;
|
|
QemuClipboardContent types[QEMU_CLIPBOARD_TYPE__COUNT];
|
|
};
|
|
|
|
/**
|
|
* qemu_clipboard_peer_register
|
|
*
|
|
* @peer: peer information.
|
|
*
|
|
* Register clipboard peer. Registering is needed for both active
|
|
* (set+grab clipboard) and passive (watch clipboard for updates)
|
|
* interaction with the qemu clipboard.
|
|
*/
|
|
void qemu_clipboard_peer_register(QemuClipboardPeer *peer);
|
|
|
|
/**
|
|
* qemu_clipboard_peer_unregister
|
|
*
|
|
* @peer: peer information.
|
|
*
|
|
* Unregister clipboard peer.
|
|
*/
|
|
void qemu_clipboard_peer_unregister(QemuClipboardPeer *peer);
|
|
|
|
/**
|
|
* qemu_clipboard_peer_owns
|
|
*
|
|
* @peer: peer information.
|
|
* @selection: clipboard selection.
|
|
*
|
|
* Return TRUE if the peer owns the clipboard.
|
|
*/
|
|
bool qemu_clipboard_peer_owns(QemuClipboardPeer *peer,
|
|
QemuClipboardSelection selection);
|
|
|
|
/**
|
|
* qemu_clipboard_peer_release
|
|
*
|
|
* @peer: peer information.
|
|
* @selection: clipboard selection.
|
|
*
|
|
* If the peer owns the clipboard, release it.
|
|
*/
|
|
void qemu_clipboard_peer_release(QemuClipboardPeer *peer,
|
|
QemuClipboardSelection selection);
|
|
|
|
/**
|
|
* qemu_clipboard_info
|
|
*
|
|
* @selection: clipboard selection.
|
|
*
|
|
* Return the current clipboard data & owner information.
|
|
*/
|
|
QemuClipboardInfo *qemu_clipboard_info(QemuClipboardSelection selection);
|
|
|
|
/**
|
|
* qemu_clipboard_check_serial
|
|
*
|
|
* @info: clipboard info.
|
|
* @client: whether to check from the client context and priority.
|
|
*
|
|
* Return TRUE if the @info has a higher serial than the current clipboard.
|
|
*/
|
|
bool qemu_clipboard_check_serial(QemuClipboardInfo *info, bool client);
|
|
|
|
/**
|
|
* qemu_clipboard_info_new
|
|
*
|
|
* @owner: clipboard owner.
|
|
* @selection: clipboard selection.
|
|
*
|
|
* Allocate a new QemuClipboardInfo and initialize it with the given
|
|
* @owner and @selection.
|
|
*
|
|
* QemuClipboardInfo is a reference-counted struct. The new struct is
|
|
* returned with a reference already taken (i.e. reference count is
|
|
* one).
|
|
*/
|
|
QemuClipboardInfo *qemu_clipboard_info_new(QemuClipboardPeer *owner,
|
|
QemuClipboardSelection selection);
|
|
/**
|
|
* qemu_clipboard_info_ref
|
|
*
|
|
* @info: clipboard info.
|
|
*
|
|
* Increase @info reference count.
|
|
*/
|
|
QemuClipboardInfo *qemu_clipboard_info_ref(QemuClipboardInfo *info);
|
|
|
|
/**
|
|
* qemu_clipboard_info_unref
|
|
*
|
|
* @info: clipboard info.
|
|
*
|
|
* Decrease @info reference count. When the count goes down to zero
|
|
* free the @info struct itself and all clipboard data.
|
|
*/
|
|
void qemu_clipboard_info_unref(QemuClipboardInfo *info);
|
|
|
|
/**
|
|
* qemu_clipboard_update
|
|
*
|
|
* @info: clipboard info.
|
|
*
|
|
* Update the qemu clipboard. Notify all registered peers (including
|
|
* the clipboard owner) that the qemu clipboard has been updated.
|
|
*
|
|
* This is used for both new completely clipboard content and for
|
|
* clipboard data updates in response to qemu_clipboard_request()
|
|
* calls.
|
|
*/
|
|
void qemu_clipboard_update(QemuClipboardInfo *info);
|
|
|
|
/**
|
|
* qemu_clipboard_reset_serial
|
|
*
|
|
* Reset the clipboard serial.
|
|
*/
|
|
void qemu_clipboard_reset_serial(void);
|
|
|
|
/**
|
|
* qemu_clipboard_request
|
|
*
|
|
* @info: clipboard info.
|
|
* @type: clipboard data type.
|
|
*
|
|
* Request clipboard content. Typically the clipboard owner only
|
|
* advertises the available data types and provides the actual data
|
|
* only on request.
|
|
*/
|
|
void qemu_clipboard_request(QemuClipboardInfo *info,
|
|
QemuClipboardType type);
|
|
|
|
/**
|
|
* qemu_clipboard_set_data
|
|
*
|
|
* @peer: clipboard peer.
|
|
* @info: clipboard info.
|
|
* @type: clipboard data type.
|
|
* @size: data size.
|
|
* @data: data blob.
|
|
* @update: notify peers about the update.
|
|
*
|
|
* Set clipboard content for the given @type. This function will make
|
|
* a copy of the content data and store that.
|
|
*/
|
|
void qemu_clipboard_set_data(QemuClipboardPeer *peer,
|
|
QemuClipboardInfo *info,
|
|
QemuClipboardType type,
|
|
uint32_t size,
|
|
const void *data,
|
|
bool update);
|
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(QemuClipboardInfo, qemu_clipboard_info_unref)
|
|
|
|
#endif /* QEMU_CLIPBOARD_H */
|