/* EINA - EFL data type library * Copyright (C) 2002-2008 Carsten Haitzler, Vincent Torri, Jorge Luis Zapata Muga * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; * if not, see . */ #ifndef EINA_LIST_H_ #define EINA_LIST_H_ #include #include "eina_config.h" #include "eina_types.h" #include "eina_iterator.h" #include "eina_accessor.h" #include "eina_magic.h" /** * @addtogroup Eina_Data_Types_Group Data Types * * @{ */ /** * @addtogroup Eina_Containers_Group Containers * * @{ */ /** * @defgroup Eina_List_Group List * * @{ */ /** * @typedef Eina_List * Type for a generic double linked list. */ typedef struct _Eina_List Eina_List; typedef struct _Eina_List_Accounting Eina_List_Accounting; /** * @struct _Eina_List * Type for a generic double linked list. */ struct _Eina_List /** A linked list node */ { void *data; /**< Pointer to list element payload */ Eina_List *next; /**< Next member in the list */ Eina_List *prev; /**< Previous member in the list */ struct _Eina_List_Accounting *accounting; /**< Private list accounting info - don't touch */ EINA_MAGIC }; struct _Eina_List_Accounting { Eina_List *last; unsigned int count; EINA_MAGIC }; EAPI int eina_list_init(void); EAPI int eina_list_shutdown(void); EAPI Eina_List *eina_list_append (Eina_List *list, const void *data) EINA_ARG_NONNULL(2) EINA_WARN_UNUSED_RESULT; EAPI Eina_List *eina_list_prepend (Eina_List *list, const void *data) EINA_ARG_NONNULL(2) EINA_WARN_UNUSED_RESULT; EAPI Eina_List *eina_list_append_relative (Eina_List *list, const void *data, const void *relative) EINA_ARG_NONNULL(2) EINA_WARN_UNUSED_RESULT; EAPI Eina_List *eina_list_append_relative_list (Eina_List *list, const void *data, Eina_List *relative) EINA_ARG_NONNULL(2) EINA_WARN_UNUSED_RESULT; EAPI Eina_List *eina_list_prepend_relative (Eina_List *list, const void *data, const void *relative) EINA_ARG_NONNULL(2) EINA_WARN_UNUSED_RESULT; EAPI Eina_List *eina_list_prepend_relative_list (Eina_List *list, const void *data, Eina_List *relative) EINA_ARG_NONNULL(2) EINA_WARN_UNUSED_RESULT; EAPI Eina_List *eina_list_sorted_insert(Eina_List *list, Eina_Compare_Cb func, const void *data) EINA_ARG_NONNULL(2, 3) EINA_WARN_UNUSED_RESULT; EAPI Eina_List *eina_list_remove (Eina_List *list, const void *data) EINA_ARG_NONNULL(2) EINA_WARN_UNUSED_RESULT; EAPI Eina_List *eina_list_remove_list (Eina_List *list, Eina_List *remove_list) EINA_ARG_NONNULL(2) EINA_WARN_UNUSED_RESULT; EAPI Eina_List *eina_list_promote_list (Eina_List *list, Eina_List *move_list) EINA_ARG_NONNULL(2) EINA_WARN_UNUSED_RESULT; EAPI Eina_List *eina_list_demote_list (Eina_List *list, Eina_List *move_list); EAPI void *eina_list_data_find(const Eina_List *list, const void *data) EINA_PURE EINA_ARG_NONNULL(2) EINA_WARN_UNUSED_RESULT; EAPI Eina_List *eina_list_data_find_list (const Eina_List *list, const void *data) EINA_PURE EINA_ARG_NONNULL(2) EINA_WARN_UNUSED_RESULT; EAPI Eina_List *eina_list_free (Eina_List *list); EAPI void *eina_list_nth(const Eina_List *list, unsigned int n) EINA_PURE EINA_WARN_UNUSED_RESULT; EAPI Eina_List *eina_list_nth_list (const Eina_List *list, unsigned int n) EINA_PURE EINA_WARN_UNUSED_RESULT; EAPI Eina_List *eina_list_reverse (Eina_List *list) EINA_WARN_UNUSED_RESULT; EAPI Eina_List *eina_list_reverse_clone(const Eina_List *list) EINA_WARN_UNUSED_RESULT; EAPI Eina_List *eina_list_clone(const Eina_List *list) EINA_WARN_UNUSED_RESULT; EAPI Eina_List *eina_list_sort (Eina_List *list, unsigned int size, Eina_Compare_Cb func) EINA_ARG_NONNULL(3) EINA_WARN_UNUSED_RESULT; EAPI Eina_List *eina_list_merge (Eina_List *left, Eina_List *right) EINA_WARN_UNUSED_RESULT; EAPI Eina_List *eina_list_sorted_merge(Eina_List *left, Eina_List *right, Eina_Compare_Cb func) EINA_ARG_NONNULL(3) EINA_WARN_UNUSED_RESULT; EAPI Eina_List *eina_list_search_sorted_near_list(const Eina_List *list, Eina_Compare_Cb func, const void *data, int *result_cmp); EAPI Eina_List *eina_list_search_sorted_list(const Eina_List *list, Eina_Compare_Cb func, const void *data); EAPI void *eina_list_search_sorted(const Eina_List *list, Eina_Compare_Cb func, const void *data); EAPI Eina_List *eina_list_search_unsorted_list(const Eina_List *list, Eina_Compare_Cb func, const void *data); EAPI void *eina_list_search_unsorted(const Eina_List *list, Eina_Compare_Cb func, const void *data); static inline Eina_List *eina_list_last (const Eina_List *list) EINA_PURE EINA_WARN_UNUSED_RESULT; static inline Eina_List *eina_list_next (const Eina_List *list) EINA_PURE EINA_WARN_UNUSED_RESULT; static inline Eina_List *eina_list_prev (const Eina_List *list) EINA_PURE EINA_WARN_UNUSED_RESULT; static inline void *eina_list_data_get(const Eina_List *list) EINA_PURE EINA_WARN_UNUSED_RESULT; static inline unsigned int eina_list_count(const Eina_List *list) EINA_PURE; EAPI Eina_Iterator *eina_list_iterator_new(const Eina_List *list) EINA_MALLOC EINA_WARN_UNUSED_RESULT; EAPI Eina_Iterator *eina_list_iterator_reversed_new(const Eina_List *list) EINA_MALLOC EINA_WARN_UNUSED_RESULT; EAPI Eina_Accessor *eina_list_accessor_new(const Eina_List *list) EINA_MALLOC EINA_WARN_UNUSED_RESULT; /** * @def EINA_LIST_FOREACH * @brief Macro to iterate over a list easily. * * @param list The list to iterate over. * @param l A list that is used as loop index. * @param data The data. * * This macro allow the iteration over @p list in an easy way. It * iterates from the first element to the last one. @p data is the * data of each element of the list. @p l is an #Eina_List that is * used as counter. * * This macro can be used for freeing the data of a list, like in * the following example: * * @code * Eina_List *list; * Eina_List *l; * char *data; * * // list is already filled, * // its elements are just duplicated strings, * // EINA_LIST_FOREACH will be used to free those strings * * EINA_LIST_FOREACH(list, l, data) * free(data); * eina_list_free(list); * @endcode * * @note this example is not optimal algorithm to release a list since * it will walk the list twice, but it serves as an example. For * optimized version use EINA_LIST_FREE(). * * @warning do not delete list nodes, specially the current node, * while iterating. If you wish to do so, use * EINA_LIST_FOREACH_SAFE(). */ #define EINA_LIST_FOREACH(list, l, data) for (l = list, data = eina_list_data_get(l); l; l = eina_list_next(l), data = eina_list_data_get(l)) /** * @def EINA_LIST_REVERSE_FOREACH * @brief Macro to iterate over a list easily in the reverse order. * * @param list The list to iterate over. * @param l A list that is used as loop index. * @param data The data. * * This macro allow the reversed iteration over @p list in an easy * way. It iterates from the last element to the first one. @p data is * the data of each element of the list. @p l is an #Eina_List that is * used as counter. * * This macro can be used for freeing the data of a list, like in * the following example: * * @code * Eina_List *list; * Eina_List *l; * char *data; * * // list is already filled, * // its elements are just duplicated strings, * // EINA_LIST_REVERSE_FOREACH will be used to free those strings * * EINA_LIST_REVERSE_FOREACH(list, l, data) * free(data); * eina_list_free(list); * @endcode * * @note this example is not optimal algorithm to release a list since * it will walk the list twice, but it serves as an example. For * optimized version use EINA_LIST_FREE() * * @warning do not delete list nodes, specially the current node, * while iterating. If you wish to do so, use * EINA_LIST_REVERSE_FOREACH_SAFE(). */ #define EINA_LIST_REVERSE_FOREACH(list, l, data) for (l = eina_list_last(list), data = eina_list_data_get(l); l; l = eina_list_prev(l), data = eina_list_data_get(l)) /** * @def EINA_LIST_FOREACH_SAFE * @brief Macro to iterate over a list easily, supporting deletion. * * @param list The list to iterate over. * @param l A list that is used as loop index. * @param l_next A second list that is used as loop next index. * @param data The data. * * This macro allow the iteration over @p list in an easy way. It * iterates from the first element to the last one. @p data is the * data of each element of the list. @p l is an #Eina_List that is * used as counter. * * This is the safe version, which stores the next pointer in @p l_next * before proceeding, so deletion of @b current node is safe. If you wish * to remove anything else, remember to set @p l_next accordingly. * * This macro can be used for freeing list nodes, like in * the following example: * * @code * Eina_List *list; * Eina_List *l; * Eina_List *l_next; * char *data; * * // list is already filled, * // its elements are just duplicated strings, * // EINA_LIST_FOREACH_SAFE will be used to free elements that match "key". * * EINA_LIST_FOREACH_SAFE(list, l, l_next, data) * if (strcmp(data, "key") == 0) { * free(data); * list = eina_list_remove_list(list, l); * } * @endcode */ #define EINA_LIST_FOREACH_SAFE(list, l, l_next, data) for (l = list, l_next = eina_list_next(l), data = eina_list_data_get(l); l; l = l_next, l_next = eina_list_next(l), data = eina_list_data_get(l)) /** * @def EINA_LIST_REVERSE_FOREACH_SAFE * @brief Macro to iterate over a list easily in the reverse order, * supporting deletion. * * @param list The list to iterate over. * @param l A list that is used as loop index. * @param l_prev A second list that is used as loop previous index. * @param data The data. * * This macro allow the reversed iteration over @p list in an easy * way. It iterates from the last element to the first one. @p data is * the data of each element of the list. @p l is an #Eina_List that is * used as counter. * * This is the safe version, which stores the previous pointer in @p * l_prev before proceeding, so deletion of @b current node is * safe. If you wish to remove anything else, remember to set @p * l_prev accordingly. * * This macro can be used for freeing list nodes, like in * the following example: * * @code * Eina_List *list; * Eina_List *l; * Eina_List *l_prev; * char *data; * * // list is already filled, * // its elements are just duplicated strings, * // EINA_LIST_REVERSE_FOREACH_SAFE will be used to free elements that match "key". * * EINA_LIST_REVERSE_FOREACH_SAFE(list, l, l_prev, data) * if (strcmp(data, "key") == 0) { * free(data); * list = eina_list_remove_list(list, l); * } * @endcode */ #define EINA_LIST_REVERSE_FOREACH_SAFE(list, l, l_prev, data) for (l = list, l_prev = eina_list_prev(l), data = eina_list_data_get(l); l; l = l_prev, l_prev = eina_list_prev(l), data = eina_list_data_get(l)) /** * Easy way to free the while list while being able to release its pointed data. * * @code * Eina_List *list; * char *data; * * // list is already filled, * // its elements are just duplicated strings, * * EINA_LIST_FREE(list, data) * free(data); * @endcode * * If you do not need to release node data then use eina_list_free(). * * @see eina_list_free() */ #define EINA_LIST_FREE(list, data) for (data = list ? eina_list_data_get(list) : NULL; list; list = eina_list_remove_list(list, list), data = list ? eina_list_data_get(list) : NULL) #include "eina_inline_list.x" /** * @} */ /** * @} */ /** * @} */ #endif /* EINA_LIST_H_ */