]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/dird/dird_conf.h
- Make clean remove old CVS files
[bacula/bacula] / bacula / src / dird / dird_conf.h
index f3467da7e40cb67d5b6bf9ca9e5f1b7070d734df..745dd554e2e51177e501714ec3b02953fbc206d2 100644 (file)
@@ -6,7 +6,7 @@
  *    Version $Id$
  */
 /*
-   Copyright (C) 2000-2004 Kern Sibbald and John Walker
+   Copyright (C) 2000-2005 Kern Sibbald
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
@@ -28,7 +28,7 @@
 /* NOTE:  #includes at the end of this file */
 
 /*
- * Resource codes -- they must be sequential for indexing   
+ * Resource codes -- they must be sequential for indexing
  */
 enum {
    R_DIRECTOR = 1001,
@@ -43,8 +43,9 @@ enum {
    R_COUNTER,
    R_CONSOLE,
    R_JOBDEFS,
+   R_DEVICE,
    R_FIRST = R_DIRECTOR,
-   R_LAST  = R_JOBDEFS                /* keep this updated */
+   R_LAST  = R_DEVICE                 /* keep this updated */
 };
 
 
@@ -61,9 +62,9 @@ enum {
 
 
 /* Used for certain KeyWord tables */
-struct s_kw {       
+struct s_kw {
    const char *name;
-   int token;   
+   int token;
 };
 
 /* Job Level keyword structure */
@@ -86,12 +87,14 @@ struct CLIENT;
 struct FILESET;
 struct POOL;
 struct RUN;
+struct DEVICE;
 
-/* 
- *   Director Resource  
+/*
+ *   Director Resource
  *
  */
-struct DIRRES {
+class DIRRES {
+public:
    RES   hdr;
    dlist *DIRaddrs;
    char *password;                    /* Password for UA access */
@@ -108,6 +111,29 @@ struct DIRRES {
    utime_t SDConnectTimeout;          /* timeout in seconds */
 };
 
+/*
+ * Device Resource
+ *  This resource is a bit different from the other resources
+ *  because it is not defined in the Director 
+ *  by DEVICE { ... }, but rather by a "reference" such as
+ *  DEVICE = xxx; Then when the Director connects to the
+ *  SD, it requests the information about the device.
+ */
+class DEVICE {
+public:
+   RES hdr;
+
+   bool found;                        /* found with SD */
+   int num_writers;
+   int num_waiting;
+   int use_count;
+   bool open;
+   bool append;                       /* in append mode */
+   bool read;
+   bool labeled;
+   char VolumeName[MAX_NAME_LENGTH];
+   char MediaType[MAX_NAME_LENGTH];
+};
 
 /*
  * Console ACL positions
@@ -125,10 +151,11 @@ enum {
    Num_ACL                            /* keep last */
 };
 
-/* 
+/*
  *    Console Resource
  */
-struct CONRES {
+class CONRES {
+public:
    RES   hdr;
    char *password;                    /* UA server password */
    int enable_ssl;                    /* Use SSL */
@@ -140,7 +167,8 @@ struct CONRES {
  *   Catalog Resource
  *
  */
-struct CAT {
+class CAT {
+public:
    RES   hdr;
 
    int   db_port;                     /* Port -- not yet implemented */
@@ -157,7 +185,8 @@ struct CAT {
  *   Client Resource
  *
  */
-struct CLIENT {
+class CLIENT {
+public:
    RES   hdr;
 
    int   FDport;                      /* Where File daemon listens */
@@ -174,9 +203,10 @@ struct CLIENT {
 
 /*
  *   Store Resource
- * 
+ *
  */
-struct STORE {
+class STORE {
+public:
    RES   hdr;
 
    int   SDport;                      /* port where Directors connect */
@@ -184,20 +214,32 @@ struct STORE {
    char *address;
    char *password;
    char *media_type;
-   char *dev_name;   
+   alist *device;                     /* Device name(s) */
    int  autochanger;                  /* set if autochanger */
    uint32_t MaxConcurrentJobs;        /* Maximume concurrent jobs */
    uint32_t NumConcurrentJobs;        /* number of concurrent jobs running */
    int enable_ssl;                    /* Use SSL */
+
+   int64_t StorageId;                 /* Set from Storage DB record */
+
+   char *dev_name() const;
+   char *name() const;
 };
 
+inline char *STORE::dev_name() const
+{ 
+   DEVICE *dev = (DEVICE *)device->first();
+   return dev->hdr.name;
+}
+
+inline char *STORE::name() const { return hdr.name; }
 
-#define MAX_STORE 2                   /* Max storage directives in Job */
 
 /*
  *   Job Resource
  */
-struct JOB {
+class JOB {
+public:
    RES   hdr;
 
    int   JobType;                     /* job type (backup, verify, restore */
@@ -215,6 +257,9 @@ struct JOB {
    int   replace;                     /* How (overwrite, ..) */
    utime_t MaxRunTime;                /* max run time in seconds */
    utime_t MaxWaitTime;               /* max blocking time in seconds */
+   utime_t FullMaxWaitTime;           /* Max Full job wait time */
+   utime_t DiffMaxWaitTime;           /* Max Differential job wait time */
+   utime_t IncMaxWaitTime;            /* Max Incremental job wait time */
    utime_t MaxStartDelay;             /* max start delay in seconds */
    int PrefixLinks;                   /* prefix soft links with Where path */
    int PruneJobs;                     /* Force pruning of Jobs */
@@ -228,12 +273,13 @@ struct JOB {
    int RescheduleTimes;               /* Number of times to reschedule job */
    utime_t RescheduleInterval;        /* Reschedule interval */
    utime_t JobRetention;              /* job retention period in seconds */
-  
+   bool write_part_after_job;         /* Set to write part after job in SD */
+   
    MSGS      *messages;               /* How and where to send messages */
    SCHED     *schedule;               /* When -- Automatic schedule */
    CLIENT    *client;                 /* Who to backup */
    FILESET   *fileset;                /* What to backup -- Fileset */
-   alist     *storage[MAX_STORE];     /* Where is device -- Storage daemon */
+   alist     *storage;                /* Where is device -- Storage daemon */
    POOL      *pool;                   /* Where is media -- Media Pool */
    POOL      *full_pool;              /* Pool for Full backups */
    POOL      *inc_pool;               /* Pool for Incremental backups */
@@ -244,14 +290,19 @@ struct JOB {
 };
 
 #undef  MAX_FOPTS
-#define MAX_FOPTS 30
+#define MAX_FOPTS 34
 
 /* File options structure */
 struct FOPTS {
    char opts[MAX_FOPTS];              /* options string */
    alist regex;                       /* regex string(s) */
+   alist regexdir;                    /* regex string(s) for directories */
+   alist regexfile;                   /* regex string(s) for files */
    alist wild;                        /* wild card strings */
+   alist wilddir;                     /* wild card strings for directories */
+   alist wildfile;                    /* wild card strings for files */
    alist base;                        /* list of base names */
+   alist fstype;                      /* file system type limitation */
    char *reader;                      /* reader program */
    char *writer;                      /* writer program */
 };
@@ -265,11 +316,12 @@ struct INCEXE {
    alist name_list;                   /* filename list -- holds char * */
 };
 
-/* 
+/*
  *   FileSet Resource
  *
  */
-struct FILESET {
+class FILESET {
+public:
    RES   hdr;
 
    bool new_include;                  /* Set if new include used */
@@ -283,12 +335,13 @@ struct FILESET {
    int ignore_fs_changes;             /* Don't force Full if FS changed */
 };
 
-/* 
+
+/*
  *   Schedule Resource
  *
  */
-struct SCHED {
+class SCHED {
+public:
    RES   hdr;
 
    RUN *run;
@@ -297,7 +350,8 @@ struct SCHED {
 /*
  *   Counter Resource
  */
-struct COUNTER {
+class COUNTER {
+public:
    RES   hdr;
 
    int32_t  MinValue;                 /* Minimum value */
@@ -309,15 +363,17 @@ struct COUNTER {
 };
 
 /*
- *   Pool Resource   
+ *   Pool Resource
  *
  */
-struct POOL {
+class POOL {
+public:
    RES   hdr;
 
    char *pool_type;                   /* Pool type */
    char *label_format;                /* Label format string */
    char *cleaning_prefix;             /* Cleaning label prefix */
+   int   LabelType;                   /* Bacula/ANSI/IBM label type */
    int   use_catalog;                 /* maintain catalog for media */
    int   catalog_files;               /* maintain file entries in catalog */
    int   use_volume_once;             /* write on volume only once */
@@ -336,6 +392,8 @@ struct POOL {
 };
 
 
+
+
 /* Define the Union of all the above
  * resource structure definitions.
  */
@@ -351,19 +409,24 @@ union URES {
    POOL       res_pool;
    MSGS       res_msgs;
    COUNTER    res_counter;
+   DEVICE     res_dev;
    RES        hdr;
 };
 
 
 
 /* Run structure contained in Schedule Resource */
-struct RUN {
+class RUN {
+public:
    RUN *next;                         /* points to next run record */
    int level;                         /* level override */
    int Priority;                      /* priority override */
-   int job_type;  
+   int job_type;
    bool spool_data;                   /* Data spooling override */
    bool spool_data_set;               /* Data spooling override given */
+   bool write_part_after_job;         /* Write part after job override */
+   bool write_part_after_job_set;     /* Write part after job override given */
+   
    POOL *pool;                        /* Pool override */
    POOL *full_pool;                   /* Pool override */
    POOL *inc_pool;                    /* Pool override */