Changed the return type of functions in uarraylist
[platform/upstream/iotivity.git] / resource / csdk / connectivity / common / src / uarraylist.c
1 /******************************************************************
2  *
3  * Copyright 2014 Samsung Electronics All Rights Reserved.
4  *
5  *
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  ******************************************************************/
20
21 #include <stdlib.h>
22 #include <string.h>
23 #include "uarraylist.h"
24 #include "logger.h"
25 #include "oic_malloc.h"
26
27 #define TAG "UARRAYLIST"
28
29 /**
30  * Use this default size when initialized
31  */
32 #define U_ARRAYLIST_DEFAULT_SIZE 1
33
34 u_arraylist_t *u_arraylist_create()
35 {
36     u_arraylist_t *list = NULL;
37
38     list = (u_arraylist_t *) OICMalloc(sizeof(u_arraylist_t));
39     if (!list)
40     {
41         return NULL;
42     }
43
44     list->size = U_ARRAYLIST_DEFAULT_SIZE;
45     list->length = 0;
46
47     list->data = (void *) OICMalloc(list->size * sizeof(void *));
48     if (!list->data)
49     {
50         OIC_LOG(DEBUG, TAG, "Out of memory");
51         OICFree(list);
52         return NULL;
53     }
54     return list;
55 }
56
57 void u_arraylist_free(u_arraylist_t **list)
58 {
59     if (!list || !(*list))
60     {
61         return;
62     }
63
64     OICFree((*list)->data);
65     OICFree(*list);
66
67     *list = NULL;
68 }
69
70 void *u_arraylist_get(const u_arraylist_t *list, uint32_t index)
71 {
72     if (!list )
73     {
74         return NULL;
75     }
76
77     if ((index < list->length) && (list->data))
78     {
79         return list->data[index];
80     }
81
82     return NULL;
83 }
84
85 bool u_arraylist_add(u_arraylist_t *list, void *data)
86 {
87     if (!list)
88     {
89         return false;
90     }
91
92     if (list->size <= list->length)
93     {
94         uint32_t new_size = list->size + 1;
95         if (!(list->data = (void **) realloc(list->data, new_size * sizeof(void *))))
96         {
97             OIC_LOG(ERROR, TAG, "Failed to re-allocation memory");
98             return false;
99         }
100
101         memset(list->data + list->size, 0, (new_size - list->size) * sizeof(void *));
102         list->size = new_size;
103     }
104
105     list->data[list->length] = data;
106     list->length++;
107
108     return true;
109 }
110
111 void *u_arraylist_remove(u_arraylist_t *list, uint32_t index)
112 {
113     void *removed = NULL;
114
115     if (!list)
116     {
117         return NULL;
118     }
119
120     if (index >= list->length)
121     {
122         return NULL;
123     }
124
125     removed = list->data[index];
126
127     if (index < list->length - 1)
128     {
129         memmove(&list->data[index], &list->data[index + 1],
130                 (list->length - index - 1) * sizeof(void *));
131     }
132
133     list->size--;
134     list->length--;
135
136     // check minimum size.
137     list->size = (list->size <= U_ARRAYLIST_DEFAULT_SIZE) ? U_ARRAYLIST_DEFAULT_SIZE : list->size;
138
139     if (!(list->data = (void **) realloc(list->data, list->size * sizeof(void *))))
140     {
141         return NULL;
142     }
143
144     return removed;
145 }
146
147 uint32_t u_arraylist_length(const u_arraylist_t *list)
148 {
149     if (!list)
150     {
151         OIC_LOG(DEBUG, TAG, "Invalid Parameter");
152         return 0;
153     }
154     return list->length;
155 }
156
157 bool u_arraylist_contains(const u_arraylist_t *list,const void *data)
158 {
159     uint32_t i = 0;
160
161     if (!list)
162     {
163         return false;
164     }
165
166     uint32_t length = u_arraylist_length(list);
167
168     for (i = 0; i < length; i++)
169     {
170         if (data == u_arraylist_get(list, i))
171         {
172             return true;
173         }
174     }
175
176     return false;
177 }
178
179 // Assumes elements are shallow (have no pointers to allocated memory)
180 void u_arraylist_destroy(u_arraylist_t *list)
181 {
182     if (!list)
183     {
184         return;
185     }
186     uint32_t len = u_arraylist_length(list);
187     for (uint32_t i = 0; i < len; i++)
188     {
189         OICFree(u_arraylist_get(list, i));
190     }
191     (void)u_arraylist_free(&list);
192 }