/usr/include/apol/vector.h is in libapol-dev 3.3.8-3ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 | /**
* @file
* Contains the API for a generic vector. Note that vector functions
* are not thread-safe.
*
* @author Jeremy A. Mowery jmowery@tresys.com
* @author Jason Tang jtang@tresys.com
*
* Copyright (C) 2006-2007 Tresys Technology, LLC
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef APOL_VECTOR_H
#define APOL_VECTOR_H
#ifdef __cplusplus
extern "C"
{
#endif
#include <stdlib.h>
#include <qpol/iterator.h>
typedef struct apol_vector apol_vector_t;
typedef int (apol_vector_comp_func) (const void *a, const void *b, void *data);
typedef void (apol_vector_free_func) (void *elem);
typedef void *(apol_vector_dup_func) (const void *elem, void *data);
/**
* Allocate and initialize an empty vector with default
* capacity.
*
* @param fr Function to call when destroying the vector. Each
* element of the vector will be passed into this function; it should
* free the memory used by that element. If this parameter is NULL,
* the elements will not be freed.
*
* @return A pointer to a newly created vector on success and NULL on
* failure. If the call fails, errno will be set. The caller is
* responsible for calling apol_vector_destroy() to free memory used.
*/
extern apol_vector_t *apol_vector_create(apol_vector_free_func * fr);
/**
* Allocate and initialize an empty vector with starting capacity of
* cap.
*
* @param cap The starting capacity to allocate for the internal
* array.
* @param fr Function to call when destroying the vector. Each
* element of the vector will be passed into this function; it should
* free the memory used by that element. If this parameter is NULL,
* the elements will not be freed.
*
* @return A pointer to a newly created vector on success and NULL on
* failure. If the call fails, errno will be set. The caller is
* responsible for calling apol_vector_destroy() to free memory used.
*/
extern apol_vector_t *apol_vector_create_with_capacity(size_t cap, apol_vector_free_func * fr);
/**
* Allocate and return a vector that has been initialized with the
* contents of a qpol iterator. <b>This function merely makes a
* shallow copy of the iterator's contents</b>; any memory ownership
* restrictions imposed by the iterator apply to this vector as well.
* Also note that this function begins copying from the iterator's
* current position, leaving the iterator at its end position
* afterwards.
*
* @param iter qpol iterator from which to obtain vector's contents.
* @param fr Function to call when destroying the vector. Each
* element of the vector will be passed into this function; it should
* free the memory used by that element. If this parameter is NULL,
* the elements will not be freed.
*
* @return A pointer to a newly created vector on success and NULL on
* failure. If the call fails, errno will be set. The caller is
* responsible for calling apol_vector_destroy() to free memory used.
*/
extern apol_vector_t *apol_vector_create_from_iter(qpol_iterator_t * iter, apol_vector_free_func * fr);
/**
* Allocate and return a vector that has been initialized with the
* contents of another vector.
*
* @param v Vector from which to copy.
* @param dup If NULL, then make a shallow copy of the original
* vector's contents. Otherwise this function will be called upon
* for each element from the original vector; the return value will
* be the value stored in the new vector.
* @param data Arbitrary data to pass as dup's second parameter.
* @param fr Function to call when destroying the new vector. Each
* element of the vector will be passed into this function; it should
* free the memory used by that element. If this parameter is NULL,
* the elements will not be freed.
*
* @return A pointer to a newly created vector on success and NULL on
* failure. If the call fails, errno will be set. The caller is
* responsible for calling apol_vector_destroy() to free memory used.
*/
extern apol_vector_t *apol_vector_create_from_vector(const apol_vector_t * v, apol_vector_dup_func * dup, void *data,
apol_vector_free_func * fr);
/**
* Allocate and return a vector that has been initialized with the
* contents common to two other vectors. <b>This function merely
* makes a shallow copy of the vectors' contents</b>; any memory
* ownership restrictions imposed by the original vectors apply to
* this new vector as well. Note that if a source vector contains
* duplicate elements the returned vector may (or may not) have
* duplicates as well. If the caller does not want duplicate entries
* then apol_vector_sort_uniquify() should be called afterwards.
*
* @param v1 First vector from which to compute the intersection.
* @param v2 Other vector to compute intersection.
* @param cmp A comparison call back for the type of element stored
* in the vector. The expected return value from this function is
* less than, equal to, or greater than 0 if the first argument is
* less than, equal to, or greater than the second respectively. If
* this is NULL then do pointer address comparison.
* @param data Arbitrary data to pass as the comparison function's
* third paramater.
*
* @return A pointer to a newly created vector on success and NULL on
* failure. If the call fails, errno will be set. The caller is
* responsible for calling apol_vector_destroy() to free memory used.
*/
extern apol_vector_t *apol_vector_create_from_intersection(const apol_vector_t * v1,
const apol_vector_t * v2, apol_vector_comp_func * cmp,
void *data);
/**
* Free a vector and any memory used by it. This will recursively
* invoke the free function that was stored within the vector when it
* was created.
*
* @param v Pointer to the vector to free. The pointer will be set
* to NULL afterwards. If already NULL then this function does
* nothing.
*/
extern void apol_vector_destroy(apol_vector_t ** v);
/**
* Get the number of elements in the vector.
*
* @param v The vector from which to get the number of elements.
* Must be non-NULL.
*
* @return The number of elements in the vector; if v is NULL,
* returns 0.
*/
extern size_t apol_vector_get_size(const apol_vector_t * v);
/**
* Get the current capacity of the vector.
*
* @param v The vector from which to get the current capacity. Must
* be non-NULL.
*
* @return The capacity of the vector; this value will be greater or
* equal to the number of elements in the vector. If v is NULL,
* returns 0.
*/
extern size_t apol_vector_get_capacity(const apol_vector_t * v);
/**
* Get the element at the requested index.
*
* @param v The vector from which to get the element.
* @param idx The index of the desired element.
*
* @return A pointer to the element requested. If v is NULL or idx is
* out of range, returns NULL and sets errno.
*/
extern void *apol_vector_get_element(const apol_vector_t * v, size_t idx);
/**
* Find an element within a vector, returning its index within the vector.
*
* @param v The vector from which to get the element.
* @param elem The element to find.
* @param cmp A comparison call back for the type of element stored
* in the vector. The first parameter will be an existing element
* from the vector; next will be elem and then data. The expected
* return value from this function is less than, equal to, or greater
* than 0 if the first argument is less than, equal to, or greater
* than the second respectively. For use in this function the return
* value is only checked for 0 or non-zero return. If this is NULL
* then do pointer address comparison.
* @param data Arbitrary data to pass as the comparison function's
* third paramater.
* @param i Index into vector where element was found. This value is
* undefined if the element was not found.
*
* @return 0 if element was found, or < 0 if not found.
*/
extern int apol_vector_get_index(const apol_vector_t * v, const void *elem, apol_vector_comp_func * cmp, void *data,
size_t * i);
/**
* Add an element to the end of a vector.
*
* @param v The vector to which to add the element.
* @param elem The element to add. Once added the element will be
* the last element in the vector.
*
* @return 0 on success and < 0 on failure. If the call fails, errno
* will be set and v will be unchanged.
*/
extern int apol_vector_append(apol_vector_t * v, void *elem);
/**
* Add an element to the end of a vector unless that element is equal
* to an existing element.
*
* @param v The vector to which to add the element.
* @param elem The element to add; must be non-NULL.
* @param cmp A comparison call back for the type of element stored
* in the vector. The expected return value from this function is
* less than, equal to, or greater than 0 if the first argument is
* less than, equal to, or greater than the second respectively. For
* use in this function the return value is only checked for 0 or
* non-zero return. If this is NULL then do pointer address
* comparison.
* @param data Arbitrary data to pass as the comparison function's
* third paramater.
*
* @return 0 on success, < 0 on failure, and > 0 if the element
* already exists in the vector. If the call fails or the element
* already exists errno will be set.
*/
extern int apol_vector_append_unique(apol_vector_t * v, void *elem, apol_vector_comp_func * cmp, void *data);
/**
* Concatenate two vectors. Appends all elements of src to dest.
* <b>NOTE: No type checking is done for elements in the two
* vectors.</b> Elements are not deep copies.
* @param dest Vector to which to append elements.
* @param src Vector containing elements to append.
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and dest's contents will be reverted.
*/
extern int apol_vector_cat(apol_vector_t * dest, const apol_vector_t * src);
/**
* Remove an element from a vector, and renumber all subsequent
* elements. <b>This does not free memory that was used by the
* removed element</b>; the caller is responsible for doing that.
*
* @param v Vector containing element.
* @param idx Index to the element to remove.
* @return 0 on success and < 0 on failure; if the call fails,
* errno will be set and v's contents will be reverted.
*/
extern int apol_vector_remove(apol_vector_t * v, const size_t idx);
/**
* Compare two vectors, determining if one is different than the
* other. This uses a callback to compare elements across the
* vectors.
*
* @param a First vector to compare.
* @param b Second vector to compare.
* @param cmp A comparison call back for the type of element stored
* in the vector. The expected return value from this function is
* less than, equal to, or greater than 0 if the first argument is
* less than, equal to, or greater than the second respectively. If
* this is NULL then do pointer address comparison.
* @param data Arbitrary data to pass as the comparison function's
* third paramater.
* @param i Reference to where to store the index of the first
* detected difference. The value is undefined if vectors are
* equivalent (return value of 0). Note that the index may be
* greater than a vector's size if the vectors are of unequal
* lengths.
*
* @return < 0 if vector A is less than B, > 0 if A is greater than
* B, or 0 if equivalent.
*/
extern int apol_vector_compare(const apol_vector_t * a, const apol_vector_t * b, apol_vector_comp_func * cmp, void *data,
size_t * i);
/**
* Sort the vector's elements within place, using an unstable sorting
* algorithm.
*
* @param v The vector to sort.
* @param cmp A comparison call back for the type of element stored
* in the vector. The expected return value from this function is
* less than, equal to, or greater than 0 if the first argument is
* less than, equal to, or greater than the second respectively. If
* this is NULL then treat the vector's contents as unsigned integers
* and sort in increasing order.
* @param data Arbitrary data to pass as the comparison function's
* third paramater.
*/
extern void apol_vector_sort(apol_vector_t * v, apol_vector_comp_func * cmp, void *data);
/**
* Sort the vector's elements within place (see apol_vector_sort()),
* and then compact vector by removing duplicate entries. The
* vector's free function will be used to free the memory used by
* non-unique elements.
*
* @param v The vector to sort.
* @param cmp A comparison call back for the type of element stored
* in the vector. The expected return value from this function is
* less than, equal to, or greater than 0 if the first argument is
* less than, equal to, or greater than the second respectively. If
* this is NULL then treat the vector's contents as unsigned integers
* and sort in increasing order.
* @param data Arbitrary data to pass as the comparison function's
* third paramater.
*/
extern void apol_vector_sort_uniquify(apol_vector_t * v, apol_vector_comp_func * cmp, void *data);
#ifdef __cplusplus
}
#endif
#endif /* APOL_VECTOR_H */
|