blob: f8769c2af84200cc7ee54e73808a643799188cfe [file] [log] [blame]
Kristian Monsen5ab50182010-05-14 18:53:44 +01001/***************************************************************************
2 * _ _ ____ _
3 * Project ___| | | | _ \| |
4 * / __| | | | |_) | |
5 * | (__| |_| | _ <| |___
6 * \___|\___/|_| \_\_____|
7 *
Elliott Hughes82be86d2017-09-20 17:00:17 -07008 * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
Kristian Monsen5ab50182010-05-14 18:53:44 +01009 *
10 * This software is licensed as described in the file COPYING, which
11 * you should have received as part of this distribution. The terms
Alex Deymo8f1a2142016-06-28 14:49:26 -070012 * are also available at https://curl.haxx.se/docs/copyright.html.
Kristian Monsen5ab50182010-05-14 18:53:44 +010013 *
14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
17 *
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
20 *
21 ***************************************************************************/
22
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070023#include "curl_setup.h"
Kristian Monsen5ab50182010-05-14 18:53:44 +010024
Alex Deymo8f1a2142016-06-28 14:49:26 -070025#include <curl/curl.h>
26
Kristian Monsen5ab50182010-05-14 18:53:44 +010027#include "llist.h"
28#include "curl_memory.h"
29
30/* this must be the last include file */
31#include "memdebug.h"
32
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070033/*
34 * @unittest: 1300
35 */
Elliott Hughes82be86d2017-09-20 17:00:17 -070036void
37Curl_llist_init(struct curl_llist *l, curl_llist_dtor dtor)
Kristian Monsen5ab50182010-05-14 18:53:44 +010038{
39 l->size = 0;
40 l->dtor = dtor;
41 l->head = NULL;
42 l->tail = NULL;
43}
44
Kristian Monsen5ab50182010-05-14 18:53:44 +010045/*
Lucas Eckels9bd90e62012-08-06 15:07:02 -070046 * Curl_llist_insert_next()
47 *
48 * Inserts a new list element after the given one 'e'. If the given existing
49 * entry is NULL and the list already has elements, the new one will be
50 * inserted first in the list.
51 *
Elliott Hughes82be86d2017-09-20 17:00:17 -070052 * The 'ne' argument should be a pointer into the object to store.
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070053 *
54 * @unittest: 1300
Kristian Monsen5ab50182010-05-14 18:53:44 +010055 */
Elliott Hughes82be86d2017-09-20 17:00:17 -070056void
Kristian Monsen5ab50182010-05-14 18:53:44 +010057Curl_llist_insert_next(struct curl_llist *list, struct curl_llist_element *e,
Elliott Hughes82be86d2017-09-20 17:00:17 -070058 const void *p,
59 struct curl_llist_element *ne)
Kristian Monsen5ab50182010-05-14 18:53:44 +010060{
Kristian Monsen5ab50182010-05-14 18:53:44 +010061 ne->ptr = (void *) p;
62 if(list->size == 0) {
63 list->head = ne;
64 list->head->prev = NULL;
65 list->head->next = NULL;
66 list->tail = ne;
67 }
68 else {
Lucas Eckels9bd90e62012-08-06 15:07:02 -070069 /* if 'e' is NULL here, we insert the new element first in the list */
70 ne->next = e?e->next:list->head;
Kristian Monsen5ab50182010-05-14 18:53:44 +010071 ne->prev = e;
Lucas Eckels9bd90e62012-08-06 15:07:02 -070072 if(!e) {
73 list->head->prev = ne;
74 list->head = ne;
75 }
76 else if(e->next) {
Kristian Monsen5ab50182010-05-14 18:53:44 +010077 e->next->prev = ne;
78 }
79 else {
80 list->tail = ne;
81 }
Lucas Eckels9bd90e62012-08-06 15:07:02 -070082 if(e)
83 e->next = ne;
Kristian Monsen5ab50182010-05-14 18:53:44 +010084 }
85
86 ++list->size;
Kristian Monsen5ab50182010-05-14 18:53:44 +010087}
88
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070089/*
90 * @unittest: 1300
91 */
Elliott Hughes82be86d2017-09-20 17:00:17 -070092void
Kristian Monsen5ab50182010-05-14 18:53:44 +010093Curl_llist_remove(struct curl_llist *list, struct curl_llist_element *e,
94 void *user)
95{
Elliott Hughes82be86d2017-09-20 17:00:17 -070096 void *ptr;
Kristian Monsen5ab50182010-05-14 18:53:44 +010097 if(e == NULL || list->size == 0)
Elliott Hughes82be86d2017-09-20 17:00:17 -070098 return;
Kristian Monsen5ab50182010-05-14 18:53:44 +010099
100 if(e == list->head) {
101 list->head = e->next;
102
103 if(list->head == NULL)
104 list->tail = NULL;
105 else
106 e->next->prev = NULL;
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700107 }
108 else {
Alex Deymo486467e2017-12-19 19:04:07 +0100109 if(!e->prev)
110 list->head = e->next;
111 else
112 e->prev->next = e->next;
113
Kristian Monsen5ab50182010-05-14 18:53:44 +0100114 if(!e->next)
115 list->tail = e->prev;
116 else
117 e->next->prev = e->prev;
118 }
119
Elliott Hughes82be86d2017-09-20 17:00:17 -0700120 ptr = e->ptr;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100121
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700122 e->ptr = NULL;
123 e->prev = NULL;
124 e->next = NULL;
125
Kristian Monsen5ab50182010-05-14 18:53:44 +0100126 --list->size;
127
Elliott Hughes82be86d2017-09-20 17:00:17 -0700128 /* call the dtor() last for when it actually frees the 'e' memory itself */
129 if(list->dtor)
130 list->dtor(user, ptr);
Kristian Monsen5ab50182010-05-14 18:53:44 +0100131}
132
133void
134Curl_llist_destroy(struct curl_llist *list, void *user)
135{
136 if(list) {
137 while(list->size > 0)
138 Curl_llist_remove(list, list->tail, user);
Kristian Monsen5ab50182010-05-14 18:53:44 +0100139 }
140}
141
142size_t
143Curl_llist_count(struct curl_llist *list)
144{
145 return list->size;
146}
147
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700148/*
149 * @unittest: 1300
150 */
Elliott Hughes82be86d2017-09-20 17:00:17 -0700151void Curl_llist_move(struct curl_llist *list, struct curl_llist_element *e,
152 struct curl_llist *to_list,
153 struct curl_llist_element *to_e)
Kristian Monsen5ab50182010-05-14 18:53:44 +0100154{
155 /* Remove element from list */
156 if(e == NULL || list->size == 0)
Elliott Hughes82be86d2017-09-20 17:00:17 -0700157 return;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100158
159 if(e == list->head) {
160 list->head = e->next;
161
162 if(list->head == NULL)
163 list->tail = NULL;
164 else
165 e->next->prev = NULL;
166 }
167 else {
168 e->prev->next = e->next;
169 if(!e->next)
170 list->tail = e->prev;
171 else
172 e->next->prev = e->prev;
173 }
174
175 --list->size;
176
177 /* Add element to to_list after to_e */
178 if(to_list->size == 0) {
179 to_list->head = e;
180 to_list->head->prev = NULL;
181 to_list->head->next = NULL;
182 to_list->tail = e;
183 }
184 else {
185 e->next = to_e->next;
186 e->prev = to_e;
187 if(to_e->next) {
188 to_e->next->prev = e;
189 }
190 else {
191 to_list->tail = e;
192 }
193 to_e->next = e;
194 }
195
196 ++to_list->size;
Kristian Monsen5ab50182010-05-14 18:53:44 +0100197}