2013-11-26 14:10:15 +00:00
|
|
|
/*
|
|
|
|
* object_event.h: object event queue processing helpers
|
|
|
|
*
|
2014-01-02 14:16:49 +00:00
|
|
|
* Copyright (C) 2012-2014 Red Hat, Inc.
|
2013-11-26 14:10:15 +00:00
|
|
|
* Copyright (C) 2008 VirtualIron
|
|
|
|
* Copyright (C) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
|
|
*
|
|
|
|
* 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, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-06-07 20:20:21 +00:00
|
|
|
#pragma once
|
2013-11-26 14:10:15 +00:00
|
|
|
|
2019-06-07 20:20:21 +00:00
|
|
|
#include "internal.h"
|
2018-12-13 13:32:06 +00:00
|
|
|
|
2019-06-07 20:20:21 +00:00
|
|
|
#include "virobject.h"
|
2018-12-13 13:32:06 +00:00
|
|
|
|
2013-11-26 14:10:15 +00:00
|
|
|
/**
|
|
|
|
* Dispatching domain events that come in while
|
|
|
|
* in a call / response rpc
|
|
|
|
*/
|
|
|
|
typedef struct _virObjectEvent virObjectEvent;
|
|
|
|
typedef virObjectEvent *virObjectEventPtr;
|
|
|
|
|
|
|
|
typedef struct _virObjectEventState virObjectEventState;
|
|
|
|
typedef virObjectEventState *virObjectEventStatePtr;
|
|
|
|
|
|
|
|
|
|
|
|
virObjectEventStatePtr
|
|
|
|
virObjectEventStateNew(void);
|
|
|
|
|
2014-01-02 14:16:49 +00:00
|
|
|
/**
|
2013-11-26 14:10:15 +00:00
|
|
|
* virConnectObjectEventGenericCallback:
|
|
|
|
* @conn: the connection pointer
|
|
|
|
* @obj: the object pointer
|
|
|
|
* @opaque: application specified data
|
|
|
|
*
|
|
|
|
* A generic object event callback handler. Specific events usually
|
|
|
|
* have a customization with extra parameters
|
|
|
|
*/
|
|
|
|
typedef void (*virConnectObjectEventGenericCallback)(virConnectPtr conn,
|
|
|
|
void *obj,
|
|
|
|
void *opaque);
|
|
|
|
|
2019-06-07 20:20:21 +00:00
|
|
|
#define VIR_OBJECT_EVENT_CALLBACK(cb) \
|
2014-01-02 14:16:49 +00:00
|
|
|
((virConnectObjectEventGenericCallback)(cb))
|
2013-11-26 14:10:15 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
virObjectEventStateQueue(virObjectEventStatePtr state,
|
|
|
|
virObjectEventPtr event)
|
2018-06-15 19:25:59 +00:00
|
|
|
ATTRIBUTE_NONNULL(1);
|
2014-01-06 12:32:55 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
virObjectEventStateQueueRemote(virObjectEventStatePtr state,
|
|
|
|
virObjectEventPtr event,
|
|
|
|
int remoteID)
|
2018-06-15 19:25:59 +00:00
|
|
|
ATTRIBUTE_NONNULL(1);
|
2014-01-06 12:32:55 +00:00
|
|
|
|
2013-11-26 14:10:15 +00:00
|
|
|
int
|
|
|
|
virObjectEventStateDeregisterID(virConnectPtr conn,
|
|
|
|
virObjectEventStatePtr state,
|
2017-06-14 11:32:15 +00:00
|
|
|
int callbackID,
|
|
|
|
bool doFreeCb)
|
2013-11-26 14:10:15 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
2014-01-06 12:32:55 +00:00
|
|
|
|
2013-11-26 14:10:15 +00:00
|
|
|
int
|
|
|
|
virObjectEventStateEventID(virConnectPtr conn,
|
|
|
|
virObjectEventStatePtr state,
|
2014-01-06 12:32:55 +00:00
|
|
|
int callbackID,
|
|
|
|
int *remoteID)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
|
|
|
|
|
|
|
void
|
|
|
|
virObjectEventStateSetRemote(virConnectPtr conn,
|
|
|
|
virObjectEventStatePtr state,
|
|
|
|
int callbackID,
|
|
|
|
int remoteID)
|
2013-11-26 14:10:15 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|