X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fsrc%2Fdird%2Fua_input.c;h=3c9af2500e407c108ad22e8b09cd0f22012941d4;hb=c47244310936864c0e9aaf1784a87c2436e58fd3;hp=c0f3ea74ed55aff70bacc4e911a8bb09f8e0ad48;hpb=559973d1f1fca4b48d97c19ba67df325ae050ef4;p=bacula%2Fbacula diff --git a/bacula/src/dird/ua_input.c b/bacula/src/dird/ua_input.c index c0f3ea74ed..3c9af2500e 100644 --- a/bacula/src/dird/ua_input.c +++ b/bacula/src/dird/ua_input.c @@ -1,30 +1,37 @@ /* - * - * Bacula Director -- User Agent Input and scanning code - * - * Kern Sibbald, October MMI - * - * Version $Id$ - */ + Bacula® - The Network Backup Solution -/* - Copyright (C) 2000-2003 Kern Sibbald and John Walker + Copyright (C) 2001-2008 Free Software Foundation Europe e.V. - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation; either version 2 of - the License, or (at your option) any later version. + The main author of Bacula is Kern Sibbald, with contributions from + many others, a complete list can be found in the file AUTHORS. + This program is Free Software; you can redistribute it and/or + modify it under the terms of version two of the GNU General Public + License as published by the Free Software Foundation and included + in the file LICENSE. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU General Public - License along with this program; if not, write to the Free - Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, - MA 02111-1307, USA. + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. + Bacula® is a registered trademark of John Walker. + The licensor of Bacula is the Free Software Foundation Europe + (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich, + Switzerland, email:ftf@fsfeurope.org. +*/ +/* + * + * Bacula Director -- User Agent Input and scanning code + * + * Kern Sibbald, October MMI + * + * Version $Id$ */ #include "bacula.h" @@ -36,98 +43,150 @@ /* Exported functions */ -int get_cmd(UAContext *ua, char *prompt) +int get_cmd(UAContext *ua, const char *prompt) { BSOCK *sock = ua->UA_sock; int stat; ua->cmd[0] = 0; - if (!sock) { /* No UA */ + if (!sock || ua->batch) { /* No UA or batch mode */ return 0; } - bnet_fsend(sock, "%s", prompt); - bnet_sig(sock, BNET_PROMPT); /* request more input */ + sock->fsend("%s", prompt); + sock->signal(BNET_PROMPT); /* request more input */ for ( ;; ) { - stat = bnet_recv(sock); + stat = sock->recv(); if (stat == BNET_SIGNAL) { - continue; /* ignore signals */ + continue; /* ignore signals */ } if (is_bnet_stop(sock)) { - return 0; /* error or terminate */ + return 0; /* error or terminate */ } - ua->cmd = check_pool_memory_size(ua->cmd, sock->msglen+1); - bstrncpy(ua->cmd, sock->msg, sock->msglen+1); + pm_strcpy(ua->cmd, sock->msg); strip_trailing_junk(ua->cmd); if (strcmp(ua->cmd, ".messages") == 0) { - qmessagescmd(ua, ua->cmd); + qmessagescmd(ua, ua->cmd); } /* Lone dot => break */ if (ua->cmd[0] == '.' && ua->cmd[1] == 0) { - return 0; + return 0; } break; } return 1; } -/* +/* * Get a positive integer - * Returns: 0 if failure - * 1 if success => value in ua->pint32_val + * Returns: false if failure + * true if success => value in ua->pint32_val */ -int get_pint(UAContext *ua, char *prompt) +bool get_pint(UAContext *ua, const char *prompt) { double dval; ua->pint32_val = 0; + ua->int64_val = 0; for (;;) { + ua->cmd[0] = 0; if (!get_cmd(ua, prompt)) { - return 0; + return false; + } + /* Kludge for slots blank line => 0 */ + if (ua->cmd[0] == 0 && strncmp(prompt, _("Enter slot"), strlen(_("Enter slot"))) == 0) { + return true; } if (!is_a_number(ua->cmd)) { - bsendmsg(ua, "Expected a positive integer, got: %s\n", ua->cmd); - continue; + ua->warning_msg(_("Expected a positive integer, got: %s\n"), ua->cmd); + continue; } errno = 0; dval = strtod(ua->cmd, NULL); if (errno != 0 || dval < 0) { - bsendmsg(ua, "Expected a positive integer, got: %s\n", ua->cmd); - continue; + ua->warning_msg(_("Expected a positive integer, got: %s\n"), ua->cmd); + continue; } ua->pint32_val = (uint32_t)dval; - return 1; + ua->int64_val = (int64_t)dval; + return true; } } -/* +/* + * Test a yes or no response + * Returns: false if failure + * true if success => ret == 1 for yes + * ret == 0 for no + */ +bool is_yesno(char *val, int *ret) +{ + *ret = 0; + if ((strcasecmp(val, _("yes")) == 0) || + (strcasecmp(val, NT_("yes")) == 0)) + { + *ret = 1; + } else if ((strcasecmp(val, _("no")) == 0) || + (strcasecmp(val, NT_("no")) == 0)) + { + *ret = 0; + } else { + return false; + } + + return true; +} + +/* * Gets a yes or no response - * Returns: 0 if failure - * 1 if success => ua->pint32_val == 1 for yes - * ua->pint32_val == 0 for no + * Returns: false if failure + * true if success => ua->pint32_val == 1 for yes + * ua->pint32_val == 0 for no */ -int get_yesno(UAContext *ua, char *prompt) +bool get_yesno(UAContext *ua, const char *prompt) { int len; - + int ret; ua->pint32_val = 0; for (;;) { + if (ua->api) ua->UA_sock->signal(BNET_YESNO); if (!get_cmd(ua, prompt)) { - return 0; + return false; } len = strlen(ua->cmd); if (len < 1 || len > 3) { - continue; - } - if (strncasecmp(ua->cmd, _("yes"), len) == 0) { - ua->pint32_val = 1; - return 1; + continue; } - if (strncasecmp(ua->cmd, _("no"), len) == 0) { - return 1; + if (is_yesno(ua->cmd, &ret)) { + ua->pint32_val = ret; + return true; } - bsendmsg(ua, _("Invalid response. You must answer yes or no.\n")); + ua->warning_msg(_("Invalid response. You must answer yes or no.\n")); + } +} + +/* + * Gets an Enabled value => 0, 1, 2, yes, no, archived + * Returns: 0, 1, 2 if OK + * -1 on error + */ +int get_enabled(UAContext *ua, const char *val) +{ + int Enabled = -1; + + if (strcasecmp(val, "yes") == 0 || strcasecmp(val, "true") == 0) { + Enabled = 1; + } else if (strcasecmp(val, "no") == 0 || strcasecmp(val, "false") == 0) { + Enabled = 0; + } else if (strcasecmp(val, "archived") == 0) { + Enabled = 2; + } else { + Enabled = atoi(val); + } + if (Enabled < 0 || Enabled > 2) { + ua->error_msg(_("Invalid Enabled value, it must be yes, no, archived, 0, 1, or 2\n")); + return -1; } + return Enabled; } - void parse_ua_args(UAContext *ua) {