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
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2005-01-24 19:06:29 -05:00
|
|
|
* Copyright (C) 1998 - 2005, 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.
|
|
|
|
*
|
|
|
|
* $Id$
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2002-01-03 05:22:59 -05:00
|
|
|
|
|
|
|
#include "setup.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
2002-02-17 09:55:35 -05:00
|
|
|
#include <stdlib.h>
|
2002-01-03 05:22:59 -05:00
|
|
|
|
|
|
|
#include "llist.h"
|
2004-05-11 07:30:23 -04:00
|
|
|
#include "memory.h"
|
2002-01-03 05:22:59 -05:00
|
|
|
|
|
|
|
/* this must be the last include file */
|
|
|
|
#include "memdebug.h"
|
2004-05-11 07:30:23 -04:00
|
|
|
|
2004-06-24 03:43:48 -04:00
|
|
|
void
|
2005-01-24 19:06:29 -05:00
|
|
|
Curl_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
|
|
|
|
2005-01-24 19:06:29 -05:00
|
|
|
list = (struct curl_llist *)malloc(sizeof(struct curl_llist));
|
2002-01-18 05:30:51 -05:00
|
|
|
if(NULL == list)
|
|
|
|
return NULL;
|
|
|
|
|
2002-04-27 09:07:51 -04:00
|
|
|
Curl_llist_init(list, dtor);
|
2002-01-03 05:22:59 -05:00
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
2004-05-10 04:57:37 -04:00
|
|
|
/*
|
|
|
|
* Curl_llist_insert_next() returns 1 on success and 0 on failure.
|
|
|
|
*/
|
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
|
|
|
{
|
2005-01-24 19:06:29 -05:00
|
|
|
struct curl_llist_element *ne =
|
|
|
|
(struct curl_llist_element *) 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;
|
|
|
|
if (list->size == 0) {
|
|
|
|
list->head = ne;
|
|
|
|
list->head->prev = NULL;
|
|
|
|
list->head->next = NULL;
|
|
|
|
list->tail = ne;
|
2004-05-10 04:57:37 -04:00
|
|
|
}
|
|
|
|
else {
|
2002-01-03 05:22:59 -05:00
|
|
|
ne->next = e->next;
|
|
|
|
ne->prev = e;
|
|
|
|
if (e->next) {
|
|
|
|
e->next->prev = ne;
|
2004-05-10 04:57:37 -04:00
|
|
|
}
|
|
|
|
else {
|
2002-01-03 05:22:59 -05:00
|
|
|
list->tail = ne;
|
|
|
|
}
|
|
|
|
e->next = ne;
|
|
|
|
}
|
|
|
|
|
|
|
|
++list->size;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-06-24 03:43:48 -04:00
|
|
|
int
|
2005-01-24 19:06:29 -05:00
|
|
|
Curl_llist_remove(struct curl_llist *list, struct curl_llist_element *e,
|
|
|
|
void *user)
|
2002-01-03 05:22:59 -05:00
|
|
|
{
|
|
|
|
if (e == NULL || list->size == 0)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
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->dtor(user, e->ptr);
|
|
|
|
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) {
|
|
|
|
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
|
|
|
}
|