2007-02-26 15:32:27 +00:00
|
|
|
/*
|
2012-12-13 18:01:25 +00:00
|
|
|
* viruuid.h: helper APIs for dealing with UUIDs
|
|
|
|
*
|
2013-12-19 22:43:46 +00:00
|
|
|
* Copyright (C) 2007, 2011-2014 Red Hat, Inc.
|
2007-02-26 15:32:27 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2007-02-26 15:32:27 +00:00
|
|
|
*/
|
|
|
|
|
2019-06-18 16:13:08 +00:00
|
|
|
#pragma once
|
2007-02-26 15:32:27 +00:00
|
|
|
|
2019-06-18 16:13:08 +00:00
|
|
|
#include "internal.h"
|
2011-06-06 19:03:15 +00:00
|
|
|
|
2013-12-19 22:43:46 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* VIR_UUID_DEBUG:
|
|
|
|
* @conn: connection
|
|
|
|
* @uuid: possibly null UUID array
|
|
|
|
*/
|
2019-06-18 16:13:08 +00:00
|
|
|
#define VIR_UUID_DEBUG(conn, uuid) \
|
2017-11-03 12:09:47 +00:00
|
|
|
do { \
|
|
|
|
if (uuid) { \
|
|
|
|
char _uuidstr[VIR_UUID_STRING_BUFLEN]; \
|
|
|
|
virUUIDFormat(uuid, _uuidstr); \
|
|
|
|
VIR_DEBUG("conn=%p, uuid=%s", conn, _uuidstr); \
|
|
|
|
} else { \
|
|
|
|
VIR_DEBUG("conn=%p, uuid=(null)", conn); \
|
|
|
|
} \
|
2013-12-19 22:43:46 +00:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
2010-05-25 14:33:51 +00:00
|
|
|
int virSetHostUUIDStr(const char *host_uuid);
|
2011-06-06 19:03:15 +00:00
|
|
|
int virGetHostUUID(unsigned char *host_uuid) ATTRIBUTE_NONNULL(1);
|
2010-05-25 14:33:51 +00:00
|
|
|
|
|
|
|
int virUUIDIsValid(unsigned char *uuid);
|
|
|
|
|
2019-10-15 11:24:34 +00:00
|
|
|
int virUUIDGenerate(unsigned char *uuid) G_GNUC_NO_INLINE;
|
2007-02-26 15:34:24 +00:00
|
|
|
|
2007-08-09 20:19:12 +00:00
|
|
|
int virUUIDParse(const char *uuidstr,
|
2011-10-12 23:24:52 +00:00
|
|
|
unsigned char *uuid)
|
2019-10-14 12:25:14 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
2007-08-09 20:19:12 +00:00
|
|
|
|
2012-08-02 18:06:58 +00:00
|
|
|
const char *virUUIDFormat(const unsigned char *uuid,
|
|
|
|
char *uuidstr) ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|