]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/ua.h
Apply Preben 'Peppe' Guldberg <peppe@wielders.org>
[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-2004 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    bool batch;                        /* set for non-interactive mode */
52    uint32_t pint32_val;               /* positive integer */
53    int32_t  int32_val;                /* positive/negative */
54 };
55
56 /* Context for insert_tree_handler() */
57 struct TREE_CTX {
58    TREE_ROOT *root;                   /* root */
59    TREE_NODE *node;                   /* current node */
60    TREE_NODE *avail_node;             /* unused node last insert */
61    int cnt;                           /* count for user feedback */
62    bool all;                          /* if set mark all as default */
63    UAContext *ua;
64    uint32_t FileEstimate;             /* estimate of number of files */
65    uint32_t FileCount;                /* current count of files */
66    uint32_t LastCount;                /* last count of files */
67    uint32_t DeltaCount;               /* trigger for printing */
68 };
69
70 #endif