test: change replication test to use unix domain socket
[cascardo/ovs.git] / lib / sset.h
1 /*
2  * Copyright (c) 2011, 2012, 2013, 2015, 2016 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef SSET_H
18 #define SSET_H
19
20 #include "openvswitch/hmap.h"
21 #include "util.h"
22
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26
27 struct sset_node {
28     struct hmap_node hmap_node;
29     char name[1];
30 };
31
32 /* A set of strings. */
33 struct sset {
34     struct hmap map;
35 };
36
37 #define SSET_INITIALIZER(SSET) { HMAP_INITIALIZER(&(SSET)->map) }
38
39 /* Basics. */
40 void sset_init(struct sset *);
41 void sset_destroy(struct sset *);
42 void sset_clone(struct sset *, const struct sset *);
43 void sset_swap(struct sset *, struct sset *);
44 void sset_moved(struct sset *);
45
46 void sset_from_delimited_string(struct sset *, const char *s,
47                                 const char *delimiters);
48
49 /* Count. */
50 bool sset_is_empty(const struct sset *);
51 size_t sset_count(const struct sset *);
52
53 /* Insertion. */
54 struct sset_node *sset_add(struct sset *, const char *);
55 struct sset_node *sset_add_and_free(struct sset *, char *);
56 void sset_add_assert(struct sset *, const char *);
57 void sset_add_array(struct sset *, char **, size_t n);
58
59 /* Deletion. */
60 void sset_clear(struct sset *);
61 void sset_delete(struct sset *, struct sset_node *);
62 bool sset_find_and_delete(struct sset *, const char *);
63 void sset_find_and_delete_assert(struct sset *, const char *);
64 char *sset_pop(struct sset *);
65
66 /* Search. */
67 struct sset_node *sset_find(const struct sset *, const char *);
68 bool sset_contains(const struct sset *, const char *);
69 bool sset_equals(const struct sset *, const struct sset *);
70
71 struct sset_position {
72     struct hmap_position pos;
73 };
74
75 struct sset_node *sset_at_position(const struct sset *,
76                                    struct sset_position *);
77
78 /* Set operations. */
79 void sset_intersect(struct sset *, const struct sset *);
80
81 /* Iteration macros. */
82 #define SSET_FOR_EACH(NAME, SSET)               \
83     for ((NAME) = SSET_FIRST(SSET);             \
84          NAME != NULL;                          \
85          (NAME) = SSET_NEXT(SSET, NAME))
86
87 #define SSET_FOR_EACH_SAFE(NAME, NEXT, SSET)        \
88     for ((NAME) = SSET_FIRST(SSET);                 \
89          (NAME != NULL                              \
90           ? (NEXT) = SSET_NEXT(SSET, NAME), true    \
91           : false);                                 \
92          (NAME) = (NEXT))
93
94 const char **sset_array(const struct sset *);
95 const char **sset_sort(const struct sset *);
96 \f
97 /* Implementation helper macros. */
98
99 #define SSET_NODE_FROM_HMAP_NODE(HMAP_NODE) \
100     CONTAINER_OF(HMAP_NODE, struct sset_node, hmap_node)
101 #define SSET_NAME_FROM_HMAP_NODE(HMAP_NODE) \
102     HMAP_NODE == NULL                       \
103     ? NULL                                  \
104     : (CONST_CAST(const char *, (SSET_NODE_FROM_HMAP_NODE(HMAP_NODE)->name)))
105 #define SSET_NODE_FROM_NAME(NAME) CONTAINER_OF(NAME, struct sset_node, name)
106 #define SSET_FIRST(SSET)                                    \
107     (BUILD_ASSERT_TYPE(SSET, struct sset *),                \
108      SSET_NAME_FROM_HMAP_NODE(hmap_first(&(SSET)->map)))
109 #define SSET_NEXT(SSET, NAME)                                           \
110     (BUILD_ASSERT_TYPE(SSET, struct sset *),                            \
111      SSET_NAME_FROM_HMAP_NODE(                                          \
112          hmap_next(&(SSET)->map, &SSET_NODE_FROM_NAME(NAME)->hmap_node)))
113
114 #ifdef __cplusplus
115 }
116 #endif
117
118 #endif /* sset.h */