blob: 4774191019884dc8ebf88f10a97306f98d7383f5 [file] [log] [blame]
/*
*
* Wireless daemon for Linux
*
* Copyright (C) 2017 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
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <ell/ell.h>
#include "command.h"
#include "dbus-proxy.h"
#include "display.h"
struct adapter {
bool powered;
char *model;
char *name;
char *vendor;
};
static const char *get_name(const void *data)
{
const struct adapter *adapter = data;
return adapter->name;
}
static void set_name(void *data, struct l_dbus_message_iter *variant)
{
struct adapter *adapter = data;
const char *value;
l_free(adapter->name);
if (!l_dbus_message_iter_get_variant(variant, "s", &value)) {
adapter->name = NULL;
return;
}
adapter->name = l_strdup(value);
}
static void set_vendor(void *data, struct l_dbus_message_iter *variant)
{
struct adapter *adapter = data;
const char *value;
l_free(adapter->vendor);
if (!l_dbus_message_iter_get_variant(variant, "s", &value)) {
adapter->vendor = NULL;
return;
}
adapter->vendor = l_strdup(value);
}
static void set_model(void *data, struct l_dbus_message_iter *variant)
{
struct adapter *adapter = data;
const char *value;
l_free(adapter->model);
if (!l_dbus_message_iter_get_variant(variant, "s", &value)) {
adapter->model = NULL;
return;
}
adapter->model = l_strdup(value);
}
static const char *get_powered_tostr(const void *data)
{
const struct adapter *adapter = data;
return adapter->powered ? "on" : "off";
}
static void set_powered(void *data, struct l_dbus_message_iter *variant)
{
struct adapter *adapter = data;
bool value;
if (!l_dbus_message_iter_get_variant(variant, "b", &value)) {
adapter->powered = false;
return;
}
adapter->powered = value;
}
static const struct proxy_interface_property adapter_properties[] = {
{ "Name", "s", set_name, get_name },
{ "Powered", "b", set_powered, get_powered_tostr, true },
{ "Vendor", "s", set_vendor },
{ "Model", "s", set_model },
{ }
};
static void display_adapter_inline(const char *margin, const void *data)
{
const struct adapter *adapter = data;
display("%s%-*s%-*s%-*s%-*s\n", margin,
19, adapter->name ? : "-", 10, get_powered_tostr(adapter),
20, adapter->vendor ? : "-", 20, adapter->model ? : "-");
}
static void *adapter_create(void)
{
return l_new(struct adapter, 1);
}
static void adapter_destroy(void *data)
{
struct adapter *adapter = data;
l_free(adapter->model);
l_free(adapter->vendor);
l_free(adapter->name);
l_free(adapter);
}
static const char *adapter_identity(void *data)
{
const struct adapter *adapter = data;
return adapter->name;
}
static const struct proxy_interface_type_ops adapter_ops = {
.create = adapter_create,
.destroy = adapter_destroy,
.display = display_adapter_inline,
.identity = adapter_identity,
};
static struct proxy_interface_type adapter_interface_type = {
.interface = IWD_ADAPTER_INTERFACE,
.properties = adapter_properties,
.ops = &adapter_ops,
};
static bool match_by_partial_name(const void *a, const void *b)
{
const struct adapter *adapter = a;
const char *text = b;
return !strncmp(adapter->name, text, strlen(text));
}
static enum cmd_status cmd_list(const char *adapter_name, char *args)
{
return CMD_STATUS_UNSUPPORTED;
}
static enum cmd_status cmd_show(const char *adapter_name, char *args)
{
return CMD_STATUS_UNSUPPORTED;
}
static enum cmd_status cmd_set_property(const char *adapter_name, char *args)
{
return CMD_STATUS_UNSUPPORTED;
}
static char *cmd_set_property_completion(const char *text, int state)
{
return NULL;
}
static const struct command adapter_commands[] = {
{ NULL, "list", NULL, cmd_list, "List adapters",
true },
{ "<phy>", "show", NULL, cmd_show, "Show adapter info",
true },
{ "<phy>", "set-property", "<name> <value>",
cmd_set_property, "Set property",
false,
cmd_set_property_completion },
{ }
};
static char *family_arg_completion(const char *text, int state)
{
static bool first_pass;
static size_t index;
static size_t len;
const char *cmd;
if (!state) {
index = 0;
len = strlen(text);
first_pass = true;
}
while ((cmd = adapter_commands[index].cmd)) {
if (adapter_commands[index++].entity)
continue;
if (strncmp(cmd, text, len))
continue;
return l_strdup(cmd);
}
if (first_pass) {
state = 0;
first_pass = false;
}
return proxy_property_str_completion(&adapter_interface_type,
match_by_partial_name, "Name",
text, state);
}
static char *entity_arg_completion(const char *text, int state)
{
return command_entity_arg_completion(text, state, adapter_commands);
}
static struct command_family adapter_command_family = {
.caption = "Adapters",
.name = "adapter",
.family_arg_completion = family_arg_completion,
.entity_arg_completion = entity_arg_completion,
.command_list = adapter_commands,
};
static int adapter_command_family_init(void)
{
command_family_register(&adapter_command_family);
return 0;
}
static void adapter_command_family_exit(void)
{
command_family_unregister(&adapter_command_family);
}
COMMAND_FAMILY(adapter_command_family, adapter_command_family_init,
adapter_command_family_exit)
static int adapter_interface_init(void)
{
proxy_interface_type_register(&adapter_interface_type);
return 0;
}
static void adapter_interface_exit(void)
{
proxy_interface_type_register(&adapter_interface_type);
}
INTERFACE_TYPE(adapter_interface_type, adapter_interface_init,
adapter_interface_exit)