From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
To: Sascha Hauer <s.hauer@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 1/1] command: add read command
Date: Fri, 27 Sep 2013 10:21:22 +0200 [thread overview]
Message-ID: <20130927082122.GC32444@ns203013.ovh.net> (raw)
In-Reply-To: <20130927081555.GL30088@pengutronix.de>
On 10:15 Fri 27 Sep , Sascha Hauer wrote:
> On Thu, Sep 26, 2013 at 07:45:56AM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote:
> > +static int do_read(int argc, char *argv[])
> > +{
> > + int opt;
> > + int cont = 0;
> > + int ret = -EINVAL;
> > + char *var;
> > + char *buf = xzalloc(2049);
> > + char *filename = NULL;
> > +
> > + if (!argc)
> > + return COMMAND_ERROR_USAGE;
> > +
> > + while((opt = getopt(argc, argv, "cf:")) > 0) {
> > + switch(opt) {
> > + case 'c':
> > + cont = 1;
> > + break;
>
> Do you really need this continue mode? It makes this stuff look rather
> flawy. For example one must know that this command is not reentrant. Not
> that it's likely that someone parses a file while parsing another file,
> but doing so would lead to strange results and is hard to fix.
>
> BTW I had to do very similar stuff recently, see attached what I came up
> with.
I agree on the issue but as we do not have the | on the shell and I do need to
read multiple line on a project. SO the only way would be to use a list of
open files
Best Regards,
J.
>
> Sascha
>
>
> From 5d513270e46c5705262d79c66cc630e20d1a66d9 Mon Sep 17 00:00:00 2001
> From: Sascha Hauer <s.hauer@pengutronix.de>
> Date: Sun, 22 Sep 2013 23:40:04 +0200
> Subject: [PATCH] add function to read single line files
>
> Often small files are used to store the value of a variable. This
> adds a function to easily read such a variable.
>
> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
> ---
> include/libbb.h | 2 ++
> lib/libbb.c | 42 ++++++++++++++++++++++++++++++++++++++++++
> 2 files changed, 44 insertions(+)
>
> diff --git a/include/libbb.h b/include/libbb.h
> index 47b2e08..2fe710c 100644
> --- a/include/libbb.h
> +++ b/include/libbb.h
> @@ -35,4 +35,6 @@ char *simple_itoa(unsigned int i);
> int write_full(int fd, void *buf, size_t size);
> int read_full(int fd, void *buf, size_t size);
>
> +char *read_file_line(const char *fmt, ...);
> +
> #endif /* __LIBBB_H */
> diff --git a/lib/libbb.c b/lib/libbb.c
> index e0d7481..200629e 100644
> --- a/lib/libbb.c
> +++ b/lib/libbb.c
> @@ -176,3 +176,45 @@ int read_full(int fd, void *buf, size_t size)
> return insize;
> }
> EXPORT_SYMBOL(read_full);
> +
> +/*
> + * read_file_line - read a line from a file
> + *
> + * Used to compose a filename from a printf format and to read a line from this
> + * file. All leading and trailing whitespaces (including line endings) are
> + * removed. The returned buffer must be freed with free(). This function is
> + * supposed for reading variable like content into a buffer, so files > 1024
> + * bytes are ignored.
> + */
> +char *read_file_line(const char *fmt, ...)
> +{
> + va_list args;
> + char *filename;
> + char *buf, *line = NULL;
> + int size, ret;
> + struct stat s;
> +
> + va_start(args, fmt);
> + filename = asprintf(fmt, args);
> + va_end(args);
> +
> + ret = stat(filename, &s);
> + if (ret)
> + goto out;
> +
> + if (s.st_size > 1024)
> + goto out;
> +
> + buf = read_file(filename, &size);
> + if (!buf)
> + goto out;
> +
> + line = strim(buf);
> +
> + line = xstrdup(line);
> + free(buf);
> +out:
> + free(filename);
> + return line;
> +}
> +EXPORT_SYMBOL_GPL(read_file_line);
> --
> 1.8.4.rc3
>
> --
> Pengutronix e.K. | |
> Industrial Linux Solutions | http://www.pengutronix.de/ |
> Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
> Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
prev parent reply other threads:[~2013-09-27 8:20 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-26 5:45 Jean-Christophe PLAGNIOL-VILLARD
2013-09-27 8:15 ` Sascha Hauer
2013-09-27 8:21 ` Jean-Christophe PLAGNIOL-VILLARD [this message]
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=20130927082122.GC32444@ns203013.ovh.net \
--to=plagnioj@jcrosoft.com \
--cc=barebox@lists.infradead.org \
--cc=s.hauer@pengutronix.de \
/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