DPDK patches and discussions
 help / color / mirror / Atom feed
From: Bruce Richardson <bruce.richardson@intel.com>
To: Jacek Piasecki <jacekx.piasecki@intel.com>
Cc: dev@dpdk.org, deepak.k.jain@intel.com,
	Kuba Kozak <kubax.kozak@intel.com>
Subject: Re: [dpdk-dev] [PATCH v3 3/4] cfgfile: rework of load function
Date: Fri, 30 Jun 2017 12:18:33 +0100	[thread overview]
Message-ID: <20170630111832.GE14776@bricha3-MOBL3.ger.corp.intel.com> (raw)
In-Reply-To: <1498559210-104084-4-git-send-email-jacekx.piasecki@intel.com>

On Tue, Jun 27, 2017 at 12:26:49PM +0200, Jacek Piasecki wrote:
> From: Kuba Kozak <kubax.kozak@intel.com>
> 
> New functions added to cfgfile library make it possible
> to significantly simplify the code of rte_cfgfile_load_with_params()
> 
> This patch shows the new body of this function.
> 
> Signed-off-by: Jacek Piasecki <jacekx.piasecki@intel.com>
> ---
>  lib/librte_cfgfile/rte_cfgfile.c | 143 +++++----------------------------------
>  1 file changed, 17 insertions(+), 126 deletions(-)
> 
> diff --git a/lib/librte_cfgfile/rte_cfgfile.c b/lib/librte_cfgfile/rte_cfgfile.c
> index 518b6ab..5625c80 100644
> --- a/lib/librte_cfgfile/rte_cfgfile.c
> +++ b/lib/librte_cfgfile/rte_cfgfile.c
> @@ -207,10 +207,6 @@ struct rte_cfgfile *
>  rte_cfgfile_load_with_params(const char *filename, int flags,
>  			     const struct rte_cfgfile_parameters *params)
>  {
> -	int allocated_sections = CFG_ALLOC_SECTION_BATCH;
> -	int allocated_entries = 0;
> -	int curr_section = -1;
> -	int curr_entry = -1;
>  	char buffer[CFG_NAME_LEN + CFG_VALUE_LEN + 4] = {0};
>  	int lineno = 0;
>  	struct rte_cfgfile *cfg = NULL;
> @@ -222,28 +218,7 @@ rte_cfgfile_load_with_params(const char *filename, int flags,
>  	if (f == NULL)
>  		return NULL;
>  
> -	cfg = malloc(sizeof(*cfg) + sizeof(cfg->sections[0]) *
> -		allocated_sections);
> -	if (cfg == NULL)
> -		goto error2;
> -
> -	memset(cfg->sections, 0, sizeof(cfg->sections[0]) * allocated_sections);
> -
> -	if (flags & CFG_FLAG_GLOBAL_SECTION) {
> -		curr_section = 0;
> -		allocated_entries = CFG_ALLOC_ENTRY_BATCH;
> -		cfg->sections[curr_section] = malloc(
> -			sizeof(*cfg->sections[0]) +
> -			sizeof(cfg->sections[0]->entries[0]) *
> -			allocated_entries);
> -		if (cfg->sections[curr_section] == NULL) {
> -			printf("Error - no memory for global section\n");
> -			goto error1;
> -		}
> -
> -		snprintf(cfg->sections[curr_section]->name,
> -				 sizeof(cfg->sections[0]->name), "GLOBAL");
> -	}
> +	cfg = rte_cfgfile_create(flags);
>  
>  	while (fgets(buffer, sizeof(buffer), f) != NULL) {
>  		char *pos = NULL;
> @@ -254,6 +229,7 @@ rte_cfgfile_load_with_params(const char *filename, int flags,
>  					"Check if line too long\n", lineno);
>  			goto error1;
>  		}
> +		/* skip parsing if comment character found */
>  		pos = memchr(buffer, params->comment_character, len);
>  		if (pos != NULL) {
>  			*pos = '\0';
> @@ -261,6 +237,7 @@ rte_cfgfile_load_with_params(const char *filename, int flags,
>  		}
>  
>  		len = _strip(buffer, len);
> +		/* skip lines without useful content */
>  		if (buffer[0] != '[' && memchr(buffer, '=', len) == NULL)
>  			continue;
>  
> @@ -268,130 +245,44 @@ rte_cfgfile_load_with_params(const char *filename, int flags,
>  			/* section heading line */
>  			char *end = memchr(buffer, ']', len);
>  			if (end == NULL) {
> -				printf("Error line %d - no terminating '['"
> +				printf("Error line %d - no terminating ']'"
>  					"character found\n", lineno);
>  				goto error1;
>  			}
>  			*end = '\0';
>  			_strip(&buffer[1], end - &buffer[1]);
>  
> -			/* close off old section and add start new one */
> -			if (curr_section >= 0)
> -				cfg->sections[curr_section]->num_entries =
> -					curr_entry + 1;
> -			curr_section++;
> -
> -			/* resize overall struct if we don't have room for more
> -			sections */
> -			if (curr_section == allocated_sections) {
> -				allocated_sections += CFG_ALLOC_SECTION_BATCH;
> -				struct rte_cfgfile *n_cfg = realloc(cfg,
> -					sizeof(*cfg) + sizeof(cfg->sections[0])
> -					* allocated_sections);
> -				if (n_cfg == NULL) {
> -					curr_section--;
> -					printf("Error - no more memory\n");
> -					goto error1;
> -				}
> -				cfg = n_cfg;
> -			}
> -
> -			/* allocate space for new section */
> -			allocated_entries = CFG_ALLOC_ENTRY_BATCH;
> -			curr_entry = -1;
> -			cfg->sections[curr_section] = malloc(
> -				sizeof(*cfg->sections[0]) +
> -				sizeof(cfg->sections[0]->entries[0]) *
> -				allocated_entries);
> -			if (cfg->sections[curr_section] == NULL) {
> -				printf("Error - no more memory\n");
> -				goto error1;
> -			}
> -
> -			snprintf(cfg->sections[curr_section]->name,
> -					sizeof(cfg->sections[0]->name),
> -					"%s", &buffer[1]);
> +			rte_cfgfile_add_section(cfg, &buffer[1]);
>  		} else {
> -			/* value line */
> -			if (curr_section < 0) {
> -				printf("Error line %d - value outside of"
> -					"section\n", lineno);
> -				goto error1;
> -			}
> -
> -			struct rte_cfgfile_section *sect =
> -				cfg->sections[curr_section];
> -
> +			/* key and value line */
>  			char *split[2] = {NULL};
> +
>  			split[0] = buffer;
>  			split[1] = memchr(buffer, '=', len);
> +			*split[1] = '\0';
> +			split[1]++;
> +
> +			_strip(split[0], strlen(split[0]));
> +			_strip(split[1], strlen(split[1]));
>  
> -			/* when delimeter not found */
> -			if (split[1] == NULL) {
> +			if (!(flags & CFG_FLAG_EMPTY_VALUES) &&
> +					(*split[1] == '\0')) {
>  				printf("Error at line %d - cannot "
>  					"split string\n", lineno);

This error message could do with an update. It's not that you can't
split the string, it's that the value is empty - something not allowed.
Also, it's bad practice to split literal strings for printing. This is
the one case where you are encouraged to go over the 80-char limit
rather than wrapping the line.

/Bruce

  reply	other threads:[~2017-06-30 11:18 UTC|newest]

Thread overview: 70+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-05-30  8:30 [dpdk-dev] [PATCH 0/3] Add support for using a config file for DPDK Jacek Piasecki
2017-05-30  8:30 ` [dpdk-dev] [PATCH 1/3] cfgfile: add new API functions Jacek Piasecki
2017-05-31 14:20   ` Bruce Richardson
2017-05-31 14:22     ` Bruce Richardson
2017-06-26 10:59   ` [dpdk-dev] [PATCH v2 0/7] Add support for using a config file for DPDK Jacek Piasecki
2017-06-26 10:59     ` [dpdk-dev] [PATCH v2 1/7] cfgfile: remove EAL dependency Jacek Piasecki
2017-06-26 13:12       ` Dumitrescu, Cristian
2017-06-27 10:26       ` [dpdk-dev] [PATCH v3 0/4] Rework cfgfile API to enable apps config file support Jacek Piasecki
2017-06-27 10:26         ` [dpdk-dev] [PATCH v3 1/4] cfgfile: remove EAL dependency Jacek Piasecki
2017-06-30  9:44           ` Bruce Richardson
2017-06-30 11:16             ` Bruce Richardson
2017-06-27 10:26         ` [dpdk-dev] [PATCH v3 2/4] cfgfile: add new functions to API Jacek Piasecki
2017-06-30  9:55           ` Bruce Richardson
2017-06-30 10:28           ` Bruce Richardson
2017-06-27 10:26         ` [dpdk-dev] [PATCH v3 3/4] cfgfile: rework of load function Jacek Piasecki
2017-06-30 11:18           ` Bruce Richardson [this message]
2017-06-27 10:26         ` [dpdk-dev] [PATCH v3 4/4] test/cfgfile: add new unit test Jacek Piasecki
2017-06-30 11:20         ` [dpdk-dev] [PATCH v3 0/4] Rework cfgfile API to enable apps config file support Bruce Richardson
2017-06-26 10:59     ` [dpdk-dev] [PATCH v2 2/7] cfgfile: add new functions to API Jacek Piasecki
2017-06-26 10:59     ` [dpdk-dev] [PATCH v2 3/7] cfgfile: rework of load function Jacek Piasecki
2017-06-26 10:59     ` [dpdk-dev] [PATCH v2 4/7] test/cfgfile: add new unit test Jacek Piasecki
2017-06-26 10:59     ` [dpdk-dev] [PATCH v2 5/7] eal: add functions parsing EAL arguments Jacek Piasecki
2017-06-27 10:52       ` [dpdk-dev] [PATCH v3 0/3] EAL change for using a config file for DPDK Jacek Piasecki
2017-06-27 10:52         ` [dpdk-dev] [PATCH v3 1/3] eal: add functions parsing EAL arguments Jacek Piasecki
2017-06-30 16:04           ` Bruce Richardson
2017-07-10 12:44           ` [dpdk-dev] [PATCH v4 0/5] Rework cfgfile API to enable apps config file support Jacek Piasecki
2017-07-10 12:44             ` [dpdk-dev] [PATCH v4 1/5] cfgfile: remove EAL dependency Jacek Piasecki
2017-08-30 17:58               ` Bruce Richardson
2017-07-10 12:44             ` [dpdk-dev] [PATCH v4 2/5] cfgfile: change existing API functions Jacek Piasecki
2017-08-30 20:07               ` Bruce Richardson
2017-07-10 12:44             ` [dpdk-dev] [PATCH v4 3/5] cfgfile: add new functions to API Jacek Piasecki
2017-08-30 20:18               ` Bruce Richardson
2017-07-10 12:44             ` [dpdk-dev] [PATCH v4 4/5] cfgfile: rework of load function Jacek Piasecki
2017-08-30 20:24               ` Bruce Richardson
2017-07-10 12:44             ` [dpdk-dev] [PATCH v4 5/5] test/cfgfile: add new unit test Jacek Piasecki
2017-08-30 20:25               ` Bruce Richardson
2017-09-04  9:21                 ` Bruce Richardson
2017-09-04  9:30               ` Bruce Richardson
2017-09-15 13:56                 ` Thomas Monjalon
2017-09-18 13:49                   ` Jastrzebski, MichalX K
2017-07-10 15:13             ` [dpdk-dev] [PATCH v4 0/5] Rework cfgfile API to enable apps config file support Thomas Monjalon
2017-07-20 21:48               ` Thomas Monjalon
2017-07-10 12:51           ` [dpdk-dev] [PATCH v4 0/3] EAL change for using a config file for DPDK Kuba Kozak
2017-07-10 12:51             ` [dpdk-dev] [PATCH v4 1/3] eal: add functions parsing EAL arguments Kuba Kozak
2017-07-13  9:26               ` [dpdk-dev] [PATCH v5 0/3] EAL change for using a config file for DPDK Kuba Kozak
2017-07-13 10:07               ` Kuba Kozak
2017-07-13 10:07                 ` [dpdk-dev] [PATCH v5 1/3] eal: add functions parsing EAL arguments Kuba Kozak
2017-07-13 10:07                 ` [dpdk-dev] [PATCH v5 2/3] app/testpmd: add parse options from cfg file Kuba Kozak
2017-07-13 10:07                 ` [dpdk-dev] [PATCH v5 3/3] app/testpmd: add parse options from JSON " Kuba Kozak
2019-01-23 19:31                 ` [dpdk-dev] [PATCH v5 0/3] EAL change for using a config file for DPDK Ferruh Yigit
2019-01-23 20:26                   ` Thomas Monjalon
2019-01-24 13:54                     ` Ferruh Yigit
2019-01-24 14:32                       ` Thomas Monjalon
2019-01-24 14:46                         ` Ferruh Yigit
2019-01-24 16:06                           ` Thomas Monjalon
2019-01-24 16:18                             ` Ferruh Yigit
2019-01-24 17:45                               ` Thomas Monjalon
2019-01-28 14:43                                 ` Ferruh Yigit
2017-07-10 12:51             ` [dpdk-dev] [PATCH v4 2/3] app/testpmd: add parse options from cfg file Kuba Kozak
2017-07-10 12:51             ` [dpdk-dev] [PATCH v4 3/3] app/testpmd: add parse options from JSON " Kuba Kozak
2017-06-27 10:52         ` [dpdk-dev] [PATCH v3 2/3] app/testpmd: changed example to parse options from " Jacek Piasecki
2017-06-27 10:52         ` [dpdk-dev] [PATCH v3 3/3] app/testpmd: add parse arguments from JSON config file Jacek Piasecki
2017-07-05  0:00         ` [dpdk-dev] [PATCH v3 0/3] EAL change for using a config file for DPDK Thomas Monjalon
2017-06-26 10:59     ` [dpdk-dev] [PATCH v2 6/7] app/testpmd: changed example to parse options from cfg file Jacek Piasecki
2017-06-26 10:59     ` [dpdk-dev] [PATCH v2 7/7] app/testpmd: add parse arguments from JSON config file Jacek Piasecki
2017-05-30  8:30 ` [dpdk-dev] [PATCH 2/3] eal: add functions parsing EAL arguments Jacek Piasecki
2017-05-31 15:46   ` Bruce Richardson
2017-05-30  8:30 ` [dpdk-dev] [PATCH 3/3] app/testpmd: changed example to parse options from cfg file Jacek Piasecki
2017-06-20  2:13   ` Wu, Jingjing
2017-06-20 10:10     ` Kozak, KubaX

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=20170630111832.GE14776@bricha3-MOBL3.ger.corp.intel.com \
    --to=bruce.richardson@intel.com \
    --cc=deepak.k.jain@intel.com \
    --cc=dev@dpdk.org \
    --cc=jacekx.piasecki@intel.com \
    --cc=kubax.kozak@intel.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;
as well as URLs for NNTP newsgroup(s).