13d5317bbda2326385a94bad6867782e0a30e454
[debian/amanda] / server-src / server_util.c
1 /*
2  * Amanda, The Advanced Maryland Automatic Network Disk Archiver
3  * Copyright (c) 1991-1999 University of Maryland at College Park
4  * All Rights Reserved.
5  *
6  * Permission to use, copy, modify, distribute, and sell this software and its
7  * documentation for any purpose is hereby granted without fee, provided that
8  * the above copyright notice appear in all copies and that both that
9  * copyright notice and this permission notice appear in supporting
10  * documentation, and that the name of U.M. not be used in advertising or
11  * publicity pertaining to distribution of the software without specific,
12  * written prior permission.  U.M. makes no representations about the
13  * suitability of this software for any purpose.  It is provided "as is"
14  * without express or implied warranty.
15  *
16  * U.M. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL U.M.
18  * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22  *
23  * Authors: the Amanda Development Team.  Its members are listed in a
24  * file named AUTHORS, in the root directory of this distribution.
25  */
26 /*
27  * $Id: server_util.c,v 1.13.2.1 2006/04/23 18:52:04 martinea Exp $
28  *
29  */
30
31 #include "amanda.h"
32 #include "server_util.h"
33 #include "arglist.h"
34 #include "token.h"
35
36 const char *cmdstr[] = {
37     "BOGUS", "QUIT", "QUITTING", "DONE", "PARTIAL", 
38     "START", "FILE-DUMP", "PORT-DUMP", "CONTINUE", "ABORT",     /* dumper cmds */
39     "FAILED", "TRY-AGAIN", "NO-ROOM", "RQ-MORE-DISK",   /* dumper results */
40     "ABORT-FINISHED", "BAD-COMMAND",                    /* dumper results */
41     "START-TAPER", "FILE-WRITE", "PORT-WRITE",          /* taper cmds */
42     "PORT", "TAPE-ERROR", "TAPER-OK", "SPLIT-NEEDNEXT", /* taper results */
43     "SPLIT-CONTINUE",
44     NULL
45 };
46
47
48 cmd_t getcmd(cmdargs)
49 struct cmdargs *cmdargs;
50 {
51     char *line;
52     cmd_t cmd_i;
53
54     assert(cmdargs != NULL);
55
56     if (isatty(0)) {
57         printf("%s> ", get_pname());
58         fflush(stdout);
59     }
60
61     if ((line = agets(stdin)) == NULL) {
62         line = stralloc("QUIT");
63     }
64
65     cmdargs->argc = split(line, cmdargs->argv,
66         sizeof(cmdargs->argv) / sizeof(cmdargs->argv[0]), " ");
67     amfree(line);
68
69 #if DEBUG
70     {
71         int i;
72         fprintf(stderr,"argc = %d\n", cmdargs->argc);
73         for (i = 0; i < cmdargs->argc+1; i++)
74             fprintf(stderr,"argv[%d] = \"%s\"\n", i, cmdargs->argv[i]);
75     }
76 #endif
77
78     if (cmdargs->argc < 1)
79         return (BOGUS);
80
81     for(cmd_i=BOGUS; cmdstr[cmd_i] != NULL; cmd_i++)
82         if(strcmp(cmdargs->argv[1], cmdstr[cmd_i]) == 0)
83             return (cmd_i);
84     return (BOGUS);
85 }
86
87
88 printf_arglist_function1(void putresult, cmd_t, result, const char *, format)
89 {
90     va_list argp;
91
92     arglist_start(argp, format);
93     printf("%s ",cmdstr[result]);
94     vprintf(format, argp);
95     fflush(stdout);
96     arglist_end(argp);
97 }