]> git.proxmox.com Git - ovs.git/blame - lib/ovsdb-data.h
debian: Don't require ipsec_local_ip to configure IPsec
[ovs.git] / lib / ovsdb-data.h
CommitLineData
c532bf9d 1/* Copyright (c) 2009, 2010 Nicira Networks
f85f8ebb
BP
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef OVSDB_DATA_H
17#define OVSDB_DATA_H 1
18
19#include <stdlib.h>
20#include "compiler.h"
21#include "ovsdb-types.h"
22
0194f33a 23struct ds;
f85f8ebb 24struct ovsdb_symbol_table;
e4af5615 25struct shash;
f85f8ebb
BP
26
27/* One value of an atomic type (given by enum ovs_atomic_type). */
28union ovsdb_atom {
29 int64_t integer;
30 double real;
31 bool boolean;
32 char *string;
33 struct uuid uuid;
34};
35
36void ovsdb_atom_init_default(union ovsdb_atom *, enum ovsdb_atomic_type);
958ac03a 37const union ovsdb_atom *ovsdb_atom_default(enum ovsdb_atomic_type);
c532bf9d 38bool ovsdb_atom_is_default(const union ovsdb_atom *, enum ovsdb_atomic_type);
f85f8ebb
BP
39void ovsdb_atom_clone(union ovsdb_atom *, const union ovsdb_atom *,
40 enum ovsdb_atomic_type);
41void ovsdb_atom_swap(union ovsdb_atom *, union ovsdb_atom *);
42
5413de95
BP
43/* Returns false if ovsdb_atom_destroy() is a no-op when it is applied to an
44 * initialized atom of the given 'type', true if ovsdb_atom_destroy() actually
45 * does something.
46 *
47 * This can be used to avoid calling ovsdb_atom_destroy() for each element in
48 * an array of homogeneous atoms. (It's not worthwhile for a single atom.) */
f85f8ebb
BP
49static inline bool
50ovsdb_atom_needs_destruction(enum ovsdb_atomic_type type)
51{
52 return type == OVSDB_TYPE_STRING;
53}
54
5413de95
BP
55/* Frees the contents of 'atom', which must have the specified 'type'.
56 *
57 * This does not actually call free(atom). If necessary, the caller must be
58 * responsible for that. */
f85f8ebb
BP
59static inline void
60ovsdb_atom_destroy(union ovsdb_atom *atom, enum ovsdb_atomic_type type)
61{
62 if (type == OVSDB_TYPE_STRING) {
63 free(atom->string);
64 }
65}
66
67uint32_t ovsdb_atom_hash(const union ovsdb_atom *, enum ovsdb_atomic_type,
68 uint32_t basis);
69
70int ovsdb_atom_compare_3way(const union ovsdb_atom *,
71 const union ovsdb_atom *,
72 enum ovsdb_atomic_type);
73
5413de95
BP
74/* Returns true if 'a' and 'b', which are both of type 'type', has the same
75 * contents, false if their contents differ. */
f85f8ebb
BP
76static inline bool ovsdb_atom_equals(const union ovsdb_atom *a,
77 const union ovsdb_atom *b,
78 enum ovsdb_atomic_type type)
79{
80 return !ovsdb_atom_compare_3way(a, b, type);
81}
82
83struct ovsdb_error *ovsdb_atom_from_json(union ovsdb_atom *,
bd76d25d 84 const struct ovsdb_base_type *,
f85f8ebb 85 const struct json *,
fbf925e4 86 struct ovsdb_symbol_table *)
f85f8ebb
BP
87 WARN_UNUSED_RESULT;
88struct json *ovsdb_atom_to_json(const union ovsdb_atom *,
89 enum ovsdb_atomic_type);
0194f33a 90
bd76d25d 91char *ovsdb_atom_from_string(union ovsdb_atom *,
ce5a3e38
BP
92 const struct ovsdb_base_type *, const char *,
93 struct ovsdb_symbol_table *)
1bc6ff29 94 WARN_UNUSED_RESULT;
0194f33a
BP
95void ovsdb_atom_to_string(const union ovsdb_atom *, enum ovsdb_atomic_type,
96 struct ds *);
bd76d25d
BP
97
98struct ovsdb_error *ovsdb_atom_check_constraints(
99 const union ovsdb_atom *, const struct ovsdb_base_type *)
100 WARN_UNUSED_RESULT;
f85f8ebb 101\f
c7239c2f
BP
102/* An instance of an OVSDB type (given by struct ovsdb_type).
103 *
2f47998b
BP
104 * - The 'keys' must be unique and in sorted order. Most functions that modify
105 * an ovsdb_datum maintain these invariants. Functions that don't maintain
106 * the invariants have names that end in "_unsafe". Use ovsdb_datum_sort()
107 * to check and restore these invariants.
c7239c2f 108 *
2f47998b 109 * - 'n' is constrained by the ovsdb_type's 'n_min' and 'n_max'.
c7239c2f 110 *
2f47998b
BP
111 * If 'n' is nonzero, then 'keys' points to an array of 'n' atoms of the type
112 * specified by the ovsdb_type's 'key_type'. (Otherwise, 'keys' should be
113 * null.)
c7239c2f 114 *
2f47998b
BP
115 * If 'n' is nonzero and the ovsdb_type's 'value_type' is not
116 * OVSDB_TYPE_VOID, then 'values' points to an array of 'n' atoms of the type
117 * specified by the 'value_type'. (Otherwise, 'values' should be null.)
118 *
119 * Thus, for 'n' > 0, 'keys' will always be nonnull and 'values' will be
120 * nonnull only for "map" types.
c7239c2f 121 */
f85f8ebb
BP
122struct ovsdb_datum {
123 unsigned int n; /* Number of 'keys' and 'values'. */
124 union ovsdb_atom *keys; /* Each of the ovsdb_type's 'key_type'. */
125 union ovsdb_atom *values; /* Each of the ovsdb_type's 'value_type'. */
126};
127
2f47998b
BP
128/* Basics. */
129void ovsdb_datum_init_empty(struct ovsdb_datum *);
f85f8ebb 130void ovsdb_datum_init_default(struct ovsdb_datum *, const struct ovsdb_type *);
c532bf9d
BP
131bool ovsdb_datum_is_default(const struct ovsdb_datum *,
132 const struct ovsdb_type *);
958ac03a 133const struct ovsdb_datum *ovsdb_datum_default(const struct ovsdb_type *);
f85f8ebb
BP
134void ovsdb_datum_clone(struct ovsdb_datum *, const struct ovsdb_datum *,
135 const struct ovsdb_type *);
136void ovsdb_datum_destroy(struct ovsdb_datum *, const struct ovsdb_type *);
137void ovsdb_datum_swap(struct ovsdb_datum *, struct ovsdb_datum *);
2f47998b
BP
138
139/* Checking and maintaining invariants. */
e9f8f936 140struct ovsdb_error *ovsdb_datum_sort(struct ovsdb_datum *,
bfc96d9b
BP
141 enum ovsdb_atomic_type key_type)
142 WARN_UNUSED_RESULT;
143
144void ovsdb_datum_sort_assert(struct ovsdb_datum *,
145 enum ovsdb_atomic_type key_type);
146
2b66469b
BP
147size_t ovsdb_datum_sort_unique(struct ovsdb_datum *,
148 enum ovsdb_atomic_type key_type,
149 enum ovsdb_atomic_type value_type);
150
bd76d25d
BP
151struct ovsdb_error *ovsdb_datum_check_constraints(
152 const struct ovsdb_datum *, const struct ovsdb_type *)
153 WARN_UNUSED_RESULT;
f85f8ebb 154
2f47998b 155/* Type conversion. */
f85f8ebb
BP
156struct ovsdb_error *ovsdb_datum_from_json(struct ovsdb_datum *,
157 const struct ovsdb_type *,
158 const struct json *,
fbf925e4 159 struct ovsdb_symbol_table *)
f85f8ebb
BP
160 WARN_UNUSED_RESULT;
161struct json *ovsdb_datum_to_json(const struct ovsdb_datum *,
162 const struct ovsdb_type *);
163
1bc6ff29 164char *ovsdb_datum_from_string(struct ovsdb_datum *,
ce5a3e38
BP
165 const struct ovsdb_type *, const char *,
166 struct ovsdb_symbol_table *)
1bc6ff29 167 WARN_UNUSED_RESULT;
0194f33a
BP
168void ovsdb_datum_to_string(const struct ovsdb_datum *,
169 const struct ovsdb_type *, struct ds *);
170
e4af5615
BP
171void ovsdb_datum_from_shash(struct ovsdb_datum *, struct shash *);
172
0194f33a 173/* Comparison. */
f85f8ebb
BP
174uint32_t ovsdb_datum_hash(const struct ovsdb_datum *,
175 const struct ovsdb_type *, uint32_t basis);
176int ovsdb_datum_compare_3way(const struct ovsdb_datum *,
177 const struct ovsdb_datum *,
178 const struct ovsdb_type *);
179bool ovsdb_datum_equals(const struct ovsdb_datum *,
180 const struct ovsdb_datum *,
181 const struct ovsdb_type *);
2f47998b
BP
182
183/* Search. */
184unsigned int ovsdb_datum_find_key(const struct ovsdb_datum *,
185 const union ovsdb_atom *key,
186 enum ovsdb_atomic_type key_type);
187unsigned int ovsdb_datum_find_key_value(const struct ovsdb_datum *,
188 const union ovsdb_atom *key,
189 enum ovsdb_atomic_type key_type,
190 const union ovsdb_atom *value,
191 enum ovsdb_atomic_type value_type);
192
193/* Set operations. */
f85f8ebb
BP
194bool ovsdb_datum_includes_all(const struct ovsdb_datum *,
195 const struct ovsdb_datum *,
196 const struct ovsdb_type *);
197bool ovsdb_datum_excludes_all(const struct ovsdb_datum *,
198 const struct ovsdb_datum *,
199 const struct ovsdb_type *);
e9f8f936
BP
200void ovsdb_datum_union(struct ovsdb_datum *,
201 const struct ovsdb_datum *,
2f47998b
BP
202 const struct ovsdb_type *,
203 bool replace);
e9f8f936
BP
204void ovsdb_datum_subtract(struct ovsdb_datum *a,
205 const struct ovsdb_type *a_type,
206 const struct ovsdb_datum *b,
207 const struct ovsdb_type *b_type);
208
2f47998b
BP
209/* Raw operations that may not maintain the invariants. */
210void ovsdb_datum_remove_unsafe(struct ovsdb_datum *, size_t idx,
211 const struct ovsdb_type *);
212void ovsdb_datum_add_unsafe(struct ovsdb_datum *,
213 const union ovsdb_atom *key,
214 const union ovsdb_atom *value,
215 const struct ovsdb_type *);
216
217/* Type checking. */
f85f8ebb
BP
218static inline bool
219ovsdb_datum_conforms_to_type(const struct ovsdb_datum *datum,
220 const struct ovsdb_type *type)
221{
222 return datum->n >= type->n_min && datum->n <= type->n_max;
223}
224\f
225/* A table mapping from names to data items. Currently the data items are
226 * always UUIDs; perhaps this will be expanded in the future. */
227
2d2d6d4a
BP
228struct ovsdb_symbol {
229 struct uuid uuid; /* The UUID that the symbol represents. */
230 bool used; /* Already used as row UUID? */
231};
232
f85f8ebb
BP
233struct ovsdb_symbol_table *ovsdb_symbol_table_create(void);
234void ovsdb_symbol_table_destroy(struct ovsdb_symbol_table *);
2d2d6d4a
BP
235struct ovsdb_symbol *ovsdb_symbol_table_get(const struct ovsdb_symbol_table *,
236 const char *name);
fbf925e4
BP
237struct ovsdb_symbol *ovsdb_symbol_table_put(struct ovsdb_symbol_table *,
238 const char *name,
239 const struct uuid *, bool used);
240struct ovsdb_symbol *ovsdb_symbol_table_insert(struct ovsdb_symbol_table *,
241 const char *name);
ce5a3e38 242const char *ovsdb_symbol_table_find_unused(const struct ovsdb_symbol_table *);
0194f33a
BP
243\f
244/* Tokenization
245 *
246 * Used by ovsdb_atom_from_string() and ovsdb_datum_from_string(). */
247
1bc6ff29 248char *ovsdb_token_parse(const char **, char **outp) WARN_UNUSED_RESULT;
0194f33a 249bool ovsdb_token_is_delim(unsigned char);
f85f8ebb
BP
250
251#endif /* ovsdb-data.h */