]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/ua.h
Eliminate zombie job in SD
[bacula/bacula] / bacula / src / dird / ua.h
1 /*
2  * Includes specific to the Director User Agent Server
3  *
4  *     Kern Sibbald, August MMI
5  *
6  *     Version $Id$
7  */
8 /*
9    Copyright (C) 2000-2003 Kern Sibbald and John Walker
10
11    This program is free software; you can redistribute it and/or
12    modify it under the terms of the GNU General Public License as
13    published by the Free Software Foundation; either version 2 of
14    the License, or (at your option) any later version.
15
16    This program is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19    General Public License for more details.
20
21    You should have received a copy of the GNU General Public
22    License along with this program; if not, write to the Free
23    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
24    MA 02111-1307, USA.
25
26  */
27
28 #ifndef __UA_H_
29 #define __UA_H_ 1
30
31 struct UAContext {
32    BSOCK *UA_sock;
33    BSOCK *sd;
34    JCR *jcr;
35    B_DB *db;
36    CAT *catalog;
37    CONRES *cons;                      /* console resource */
38    POOLMEM *cmd;                      /* return command/name buffer */
39    POOLMEM *args;                     /* command line arguments */
40    char *argk[MAX_CMD_ARGS];          /* argument keywords */
41    char *argv[MAX_CMD_ARGS];          /* argument values */
42    int argc;                          /* number of arguments */
43    char **prompt;                     /* list of prompts */
44    int max_prompts;                   /* max size of list */
45    int num_prompts;                   /* current number in list */
46    bool auto_display_messages;        /* if set, display messages */
47    bool user_notified_msg_pending;    /* set when user notified */
48    bool automount;                    /* if set, mount after label */
49    bool quit;                         /* if set, quit */
50    bool verbose;                      /* set for normal UA verbosity */
51    uint32_t pint32_val;               /* positive integer */
52    int32_t  int32_val;                /* positive/negative */
53 };          
54
55 /* Context for insert_tree_handler() */
56 struct TREE_CTX {
57    TREE_ROOT *root;                   /* root */
58    TREE_NODE *node;                   /* current node */
59    TREE_NODE *avail_node;             /* unused node last insert */
60    int cnt;                           /* count for user feedback */
61    UAContext *ua;
62 };
63
64 #endif