From: Taeung Song <treeze.taeung@gmail.com>
To: Arnaldo Carvalho de Melo <acme@kernel.org>
Cc: linux-kernel@vger.kernel.org, Ingo Molnar <mingo@redhat.com>,
Taeung Song <treeze.taeung@gmail.com>,
Namhyung Kim <namhyung@kernel.org>, Jiri Olsa <jolsa@redhat.com>
Subject: [PATCH v10 21/22] perf config: normalize a value depending on default type of it
Date: Mon, 9 Nov 2015 11:33:14 +0900 [thread overview]
Message-ID: <1447036395-18911-22-git-send-email-treeze.taeung@gmail.com> (raw)
In-Reply-To: <1447036395-18911-1-git-send-email-treeze.taeung@gmail.com>
Whether or not user mis-type wrong data type to set config,
normalize the value. If a config user enter isn't contained
in default configs, just pass as it is.
For the examples,
# perf config report.queue-size=1M
# perf config report.queue-size
report.queue-size=1048576
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Signed-off-by: Taeung Song <treeze.taeung@gmail.com>
---
tools/perf/builtin-config.c | 54 ++++++++++++++++++++++++++++++++++++++++-----
1 file changed, 49 insertions(+), 5 deletions(-)
diff --git a/tools/perf/builtin-config.c b/tools/perf/builtin-config.c
index 89b12e9..388e95b 100644
--- a/tools/perf/builtin-config.c
+++ b/tools/perf/builtin-config.c
@@ -351,6 +351,54 @@ static int show_spec_config(struct list_head *sections,
return -1;
}
+static char *normalize_value(const char *section_name, const char *name, const char *value)
+{
+ int i, ret = 0;
+ char *endptr;
+ char key[BUFSIZ];
+ char *normalized;
+
+ scnprintf(key, sizeof(key), "%s.%s", section_name, name);
+ for (i = 0; default_configs[i].type != CONFIG_END; i++) {
+ struct config_item *config = &default_configs[i];
+
+ if (!strcmp(config->section, section_name) &&
+ !strcmp(config->name, name)) {
+ if (config->type == CONFIG_TYPE_BOOL)
+ ret = asprintf(&normalized, "%s",
+ perf_config_bool(key, value) ? "true" : "false");
+ else if (config->type == CONFIG_TYPE_INT ||
+ config->type == CONFIG_TYPE_LONG)
+ ret = asprintf(&normalized, "%d",
+ perf_config_int(key, value));
+ else if (config->type == CONFIG_TYPE_U64)
+ ret = asprintf(&normalized, "%"PRId64,
+ perf_config_u64(key, value));
+ else if (config->type == CONFIG_TYPE_FLOAT)
+ ret = asprintf(&normalized, "%f",
+ strtof(value, &endptr));
+ else if (config->type == CONFIG_TYPE_DOUBLE)
+ ret = asprintf(&normalized, "%f",
+ strtod(value, &endptr));
+ else
+ ret = asprintf(&normalized, "%s", value);
+
+ if (ret < 0)
+ return NULL;
+
+ return normalized;
+ }
+ }
+
+ normalized = strdup(value);
+ if (!normalized) {
+ pr_err("%s: strdup failed\n", __func__);
+ return NULL;
+ }
+
+ return normalized;
+}
+
static int set_config(struct list_head *sections, const char *config_file_name,
const char *section_name, const char *name, char *value)
{
@@ -359,11 +407,7 @@ static int set_config(struct list_head *sections, const char *config_file_name,
find_config(sections, §ion, &element, section_name, name);
if (value != NULL) {
- value = strdup(value);
- if (!value) {
- pr_err("%s: strdup failed\n", __func__);
- return -1;
- }
+ value = normalize_value(section_name, name, value);
/* if there isn't existent section, add a new section */
if (!section) {
--
1.9.1
next prev parent reply other threads:[~2015-11-09 2:37 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-09 2:32 [PATCH v10 00/22] perf tools: Add 'perf-config' command Taeung Song
2015-11-09 2:32 ` [PATCH v10 01/22] " Taeung Song
2015-11-09 13:58 ` Arnaldo Carvalho de Melo
2015-11-09 14:02 ` Arnaldo Carvalho de Melo
2015-11-09 2:32 ` [PATCH v10 02/22] perf tools: Add perf-config document Taeung Song
2015-11-09 2:32 ` [PATCH v10 03/22] perf config: Document variables for 'color' section in man page Taeung Song
2015-11-09 2:32 ` [PATCH v10 04/22] perf config: Document variables for 'tui' and 'gtk' sections " Taeung Song
2015-11-09 2:32 ` [PATCH v10 05/22] perf config: Document 'buildid.dir' variable " Taeung Song
2015-11-09 2:32 ` [PATCH v10 06/22] perf config: Document variables for 'annotate' section " Taeung Song
2015-11-09 2:33 ` [PATCH v10 07/22] perf config: Document variables for 'help' " Taeung Song
2015-11-09 2:33 ` [PATCH v10 08/22] perf config: Document 'hist.percentage' variable " Taeung Song
2015-11-09 2:33 ` [PATCH v10 09/22] perf config: Document 'ui.show-headers' " Taeung Song
2015-11-09 2:33 ` [PATCH v10 10/22] perf config: Document variables for 'call-graph' section " Taeung Song
2015-11-09 2:33 ` [PATCH v10 11/22] perf config: Document variables for 'report' " Taeung Song
2015-11-09 2:33 ` [PATCH v10 12/22] perf config: Document 'top.chidren' variable " Taeung Song
2015-11-09 2:33 ` [PATCH v10 13/22] perf config: Document 'man.viewer' " Taeung Song
2015-11-09 2:33 ` [PATCH v10 14/22] perf config: Document 'pager.<subcommand>' variables " Taeung Song
2015-11-09 2:33 ` [PATCH v10 15/22] perf config: Document 'kmem.default' variable " Taeung Song
2015-11-09 2:33 ` [PATCH v10 16/22] perf config: Add '--system' and '--user' options to select which config file is used Taeung Song
2015-11-09 2:33 ` [PATCH v10 17/22] perf config: Collect configs to handle config variables Taeung Song
2015-11-09 2:33 ` [PATCH v10 18/22] perf config: Add 'list-all' option to perf-config Taeung Song
2015-11-09 2:33 ` [PATCH v10 19/22] perf config: Add 'get' functionaliy Taeung Song
2015-11-09 2:33 ` [PATCH v10 20/22] perf config: Add 'set' feature Taeung Song
2015-11-09 2:33 ` Taeung Song [this message]
2015-11-09 2:33 ` [PATCH v10 22/22] perf config: Add a option 'remove' to perf-config Taeung Song
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1447036395-18911-22-git-send-email-treeze.taeung@gmail.com \
--to=treeze.taeung@gmail.com \
--cc=acme@kernel.org \
--cc=jolsa@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=namhyung@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox