summaryrefslogtreecommitdiffstats
path: root/gps/utils/linked_list.h
blob: cfc945a7265d894870847ddbb7c353b61f14d918 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
/* Copyright (c) 2011, Code Aurora Forum. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are
 * met:
 *     * Redistributions of source code must retain the above copyright
 *       notice, this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above
 *       copyright notice, this list of conditions and the following
 *       disclaimer in the documentation and/or other materials provided
 *       with the distribution.
 *     * Neither the name of Code Aurora Forum, Inc. nor the names of its
 *       contributors may be used to endorse or promote products derived
 *       from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
#ifndef __LINKED_LIST_H__
#define __LINKED_LIST_H__

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

#include <stdbool.h>
#include <stdlib.h>

/** Linked List Return Codes */
typedef enum
{
  eLINKED_LIST_SUCCESS                             = 0,
     /**< Request was successful. */
  eLINKED_LIST_FAILURE_GENERAL                     = -1,
     /**< Failed because of a general failure. */
  eLINKED_LIST_INVALID_PARAMETER                   = -2,
     /**< Failed because the request contained invalid parameters. */
  eLINKED_LIST_INVALID_HANDLE                      = -3,
     /**< Failed because an invalid handle was specified. */
  eLINKED_LIST_UNAVAILABLE_RESOURCE                = -4,
     /**< Failed because an there were not enough resources. */
  eLINKED_LIST_INSUFFICIENT_BUFFER                 = -5,
     /**< Failed because an the supplied buffer was too small. */
}linked_list_err_type;

/*===========================================================================
FUNCTION    linked_list_init

DESCRIPTION
   Initializes internal structures for linked list.

   list_data: State of list to be initialized.

DEPENDENCIES
   N/A

RETURN VALUE
   Look at error codes above.

SIDE EFFECTS
   N/A

===========================================================================*/
linked_list_err_type linked_list_init(void** list_data);

/*===========================================================================
FUNCTION    linked_list_destroy

DESCRIPTION
   Destroys internal structures for linked list.

   p_list_data: State of list to be destroyed.

DEPENDENCIES
   N/A

RETURN VALUE
   Look at error codes above.

SIDE EFFECTS
   N/A

===========================================================================*/
linked_list_err_type linked_list_destroy(void** list_data);

/*===========================================================================
FUNCTION    linked_list_add

DESCRIPTION
   Adds an element to the head of the linked list. The passed in data pointer
   is not modified or freed. Passed in data_obj is expected to live throughout
   the use of the linked_list (i.e. data is not allocated internally)

   p_list_data:  List to add data to the head of.
   data_obj:     Pointer to data to add into list
   dealloc:      Function used to deallocate memory for this element. Pass NULL
                 if you do not want data deallocated during a flush operation

DEPENDENCIES
   N/A

RETURN VALUE
   Look at error codes above.

SIDE EFFECTS
   N/A

===========================================================================*/
linked_list_err_type linked_list_add(void* list_data, void *data_obj, void (*dealloc)(void*));

/*===========================================================================
FUNCTION    linked_list_remove

DESCRIPTION
   Retrieves data from the list tail. data_obj is the tail element from the list
   passed in by linked_list_add.

   p_list_data:  List to remove the tail from.
   data_obj:     Pointer to data removed from list

DEPENDENCIES
   N/A

RETURN VALUE
   Look at error codes above.

SIDE EFFECTS
   N/A

===========================================================================*/
linked_list_err_type linked_list_remove(void* list_data, void **data_obj);

/*===========================================================================
FUNCTION    linked_list_empty

DESCRIPTION
   Tells whether the list currently contains any elements

   p_list_data:  List to check if empty.

DEPENDENCIES
   N/A

RETURN VALUE
   0/FALSE : List contains elements
   1/TRUE  : List is Empty
   Otherwise look at error codes above.

SIDE EFFECTS
   N/A

===========================================================================*/
int linked_list_empty(void* list_data);

/*===========================================================================
FUNCTION    linked_list_flush

DESCRIPTION
   Removes all elements from the list and deallocates them using the provided
   dealloc function while adding elements.

   p_list_data:  List to remove all elements from.

DEPENDENCIES
   N/A

RETURN VALUE
   Look at error codes above.

SIDE EFFECTS
   N/A

===========================================================================*/
linked_list_err_type linked_list_flush(void* list_data);

/*===========================================================================
FUNCTION    linked_list_search

DESCRIPTION
   Searches for an element in the linked list.

   p_list_data:  List handle.
   data_p:       to be stored with the data found; NUll if no match.
                 if data_p passed in as NULL, then no write to it.
   equal:        Function ptr takes in a list element, and returns
                 indication if this the one looking for.
   data_0:       The data being compared against.
   rm_if_found:  Should data be removed if found?

DEPENDENCIES
   N/A

RETURN VALUE
   Look at error codes above.

SIDE EFFECTS
   N/A

===========================================================================*/
linked_list_err_type linked_list_search(void* list_data, void **data_p,
                                        bool (*equal)(void* data_0, void* data),
                                        void* data_0, bool rm_if_found);

#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* __LINKED_LIST_H__ */