s/malloc/xmalloc/ s/calloc/xcalloc/ s/realloc/realloc/
[oweals/opkg-lede.git] / libopkg / nv_pair_list.c
1 /* nv_pair_list.c - the opkg package management system
2
3    Carl D. Worth
4
5    Copyright (C) 2001 University of Southern California
6
7    This program is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License as
9    published by the Free Software Foundation; either version 2, or (at
10    your option) any later version.
11
12    This program is distributed in the hope that it will be useful, but
13    WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    General Public License for more details.
16 */
17
18 #include "includes.h"
19
20 #include "nv_pair.h"
21 #include "void_list.h"
22 #include "nv_pair_list.h"
23 #include "libbb/libbb.h"
24
25 int nv_pair_list_init(nv_pair_list_t *list)
26 {
27     return void_list_init((void_list_t *) list);
28 }
29
30 void nv_pair_list_deinit(nv_pair_list_t *list)
31 {
32     nv_pair_list_elt_t *pos;
33     nv_pair_t *nv_pair;
34
35     while(!void_list_empty(list)) {
36         pos = nv_pair_list_pop(list);
37         if (!pos)
38             break;
39         nv_pair =  (nv_pair_t *) pos->data;
40         nv_pair_deinit(nv_pair);
41         /* malloced in nv_pair_list_append */
42         free(nv_pair);
43         pos->data = NULL;
44         free(pos);
45     }
46     void_list_deinit((void_list_t *) list);
47 }
48
49 nv_pair_t *nv_pair_list_append(nv_pair_list_t *list, const char *name, const char *value)
50 {
51     int err;
52
53     /* freed in nv_pair_list_deinit */
54     nv_pair_t *nv_pair = xcalloc(1, sizeof(nv_pair_t));
55     nv_pair_init(nv_pair, name, value);
56
57     err = void_list_append((void_list_t *) list, nv_pair);
58     if (err) {
59         return NULL;
60     }
61
62     return nv_pair;
63 }
64
65 int nv_pair_list_push(nv_pair_list_t *list, nv_pair_t *data)
66 {
67     return void_list_push((void_list_t *) list, data);
68 }
69
70 nv_pair_list_elt_t *nv_pair_list_pop(nv_pair_list_t *list)
71 {
72     return (nv_pair_list_elt_t *) void_list_pop((void_list_t *) list);
73 }
74
75 char *nv_pair_list_find(nv_pair_list_t *list, char *name)
76 {
77      nv_pair_list_elt_t *iter;
78      nv_pair_t *nv_pair;
79
80      list_for_each_entry(iter, &list->head, node) {
81           nv_pair = (nv_pair_t *)iter->data;
82           if (strcmp(nv_pair->name, name) == 0) {
83                return nv_pair->value;
84           }
85      }    
86      return NULL;
87 }
88
89 nv_pair_list_elt_t *nv_pair_list_first(nv_pair_list_t *list) {
90     return (nv_pair_list_elt_t * )void_list_first((void_list_t *) list);
91 }
92
93 nv_pair_list_elt_t *nv_pair_list_prev(nv_pair_list_t *list, nv_pair_list_elt_t *node) {
94     return (nv_pair_list_elt_t * )void_list_prev((void_list_t *) list, (void_list_elt_t *)node);
95 }
96
97 nv_pair_list_elt_t *nv_pair_list_next(nv_pair_list_t *list, nv_pair_list_elt_t *node) {
98     return (nv_pair_list_elt_t * )void_list_next((void_list_t *) list, (void_list_elt_t *)node);
99 }
100
101 nv_pair_list_elt_t *nv_pair_list_last(nv_pair_list_t *list) {
102     return (nv_pair_list_elt_t * )void_list_last((void_list_t *) list);
103 }
104
105
106