xen_sxpr.h 2.5 KB
Newer Older
1 2 3
/*
 * xen_sxpr.h: Xen SEXPR parsing functions
 *
4
 * Copyright (C) 2006-2008, 2010, 2012 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * Copyright (C) 2011 Univention GmbH
 * Copyright (C) 2005,2006
 *
 * 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
19
 * License along with this library.  If not, see
O
Osier Yang 已提交
20
 * <http://www.gnu.org/licenses/>.
21 22
 */

23 24
#ifndef LIBVIRT_XEN_SXPR_H
# define LIBVIRT_XEN_SXPR_H
25 26

# include "internal.h"
27
# include "virconf.h"
28
# include "domain_conf.h"
29
# include "virsexpr.h"
30 31

/* helper functions to get the dom id from a sexpr */
32 33
int xenGetDomIdFromSxprString(const char *sexpr, int *id);
int xenGetDomIdFromSxpr(const struct sexpr *root, int *id);
34

35 36 37 38 39
virDomainDefPtr xenParseSxprString(const char *sexpr,
                                   char *tty,
                                   int vncport,
                                   virCapsPtr caps,
                                   virDomainXMLOptionPtr xmlopt);
40

41
virDomainDefPtr xenParseSxpr(const struct sexpr *root,
42 43 44 45 46
                             const char *cpus,
                             char *tty,
                             int vncport,
                             virCapsPtr caps,
                             virDomainXMLOptionPtr xmlopt);
47

M
Markus Groß 已提交
48
int xenParseSxprSound(virDomainDefPtr def, const char *str);
49

M
Markus Groß 已提交
50
virDomainChrDefPtr xenParseSxprChar(const char *value, const char *tty);
51

52 53
int xenParseSxprVifRate(const char *rate, unsigned long long *kbytes_per_sec);

54
int xenFormatSxprDisk(virDomainDiskDefPtr def, virBufferPtr buf, int hvm,
55
                      int isAttach);
56

M
Markus Groß 已提交
57 58
int xenFormatSxprNet(virConnectPtr conn,
                     virDomainNetDefPtr def, virBufferPtr buf, int hvm,
59
                     int isAttach);
60

M
Markus Groß 已提交
61 62
int xenFormatSxprOnePCI(virDomainHostdevDefPtr def, virBufferPtr buf,
                        int detach);
63

M
Markus Groß 已提交
64 65 66
int xenFormatSxprChr(virDomainChrDefPtr def, virBufferPtr buf);
int xenFormatSxprSound(virDomainDefPtr def, virBufferPtr buf);

67
char * xenFormatSxpr(virConnectPtr conn, virDomainDefPtr def);
68

69
#endif /* LIBVIRT_XEN_SXPR_H */