Patch for Phonebook support in mbimcli

Aleksander Morgado aleksander at lanedo.com
Wed Oct 9 00:49:16 PDT 2013


On 08/10/13 20:42, Raju Kn wrote:
> Dear all,
>          Please find the attached patch for phonebook support in mbimcli.
> Regards,
> Raju.
> 
> phonebook-v2.patch
> 

Superb! I pushed your patch without modification, and then commited two
additional patches:
 * one fixing some remaining coding style issues, mainly whitespace things.
 * another one merging --phonebook-entry-update action into
--phonebook-write. This is; if you pass an Index to --phonebook-write it
will update an existing item, and if you don't pass an index, it will
create a new item.

Thanks for the patch!

> 
> From bc579b7344ab3995679956e383bf82ac8fc78046 Mon Sep 17 00:00:00 2001
> From: Raju <kadiri.raju at gmail.com>
> Date: Wed, 9 Oct 2013 00:05:21 +0530
> Subject: [PATCH] mbimcli: Implemented phonebook support
> 
> ---
>  cli/Makefile.am         |    3 +-
>  cli/mbimcli-phonebook.c |  494 +++++++++++++++++++++++++++++++++++++++++++++++
>  cli/mbimcli.c           |   10 +-
>  cli/mbimcli.h           |    5 +-
>  4 files changed, 509 insertions(+), 3 deletions(-)
>  create mode 100644 cli/mbimcli-phonebook.c
> 
> diff --git a/cli/Makefile.am b/cli/Makefile.am
> index 3685e93..9c70fa2 100644
> --- a/cli/Makefile.am
> +++ b/cli/Makefile.am
> @@ -12,7 +12,8 @@ mbimcli_CPPFLAGS = \
>  mbimcli_SOURCES = \
>  	mbimcli.h \
>  	mbimcli.c \
> -	mbimcli-basic-connect.c
> +	mbimcli-basic-connect.c \
> +	mbimcli-phonebook.c 
>  
>  mbimcli_LDADD = \
>  	$(MBIMCLI_LIBS) \
> diff --git a/cli/mbimcli-phonebook.c b/cli/mbimcli-phonebook.c
> new file mode 100644
> index 0000000..56588d9
> --- /dev/null
> +++ b/cli/mbimcli-phonebook.c
> @@ -0,0 +1,494 @@
> +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
> +/*
> + * mbimcli -- Command line interface to control MBIM devices
> + *
> + * This program is free software: you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License as published by
> + * the Free Software Foundation, either version 2 of the License, or
> + * (at your option) any later version.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> + * GNU General Public License for more details.
> + *
> + * You should have received a copy of the GNU General Public License
> + * along with this program.  If not, see <http://www.gnu.org/licenses/>.
> + *
> + * Copyright (C) 2013 Nagaraju Kadiri <kadiri.raju at gmail.com>
> + */
> +
> +#include "config.h"
> +
> +#include <stdio.h>
> +#include <stdlib.h>
> +#include <locale.h>
> +#include <string.h>
> +
> +#include <glib.h>
> +#include <gio/gio.h>
> +
> +#include <libmbim-glib.h>
> +
> +#include "mbimcli.h"
> +
> +/* Context */
> +typedef struct {
> +    MbimDevice *device;
> +    GCancellable *cancellable;
> +} Context;
> +static Context *ctx;
> +
> +/* Options */
> +static gboolean  phonebook_configuration_flag;
> +static gint      phonebook_read_index;
> +static gboolean  phonebook_read_all_flag;
> +static gchar    *phonebook_write_str;
> +static gchar    *phonebook_entry_update_str;
> +static gint      phonebook_delete_index;
> +static gboolean  phonebook_delete_all_flag;
> +
> +static GOptionEntry entries[] = {
> +    { "phonebook-query-configuration", 0, 0, G_OPTION_ARG_NONE, &phonebook_configuration_flag,
> +      "Query the phonebook configuration",
> +      NULL
> +    },
> +    { "phonebook-read", 0, 0, G_OPTION_ARG_INT, &phonebook_read_index,
> +      "Read phonebook entry with given index",
> +      "[(Phonebook index)]"
> +    },
> +    { "phonebook-read-all", 0, 0, G_OPTION_ARG_NONE, &phonebook_read_all_flag,
> +      "Read all phonebook entries",
> +      NULL
> +    },
> +    { "phonebook-write", 0, 0, G_OPTION_ARG_STRING, &phonebook_write_str,
> +      "Add new phonebook entry",
> +      "[(Name),(Number)]"
> +    },
> +    { "phonebook-entry-update", 0, 0, G_OPTION_ARG_STRING, &phonebook_entry_update_str,
> +      "Update phonebook entry",
> +      "[(Name),(Number),(Index)]"
> +    },
> +    { "phonebook-delete", 0, 0, G_OPTION_ARG_INT, &phonebook_delete_index,
> +      "Delete phonebook entry with given index",
> +      "[(Phonebook index)]"
> +    },
> +    { "phonebook-delete-all", 0, 0, G_OPTION_ARG_NONE, &phonebook_delete_all_flag,
> +      "Delete all phonebook entries",
> +      NULL
> +    },
> +    { NULL }
> +};
> +
> +GOptionGroup *
> +mbimcli_phonebook_get_option_group (void)
> +{
> +	GOptionGroup *group;
> +
> +	group = g_option_group_new ("phonebook",
> +	                            "Phonebook options",
> +	                            "Show Phonebook Service options",
> +	                            NULL,
> +	                            NULL);
> +	g_option_group_add_entries (group, entries);
> +
> +	return group;
> +}
> +
> +gboolean
> +mbimcli_phonebook_options_enabled (void)
> +{
> +    static guint n_actions = 0;
> +    static gboolean checked = FALSE;
> +
> +    if (checked)
> +        return !!n_actions;
> +
> +    n_actions = (phonebook_configuration_flag +
> +                 !!phonebook_read_index +
> +                 phonebook_read_all_flag +
> +                 !!phonebook_write_str +
> +                 !!phonebook_entry_update_str +
> +                 !!phonebook_delete_index + 
> +                 phonebook_delete_all_flag);
> +
> +    if (n_actions > 1) {
> +        g_printerr ("error: too many phonebook actions requested\n");
> +        exit (EXIT_FAILURE);
> +    }
> +
> +    checked = TRUE;
> +    return !!n_actions;
> +}
> +
> +static void
> +context_free (Context *context)
> +{
> +    if (!context)
> +        return;
> +
> +    if (context->cancellable)
> +        g_object_unref (context->cancellable);
> +    if (context->device)
> +        g_object_unref (context->device);
> +    g_slice_free (Context, context);
> +}
> +
> +static void
> +shutdown (gboolean operation_status)
> +{
> +    /* Cleanup context and finish async operation */
> +    context_free (ctx);
> +    mbimcli_async_operation_done (operation_status);
> +}
> +
> +static gboolean
> +phonebook_write_input_parse (guint         n_expected,
> +                             const gchar  *str,
> +                             gchar       **name,
> +                             gchar       **number,
> +                             gchar       **index_str)
> +{
> +    gchar **split;
> +
> +    g_assert (n_expected == 2 || n_expected == 3);
> +    g_assert (name != NULL);
> +    g_assert (number != NULL);
> +    g_assert (index_str != NULL);
> +
> +    /* Format of the string is:
> +     *    "[(Name),(Number)]"
> +     */
> +    split = g_strsplit (str, ",", -1);
> +
> +    if (g_strv_length (split) > n_expected) {
> +        g_printerr ("error: couldn't parse input string, too many arguments\n");
> +        g_strfreev (split);
> +        return FALSE;
> +    }
> +
> +    if (g_strv_length (split) < n_expected) {
> +        g_printerr ("error: couldn't parse input string, missing arguments\n");
> +        g_strfreev (split);
> +        return FALSE;
> +    }
> +
> +    *name = split[0];
> +    *number = split[1]? split[1] : NULL;
> +    *index_str = split[2] ? split[2] : NULL;
> +
> +    g_free (split);
> +    return TRUE;
> +}
> +
> +static void
> +set_phonebook_write_ready (MbimDevice   *device,
> +                           GAsyncResult *res)
> +{
> +    MbimMessage *response;
> +    GError *error = NULL;
> +
> +    response = mbim_device_command_finish (device, res, &error);
> +    if (!response) {
> +        g_printerr ("error: operation failed: %s\n", error->message);
> +        g_error_free (error);
> +        shutdown (FALSE);
> +        return;
> +    }
> +
> +    if(!mbim_message_phonebook_write_response_parse (response, &error)) {
> +        g_printerr ("error: couldn't parse response message: %s\n", error->message);
> +        g_error_free (error);
> +        shutdown (FALSE);
> +        return;
> +    } else {
> +        g_print ("Phonebook entry successfully written/updated\n");
> +    }
> +
> +    mbim_message_unref (response);
> +    shutdown (TRUE);
> +}
> +
> +static void
> +set_phonebook_delete_ready (MbimDevice   *device,
> +                            GAsyncResult *res)
> +{
> +    MbimMessage *response;
> +    GError *error = NULL;
> +
> +    response = mbim_device_command_finish (device, res, &error);
> +    if (!response) {
> +        g_printerr ("error: operation failed: %s\n", error->message);
> +        g_error_free (error);
> +        shutdown (FALSE);
> +        return;
> +    }
> +
> +    if(!mbim_message_phonebook_delete_response_parse (response, &error)) {
> +        g_printerr ("error: couldn't parse response message: %s\n", error->message);
> +        g_error_free (error);
> +        shutdown (FALSE);
> +        return;
> +    } else {
> +        g_print ("Phonebook entry/entries successfully deleted");   
> +    }
> +
> +    mbim_message_unref (response);
> +    shutdown (TRUE);
> +}
> +
> +static void
> +query_phonebook_read_ready (MbimDevice   *device,
> +                            GAsyncResult *res)
> +{
> +    MbimMessage *response;
> +    GError *error = NULL;
> +    guint32 entry_count;
> +    MbimPhonebookEntry **phonebook_entries;
> +    gint i = 0;
> +
> +    response = mbim_device_command_finish (device, res, &error);
> +    if (!response) {
> +        g_printerr ("error: operation failed: %s\n", error->message);
> +        g_error_free (error);
> +        shutdown (FALSE);
> +        return;
> +    }
> +
> +    if(!mbim_message_phonebook_read_response_parse (response,
> +                                                    &entry_count,
> +                                                    &phonebook_entries,
> +                                                    &error)) {
> +        g_printerr ("error: couldn't parse response message: %s\n", error->message);
> +        g_error_free (error);
> +        shutdown (FALSE);
> +        return;
> +    }
> +
> +#undef VALIDATE_UNKNOWN
> +#define VALIDATE_UNKNOWN(str) (str ? str : "unknown")
> +
> +    g_print ("Successfully read phonebook entry/entries\n");
> +    g_print ("\tPhonebook entries count: %d\n",entry_count);            
> +    for (i=0; i< entry_count;i++) {
> +        g_print ("\tEntry index : %d \n"
> +                 "\t      Number: %s \n"
> +                 "\t        Name: %s \n",
> +                 phonebook_entries[i]->entry_index,
> +                 phonebook_entries[i]->number,
> +                 phonebook_entries[i]->name);
> +    }
> +    mbim_phonebook_entry_array_free (phonebook_entries);
> +
> +    mbim_message_unref (response);
> +    shutdown (TRUE);
> +}
> +
> +static void
> +query_phonebook_configuration_ready (MbimDevice   *device,
> +                                     GAsyncResult *res)
> +{
> +    MbimMessage *response;
> +    GError *error = NULL;
> +    MbimPhonebookState state;
> +    const gchar *state_str;
> +    guint32 number_of_entries;
> +    guint32 used_entries;
> +    guint32 max_number_length;
> +    guint32 max_name;
> +
> +    response = mbim_device_command_finish (device, res, &error);
> +    if (!response) {
> +        g_printerr ("error: operation failed: %s\n", error->message);
> +        g_error_free (error);
> +        shutdown (FALSE);
> +        return;
> +    }
> +
> +    if(!mbim_message_phonebook_configuration_response_parse (response,
> +                                                             &state,
> +                                                             &number_of_entries,
> +                                                             &used_entries,
> +                                                             &max_number_length,
> +                                                             &max_name,
> +                                                             &error)) {
> +        g_printerr ("error: couldn't parse response message: %s\n", error->message);
> +        g_error_free (error);
> +        shutdown (FALSE);
> +        return;
> +    }
> +
> +    state_str = mbim_phonebook_state_get_string (state);
> +
> +#undef VALIDATE_UNKNOWN
> +#define VALIDATE_UNKNOWN(str) (str ? str : "unknown")
> +
> +    g_print ("\n Phonebook configuration retrived... \n"
> +             "\t   Phonebook state: %s \n"
> +             "\t Number of entries: %d \n"
> +             "\t      used entries: %d \n"
> +             "\t max number length: %d \n"
> +             "\t         max name : %d \n",
> +             VALIDATE_UNKNOWN(state_str),
> +             number_of_entries,
> +             used_entries,
> +             max_number_length,
> +             max_name);
> +
> +    mbim_message_unref (response);
> +    shutdown (TRUE);
> +}
> +
> +void
> +mbimcli_phonebook_run (MbimDevice   *device,
> +                       GCancellable *cancellable)
> +{
> +    /* Initialize context */
> +    ctx = g_slice_new (Context);
> +    ctx->device = g_object_ref (device);
> +    if (cancellable)
> +        ctx->cancellable = g_object_ref (cancellable);
> +
> +    /* Request to get configuration? */
> +    if (phonebook_configuration_flag) {
> +        MbimMessage *request;
> +
> +        g_debug ("Asynchronously querying phonebook configurations...");
> +        request = mbim_message_phonebook_configuration_query_new (NULL);
> +        mbim_device_command (ctx->device,
> +                             request,
> +                             10,
> +                             ctx->cancellable,
> +                             (GAsyncReadyCallback)query_phonebook_configuration_ready,
> +                             NULL);
> +        mbim_message_unref (request);
> +        return;
> +    }
> +
> +    /* Phonebook read */
> +    if (phonebook_read_index) {
> +        MbimMessage *request;
> +
> +        g_debug ("Asynchronously querying phonebook read...");
> +        request = mbim_message_phonebook_read_query_new (MBIM_PHONEBOOK_FLAG_INDEX,
> +                                                         phonebook_read_index, 
> +                                                         NULL);
> +        mbim_device_command (ctx->device,
> +                             request,
> +                             10,
> +                             ctx->cancellable,
> +                             (GAsyncReadyCallback)query_phonebook_read_ready,
> +                             NULL);
> +        mbim_message_unref (request);
> +        return;
> +    }
> +
> +    /* Phonebook read all */
> +    if (phonebook_read_all_flag) {
> +        MbimMessage *request;
> + 
> +        g_debug ("Asynchronously querying phonebook read all...");
> +        request = mbim_message_phonebook_read_query_new (MBIM_PHONEBOOK_FLAG_ALL, 0, NULL);
> +        mbim_device_command (ctx->device,
> +                             request,
> +                             10,
> +                             ctx->cancellable,
> +                             (GAsyncReadyCallback)query_phonebook_read_ready,
> +                             NULL);
> +        mbim_message_unref (request);
> +        return;
> +    }
> +
> +    /* Phonebook delete */
> +    if (phonebook_delete_index) {
> +        MbimMessage *request;
> +
> +        g_debug ("Asynchronously phonebook delete...");
> +        request = mbim_message_phonebook_delete_set_new (MBIM_PHONEBOOK_FLAG_INDEX,
> +                                                         phonebook_delete_index, 
> +                                                         NULL);
> +        mbim_device_command (ctx->device,
> +                             request,
> +                             10,
> +                             ctx->cancellable,
> +                             (GAsyncReadyCallback)set_phonebook_delete_ready,
> +                             NULL);
> +        mbim_message_unref (request);
> +        return;
> +    }
> +
> +    /* Phonebook delete all */	
> +    if (phonebook_delete_all_flag) {
> +        MbimMessage *request;
> + 
> +        g_debug ("Asynchronously phonebook delete all...");
> +        request = mbim_message_phonebook_delete_set_new (MBIM_PHONEBOOK_FLAG_ALL, 0, NULL);
> +        mbim_device_command (ctx->device,
> +                             request,
> +                             10,
> +                             ctx->cancellable,
> +                             (GAsyncReadyCallback)set_phonebook_delete_ready,
> +                             NULL);
> +        mbim_message_unref (request);
> +        return;
> +    }
> +
> +    /* Phonebook write */
> +    if (phonebook_write_str) {
> +        MbimMessage *request;
> +        gchar *name;
> +        gchar *number;
> +        gchar *index_str;
> +
> +        g_debug ("Asynchronously writing phonebook...");
> +        if (!phonebook_write_input_parse (2, phonebook_write_str, &name, &number, &index_str)) {
> +            shutdown (FALSE);
> +            return;
> +        }
> + 
> +        request = mbim_message_phonebook_write_set_new (MBIM_PHONEBOOK_WRITE_FLAG_SAVE_UNUSED,
> +                                                         0,
> +                                                         number,
> +                                                         name,
> +                                                         NULL);
> +        mbim_device_command (ctx->device,
> +                             request,
> +                             10,
> +                             ctx->cancellable,
> +                             (GAsyncReadyCallback)set_phonebook_write_ready,
> +                             NULL);
> +        mbim_message_unref (request);
> +        return;
> +    }
> +
> +    /* Phonebook entry update */
> +    if (phonebook_entry_update_str) {
> +        MbimMessage *request;
> +        gchar *name;
> +        gchar *number;
> +        gchar *index_str;
> +        gint   idx;
> +
> +        g_debug ("Asynchronously updating phonebook entry...");
> +        if (!phonebook_write_input_parse (3, phonebook_entry_update_str, &name, &number, &index_str)) {
> +            shutdown (FALSE);
> +            return;
> +        }
> +
> +        idx = atoi (index_str);
> +        request = mbim_message_phonebook_write_set_new (MBIM_PHONEBOOK_WRITE_FLAG_SAVE_INDEX,
> +                                                         idx,
> +                                                         number,
> +                                                         name,
> +                                                         NULL);
> +        mbim_device_command (ctx->device,
> +                             request,
> +                             10,
> +                             ctx->cancellable,
> +                             (GAsyncReadyCallback)set_phonebook_write_ready,
> +                             NULL);
> +        mbim_message_unref (request);
> +        return;
> +    }
> +    g_warn_if_reached ();
> +}
> diff --git a/cli/mbimcli.c b/cli/mbimcli.c
> index e4f9215..8c9e8ac 100644
> --- a/cli/mbimcli.c
> +++ b/cli/mbimcli.c
> @@ -254,6 +254,9 @@ device_open_ready (MbimDevice   *dev,
>      case MBIM_SERVICE_BASIC_CONNECT:
>          mbimcli_basic_connect_run (dev, cancellable);
>          return;
> +    case MBIM_SERVICE_PHONEBOOK:
> +        mbimcli_phonebook_run (dev, cancellable);
> +        return;
>      default:
>          g_assert_not_reached ();
>      }
> @@ -329,6 +332,9 @@ parse_actions (void)
>      if (mbimcli_basic_connect_options_enabled ()) {
>          service = MBIM_SERVICE_BASIC_CONNECT;
>          actions_enabled++;
> +    }else if (mbimcli_phonebook_options_enabled ()) {
> +        service = MBIM_SERVICE_PHONEBOOK;
> +        actions_enabled++;
>      }
>  
>      /* Noop */
> @@ -362,8 +368,10 @@ int main (int argc, char **argv)
>  
>      /* Setup option context, process it and destroy it */
>      context = g_option_context_new ("- Control MBIM devices");
> -	g_option_context_add_group (context,
> +    g_option_context_add_group (context,
>  	                            mbimcli_basic_connect_get_option_group ());
> +    g_option_context_add_group (context,
> +	                            mbimcli_phonebook_get_option_group ());
>      g_option_context_add_main_entries (context, main_entries, NULL);
>      if (!g_option_context_parse (context, &argc, &argv, &error)) {
>          g_printerr ("error: %s\n",
> diff --git a/cli/mbimcli.h b/cli/mbimcli.h
> index 78942df..411b776 100644
> --- a/cli/mbimcli.h
> +++ b/cli/mbimcli.h
> @@ -28,9 +28,12 @@ void mbimcli_async_operation_done (gboolean operation_status);
>  
>  /* Basic Connect group */
>  GOptionGroup *mbimcli_basic_connect_get_option_group (void);
> +GOptionGroup *mbimcli_phonebook_get_option_group     (void);
>  gboolean      mbimcli_basic_connect_options_enabled  (void);
> +gboolean      mbimcli_phonebook_options_enabled      (void);
>  void          mbimcli_basic_connect_run              (MbimDevice *device,
>                                                        GCancellable *cancellable);
> -
> +void          mbimcli_phonebook_run                  (MbimDevice *device,
> +                                                      GCancellable *cancellable);
>  
>  #endif /* __MBIMCLI_H__ */
> -- 1.7.9.5


-- 
Aleksander


More information about the libmbim-devel mailing list