| 
									
										
										
										
											2009-10-07 13:41:48 -03:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2010-05-12 16:34:42 -03:00
										 |  |  |  * QList Module | 
					
						
							| 
									
										
										
										
											2009-10-07 13:41:48 -03:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2009 Red Hat Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Authors: | 
					
						
							|  |  |  |  *  Luiz Capitulino <lcapitulino@redhat.com> | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-05-12 16:34:42 -03:00
										 |  |  |  * This work is licensed under the terms of the GNU LGPL, version 2.1 or later. | 
					
						
							|  |  |  |  * See the COPYING.LIB file in the top-level directory. | 
					
						
							| 
									
										
										
										
											2009-10-07 13:41:48 -03:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-05-12 16:34:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-29 17:50:01 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-01 12:18:36 +01:00
										 |  |  | #include "qapi/qmp/qbool.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:19:43 +01:00
										 |  |  | #include "qapi/qmp/qlist.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-01 12:18:36 +01:00
										 |  |  | #include "qapi/qmp/qnull.h"
 | 
					
						
							|  |  |  | #include "qapi/qmp/qnum.h"
 | 
					
						
							|  |  |  | #include "qapi/qmp/qstring.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:20:00 +01:00
										 |  |  | #include "qemu/queue.h"
 | 
					
						
							| 
									
										
										
										
											2020-12-11 18:11:40 +01:00
										 |  |  | #include "qobject-internal.h"
 | 
					
						
							| 
									
										
										
										
											2009-10-07 13:41:48 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * qlist_new(): Create a new QList | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Return strong reference. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | QList *qlist_new(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QList *qlist; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-20 22:09:37 -05:00
										 |  |  |     qlist = g_malloc(sizeof(*qlist)); | 
					
						
							| 
									
										
										
										
											2015-12-01 22:20:45 -07:00
										 |  |  |     qobject_init(QOBJECT(qlist), QTYPE_QLIST); | 
					
						
							| 
									
										
										
										
											2009-10-07 13:41:48 -03:00
										 |  |  |     QTAILQ_INIT(&qlist->head); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return qlist; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-11 10:48:51 -06:00
										 |  |  | QList *qlist_copy(QList *src) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QList *dst = qlist_new(); | 
					
						
							| 
									
										
										
										
											2020-04-15 10:30:46 +02:00
										 |  |  |     QListEntry *entry; | 
					
						
							|  |  |  |     QObject *elt; | 
					
						
							| 
									
										
										
										
											2009-11-11 10:48:51 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-15 10:30:46 +02:00
										 |  |  |     QLIST_FOREACH_ENTRY(src, entry) { | 
					
						
							|  |  |  |         elt = qlist_entry_obj(entry); | 
					
						
							|  |  |  |         qobject_ref(elt); | 
					
						
							|  |  |  |         qlist_append_obj(dst, elt); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-11-11 10:48:51 -06:00
										 |  |  |     return dst; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-07 13:41:48 -03:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * qlist_append_obj(): Append an QObject into QList | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * NOTE: ownership of 'value' is transferred to the QList | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | void qlist_append_obj(QList *qlist, QObject *value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QListEntry *entry; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-20 22:09:37 -05:00
										 |  |  |     entry = g_malloc(sizeof(*entry)); | 
					
						
							| 
									
										
										
										
											2009-10-07 13:41:48 -03:00
										 |  |  |     entry->value = value; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     QTAILQ_INSERT_TAIL(&qlist->head, entry, next); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-01 12:18:36 +01:00
										 |  |  | void qlist_append_int(QList *qlist, int64_t value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     qlist_append(qlist, qnum_from_int(value)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void qlist_append_bool(QList *qlist, bool value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     qlist_append(qlist, qbool_from_bool(value)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void qlist_append_str(QList *qlist, const char *value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     qlist_append(qlist, qstring_from_str(value)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void qlist_append_null(QList *qlist) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     qlist_append(qlist, qnull()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-11 10:48:51 -06:00
										 |  |  | QObject *qlist_pop(QList *qlist) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QListEntry *entry; | 
					
						
							|  |  |  |     QObject *ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (qlist == NULL || QTAILQ_EMPTY(&qlist->head)) { | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     entry = QTAILQ_FIRST(&qlist->head); | 
					
						
							|  |  |  |     QTAILQ_REMOVE(&qlist->head, entry, next); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = entry->value; | 
					
						
							| 
									
										
										
										
											2011-08-20 22:09:37 -05:00
										 |  |  |     g_free(entry); | 
					
						
							| 
									
										
										
										
											2009-11-11 10:48:51 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QObject *qlist_peek(QList *qlist) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QListEntry *entry; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (qlist == NULL || QTAILQ_EMPTY(&qlist->head)) { | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     entry = QTAILQ_FIRST(&qlist->head); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-13 18:57:58 -03:00
										 |  |  |     return entry->value; | 
					
						
							| 
									
										
										
										
											2009-11-11 10:48:51 -06:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int qlist_empty(const QList *qlist) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return QTAILQ_EMPTY(&qlist->head); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-15 13:45:42 -05:00
										 |  |  | size_t qlist_size(const QList *qlist) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     size_t count = 0; | 
					
						
							| 
									
										
										
										
											2020-04-15 10:30:46 +02:00
										 |  |  |     QListEntry *entry; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     QLIST_FOREACH_ENTRY(qlist, entry) { | 
					
						
							|  |  |  |         count++; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2012-08-15 13:45:42 -05:00
										 |  |  |     return count; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-14 19:01:25 +01:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * qlist_is_equal(): Test whether the two QLists are equal | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * In order to be considered equal, the respective two objects at each | 
					
						
							|  |  |  |  * index of the two lists have to compare equal (regarding | 
					
						
							|  |  |  |  * qobject_is_equal()), and both lists have to have the same number of | 
					
						
							|  |  |  |  * elements. | 
					
						
							|  |  |  |  * That means both lists have to contain equal objects in equal order. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | bool qlist_is_equal(const QObject *x, const QObject *y) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-02-24 16:40:29 +01:00
										 |  |  |     const QList *list_x = qobject_to(QList, x); | 
					
						
							|  |  |  |     const QList *list_y = qobject_to(QList, y); | 
					
						
							| 
									
										
										
										
											2017-11-14 19:01:25 +01:00
										 |  |  |     const QListEntry *entry_x, *entry_y; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     entry_x = qlist_first(list_x); | 
					
						
							|  |  |  |     entry_y = qlist_first(list_y); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (entry_x && entry_y) { | 
					
						
							|  |  |  |         if (!qobject_is_equal(qlist_entry_obj(entry_x), | 
					
						
							|  |  |  |                               qlist_entry_obj(entry_y))) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         entry_x = qlist_next(entry_x); | 
					
						
							|  |  |  |         entry_y = qlist_next(entry_y); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return !entry_x && !entry_y; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-07 13:41:48 -03:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * qlist_destroy_obj(): Free all the memory allocated by a QList | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2015-12-01 22:20:45 -07:00
										 |  |  | void qlist_destroy_obj(QObject *obj) | 
					
						
							| 
									
										
										
										
											2009-10-07 13:41:48 -03:00
										 |  |  | { | 
					
						
							|  |  |  |     QList *qlist; | 
					
						
							|  |  |  |     QListEntry *entry, *next_entry; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert(obj != NULL); | 
					
						
							| 
									
										
										
										
											2018-02-24 16:40:29 +01:00
										 |  |  |     qlist = qobject_to(QList, obj); | 
					
						
							| 
									
										
										
										
											2009-10-07 13:41:48 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  |     QTAILQ_FOREACH_SAFE(entry, &qlist->head, next, next_entry) { | 
					
						
							|  |  |  |         QTAILQ_REMOVE(&qlist->head, entry, next); | 
					
						
							| 
									
										
										
										
											2018-04-19 17:01:43 +02:00
										 |  |  |         qobject_unref(entry->value); | 
					
						
							| 
									
										
										
										
											2011-08-20 22:09:37 -05:00
										 |  |  |         g_free(entry); | 
					
						
							| 
									
										
										
										
											2009-10-07 13:41:48 -03:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-20 22:09:37 -05:00
										 |  |  |     g_free(qlist); | 
					
						
							| 
									
										
										
										
											2009-10-07 13:41:48 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-03-23 19:57:20 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | void qlist_unref(QList *q) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     qobject_unref(q); | 
					
						
							|  |  |  | } |