qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Luiz Capitulino <lcapitulino@redhat.com>
To: Markus Armbruster <armbru@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: [Qemu-devel] Re: [PATCH 05/11] error: Convert qemu_opts_set() to QError
Date: Fri, 19 Mar 2010 16:50:00 -0300	[thread overview]
Message-ID: <20100319165000.24be76d6@redhat.com> (raw)
In-Reply-To: <1268929996-28763-6-git-send-email-armbru@redhat.com>

On Thu, 18 Mar 2010 17:33:12 +0100
Markus Armbruster <armbru@redhat.com> wrote:

> 
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
>  qemu-option.c |   17 ++++++-----------
>  1 files changed, 6 insertions(+), 11 deletions(-)
> 
> diff --git a/qemu-option.c b/qemu-option.c
> index e3916be..5c39666 100644
> --- a/qemu-option.c
> +++ b/qemu-option.c
> @@ -176,7 +176,7 @@ static int parse_option_bool(const char *name, const char *value, int *ret)
>          } else if (!strcmp(value, "off")) {
>              *ret = 0;
>          } else {
> -            fprintf(stderr, "Option '%s': Use 'on' or 'off'\n", name);
> +            qerror_report(QERR_INVALID_PARAMETER_VALUE, name, "'on' or 'off'");
>              return -1;
>          }
>      } else {
> @@ -193,12 +193,12 @@ static int parse_option_number(const char *name, const char *value, uint64_t *re
>      if (value != NULL) {
>          number = strtoull(value, &postfix, 0);
>          if (*postfix != '\0') {
> -            fprintf(stderr, "Option '%s' needs a number as parameter\n", name);
> +            qerror_report(QERR_INVALID_PARAMETER_VALUE, name, "a number");
>              return -1;
>          }
>          *ret = number;
>      } else {
> -        fprintf(stderr, "Option '%s' needs a parameter\n", name);
> +        qerror_report(QERR_INVALID_PARAMETER_VALUE, name, "a number");
>          return -1;
>      }
>      return 0;
> @@ -226,13 +226,11 @@ static int parse_option_size(const char *name, const char *value, uint64_t *ret)
>              *ret = (uint64_t) sizef;
>              break;
>          default:
> -            fprintf(stderr, "Option '%s' needs size as parameter\n", name);
> -            fprintf(stderr, "You may use k, M, G or T suffixes for "
> -                    "kilobytes, megabytes, gigabytes and terabytes.\n");
> +            qerror_report(QERR_INVALID_PARAMETER_VALUE, name, "a size");

 What about using error_printf_unless_qmp() to improve the error message?
Although I don't like it very much it documents the code and if we feel like
we're abusing it we'll have an excuse to do something more complicated
like error message override.

>              return -1;
>          }
>      } else {
> -        fprintf(stderr, "Option '%s' needs a parameter\n", name);
> +        qerror_report(QERR_INVALID_PARAMETER_VALUE, name, "a size");
>          return -1;
>      }
>      return 0;
> @@ -581,8 +579,7 @@ int qemu_opt_set(QemuOpts *opts, const char *name, const char *value)
>          if (i == 0) {
>              /* empty list -> allow any */;
>          } else {
> -            fprintf(stderr, "option \"%s\" is not valid for %s\n",
> -                    name, opts->list->name);
> +            qerror_report(QERR_INVALID_PARAMETER, name);
>              return -1;
>          }
>      }
> @@ -598,8 +595,6 @@ int qemu_opt_set(QemuOpts *opts, const char *name, const char *value)
>          opt->str = qemu_strdup(value);
>      }
>      if (qemu_opt_parse(opt) < 0) {
> -        fprintf(stderr, "Failed to parse \"%s\" for \"%s.%s\"\n", opt->str,
> -                opts->list->name, opt->name);
>          qemu_opt_del(opt);
>          return -1;
>      }

 Not generating an error on purpose here?

  reply	other threads:[~2010-03-19 19:50 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-03-18 16:33 [Qemu-devel] [PATCH 00/11] monitor: New commands netdev_add, netdev_del Markus Armbruster
2010-03-18 16:33 ` [Qemu-devel] [PATCH 01/11] error: Put error definitions back in alphabetical order Markus Armbruster
2010-03-18 16:33 ` [Qemu-devel] [PATCH 02/11] error: New QERR_DUPLICATE_ID Markus Armbruster
2010-03-18 16:33 ` [Qemu-devel] [PATCH 03/11] error: Convert qemu_opts_create() to QError Markus Armbruster
2010-03-18 16:33 ` [Qemu-devel] [PATCH 04/11] error: New QERR_INVALID_PARAMETER_VALUE Markus Armbruster
2010-03-19 19:49   ` [Qemu-devel] " Luiz Capitulino
2010-03-19 21:05     ` Markus Armbruster
2010-03-22  0:34       ` Luiz Capitulino
2010-03-18 16:33 ` [Qemu-devel] [PATCH 05/11] error: Convert qemu_opts_set() to QError Markus Armbruster
2010-03-19 19:50   ` Luiz Capitulino [this message]
2010-03-19 20:58     ` [Qemu-devel] " Markus Armbruster
2010-03-18 16:33 ` [Qemu-devel] [PATCH 06/11] error: Drop extra messages after qemu_opts_set() and qemu_opts_parse() Markus Armbruster
2010-03-18 16:33 ` [Qemu-devel] [PATCH 07/11] error: Use QERR_INVALID_PARAMETER_VALUE instead of QERR_INVALID_PARAMETER Markus Armbruster
2010-03-18 16:33 ` [Qemu-devel] [PATCH 08/11] error: Convert qemu_opts_validate() to QError Markus Armbruster
2010-03-18 16:33 ` [Qemu-devel] [PATCH 09/11] error: Convert net_client_init() " Markus Armbruster
2010-03-18 16:35 ` [Qemu-devel] [PATCH 10/11] error: New QERR_DEVICE_IN_USE Markus Armbruster
2010-03-18 16:35 ` [Qemu-devel] [PATCH 11/11] monitor: New commands netdev_add, netdev_del Markus Armbruster
2010-03-19 19:48 ` [Qemu-devel] Re: [PATCH 00/11] " Luiz Capitulino
2010-03-19 20:55   ` Markus Armbruster

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=20100319165000.24be76d6@redhat.com \
    --to=lcapitulino@redhat.com \
    --cc=armbru@redhat.com \
    --cc=qemu-devel@nongnu.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;
as well as URLs for NNTP newsgroup(s).