[libvirt] [dbus PATCH 06/15] Impement GetFSInfo method for Domain Interface

Pavel Hrdina phrdina at redhat.com
Wed Apr 25 15:52:04 UTC 2018


On Wed, Apr 25, 2018 at 12:20:21PM +0200, Katerina Koukiou wrote:
> Signed-off-by: Katerina Koukiou <kkoukiou at redhat.com>
> ---
>  data/org.libvirt.Domain.xml |  6 +++++
>  src/domain.c                | 66 +++++++++++++++++++++++++++++++++++++++++++++
>  2 files changed, 72 insertions(+)
> 
> diff --git a/data/org.libvirt.Domain.xml b/data/org.libvirt.Domain.xml
> index fbf7140..b7fa35f 100644
> --- a/data/org.libvirt.Domain.xml
> +++ b/data/org.libvirt.Domain.xml
> @@ -197,6 +197,12 @@
>        <arg name="flags" type="u" direction="in"/>
>        <arg name="diskErrors" type="a(ss)" direction="out"/>
>      </method>
> +    <method name="GetFSInfo">
> +      <annotation name="org.gtk.GDBus.DocString"
> +        value="See https://libvirt.org/html/libvirt-libvirt-domain.html#virDomainGetFSInfo"/>
> +      <arg name="flags" type="u" direction="in"/>
> +      <arg name="fsInfo" type="a(sssas)" direction="out"/>
> +    </method>
>      <method name="GetJobInfo">
>        <annotation name="org.gtk.GDBus.DocString"
>          value="See https://libvirt.org/html/libvirt-libvirt-domain.html#virDomainGetJobInfo"/>
> diff --git a/src/domain.c b/src/domain.c
> index 67ea260..1156b84 100644
> --- a/src/domain.c
> +++ b/src/domain.c
> @@ -66,6 +66,25 @@ VIRT_DBUS_ENUM_IMPL(virtDBusDomainMetadata,
>                      "title",
>                      "element")
>  
> +struct _virtDBusDomainFSInfoList {
> +    virDomainFSInfoPtr *info;
> +    gint count;
> +};
> +
> +typedef struct _virtDBusDomainFSInfoList virtDBusDomainFSInfoList;
> +
> +static void
> +virtDBusDomainFSInfoListFree(virtDBusDomainFSInfoList *info)

This should be named virtDBusDomainFSInfoListClear() because it doesn't
free the virtDBusDomainFSInfoList structure itself, it frees the
content.

> +{
> +    for (gint i = 0; i < info->count; i++)
> +        virDomainFSInfoFree(info->info[i]);
> +
> +    g_free(info->info);
> +}
> +
> +G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC(virtDBusDomainFSInfoList,
> +                                 virtDBusDomainFSInfoListFree);
> +
>  static GVariant *
>  virtDBusDomainMemoryStatsToGVariant(virDomainMemoryStatPtr stats,
>                                      gint nr_stats)
> @@ -1056,6 +1075,52 @@ virtDBusDomainGetDiskErrors(GVariant *inArgs,
>      *outArgs = g_variant_new_tuple(&res, 1);
>  }
>  
> +static void
> +virtDBusDomainGetFSInfo(GVariant *inArgs,
> +                        GUnixFDList *inFDs G_GNUC_UNUSED,
> +                        const gchar *objectPath,
> +                        gpointer userData,
> +                        GVariant **outArgs,
> +                        GUnixFDList **outFDs G_GNUC_UNUSED,
> +                        GError **error)
> +{
> +    virtDBusConnect *connect = userData;
> +    g_autoptr(virDomain) domain = NULL;
> +    g_auto(virtDBusDomainFSInfoList) info = { 0 };
> +    GVariantBuilder builder;
> +    guint flags;
> +    GVariant *gret;
> +
> +    g_variant_get(inArgs, "(u)", &flags);
> +
> +    domain = virtDBusDomainGetVirDomain(connect, objectPath, error);
> +    if (!domain)
> +        return;
> +
> +    info.count = virDomainGetFSInfo(domain, &info.info, flags);
> +    if (info.count < 0)
> +        return virtDBusUtilSetLastVirtError(error);
> +
> +    g_variant_builder_init(&builder, G_VARIANT_TYPE("a(sssas)"));
> +
> +    for (gint i = 0; i < info.count; i++) {
> +        g_variant_builder_open(&builder, G_VARIANT_TYPE("(sssas)"));
> +        g_variant_builder_add(&builder, "s", info.info[i]->mountpoint);
> +        g_variant_builder_add(&builder, "s", info.info[i]->name);
> +        g_variant_builder_add(&builder, "s", info.info[i]->fstype);
> +
> +        g_variant_builder_open(&builder, G_VARIANT_TYPE("as"));
> +        for (guint j = 0; j < info.info[i]->ndevAlias; j++) {
> +            g_variant_builder_add(&builder, "s", info.info[i]->devAlias[j]);
> +            g_variant_builder_close(&builder);

The g_variant_builder_close() needs to be outside of the for loop
otherwise you will close the container multiple times for only one
g_variant_builder_open() call.

Reviewed-by: Pavel Hrdina <phrdina at redhat.com>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20180425/d10733d0/attachment-0001.sig>


More information about the libvir-list mailing list