2011-07-19 23:50:33 +04:00
|
|
|
/*
|
|
|
|
* Input Visitor
|
|
|
|
*
|
2017-03-03 15:32:48 +03:00
|
|
|
* Copyright (C) 2017 Red Hat, Inc.
|
2011-07-19 23:50:33 +04:00
|
|
|
* Copyright IBM, Corp. 2011
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-09-30 17:45:27 +03:00
|
|
|
#ifndef QOBJECT_INPUT_VISITOR_H
|
|
|
|
#define QOBJECT_INPUT_VISITOR_H
|
2011-07-19 23:50:33 +04:00
|
|
|
|
2012-12-17 21:19:43 +04:00
|
|
|
#include "qapi/visitor.h"
|
2011-07-19 23:50:33 +04:00
|
|
|
|
2016-09-30 17:45:27 +03:00
|
|
|
typedef struct QObjectInputVisitor QObjectInputVisitor;
|
2011-07-19 23:50:33 +04:00
|
|
|
|
2016-04-29 00:45:13 +03:00
|
|
|
/*
|
2017-03-03 15:32:48 +03:00
|
|
|
* Create a QObject input visitor for @obj
|
|
|
|
*
|
|
|
|
* A QObject input visitor visit builds a QAPI object from a QObject.
|
|
|
|
* This simultaneously walks the QAPI object being built and the
|
|
|
|
* QObject. The latter walk starts at @obj.
|
|
|
|
*
|
|
|
|
* visit_type_FOO() creates an instance of QAPI type FOO. The visited
|
|
|
|
* QObject must match FOO. QDict matches struct/union types, QList
|
|
|
|
* matches list types, QString matches type 'str' and enumeration
|
2017-06-07 19:35:58 +03:00
|
|
|
* types, QNum matches integer and float types, QBool matches type
|
|
|
|
* 'bool'. Type 'any' is matched by QObject. A QAPI alternate type
|
|
|
|
* is matched when one of its member types is.
|
2017-03-03 15:32:48 +03:00
|
|
|
*
|
|
|
|
* visit_start_struct() ... visit_end_struct() visits a QDict and
|
|
|
|
* creates a QAPI struct/union. Visits in between visit the
|
|
|
|
* dictionary members. visit_optional() is true when the QDict has
|
|
|
|
* this member. visit_check_struct() fails if unvisited members
|
|
|
|
* remain.
|
|
|
|
*
|
|
|
|
* visit_start_list() ... visit_end_list() visits a QList and creates
|
|
|
|
* a QAPI list. Visits in between visit list members, one after the
|
|
|
|
* other. visit_next_list() returns NULL when all QList members have
|
|
|
|
* been visited. visit_check_list() fails if unvisited members
|
|
|
|
* remain.
|
|
|
|
*
|
|
|
|
* visit_start_alternate() ... visit_end_alternate() visits a QObject
|
|
|
|
* and creates a QAPI alternate. The visit in between visits the same
|
|
|
|
* QObject and initializes the alternate member that is in use.
|
|
|
|
*
|
|
|
|
* Error messages refer to parts of @obj in JavaScript/Python syntax.
|
|
|
|
* For example, 'a.b[2]' refers to the second member of the QList
|
|
|
|
* member 'b' of the QDict member 'a' of QDict @obj.
|
|
|
|
*
|
|
|
|
* The caller is responsible for freeing the visitor with
|
|
|
|
* visit_free().
|
2016-04-29 00:45:13 +03:00
|
|
|
*/
|
2017-03-03 15:32:39 +03:00
|
|
|
Visitor *qobject_input_visitor_new(QObject *obj);
|
2011-07-19 23:50:33 +04:00
|
|
|
|
qapi: qobject input visitor variant for use with keyval_parse()
Currently the QObjectInputVisitor assumes that all scalar values are
directly represented as the final types declared by the thing being
visited. i.e. it assumes an 'int' is using QInt, and a 'bool' is using
QBool, etc. This is good when QObjectInputVisitor is fed a QObject
that came from a JSON document on the QMP monitor, as it will strictly
validate correctness.
To allow QObjectInputVisitor to be reused for visiting a QObject
originating from keyval_parse(), an alternative mode is needed where
all the scalars types are represented as QString and converted on the
fly to the final desired type.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Message-Id: <1475246744-29302-8-git-send-email-berrange@redhat.com>
Rebased, conflicts resolved, commit message updated to refer to
keyval_parse(). autocast replaced by keyval in identifiers,
noautocast replaced by fail in tests.
Fix qobject_input_type_uint64_keyval() not to reject '-', for QemuOpts
compatibility: replace parse_uint_full() by open-coded
parse_option_number(). The next commit will add suitable tests.
Leave out the fancy ERANGE error reporting for now, but add a TODO
comment. Add it qobject_input_type_int64_keyval() and
qobject_input_type_number_keyval(), too.
Open code parse_option_bool() and parse_option_size() so we have to
call qobject_input_get_name() only when actually needed. Again, leave
out ERANGE error reporting for now.
QAPI/QMP downstream extension prefixes __RFQDN_ don't work, because
keyval_parse() splits them at '.'. This will be addressed later in
the series.
qobject_input_type_int64_keyval(), qobject_input_type_uint64_keyval(),
qobject_input_type_number_keyval() tweaked for style.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Message-Id: <1488317230-26248-5-git-send-email-armbru@redhat.com>
2017-03-01 00:26:50 +03:00
|
|
|
/*
|
|
|
|
* Create a QObject input visitor for @obj for use with keyval_parse()
|
|
|
|
*
|
|
|
|
* This is like qobject_input_visitor_new(), except scalars are all
|
|
|
|
* QString, and error messages refer to parts of @obj in the syntax
|
|
|
|
* keyval_parse() uses for KEYs.
|
|
|
|
*/
|
|
|
|
Visitor *qobject_input_visitor_new_keyval(QObject *obj);
|
|
|
|
|
2017-03-01 00:27:06 +03:00
|
|
|
/*
|
|
|
|
* Create a QObject input visitor for parsing @str.
|
|
|
|
*
|
|
|
|
* If @str looks like JSON, parse it as JSON, else as KEY=VALUE,...
|
|
|
|
* @implied_key applies to KEY=VALUE, and works as in keyval_parse().
|
|
|
|
* On failure, store an error through @errp and return NULL.
|
|
|
|
* On success, return a new QObject input visitor for the parse.
|
|
|
|
*/
|
|
|
|
Visitor *qobject_input_visitor_new_str(const char *str,
|
|
|
|
const char *implied_key,
|
|
|
|
Error **errp);
|
|
|
|
|
2011-07-19 23:50:33 +04:00
|
|
|
#endif
|