2010-03-09 20:16:14 +01:00
|
|
|
/*
|
|
|
|
* Notifier lists
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2010
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QEMU_NOTIFY_H
|
|
|
|
#define QEMU_NOTIFY_H
|
|
|
|
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/queue.h"
|
2010-03-09 20:16:14 +01:00
|
|
|
|
|
|
|
typedef struct Notifier Notifier;
|
|
|
|
|
|
|
|
struct Notifier
|
|
|
|
{
|
2011-06-20 14:06:26 +02:00
|
|
|
void (*notify)(Notifier *notifier, void *data);
|
2012-01-13 17:34:01 +01:00
|
|
|
QLIST_ENTRY(Notifier) node;
|
2010-03-09 20:16:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct NotifierList
|
|
|
|
{
|
2012-01-13 17:34:01 +01:00
|
|
|
QLIST_HEAD(, Notifier) notifiers;
|
2010-03-09 20:16:14 +01:00
|
|
|
} NotifierList;
|
|
|
|
|
|
|
|
#define NOTIFIER_LIST_INITIALIZER(head) \
|
2012-01-13 17:34:01 +01:00
|
|
|
{ QLIST_HEAD_INITIALIZER((head).notifiers) }
|
2010-03-09 20:16:14 +01:00
|
|
|
|
|
|
|
void notifier_list_init(NotifierList *list);
|
|
|
|
|
|
|
|
void notifier_list_add(NotifierList *list, Notifier *notifier);
|
|
|
|
|
2012-01-13 17:34:01 +01:00
|
|
|
void notifier_remove(Notifier *notifier);
|
2010-03-09 20:16:14 +01:00
|
|
|
|
2011-06-20 14:06:26 +02:00
|
|
|
void notifier_list_notify(NotifierList *list, void *data);
|
2019-09-13 10:21:56 +02:00
|
|
|
|
|
|
|
bool notifier_list_empty(NotifierList *list);
|
2010-03-09 20:16:14 +01:00
|
|
|
|
2013-06-24 17:13:09 +02:00
|
|
|
/* Same as Notifier but allows .notify() to return errors */
|
|
|
|
typedef struct NotifierWithReturn NotifierWithReturn;
|
|
|
|
|
|
|
|
struct NotifierWithReturn {
|
|
|
|
/**
|
|
|
|
* Return 0 on success (next notifier will be invoked), otherwise
|
|
|
|
* notifier_with_return_list_notify() will stop and return the value.
|
|
|
|
*/
|
|
|
|
int (*notify)(NotifierWithReturn *notifier, void *data);
|
|
|
|
QLIST_ENTRY(NotifierWithReturn) node;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct NotifierWithReturnList {
|
|
|
|
QLIST_HEAD(, NotifierWithReturn) notifiers;
|
|
|
|
} NotifierWithReturnList;
|
|
|
|
|
|
|
|
#define NOTIFIER_WITH_RETURN_LIST_INITIALIZER(head) \
|
|
|
|
{ QLIST_HEAD_INITIALIZER((head).notifiers) }
|
|
|
|
|
|
|
|
void notifier_with_return_list_init(NotifierWithReturnList *list);
|
|
|
|
|
|
|
|
void notifier_with_return_list_add(NotifierWithReturnList *list,
|
|
|
|
NotifierWithReturn *notifier);
|
|
|
|
|
|
|
|
void notifier_with_return_remove(NotifierWithReturn *notifier);
|
|
|
|
|
|
|
|
int notifier_with_return_list_notify(NotifierWithReturnList *list,
|
|
|
|
void *data);
|
|
|
|
|
2010-03-09 20:16:14 +01:00
|
|
|
#endif
|