summaryrefslogtreecommitdiffstats
path: root/branches/1.0/tinySAK/src/tsk_list.h
diff options
context:
space:
mode:
Diffstat (limited to 'branches/1.0/tinySAK/src/tsk_list.h')
-rw-r--r--branches/1.0/tinySAK/src/tsk_list.h135
1 files changed, 0 insertions, 135 deletions
diff --git a/branches/1.0/tinySAK/src/tsk_list.h b/branches/1.0/tinySAK/src/tsk_list.h
deleted file mode 100644
index 9e2c5b8..0000000
--- a/branches/1.0/tinySAK/src/tsk_list.h
+++ /dev/null
@@ -1,135 +0,0 @@
-/*
-* Copyright (C) 2009-2010 Mamadou Diop.
-*
-* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
-*
-* This file is part of Open Source Doubango Framework.
-*
-* DOUBANGO is free software: you can redistribute it and/or modify
-* it under the terms of the GNU General Public License as published by
-* the Free Software Foundation, either version 3 of the License, or
-* (at your option) any later version.
-*
-* DOUBANGO 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 General Public License for more details.
-*
-* You should have received a copy of the GNU General Public License
-* along with DOUBANGO.
-*
-*/
-
-/**@file tsk_list.h
- * @brief Linked list. For more information about linked list you can visit http://en.wikipedia.org/wiki/Linked_list.
- *
- * @author Mamadou Diop <diopmamadou(at)doubango.org>
- *
- * @date Created: Sat Nov 8 16:54:58 2009 mdiop
- */
-#ifndef _TINYSAK_LIST_H_
-#define _TINYSAK_LIST_H_
-
-#include "tinysak_config.h"
-#include "tsk_mutex.h"
-#include "tsk_object.h"
-
-TSK_BEGIN_DECLS
-
-/**@ingroup tsk_list_group
-* Check if the the linked list is empty or not.
-* This function will fail if the list is NULL.
-*/
-#define TSK_LIST_IS_EMPTY(self) ((self) ? (!(self)->head) : tsk_true)
-
-#define TSK_LIST_IS_FIRST(self, item) ((self) ? ((self)->head == item) : tsk_false)
-#define TSK_LIST_IS_LAST(self, item) ((self) ? ((self)->tail == item) : tsk_false)
-
-#define TSK_LIST_FIRST_DATA(self) (((self) && (self)->head) ? (self)->head->data : tsk_null)
-
-/**@ingroup tsk_list_group
-* Item for linked list.
-*/
-typedef struct tsk_list_item_s
-{
- TSK_DECLARE_OBJECT;
- void* data; /**< Opaque data. */
- struct tsk_list_item_s* next; /**< Next item. */
-}
-tsk_list_item_t;
-
-/**@ingroup tsk_list_group
-* Linked list.
-*/
-typedef struct tsk_list_s
-{
- TSK_DECLARE_OBJECT;
-
- tsk_list_item_t* head; /**< The head of the linked list. */
- tsk_list_item_t* tail; /**< The tail of the linked list. */
- tsk_mutex_handle_t* mutex; /**< on-demand mutex. */
-}
-tsk_list_t;
-
-/**@ingroup tsk_list_group
-* Function predicate used to match an item.
-* @param item The current item to match.
-* @param data Arbitrary data holding the object to compare.
-* @retval 0 if match and <0 if first<second and >0 otherwise
-*/
-typedef int (*tsk_list_func_predicate)(const tsk_list_item_t* item, const void* data);
-
-
-/**@ingroup tsk_list_group
-* Loop through the linked list.
-* @param item The current item.
-* @param list Pointer to the list for which we want to get items.
-*
-*/
-#define tsk_list_foreach(item, list) for(item = list ? list->head : tsk_null; item; item = item->next)
-
-TINYSAK_API tsk_list_t* tsk_list_create();
-TINYSAK_API tsk_list_item_t* tsk_list_item_create();
-
-TINYSAK_API int tsk_list_lock(tsk_list_t* list);
-TINYSAK_API int tsk_list_unlock(tsk_list_t* list);
-
-TINYSAK_API void tsk_list_remove_item(tsk_list_t* list, tsk_list_item_t* item);
-TINYSAK_API tsk_list_item_t* tsk_list_pop_item_by_data(tsk_list_t* list, const tsk_object_t * tskobj);
-TINYSAK_API void tsk_list_remove_item_by_data(tsk_list_t* list, const tsk_object_t * tskobj);
-TINYSAK_API void tsk_list_remove_item_by_pred(tsk_list_t* list, tsk_list_func_predicate predicate, const void * data);
-TINYSAK_API tsk_list_item_t* tsk_list_pop_item_by_pred(tsk_list_t* list, tsk_list_func_predicate predicate, const void * data);
-TINYSAK_API void tsk_list_clear_items(tsk_list_t* list);
-
-TINYSAK_API tsk_list_item_t* tsk_list_pop_first_item(tsk_list_t* list);
-TINYSAK_API void tsk_list_push_item(tsk_list_t* list, tsk_list_item_t** item, tsk_bool_t back);
-#define tsk_list_push_back_item(list, item) tsk_list_push_item(list, item, tsk_true)
-#define tsk_list_push_front_item(list, item) tsk_list_push_item(list, item, tsk_false)
-TINYSAK_API void tsk_list_push_filtered_item(tsk_list_t* list, tsk_list_item_t** item, tsk_bool_t ascending);
-#define tsk_list_push_ascending_item(list, item) tsk_list_pushfiltered_item(list, item, tsk_true)
-#define tsk_list_push_descending_item(list, item) tsk_list_pushfiltered_item(list, item, tsk_false)
-
-TINYSAK_API int tsk_list_push_list(tsk_list_t* destination, const tsk_list_t* source, tsk_bool_t back);
-#define tsk_list_pushback_list(destination, source) tsk_list_push_list(destination, source, tsk_true)
-#define tsk_list_pushfront_list(destination, source) tsk_list_push_list(destination, source, tsk_false)
-
-TINYSAK_API int tsk_list_push_data(tsk_list_t* list, void** data, tsk_bool_t back);
-#define tsk_list_push_back_data(list, data) tsk_list_push_data(list, data, tsk_true)
-#define tsk_list_push_front_data(list, data) tsk_list_push_data(list, data, tsk_false)
-TINYSAK_API int tsk_list_push_filtered_data(tsk_list_t* list, void** data, tsk_bool_t ascending);
-#define tsk_list_push_ascending_data(list, data) tsk_list_push_filtered_data(list, data, tsk_true)
-#define tsk_list_push_descending_data(list, data) tsk_list_push_filtered_data(list, data, tsk_false)
-
-TINYSAK_API const tsk_list_item_t* tsk_list_find_item_by_data(const tsk_list_t* list, const tsk_object_t * tskobj);
-TINYSAK_API const tsk_list_item_t* tsk_list_find_item_by_pred(const tsk_list_t* list, tsk_list_func_predicate predicate, const void* data);
-TINYSAK_API const tsk_object_t* tsk_list_find_object_by_pred(const tsk_list_t* list, tsk_list_func_predicate predicate, const void* data);
-TINYSAK_API tsk_size_t tsk_list_count(const tsk_list_t* list, tsk_list_func_predicate predicate, const void* data);
-
-TINYSAK_GEXTERN const tsk_object_def_t *tsk_list_def_t;
-TINYSAK_GEXTERN const tsk_object_def_t *tsk_list_item_def_t;
-
-
-TSK_END_DECLS
-
-#endif /* _TINYSAK_LIST_H_ */
-
OpenPOWER on IntegriCloud