]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/ua.h
kes Extend new GUI api code to tree commands.
[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 two of the GNU General Public
10    License as published by the Free Software Foundation plus additions
11    that are listed 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 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 John Walker.
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 struct UAContext {
40    BSOCK *UA_sock;
41    BSOCK *sd;
42    JCR *jcr;
43    B_DB *db;
44    CAT *catalog;
45    CONRES *cons;                      /* console resource */
46    POOLMEM *cmd;                      /* return command/name buffer */
47    POOLMEM *args;                     /* command line arguments */
48    char *argk[MAX_CMD_ARGS];          /* argument keywords */
49    char *argv[MAX_CMD_ARGS];          /* argument values */
50    int argc;                          /* number of arguments */
51    char **prompt;                     /* list of prompts */
52    int max_prompts;                   /* max size of list */
53    int num_prompts;                   /* current number in list */
54    int api;                           /* For programs want an API */
55    bool auto_display_messages;        /* if set, display messages */
56    bool user_notified_msg_pending;    /* set when user notified */
57    bool automount;                    /* if set, mount after label */
58    bool quit;                         /* if set, quit */
59    bool verbose;                      /* set for normal UA verbosity */
60    bool batch;                        /* set for non-interactive mode */
61    bool gui;                          /* set if talking to GUI program */
62    uint32_t pint32_val;               /* positive integer */
63    int32_t  int32_val;                /* positive/negative */
64    int64_t  int64_val;                /* big int */
65 };
66
67 /* Context for insert_tree_handler() */
68 struct TREE_CTX {
69    TREE_ROOT *root;                   /* root */
70    TREE_NODE *node;                   /* current node */
71    TREE_NODE *avail_node;             /* unused node last insert */
72    int cnt;                           /* count for user feedback */
73    bool all;                          /* if set mark all as default */
74    UAContext *ua;
75    uint32_t FileEstimate;             /* estimate of number of files */
76    uint32_t FileCount;                /* current count of files */
77    uint32_t LastCount;                /* last count of files */
78    uint32_t DeltaCount;               /* trigger for printing */
79 };
80
81 struct NAME_LIST {
82    char **name;                       /* list of names */
83    int num_ids;                       /* ids stored */
84    int max_ids;                       /* size of array */
85    int num_del;                       /* number deleted */
86    int tot_ids;                       /* total to process */
87 };
88
89
90 /* Main structure for obtaining JobIds or Files to be restored */
91 struct RESTORE_CTX {
92    utime_t JobTDate;
93    uint32_t TotalFiles;
94    JobId_t JobId;
95    char ClientName[MAX_NAME_LENGTH];
96    char last_jobid[20];
97    POOLMEM *JobIds;                   /* User entered string of JobIds */
98    STORE  *store;
99    JOB *restore_job;
100    POOL *pool;
101    int restore_jobs;
102    uint32_t selected_files;
103    char *where;
104    RBSR *bsr;
105    POOLMEM *fname;                    /* filename only */
106    POOLMEM *path;                     /* path only */
107    POOLMEM *query;
108    int fnl;                           /* filename length */
109    int pnl;                           /* path length */
110    bool found;
111    bool all;                          /* mark all as default */
112    NAME_LIST name_list;
113 };
114
115 #define MAX_ID_LIST_LEN 2000000
116
117
118 #endif