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
|
/** @file structure.c
* @brief Data structures
*
* Copyright (c) 2014 Bartek Fabiszewski
* http://www.fabiszewski.net
*
* This file is part of libmobi.
* Licensed under LGPL, either version 3, or any later.
* See <http://www.gnu.org/licenses/>
*/
#include <stdlib.h>
#include <string.h>
#include "structure.h"
#include "debug.h"
#if defined(__BIONIC__) && !defined(SIZE_MAX)
#include <limits.h> /* for SIZE_MAX */
#endif
/**
@brief Initializer for MOBIArray structure
It allocates memory for structure and for data: array of uint32_t variables.
Memory should be freed with array_free().
@param[in] len Initial size of the array
@return MOBIArray on success, NULL otherwise
*/
MOBIArray * array_init(const size_t len) {
MOBIArray *arr = NULL;
arr = malloc(sizeof(MOBIArray));
if (arr == NULL) {
debug_print("%s", "Array allocation failed\n");
return NULL;
}
arr->data = malloc(len * sizeof(*arr->data));
if (arr->data == NULL) {
free(arr);
debug_print("%s", "Array data allocation failed\n");
return NULL;
}
arr->maxsize = len;
arr->step = len ? len : 1;
arr->size = 0;
return arr;
}
/**
@brief Inserts value into MOBIArray array
@param[in,out] arr MOBIArray array
@param[in] value Value to be inserted
@return MOBI_RET status code (on success MOBI_SUCCESS)
*/
MOBI_RET array_insert(MOBIArray *arr, const uint32_t value) {
if (!arr || arr->maxsize == 0) {
return MOBI_INIT_FAILED;
}
if (arr->maxsize == arr->size) {
arr->maxsize += arr->step;
uint32_t *tmp = realloc(arr->data, arr->maxsize * sizeof(*arr->data));
if (!tmp) {
free(arr->data);
arr->data = NULL;
debug_print("%s\n", "Memory allocation failed");
return MOBI_MALLOC_FAILED;
}
arr->data = tmp;
}
arr->data[arr->size] = value;
arr->size++;
return MOBI_SUCCESS;
}
/**
@brief Helper for qsort in array_sort() function.
@param[in] a First element to compare
@param[in] b Second element to compare
@return -1 if a < b; 1 if a > b; 0 if a = b
*/
static int array_compare(const void *a, const void *b) {
if (*(uint32_t *) a < *(uint32_t *) b) {
return -1;
};
if (*(uint32_t *) a > *(uint32_t *) b) {
return 1;
};
return 0;
}
/**
@brief Sort MOBIArray in ascending order.
When unique is set to true, duplicate values are discarded.
@param[in,out] arr MOBIArray array
@param[in] unique Discard duplicate values if true
*/
void array_sort(MOBIArray *arr, const bool unique) {
if (!arr || !arr->data || arr->size == 0) {
return;
}
qsort(arr->data, arr->size, sizeof(*arr->data), array_compare);
if (unique) {
size_t i = 1;
size_t j = 1;
while (i < arr->size) {
if (arr->data[j - 1] == arr->data[i]) {
i++;
continue;
}
arr->data[j++] = arr->data[i++];
}
arr->size = j;
}
}
/**
@brief Get size of the array
@param[in] arr MOBIArray structure
@return Array size
*/
size_t array_size(MOBIArray *arr) {
return arr->size;
}
/**
@brief Free MOBIArray structure and contained data
Free data initialized with array_init();
@param[in] arr MOBIArray structure
*/
void array_free(MOBIArray *arr) {
if (!arr) { return; }
if (arr->data) {
free(arr->data);
}
free(arr);
}
/**
@brief Create and return MOBITrie structure
@return MOBITrie stucture initialized with zeroes
*/
static MOBITrie * mobi_trie_mknode(void) {
MOBITrie *node = calloc(1, sizeof(MOBITrie));
if (node == NULL) {
debug_print("Memory allocation failed%s", "\n");
}
return node;
}
/**
@brief Recursively free MOBITrie trie starting from node
@param[in] node Starting node
*/
void mobi_trie_free(MOBITrie *node) {
if (node) {
mobi_trie_free(node->next);
mobi_trie_free(node->children);
free(node->values);
free(node);
}
}
/**
@brief Insert value into array at given MOBITrie node
@param[in,out] node Starting node
@param[in] value Value to be inserted
@return MOBI_RET status code (on success MOBI_SUCCESS)
*/
static MOBI_RET mobi_trie_addvalue(MOBITrie *node, char *value) {
if (node->values) {
size_t cnt = ++node->values_count;
void *new_values = realloc(node->values, cnt * sizeof(*node->values));
if (new_values == NULL) {
debug_print("Memory allocation failed%s", "\n");
return MOBI_MALLOC_FAILED;
}
node->values = new_values;
node->values[cnt - 1] = value;
} else {
node->values = malloc(sizeof(*node->values));
if (node->values == NULL) {
debug_print("Memory allocation failed%s", "\n");
return MOBI_MALLOC_FAILED;
}
node->values[0] = value;
node->values_count = 1;
}
return MOBI_SUCCESS;
}
/**
@brief Insert key character and value (if given) at MOBITrie node
@param[in,out] node Starting node
@param[in] c Key character
@param[in] value Value to be inserted at terminal node, or NULL if not terminal
@return MOBITrie node: current node if value inserted (terminal),
children node (if transitional) or NULL on error
*/
static MOBITrie * mobi_trie_insert_char(MOBITrie *node, char c, char *value) {
if (!node) { return NULL; }
while (true) {
if (node->c == c) {
break;
}
if (node->next == NULL) {
node->next = mobi_trie_mknode();
node = node->next;
break;
}
node = node->next;
}
if (node->c == 0) {
node->c = c;
}
if (value) {
/* terminal node */
if (mobi_trie_addvalue(node, value) == MOBI_SUCCESS) {
return node;
}
return NULL;
}
if (node->children == NULL) {
node->children = mobi_trie_mknode();
}
return node->children;
}
/**
@brief Insert reversed string into MOBITrie trie
@param[in,out] root Root node
@param[in] string String to be inserted
@param[in] value Value associated with the string
@return MOBI_RET status code (on success MOBI_SUCCESS)
*/
MOBI_RET mobi_trie_insert_reversed(MOBITrie **root, char *string, char *value) {
size_t length = strlen(string);
if (length == 0) {
debug_print("Skipping empty lookup string in trie node%s", "\n");
return MOBI_SUCCESS;
}
if (*root == NULL) {
*root = mobi_trie_mknode();
if (*root == NULL) {
return MOBI_MALLOC_FAILED;
}
}
MOBITrie *node = *root;
while (length > 1) {
node = mobi_trie_insert_char(node, string[length - 1], NULL);
if (node == NULL) {
return MOBI_MALLOC_FAILED;
}
length--;
}
node = mobi_trie_insert_char(node, string[length - 1], value);
if (node == NULL) {
return MOBI_MALLOC_FAILED;
}
return MOBI_SUCCESS;
}
/**
@brief Fetch values for key c from MOBITrie trie's current level starting at node
@param[in,out] values Array of values to be fetched
@param[in,out] values_count Array size
@param[in] node MOBITrie node to start search
@param[in] c Key character
@return MOBITrie children node of the node with c key or NULL if not found
*/
MOBITrie * mobi_trie_get_next(char ***values, size_t *values_count, const MOBITrie *node, const char c) {
if (!node) { return NULL; }
while (node) {
if (node->c == c) {
*values = (char**) node->values;
*values_count = node->values_count;
return node->children;
}
node = node->next;
}
return NULL;
}
#if 0
/* Simple imprementation of binary tree, storing key strings
and associated arrays of values
currently not used, save for later */
typedef struct MOBIBtree {
char *key; /**< key */
char **array; /**< array of strings */
size_t value_count; /**< strings count */
struct MOBIBtree *left; /**< left child */
struct MOBIBtree *right; /**< right child */
} MOBIBtree;
/**
@brief Search MOBIBtree tree for string key
@param[in] node MOBIBtree node to start search
@param[in] key Key string
@return MOBIBtree node or NULL if not found
*/
MOBIBtree *mobi_btree_search(MOBIBtree *node, const char *key) {
MOBIBtree *found = NULL;
int compare = strcmp(key, node->key);
if (compare < 0) {
found = mobi_btree_search(node->left, key);
} else if (compare > 0) {
found = mobi_btree_search(node->right, key);
} else {
found = node;
}
return found;
}
/**
@brief Insert key and value (into array) into MOBIBtree tree
@param[in] node MOBIBtree root node
@param[in] key Key string
@param[in] value Value string will be inserted into array
@return MOBI_RET status code (on success MOBI_SUCCESS)
*/
MOBI_RET mobi_btree_insert(MOBIBtree **node, char *key, char *value) {
MOBI_RET ret = MOBI_SUCCESS;
if (*node == NULL) {
*node = malloc(sizeof(MOBIBtree));
if (*node == NULL) {
return MOBI_MALLOC_FAILED;
}
(*node)->key = key;
(*node)->value_count = 1;
(*node)->array = malloc(sizeof(*(*node)->array));
if ((*node)->array == NULL) {
free(*node);
return MOBI_MALLOC_FAILED;
}
(*node)->array[0] = value;
(*node)->left = NULL;
(*node)->right = NULL;
return MOBI_SUCCESS;
}
int compare = strcmp(key, (*node)->key);
if (compare < 0) {
ret = mobi_btree_insert(&(*node)->left, key, value);
} else if (compare > 0) {
ret = mobi_btree_insert(&(*node)->right, key, value);
} else {
size_t cnt = ++(*node)->value_count;
char **new_array = realloc((*node)->array, cnt * sizeof(*(*node)->array));
if (new_array) {
(*node)->array = new_array;
(*node)->array[cnt - 1] = value;
} else {
return MOBI_MALLOC_FAILED;
}
}
return ret;
}
#endif
/**
@brief Allocate fragment, fill with data and return
@param[in] raw_offset Fragment offset in raw markup,
SIZE_MAX if not present in original markup
@param[in] fragment Fragment data
@param[in] size Size data
@param[in] is_malloc is_maloc data
@return Fragment structure filled with data
*/
static MOBIFragment * mobi_list_init(size_t raw_offset, unsigned char *fragment, const size_t size, const bool is_malloc) {
MOBIFragment *curr = calloc(1, sizeof(MOBIFragment));
if (curr == NULL) {
if (is_malloc) {
free(fragment);
}
return NULL;
}
curr->raw_offset = raw_offset;
curr->fragment = fragment;
curr->size = size;
curr->is_malloc = is_malloc;
return curr;
}
/**
@brief Allocate fragment, fill with data, append to linked list
@param[in] curr Last fragment in linked list
@param[in] raw_offset Fragment offset in raw markup,
SIZE_MAX if not present in original markup
@param[in] fragment Fragment data
@param[in] size Size data
@param[in] is_malloc is_maloc data
@return Fragment structure filled with data
*/
MOBIFragment * mobi_list_add(MOBIFragment *curr, size_t raw_offset, unsigned char *fragment, const size_t size, const bool is_malloc) {
if (!curr) {
return mobi_list_init(raw_offset, fragment, size, is_malloc);
}
curr->next = calloc(1, sizeof(MOBIFragment));
if (curr->next == NULL) {
if (is_malloc) {
free(fragment);
}
return NULL;
}
MOBIFragment *next = curr->next;
next->raw_offset = raw_offset;
next->fragment = fragment;
next->size = size;
next->is_malloc = is_malloc;
return next;
}
/**
@brief Allocate fragment, fill with data,
insert into linked list at given offset
Starts to search for offset at curr fragment.
@param[in] curr Fragment where search starts
@param[in] raw_offset Fragment offset in raw markup,
SIZE_MAX if not present in original markup
@param[in] fragment Fragment data
@param[in] size Size data
@param[in] is_malloc is_maloc data
@param[in] offset offset where new chunk will be inserted
@return Fragment structure filled with data
*/
MOBIFragment * mobi_list_insert(MOBIFragment *curr, size_t raw_offset, unsigned char *fragment, const size_t size, const bool is_malloc, const size_t offset) {
MOBIFragment *prev = NULL;
while (curr) {
if (curr->raw_offset != SIZE_MAX && curr->raw_offset <= offset && curr->raw_offset + curr->size >= offset ) {
break;
}
prev = curr;
curr = curr->next;
}
if (!curr) {
/* FIXME: return value is same as with malloc error */
debug_print("Offset not found: %zu\n", offset);
if (is_malloc) {
free(fragment);
}
return NULL;
}
MOBIFragment *new = calloc(1, sizeof(MOBIFragment));
if (new == NULL) {
if (is_malloc) {
free(fragment);
}
return NULL;
}
new->raw_offset = raw_offset;
new->fragment = fragment;
new->size = size;
new->is_malloc = is_malloc;
MOBIFragment *new2 = NULL;
if (curr->raw_offset == offset) {
/* prepend chunk */
if (prev) {
prev->next = new;
new->next = curr;
} else {
/* save curr */
MOBIFragment tmp;
tmp.raw_offset = curr->raw_offset;
tmp.fragment = curr->fragment;
tmp.size = curr->size;
tmp.is_malloc = curr->is_malloc;
tmp.next = curr->next;
/* move new to curr */
curr->raw_offset = new->raw_offset;
curr->fragment = new->fragment;
curr->size = new->size;
curr->is_malloc = new->is_malloc;
curr->next = new;
/* restore tmp to new */
new->raw_offset = tmp.raw_offset;
new->fragment = tmp.fragment;
new->size = tmp.size;
new->is_malloc = tmp.is_malloc;
new->next = tmp.next;
return curr;
}
} else if (curr->raw_offset + curr->size == offset) {
/* append chunk */
new->next = curr->next;
curr->next = new;
} else {
/* split fragment and insert new chunk */
new2 = calloc(1, sizeof(MOBIFragment));
if (new2 == NULL) {
free(new);
if (is_malloc) {
free(fragment);
}
return NULL;
}
size_t rel_offset = offset - curr->raw_offset;
new2->next = curr->next;
new2->size = curr->size - rel_offset;
new2->raw_offset = offset;
new2->fragment = curr->fragment + rel_offset;
new2->is_malloc = false;
curr->next = new;
curr->size = rel_offset;
new->next = new2;
}
/* correct offsets */
if (raw_offset != SIZE_MAX) {
curr = new->next;
while (curr) {
if (curr->raw_offset != SIZE_MAX) {
curr->raw_offset += new->size;
}
curr = curr->next;
}
}
return new;
}
/**
@brief Delete fragment from linked list
@param[in] curr Fragment to be deleted
@return Next fragment in the linked list or NULL if absent
*/
MOBIFragment * mobi_list_del(MOBIFragment *curr) {
MOBIFragment *del = curr;
curr = curr->next;
if (del->is_malloc) {
free(del->fragment);
}
free(del);
del = NULL;
return curr;
}
/**
@brief Delete all fragments from linked list
@param[in] first First fragment from the list
*/
void mobi_list_del_all(MOBIFragment *first) {
while (first) {
first = mobi_list_del(first);
}
}
|