mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Namhyung Kim <namhyung@kernel.org>
To: Taeung Song <treeze.taeung@gmail.com>
Cc: Arnaldo Carvalho de Melo <acme@kernel.org>,
	linux-kernel@vger.kernel.org, jolsa@redhat.com,
	Ingo Molnar <mingo@redhat.com>
Subject: Re: [PATCH v4 4/5] perf config: Add a option 'list-all' to perf-config
Date: Mon, 27 Jul 2015 17:48:47 +0900	[thread overview]
Message-ID: <20150727084847.GD22022@danjae.kornet> (raw)
In-Reply-To: <1437926311-16226-5-git-send-email-treeze.taeung@gmail.com>

On Mon, Jul 27, 2015 at 12:58:30AM +0900, Taeung Song wrote:
> A option 'list-all' is to display both current config variables and
> all possible config variables with default values.
> The syntax examples are like below
> 
>     perf config [options]
> 
>     display all perf config with default values.
>     # perf config -a | --list-all
> 
> Signed-off-by: Taeung Song <treeze.taeung@gmail.com>
> ---
>  tools/perf/Documentation/perf-config.txt |  6 ++++
>  tools/perf/builtin-config.c              | 48 ++++++++++++++++++++++++++++++++
>  2 files changed, 54 insertions(+)
> 
> diff --git a/tools/perf/Documentation/perf-config.txt b/tools/perf/Documentation/perf-config.txt
> index cd4b1a6..d8b3acc 100644
> --- a/tools/perf/Documentation/perf-config.txt
> +++ b/tools/perf/Documentation/perf-config.txt
> @@ -11,6 +11,8 @@ SYNOPSIS
>  'perf config' [<file-option>] [section.name[=value] ...]
>  or
>  'perf config' [<file-option>] -l | --list
> +or
> +'perf config' [<file-option>] -a | --list-all
>  
>  DESCRIPTION
>  -----------
> @@ -31,6 +33,10 @@ OPTIONS
>  	For writing and reading options: write to system-wide
>  	'$(sysconfdir)/perfconfig' or read it.
>  
> +-a::
> +--list-all::
> +	Show current and all possible config variables with default values.
> +
>  CONFIGURATION FILE
>  ------------------
>  
> diff --git a/tools/perf/builtin-config.c b/tools/perf/builtin-config.c
> index 6d9f28c..f4a1569 100644
> --- a/tools/perf/builtin-config.c
> +++ b/tools/perf/builtin-config.c
> @@ -23,6 +23,7 @@ static const char * const config_usage[] = {
>  };
>  
>  #define ACTION_LIST (1<<0)
> +#define ACTION_LIST_ALL (1<<1)
>  
>  static const struct option config_options[] = {
>  	OPT_GROUP("Config file location"),
> @@ -31,6 +32,8 @@ static const struct option config_options[] = {
>  	OPT_GROUP("Action"),
>  	OPT_BIT('l', "list", &actions,
>  		"show current config variables", ACTION_LIST),
> +	OPT_BIT('a', "list-all", &actions,
> +		"show current and all possible config variables with default values", ACTION_LIST_ALL),

Why did you use OPT_BIT?  Do you want to support multiple 'actions' at
the same time?  I'd rather support just one action, but I won't insist
it strongly..  Anyway, setting bits will confuse the switch statement
in the cmd_config().

Thanks,
Namhyung


>  	OPT_END()
>  };
>  
> @@ -539,6 +542,45 @@ static int collect_current_config(const char *var, const char *value,
>  			   normalize_value(section_name, name, value));
>  }
>  
> +static int show_all_config(void)
> +{
> +	int i;
> +	bool has_config;
> +	struct config_section *section_node;
> +	struct config_element *element_node;
> +
> +	for (i = 0; default_configsets[i].section_name != NULL; i++) {
> +		find_config(&section_node, &element_node,
> +			    default_configsets[i].section_name, default_configsets[i].name);
> +
> +		if (!element_node)
> +			printf("%s.%s=%s\n", default_configsets[i].section_name,
> +			       default_configsets[i].name, default_configsets[i].value);
> +		else
> +			printf("%s.%s=%s\n", section_node->name,
> +			       element_node->name, element_node->value);
> +	}
> +
> +	/* Print config variables the default configsets haven't */
> +	list_for_each_entry(section_node, &sections, list) {
> +		list_for_each_entry(element_node, &section_node->element_head, list) {
> +			has_config = false;
> +			for (i = 0; default_configsets[i].section_name != NULL; i++) {
> +				if (!strcmp(default_configsets[i].section_name, section_node->name)
> +				    && !strcmp(default_configsets[i].name, element_node->name)) {
> +					has_config = true;
> +					break;
> +				}
> +			}
> +			if (!has_config)
> +				printf("%s.%s=%s\n", section_node->name,
> +				       element_node->name, element_node->value);
> +		}
> +	}
> +
> +	return 0;
> +}
> +
>  static int perf_configset_with_option(configset_fn_t fn, const char *var, char *value)
>  {
>  	char *section_name;
> @@ -617,6 +659,12 @@ int cmd_config(int argc, const char **argv, const char *prefix __maybe_unused)
>  		else
>  			goto out_err;
>  		goto out;
> +	case ACTION_LIST_ALL:
> +		if (argc == 0)
> +			ret = show_all_config();
> +		else
> +			goto out_err;
> +		goto out;
>  	default:
>  		if ((!has_option || use_global_config || use_system_config)
>  		    && argc == 0) {
> -- 
> 1.9.1
> 

  reply	other threads:[~2015-07-27  8:51 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-26 15:58 [PATCH v4 0/5] perf tools: Add 'perf-config' command Taeung Song
2015-07-26 15:58 ` [PATCH v4 1/5] " Taeung Song
2015-07-27  7:59   ` Namhyung Kim
2015-07-26 15:58 ` [PATCH v4 2/5] perf config: Add '--system' and '--global' options to select which config file is used Taeung Song
2015-07-27  8:06   ` Namhyung Kim
2015-07-26 15:58 ` [PATCH v4 3/5] perf config: Add functions which can get or set perf config variables Taeung Song
2015-07-27  8:38   ` Namhyung Kim
2015-07-26 15:58 ` [PATCH v4 4/5] perf config: Add a option 'list-all' to perf-config Taeung Song
2015-07-27  8:48   ` Namhyung Kim [this message]
2015-08-07  1:12     ` taeung
2015-08-08  9:50       ` Taewoong Song
2015-08-09  3:07         ` Namhyung Kim
2015-08-09  3:01       ` Namhyung Kim
2015-08-09  7:54         ` Taewoong Song
2015-07-26 15:58 ` [PATCH v4 5/5] perf config: Add a option 'remove' " Taeung Song
  -- strict thread matches above, loose matches on Subject: below --
2015-07-17  1:39 [PATCH v4 0/5] perf tools: Add 'perf-config' command Taeung Song
2015-07-17  1:40 ` [PATCH v4 4/5] perf config: Add a option 'list-all' 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=20150727084847.GD22022@danjae.kornet \
    --to=namhyung@kernel.org \
    --cc=acme@kernel.org \
    --cc=jolsa@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=treeze.taeung@gmail.com \
    /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

Powered by JetHome