mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-02 11:21:12 +00:00
51ee43aa55
Otherwise, in locations like virobject.c where PROBE is used, for certain configure options, the compiler warns: util/virobject.c:110:1: error: 'intptr_t' undeclared (first use in this function) As long as we are making this header always available, we can clean up several other files. * src/internal.h (includes): Pull in <stdint.h>. * src/conf/nwfilter_conf.h: Rely on internal.h. * src/storage/storage_backend.c: Likewise. * src/storage/storage_backend.h: Likewise. * src/util/cgroup.c: Likewise. * src/util/sexpr.h: Likewise. * src/util/virhashcode.h: Likewise. * src/util/virnetdevvportprofile.h: Likewise. * src/util/virnetlink.h: Likewise. * src/util/virrandom.h: Likewise. * src/vbox/vbox_driver.c: Likewise. * src/xenapi/xenapi_driver.c: Likewise. * src/xenapi/xenapi_utils.c: Likewise. * src/xenapi/xenapi_utils.h: Likewise. * src/xenxs/xenxs_private.h: Likewise. * tests/storagebackendsheepdogtest.c: Likewise.
59 lines
1.7 KiB
C
59 lines
1.7 KiB
C
/*
|
|
* sexpr.h : S-Expression interfaces needed to communicate with the Xen Daemon
|
|
*
|
|
* Copyright (C) 2012 Red Hat, Inc.
|
|
* Copyright (C) 2005 Anthony Liguori <aliguori@us.ibm.com>
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser General
|
|
* Public License. See the file COPYING.LIB in the main directory of this
|
|
* archive for more details.
|
|
*/
|
|
|
|
#ifndef _LIBVIR_SEXPR_H_
|
|
# define _LIBVIR_SEXPR_H_
|
|
|
|
# include "internal.h"
|
|
# include "buf.h"
|
|
|
|
enum sexpr_type {
|
|
SEXPR_NIL,
|
|
SEXPR_CONS,
|
|
SEXPR_VALUE,
|
|
};
|
|
|
|
struct sexpr {
|
|
enum sexpr_type kind;
|
|
union {
|
|
struct {
|
|
struct sexpr *car;
|
|
struct sexpr *cdr;
|
|
} s;
|
|
char *value;
|
|
} u;
|
|
};
|
|
|
|
/* conversion to/from strings */
|
|
int sexpr2string(const struct sexpr *sexpr, virBufferPtr buffer);
|
|
struct sexpr *string2sexpr(const char *buffer);
|
|
|
|
/* constructors and destructors */
|
|
struct sexpr *sexpr_nil(void);
|
|
struct sexpr *sexpr_string(const char *str, ssize_t len);
|
|
struct sexpr *sexpr_cons(const struct sexpr *car, const struct sexpr *cdr);
|
|
struct sexpr *sexpr_append(struct sexpr *lst, const struct sexpr *item);
|
|
void sexpr_free(struct sexpr *sexpr);
|
|
|
|
/* lookup in S-Expressions */
|
|
const char *sexpr_node(const struct sexpr *sexpr, const char *node);
|
|
int sexpr_node_copy(const struct sexpr *sexpr, const char *node, char **dst);
|
|
const char *sexpr_fmt_node(const struct sexpr *sexpr, const char *fmt, ...)
|
|
ATTRIBUTE_FMT_PRINTF(2,3);
|
|
struct sexpr *sexpr_lookup(const struct sexpr *sexpr, const char *node);
|
|
int sexpr_has(const struct sexpr *sexpr, const char *node);
|
|
|
|
int sexpr_int(const struct sexpr *sexpr, const char *name);
|
|
double sexpr_float(const struct sexpr *sexpr, const char *name);
|
|
uint64_t sexpr_u64(const struct sexpr *sexpr, const char *name);
|
|
|
|
#endif
|