1 #ifndef _BABELTRACE_COMPAT_UUID_H
2 #define _BABELTRACE_COMPAT_UUID_H
5 * babeltrace/compat/uuid.h
7 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 /* Includes final \0. */
31 #define BABELTRACE_UUID_STR_LEN 37
32 #define BABELTRACE_UUID_LEN 16
34 #ifdef BABELTRACE_HAVE_LIBUUID
35 #include <uuid/uuid.h>
38 int bt_uuid_generate(unsigned char *uuid_out
)
40 uuid_generate(uuid_out
);
44 /* Sun's libuuid lacks const qualifiers */
47 int bt_uuid_unparse(const unsigned char *uuid_in
, char *str_out
)
49 uuid_unparse((unsigned char *) uuid_in
, str_out
);
54 int bt_uuid_parse(const char *str_in
, unsigned char *uuid_out
)
56 return uuid_parse((char *) str_in
, uuid_out
);
60 int bt_uuid_compare(const unsigned char *uuid_a
,
61 const unsigned char *uuid_b
)
63 return uuid_compare((unsigned char *) uuid_a
,
64 (unsigned char *) uuid_b
);
68 int bt_uuid_unparse(const unsigned char *uuid_in
, char *str_out
)
70 uuid_unparse(uuid_in
, str_out
);
75 int bt_uuid_parse(const char *str_in
, unsigned char *uuid_out
)
77 return uuid_parse(str_in
, uuid_out
);
81 int bt_uuid_compare(const unsigned char *uuid_a
,
82 const unsigned char *uuid_b
)
84 return uuid_compare(uuid_a
, uuid_b
);
88 #elif defined(BT_HAVE_LIBC_UUID)
95 int bt_uuid_generate(unsigned char *uuid_out
)
99 uuid_create((uuid_t
*) uuid_out
, &status
);
100 if (status
== uuid_s_ok
)
107 int bt_uuid_unparse(const unsigned char *uuid_in
, char *str_out
)
113 uuid_to_string((uuid_t
*) uuid_in
, &alloc_str
, &status
);
114 if (status
== uuid_s_ok
) {
115 strcpy(str_out
, alloc_str
);
125 int bt_uuid_parse(const char *str_in
, unsigned char *uuid_out
)
129 uuid_from_string(str_in
, (uuid_t
*) uuid_out
, &status
);
130 if (status
== uuid_s_ok
)
137 int bt_uuid_compare(const unsigned char *uuid_a
,
138 const unsigned char *uuid_b
)
142 uuid_compare((uuid_t
*) uuid_a
, (uuid_t
*) uuid_b
, &status
);
143 if (status
== uuid_s_ok
)
149 #elif defined(__MINGW32__)
151 int bt_uuid_generate(unsigned char *uuid_out
);
152 int bt_uuid_unparse(const unsigned char *uuid_in
, char *str_out
);
153 int bt_uuid_parse(const char *str_in
, unsigned char *uuid_out
);
154 int bt_uuid_compare(const unsigned char *uuid_a
,
155 const unsigned char *uuid_b
);
158 #error "Babeltrace needs to have a UUID generator configured."
161 #endif /* _BABELTRACE_COMPAT_UUID_H */
This page took 0.034323 seconds and 4 git commands to generate.