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 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
|
/*
* Copyright (c) 2012 Tim Ruehsen
* Copyright (c) 2015-2024 Free Software Foundation, Inc.
*
* This file is part of libwget.
*
* Libwget 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 3 of the License, or
* (at your option) any later version.
*
* Libwget 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 libwget. If not, see <https://www.gnu.org/licenses/>.
*
*
* vector routines
*
* Changelog
* 25.04.2012 Tim Ruehsen created
*
*/
#include <config.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <wget.h>
#include "private.h"
struct wget_vector_st {
wget_vector_compare_fn
*cmp; //!< comparison function for sorting and searching
wget_vector_destructor
*destructor; //!< element destructor function
void
**entry; //!< pointer to array of pointers to elements
int
max, //!< allocated elements
cur; //!< number of elements in use
bool
sorted : 1; //!< 1=list is sorted, 0=list is not sorted
float
resize_factor; //!< factor to calculate new vector size
};
/**
* \file
* \brief Vector functions
* \defgroup libwget-vector Vector functions
* @{
*
* Functions to realize vectors (growable arrays).
*/
/**
* \param[in] max Initial number of pre-allocated entries.
* \param[in] cmp Comparison function for sorting/finding/sorted insertion or %NULL.
* \return New vector instance
*
* Create a new vector instance, to be free'd after use with wget_vector_free().
*/
wget_vector *wget_vector_create(int max, wget_vector_compare_fn *cmp)
{
wget_vector *v = wget_calloc(1, sizeof(wget_vector));
if (!v)
return NULL;
if (!(v->entry = wget_malloc(max * sizeof(void *)))) {
xfree(v);
return NULL;
}
v->max = max;
v->resize_factor = 2;
v->cmp = cmp;
v->destructor = free;
return v;
}
/**
* \param[in] v Vector
* \param[in] factor Vector growth factor
*
* Set the factor for resizing the vector when it is full.
*
* The new size is 'factor * oldsize'. If the new size is less or equal the old size,
* the involved insertion function will return an error and the internal state of
* the vector will not change.
*
* Default is 2.
*/
void wget_vector_set_resize_factor(wget_vector *v, float factor)
{
if (v)
v->resize_factor = factor;
}
static int WGET_GCC_NONNULL((2)) insert_element(wget_vector *v, const void *elem, int pos, int replace)
{
if (pos < 0 || !v || pos > v->cur)
return WGET_E_INVALID;
if (!replace) {
if (v->max == v->cur) {
int newsize = (int) (v->max * v->resize_factor);
if (newsize <= v->max)
return WGET_E_INVALID;
void **tmp = wget_realloc(v->entry, newsize * sizeof(void *));
if (!tmp)
return WGET_E_MEMORY;
v->entry = tmp;
v->max = newsize;
}
memmove(&v->entry[pos + 1], &v->entry[pos], (v->cur - pos) * sizeof(void *));
v->cur++;
}
v->entry[pos] = (void *) elem;
if (v->cmp) {
if (v->cur == 1) v->sorted = 1;
else if (v->cur > 1 && v->sorted) {
if (pos == 0) {
if (v->cmp(elem, v->entry[1]) > 0) v->sorted = 0;
} else if (pos == v->cur - 1) {
if (v->cmp(elem, v->entry[v->cur - 2]) < 0) v->sorted = 0;
} else {
if (v->cmp(elem, v->entry[pos - 1]) < 0 ||
v->cmp(elem, v->entry[pos + 1]) > 0) {
v->sorted = 0;
}
}
}
}
return pos; // return position of new element
}
/**
* \param[in] v Vector where \p elem is inserted into
* \param[in] elem Element to insert into \p v
* \param[in] pos Position to insert \p elem at
* \return Index of inserted element (>= 0) or WGET_E_* on error (< 0)
*
* Insert \p elem of at index \p pos.
*
* \p elem is *not* cloned, the vector takes 'ownership' of the element.
*
* An error is returned if \p v is %NULL or \p pos is out of range (< 0 or > # of entries).
*/
int wget_vector_insert(wget_vector *v, const void *elem, int pos)
{
return insert_element(v, elem, pos, 0);
}
/**
* \param[in] v Vector where \p elem is inserted into
* \param[in] elem Element to insert into \p v
* \return Index of inserted element (>= 0) or WGET_E_* on error (< 0)
*
* Insert \p elem of at a position that keeps the sort order of the elements.
* If the vector has no comparison function, \p elem will be inserted as the last element.
* If the elements in the vector are not sorted, they will be sorted after returning from this function.
*
* \p elem is *not* cloned, the vector takes 'ownership' of the element.
*
* An error is returned if \p v is %NULL.
*/
int wget_vector_insert_sorted(wget_vector *v, const void *elem)
{
if (!v)
return WGET_E_INVALID;
if (!v->cmp)
return insert_element(v, elem, v->cur, 0);
if (!v->sorted)
wget_vector_sort(v);
// binary search for element
int l = 0, r = v->cur - 1, m = 0, res = 0;
while (l <= r) {
m = (l + r) / 2;
if ((res = v->cmp(elem, v->entry[m])) > 0) l = m + 1;
else if (res < 0) r = m - 1;
else return insert_element(v, elem, m, 0);
}
if (res > 0) m++;
return insert_element(v, elem, m, 0);
}
/**
* \param[in] v Vector where \p elem is appended to
* \param[in] elem Element to append to a \p v
* \param[in] size Size of \p elem
* \return Index of inserted element (>= 0) or WGET_E_* on error (< 0)
*
* Append \p elem of given \p size to vector \p v.
*
* \p elem is cloned / copied (shallow).
*
* An error is returned if \p v is %NULL.
*/
int wget_vector_add_memdup(wget_vector *v, const void *elem, size_t size)
{
void *elemp;
int rc;
if (!v)
return WGET_E_INVALID;
if (!(elemp = wget_memdup(elem, size)))
return WGET_E_MEMORY;
if ((rc = insert_element(v, elemp, v->cur, 0)) < 0)
xfree(elemp);
return rc;
}
/**
* \param[in] v Vector where \p elem is appended to
* \param[in] elem Element to append to a \p v
* \return Index of inserted element (>= 0) or WGET_E_* on error (< 0)
*
* Append \p elem to vector \p v.
*
* \p elem is *not* cloned, the vector takes 'ownership' of the element.
*
* An error is returned if \p v is %NULL.
*/
int wget_vector_add(wget_vector *v, const void *elem)
{
return v ? insert_element(v, elem, v->cur, 0) : WGET_E_INVALID;
}
/**
* \param[in] v Vector where \p s is appended to
* \param[in] fmt Printf-like format string
* \param[in] args Arguments for the \p fmt
* \return Index of appended element (>= 0) or WGET_E_* on error (< 0)
*
* Construct string in a printf-like manner and append it as an element to vector \p v.
*
* An error is returned if \p v or \p fmt is %NULL.
*/
int wget_vector_add_vprintf(wget_vector *v, const char *fmt, va_list args)
{
if (!v || !fmt)
return WGET_E_INVALID;
char *p = wget_vaprintf(fmt, args);
if (!p)
return WGET_E_MEMORY;
return insert_element(v, p, v->cur, 0);
}
/**
* \param[in] v Vector where \p s is appended to
* \param[in] fmt Printf-like format string
* \param[in] ... Arguments for the \p fmt
* \return Index of appended element (>= 0) or WGET_E_* on error (< 0)
*
* Construct string in a printf-like manner and append it as an element to vector \p v.
*
* An error is returned if \p v or \p fmt is %NULL.
*/
int wget_vector_add_printf(wget_vector *v, const char *fmt, ...)
{
if (!v || !fmt)
return WGET_E_INVALID;
va_list args;
va_start(args, fmt);
char *p = wget_vaprintf(fmt, args);
va_end(args);
if (!p)
return WGET_E_MEMORY;
return insert_element(v, p, v->cur, 0);
}
/**
* \param[in] v Vector where \p elem is inserted
* \param[in] elem Element to insert into \p v
* \param[in] pos Position to insert \p elem at
* \return Index of inserted element (same as \p pos) (>= 0) or WGET_E_* on error (< 0)
*
* Replace the element at position \p pos with \p elem.
* If the vector has an element destructor function, this is called.
* The old element is free'd.
*
* \p elem is *not* cloned, the vector takes 'ownership' of the element.
*
* An error is returned if \p v is %NULL or \p pos is out of range (< 0 or > # of entries).
*/
int wget_vector_replace(wget_vector *v, const void *elem, int pos)
{
if (!v || pos < 0 || pos >= v->cur)
return WGET_E_INVALID;
if (v->destructor)
v->destructor(v->entry[pos]);
return insert_element(v, elem, pos, 1); // replace existing entry
}
static int remove_element(wget_vector *v, int pos, int free_entry)
{
if (pos < 0 || !v || pos >= v->cur)
return WGET_E_INVALID;
if (free_entry) {
if (v->destructor)
v->destructor(v->entry[pos]);
}
memmove(&v->entry[pos], &v->entry[pos + 1], (v->cur - pos - 1) * sizeof(void *));
v->cur--;
return pos;
}
/**
* \param[in] v Vector to remove an element from
* \param[in] pos Position of element to remove
* \return Index of appended element (>= 0) or WGET_E_* on error (< 0)
*
* Remove the element at position \p pos.
* If the vector has an element destructor function, this is called.
* The element is free'd.
*
* An error is returned if \p v is %NULL or \p pos is out of range (< 0 or > # of entries).
*/
int wget_vector_remove(wget_vector *v, int pos)
{
return remove_element(v, pos, 1);
}
/**
* \param[in] v Vector to remove an element from
* \param[in] pos Position of element to remove
* \return Index of removed element (same as \p pos) (>= 0) or WGET_E_* on error (< 0)
*
* Remove the element at position \p pos.
* No element destructor function is called, the element is not free'd.
*
* An error is returned if \p v is %NULL or \p pos is out of range (< 0 or > # of entries).
*/
int wget_vector_remove_nofree(wget_vector *v, int pos)
{
return remove_element(v, pos, 0);
}
/**
* \param[in] v Vector to act on
* \param[in] old_pos Position to move element from
* \param[in] new_pos Position to move element to
* \return Index of new position (same as \p new_pos) (>= 0) or WGET_E_* on error (< 0)
*
* Move the element at position \p old_pos to \p new_pos.
*
* Other elements may change the position.
*
* An error is returned if \p v is %NULL or either \p old_pos or
* \p new_pos is out of range (< 0 or > # of entries).
*/
int wget_vector_move(wget_vector *v, int old_pos, int new_pos)
{
if (!v) return WGET_E_INVALID;
if (old_pos < 0 || old_pos >= v->cur) return WGET_E_INVALID;
if (new_pos < 0 || new_pos >= v->cur) return WGET_E_INVALID;
if (old_pos == new_pos) return new_pos;
if (v->sorted && v->cmp && v->cmp(v->entry[old_pos], v->entry[new_pos]))
v->sorted = 0;
void *tmp = v->entry[old_pos];
if (old_pos < new_pos)
memmove(&v->entry[old_pos], &v->entry[old_pos + 1], (new_pos - old_pos) * sizeof(void *));
else
memmove(&v->entry[new_pos + 1], &v->entry[new_pos], (old_pos - new_pos) * sizeof(void *));
v->entry[new_pos] = tmp;
return new_pos;
}
/**
* \param[in] v Vector to act on
* \param[in] pos1 Position of element one
* \param[in] pos2 Position of element two
* \return Index of second position (same as \p pos2) (>= 0) or WGET_E_* on error (< 0)
*
* Swap the two elements at position \p pos1 and \p pos2.
*
* An error is returned if \p v is %NULL or either \p pos1 or
* \p pos2 is out of range (< 0 or > # of entries).
*/
int wget_vector_swap(wget_vector *v, int pos1, int pos2)
{
if (!v) return WGET_E_INVALID;
if (pos1 < 0 || pos1 >= v->cur) return WGET_E_INVALID;
if (pos2 < 0 || pos2 >= v->cur) return WGET_E_INVALID;
if (pos1 == pos2) return pos2;
void *tmp = v->entry[pos1];
v->entry[pos1] = v->entry[pos2];
v->entry[pos2] = tmp;
if (v->sorted && v->cmp && v->cmp(v->entry[pos1], v->entry[pos2]))
v->sorted = 0;
return pos2;
}
/**
* \param[in] v Vector to be free'd
*
* Free the vector \p v and it's contents.
*
* For each element the destructor function is called and the element free'd thereafter.
* Then the vector itself is free'd and set to %NULL.
*/
void wget_vector_free(wget_vector **v)
{
if (v && *v) {
wget_vector_clear(*v);
xfree((*v)->entry);
xfree(*v);
}
}
/**
* \param[in] v Vector to be cleared
*
* Free all elements of the vector \p v but not the vector itself.
*
* For each element the destructor function is called and the element free'd thereafter.
* The vector is then empty and can be reused.
*/
void wget_vector_clear(wget_vector *v)
{
if (v) {
if (v->destructor) {
for (int it = 0; it < v->cur; it++) {
v->destructor(v->entry[it]);
v->entry[it] = NULL;
}
}
v->cur = 0;
}
}
/**
* \param[in] v Vector to be cleared
*
* Remove all elements of the vector \p v without free'ing them.
* The caller is responsible to care for the elements.
*
* The vector is then empty and can be reused.
*/
void wget_vector_clear_nofree(wget_vector *v)
{
if (v) {
for (int it = 0; it < v->cur; it++)
v->entry[it] = NULL;
v->cur = 0;
}
}
/**
* \param[in] v Vector
* \return The number of elements in the vector \p v
*
* Retrieve the number of elements of the vector \p v.
* If \p v is %NULL, 0 is returned.
*/
int wget_vector_size(const wget_vector *v)
{
return v ? v->cur : 0;
}
/**
* \param[in] v Vector
* \param[in] pos Position of element to retrieve
* \return The element at position \p pos or %NULL on error
*
* Retrieve the element at position \p pos.
*
* %NULL is returned if \p v is %NULL or \p pos is out of range (< 0 or > # of entries).
*/
void *wget_vector_get(const wget_vector *v, int pos)
{
if (pos < 0 || !v || pos >= v->cur)
return NULL;
return v->entry[pos];
}
/**
* \param[in] v Vector
* \param[in] browse Function to be called for each element of \p v
* \param[in] ctx Context variable use as param to \p browse
* \return Return value of the last call to \p browse
*
* Call function \p browse for each element of vector \p v or until \p browse
* returns a value not equal to zero.
*
* \p browse is called with \p ctx and the pointer to the current element.
*
* The return value of the last call to \p browse is returned or 0 if \p v is %NULL.
*/
int wget_vector_browse(const wget_vector *v, wget_vector_browse_fn *browse, void *ctx)
{
if (v) {
for (int ret, it = 0; it < v->cur; it++)
if ((ret = browse(ctx, v->entry[it])) != 0)
return ret;
}
return 0;
}
/**
* \param[in] v Vector
* \param[in] cmp Function to compare elements
*
* Set the compare function used by wget_vector_sort().
*/
void wget_vector_setcmpfunc(wget_vector *v, wget_vector_compare_fn *cmp)
{
if (v) {
v->cmp = cmp;
if (v->cur == 1)
v->sorted = 1;
else
v->sorted = 0;
}
}
/**
* \param[in] v Vector
* \param[in] destructor Function to be called for element destruction
*
* Set the destructor function that is called for each element to be removed.
* It should not free the element (pointer) itself.
*/
void wget_vector_set_destructor(wget_vector *v, wget_vector_destructor *destructor)
{
if (v)
v->destructor = destructor;
}
WGET_GCC_NONNULL_ALL
static int compare_element(const void *p1, const void *p2, void *v)
{
return ((wget_vector *)v)->cmp(*((void **)p1), *((void **)p2));
}
/**
* \param[in] v Vector
*
* Sort the elements in vector \p v using the compare function.
* Do nothing if \p v is %NULL or the compare function is not set.
*/
void wget_vector_sort(wget_vector *v)
{
if (v && v->cmp) {
qsort_r(v->entry, v->cur, sizeof(void *), compare_element, v);
v->sorted = 1;
}
}
/**
* \param[in] v Vector
* \param[in] elem Element to search for
* \return Index of the found element, WGET_E_UNKNOWN if not found or WGET_E_INVALID
* if v was %NULL or there was no comparison function set
*
* Searches for the given element using the compare function of the vector.
*/
int wget_vector_find(const wget_vector *v, const void *elem)
{
if (!v || !v->cmp)
return WGET_E_INVALID;
if (v->cur == 1) {
if (v->cmp(elem, v->entry[0]) == 0) return 0;
} else if (v->sorted) {
// binary search for element (exact match)
for (int l = 0, r = v->cur - 1; l <= r;) {
int res, m = (l + r) / 2;
if ((res = v->cmp(elem, v->entry[m])) > 0) l = m + 1;
else if (res < 0) r = m - 1;
else return m;
}
} else {
// linear search for element
for (int it = 0; it < v->cur; it++)
if (v->cmp(elem, v->entry[it]) == 0) return it;
}
return WGET_E_UNKNOWN; // not found
}
/**
* \param[in] v Vector
* \param[in] elem Element to check for
* \return True if element exists, else false
*
* Checks whether the element \p elem exists or not.
*/
bool wget_vector_contains(const wget_vector *v, const void *elem)
{
return wget_vector_find(v, elem) >= 0;
}
/**
* \param[in] v Vector
* \param[in] start Index to start search from
* \param[in] direction Direction of search
* \param[in] find Function to be called for each element
* \return Index of the found element, WGET_E_UNKNOWN if not found or WGET_E_INVALID
* if v was %NULL or there was no comparison function set
*
* Call \p find for each element starting at \p start.
* If \p find returns 0 the current index is returned.
*/
int wget_vector_findext(const wget_vector *v, int start, int direction, wget_vector_find_fn *find)
{
if (!v)
return WGET_E_INVALID;
if (direction) { // down
if (start < v->cur) {
for (int it = start; it >= 0; it--)
if (find(v->entry[it]) == 0)
return it;
}
} else { // up
if (start >= 0) {
for (int it = start; it < v->cur; it++)
if (find(v->entry[it]) == 0)
return it;
}
}
return WGET_E_UNKNOWN;
}
/**@}*/
|