2009-10-07 18:41:48 +02:00
|
|
|
/*
|
|
|
|
* QList data type header.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Red Hat Inc.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Luiz Capitulino <lcapitulino@redhat.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
#ifndef QLIST_H
|
|
|
|
#define QLIST_H
|
|
|
|
|
|
|
|
#include "qobject.h"
|
|
|
|
#include "qemu-queue.h"
|
|
|
|
#include "qemu-common.h"
|
|
|
|
|
|
|
|
typedef struct QListEntry {
|
|
|
|
QObject *value;
|
|
|
|
QTAILQ_ENTRY(QListEntry) next;
|
|
|
|
} QListEntry;
|
|
|
|
|
|
|
|
typedef struct QList {
|
|
|
|
QObject_HEAD;
|
|
|
|
QTAILQ_HEAD(,QListEntry) head;
|
|
|
|
} QList;
|
|
|
|
|
|
|
|
#define qlist_append(qlist, obj) \
|
|
|
|
qlist_append_obj(qlist, QOBJECT(obj))
|
|
|
|
|
|
|
|
QList *qlist_new(void);
|
2009-11-11 17:48:51 +01:00
|
|
|
QList *qlist_copy(QList *src);
|
2009-10-07 18:41:48 +02:00
|
|
|
void qlist_append_obj(QList *qlist, QObject *obj);
|
|
|
|
void qlist_iter(const QList *qlist,
|
|
|
|
void (*iter)(QObject *obj, void *opaque), void *opaque);
|
2009-11-11 17:48:51 +01:00
|
|
|
QObject *qlist_pop(QList *qlist);
|
|
|
|
QObject *qlist_peek(QList *qlist);
|
|
|
|
int qlist_empty(const QList *qlist);
|
2009-10-07 18:41:48 +02:00
|
|
|
QList *qobject_to_qlist(const QObject *obj);
|
|
|
|
|
|
|
|
#endif /* QLIST_H */
|