source: libabac/abac_list.c @ e97d2e2

mei_rt2_fix_1
Last change on this file since e97d2e2 was abf8d5d, checked in by Mei <mei@…>, 12 years ago

1) add backtrack/multiple solutions proof code changes and new

examples.

  • Property mode set to 100644
File size: 1.8 KB
RevLine 
[379a53f]1#include <stdlib.h>
2
[6d5623e]3#include "abac_list.h"
[3c251d0]4#include "abac_util.h"
[379a53f]5
[6d5623e]6abac_list_t *abac_list_new(void) {
[3c251d0]7    abac_list_t *ret = abac_xmalloc(sizeof(abac_list_t));
[379a53f]8    ret->elts = NULL;
[90d20f0]9    ret->size = 0;
[379a53f]10    return ret;
11}
12
[6d5623e]13void abac_list_add(abac_list_t *list, void *elt) {
[3c251d0]14    abac_list_element_t *new_element = abac_xmalloc(sizeof(abac_list_element_t));
[379a53f]15
16    new_element->ptr = elt;
17    DL_APPEND(list->elts, new_element);
[90d20f0]18    ++list->size;
[379a53f]19}
[d8990b3]20
[abf8d5d]21/* add only if it is not in the list already */
22int abac_list_unique_add(abac_list_t *list, void *elt) {
23    void *cur;
24    abac_list_foreach(list, cur,
25        if(cur == elt) 
26            return 0;
27    );
28
29    abac_list_element_t *new_element = abac_xmalloc(sizeof(abac_list_element_t));
30    new_element->ptr = elt;
31    DL_APPEND(list->elts, new_element);
32    ++list->size;
33    return 1;
34}
35
[202a7f9]36void abac_list_prepend(abac_list_t *list, void *elt) {
37    abac_list_element_t *new_element = abac_xmalloc(sizeof(abac_list_element_t));
38
39    new_element->ptr = elt;
40    DL_PREPEND(list->elts, new_element);
41    ++list->size;
42}
43
[6d5623e]44int abac_list_remove(abac_list_t *list, void *elt) {
45    abac_list_element_t *cur;
[d526b7a]46
47    // iterate the list, remove the item if we find it
48    DL_FOREACH(list->elts, cur) {
49        if (cur->ptr == elt) {
50            DL_DELETE(list->elts, cur);
[be963dc]51            free(cur);
[90d20f0]52            --list->size;
[d526b7a]53            return 1;
54        }
55    }
56
[202a7f9]57    // return false if we don't
[d526b7a]58    return 0;
59}
60
[6d5623e]61int abac_list_size(abac_list_t *list) {
[53e540d]62    if (list)
63        return list->size;
64    return 0;
[90d20f0]65}
66
[6d5623e]67void abac_list_free(abac_list_t *list) {
68    abac_list_element_t *elt, *tmp;
[d8990b3]69
[53e540d]70    if (list) {
71        // free everthing in the list
72        DL_FOREACH_SAFE(list->elts, elt, tmp) {
73            DL_DELETE(list->elts, elt);
74            free(elt);
75        }
[d8990b3]76
[53e540d]77        // free the list
78        free(list);
79    }
[d8990b3]80}
Note: See TracBrowser for help on using the repository browser.