tests: Fixes test-io-channel-file by mask only owner file state mask bits
[qemu/ar7.git] / include / qapi / qmp / qlist.h
blob595b7943e1479e90ba3dce32e5d715af638cc04e
1 /*
2 * QList Module
4 * Copyright (C) 2009 Red Hat Inc.
6 * Authors:
7 * Luiz Capitulino <lcapitulino@redhat.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10 * See the COPYING.LIB file in the top-level directory.
13 #ifndef QLIST_H
14 #define QLIST_H
16 #include "qapi/qmp/qobject.h"
17 #include "qemu/queue.h"
19 typedef struct QListEntry {
20 QObject *value;
21 QTAILQ_ENTRY(QListEntry) next;
22 } QListEntry;
24 struct QList {
25 struct QObjectBase_ base;
26 QTAILQ_HEAD(,QListEntry) head;
29 #define qlist_append(qlist, obj) \
30 qlist_append_obj(qlist, QOBJECT(obj))
32 void qlist_append_bool(QList *qlist, bool value);
33 void qlist_append_int(QList *qlist, int64_t value);
34 void qlist_append_null(QList *qlist);
35 void qlist_append_str(QList *qlist, const char *value);
37 #define QLIST_FOREACH_ENTRY(qlist, var) \
38 for ((var) = QTAILQ_FIRST(&(qlist)->head); \
39 (var); \
40 (var) = QTAILQ_NEXT((var), next))
42 static inline QObject *qlist_entry_obj(const QListEntry *entry)
44 return entry->value;
47 QList *qlist_new(void);
48 QList *qlist_copy(QList *src);
49 void qlist_append_obj(QList *qlist, QObject *obj);
50 QObject *qlist_pop(QList *qlist);
51 QObject *qlist_peek(QList *qlist);
52 int qlist_empty(const QList *qlist);
53 size_t qlist_size(const QList *qlist);
54 bool qlist_is_equal(const QObject *x, const QObject *y);
55 void qlist_destroy_obj(QObject *obj);
57 static inline const QListEntry *qlist_first(const QList *qlist)
59 return QTAILQ_FIRST(&qlist->head);
62 static inline const QListEntry *qlist_next(const QListEntry *entry)
64 return QTAILQ_NEXT(entry, next);
67 #endif /* QLIST_H */