ovsdb: Implement new "declare" operation.
[cascardo/ovs.git] / lib / ovsdb-data.h
1 /* Copyright (c) 2009 Nicira Networks
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
23 struct ovsdb_symbol_table;
24
25 /* One value of an atomic type (given by enum ovs_atomic_type). */
26 union ovsdb_atom {
27     int64_t integer;
28     double real;
29     bool boolean;
30     char *string;
31     struct uuid uuid;
32 };
33
34 void ovsdb_atom_init_default(union ovsdb_atom *, enum ovsdb_atomic_type);
35 void ovsdb_atom_clone(union ovsdb_atom *, const union ovsdb_atom *,
36                       enum ovsdb_atomic_type);
37 void ovsdb_atom_swap(union ovsdb_atom *, union ovsdb_atom *);
38
39 static inline bool
40 ovsdb_atom_needs_destruction(enum ovsdb_atomic_type type)
41 {
42     return type == OVSDB_TYPE_STRING;
43 }
44
45 static inline void
46 ovsdb_atom_destroy(union ovsdb_atom *atom, enum ovsdb_atomic_type type)
47 {
48     if (type == OVSDB_TYPE_STRING) {
49         free(atom->string);
50     }
51 }
52
53 uint32_t ovsdb_atom_hash(const union ovsdb_atom *, enum ovsdb_atomic_type,
54                          uint32_t basis);
55
56 int ovsdb_atom_compare_3way(const union ovsdb_atom *,
57                             const union ovsdb_atom *,
58                             enum ovsdb_atomic_type);
59
60 static inline bool ovsdb_atom_equals(const union ovsdb_atom *a,
61                                      const union ovsdb_atom *b,
62                                      enum ovsdb_atomic_type type)
63 {
64     return !ovsdb_atom_compare_3way(a, b, type);
65 }
66
67 struct ovsdb_error *ovsdb_atom_from_json(union ovsdb_atom *,
68                                          enum ovsdb_atomic_type,
69                                          const struct json *,
70                                          const struct ovsdb_symbol_table *)
71     WARN_UNUSED_RESULT;
72 struct json *ovsdb_atom_to_json(const union ovsdb_atom *,
73                                 enum ovsdb_atomic_type);
74 \f
75 /* One value of an OVSDB type (given by struct ovsdb_type). */
76 struct ovsdb_datum {
77     unsigned int n;             /* Number of 'keys' and 'values'. */
78     union ovsdb_atom *keys;     /* Each of the ovsdb_type's 'key_type'. */
79     union ovsdb_atom *values;   /* Each of the ovsdb_type's 'value_type'. */
80 };
81
82 void ovsdb_datum_init_default(struct ovsdb_datum *, const struct ovsdb_type *);
83 void ovsdb_datum_clone(struct ovsdb_datum *, const struct ovsdb_datum *,
84                        const struct ovsdb_type *);
85 void ovsdb_datum_destroy(struct ovsdb_datum *, const struct ovsdb_type *);
86 void ovsdb_datum_swap(struct ovsdb_datum *, struct ovsdb_datum *);
87
88 struct ovsdb_error *ovsdb_datum_from_json(struct ovsdb_datum *,
89                                           const struct ovsdb_type *,
90                                           const struct json *,
91                                           const struct ovsdb_symbol_table *)
92     WARN_UNUSED_RESULT;
93 struct json *ovsdb_datum_to_json(const struct ovsdb_datum *,
94                                  const struct ovsdb_type *);
95
96 uint32_t ovsdb_datum_hash(const struct ovsdb_datum *,
97                           const struct ovsdb_type *, uint32_t basis);
98 int ovsdb_datum_compare_3way(const struct ovsdb_datum *,
99                              const struct ovsdb_datum *,
100                              const struct ovsdb_type *);
101 bool ovsdb_datum_equals(const struct ovsdb_datum *,
102                         const struct ovsdb_datum *,
103                         const struct ovsdb_type *);
104 bool ovsdb_datum_includes_all(const struct ovsdb_datum *,
105                               const struct ovsdb_datum *,
106                               const struct ovsdb_type *);
107 bool ovsdb_datum_excludes_all(const struct ovsdb_datum *,
108                               const struct ovsdb_datum *,
109                               const struct ovsdb_type *);
110
111 static inline bool
112 ovsdb_datum_conforms_to_type(const struct ovsdb_datum *datum,
113                              const struct ovsdb_type *type)
114 {
115     return datum->n >= type->n_min && datum->n <= type->n_max;
116 }
117 \f
118 /* A table mapping from names to data items.  Currently the data items are
119  * always UUIDs; perhaps this will be expanded in the future. */
120
121 struct ovsdb_symbol {
122     struct uuid uuid;           /* The UUID that the symbol represents. */
123     bool used;                  /* Already used as row UUID? */
124 };
125
126 struct ovsdb_symbol_table *ovsdb_symbol_table_create(void);
127 void ovsdb_symbol_table_destroy(struct ovsdb_symbol_table *);
128 struct ovsdb_symbol *ovsdb_symbol_table_get(const struct ovsdb_symbol_table *,
129                                             const char *name);
130 void ovsdb_symbol_table_put(struct ovsdb_symbol_table *, const char *name,
131                             const struct uuid *, bool used);
132
133 #endif /* ovsdb-data.h */