aboutsummaryrefslogtreecommitdiffstats
path: root/libparc/parc/algol/parc_Map.h
blob: c63b23c54d1ed19a1a0f370f15af3c8d8924fda2 (plain)
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
/*
 * Copyright (c) 2017 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @file parc_Map.h
 * @ingroup datastructures
 * @brief An object that maps keys to values.
 *
 * A map cannot contain duplicate keys; each key can map to at most one value.
 *
 */
#ifndef libparc_parc_Map_h
#define libparc_parc_Map_h
#include <stdbool.h>

struct parc_map;
typedef struct parc_map PARCMap;

typedef struct parc_map_interface {
    /**
     * Removes all of the mappings from this map.
     *
     * The map will be empty after this call returns.
     *
     * @param [in,out] map The instance of `PARCMap` to be cleared of mappings
     *
     *
     * Example:
     * @code
     * {
     *     <#example#>
     * }
     * @endcode
     *
     */
    void (*parcMap_Clear)(PARCMap *map);

    /**
     * Returns true if this map contains a mapping for the specified key.
     *
     * @param [in] map A pointer to the instance of `PARCMap` to check
     * @param [in] key A pointer to the key to check for in @p map
     *
     * @return True if the map cnatins a mapping for the specified key
     *
     * Example:
     * @code
     * {
     *     <#example#>
     * }
     * @endcode
     */
    bool (*parcMap_ContainsKey)(PARCMap *map, void *key);

    /**
     * Returns true if this map maps one or more keys to the specified value.
     *
     * @param [in] map A pointer to the instance of `PARCMap` to check
     * @param [in] value A pointer to the value to check for in @p map
     *
     * @return True if the map contains one or more keys that map to @p value.
     *
     * Example:
     * @code
     * {
     *     <#example#>
     * }
     * @endcode
     */
    bool (*parcMap_ContainsValue)(PARCMap *map, void *value);

    /**
     * Compares the specified object with this map for equality.
     *
     * @param [in] map A pointer to the instance of `PARCMap` to check
     * @param [in] other A pointer to the other instance of `PARCMap` to compare
     * @return  True is the two maps are equal.
     *
     * Example:
     * @code
     * {
     *     <#example#>
     * }
     * @endcode
     *
     */
    bool (*parcMap_Equals)(PARCMap *map, void *other);

    /**
     * Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
     *
     * @param [in] map A pointer to the instance of `PARCMap` to check
     * @param [in] key A pointer to the key to check for in @p map
     *
     * @return NULL If the @p key is not present in @p map
     * @return NOT NULL The value to which the @p key is mapped.
     *
     * Example:
     * @code
     * {
     *     <#example#>
     * }
     * @endcode
     *
     */
    void *(*parcMap_Get)(PARCMap * map, void *key);

    /**
     * Returns the hash code value for this map.
     *
     * @param [in] map A pointer to the instance of `PARCMap` to hash
     *
     * @return The hash of the instance of `PARCMap`
     *
     * Example:
     * @code
     * {
     *     <#example#>
     * }
     * @endcode
     */
    int (*parcMap_HashCode)(PARCMap *map);

    /**
     * Returns true if this map contains no key-value mappings.
     *
     *
     * @param [in] map A pointer to the instance of `PARCMap` to check
     *
     * @return True if the map contains no mappings.
     *
     * Example:
     * @code
     * {
     *     <#example#>
     * }
     * @endcode
     */
    bool (*parcMap_IsEmpty)(PARCMap *map);

    /**
     * Associates the specified value with the specified key in this map (optional operation).
     *
     * @param [in,out] map A pointer to the instance of `PARCMap` in which to insert @p value at @p key.
     * @param [in] key A pointer to the key in @p map in which to insert @p value.
     * @param [in] value A pointer to the the value to insert at @p key in @p map.
     *
     * @return
     *
     * Example:
     * @code
     * {
     *     <#example#>
     * }
     * @endcode
     */
    void *(*parcMap_Put)(PARCMap * map, void *key, void *value);

    /**
     * Copies all of the mappings from the specified map to this map (optional operation).
     *
     * @param [in,out] map The instance of `PARCMap` to be modified.
     * @param [in] other The instance of `PARCMap` whose mappings should be copied to @p map.
     *
     * Example:
     * @code
     * {
     *     <#example#>
     * }
     * @endcode
     */
    void (*parcMap_PutAll)(PARCMap *map, PARCMap *other);

    /**
     * Removes the mapping for a key from this map if it is present (optional operation).
     *
     * @param [in,out] map The instance of `PARCMap` to be modified.
     * @param [in] key The key to the mapping to be removed
     *
     * @return
     *
     * Example:
     * @code
     * {
     *     <#example#>
     * }
     * @endcode
     */
    void *(*parcMap_Remove)(PARCMap * map, void *key);

    /**
     * Returns the number of key-value mappings in this map.
     *
     * @param [in,out] map The instance of `PARCMap` to be inspected.
     *
     * @return int The number of mappings in the map
     *
     * Example:
     * @code
     * {
     *     <#example#>
     * }
     * @endcode
     *
     */
    int (*parcMap_Size)(PARCMap *map);
} PARCMapInterface;

/**
 * Create a PARCMap instance.
 *
 * Create an instance of `PARCMap` wrapping the given pointer to a base map
 * interface and the {@ link PARCMapInterface} structure containing pointers
 * to functions performing the actual Map operations.
 *
 * @param [in] map A pointer to the structure for the new instance of `PARCMap`
 * @param [in] interface A pointer to the instance of `PARCMapInterface`
 * @return A new instance of `PARCMap`
 *
 * Example:
 * @code
 * {
 *     <#example#>
 * }
 * @endcode
 */
PARCMap *parcMap_Create(void *map, PARCMapInterface *interface);

/**
 * Removes all of the mappings from this map.
 *
 * The map will be empty after this call returns.
 *
 * @param [in,out] map A pointer to the instance of `PARCMap` to be cleared.
 *
 *
 * Example:
 * @code
 * {
 *     <#example#>
 * }
 * @endcode
 */
void parcMap_Clear(PARCMap *map);

/**
 * Returns true if this map contains a mapping for the specified key.
 *
 * @param [in] map A pointer to the instance of `PARCMap` to be checked.
 * @param [in] key A pointer to the key to be checked for in @p map
 *
 * @return True if the specified key is found in the map.
 *
 * Example:
 * @code
 * {
 *     <#example#>
 * }
 * @endcode
 */
bool parcMap_ContainsKey(PARCMap *map, void *key);

/**
 * Returns true if this map maps one or more keys to the specified value.
 *
 * @param [in] map A pointer to the instance of `PARCMap` to be checked.
 * @param [in] value A pointer to the value to be checked for in @p map
 *
 * @return True if the specified value has one or more keys pointing to it.
 *
 * Example:
 * @code
 * {
 *     <#example#>
 * }
 * @endcode
 */
bool parcMap_ContainsValue(PARCMap *map, void *value);

/**
 * Determine if two `PARCMap` instances are equal.
 *
 * Two `PARCMap` instances are equal if, and only if, the maps have the same
 * number of elements, all of the keys are equal and the values to which they point are equal
 *
 * The following equivalence relations on non-null `PARCMap` instances are maintained:
 *
 *  * It is reflexive: for any non-null reference value x, `PARCMap_Equals(x, x)`
 *      must return true.
 *
 *  * It is symmetric: for any non-null reference values x and y,
 *    `parcMap_Equals(x, y)` must return true if and only if
 *        `parcMap_Equals(y, x)` returns true.
 *
 *  * It is transitive: for any non-null reference values x, y, and z, if
 *        `parcMap_Equals(x, y)` returns true and
 *        `parcMap_Equals(y, z)` returns true,
 *        then  `parcMap_Equals(x, z)` must return true.
 *
 *  * It is consistent: for any non-null reference values x and y, multiple
 *      invocations of `parcMap_Equals(x, y)` consistently return true or
 *      consistently return false.
 *
 *  * For any non-null reference value x, `parcMap_Equals(x, NULL)` must
 *      return false.
 *
 * @param [in] map A pointer to a `PARCMap` instance.
 * @param [in] other A pointer to a `PARCMap` instance.
 * @return true if the two `PARCMap` instances are equal.
 *
 * Example:
 * @code
 * {
 *    PARCMap *a = parcMap_Create();
 *    PARCMap *b = parcMap_Create();
 *
 *    if (parcMap_Equals(a, b)) {
 *        // true
 *    } else {
 *        // false
 *    }
 * }
 * @endcode
 */
bool parcMap_Equals(PARCMap *map, void *other);

/**
 * Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
 *
 * @param [in] map A pointer to the instance of `PARCMap` to be checked.
 * @param [in] key A pointer to the key to be checked for which the value is to be returned.
 *
 * @return Null if no mapping for @p key exists
 * @return Non Null A pointer to the value for @p key
 *
 * Example:
 * @code
 * {
 *     <#example#>
 * }
 * @endcode
 */
void *parcMap_Get(PARCMap *map, void *key);

/**
 * Returns the hash code value for this map.
 *
 * @param [in] map A pointer to the instance of `PARCMap` to be hashed.
 *
 * @return The hash value for the @p map
 *
 * Example:
 * @code
 * {
 *     <#example#>
 * }
 * @endcode
 */
int parcMap_HashCode(PARCMap *map);

/**
 * Returns true if this map contains no key-value mappings.
 *
 * @param [in] map A pointer to the instance of `PARCMap` to be checked.
 *
 * @return True if the @p map is empty. else false.
 *
 * Example:
 * @code
 * {
 *     <#example#>
 * }
 * @endcode
 */
bool parcMap_IsEmpty(PARCMap *map);

/**
 * Associates the specified value with the specified key in this map (optional operation).
 *
 * @param [in,out] map A pointer to the instance of `PARCMap` into which the key,value pair should be inserted.
 * @param [in] key A pointer to the key to be inserted in @p map
 * @param [in] value A pointer to the value to be inserted in @p map at @p key
 *
 * @return The previous value at @p key if one exists, else NULL
 * Example:
 * @code
 * {
 *     <#example#>
 * }
 * @endcode
 */
void *parcMap_Put(PARCMap *map, void *key, void *value);

/**
 * Copies all of the mappings from the specified map to this map (optional operation).
 *
 * @param [in,out] map The map into which all the mappings from @p other should be copied.
 * @param [in] other The instance of `PARCMap` whose mappings should be copied into @p map
 *
 * Example:
 * @code
 * {
 *     <#example#>
 * }
 * @endcode
 */
void parcMap_PutAll(PARCMap *map, PARCMap *other);

/**
 * Removes the mapping for a key from this map if it is present (optional operation).
 *
 *
 * @param [in,out] map The instance of `PARCMap` in which @p key should be removed if present.
 * @param [in] key The pointer to the key representing the mapping that should be removed from @p map.
 *
 * @return A pointer to the value previously mapped to @p key, if @p key exists.
 *
 * Example:
 * @code
 * {
 *     <#example#>
 * }
 * @endcode
 */
void *parcMap_Remove(PARCMap *map, void *key);

/**
 * Returns the number of key-value mappings in this map.
 *
 * @param [in,out] map The instance of `PARCMap` to be measured
 *
 * @return  The number of mappings in @p map.
 *
 * Example:
 * @code
 * {
 *     <#example#>
 * }
 * @endcode
 */
int parcMap_Size(PARCMap *map);
#endif // libparc_parc_Map_h