DPDK patches and discussions
 help / color / mirror / Atom feed
From: Bruce Richardson <bruce.richardson@intel.com>
To: David Marchand <david.marchand@redhat.com>
Cc: <dev@dpdk.org>, <roretzla@linux.microsoft.com>,
	Sunil Kumar Kori <skori@marvell.com>,
	Rakesh Kudurumalla <rkudurumalla@marvell.com>,
	"Jerin Jacob" <jerinj@marvell.com>,
	Srikanth Yalavarthi <syalavarthi@marvell.com>,
	Cristian Dumitrescu <cristian.dumitrescu@intel.com>,
	Aman Singh <aman.deep.singh@intel.com>,
	Yuying Zhang <yuying.zhang@intel.com>,
	"Brian Dooley" <brian.dooley@intel.com>,
	Gowrishankar Muthukrishnan <gmuthukrishn@marvell.com>
Subject: Re: [PATCH] eal: add helper to skip whitespaces
Date: Wed, 14 Feb 2024 13:07:04 +0000	[thread overview]
Message-ID: <Zcy6-HbtdyjajELS@bricha3-mobl1.ger.corp.intel.com> (raw)
In-Reply-To: <20240214121219.3408867-1-david.marchand@redhat.com>

On Wed, Feb 14, 2024 at 01:12:19PM +0100, David Marchand wrote:
> Reduce code duplication by providing a simple inline helper.
> 
> Signed-off-by: David Marchand <david.marchand@redhat.com>
> ---
>  app/graph/utils.c                          | 13 ++------
>  app/test-eventdev/parser.c                 | 14 ++++-----
>  app/test-eventdev/parser.h                 |  8 -----
>  app/test-mldev/parser.c                    | 17 ++++++-----
>  app/test-mldev/parser.h                    |  8 -----
>  app/test-pmd/cmdline_tm.c                  | 13 ++------
>  app/test/test_string_fns.c                 | 35 ++++++++++++++++++++++
>  examples/fips_validation/fips_validation.c | 16 +++-------
>  examples/ip_pipeline/parser.c              | 14 ++++-----
>  examples/ip_pipeline/parser.h              |  8 -----
>  examples/pipeline/cli.c                    | 13 ++------
>  lib/eal/include/rte_string_fns.h           | 27 +++++++++++++++++
>  12 files changed, 98 insertions(+), 88 deletions(-)
> 
> diff --git a/app/graph/utils.c b/app/graph/utils.c
> index c7b6ae83cf..1f5ee68273 100644
> --- a/app/graph/utils.c
> +++ b/app/graph/utils.c
> @@ -9,17 +9,10 @@
>  #include <string.h>
>  
>  #include <rte_common.h>
> +#include <rte_string_fns.h>
>  
>  #include "module_api.h"
>  
> -#define white_spaces_skip(pos)			\
> -({						\
> -	__typeof__(pos) _p = (pos);		\
> -	for ( ; isspace(*_p); _p++)		\
> -		;				\
> -	_p;					\
> -})
> -
>  static void
>  hex_string_to_uint64(uint64_t *dst, const char *hexs)
>  {
> @@ -47,7 +40,7 @@ parser_uint64_read(uint64_t *value, const char *p)
>  	char *next;
>  	uint64_t val;
>  
> -	p = white_spaces_skip(p);
> +	p = rte_str_skip_whitespaces(p);
>  	if (!isdigit(*p))
>  		return -EINVAL;
>  
> @@ -73,7 +66,7 @@ parser_uint64_read(uint64_t *value, const char *p)
>  		break;
>  	}
>  
> -	p = white_spaces_skip(p);
> +	p = rte_str_skip_whitespaces(p);

I like the idea of this. However, a question on naming. Do we want to make
it clear in the name that it only skips leading whitespace, and doesn't
e.g. trim whitespace off the end? How about:

rte_str_skip_leading_spaces()

It's longer, but I wonder if it's a bit clearer.

Also, might it be worthwhile providing an "rte_str_ltrim()" function along
with this, basically combining the skip_spaces call, with an memmove? Most
string handling in DPDK is not perf-sensitive and so a function with
similar name and behaviour to the python ltrim function may be appreciated
for its simplicity.

/Bruce

  reply	other threads:[~2024-02-14 13:07 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-14 12:12 David Marchand
2024-02-14 13:07 ` Bruce Richardson [this message]
2024-02-15  9:08   ` David Marchand
2024-02-15  9:10     ` Bruce Richardson
2024-02-15 17:32       ` Tyler Retzlaff

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=Zcy6-HbtdyjajELS@bricha3-mobl1.ger.corp.intel.com \
    --to=bruce.richardson@intel.com \
    --cc=aman.deep.singh@intel.com \
    --cc=brian.dooley@intel.com \
    --cc=cristian.dumitrescu@intel.com \
    --cc=david.marchand@redhat.com \
    --cc=dev@dpdk.org \
    --cc=gmuthukrishn@marvell.com \
    --cc=jerinj@marvell.com \
    --cc=rkudurumalla@marvell.com \
    --cc=roretzla@linux.microsoft.com \
    --cc=skori@marvell.com \
    --cc=syalavarthi@marvell.com \
    --cc=yuying.zhang@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).