]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/libopensrf/osrf_list.c
Added some comments, tinkered with white space;
[OpenSRF.git] / src / libopensrf / osrf_list.c
1 /**
2         @file osrf_list.c
3         @brief Implementation of osrfList, sort of like a vector class.
4 */
5
6 #include <opensrf/osrf_list.h>
7 /** @brief The initial size of the array when none is specified */
8 #define OSRF_LIST_DEFAULT_SIZE 48 /* most opensrf lists are small... */
9 /** @brief How many slots to add at a time when the array grows */
10 #define OSRF_LIST_INC_SIZE 256
11 //#define OSRF_LIST_MAX_SIZE 10240
12
13 /**
14         @brief  Create a new osrfList with OSRF_LIST_DEFAULT_SIZE slots.
15         @return A pointer to the new osrfList.
16
17         The calling code is responsible for freeing the osrfList by calling osrfListFree().
18 */
19 osrfList* osrfNewList() {
20         return osrfNewListSize( OSRF_LIST_DEFAULT_SIZE );
21 }
22
23 /**
24         @brief Create a new osrfList with a specified number of slots.
25         @param size How many pointers to store initially.
26         @return A pointer to the new osrfList.
27
28         The calling code is responsible for freeing the osrfList by calling osrfListFree().
29 */
30 osrfList* osrfNewListSize( unsigned int size ) {
31         osrfList* list;
32         OSRF_MALLOC(list, sizeof(osrfList));
33         list->size = 0;
34         list->freeItem = NULL;
35         if( size <= 0 ) size = 16;
36         list->arrsize = size;
37         OSRF_MALLOC( list->arrlist, list->arrsize * sizeof(void*) );
38
39         // Nullify all pointers in the array
40
41         int i;
42         for( i = 0; i < list->arrsize; ++i )
43                 list->arrlist[ i ] = NULL;
44
45         return list;
46 }
47
48
49 /**
50         @brief Add a pointer to the end of the array.
51         @param list A pointer to the osrfList
52         @param item A pointer to be added to the list.
53         @return Zero if successful, or -1 if the list parameter is NULL.
54
55         The item pointer is stored one position past the last slot that might be in use.  The calling
56         code should, in general, make no assumptions about where that position is.  See the discussion
57         of osrfListGetCount() for the dirty details.
58 */
59 int osrfListPush( osrfList* list, void* item ) {
60         if(!(list)) return -1;
61         osrfListSet( list, item, list->size );
62         return 0;
63 }
64
65 /**
66         @brief Store a pointer in the first unoccupied slot.
67         @param list A pointer to the osrfList.
68         @param item The pointer to be stored.
69         @return If successful, the number of slots currently in use, or -1 if either of the
70                 parameters is NULL.
71
72         Find the lowest-numbered position holding a NULL and overwrite it with the specified
73         item pointer.
74
75         The meaning of the return value (other than -1) is fuzzy and probably not useful,
76         because some of the slots counted as "in use" may in fact hold NULLs.
77 */
78 int osrfListPushFirst( osrfList* list, void* item ) {
79         if(!(list && item)) return -1;
80         int i;
81         for( i = 0; i < list->size; i++ )
82                 if(!list->arrlist[i]) break;
83         osrfListSet( list, item, i );
84         return list->size;
85 }
86
87 /**
88         @brief Store a pointer at a specified position in an osrfList.
89         @param list A pointer to the osrfList.
90         @param item The pointer to be stored.
91         @param position Where to store it (a zero-based subscript).
92         @return A pointer to the previous occupant of the specified slot, if any, or NULL if
93                 it was unoccupied, or if we have freed the occupant.
94
95         If the pointer previously stored in the specified slot is not NULL, then the behavior
96         depends on whether the calling code has provided a callback function for freeing stored
97         items.  If there is such a callback function, we call it for the previously stored
98         pointer, and return NULL.  Otherwise we return the previously stored pointer, so that
99         the calling code can free it if it needs to.
100
101         If the specified position is beyond the physical bounds of the array, we replace the
102         existing array with one that's big enough.  This replacement is transparent to the
103         calling code.
104 */
105 void* osrfListSet( osrfList* list, void* item, unsigned int position ) {
106         if(!list || position < 0) return NULL;
107
108         int newsize = list->arrsize;
109
110         while( position >= newsize )
111                 newsize += OSRF_LIST_INC_SIZE;
112
113         if( newsize > list->arrsize ) { /* expand the list if necessary */
114                 void** newarr;
115                 OSRF_MALLOC(newarr, newsize * sizeof(void*));
116
117                 // Copy the old pointers, and nullify the new ones
118
119                 int i;
120                 for( i = 0; i < list->arrsize; i++ )
121                         newarr[i] = list->arrlist[i];
122                 for( ; i < newsize; i++ )
123                         newarr[i] = NULL;
124                 free(list->arrlist);
125                 list->arrlist = newarr;
126                 list->arrsize = newsize;
127         }
128
129         void* olditem = osrfListRemove( list, position );
130         list->arrlist[position] = item;
131         if( list->size <= position ) list->size = position + 1;
132         return olditem;
133 }
134
135
136 /**
137         @brief Fetch the pointer stored at a specified position.
138         @param list A pointer to an osrfList.
139         @param position A zero-based index specifying which item to fetch.
140         @return The pointer stored at the specified position, if any, or NULL.
141
142         The contents of the osrfList are unchanged.
143
144         If either parameter is invalid, the return value is NULL.
145 */
146 void* osrfListGetIndex( const osrfList* list, unsigned int position ) {
147         if(!list || position >= list->size || position < 0) return NULL;
148         return list->arrlist[position];
149 }
150
151 /**
152         @brief Free an osrfList, and, optionally, everything in it.
153         @param list A pointer to the osrfList to be freed.
154
155         If the calling code has specified a function for freeing items, it is called for every
156         non-NULL pointer in the array.
157 */
158 void osrfListFree( osrfList* list ) {
159         if(!list) return;
160
161         if( list->freeItem ) {
162                 int i; void* val;
163                 for( i = 0; i < list->size; i++ ) {
164                         if( (val = list->arrlist[i]) )
165                                 list->freeItem(val);
166                 }
167         }
168
169         free(list->arrlist);
170         free(list);
171 }
172
173 /**
174         @brief Make an osrfList empty.
175         @param list Pointer to the osrfList to be cleared.
176
177         Delete every item in the list.  If a callback function is defined for freeing the items,
178         call it for every item.
179 */
180 void osrfListClear( osrfList* list ) {
181         if(!list) return;
182
183         unsigned int i;
184         for( i = 0; i < list->size; ++i ) {
185                 if( list->freeItem && list->arrlist[ i ] )
186                         list->freeItem( list->arrlist[ i ] );
187                 list->arrlist[ i ] = NULL;
188         }
189
190         list->size = 0;
191 }
192
193 /**
194         @brief Remove the pointer from a specified position.
195         @param list A pointer to the osrfList.
196         @param position A zero-based index identifying the pointer to be removed.
197         @return A copy of the pointer removed, or NULL if the item was freed.
198
199         Returns NULL if either parameter is invalid.  Otherwise:
200
201         If a callback function has been installed for freeing the item to which the pointer
202         points, it is called, and osrfListRemove returns NULL.  Otherwise it returns the pointer
203         at the specified position in the array.  In either case it overwrites the pointer in
204         the array with NULL.
205
206         Note that other positions in the array are not affected; i.e. osrfListRemove does NOT
207         shift other pointers down to fill in the hole left by the removal.
208 */
209 void* osrfListRemove( osrfList* list, unsigned int position ) {
210         if(!list || position >= list->size || position < 0) return NULL;
211
212         void* olditem = list->arrlist[position];
213         list->arrlist[position] = NULL;
214         if( list->freeItem ) {
215                 list->freeItem(olditem);
216                 olditem = NULL;
217         }
218
219         if( position == list->size - 1 ) list->size--;
220         return olditem;
221 }
222
223 /**
224         @brief Remove a pointer from a specified position and return it.
225         @param list A pointer to the osrfList.
226         @param position A zero-based subscript identifying the pointer to be extracted.
227         @return The pointer at the specified position.
228
229         This function is identical to osrfListRemove(), except that it never frees the item
230         to which the pointer points, even if an item-freeing function has been designated.
231 */
232 void* osrfListExtract( osrfList* list, unsigned int position ) {
233         if(!list || position >= list->size || position < 0) return NULL;
234
235         void* olditem = list->arrlist[position];
236         list->arrlist[position] = NULL;
237
238         if( position == list->size - 1 ) list->size--;
239         return olditem;
240 }
241
242
243 /**
244         @brief Find the position where a given pointer is stored.
245         @param list A pointer to the osrfList.
246         @param addr A void pointer possibly stored in the osrfList.
247         @return A zero-based index indicating where the specified pointer resides in the array,
248                 or -1 if no such pointer is found.
249
250         If either parameter is NULL, osrfListFind returns -1.
251
252         If the pointer in question is stored in more than one slot, osrfListFind returns the
253                 lowest applicable index.
254 */
255 int osrfListFind( const osrfList* list, void* addr ) {
256         if(!(list && addr)) return -1;
257         int index;
258         for( index = 0; index < list->size; index++ ) {
259                 if( list->arrlist[index] == addr )
260                         return index;
261         }
262         return -1;
263 }
264
265
266 /**
267         @brief Return the number of slots in use.
268         @param list A pointer to an osrfList.
269         @return The number of slots in use.
270
271         The concept of "in use" is highly counter-intuitive and not, in general, very useful for the
272         calling code.  It is an internal optimization trick: it keeps track of how many slots *might*
273         contain non-NULL pointers, not how many slots *do* contain non_NULL pointers.  It
274         represents how many slots certain operations need to look at before they can safely stop.
275
276         Extreme example: starting with an empty osrfList, call osrfListSet()
277         to add a pointer at slot 15.  If you then call osrfListGetCount(),
278         it returns 16, because you installed the pointer in the sixteenth slot (counting from 1),
279         even though the array contains only one non-NULL pointer.
280
281         Now call osrfListRemove() to remove the pointer you just added. If you then call
282         osrfListGetCount(), it returns 15, even though all the pointers in the array are NULL,
283         because osrfListRemove() simply decremented the counter from its previous value of 16.
284
285         Conclusion: osrfListGetCount() tells you next to nothing about the contents of the array.
286         The value returned reflects not only the current state of the array but also the history
287         and sequence of previous operations.
288
289         If you have changed the contents of the array only by calls to osrfListPush() and/or
290         osrfListPushFirst(), thereby leaving no holes in the array at any time, then
291         osrfListGetCount() will return the answer you expect.  Otherwise all bets are off.
292 */
293 unsigned int osrfListGetCount( const osrfList* list ) {
294         if(!list) return -1;
295         return list->size;
296 }
297
298
299 /**
300         @brief Remove the last pointer from the array.
301         @param list A pointer to an osrfList.
302         @return The pointer so removed, or NULL.
303
304         As with osrfListRemove(), if a callback function has been defined, osrfListPop() calls it
305         for the pointer it removes, and returns NULL.  Otherwise it returns the removed pointer.
306
307         The concept of "last pointer" is non-intuitive.  It reflects, in part, the history and
308         sequence of previous operations on the osrfList.  The pointer removed is the one with
309         subscript n - 1, where n is the value returned by osrfListGetCount().  See the discussion
310         of the latter function for the dirty details.
311
312         In brief, osrfListPop() will behave in the obvious and expected way as long as you never
313         create holes in the array via calls to osrfListSet(), osrfListRemove(), or osrfListExtract().
314 */
315 void* osrfListPop( osrfList* list ) {
316         if(!list) return NULL;
317         return osrfListRemove( list, list->size - 1 );
318 }
319
320
321 /**
322         @brief Create and initialize an osrfListIterator for a given osrfList.
323         @param list A pointer to an osrfList.
324         @return A pointer to the newly constructed osrfListIterator.
325
326         The calling code is responsible for freeing the osrfListIterator by calling
327                 osrfListIteratorFree().
328 */
329 osrfListIterator* osrfNewListIterator( const osrfList* list ) {
330         if(!list) return NULL;
331         osrfListIterator* itr;
332         OSRF_MALLOC(itr, sizeof(osrfListIterator));
333         itr->list = list;
334         itr->current = 0;
335         return itr;
336 }
337
338 /**
339         @brief Advance an osrfListIterator to the next position in the array.
340         @param itr A pointer to the osrfListIterator to be advanced.
341         @return The pointer at the next position in the array; or NULL, if the osrfIterator
342                 is already past the end.
343
344         The first call to osrfListIteratorNext() for a given osrfListIterator returns the first
345         pointer in the array (i.e slot zero, counting from zero).  Subsequent calls return successive
346         pointers from the array.  Once it has returned the last pointer, the iterator responds to
347         subsequent calls by returning NULL, unless it is restored to an initial state by a call to
348         osrfListIteratorReset().
349
350         A return value of NULL does not necessarily indicate that the iterator has reached the end
351         of the array.  Depending on the history and sequence of previous operations, the array may
352         include NULLs that are regarded as part of the array.  See the discussions of osrfListPop()
353         and osrfListGetCount().
354 */
355 void* osrfListIteratorNext( osrfListIterator* itr ) {
356         if(!(itr && itr->list)) return NULL;
357         if(itr->current >= itr->list->size) return NULL;
358         return itr->list->arrlist[itr->current++];
359 }
360
361 /**
362         @brief Free an osrfListIterator.
363         @param itr A pointer to the osrfListIterator to be freed.
364 */
365 void osrfListIteratorFree( osrfListIterator* itr ) {
366         if(!itr) return;
367         free(itr);
368 }
369
370
371 /**
372         @brief Reset an osrfListIterator to the beginning of the associated osrfList.
373         @param itr A pointer to the osrfListIterator to be reset.
374 */
375 void osrfListIteratorReset( osrfListIterator* itr ) {
376         if(!itr) return;
377         itr->current = 0;
378 }
379
380
381 /**
382         @brief Install a default item-freeing callback function (the ANSI standard free() function).
383         @param list A pointer to the osrfList where the callback function will be installed.
384 */
385 void osrfListSetDefaultFree( osrfList* list ) {
386         if(!list) return;
387         list->freeItem = free;
388 }