4 * Copyright (C) 2009 Red Hat Inc.
7 * Luiz Capitulino <lcapitulino@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
14 #include "qemu-queue.h"
15 #include "qemu-common.h"
17 static void qlist_destroy_obj(QObject
*obj
);
19 static const QType qlist_type
= {
21 .destroy
= qlist_destroy_obj
,
25 * qlist_new(): Create a new QList
27 * Return strong reference.
29 QList
*qlist_new(void)
33 qlist
= qemu_malloc(sizeof(*qlist
));
34 QTAILQ_INIT(&qlist
->head
);
35 QOBJECT_INIT(qlist
, &qlist_type
);
40 static void qlist_copy_elem(QObject
*obj
, void *opaque
)
45 qlist_append_obj(dst
, obj
);
48 QList
*qlist_copy(QList
*src
)
50 QList
*dst
= qlist_new();
52 qlist_iter(src
, qlist_copy_elem
, dst
);
58 * qlist_append_obj(): Append an QObject into QList
60 * NOTE: ownership of 'value' is transferred to the QList
62 void qlist_append_obj(QList
*qlist
, QObject
*value
)
66 entry
= qemu_malloc(sizeof(*entry
));
69 QTAILQ_INSERT_TAIL(&qlist
->head
, entry
, next
);
73 * qlist_iter(): Iterate over all the list's stored values.
75 * This function allows the user to provide an iterator, which will be
76 * called for each stored value in the list.
78 void qlist_iter(const QList
*qlist
,
79 void (*iter
)(QObject
*obj
, void *opaque
), void *opaque
)
83 QTAILQ_FOREACH(entry
, &qlist
->head
, next
)
84 iter(entry
->value
, opaque
);
87 QObject
*qlist_pop(QList
*qlist
)
92 if (qlist
== NULL
|| QTAILQ_EMPTY(&qlist
->head
)) {
96 entry
= QTAILQ_FIRST(&qlist
->head
);
97 QTAILQ_REMOVE(&qlist
->head
, entry
, next
);
105 QObject
*qlist_peek(QList
*qlist
)
110 if (qlist
== NULL
|| QTAILQ_EMPTY(&qlist
->head
)) {
114 entry
= QTAILQ_FIRST(&qlist
->head
);
121 int qlist_empty(const QList
*qlist
)
123 return QTAILQ_EMPTY(&qlist
->head
);
127 * qobject_to_qlist(): Convert a QObject into a QList
129 QList
*qobject_to_qlist(const QObject
*obj
)
131 if (qobject_type(obj
) != QTYPE_QLIST
) {
135 return container_of(obj
, QList
, base
);
139 * qlist_destroy_obj(): Free all the memory allocated by a QList
141 static void qlist_destroy_obj(QObject
*obj
)
144 QListEntry
*entry
, *next_entry
;
147 qlist
= qobject_to_qlist(obj
);
149 QTAILQ_FOREACH_SAFE(entry
, &qlist
->head
, next
, next_entry
) {
150 QTAILQ_REMOVE(&qlist
->head
, entry
, next
);
151 qobject_decref(entry
->value
);