]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/ua.h
Added set_db_type function to set global debug symbol removed when
[bacula/bacula] / bacula / src / dird / ua.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2001-2007 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from
7    many others, a complete list can be found in the file AUTHORS.
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version three of the GNU Affero General Public
10    License as published by the Free Software Foundation and included
11    in the file LICENSE.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU Affero General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23    Bacula® is a registered trademark of Kern Sibbald.
24    The licensor of Bacula is the Free Software Foundation Europe
25    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
26    Switzerland, email:ftf@fsfeurope.org.
27 */
28 /*
29  * Includes specific to the Director User Agent Server
30  *
31  *     Kern Sibbald, August MMI
32  *
33  *     Version $Id$
34  */
35
36 #ifndef __UA_H_
37 #define __UA_H_ 1
38
39 class UAContext {
40 public:
41    BSOCK *UA_sock;
42    BSOCK *sd;
43    JCR *jcr;
44    B_DB *db;
45    CAT *catalog;
46    CONRES *cons;                      /* console resource */
47    POOLMEM *cmd;                      /* return command/name buffer */
48    POOLMEM *args;                     /* command line arguments */
49    char *argk[MAX_CMD_ARGS];          /* argument keywords */
50    char *argv[MAX_CMD_ARGS];          /* argument values */
51    int argc;                          /* number of arguments */
52    char **prompt;                     /* list of prompts */
53    int max_prompts;                   /* max size of list */
54    int num_prompts;                   /* current number in list */
55    int api;                           /* For programs want an API */
56    bool force_mult_db_connections;    /* overwrite cat.mult_db_connections */
57    bool auto_display_messages;        /* if set, display messages */
58    bool user_notified_msg_pending;    /* set when user notified */
59    bool automount;                    /* if set, mount after label */
60    bool quit;                         /* if set, quit */
61    bool verbose;                      /* set for normal UA verbosity */
62    bool batch;                        /* set for non-interactive mode */
63    bool gui;                          /* set if talking to GUI program */
64    bool runscript;                    /* set if we are in runscript */
65    uint32_t pint32_val;               /* positive integer */
66    int32_t  int32_val;                /* positive/negative */
67    int64_t  int64_val;                /* big int */
68
69    void signal(int sig) { UA_sock->signal(sig); };
70
71    /* The below are in ua_output.c */
72    void send_msg(const char *fmt, ...);
73    void error_msg(const char *fmt, ...);
74    void warning_msg(const char *fmt, ...);
75    void info_msg(const char *fmt, ...);
76 };
77
78 /* Context for insert_tree_handler() */
79 struct TREE_CTX {
80    TREE_ROOT *root;                   /* root */
81    TREE_NODE *node;                   /* current node */
82    TREE_NODE *avail_node;             /* unused node last insert */
83    int cnt;                           /* count for user feedback */
84    bool all;                          /* if set mark all as default */
85    UAContext *ua;
86    uint32_t FileEstimate;             /* estimate of number of files */
87    uint32_t FileCount;                /* current count of files */
88    uint32_t LastCount;                /* last count of files */
89    uint32_t DeltaCount;               /* trigger for printing */
90 };
91
92 struct NAME_LIST {
93    char **name;                       /* list of names */
94    int num_ids;                       /* ids stored */
95    int max_ids;                       /* size of array */
96    int num_del;                       /* number deleted */
97    int tot_ids;                       /* total to process */
98 };
99
100
101 /* Main structure for obtaining JobIds or Files to be restored */
102 struct RESTORE_CTX {
103    utime_t JobTDate;
104    uint32_t TotalFiles;
105    JobId_t JobId;
106    char ClientName[MAX_NAME_LENGTH];  /* backup client */
107    char RestoreClientName[MAX_NAME_LENGTH];  /* restore client */
108    char last_jobid[20];
109    POOLMEM *JobIds;                   /* User entered string of JobIds */
110    POOLMEM *BaseJobIds;               /* Base jobids */
111    STORE  *store;
112    JOB *restore_job;
113    POOL *pool;
114    int restore_jobs;
115    uint32_t selected_files;
116    char *comment;
117    char *where;
118    char *RegexWhere;
119    char *replace;
120    RBSR *bsr;
121    POOLMEM *fname;                    /* filename only */
122    POOLMEM *path;                     /* path only */
123    POOLMEM *query;
124    int fnl;                           /* filename length */
125    int pnl;                           /* path length */
126    bool found;
127    bool all;                          /* mark all as default */
128    NAME_LIST name_list;
129 };
130
131 #define MAX_ID_LIST_LEN 2000000
132
133 #endif