2011-03-28 10:48:36 -07:00
|
|
|
|
/* Copyright (c) 2009, 2010, 2011 Nicira Networks
|
2009-11-04 15:11:44 -08:00
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at:
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef OVSDB_TYPES_H
|
|
|
|
|
#define OVSDB_TYPES_H 1
|
|
|
|
|
|
2010-02-08 14:09:36 -08:00
|
|
|
|
#include <float.h>
|
2009-11-04 15:11:44 -08:00
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#include "compiler.h"
|
|
|
|
|
#include "uuid.h"
|
|
|
|
|
|
|
|
|
|
struct json;
|
|
|
|
|
|
|
|
|
|
/* An atomic type: one that OVSDB regards as a single unit of data. */
|
|
|
|
|
enum ovsdb_atomic_type {
|
|
|
|
|
OVSDB_TYPE_VOID, /* No value. */
|
|
|
|
|
OVSDB_TYPE_INTEGER, /* Signed 64-bit integer. */
|
|
|
|
|
OVSDB_TYPE_REAL, /* IEEE 754 double-precision floating point. */
|
|
|
|
|
OVSDB_TYPE_BOOLEAN, /* True or false. */
|
|
|
|
|
OVSDB_TYPE_STRING, /* UTF-8 string. */
|
|
|
|
|
OVSDB_TYPE_UUID, /* RFC 4122 UUID referencing a table row. */
|
|
|
|
|
OVSDB_N_TYPES
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static inline bool ovsdb_atomic_type_is_valid(enum ovsdb_atomic_type);
|
|
|
|
|
bool ovsdb_atomic_type_from_string(const char *, enum ovsdb_atomic_type *);
|
|
|
|
|
struct ovsdb_error *ovsdb_atomic_type_from_json(enum ovsdb_atomic_type *,
|
|
|
|
|
const struct json *);
|
|
|
|
|
const char *ovsdb_atomic_type_to_string(enum ovsdb_atomic_type);
|
|
|
|
|
struct json *ovsdb_atomic_type_to_json(enum ovsdb_atomic_type);
|
|
|
|
|
|
2010-02-08 14:09:36 -08:00
|
|
|
|
/* An atomic type plus optional constraints. */
|
|
|
|
|
|
2010-03-15 15:41:54 -07:00
|
|
|
|
enum ovsdb_ref_type {
|
|
|
|
|
OVSDB_REF_STRONG, /* Target must exist. */
|
|
|
|
|
OVSDB_REF_WEAK /* Delete reference if target disappears. */
|
|
|
|
|
};
|
|
|
|
|
|
2010-02-08 14:09:36 -08:00
|
|
|
|
struct ovsdb_base_type {
|
|
|
|
|
enum ovsdb_atomic_type type;
|
2010-02-25 14:59:33 -08:00
|
|
|
|
|
|
|
|
|
/* If nonnull, a datum with keys of type 'type' that expresses all the
|
|
|
|
|
* valid values for this base_type. */
|
|
|
|
|
struct ovsdb_datum *enum_;
|
|
|
|
|
|
2010-02-08 14:09:36 -08:00
|
|
|
|
union {
|
|
|
|
|
struct ovsdb_integer_constraints {
|
|
|
|
|
int64_t min; /* minInteger or INT64_MIN. */
|
|
|
|
|
int64_t max; /* maxInteger or INT64_MAX. */
|
|
|
|
|
} integer;
|
|
|
|
|
|
|
|
|
|
struct ovsdb_real_constraints {
|
|
|
|
|
double min; /* minReal or -DBL_MAX. */
|
|
|
|
|
double max; /* minReal or DBL_MAX. */
|
|
|
|
|
} real;
|
|
|
|
|
|
|
|
|
|
/* No constraints for Boolean types. */
|
|
|
|
|
|
|
|
|
|
struct ovsdb_string_constraints {
|
|
|
|
|
unsigned int minLen; /* minLength or 0. */
|
|
|
|
|
unsigned int maxLen; /* maxLength or UINT_MAX. */
|
|
|
|
|
} string;
|
2010-02-08 14:09:41 -08:00
|
|
|
|
|
|
|
|
|
struct ovsdb_uuid_constraints {
|
|
|
|
|
char *refTableName; /* Name of referenced table, or NULL. */
|
|
|
|
|
struct ovsdb_table *refTable; /* Referenced table, if available. */
|
2010-03-15 15:41:54 -07:00
|
|
|
|
enum ovsdb_ref_type refType; /* Reference type. */
|
2010-02-08 14:09:41 -08:00
|
|
|
|
} uuid;
|
2010-02-08 14:09:36 -08:00
|
|
|
|
} u;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define OVSDB_BASE_VOID_INIT { .type = OVSDB_TYPE_VOID }
|
|
|
|
|
#define OVSDB_BASE_INTEGER_INIT { .type = OVSDB_TYPE_INTEGER, \
|
|
|
|
|
.u.integer = { INT64_MIN, INT64_MAX } }
|
|
|
|
|
#define OVSDB_BASE_REAL_INIT { .type = OVSDB_TYPE_REAL, \
|
|
|
|
|
.u.real = { -DBL_MAX, DBL_MAX } }
|
|
|
|
|
#define OVSDB_BASE_BOOLEAN_INIT { .type = OVSDB_TYPE_BOOLEAN }
|
2010-02-08 15:37:49 -08:00
|
|
|
|
#define OVSDB_BASE_STRING_INIT { .type = OVSDB_TYPE_STRING, \
|
2010-02-23 15:57:50 -08:00
|
|
|
|
.u.string = { 0, UINT_MAX } }
|
2010-02-08 14:09:41 -08:00
|
|
|
|
#define OVSDB_BASE_UUID_INIT { .type = OVSDB_TYPE_UUID, \
|
2010-03-15 15:41:54 -07:00
|
|
|
|
.u.uuid = { NULL, NULL, 0 } }
|
2010-02-08 14:09:36 -08:00
|
|
|
|
|
|
|
|
|
void ovsdb_base_type_init(struct ovsdb_base_type *, enum ovsdb_atomic_type);
|
|
|
|
|
void ovsdb_base_type_clone(struct ovsdb_base_type *,
|
|
|
|
|
const struct ovsdb_base_type *);
|
|
|
|
|
void ovsdb_base_type_destroy(struct ovsdb_base_type *);
|
|
|
|
|
|
|
|
|
|
bool ovsdb_base_type_is_valid(const struct ovsdb_base_type *);
|
|
|
|
|
bool ovsdb_base_type_has_constraints(const struct ovsdb_base_type *);
|
|
|
|
|
void ovsdb_base_type_clear_constraints(struct ovsdb_base_type *);
|
2010-02-25 14:59:33 -08:00
|
|
|
|
const struct ovsdb_type *ovsdb_base_type_get_enum_type(enum ovsdb_atomic_type);
|
2010-02-08 14:09:36 -08:00
|
|
|
|
|
|
|
|
|
struct ovsdb_error *ovsdb_base_type_from_json(struct ovsdb_base_type *,
|
|
|
|
|
const struct json *)
|
|
|
|
|
WARN_UNUSED_RESULT;
|
|
|
|
|
struct json *ovsdb_base_type_to_json(const struct ovsdb_base_type *);
|
2010-03-15 15:41:54 -07:00
|
|
|
|
|
|
|
|
|
static inline bool ovsdb_base_type_is_ref(const struct ovsdb_base_type *);
|
|
|
|
|
static inline bool ovsdb_base_type_is_strong_ref(
|
|
|
|
|
const struct ovsdb_base_type *);
|
|
|
|
|
static inline bool ovsdb_base_type_is_weak_ref(const struct ovsdb_base_type *);
|
2010-02-08 14:09:36 -08:00
|
|
|
|
|
2010-01-11 13:30:15 -08:00
|
|
|
|
/* An OVSDB type.
|
2009-11-04 15:11:44 -08:00
|
|
|
|
*
|
2010-01-11 13:30:15 -08:00
|
|
|
|
* Several rules constrain the valid types. See ovsdb_type_is_valid() (in
|
|
|
|
|
* ovsdb-types.c) for details.
|
2009-11-04 15:11:44 -08:00
|
|
|
|
*
|
2010-01-11 13:30:15 -08:00
|
|
|
|
* If 'value_type' is OVSDB_TYPE_VOID, 'n_min' is 1, and 'n_max' is 1, then the
|
|
|
|
|
* type is a single atomic 'key_type'.
|
2009-11-04 15:11:44 -08:00
|
|
|
|
*
|
2010-01-11 13:30:15 -08:00
|
|
|
|
* If 'value_type' is OVSDB_TYPE_VOID and 'n_min' or 'n_max' (or both) has a
|
|
|
|
|
* value other than 1, then the type is a set of 'key_type'. If 'n_min' is 0
|
|
|
|
|
* and 'n_max' is 1, then the type can also be considered an optional
|
|
|
|
|
* 'key_type'.
|
|
|
|
|
*
|
|
|
|
|
* If 'value_type' is not OVSDB_TYPE_VOID, then the type is a map from
|
|
|
|
|
* 'key_type' to 'value_type'. If 'n_min' is 0 and 'n_max' is 1, then the type
|
|
|
|
|
* can also be considered an optional pair of 'key_type' and 'value_type'.
|
2009-11-04 15:11:44 -08:00
|
|
|
|
*/
|
|
|
|
|
struct ovsdb_type {
|
2010-02-08 14:09:36 -08:00
|
|
|
|
struct ovsdb_base_type key;
|
|
|
|
|
struct ovsdb_base_type value;
|
2009-11-04 15:11:44 -08:00
|
|
|
|
unsigned int n_min;
|
|
|
|
|
unsigned int n_max; /* UINT_MAX stands in for "unlimited". */
|
|
|
|
|
};
|
|
|
|
|
|
2010-02-08 14:09:36 -08:00
|
|
|
|
#define OVSDB_TYPE_SCALAR_INITIALIZER(KEY) { KEY, OVSDB_BASE_VOID_INIT, 1, 1 }
|
2009-11-04 15:11:44 -08:00
|
|
|
|
|
|
|
|
|
extern const struct ovsdb_type ovsdb_type_integer;
|
|
|
|
|
extern const struct ovsdb_type ovsdb_type_real;
|
|
|
|
|
extern const struct ovsdb_type ovsdb_type_boolean;
|
|
|
|
|
extern const struct ovsdb_type ovsdb_type_string;
|
|
|
|
|
extern const struct ovsdb_type ovsdb_type_uuid;
|
|
|
|
|
|
2010-02-08 14:09:36 -08:00
|
|
|
|
void ovsdb_type_clone(struct ovsdb_type *, const struct ovsdb_type *);
|
|
|
|
|
void ovsdb_type_destroy(struct ovsdb_type *);
|
|
|
|
|
|
2009-11-04 15:11:44 -08:00
|
|
|
|
bool ovsdb_type_is_valid(const struct ovsdb_type *);
|
|
|
|
|
|
|
|
|
|
static inline bool ovsdb_type_is_scalar(const struct ovsdb_type *);
|
|
|
|
|
static inline bool ovsdb_type_is_optional(const struct ovsdb_type *);
|
|
|
|
|
static inline bool ovsdb_type_is_composite(const struct ovsdb_type *);
|
|
|
|
|
static inline bool ovsdb_type_is_set(const struct ovsdb_type *);
|
|
|
|
|
static inline bool ovsdb_type_is_map(const struct ovsdb_type *);
|
|
|
|
|
|
|
|
|
|
char *ovsdb_type_to_english(const struct ovsdb_type *);
|
|
|
|
|
|
|
|
|
|
struct ovsdb_error *ovsdb_type_from_json(struct ovsdb_type *,
|
|
|
|
|
const struct json *)
|
|
|
|
|
WARN_UNUSED_RESULT;
|
|
|
|
|
struct json *ovsdb_type_to_json(const struct ovsdb_type *);
|
|
|
|
|
|
|
|
|
|
/* Inline function implementations. */
|
|
|
|
|
|
|
|
|
|
static inline bool
|
|
|
|
|
ovsdb_atomic_type_is_valid(enum ovsdb_atomic_type atomic_type)
|
|
|
|
|
{
|
|
|
|
|
return atomic_type >= 0 && atomic_type < OVSDB_N_TYPES;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-15 15:41:54 -07:00
|
|
|
|
static inline bool
|
|
|
|
|
ovsdb_base_type_is_ref(const struct ovsdb_base_type *base)
|
|
|
|
|
{
|
2011-03-28 10:48:36 -07:00
|
|
|
|
return base->type == OVSDB_TYPE_UUID && base->u.uuid.refTableName;
|
2010-03-15 15:41:54 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline bool
|
|
|
|
|
ovsdb_base_type_is_strong_ref(const struct ovsdb_base_type *base)
|
|
|
|
|
{
|
|
|
|
|
return (ovsdb_base_type_is_ref(base)
|
|
|
|
|
&& base->u.uuid.refType == OVSDB_REF_STRONG);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline bool
|
|
|
|
|
ovsdb_base_type_is_weak_ref(const struct ovsdb_base_type *base)
|
|
|
|
|
{
|
|
|
|
|
return (ovsdb_base_type_is_ref(base)
|
|
|
|
|
&& base->u.uuid.refType == OVSDB_REF_WEAK);
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-04 15:11:44 -08:00
|
|
|
|
static inline bool ovsdb_type_is_scalar(const struct ovsdb_type *type)
|
|
|
|
|
{
|
2010-02-08 14:09:36 -08:00
|
|
|
|
return (type->value.type == OVSDB_TYPE_VOID
|
2009-11-04 15:11:44 -08:00
|
|
|
|
&& type->n_min == 1 && type->n_max == 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline bool ovsdb_type_is_optional(const struct ovsdb_type *type)
|
|
|
|
|
{
|
|
|
|
|
return type->n_min == 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline bool ovsdb_type_is_composite(const struct ovsdb_type *type)
|
|
|
|
|
{
|
|
|
|
|
return type->n_max > 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline bool ovsdb_type_is_set(const struct ovsdb_type *type)
|
|
|
|
|
{
|
2010-02-08 14:09:36 -08:00
|
|
|
|
return (type->value.type == OVSDB_TYPE_VOID
|
2009-11-04 15:11:44 -08:00
|
|
|
|
&& (type->n_min != 1 || type->n_max != 1));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline bool ovsdb_type_is_map(const struct ovsdb_type *type)
|
|
|
|
|
{
|
2010-02-08 14:09:36 -08:00
|
|
|
|
return type->value.type != OVSDB_TYPE_VOID;
|
2009-11-04 15:11:44 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* ovsdb-types.h */
|