]> git.proxmox.com Git - mirror_ovs.git/blame - lib/uuid.h
ovsdb-idl: Avoid sending redundant conditional monitoring updates
[mirror_ovs.git] / lib / uuid.h
CommitLineData
c80eac1f 1/* Copyright (c) 2008, 2009, 2010, 2016 Nicira, Inc.
d918d9d1
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 UUID_H
17#define UUID_H 1
18
d5dc60f0 19#include "openvswitch/uuid.h"
d918d9d1
BP
20
21/* Formats a UUID as a string, in the conventional format.
22 *
23 * Example:
24 * struct uuid uuid = ...;
25 * printf("This UUID is "UUID_FMT"\n", UUID_ARGS(&uuid));
26 *
27 */
28#define UUID_LEN 36
29#define UUID_FMT "%08x-%04x-%04x-%04x-%04x%08x"
30#define UUID_ARGS(UUID) \
31 ((unsigned int) ((UUID)->parts[0])), \
32 ((unsigned int) ((UUID)->parts[1] >> 16)), \
33 ((unsigned int) ((UUID)->parts[1] & 0xffff)), \
34 ((unsigned int) ((UUID)->parts[2] >> 16)), \
35 ((unsigned int) ((UUID)->parts[2] & 0xffff)), \
36 ((unsigned int) ((UUID)->parts[3]))
37
38/* Returns a hash value for 'uuid'. This hash value is the same regardless of
39 * whether we are running on a 32-bit or 64-bit or big-endian or little-endian
40 * architecture. */
41static inline size_t
42uuid_hash(const struct uuid *uuid)
43{
44 return uuid->parts[0];
45}
46
47/* Returns true if 'a == b', false otherwise. */
48static inline bool
49uuid_equals(const struct uuid *a, const struct uuid *b)
50{
51 return (a->parts[0] == b->parts[0]
52 && a->parts[1] == b->parts[1]
53 && a->parts[2] == b->parts[2]
54 && a->parts[3] == b->parts[3]);
55}
56
57void uuid_init(void);
58void uuid_generate(struct uuid *);
59void uuid_zero(struct uuid *);
c532bf9d 60bool uuid_is_zero(const struct uuid *);
d918d9d1
BP
61int uuid_compare_3way(const struct uuid *, const struct uuid *);
62bool uuid_from_string(struct uuid *, const char *);
d0d15d58 63bool uuid_from_string_prefix(struct uuid *, const char *);
c80eac1f 64int uuid_is_partial_string(const char *);
78145f6e 65void uuid_set_bits_v4(struct uuid *);
d918d9d1 66
27365e26 67#endif /* uuid.h */