2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-06-24 03:43:48 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2002-01-03 05:22:59 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2011-04-20 09:17:42 -04:00
|
|
|
* Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2002-01-03 05:22:59 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
2004-06-24 03:43:48 -04:00
|
|
|
*
|
2002-01-03 05:22:59 -05:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
2002-01-03 05:22:59 -05:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2002-01-03 05:22:59 -05:00
|
|
|
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2002-01-03 05:22:59 -05:00
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "llist.h"
|
2009-04-21 07:46:16 -04:00
|
|
|
#include "curl_memory.h"
|
2002-01-03 05:22:59 -05:00
|
|
|
|
|
|
|
/* this must be the last include file */
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "memdebug.h"
|
2004-05-11 07:30:23 -04:00
|
|
|
|
2011-06-18 20:27:22 -04:00
|
|
|
/*
|
|
|
|
* @unittest: 1300
|
|
|
|
*/
|
2010-08-08 17:49:49 -04:00
|
|
|
static void
|
|
|
|
llist_init(struct curl_llist *l, curl_llist_dtor dtor)
|
2002-01-03 05:22:59 -05:00
|
|
|
{
|
|
|
|
l->size = 0;
|
|
|
|
l->dtor = dtor;
|
|
|
|
l->head = NULL;
|
|
|
|
l->tail = NULL;
|
|
|
|
}
|
|
|
|
|
2005-01-24 19:06:29 -05:00
|
|
|
struct curl_llist *
|
2002-04-27 09:07:51 -04:00
|
|
|
Curl_llist_alloc(curl_llist_dtor dtor)
|
2002-01-03 05:22:59 -05:00
|
|
|
{
|
2005-01-24 19:06:29 -05:00
|
|
|
struct curl_llist *list;
|
2002-01-03 05:22:59 -05:00
|
|
|
|
2008-09-06 01:29:05 -04:00
|
|
|
list = malloc(sizeof(struct curl_llist));
|
2011-10-11 13:41:30 -04:00
|
|
|
if(!list)
|
2002-01-18 05:30:51 -05:00
|
|
|
return NULL;
|
|
|
|
|
2010-08-08 17:49:49 -04:00
|
|
|
llist_init(list, dtor);
|
2002-01-03 05:22:59 -05:00
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
2004-05-10 04:57:37 -04:00
|
|
|
/*
|
2010-08-10 04:52:26 -04:00
|
|
|
* Curl_llist_insert_next()
|
|
|
|
*
|
|
|
|
* Inserts a new list element after the given one 'e'. If the given existing
|
|
|
|
* entry is NULL and the list already has elements, the new one will be
|
|
|
|
* inserted first in the list.
|
|
|
|
*
|
|
|
|
* Returns: 1 on success and 0 on failure.
|
2011-06-10 08:40:46 -04:00
|
|
|
*
|
|
|
|
* @unittest: 1300
|
2004-05-10 04:57:37 -04:00
|
|
|
*/
|
2002-01-03 05:22:59 -05:00
|
|
|
int
|
2005-01-24 19:06:29 -05:00
|
|
|
Curl_llist_insert_next(struct curl_llist *list, struct curl_llist_element *e,
|
|
|
|
const void *p)
|
2002-01-03 05:22:59 -05:00
|
|
|
{
|
2008-09-06 01:29:05 -04:00
|
|
|
struct curl_llist_element *ne = malloc(sizeof(struct curl_llist_element));
|
2004-05-10 04:57:37 -04:00
|
|
|
if(!ne)
|
|
|
|
return 0;
|
2002-01-03 05:22:59 -05:00
|
|
|
|
|
|
|
ne->ptr = (void *) p;
|
2007-11-07 04:21:35 -05:00
|
|
|
if(list->size == 0) {
|
2002-01-03 05:22:59 -05:00
|
|
|
list->head = ne;
|
|
|
|
list->head->prev = NULL;
|
|
|
|
list->head->next = NULL;
|
|
|
|
list->tail = ne;
|
2004-05-10 04:57:37 -04:00
|
|
|
}
|
|
|
|
else {
|
2010-08-10 04:52:26 -04:00
|
|
|
/* if 'e' is NULL here, we insert the new element first in the list */
|
|
|
|
ne->next = e?e->next:list->head;
|
2002-01-03 05:22:59 -05:00
|
|
|
ne->prev = e;
|
2010-08-10 04:52:26 -04:00
|
|
|
if(!e) {
|
|
|
|
list->head->prev = ne;
|
|
|
|
list->head = ne;
|
|
|
|
}
|
|
|
|
else if(e->next) {
|
2002-01-03 05:22:59 -05:00
|
|
|
e->next->prev = ne;
|
2004-05-10 04:57:37 -04:00
|
|
|
}
|
|
|
|
else {
|
2002-01-03 05:22:59 -05:00
|
|
|
list->tail = ne;
|
|
|
|
}
|
2010-08-10 04:52:26 -04:00
|
|
|
if(e)
|
|
|
|
e->next = ne;
|
2002-01-03 05:22:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
++list->size;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-06-10 08:40:46 -04:00
|
|
|
/*
|
|
|
|
* @unittest: 1300
|
|
|
|
*/
|
2011-06-18 20:27:22 -04:00
|
|
|
int
|
|
|
|
Curl_llist_remove(struct curl_llist *list, struct curl_llist_element *e,
|
|
|
|
void *user)
|
2002-01-03 05:22:59 -05:00
|
|
|
{
|
2007-11-07 04:21:35 -05:00
|
|
|
if(e == NULL || list->size == 0)
|
2002-01-03 05:22:59 -05:00
|
|
|
return 1;
|
|
|
|
|
2007-11-07 04:21:35 -05:00
|
|
|
if(e == list->head) {
|
2002-01-03 05:22:59 -05:00
|
|
|
list->head = e->next;
|
|
|
|
|
2007-11-07 04:21:35 -05:00
|
|
|
if(list->head == NULL)
|
2002-01-03 05:22:59 -05:00
|
|
|
list->tail = NULL;
|
|
|
|
else
|
|
|
|
e->next->prev = NULL;
|
2011-04-20 09:17:42 -04:00
|
|
|
}
|
|
|
|
else {
|
2002-01-03 05:22:59 -05:00
|
|
|
e->prev->next = e->next;
|
2007-11-07 04:21:35 -05:00
|
|
|
if(!e->next)
|
2002-01-03 05:22:59 -05:00
|
|
|
list->tail = e->prev;
|
|
|
|
else
|
|
|
|
e->next->prev = e->prev;
|
|
|
|
}
|
|
|
|
|
|
|
|
list->dtor(user, e->ptr);
|
2008-10-19 16:17:16 -04:00
|
|
|
|
2011-10-07 14:50:57 -04:00
|
|
|
e->ptr = NULL;
|
|
|
|
e->prev = NULL;
|
|
|
|
e->next = NULL;
|
|
|
|
|
2002-01-03 05:22:59 -05:00
|
|
|
free(e);
|
|
|
|
--list->size;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-06-24 03:43:48 -04:00
|
|
|
void
|
2005-01-24 19:06:29 -05:00
|
|
|
Curl_llist_destroy(struct curl_llist *list, void *user)
|
2002-01-03 05:22:59 -05:00
|
|
|
{
|
2003-08-14 11:06:08 -04:00
|
|
|
if(list) {
|
2007-11-07 04:21:35 -05:00
|
|
|
while(list->size > 0)
|
2003-09-05 08:44:35 -04:00
|
|
|
Curl_llist_remove(list, list->tail, user);
|
2002-01-03 05:22:59 -05:00
|
|
|
|
2003-08-14 11:06:08 -04:00
|
|
|
free(list);
|
|
|
|
}
|
2002-01-03 05:22:59 -05:00
|
|
|
}
|
2006-09-07 17:49:20 -04:00
|
|
|
|
|
|
|
size_t
|
|
|
|
Curl_llist_count(struct curl_llist *list)
|
|
|
|
{
|
|
|
|
return list->size;
|
|
|
|
}
|
2008-01-16 07:24:00 -05:00
|
|
|
|
2011-06-18 20:27:22 -04:00
|
|
|
/*
|
|
|
|
* @unittest: 1300
|
|
|
|
*/
|
2008-01-16 07:24:00 -05:00
|
|
|
int Curl_llist_move(struct curl_llist *list, struct curl_llist_element *e,
|
2011-04-20 09:17:42 -04:00
|
|
|
struct curl_llist *to_list,
|
|
|
|
struct curl_llist_element *to_e)
|
2008-01-16 07:24:00 -05:00
|
|
|
{
|
|
|
|
/* Remove element from list */
|
|
|
|
if(e == NULL || list->size == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if(e == list->head) {
|
|
|
|
list->head = e->next;
|
|
|
|
|
|
|
|
if(list->head == NULL)
|
|
|
|
list->tail = NULL;
|
|
|
|
else
|
|
|
|
e->next->prev = NULL;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
e->prev->next = e->next;
|
|
|
|
if(!e->next)
|
|
|
|
list->tail = e->prev;
|
|
|
|
else
|
|
|
|
e->next->prev = e->prev;
|
|
|
|
}
|
|
|
|
|
|
|
|
--list->size;
|
|
|
|
|
|
|
|
/* Add element to to_list after to_e */
|
|
|
|
if(to_list->size == 0) {
|
|
|
|
to_list->head = e;
|
|
|
|
to_list->head->prev = NULL;
|
|
|
|
to_list->head->next = NULL;
|
|
|
|
to_list->tail = e;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
e->next = to_e->next;
|
|
|
|
e->prev = to_e;
|
|
|
|
if(to_e->next) {
|
|
|
|
to_e->next->prev = e;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
to_list->tail = e;
|
|
|
|
}
|
|
|
|
to_e->next = e;
|
|
|
|
}
|
|
|
|
|
|
|
|
++to_list->size;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|