mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-02 11:21:12 +00:00
097e07a63a
This wires up the remote driver to handle the new events APIs. The public API allows an application to request a callback filters events to a specific domain object, and register multiple callbacks for the same event type. On the wire there are two strategies for this - Register multiple callbacks with the remote daemon, each with filtering as needed - Register only one callback per event type, with no filtering Both approaches have potential inefficiency. In the first scheme, the same event gets sent over the wire many times if multiple callbacks are registered. With the second scheme, unneccessary events get sent over the wire if a per-domain filter is set on the client. The second scheme is far easier to implement though, so this patch takes that approach. * daemon/dispatch.h: Don't export remoteRelayDomainEvent since it is no longer needed for unregistering callbacks, instead the unique callback ID is used * daemon/libvirtd.c, daemon/libvirtd.h: Track and unregister callbacks based on callback ID, instead of function pointer * daemon/remote.c: Switch over to using virConnectDomainEventRegisterAny instead of legacy virConnectDomainEventRegister function. Refactor remoteDispatchDomainEventSend() to cope with arbitrary event types * src/driver.h, src/driver.c: Move verify() call into source file instead of header, to avoid polluting the global namespace with the verify function name * src/remote/remote_driver.c: Implement new APIs for event registration. Refactor processCallDispatchMessage() to cope with arbitrary incoming event types. Merge remoteDomainQueueEvent() into processCallDispatchMessage() to avoid duplication of code. Rename remoteDomainReadEvent() to remoteDomainReadEventLifecycle() * src/remote/remote_protocol.x: Define wire format for the new virConnectDomainEventRegisterAny and virConnectDomainEventDeregisterAny functions
71 lines
2.3 KiB
C
71 lines
2.3 KiB
C
/*
|
|
* dispatch.h: RPC message dispatching infrastructure
|
|
*
|
|
* Copyright (C) 2007, 2008, 2009 Red Hat, Inc.
|
|
*
|
|
* 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: Richard W.M. Jones <rjones@redhat.com>
|
|
* Author: Daniel P. Berrange <berrange@redhat.com>
|
|
*/
|
|
|
|
#ifndef __LIBVIRTD_DISPATCH_H__
|
|
# define __LIBVIRTD_DISPATCH_H__
|
|
|
|
|
|
# include "libvirtd.h"
|
|
|
|
|
|
int
|
|
remoteDecodeClientMessageHeader (struct qemud_client_message *req);
|
|
int
|
|
remoteEncodeClientMessageHeader (struct qemud_client_message *req);
|
|
|
|
int
|
|
remoteDispatchClientRequest (struct qemud_server *server,
|
|
struct qemud_client *client,
|
|
struct qemud_client_message *req);
|
|
|
|
|
|
void remoteDispatchFormatError (remote_error *rerr,
|
|
const char *fmt, ...)
|
|
ATTRIBUTE_FMT_PRINTF(2, 3);
|
|
|
|
void remoteDispatchAuthError (remote_error *rerr);
|
|
void remoteDispatchGenericError (remote_error *rerr);
|
|
void remoteDispatchOOMError (remote_error *rerr);
|
|
void remoteDispatchConnError (remote_error *rerr,
|
|
virConnectPtr conn);
|
|
|
|
|
|
int
|
|
remoteSerializeReplyError(struct qemud_client *client,
|
|
remote_error *rerr,
|
|
remote_message_header *req);
|
|
int
|
|
remoteSerializeStreamError(struct qemud_client *client,
|
|
remote_error *rerr,
|
|
int proc,
|
|
int serial);
|
|
|
|
|
|
int
|
|
remoteSendStreamData(struct qemud_client *client,
|
|
struct qemud_client_stream *stream,
|
|
const char *data,
|
|
unsigned int len);
|
|
|
|
#endif /* __LIBVIRTD_DISPATCH_H__ */
|