HomePort
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
hpd_map.h
Go to the documentation of this file.
1 /*
2  * Copyright 2011 Aalborg University. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without modification, are
5  * permitted provided that the following conditions are met:
6  *
7  * 1. Redistributions of source code must retain the above copyright notice, this list of
8  * conditions and the following disclaimer.
9  *
10  * 2. Redistributions in binary form must reproduce the above copyright notice, this list
11  * of conditions and the following disclaimer in the documentation and/or other materials
12  * provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY Aalborg University ''AS IS'' AND ANY EXPRESS OR IMPLIED
15  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
16  * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Aalborg University OR
17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
19  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
20  * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
21  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
22  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  *
24  * The views and conclusions contained in the software and documentation are those of the
25  * authors and should not be interpreted as representing official policies, either expressed
26  */
27 
28 #ifndef HOMEPORT_HPD_MAP_H
29 #define HOMEPORT_HPD_MAP_H
30 
31 #include <hpd/hpd_types.h>
32 #include <hpd/common/hpd_queue.h>
33 #include <stddef.h>
34 #include <stdarg.h>
35 
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39 
40 typedef struct hpd_map hpd_map_t;
41 typedef struct hpd_pair hpd_pair_t;
42 
48 hpd_error_t hpd_map_get(hpd_map_t *map, const char *k, const char **v);
49 hpd_error_t hpd_map_get_n(hpd_map_t *map, const char *k, size_t k_len, const char **v);
50 hpd_error_t hpd_map_set(hpd_map_t *map, const char *k, const char *v);
51 hpd_error_t hpd_map_set_n(hpd_map_t *map, const char *k, size_t k_len, const char *v, size_t v_len);
52 hpd_error_t hpd_map_v_matches(hpd_map_t *map, va_list vp);
53 hpd_error_t hpd_pair_get(const hpd_pair_t *pair, const char **key, const char **value);
54 
55 #define hpd_map_foreach(RC, PAIR, MAP) for ( \
56  (RC) = hpd_map_first((MAP), &(PAIR)); \
57  !(RC) && (PAIR); \
58  (RC) = hpd_map_next(&(PAIR)))
59 
60 #ifdef __cplusplus
61 }
62 #endif
63 
64 #endif //HOMEPORT_HPD_MAP_H
data value
Definition: map.c:34
hpd_error_t hpd_map_get_n(hpd_map_t *map, const char *k, size_t k_len, const char **v)
Definition: map.c:107
hpd_error_t hpd_map_set(hpd_map_t *map, const char *k, const char *v)
Definition: map.c:175
hpd_error_t hpd_map_next(hpd_pair_t **pair)
Definition: map.c:60
hpd_error_t hpd_map_first(hpd_map_t *map, hpd_pair_t **pair)
Definition: map.c:52
hpd_error_t hpd_map_free(hpd_map_t *map)
Definition: map.c:79
hpd_error_t hpd_map_remove(hpd_map_t *map, hpd_pair_t *pair)
Definition: map.c:68
hpd_error_t hpd_map_set_n(hpd_map_t *map, const char *k, size_t k_len, const char *v, size_t v_len)
Definition: map.c:195
data key
enum hpd_error hpd_error_t
Definition: hpd_types.h:167
hpd_error_t hpd_map_get(hpd_map_t *map, const char *k, const char **v)
Definition: map.c:92
hpd_error_t hpd_map_v_matches(hpd_map_t *map, va_list vp)
Definition: map.c:215
hpd_error_t hpd_map_alloc(hpd_map_t **map)
Definition: map.c:40
hpd_error_t hpd_pair_get(const hpd_pair_t *pair, const char **key, const char **value)
Definition: map.c:229
struct hpd_map hpd_map_t
Definition: hpd_map.h:40