aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2015-02-25 14:52:52 +0100
committerAleksander Morgado <aleksander@aleksander.es>2015-02-25 15:47:15 +0100
commit18694ee79a624119d5f0bc379562646fe8bccfb6 (patch)
treee0c31d4094263fc7218c553d33c664bbbae64186 /src
parentf864133f8e27098d64e9f10502d313e0192b6f28 (diff)
wms: implement 'Get Supported Messages'
Diffstat (limited to 'src')
-rw-r--r--src/qmicli/qmicli-wms.c77
1 files changed, 76 insertions, 1 deletions
diff --git a/src/qmicli/qmicli-wms.c b/src/qmicli/qmicli-wms.c
index 202df88..4c58274 100644
--- a/src/qmicli/qmicli-wms.c
+++ b/src/qmicli/qmicli-wms.c
@@ -41,10 +41,15 @@ typedef struct {
static Context *ctx;
/* Options */
+static gboolean get_supported_messages_flag;
static gboolean reset_flag;
static gboolean noop_flag;
static GOptionEntry entries[] = {
+ { "wms-get-supported-messages", 0, 0, G_OPTION_ARG_NONE, &get_supported_messages_flag,
+ "Get supported messages",
+ NULL
+ },
{ "wms-reset", 0, 0, G_OPTION_ARG_NONE, &reset_flag,
"Reset the service state",
NULL
@@ -80,7 +85,8 @@ qmicli_wms_options_enabled (void)
if (checked)
return !!n_actions;
- n_actions = (reset_flag +
+ n_actions = (get_supported_messages_flag +
+ reset_flag +
noop_flag);
if (n_actions > 1) {
@@ -114,6 +120,63 @@ shutdown (gboolean operation_status)
}
static void
+get_supported_messages_ready (QmiClientWms *client,
+ GAsyncResult *res)
+{
+ QmiMessageWmsGetSupportedMessagesOutput *output;
+ GError *error = NULL;
+ GArray *bytearray = NULL;
+ GString *str = NULL;
+
+ output = qmi_client_wms_get_supported_messages_finish (client, res, &error);
+ if (!output) {
+ g_printerr ("error: operation failed: %s\n", error->message);
+ g_error_free (error);
+ shutdown (FALSE);
+ return;
+ }
+
+ if (!qmi_message_wms_get_supported_messages_output_get_result (output, &error)) {
+ g_printerr ("error: couldn't get supported WMS messages: %s\n", error->message);
+ g_error_free (error);
+ qmi_message_wms_get_supported_messages_output_unref (output);
+ shutdown (FALSE);
+ return;
+ }
+
+ g_print ("[%s] Successfully got supported WMS messages:\n",
+ qmi_device_get_path_display (ctx->device));
+
+ if (qmi_message_wms_get_supported_messages_output_get_list (output, &bytearray, NULL)) {
+
+ guint bytearray_i;
+
+ for (bytearray_i = 0; bytearray_i < bytearray->len; bytearray_i++) {
+ guint bit_i;
+ guint8 bytevalue;
+
+ bytevalue = g_array_index (bytearray, guint8, bytearray_i);
+ for (bit_i = 0; bit_i < 8; bit_i++) {
+ if (bytevalue & (1 << bit_i)) {
+ if (!str)
+ str = g_string_new ("");
+ g_string_append_printf (str, "\t0x%04X\n", (bit_i + (8 * bytearray_i)));
+ }
+ }
+ }
+ }
+
+ if (str) {
+ g_print ("%s", str->str);
+ g_string_free (str, TRUE);
+ } else
+ g_print ("\tnone\n");
+
+ qmi_message_wms_get_supported_messages_output_unref (output);
+ shutdown (TRUE);
+}
+
+static void
reset_ready (QmiClientWms *client,
GAsyncResult *res)
{
@@ -161,6 +224,18 @@ qmicli_wms_run (QmiDevice *device,
ctx->client = g_object_ref (client);
ctx->cancellable = g_object_ref (cancellable);
+ /* Request to list supported messages? */
+ if (get_supported_messages_flag) {
+ g_debug ("Asynchronously getting supported WMS messages...");
+ qmi_client_wms_get_supported_messages (ctx->client,
+ NULL,
+ 10,
+ ctx->cancellable,
+ (GAsyncReadyCallback)get_supported_messages_ready,
+ NULL);
+ return;
+ }
+
/* Request to reset WMS service? */
if (reset_flag) {
g_debug ("Asynchronously resetting WMS service...");