opts-visitor.h 1.2 KB
Newer Older
L
Laszlo Ersek 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Options Visitor
 *
 * Copyright Red Hat, Inc. 2012
 *
 * Author: Laszlo Ersek <lersek@redhat.com>
 *
 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
 * See the COPYING.LIB file in the top-level directory.
 *
 */

#ifndef OPTS_VISITOR_H
#define OPTS_VISITOR_H

16
#include "qapi/visitor.h"
17
#include "qemu/option.h"
L
Laszlo Ersek 已提交
18

19 20 21 22 23 24
/* Inclusive upper bound on the size of any flattened range. This is a safety
 * (= anti-annoyance) measure; wrong ranges should not cause long startup
 * delays nor exhaust virtual memory.
 */
#define OPTS_VISITOR_RANGE_MAX 65536

L
Laszlo Ersek 已提交
25 26 27 28 29 30 31
typedef struct OptsVisitor OptsVisitor;

/* Contrarily to qemu-option.c::parse_option_number(), OptsVisitor's "int"
 * parser relies on strtoll() instead of strtoull(). Consequences:
 * - string representations of negative numbers yield negative values,
 * - values below INT64_MIN or LLONG_MIN are rejected,
 * - values above INT64_MAX or LLONG_MAX are rejected.
32 33
 *
 * The Opts input visitor does not implement support for visiting QAPI
E
Eric Blake 已提交
34
 * alternates, numbers (other than integers), null, or arbitrary
35 36
 * QTypes.  It also requires a non-null list argument to
 * visit_start_list().
L
Laszlo Ersek 已提交
37
 */
38
Visitor *opts_visitor_new(const QemuOpts *opts);
L
Laszlo Ersek 已提交
39 40

#endif