Projects
openEuler:Mainline
gdbm
_service:tar_scm:Fix-location-tracking-in-gdbmt...
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File _service:tar_scm:Fix-location-tracking-in-gdbmtool.-Fix-the-recover-c.patch of Package gdbm
From b5801318089f1dd062d039661aed3c701f2943c8 Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff <gray@gnu.org> Date: Sat, 18 Jun 2022 17:18:05 +0300 Subject: [PATCH] Fix location tracking in gdbmtool. Fix the recover command. In particular, this addresses https://puszcza.gnu.org.ua/bugs/?566 * tools/gdbmshell.c: Fix parameter parsing failure (recover_handler): Accept varargs (command_tab): Use argdoc to provide help for varargs (help_handler): Handle argdoc * tools/gram.y: Accept a single unadorned key=value pair as argument. Conflict: Fix only the part that caused the problem Origin Patch: https://git.gnu.org.ua/gdbm.git/commit/?id=b8271d89db991558e10c26d45d960bbc0257fa31 --- tools/gdbmshell.c | 150 ++++++++++++++++++++++++++++------------------ tools/gram.y | 8 +++ 2 files changed, 101 insertions(+), 57 deletions(-) diff --git a/tools/gdbmshell.c b/tools/gdbmshell.c index 22c4938..bccda41 100644 --- a/tools/gdbmshell.c +++ b/tools/gdbmshell.c @@ -668,64 +668,95 @@ recover_handler (struct command_param *param, struct command_environ *cenv) gdbm_recovery rcvr; int flags = 0; int rc; - int i; char *p; int summary = 0; - for (i = 0; i < param->argc; i++) + if (param->vararg) { - char *arg = PARAM_STRING (param, i); - if (strcmp (arg, "verbose") == 0) - { - rcvr.errfun = err_printer; - flags |= GDBM_RCVR_ERRFUN; - } - else if (strcmp (arg, "force") == 0) - { - flags |= GDBM_RCVR_FORCE; - } - else if (strcmp (arg, "summary") == 0) - { - summary = 1; - } - else if (strcmp (arg, "backup") == 0) - { - flags |= GDBM_RCVR_BACKUP; - } - else if (strncmp (arg, "max-failures=", 13) == 0) + struct gdbmarg *arg; + int i; + + for (arg = param->vararg, i = 0; arg; arg = arg->next, i++) { - rcvr.max_failures = strtoul (arg + 13, &p, 10); - if (*p) + if (arg->type == GDBM_ARG_STRING) { - terror (_("not a number (stopped near %s)"), p); - return 1; + if (strcmp (arg->v.string, "verbose") == 0) + { + rcvr.errfun = err_printer; + flags |= GDBM_RCVR_ERRFUN; + } + else if (strcmp (arg->v.string, "force") == 0) + { + flags |= GDBM_RCVR_FORCE; + } + else if (strcmp (arg->v.string, "summary") == 0) + { + summary = 1; + } + else if (strcmp (arg->v.string, "backup") == 0) + { + flags |= GDBM_RCVR_BACKUP; + } + else + { + lerror (&arg->loc, _("unrecognized argument: %s"), arg->v.string); + return GDBMSHELL_SYNTAX; + } } - flags |= GDBM_RCVR_MAX_FAILURES; - } - else if (strncmp (arg, "max-failed-keys=", 16) == 0) - { - rcvr.max_failed_keys = strtoul (arg + 16, &p, 10); - if (*p) + else if (arg->type == GDBM_ARG_KVPAIR) { - terror (_("not a number (stopped near %s)"), p); - return 1; + if (arg->v.kvpair->type != KV_STRING) + { + lerror (&arg->loc, _("%s: bad argument type"), arg->v.kvpair->key); + return GDBMSHELL_SYNTAX; + } + else if (arg->v.kvpair->next) + { + lerror (&arg->loc, _("unexpected compound statement")); + return GDBMSHELL_SYNTAX; + } + + if (strcmp (arg->v.kvpair->key, "max-failures") == 0) + { + rcvr.max_failures = strtoul (arg->v.kvpair->val.s, &p, 10); + if (*p) + { + lerror (&arg->loc, _("not a number (stopped near %s)"), p); + return GDBMSHELL_SYNTAX; + } + flags |= GDBM_RCVR_MAX_FAILURES; + } + else if (strcmp (arg->v.kvpair->key, "max-failed-keys") == 0) + { + rcvr.max_failed_keys = strtoul (arg->v.kvpair->val.s, &p, 10); + if (*p) + { + lerror (&arg->loc, _("not a number (stopped near %s)"), p); + return GDBMSHELL_SYNTAX; + } + flags |= GDBM_RCVR_MAX_FAILED_KEYS; + } + else if (strcmp (arg->v.kvpair->key, "max-failed-buckets") == 0) + { + rcvr.max_failures = strtoul (arg->v.kvpair->val.s, &p, 10); + if (*p) + { + lerror (&arg->loc, _("not a number (stopped near %s)"), p); + return GDBMSHELL_SYNTAX; + } + flags |= GDBM_RCVR_MAX_FAILED_BUCKETS; + } + else + { + lerror (&arg->loc, _("unrecognized argument: %s"), arg->v.kvpair->key); + return GDBMSHELL_SYNTAX; + } } - flags |= GDBM_RCVR_MAX_FAILED_KEYS; - } - else if (strncmp (arg, "max-failed-buckets=", 19) == 0) - { - rcvr.max_failures = strtoul (arg + 19, &p, 10); - if (*p) + else { - terror (_("not a number (stopped near %s)"), p); - return 1; + lerror (&arg->loc, _("unexpected datum")); + return GDBMSHELL_SYNTAX; } - flags |= GDBM_RCVR_MAX_FAILED_BUCKETS; - } - else - { - terror (_("unrecognized argument: %s"), arg); - return GDBMSHELL_SYNTAX; } } @@ -1943,6 +1974,7 @@ struct command int (*handler) (struct command_param *param, struct command_environ *cenv); void (*end) (void *data); struct argdef args[NARGS]; + char *argdoc[NARGS]; int variadic; enum command_repeat_type repeat; char *doc; @@ -2073,21 +2105,21 @@ static struct command command_tab[] = { }, { .name = "recover", - .args = { - { "[verbose]", GDBM_ARG_STRING }, - { "[summary]", GDBM_ARG_STRING }, - { "[backup]", GDBM_ARG_STRING }, - { "[force]", GDBM_ARG_STRING }, - { "[max-failed-keys=N]", GDBM_ARG_STRING }, - { "[max-failed-buckets=N]", GDBM_ARG_STRING }, - { "[max-failures=N]", GDBM_ARG_STRING }, - { NULL } + .argdoc = { + "[verbose]", + "[summary]", + "[backup]", + "[force]", + "[max-failed-keys=N]", + "[max-failed-buckets=N]", + "[max-failures=N]", + NULL }, .doc = N_("recover the database"), .tok = T_CMD, .begin = checkdb_begin, .handler = recover_handler, - .variadic = FALSE, + .variadic = TRUE, .repeat = REPEAT_NEVER, }, { @@ -2435,6 +2467,10 @@ help_handler (struct command_param *param GDBM_ARG_UNUSED, { wordwrap_printf (wf, " %s", gettext (cmd->args[i].name)); } + for (i = 0; cmd->argdoc[i]; i++) + { + wordwrap_printf (wf, " %s", gettext (cmd->argdoc[i])); + } wordwrap_set_right_margin (wf, 0); wordwrap_set_left_margin (wf, CMDCOLS); diff --git a/tools/gram.y b/tools/gram.y index 6b09152..b1360ae 100644 --- a/tools/gram.y +++ b/tools/gram.y @@ -149,6 +149,13 @@ arg : string { $$ = gdbmarg_string ($1, &@1); } + | T_IDENT '=' string + { + struct locus loc = { .beg = @1.beg, .end = @3.end }; + struct kvpair *kvp = kvpair_string (&loc, $3); + kvp->key = $1; + $$ = gdbmarg_kvpair (kvp, &loc); + } | compound { $$ = gdbmarg_kvpair ($1, &@1); @@ -184,6 +191,7 @@ kvpair : value | T_IDENT '=' value { $3->key = $1; + $3->loc.beg = @1.beg; $$ = $3; } ; -- 2.33.0
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.
浙ICP备2022010568号-2