Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 1 | /* |
| 2 | * String printing Visitor |
| 3 | * |
Eric Blake | 08f9541 | 2016-01-29 06:48:59 -0700 | [diff] [blame] | 4 | * Copyright Red Hat, Inc. 2012-2016 |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 5 | * |
| 6 | * Author: Paolo Bonzini <pbonzini@redhat.com> |
| 7 | * |
| 8 | * This work is licensed under the terms of the GNU LGPL, version 2.1 or later. |
| 9 | * See the COPYING.LIB file in the top-level directory. |
| 10 | * |
| 11 | */ |
| 12 | |
Peter Maydell | cbf2115 | 2016-01-29 17:49:57 +0000 | [diff] [blame] | 13 | #include "qemu/osdep.h" |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 14 | #include "qemu-common.h" |
Paolo Bonzini | 7b1b5d1 | 2012-12-17 18:19:43 +0100 | [diff] [blame] | 15 | #include "qapi/string-output-visitor.h" |
| 16 | #include "qapi/visitor-impl.h" |
Paolo Bonzini | 0b7593e | 2014-02-08 11:01:50 +0100 | [diff] [blame] | 17 | #include "qemu/host-utils.h" |
Paolo Bonzini | e41b509 | 2014-02-08 11:01:57 +0100 | [diff] [blame] | 18 | #include <math.h> |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 19 | #include "qemu/range.h" |
| 20 | |
| 21 | enum ListMode { |
| 22 | LM_NONE, /* not traversing a list of repeated options */ |
Eric Blake | d9f62dd | 2016-04-28 15:45:31 -0600 | [diff] [blame] | 23 | LM_STARTED, /* next_list() ready to be called */ |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 24 | |
| 25 | LM_IN_PROGRESS, /* next_list() has been called. |
| 26 | * |
| 27 | * Generating the next list link will consume the most |
| 28 | * recently parsed QemuOpt instance of the repeated |
| 29 | * option. |
| 30 | * |
| 31 | * Parsing a value into the list link will examine the |
| 32 | * next QemuOpt instance of the repeated option, and |
| 33 | * possibly enter LM_SIGNED_INTERVAL or |
| 34 | * LM_UNSIGNED_INTERVAL. |
| 35 | */ |
| 36 | |
| 37 | LM_SIGNED_INTERVAL, /* next_list() has been called. |
| 38 | * |
| 39 | * Generating the next list link will consume the most |
| 40 | * recently stored element from the signed interval, |
| 41 | * parsed from the most recent QemuOpt instance of the |
| 42 | * repeated option. This may consume QemuOpt itself |
| 43 | * and return to LM_IN_PROGRESS. |
| 44 | * |
| 45 | * Parsing a value into the list link will store the |
| 46 | * next element of the signed interval. |
| 47 | */ |
| 48 | |
| 49 | LM_UNSIGNED_INTERVAL,/* Same as above, only for an unsigned interval. */ |
| 50 | |
Eric Blake | d9f62dd | 2016-04-28 15:45:31 -0600 | [diff] [blame] | 51 | LM_END, /* next_list() called, about to see last element. */ |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 52 | }; |
| 53 | |
| 54 | typedef enum ListMode ListMode; |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 55 | |
| 56 | struct StringOutputVisitor |
| 57 | { |
| 58 | Visitor visitor; |
Paolo Bonzini | 0b7593e | 2014-02-08 11:01:50 +0100 | [diff] [blame] | 59 | bool human; |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 60 | GString *string; |
Eric Blake | 3b098d5 | 2016-06-09 10:48:43 -0600 | [diff] [blame] | 61 | char **result; |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 62 | ListMode list_mode; |
| 63 | union { |
| 64 | int64_t s; |
| 65 | uint64_t u; |
| 66 | } range_start, range_end; |
| 67 | GList *ranges; |
Eric Blake | 1158bb2 | 2016-06-09 10:48:34 -0600 | [diff] [blame] | 68 | void *list; /* Only needed for sanity checking the caller */ |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 69 | }; |
| 70 | |
Eric Blake | d7bea75 | 2016-01-29 06:48:38 -0700 | [diff] [blame] | 71 | static StringOutputVisitor *to_sov(Visitor *v) |
| 72 | { |
| 73 | return container_of(v, StringOutputVisitor, visitor); |
| 74 | } |
| 75 | |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 76 | static void string_output_set(StringOutputVisitor *sov, char *string) |
| 77 | { |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 78 | if (sov->string) { |
| 79 | g_string_free(sov->string, true); |
| 80 | } |
| 81 | sov->string = g_string_new(string); |
| 82 | g_free(string); |
| 83 | } |
| 84 | |
| 85 | static void string_output_append(StringOutputVisitor *sov, int64_t a) |
| 86 | { |
| 87 | Range *r = g_malloc0(sizeof(*r)); |
Markus Armbruster | a0efbf1 | 2016-07-01 13:47:47 +0200 | [diff] [blame] | 88 | |
| 89 | range_set_bounds(r, a, a); |
Eric Blake | 7c47959 | 2016-05-31 10:41:29 -0600 | [diff] [blame] | 90 | sov->ranges = range_list_insert(sov->ranges, r); |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | static void string_output_append_range(StringOutputVisitor *sov, |
| 94 | int64_t s, int64_t e) |
| 95 | { |
| 96 | Range *r = g_malloc0(sizeof(*r)); |
Markus Armbruster | a0efbf1 | 2016-07-01 13:47:47 +0200 | [diff] [blame] | 97 | |
| 98 | range_set_bounds(r, s, e); |
Eric Blake | 7c47959 | 2016-05-31 10:41:29 -0600 | [diff] [blame] | 99 | sov->ranges = range_list_insert(sov->ranges, r); |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | static void format_string(StringOutputVisitor *sov, Range *r, bool next, |
| 103 | bool human) |
| 104 | { |
Markus Armbruster | a0efbf1 | 2016-07-01 13:47:47 +0200 | [diff] [blame] | 105 | if (range_lob(r) != range_upb(r)) { |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 106 | if (human) { |
Hu Tao | 684531a | 2014-06-20 13:55:42 +0800 | [diff] [blame] | 107 | g_string_append_printf(sov->string, "0x%" PRIx64 "-0x%" PRIx64, |
Markus Armbruster | a0efbf1 | 2016-07-01 13:47:47 +0200 | [diff] [blame] | 108 | range_lob(r), range_upb(r)); |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 109 | |
| 110 | } else { |
| 111 | g_string_append_printf(sov->string, "%" PRId64 "-%" PRId64, |
Markus Armbruster | a0efbf1 | 2016-07-01 13:47:47 +0200 | [diff] [blame] | 112 | range_lob(r), range_upb(r)); |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 113 | } |
| 114 | } else { |
| 115 | if (human) { |
Markus Armbruster | a0efbf1 | 2016-07-01 13:47:47 +0200 | [diff] [blame] | 116 | g_string_append_printf(sov->string, "0x%" PRIx64, range_lob(r)); |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 117 | } else { |
Markus Armbruster | a0efbf1 | 2016-07-01 13:47:47 +0200 | [diff] [blame] | 118 | g_string_append_printf(sov->string, "%" PRId64, range_lob(r)); |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 119 | } |
| 120 | } |
| 121 | if (next) { |
| 122 | g_string_append(sov->string, ","); |
| 123 | } |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 124 | } |
| 125 | |
Eric Blake | 0b2a0d6 | 2016-01-29 06:48:56 -0700 | [diff] [blame] | 126 | static void print_type_int64(Visitor *v, const char *name, int64_t *obj, |
Eric Blake | 4c40314 | 2016-01-29 06:48:49 -0700 | [diff] [blame] | 127 | Error **errp) |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 128 | { |
Eric Blake | d7bea75 | 2016-01-29 06:48:38 -0700 | [diff] [blame] | 129 | StringOutputVisitor *sov = to_sov(v); |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 130 | GList *l; |
| 131 | |
| 132 | switch (sov->list_mode) { |
| 133 | case LM_NONE: |
| 134 | string_output_append(sov, *obj); |
| 135 | break; |
| 136 | |
| 137 | case LM_STARTED: |
| 138 | sov->range_start.s = *obj; |
| 139 | sov->range_end.s = *obj; |
| 140 | sov->list_mode = LM_IN_PROGRESS; |
| 141 | return; |
| 142 | |
| 143 | case LM_IN_PROGRESS: |
| 144 | if (sov->range_end.s + 1 == *obj) { |
| 145 | sov->range_end.s++; |
| 146 | } else { |
| 147 | if (sov->range_start.s == sov->range_end.s) { |
| 148 | string_output_append(sov, sov->range_end.s); |
| 149 | } else { |
| 150 | assert(sov->range_start.s < sov->range_end.s); |
| 151 | string_output_append_range(sov, sov->range_start.s, |
| 152 | sov->range_end.s); |
| 153 | } |
| 154 | |
| 155 | sov->range_start.s = *obj; |
| 156 | sov->range_end.s = *obj; |
| 157 | } |
| 158 | return; |
| 159 | |
| 160 | case LM_END: |
| 161 | if (sov->range_end.s + 1 == *obj) { |
| 162 | sov->range_end.s++; |
| 163 | assert(sov->range_start.s < sov->range_end.s); |
| 164 | string_output_append_range(sov, sov->range_start.s, |
| 165 | sov->range_end.s); |
| 166 | } else { |
| 167 | if (sov->range_start.s == sov->range_end.s) { |
| 168 | string_output_append(sov, sov->range_end.s); |
| 169 | } else { |
| 170 | assert(sov->range_start.s < sov->range_end.s); |
| 171 | |
| 172 | string_output_append_range(sov, sov->range_start.s, |
| 173 | sov->range_end.s); |
| 174 | } |
| 175 | string_output_append(sov, *obj); |
| 176 | } |
| 177 | break; |
| 178 | |
| 179 | default: |
| 180 | abort(); |
| 181 | } |
| 182 | |
| 183 | l = sov->ranges; |
| 184 | while (l) { |
| 185 | Range *r = l->data; |
| 186 | format_string(sov, r, l->next != NULL, false); |
| 187 | l = l->next; |
| 188 | } |
Paolo Bonzini | 0b7593e | 2014-02-08 11:01:50 +0100 | [diff] [blame] | 189 | |
| 190 | if (sov->human) { |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 191 | l = sov->ranges; |
| 192 | g_string_append(sov->string, " ("); |
| 193 | while (l) { |
| 194 | Range *r = l->data; |
Michael S. Tsirkin | 56fdfb6 | 2014-06-18 17:59:51 +0300 | [diff] [blame] | 195 | format_string(sov, r, l->next != NULL, true); |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 196 | l = l->next; |
| 197 | } |
| 198 | g_string_append(sov->string, ")"); |
Paolo Bonzini | 0b7593e | 2014-02-08 11:01:50 +0100 | [diff] [blame] | 199 | } |
Paolo Bonzini | 0b7593e | 2014-02-08 11:01:50 +0100 | [diff] [blame] | 200 | } |
| 201 | |
Eric Blake | 0b2a0d6 | 2016-01-29 06:48:56 -0700 | [diff] [blame] | 202 | static void print_type_uint64(Visitor *v, const char *name, uint64_t *obj, |
Eric Blake | f755dea | 2016-01-29 06:48:50 -0700 | [diff] [blame] | 203 | Error **errp) |
| 204 | { |
| 205 | /* FIXME: print_type_int64 mishandles values over INT64_MAX */ |
| 206 | int64_t i = *obj; |
Eric Blake | 0b2a0d6 | 2016-01-29 06:48:56 -0700 | [diff] [blame] | 207 | print_type_int64(v, name, &i, errp); |
Eric Blake | f755dea | 2016-01-29 06:48:50 -0700 | [diff] [blame] | 208 | } |
| 209 | |
Eric Blake | 0b2a0d6 | 2016-01-29 06:48:56 -0700 | [diff] [blame] | 210 | static void print_type_size(Visitor *v, const char *name, uint64_t *obj, |
| 211 | Error **errp) |
Paolo Bonzini | 0b7593e | 2014-02-08 11:01:50 +0100 | [diff] [blame] | 212 | { |
Eric Blake | d7bea75 | 2016-01-29 06:48:38 -0700 | [diff] [blame] | 213 | StringOutputVisitor *sov = to_sov(v); |
Peter Xu | 22951aa | 2017-05-12 12:17:40 +0800 | [diff] [blame] | 214 | uint64_t val; |
| 215 | char *out, *psize; |
Paolo Bonzini | 0b7593e | 2014-02-08 11:01:50 +0100 | [diff] [blame] | 216 | |
| 217 | if (!sov->human) { |
Paolo Bonzini | e41b509 | 2014-02-08 11:01:57 +0100 | [diff] [blame] | 218 | out = g_strdup_printf("%"PRIu64, *obj); |
Paolo Bonzini | 0b7593e | 2014-02-08 11:01:50 +0100 | [diff] [blame] | 219 | string_output_set(sov, out); |
| 220 | return; |
| 221 | } |
| 222 | |
| 223 | val = *obj; |
Peter Xu | 22951aa | 2017-05-12 12:17:40 +0800 | [diff] [blame] | 224 | psize = size_to_str(val); |
| 225 | out = g_strdup_printf("%"PRIu64" (%s)", val, psize); |
Paolo Bonzini | 0b7593e | 2014-02-08 11:01:50 +0100 | [diff] [blame] | 226 | string_output_set(sov, out); |
Peter Xu | 22951aa | 2017-05-12 12:17:40 +0800 | [diff] [blame] | 227 | |
| 228 | g_free(psize); |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 229 | } |
| 230 | |
Eric Blake | 0b2a0d6 | 2016-01-29 06:48:56 -0700 | [diff] [blame] | 231 | static void print_type_bool(Visitor *v, const char *name, bool *obj, |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 232 | Error **errp) |
| 233 | { |
Eric Blake | d7bea75 | 2016-01-29 06:48:38 -0700 | [diff] [blame] | 234 | StringOutputVisitor *sov = to_sov(v); |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 235 | string_output_set(sov, g_strdup(*obj ? "true" : "false")); |
| 236 | } |
| 237 | |
Eric Blake | 0b2a0d6 | 2016-01-29 06:48:56 -0700 | [diff] [blame] | 238 | static void print_type_str(Visitor *v, const char *name, char **obj, |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 239 | Error **errp) |
| 240 | { |
Eric Blake | d7bea75 | 2016-01-29 06:48:38 -0700 | [diff] [blame] | 241 | StringOutputVisitor *sov = to_sov(v); |
Paolo Bonzini | 0b7593e | 2014-02-08 11:01:50 +0100 | [diff] [blame] | 242 | char *out; |
| 243 | |
| 244 | if (sov->human) { |
| 245 | out = *obj ? g_strdup_printf("\"%s\"", *obj) : g_strdup("<null>"); |
| 246 | } else { |
| 247 | out = g_strdup(*obj ? *obj : ""); |
| 248 | } |
| 249 | string_output_set(sov, out); |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 250 | } |
| 251 | |
Eric Blake | 0b2a0d6 | 2016-01-29 06:48:56 -0700 | [diff] [blame] | 252 | static void print_type_number(Visitor *v, const char *name, double *obj, |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 253 | Error **errp) |
| 254 | { |
Eric Blake | d7bea75 | 2016-01-29 06:48:38 -0700 | [diff] [blame] | 255 | StringOutputVisitor *sov = to_sov(v); |
Michael Roth | 173bbb7 | 2012-04-30 09:33:30 -0500 | [diff] [blame] | 256 | string_output_set(sov, g_strdup_printf("%f", *obj)); |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 257 | } |
| 258 | |
Markus Armbruster | d2f95f4 | 2017-06-26 18:22:59 +0200 | [diff] [blame] | 259 | static void print_type_null(Visitor *v, const char *name, QNull **obj, |
| 260 | Error **errp) |
Greg Kurz | a733371 | 2016-12-16 16:26:09 +0100 | [diff] [blame] | 261 | { |
| 262 | StringOutputVisitor *sov = to_sov(v); |
| 263 | char *out; |
| 264 | |
| 265 | if (sov->human) { |
| 266 | out = g_strdup("<null>"); |
| 267 | } else { |
| 268 | out = g_strdup(""); |
| 269 | } |
| 270 | string_output_set(sov, out); |
| 271 | } |
| 272 | |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 273 | static void |
Eric Blake | d9f62dd | 2016-04-28 15:45:31 -0600 | [diff] [blame] | 274 | start_list(Visitor *v, const char *name, GenericList **list, size_t size, |
| 275 | Error **errp) |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 276 | { |
Eric Blake | d7bea75 | 2016-01-29 06:48:38 -0700 | [diff] [blame] | 277 | StringOutputVisitor *sov = to_sov(v); |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 278 | |
| 279 | /* we can't traverse a list in a list */ |
| 280 | assert(sov->list_mode == LM_NONE); |
Eric Blake | d9f62dd | 2016-04-28 15:45:31 -0600 | [diff] [blame] | 281 | /* We don't support visits without a list */ |
| 282 | assert(list); |
Eric Blake | 1158bb2 | 2016-06-09 10:48:34 -0600 | [diff] [blame] | 283 | sov->list = list; |
Eric Blake | d9f62dd | 2016-04-28 15:45:31 -0600 | [diff] [blame] | 284 | /* List handling is only needed if there are at least two elements */ |
| 285 | if (*list && (*list)->next) { |
| 286 | sov->list_mode = LM_STARTED; |
| 287 | } |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 288 | } |
| 289 | |
Eric Blake | d9f62dd | 2016-04-28 15:45:31 -0600 | [diff] [blame] | 290 | static GenericList *next_list(Visitor *v, GenericList *tail, size_t size) |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 291 | { |
Eric Blake | d7bea75 | 2016-01-29 06:48:38 -0700 | [diff] [blame] | 292 | StringOutputVisitor *sov = to_sov(v); |
Eric Blake | d9f62dd | 2016-04-28 15:45:31 -0600 | [diff] [blame] | 293 | GenericList *ret = tail->next; |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 294 | |
Eric Blake | d9f62dd | 2016-04-28 15:45:31 -0600 | [diff] [blame] | 295 | if (ret && !ret->next) { |
| 296 | sov->list_mode = LM_END; |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 297 | } |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 298 | return ret; |
| 299 | } |
| 300 | |
Eric Blake | 1158bb2 | 2016-06-09 10:48:34 -0600 | [diff] [blame] | 301 | static void end_list(Visitor *v, void **obj) |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 302 | { |
Eric Blake | d7bea75 | 2016-01-29 06:48:38 -0700 | [diff] [blame] | 303 | StringOutputVisitor *sov = to_sov(v); |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 304 | |
Eric Blake | 1158bb2 | 2016-06-09 10:48:34 -0600 | [diff] [blame] | 305 | assert(sov->list == obj); |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 306 | assert(sov->list_mode == LM_STARTED || |
| 307 | sov->list_mode == LM_END || |
| 308 | sov->list_mode == LM_NONE || |
| 309 | sov->list_mode == LM_IN_PROGRESS); |
| 310 | sov->list_mode = LM_NONE; |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 311 | } |
| 312 | |
Eric Blake | 3b098d5 | 2016-06-09 10:48:43 -0600 | [diff] [blame] | 313 | static void string_output_complete(Visitor *v, void *opaque) |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 314 | { |
Eric Blake | 3b098d5 | 2016-06-09 10:48:43 -0600 | [diff] [blame] | 315 | StringOutputVisitor *sov = to_sov(v); |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 316 | |
Eric Blake | 3b098d5 | 2016-06-09 10:48:43 -0600 | [diff] [blame] | 317 | assert(opaque == sov->result); |
| 318 | *sov->result = g_string_free(sov->string, false); |
| 319 | sov->string = NULL; |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 320 | } |
| 321 | |
Michael S. Tsirkin | 0d15668 | 2014-06-16 18:07:03 +0300 | [diff] [blame] | 322 | static void free_range(void *range, void *dummy) |
| 323 | { |
| 324 | g_free(range); |
| 325 | } |
| 326 | |
Eric Blake | 2c0ef9f | 2016-06-09 10:48:35 -0600 | [diff] [blame] | 327 | static void string_output_free(Visitor *v) |
| 328 | { |
| 329 | StringOutputVisitor *sov = to_sov(v); |
| 330 | |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 331 | if (sov->string) { |
| 332 | g_string_free(sov->string, true); |
| 333 | } |
| 334 | |
Michael S. Tsirkin | 0d15668 | 2014-06-16 18:07:03 +0300 | [diff] [blame] | 335 | g_list_foreach(sov->ranges, free_range, NULL); |
| 336 | g_list_free(sov->ranges); |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 337 | g_free(sov); |
| 338 | } |
| 339 | |
Eric Blake | 3b098d5 | 2016-06-09 10:48:43 -0600 | [diff] [blame] | 340 | Visitor *string_output_visitor_new(bool human, char **result) |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 341 | { |
| 342 | StringOutputVisitor *v; |
| 343 | |
| 344 | v = g_malloc0(sizeof(*v)); |
| 345 | |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 346 | v->string = g_string_new(NULL); |
Paolo Bonzini | 0b7593e | 2014-02-08 11:01:50 +0100 | [diff] [blame] | 347 | v->human = human; |
Eric Blake | 3b098d5 | 2016-06-09 10:48:43 -0600 | [diff] [blame] | 348 | v->result = result; |
| 349 | *result = NULL; |
| 350 | |
Eric Blake | 983f52d | 2016-04-28 15:45:09 -0600 | [diff] [blame] | 351 | v->visitor.type = VISITOR_OUTPUT; |
Eric Blake | 4c40314 | 2016-01-29 06:48:49 -0700 | [diff] [blame] | 352 | v->visitor.type_int64 = print_type_int64; |
Eric Blake | f755dea | 2016-01-29 06:48:50 -0700 | [diff] [blame] | 353 | v->visitor.type_uint64 = print_type_uint64; |
Paolo Bonzini | 0b7593e | 2014-02-08 11:01:50 +0100 | [diff] [blame] | 354 | v->visitor.type_size = print_type_size; |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 355 | v->visitor.type_bool = print_type_bool; |
| 356 | v->visitor.type_str = print_type_str; |
| 357 | v->visitor.type_number = print_type_number; |
Greg Kurz | a733371 | 2016-12-16 16:26:09 +0100 | [diff] [blame] | 358 | v->visitor.type_null = print_type_null; |
Hu Tao | 69e2556 | 2014-06-10 19:15:28 +0800 | [diff] [blame] | 359 | v->visitor.start_list = start_list; |
| 360 | v->visitor.next_list = next_list; |
| 361 | v->visitor.end_list = end_list; |
Eric Blake | 3b098d5 | 2016-06-09 10:48:43 -0600 | [diff] [blame] | 362 | v->visitor.complete = string_output_complete; |
Eric Blake | 2c0ef9f | 2016-06-09 10:48:35 -0600 | [diff] [blame] | 363 | v->visitor.free = string_output_free; |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 364 | |
Eric Blake | 3b098d5 | 2016-06-09 10:48:43 -0600 | [diff] [blame] | 365 | return &v->visitor; |
Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 366 | } |