]>
Commit | Line | Data |
---|---|---|
2345c77c MR |
1 | /* |
2 | * Core Definitions for QAPI Visitor Classes | |
3 | * | |
4 | * Copyright IBM, Corp. 2011 | |
5 | * | |
6 | * Authors: | |
7 | * Anthony Liguori <[email protected]> | |
8 | * | |
9 | * This work is licensed under the terms of the GNU LGPL, version 2.1 or later. | |
10 | * See the COPYING.LIB file in the top-level directory. | |
11 | * | |
12 | */ | |
13 | #ifndef QAPI_VISITOR_CORE_H | |
14 | #define QAPI_VISITOR_CORE_H | |
15 | ||
cff8b2c6 | 16 | #include "qemu/typedefs.h" |
69dd62df | 17 | #include "qapi/qmp/qobject.h" |
7b1b5d19 | 18 | #include "qapi/error.h" |
2345c77c MR |
19 | #include <stdlib.h> |
20 | ||
21 | typedef struct GenericList | |
22 | { | |
a678e26c MR |
23 | union { |
24 | void *value; | |
25 | uint64_t padding; | |
26 | }; | |
2345c77c MR |
27 | struct GenericList *next; |
28 | } GenericList; | |
29 | ||
2345c77c MR |
30 | void visit_start_handle(Visitor *v, void **obj, const char *kind, |
31 | const char *name, Error **errp); | |
32 | void visit_end_handle(Visitor *v, Error **errp); | |
33 | void visit_start_struct(Visitor *v, void **obj, const char *kind, | |
34 | const char *name, size_t size, Error **errp); | |
35 | void visit_end_struct(Visitor *v, Error **errp); | |
761d524d KW |
36 | void visit_start_implicit_struct(Visitor *v, void **obj, size_t size, |
37 | Error **errp); | |
38 | void visit_end_implicit_struct(Visitor *v, Error **errp); | |
2345c77c MR |
39 | void visit_start_list(Visitor *v, const char *name, Error **errp); |
40 | GenericList *visit_next_list(Visitor *v, GenericList **list, Error **errp); | |
41 | void visit_end_list(Visitor *v, Error **errp); | |
42 | void visit_start_optional(Visitor *v, bool *present, const char *name, | |
43 | Error **errp); | |
44 | void visit_end_optional(Visitor *v, Error **errp); | |
69dd62df KW |
45 | void visit_get_next_type(Visitor *v, int *obj, const int *qtypes, |
46 | const char *name, Error **errp); | |
2345c77c MR |
47 | void visit_type_enum(Visitor *v, int *obj, const char *strings[], |
48 | const char *kind, const char *name, Error **errp); | |
49 | void visit_type_int(Visitor *v, int64_t *obj, const char *name, Error **errp); | |
4e27e819 MR |
50 | void visit_type_uint8(Visitor *v, uint8_t *obj, const char *name, Error **errp); |
51 | void visit_type_uint16(Visitor *v, uint16_t *obj, const char *name, Error **errp); | |
52 | void visit_type_uint32(Visitor *v, uint32_t *obj, const char *name, Error **errp); | |
53 | void visit_type_uint64(Visitor *v, uint64_t *obj, const char *name, Error **errp); | |
54 | void visit_type_int8(Visitor *v, int8_t *obj, const char *name, Error **errp); | |
55 | void visit_type_int16(Visitor *v, int16_t *obj, const char *name, Error **errp); | |
56 | void visit_type_int32(Visitor *v, int32_t *obj, const char *name, Error **errp); | |
57 | void visit_type_int64(Visitor *v, int64_t *obj, const char *name, Error **errp); | |
092705d4 | 58 | void visit_type_size(Visitor *v, uint64_t *obj, const char *name, Error **errp); |
2345c77c MR |
59 | void visit_type_bool(Visitor *v, bool *obj, const char *name, Error **errp); |
60 | void visit_type_str(Visitor *v, char **obj, const char *name, Error **errp); | |
61 | void visit_type_number(Visitor *v, double *obj, const char *name, Error **errp); | |
62 | ||
63 | #endif |