From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58693) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bxBX2-0004c1-8u for qemu-devel@nongnu.org; Thu, 20 Oct 2016 07:29:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bxBWy-0008Lg-6m for qemu-devel@nongnu.org; Thu, 20 Oct 2016 07:29:08 -0400 Received: from victor.provo.novell.com ([137.65.250.26]:57422 helo=prv3-mh.provo.novell.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1bxBWx-0008Kr-Uo for qemu-devel@nongnu.org; Thu, 20 Oct 2016 07:29:04 -0400 From: Lin Ma Date: Thu, 20 Oct 2016 19:28:24 +0800 Message-Id: <20161020112829.14589-1-lma@suse.com> Subject: [Qemu-devel] [PATCH v4 0/5] object: Add 'help' option for all available backends and properties List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: afaerber@suse.de, armbru@redhat.com, berrange@redhat.com, pbonzini@redhat.com, eblake@redhat.com V3->V4: * drop the code about manually define interface 'user-creatable' as abstract. * add test case for the generated enum value str. * split the code about adding descriptions to class properties into a separate patch. * minor changes in user_creatable_help_func to ignore interface TYPE_USER_CREATABLE. V2->v3: * make type user-creatable abstract. * auto generate enum value strings during qemu configuration.(Borrowwed Daniel's code) * save the generated enum value strings into member description of ObjectProperty. * drop the judgement logic of whether a property has an enumeration type anymore, output member description of ObjectProperty directly. * at least, user_creatable_help_func should be put after 'object_property_add_child(object_get_root(), "machine",OBJECT(current_machine), ...)', because host_memory_backend_init needs to access an instance of type machine. V1->V2: * Output the acceptable values of enum types by "-object TYPE-NAME,help" Lin Ma (5): qom: Add interface check in object_class_is_abstract qapi: auto generate enum value strings qapi: add test case for the generated enum value str backends: add description for enum class properties object: Add 'help' option for all available backends and properties backends/hostmem.c | 4 +++ crypto/secret.c | 4 +++ crypto/tlscreds.c | 4 +++ include/qom/object_interfaces.h | 2 ++ net/filter.c | 4 +++ qemu-options.hx | 7 +++++- qom/object.c | 6 ++++- qom/object_interfaces.c | 55 +++++++++++++++++++++++++++++++++++++++++ scripts/qapi-types.py | 2 ++ scripts/qapi.py | 9 +++++++ tests/test-qmp-commands.c | 18 ++++++++++++++ vl.c | 5 ++++ 12 files changed, 118 insertions(+), 2 deletions(-) -- 2.9.2