X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fovsdb-data.h;h=e12153c9c71b9974a4d7bd6e87c0be1f19e11d65;hb=597cf5a1c197e269ad4376364422e23f5405105f;hp=70dfd0f659c8b180cd26b60f9d90d80784ed55b6;hpb=0194f33a6c734f0ff946fad9fb6b059b29ebf13e;p=openvswitch diff --git a/lib/ovsdb-data.h b/lib/ovsdb-data.h index 70dfd0f6..e12153c9 100644 --- a/lib/ovsdb-data.h +++ b/lib/ovsdb-data.h @@ -67,17 +67,23 @@ static inline bool ovsdb_atom_equals(const union ovsdb_atom *a, } struct ovsdb_error *ovsdb_atom_from_json(union ovsdb_atom *, - enum ovsdb_atomic_type, + const struct ovsdb_base_type *, const struct json *, - const struct ovsdb_symbol_table *) + struct ovsdb_symbol_table *) WARN_UNUSED_RESULT; struct json *ovsdb_atom_to_json(const union ovsdb_atom *, enum ovsdb_atomic_type); -void ovsdb_atom_from_string(union ovsdb_atom *, enum ovsdb_atomic_type, - const char *); +char *ovsdb_atom_from_string(union ovsdb_atom *, + const struct ovsdb_base_type *, const char *, + struct ovsdb_symbol_table *) + WARN_UNUSED_RESULT; void ovsdb_atom_to_string(const union ovsdb_atom *, enum ovsdb_atomic_type, struct ds *); + +struct ovsdb_error *ovsdb_atom_check_constraints( + const union ovsdb_atom *, const struct ovsdb_base_type *) + WARN_UNUSED_RESULT; /* An instance of an OVSDB type (given by struct ovsdb_type). * @@ -117,19 +123,29 @@ void ovsdb_datum_swap(struct ovsdb_datum *, struct ovsdb_datum *); /* Checking and maintaining invariants. */ struct ovsdb_error *ovsdb_datum_sort(struct ovsdb_datum *, - const struct ovsdb_type *); + enum ovsdb_atomic_type key_type) + WARN_UNUSED_RESULT; + +void ovsdb_datum_sort_assert(struct ovsdb_datum *, + enum ovsdb_atomic_type key_type); + +struct ovsdb_error *ovsdb_datum_check_constraints( + const struct ovsdb_datum *, const struct ovsdb_type *) + WARN_UNUSED_RESULT; /* Type conversion. */ struct ovsdb_error *ovsdb_datum_from_json(struct ovsdb_datum *, const struct ovsdb_type *, const struct json *, - const struct ovsdb_symbol_table *) + struct ovsdb_symbol_table *) WARN_UNUSED_RESULT; struct json *ovsdb_datum_to_json(const struct ovsdb_datum *, const struct ovsdb_type *); -void ovsdb_datum_from_string(struct ovsdb_datum *, - const struct ovsdb_type *, const char *); +char *ovsdb_datum_from_string(struct ovsdb_datum *, + const struct ovsdb_type *, const char *, + struct ovsdb_symbol_table *) + WARN_UNUSED_RESULT; void ovsdb_datum_to_string(const struct ovsdb_datum *, const struct ovsdb_type *, struct ds *); @@ -197,14 +213,18 @@ struct ovsdb_symbol_table *ovsdb_symbol_table_create(void); void ovsdb_symbol_table_destroy(struct ovsdb_symbol_table *); struct ovsdb_symbol *ovsdb_symbol_table_get(const struct ovsdb_symbol_table *, const char *name); -void ovsdb_symbol_table_put(struct ovsdb_symbol_table *, const char *name, - const struct uuid *, bool used); +struct ovsdb_symbol *ovsdb_symbol_table_put(struct ovsdb_symbol_table *, + const char *name, + const struct uuid *, bool used); +struct ovsdb_symbol *ovsdb_symbol_table_insert(struct ovsdb_symbol_table *, + const char *name); +const char *ovsdb_symbol_table_find_unused(const struct ovsdb_symbol_table *); /* Tokenization * * Used by ovsdb_atom_from_string() and ovsdb_datum_from_string(). */ -const char *ovsdb_token_parse(const char *, char **outp); +char *ovsdb_token_parse(const char **, char **outp) WARN_UNUSED_RESULT; bool ovsdb_token_is_delim(unsigned char); #endif /* ovsdb-data.h */