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
|
/*
Copyright (C) CFEngine AS
This file is part of CFEngine 3 - written and maintained by CFEngine AS.
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; version 3.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
To the extent this program is licensed as part of the Enterprise
versions of CFEngine, the applicable Commercial Open Source License
(COSL) may apply to this file if you as a licensee so wish it. See
included file COSL.txt.
*/
#ifndef CFENGINE_MAP_H
#define CFENGINE_MAP_H
#include <hash_map_priv.h>
#include <array_map_priv.h>
/*
* Map structure. Details are encapsulated.
*/
typedef struct Map_ Map;
Map *MapNew(MapHashFn hash_fn,
MapKeyEqualFn equal_fn,
MapDestroyDataFn destroy_key_fn,
MapDestroyDataFn destroy_value_fn);
/*
* If the key is in the map, value get replaced. Old value is destroyed.
*/
void MapInsert(Map *map, void *key, void *value);
/*
* Returns whether the key is in the map.
*/
bool MapHasKey(const Map *map, const void *key);
/*
* Returns the value if the key is in map, NULL otherwise. To distinguish
* between NULL as a value and NULL as a lack of entry, use MapHasKey.
*/
void *MapGet(Map *map, const void *key);
/*
* Remove key/value pair from the map. Returns 'true' if key was present in the
* map.
*/
bool MapRemove(Map *map, const void *key);
size_t MapSize(const Map *map);
/*
* MapIterator i = MapIteratorInit(map);
* MapKeyValue *item;
* while ((item = MapIteratorNext(&i)))
* {
* // do something with item->key, item->value
* }
*/
typedef struct
{
bool is_array;
union
{
ArrayMapIterator arraymap_iter;
HashMapIterator hashmap_iter;
};
} MapIterator;
MapIterator MapIteratorInit(Map *map);
MapKeyValue *MapIteratorNext(MapIterator *i);
/*
* Clear the whole map
*/
void MapClear(Map *map);
/*
* Destroy the map object.
*/
void MapDestroy(Map *map);
/*
* Destroy the map object without removing values.
*/
void MapSoftDestroy(Map *map);
/**
* Returns whether the two maps contain the same keys.
* The values DO NOT have to be equal, just the keys.
*/
bool MapContainsSameKeys(const Map *map1, const Map *map2);
void MapPrintStats(const Map *map, FILE *f);
#define TYPED_MAP_DECLARE(Prefix, KeyType, ValueType) \
typedef struct \
{ \
Map *impl; \
} Prefix##Map; \
\
Prefix##Map *Prefix##MapNew(void); \
void Prefix##MapInsert(const Prefix##Map *map, KeyType key, ValueType value); \
bool Prefix##MapHasKey(const Prefix##Map *map, const KeyType key); \
ValueType Prefix##MapGet(const Prefix##Map *map, const KeyType key); \
bool Prefix##MapRemove(const Prefix##Map *map, const KeyType key); \
void Prefix##MapClear(Prefix##Map *map); \
size_t Prefix##MapSize(const Prefix##Map *map); \
void Prefix##MapDestroy(Prefix##Map *map); \
void Prefix##MapSoftDestroy(Prefix##Map *map); \
bool Prefix##MapContainsSameKeys(const Prefix##Map *map1, const Prefix##Map *map2); \
void Prefix##MapPrintStats(const Prefix##Map *map, FILE *f); \
#define TYPED_MAP_DEFINE(Prefix, KeyType, ValueType, hash_fn, equal_fn, \
destroy_key_fn, destroy_value_fn) \
\
Prefix##Map *Prefix##MapNew(void) \
{ \
Prefix##Map *map = xcalloc(1, sizeof(Prefix##Map)); \
map->impl = MapNew(hash_fn, equal_fn, \
destroy_key_fn, destroy_value_fn); \
return map; \
} \
\
void Prefix##MapInsert(const Prefix##Map *map, KeyType key, ValueType value) \
{ \
MapInsert(map->impl, key, value); \
} \
\
bool Prefix##MapHasKey(const Prefix##Map *map, const KeyType key) \
{ \
return MapHasKey(map->impl, key); \
} \
\
ValueType Prefix##MapGet(const Prefix##Map *map, const KeyType key) \
{ \
return MapGet(map->impl, key); \
} \
\
bool Prefix##MapRemove(const Prefix##Map *map, const KeyType key) \
{ \
return MapRemove(map->impl, key); \
} \
\
void Prefix##MapClear(Prefix##Map *map) \
{ \
MapClear(map->impl); \
} \
\
size_t Prefix##MapSize(const Prefix##Map *map) \
{ \
return MapSize(map->impl); \
} \
\
void Prefix##MapDestroy(Prefix##Map *map) \
{ \
MapDestroy(map->impl); \
free(map); \
} \
\
void Prefix##MapSoftDestroy(Prefix##Map *map) \
{ \
MapSoftDestroy(map->impl); \
free(map); \
} \
\
bool Prefix##MapContainsSameKeys(const Prefix##Map *map1, const Prefix##Map *map2) \
{ \
return MapContainsSameKeys(map1->impl, map2->impl); \
} \
\
void Prefix##MapPrintStats(const Prefix##Map *map, FILE *f) \
{ \
return MapPrintStats(map->impl, f); \
} \
TYPED_MAP_DECLARE(String, char *, char *)
#endif
|