2 * String printing Visitor
4 * Copyright Red Hat, Inc. 2012-2016
6 * Author: Paolo Bonzini <pbonzini@redhat.com>
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.
13 #include "qemu/osdep.h"
14 #include "qemu/cutils.h"
15 #include "qapi/string-output-visitor.h"
16 #include "qapi/visitor-impl.h"
18 #include "qemu/range.h"
21 LM_NONE
, /* not traversing a list of repeated options */
22 LM_STARTED
, /* next_list() ready to be called */
24 LM_IN_PROGRESS
, /* next_list() has been called.
26 * Generating the next list link will consume the most
27 * recently parsed QemuOpt instance of the repeated
30 * Parsing a value into the list link will examine the
31 * next QemuOpt instance of the repeated option, and
32 * possibly enter LM_SIGNED_INTERVAL or
33 * LM_UNSIGNED_INTERVAL.
36 LM_SIGNED_INTERVAL
, /* next_list() has been called.
38 * Generating the next list link will consume the most
39 * recently stored element from the signed interval,
40 * parsed from the most recent QemuOpt instance of the
41 * repeated option. This may consume QemuOpt itself
42 * and return to LM_IN_PROGRESS.
44 * Parsing a value into the list link will store the
45 * next element of the signed interval.
48 LM_UNSIGNED_INTERVAL
,/* Same as above, only for an unsigned interval. */
50 LM_END
, /* next_list() called, about to see last element. */
53 typedef enum ListMode ListMode
;
55 struct StringOutputVisitor
65 } range_start
, range_end
;
67 void *list
; /* Only needed for sanity checking the caller */
70 static StringOutputVisitor
*to_sov(Visitor
*v
)
72 return container_of(v
, StringOutputVisitor
, visitor
);
75 static void string_output_set(StringOutputVisitor
*sov
, char *string
)
78 g_string_free(sov
->string
, true);
80 sov
->string
= g_string_new(string
);
84 static void string_output_append(StringOutputVisitor
*sov
, int64_t a
)
86 Range
*r
= g_malloc0(sizeof(*r
));
88 range_set_bounds(r
, a
, a
);
89 sov
->ranges
= range_list_insert(sov
->ranges
, r
);
92 static void string_output_append_range(StringOutputVisitor
*sov
,
95 Range
*r
= g_malloc0(sizeof(*r
));
97 range_set_bounds(r
, s
, e
);
98 sov
->ranges
= range_list_insert(sov
->ranges
, r
);
101 static void format_string(StringOutputVisitor
*sov
, Range
*r
, bool next
,
104 if (range_lob(r
) != range_upb(r
)) {
106 g_string_append_printf(sov
->string
, "0x%" PRIx64
"-0x%" PRIx64
,
107 range_lob(r
), range_upb(r
));
110 g_string_append_printf(sov
->string
, "%" PRId64
"-%" PRId64
,
111 range_lob(r
), range_upb(r
));
115 g_string_append_printf(sov
->string
, "0x%" PRIx64
, range_lob(r
));
117 g_string_append_printf(sov
->string
, "%" PRId64
, range_lob(r
));
121 g_string_append(sov
->string
, ",");
125 static bool print_type_int64(Visitor
*v
, const char *name
, int64_t *obj
,
128 StringOutputVisitor
*sov
= to_sov(v
);
131 switch (sov
->list_mode
) {
133 string_output_append(sov
, *obj
);
137 sov
->range_start
.s
= *obj
;
138 sov
->range_end
.s
= *obj
;
139 sov
->list_mode
= LM_IN_PROGRESS
;
143 if (sov
->range_end
.s
+ 1 == *obj
) {
146 if (sov
->range_start
.s
== sov
->range_end
.s
) {
147 string_output_append(sov
, sov
->range_end
.s
);
149 assert(sov
->range_start
.s
< sov
->range_end
.s
);
150 string_output_append_range(sov
, sov
->range_start
.s
,
154 sov
->range_start
.s
= *obj
;
155 sov
->range_end
.s
= *obj
;
160 if (sov
->range_end
.s
+ 1 == *obj
) {
162 assert(sov
->range_start
.s
< sov
->range_end
.s
);
163 string_output_append_range(sov
, sov
->range_start
.s
,
166 if (sov
->range_start
.s
== sov
->range_end
.s
) {
167 string_output_append(sov
, sov
->range_end
.s
);
169 assert(sov
->range_start
.s
< sov
->range_end
.s
);
171 string_output_append_range(sov
, sov
->range_start
.s
,
174 string_output_append(sov
, *obj
);
185 format_string(sov
, r
, l
->next
!= NULL
, false);
191 g_string_append(sov
->string
, " (");
194 format_string(sov
, r
, l
->next
!= NULL
, true);
197 g_string_append(sov
->string
, ")");
203 static bool print_type_uint64(Visitor
*v
, const char *name
, uint64_t *obj
,
206 /* FIXME: print_type_int64 mishandles values over INT64_MAX */
208 return print_type_int64(v
, name
, &i
, errp
);
211 static bool print_type_size(Visitor
*v
, const char *name
, uint64_t *obj
,
214 StringOutputVisitor
*sov
= to_sov(v
);
219 out
= g_strdup_printf("%"PRIu64
, *obj
);
220 string_output_set(sov
, out
);
225 psize
= size_to_str(val
);
226 out
= g_strdup_printf("%"PRIu64
" (%s)", val
, psize
);
227 string_output_set(sov
, out
);
233 static bool print_type_bool(Visitor
*v
, const char *name
, bool *obj
,
236 StringOutputVisitor
*sov
= to_sov(v
);
237 string_output_set(sov
, g_strdup(*obj
? "true" : "false"));
241 static bool print_type_str(Visitor
*v
, const char *name
, char **obj
,
244 StringOutputVisitor
*sov
= to_sov(v
);
248 out
= *obj
? g_strdup_printf("\"%s\"", *obj
) : g_strdup("<null>");
250 out
= g_strdup(*obj
? *obj
: "");
252 string_output_set(sov
, out
);
256 static bool print_type_number(Visitor
*v
, const char *name
, double *obj
,
259 StringOutputVisitor
*sov
= to_sov(v
);
260 string_output_set(sov
, g_strdup_printf("%.17g", *obj
));
264 static bool print_type_null(Visitor
*v
, const char *name
, QNull
**obj
,
267 StringOutputVisitor
*sov
= to_sov(v
);
271 out
= g_strdup("<null>");
275 string_output_set(sov
, out
);
280 start_list(Visitor
*v
, const char *name
, GenericList
**list
, size_t size
,
283 StringOutputVisitor
*sov
= to_sov(v
);
285 /* we can't traverse a list in a list */
286 assert(sov
->list_mode
== LM_NONE
);
287 /* We don't support visits without a list */
290 /* List handling is only needed if there are at least two elements */
291 if (*list
&& (*list
)->next
) {
292 sov
->list_mode
= LM_STARTED
;
297 static GenericList
*next_list(Visitor
*v
, GenericList
*tail
, size_t size
)
299 StringOutputVisitor
*sov
= to_sov(v
);
300 GenericList
*ret
= tail
->next
;
302 if (ret
&& !ret
->next
) {
303 sov
->list_mode
= LM_END
;
308 static void end_list(Visitor
*v
, void **obj
)
310 StringOutputVisitor
*sov
= to_sov(v
);
312 assert(sov
->list
== obj
);
313 assert(sov
->list_mode
== LM_STARTED
||
314 sov
->list_mode
== LM_END
||
315 sov
->list_mode
== LM_NONE
||
316 sov
->list_mode
== LM_IN_PROGRESS
);
317 sov
->list_mode
= LM_NONE
;
320 static void string_output_complete(Visitor
*v
, void *opaque
)
322 StringOutputVisitor
*sov
= to_sov(v
);
324 assert(opaque
== sov
->result
);
325 *sov
->result
= g_string_free(sov
->string
, false);
329 static void free_range(void *range
, void *dummy
)
334 static void string_output_free(Visitor
*v
)
336 StringOutputVisitor
*sov
= to_sov(v
);
339 g_string_free(sov
->string
, true);
342 g_list_foreach(sov
->ranges
, free_range
, NULL
);
343 g_list_free(sov
->ranges
);
347 Visitor
*string_output_visitor_new(bool human
, char **result
)
349 StringOutputVisitor
*v
;
351 v
= g_malloc0(sizeof(*v
));
353 v
->string
= g_string_new(NULL
);
358 v
->visitor
.type
= VISITOR_OUTPUT
;
359 v
->visitor
.type_int64
= print_type_int64
;
360 v
->visitor
.type_uint64
= print_type_uint64
;
361 v
->visitor
.type_size
= print_type_size
;
362 v
->visitor
.type_bool
= print_type_bool
;
363 v
->visitor
.type_str
= print_type_str
;
364 v
->visitor
.type_number
= print_type_number
;
365 v
->visitor
.type_null
= print_type_null
;
366 v
->visitor
.start_list
= start_list
;
367 v
->visitor
.next_list
= next_list
;
368 v
->visitor
.end_list
= end_list
;
369 v
->visitor
.complete
= string_output_complete
;
370 v
->visitor
.free
= string_output_free
;