From 55492192178bbce64cb09a89fab3de3629f2ef66 Mon Sep 17 00:00:00 2001 From: Tim Kourt Date: Wed, 25 Jul 2018 12:54:44 -0700 Subject: [PATCH] client: switch adapter to use proxy property completion In addition, it defines the value options for the Power property --- client/adapter.c | 31 +++++++------------------------ 1 file changed, 7 insertions(+), 24 deletions(-) diff --git a/client/adapter.c b/client/adapter.c index 76663b86..2f07f3be 100644 --- a/client/adapter.c +++ b/client/adapter.c @@ -2,7 +2,7 @@ * * Wireless daemon for Linux * - * Copyright (C) 2017 Intel Corporation. All rights reserved. + * Copyright (C) 2017-2018 Intel Corporation. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -116,7 +116,9 @@ static void update_powered(void *data, struct l_dbus_message_iter *variant) static const struct proxy_interface_property adapter_properties[] = { { "Name", "s", update_name, get_name }, - { "Powered", "b", update_powered, get_powered_tostr, true }, + { "Powered", "b", update_powered, get_powered_tostr, true, + properties_builder_append_on_off_variant, + properties_on_off_opts }, { "Vendor", "s", update_vendor }, { "Model", "s", update_model }, { } @@ -275,28 +277,9 @@ static enum cmd_status cmd_set_property(const char *adapter_name, char *args) return CMD_STATUS_OK; } -static char *cmd_set_property_completion(const char *text, int state) +static char *set_property_cmd_arg_completion(const char *text, int state) { - static size_t index; - static size_t len; - const char *prop; - - if (!state) { - index = 0; - len = strlen(text); - } - - while ((prop = adapter_properties[index].name)) { - if (!adapter_properties[index++].is_read_write) - continue; - - if (strncmp(prop, text, len)) - continue; - - return l_strdup(prop); - } - - return NULL; + return proxy_property_completion(adapter_properties, text, state); } static const struct command adapter_commands[] = { @@ -307,7 +290,7 @@ static const struct command adapter_commands[] = { { "", "set-property", " ", cmd_set_property, "Set property", false, - cmd_set_property_completion }, + set_property_cmd_arg_completion }, { } };