Files
bizhang_-obav/src/systemcmds/param/param.c

704 lines
15 KiB
C
Raw Normal View History

/****************************************************************************
*
* Copyright (c) 2012-2015 PX4 Development Team. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* 3. Neither the name PX4 nor the names of its contributors may be
* used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
****************************************************************************/
/**
* @file param.c
* @author Lorenz Meier <lorenz@px4.io>
* @author Andreas Antener <andreas@uaventure.com>
*
* Parameter tool.
*/
#include <px4_config.h>
#include <px4_posix.h>
2017-02-25 07:06:25 +01:00
#include <errno.h>
#include <stdio.h>
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <unistd.h>
#include <fcntl.h>
2014-07-05 13:35:12 -07:00
#include <math.h>
2017-01-05 13:42:48 -08:00
#include <inttypes.h>
#include <sys/stat.h>
#include <arch/board/board.h>
#include "systemlib/systemlib.h"
#include "systemlib/param/param.h"
#if defined(FLASH_BASED_PARAMS)
# include "systemlib/flashparams/flashparams.h"
#endif
#include "systemlib/err.h"
__EXPORT int param_main(int argc, char *argv[]);
enum COMPARE_OPERATOR {
COMPARE_OPERATOR_EQUAL = 0,
COMPARE_OPERATOR_GREATER = 1,
};
#ifdef __PX4_QURT
#define PARAM_PRINT PX4_INFO
#else
#define PARAM_PRINT printf
#endif
static int do_save(const char *param_file_name);
static int do_save_default(void);
static int do_load(const char *param_file_name);
static int do_import(const char *param_file_name);
static int do_show(const char *search_string, bool only_changed);
static int do_show_index(const char *index, bool used_index);
static void do_show_print(void *arg, param_t param);
static int do_set(const char *name, const char *val, bool fail_on_not_found);
static int do_compare(const char *name, char *vals[], unsigned comparisons, enum COMPARE_OPERATOR cmd_op);
static int do_reset(const char *excludes[], int num_excludes);
static int do_reset_nostart(const char *excludes[], int num_excludes);
static int do_find(const char *name);
int
param_main(int argc, char *argv[])
{
if (argc >= 2) {
if (!strcmp(argv[1], "save")) {
if (argc >= 3) {
return do_save(argv[2]);
} else {
2017-02-25 07:06:25 +01:00
int ret = do_save_default();
if (ret) {
PX4_ERR("Param save failed (%i)", ret);
return 1;
} else {
return 0;
}
}
}
2012-10-23 23:38:45 -07:00
if (!strcmp(argv[1], "load")) {
if (argc >= 3) {
return do_load(argv[2]);
} else {
return do_load(param_get_default_file());
}
}
if (!strcmp(argv[1], "import")) {
if (argc >= 3) {
return do_import(argv[2]);
} else {
return do_import(param_get_default_file());
}
}
2012-10-23 23:38:45 -07:00
if (!strcmp(argv[1], "select")) {
if (argc >= 3) {
param_set_default_file(argv[2]);
} else {
param_set_default_file(NULL);
}
2017-02-25 07:06:25 +01:00
PX4_INFO("selected parameter default file %s", param_get_default_file());
return 0;
}
2012-10-23 23:38:45 -07:00
if (!strcmp(argv[1], "show")) {
2012-11-01 08:11:36 +01:00
if (argc >= 3) {
// optional argument -c to show only non-default params
if (!strcmp(argv[2], "-c")) {
if (argc >= 4) {
return do_show(argv[3], true);
} else {
return do_show(NULL, true);
}
} else {
return do_show(argv[2], false);
}
2012-11-01 08:11:36 +01:00
} else {
return do_show(NULL, false);
2012-11-01 08:11:36 +01:00
}
}
if (!strcmp(argv[1], "set")) {
if (argc >= 5) {
/* if the fail switch is provided, fails the command if not found */
bool fail = !strcmp(argv[4], "fail");
return do_set(argv[2], argv[3], fail);
} else if (argc >= 4) {
return do_set(argv[2], argv[3], false);
} else {
2017-02-25 07:06:25 +01:00
PX4_ERR("not enough arguments.\nTry 'param set PARAM_NAME 3 [fail]'");
return 1;
}
}
if (!strcmp(argv[1], "compare")) {
if (argc >= 4) {
return do_compare(argv[2], &argv[3], argc - 3, COMPARE_OPERATOR_EQUAL);
} else {
2017-02-25 07:06:25 +01:00
PX4_ERR("not enough arguments.\nTry 'param compare PARAM_NAME 3'");
return 1;
}
}
if (!strcmp(argv[1], "greater")) {
if (argc >= 4) {
return do_compare(argv[2], &argv[3], argc - 3, COMPARE_OPERATOR_GREATER);
} else {
2017-02-25 07:06:25 +01:00
PX4_ERR("not enough arguments.\nTry 'param greater PARAM_NAME 3'");
return 1;
}
}
if (!strcmp(argv[1], "reset")) {
if (argc >= 3) {
return do_reset((const char **) &argv[2], argc - 2);
2015-02-10 08:40:41 +01:00
} else {
return do_reset(NULL, 0);
}
}
if (!strcmp(argv[1], "reset_nostart")) {
if (argc >= 3) {
return do_reset_nostart((const char **) &argv[2], argc - 2);
2015-02-10 08:40:41 +01:00
} else {
return do_reset_nostart(NULL, 0);
}
}
2015-05-18 23:15:20 +02:00
if (!strcmp(argv[1], "index_used")) {
if (argc >= 3) {
return do_show_index(argv[2], true);
2015-09-05 12:21:11 -04:00
2015-05-18 23:15:20 +02:00
} else {
2017-02-25 07:06:25 +01:00
PX4_ERR("no index provided");
2015-05-18 23:15:20 +02:00
return 1;
}
}
if (!strcmp(argv[1], "index")) {
if (argc >= 3) {
return do_show_index(argv[2], false);
2015-09-05 12:21:11 -04:00
2015-05-18 23:15:20 +02:00
} else {
2017-02-25 07:06:25 +01:00
PX4_ERR("no index provided");
2015-05-18 23:15:20 +02:00
return 1;
}
}
if (!strcmp(argv[1], "find")) {
if (argc >= 3) {
return do_find(argv[2]);
} else {
2017-02-25 07:06:25 +01:00
PX4_ERR("not enough arguments.\nTry 'param find PARAM_NAME'");
return 1;
}
}
}
PX4_INFO("expected a command, try 'load', 'import', 'show [-c] [<filter>]', 'set <param> <value>', 'compare',\n'index', 'index_used', 'find', 'greater', 'select', 'save', or 'reset' ");
return 1;
}
#if defined(FLASH_BASED_PARAMS)
/* If flash based parameters are uses we have to change some of the calls to the
* default param calls, which will in turn take care of locking and calling to the
* flash backend.
*/
static int
do_save(const char *param_file_name)
{
return param_save_default();
}
static int
do_load(const char *param_file_name)
{
return param_load_default();
}
static int
do_import(const char *param_file_name)
{
return param_import(-1);
}
#else
static int
do_save(const char *param_file_name)
{
/* create the file */
int fd = open(param_file_name, O_WRONLY | O_CREAT, PX4_O_MODE_666);
if (fd < 0) {
2017-02-25 07:06:25 +01:00
PX4_ERR("open '%s' failed (%i)", param_file_name, errno);
return 1;
}
int result = param_export(fd, false);
close(fd);
if (result < 0) {
#ifndef __PX4_QURT
(void)unlink(param_file_name);
#endif
2017-02-25 07:06:25 +01:00
PX4_ERR("exporting to '%s' failed (%i)", param_file_name, result);
return 1;
}
return 0;
}
static int
do_load(const char *param_file_name)
{
int fd = open(param_file_name, O_RDONLY);
if (fd < 0) {
2017-02-25 07:06:25 +01:00
PX4_ERR("open '%s' failed (%i)", param_file_name, errno);
return 1;
}
int result = param_load(fd);
close(fd);
if (result < 0) {
2017-02-25 07:06:25 +01:00
PX4_ERR("importing from '%s' failed (%i)", param_file_name, result);
return 1;
}
return 0;
}
static int
do_import(const char *param_file_name)
{
int fd = open(param_file_name, O_RDONLY);
if (fd < 0) {
2017-02-25 07:06:25 +01:00
PX4_ERR("open '%s' failed (%i)", param_file_name, errno);
return 1;
}
int result = param_import(fd);
close(fd);
if (result < 0) {
2017-02-25 07:06:25 +01:00
PX4_ERR("importing from '%s' failed (%i)", param_file_name, result);
return 1;
}
return 0;
}
#endif
static int
do_save_default(void)
{
return param_save_default();
}
static int
do_show(const char *search_string, bool only_changed)
{
PARAM_PRINT("Symbols: x = used, + = saved, * = unsaved\n");
param_foreach(do_show_print, (char *)search_string, only_changed, false);
PARAM_PRINT("\n %u parameters total, %u used.\n", param_count(), param_count_used());
return 0;
}
static int
do_find(const char *name)
{
param_t ret = param_find_no_notification(name);
if (ret == PARAM_INVALID) {
2017-02-25 07:06:25 +01:00
PX4_ERR("Parameter %s not found", name);
return 1;
}
PARAM_PRINT("Found param %s at index %i\n", name, (int)ret);
return 0;
}
static int
2015-05-18 23:15:20 +02:00
do_show_index(const char *index, bool used_index)
{
char *end;
int i = strtol(index, &end, 10);
param_t param;
int32_t ii;
float ff;
if (used_index) {
param = param_for_used_index(i);
2015-09-05 12:21:11 -04:00
2015-05-18 23:15:20 +02:00
} else {
param = param_for_index(i);
}
if (param == PARAM_INVALID) {
2017-02-25 07:06:25 +01:00
PX4_ERR("param not found for index %u", i);
return 1;
2015-05-18 23:15:20 +02:00
}
PARAM_PRINT("index %d: %c %c %s [%d,%d] : ", i, (param_used(param) ? 'x' : ' '),
2017-01-12 02:34:30 +01:00
param_value_unsaved(param) ? '*' : (param_value_is_default(param) ? ' ' : '+'),
param_name(param), param_get_used_index(param), param_get_index(param));
2015-05-18 23:15:20 +02:00
switch (param_type(param)) {
case PARAM_TYPE_INT32:
if (!param_get(param, &ii)) {
PARAM_PRINT("%ld\n", (long)ii);
2015-05-18 23:15:20 +02:00
}
break;
case PARAM_TYPE_FLOAT:
if (!param_get(param, &ff)) {
PARAM_PRINT("%4.4f\n", (double)ff);
2015-05-18 23:15:20 +02:00
}
break;
2015-09-05 12:21:11 -04:00
2015-05-18 23:15:20 +02:00
default:
PARAM_PRINT("<unknown type %d>\n", 0 + param_type(param));
2015-05-18 23:15:20 +02:00
}
return 0;
2015-05-18 23:15:20 +02:00
}
static void
do_show_print(void *arg, param_t param)
{
int32_t i;
float f;
const char *search_string = (const char *)arg;
const char *p_name = (const char *)param_name(param);
2012-11-01 08:11:36 +01:00
/* print nothing if search string is invalid and not matching */
2014-01-12 15:53:06 +01:00
if (!(arg == NULL)) {
/* start search */
2014-07-05 13:35:12 -07:00
const char *ss = search_string;
const char *pp = p_name;
2014-01-12 15:53:06 +01:00
/* XXX this comparison is only ok for trailing wildcards */
while (*ss != '\0' && *pp != '\0') {
// case insensitive comparison (param_name is always upper case)
if (toupper(*ss) == *pp) {
2014-01-12 15:53:06 +01:00
ss++;
pp++;
2014-01-12 15:53:06 +01:00
} else if (*ss == '*') {
if (*(ss + 1) != '\0') {
2017-02-25 07:06:25 +01:00
PX4_WARN("* symbol only allowed at end of search string");
// FIXME - should exit
return;
2014-01-12 15:53:06 +01:00
}
pp++;
2014-01-12 15:53:06 +01:00
} else {
/* param not found */
return;
}
}
/* the search string must have been consumed */
if (!(*ss == '\0' || *ss == '*') || *pp != '\0') {
2014-01-12 15:53:06 +01:00
return;
}
}
PARAM_PRINT("%c %c %s [%d,%d] : ", (param_used(param) ? 'x' : ' '),
2017-01-12 02:34:30 +01:00
param_value_unsaved(param) ? '*' : (param_value_is_default(param) ? ' ' : '+'),
param_name(param), param_get_used_index(param), param_get_index(param));
/*
* This case can be expanded to handle printing common structure types.
*/
switch (param_type(param)) {
case PARAM_TYPE_INT32:
if (!param_get(param, &i)) {
PARAM_PRINT("%ld\n", (long)i);
return;
}
2012-10-23 23:38:45 -07:00
break;
2012-10-23 23:38:45 -07:00
case PARAM_TYPE_FLOAT:
if (!param_get(param, &f)) {
PARAM_PRINT("%4.4f\n", (double)f);
return;
}
2012-10-23 23:38:45 -07:00
break;
2012-10-23 23:38:45 -07:00
case PARAM_TYPE_STRUCT ... PARAM_TYPE_STRUCT_MAX:
PARAM_PRINT("<struct type %d size %zu>\n", 0 + param_type(param), param_size(param));
return;
2012-10-23 23:38:45 -07:00
default:
PARAM_PRINT("<unknown type %d>\n", 0 + param_type(param));
return;
}
2012-10-23 23:38:45 -07:00
PARAM_PRINT("<error fetching parameter %lu>\n", (unsigned long)param);
}
static int
do_set(const char *name, const char *val, bool fail_on_not_found)
{
int32_t i;
float f;
param_t param = param_find(name);
/* set nothing if parameter cannot be found */
if (param == PARAM_INVALID) {
/* param not found - fail silenty in scripts as it prevents booting */
2017-02-25 07:06:25 +01:00
PX4_ERR("Parameter %s not found.", name);
return (fail_on_not_found) ? 1 : 0;
}
/*
* Set parameter if type is known and conversion from string to value turns out fine
*/
switch (param_type(param)) {
case PARAM_TYPE_INT32:
if (!param_get(param, &i)) {
/* convert string */
char *end;
int32_t newval = strtol(val, &end, 10);
2015-09-20 16:40:33 +02:00
if (i != newval) {
PARAM_PRINT("%c %s: ",
2017-01-12 02:34:30 +01:00
param_value_unsaved(param) ? '*' : (param_value_is_default(param) ? ' ' : '+'),
param_name(param));
PARAM_PRINT("curr: %ld", (long)i);
param_set(param, &newval);
PARAM_PRINT(" -> new: %ld\n", (long)newval);
}
}
break;
case PARAM_TYPE_FLOAT:
if (!param_get(param, &f)) {
/* convert string */
char *end;
float newval = strtod(val, &end);
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wfloat-equal"
if (f != newval) {
#pragma GCC diagnostic pop
PARAM_PRINT("%c %s: ",
2017-01-12 02:34:30 +01:00
param_value_unsaved(param) ? '*' : (param_value_is_default(param) ? ' ' : '+'),
param_name(param));
PARAM_PRINT("curr: %4.4f", (double)f);
param_set(param, &newval);
PARAM_PRINT(" -> new: %4.4f\n", (double)newval);
}
}
break;
default:
2017-02-25 07:06:25 +01:00
PX4_ERR("<unknown / unsupported type %d>\n", 0 + param_type(param));
return 1;
}
2017-02-25 07:06:25 +01:00
int ret = param_save_default();
if (ret) {
PX4_ERR("Param save failed (%i)", ret);
2016-01-22 11:36:14 +01:00
return 1;
} else {
return 0;
}
}
static int
do_compare(const char *name, char *vals[], unsigned comparisons, enum COMPARE_OPERATOR cmp_op)
{
int32_t i;
float f;
param_t param = param_find(name);
/* set nothing if parameter cannot be found */
if (param == PARAM_INVALID) {
/* param not found */
2017-02-25 07:06:25 +01:00
PX4_ERR("Parameter %s not found", name);
return 1;
}
/*
* Set parameter if type is known and conversion from string to value turns out fine
*/
int ret = 1;
switch (param_type(param)) {
case PARAM_TYPE_INT32:
if (!param_get(param, &i)) {
/* convert string */
char *end;
for (unsigned k = 0; k < comparisons; k++) {
int j = strtol(vals[k], &end, 10);
if (((cmp_op == COMPARE_OPERATOR_EQUAL) && (i == j)) ||
((cmp_op == COMPARE_OPERATOR_GREATER) && (i > j))) {
2016-06-02 17:26:23 +01:00
PX4_DEBUG(" %ld: ", (long)i);
ret = 0;
}
}
}
break;
case PARAM_TYPE_FLOAT:
if (!param_get(param, &f)) {
/* convert string */
char *end;
for (unsigned k = 0; k < comparisons; k++) {
float g = strtod(vals[k], &end);
2015-09-05 12:21:11 -04:00
if (((cmp_op == COMPARE_OPERATOR_EQUAL) && (fabsf(f - g) < 1e-7f)) ||
((cmp_op == COMPARE_OPERATOR_GREATER) && (f > g))) {
2016-06-02 17:26:23 +01:00
PX4_DEBUG(" %4.4f: ", (double)f);
ret = 0;
}
}
}
break;
default:
2017-02-25 07:06:25 +01:00
PX4_ERR("<unknown / unsupported type %d>", 0 + param_type(param));
return 1;
}
if (ret == 0) {
2016-06-02 17:26:23 +01:00
PX4_DEBUG("%c %s: match\n",
2016-06-02 17:27:16 +01:00
param_value_unsaved(param) ? '*' : (param_value_is_default(param) ? ' ' : '+'),
param_name(param));
}
return ret;
}
static int
2015-02-10 08:40:41 +01:00
do_reset(const char *excludes[], int num_excludes)
{
if (num_excludes > 0) {
param_reset_excludes(excludes, num_excludes);
2015-02-10 08:40:41 +01:00
} else {
param_reset_all();
}
2015-02-10 08:40:41 +01:00
2017-02-25 07:06:25 +01:00
int ret = param_save_default();
if (ret) {
PX4_ERR("Param save failed (%i)", ret);
return 1;
}
2015-09-05 12:21:11 -04:00
return 0;
}
static int
2015-02-10 08:40:41 +01:00
do_reset_nostart(const char *excludes[], int num_excludes)
{
int32_t autostart;
int32_t autoconfig;
(void)param_get(param_find("SYS_AUTOSTART"), &autostart);
(void)param_get(param_find("SYS_AUTOCONFIG"), &autoconfig);
if (num_excludes > 0) {
param_reset_excludes(excludes, num_excludes);
2015-02-10 08:40:41 +01:00
} else {
param_reset_all();
}
(void)param_set(param_find("SYS_AUTOSTART"), &autostart);
(void)param_set(param_find("SYS_AUTOCONFIG"), &autoconfig);
2017-02-25 07:06:25 +01:00
int ret = param_save_default();
if (ret) {
PX4_ERR("Param save failed (%i)", ret);
return 1;
}
2015-09-05 12:21:11 -04:00
return 0;
}