]> git.sur5r.net Git - bacula/bacula/commitdiff
kes Implement 'MaxFullInterval' and start 'MaxDiffInterval' based on
authorKern Sibbald <kern@sibbald.com>
Mon, 3 Mar 2008 21:43:28 +0000 (21:43 +0000)
committerKern Sibbald <kern@sibbald.com>
Mon, 3 Mar 2008 21:43:28 +0000 (21:43 +0000)
     some ideas in patch from Scott Bailey.
kes  Begin implementation of duplicate Job control.
kes  Fix some of Win32 build after recent additions.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@6528 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/kernstodo
bacula/projects
bacula/src/cats/sql_find.c
bacula/src/dird/dird_conf.c
bacula/src/dird/dird_conf.h
bacula/src/dird/fd_cmds.c
bacula/src/stored/status.c
bacula/src/win32/cats/bacula_cats.def
bacula/src/win32/dll/bacula.def
bacula/src/win32/libwin32/statusDialog.cpp
bacula/technotes-2.3

index 13cf69f8f81a40f6969a31e522c1b0ccf11af00e..4c568824cf044dd6cb7a9c8852f10a6e10645736 100644 (file)
@@ -1,5 +1,5 @@
                     Kern's ToDo List
-                    23 February 2008
+                    03 March 2008
 
 
 Document:
@@ -1870,4 +1870,3 @@ Block Position: 0
 - Add Catalog = to Pool resource so that pools will exist
   in only one catalog -- currently Pools are "global".
 - Add TLS to bat (should be done).
-
index 4342fb730b3016f7bafe17193940e641e5e9b59c..ef0dd3ec838b998a4cf9da65aa512658a4cfd9f6 100644 (file)
@@ -1234,6 +1234,45 @@ Item 1: Backup and Restore of Windows Encrypted Files through raw encryption fun
 
   Notes:  ./.
 
+   Item 1: Possibilty to schedule Jobs on last Friday of the month
+   Origin: Carsten Menke <bootsy52 at gmx dot net>
+   Date:   02 March 2008
+   Status:
+
+   What:   Currently if you want to run your monthly Backups on the last
+           Friday of each month this is only possible with workarounds (e.g 
+           scripting) (As some months got 4 Fridays and some got 5 Fridays)
+           The same is true if you plan to run your yearly Backups on the last 
+           Friday of the year. It would be nice to have the ability to use the builtin 
+           scheduler for this.
+
+   Why:    In many companies the last working day of the week is Friday (or 
+           Saturday), so to get the most data of the month onto the monthly tape, the 
+           employees are advised to insert the tape for the monthly backups on the last 
+           friday of the month.
+
+   Notes:  To give this a complete functionality it would be nice if the "first" 
+           and "last" Keywords could be implemented in the scheduler, so it is also 
+           possible to run monthy backups at the first friday of the month and many things 
+           more. So if the syntax would expand to this {first|last} {Month|Week|Day|Mo-Fri} 
+           of the {Year|Month|Week} you would be able to run really flexible jobs.
+
+           To got a certain Job run on the last Friday of the Month for example one could 
+           then write
+
+              Run = pool=Monthly last Fri of the Month at 23:50
+
+              ## Yearly Backup
+
+              Run = pool=Yearly last Fri of the Year at 23:50
+
+              ## Certain Jobs the last Week of a Month
+
+              Run = pool=LastWeek last Week of the Month at 23:50
+
+              ## Monthly Backup on the last day of the month
+
+              Run = pool=Monthly last Day of the Month at 23:50
 
 ========== Already implemented ================================
 
index 2daadb98533ff21bdd5d7a0a1823405f3688b6bb..4a5dd174dcfde5d7c612e83d4e9440a9b9ef44d8 100644 (file)
@@ -1,18 +1,7 @@
-/*
- * Bacula Catalog Database Find record interface routines
- *
- *  Note, generally, these routines are more complicated
- *        that a simple search by name or id. Such simple
- *        request are in get.c
- *
- *    Kern Sibbald, December 2000
- *
- *    Version $Id$
- */
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2000-2006 Free Software Foundation Europe e.V.
+   Copyright (C) 2000-2008 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
    Switzerland, email:ftf@fsfeurope.org.
 */
+/*
+ * Bacula Catalog Database Find record interface routines
+ *
+ *  Note, generally, these routines are more complicated
+ *        that a simple search by name or id. Such simple
+ *        request are in get.c
+ *
+ *    Kern Sibbald, December 2000
+ *
+ *    Version $Id$
+ */
 
 
 /* The following is necessary so that we do not include
@@ -75,7 +75,7 @@ db_find_job_start_time(JCR *jcr, B_DB *mdb, JOB_DBR *jr, POOLMEM **stime)
    pm_strcpy(stime, "0000-00-00 00:00:00");   /* default */
    /* If no Id given, we must find corresponding job */
    if (jr->JobId == 0) {
-      /* Differential is since last Full backup */
+         /* Differential is since last Full backup */
          Mmsg(mdb->cmd,
 "SELECT StartTime FROM Job WHERE JobStatus='T' AND Type='%c' AND "
 "Level='%c' AND Name='%s' AND ClientId=%s AND FileSetId=%s "
index 71eab38175ecb1211b92ab83429f5a39f843afd1..ac73b19f38cad48622cbd19dec0cd83ca54e4aef 100644 (file)
@@ -293,7 +293,8 @@ RES_ITEM job_items[] = {
    {"differentialmaxwaittime",  store_time, ITEM(res_job.DiffMaxWaitTime), 0, 0, 0},
    {"maxwaittime",  store_time, ITEM(res_job.MaxWaitTime), 0, 0, 0},
    {"maxstartdelay",store_time, ITEM(res_job.MaxStartDelay), 0, 0, 0},
-   {"maxfullage",  store_time, ITEM(res_job.MaxFullAge), 0, 0, 0},
+   {"maxfullinterval",  store_time, ITEM(res_job.MaxFullInterval), 0, 0, 0},
+   {"maxdiffinterval",  store_time, ITEM(res_job.MaxDiffInterval), 0, 0, 0},
    {"jobretention", store_time, ITEM(res_job.JobRetention),  0, 0, 0},
    {"prefixlinks", store_bool, ITEM(res_job.PrefixLinks), 0, ITEM_DEFAULT, false},
    {"prunejobs",   store_bool, ITEM(res_job.PruneJobs), 0, ITEM_DEFAULT, false},
@@ -321,6 +322,10 @@ RES_ITEM job_items[] = {
    {"runscript", store_runscript, ITEM(res_job.RunScripts), 0, ITEM_NO_EQUALS, 0},
    {"selectiontype", store_migtype, ITEM(res_job.selection_type), 0, 0, 0},
    {"accurate", store_bool, ITEM(res_job.accurate), 0,0,0},
+   {"allowduplicatejobs",     store_bool, ITEM(res_job.AllowDuplicateJobs), 0, ITEM_DEFAULT, false},
+   {"allowhigherduplicates",  store_bool, ITEM(res_job.AllowHigherDuplicates), 0, ITEM_DEFAULT, true},
+   {"cancelqueuedduplicates",  store_bool, ITEM(res_job.CancelQueuedDuplicates), 0, ITEM_DEFAULT, true},
+   {"cancelrunningduplicates", store_bool, ITEM(res_job.CancelRunningDuplicates), 0, ITEM_DEFAULT, false},
    {NULL, NULL, {0}, 0, 0, 0}
 };
 
index 0407cea6ac1384a93575b088785c2fa73070bd01..a0ce2e1439dc0339f79db8450ecfffab626a0038 100644 (file)
@@ -385,7 +385,9 @@ public:
    utime_t MaxStartDelay;             /* max start delay in seconds */
    utime_t RescheduleInterval;        /* Reschedule interval */
    utime_t JobRetention;              /* job retention period in seconds */
-   utime_t MaxFullAge;                /* Max age of full to avoid upgrade */
+   utime_t MaxFullInterval;           /* Maximum time interval between Fulls */
+   utime_t MaxDiffInterval;           /* Maximum time interval between Diffs */
+   utime_t DuplicateJobProximity;     /* Permitted time between duplicicates */
    uint32_t MaxConcurrentJobs;        /* Maximum concurrent jobs */
    int64_t spool_size;                /* Size of spool file for this job */
    int RescheduleTimes;               /* Number of times to reschedule job */
@@ -402,6 +404,10 @@ public:
    bool enabled;                      /* Set if job enabled */
    bool OptimizeJobScheduling;        /* Set if we should optimize Job scheduling */
    bool accurate;                     /* Set if it is an accurate backup job */
+   bool AllowDuplicateJobs;           /* Allow duplicate jobs */
+   bool AllowHigherDuplicates;        /* Permit Higher Level */
+   bool CancelQueuedDuplicates;       /* Cancel queued jobs */
+   bool CancelRunningDuplicates;      /* Cancel Running jobs */
    
    MSGS      *messages;               /* How and where to send messages */
    SCHED     *schedule;               /* When -- Automatic schedule */
index f5ca007fc289ee885cd59f4727ebeb059aa0922f..a351d66b7e6de6eb20a44c7483930cfba8275550 100644 (file)
@@ -1,7 +1,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2000-2007 Free Software Foundation Europe e.V.
+   Copyright (C) 2000-2008 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
@@ -161,8 +161,11 @@ int connect_to_file_daemon(JCR *jcr, int retry_interval, int max_retry_time,
 void get_level_since_time(JCR *jcr, char *since, int since_len)
 {
    int JobLevel;
-   bool FullOk;
-   utime_t now, LastFull;
+   bool have_full;
+   bool do_full = false;
+   bool do_diff = false;
+   time_t now;
+   utime_t full_time, diff_time;
 
    since[0] = 0;
    /* If job cloned and a since time already given, use it */
@@ -176,28 +179,46 @@ void get_level_since_time(JCR *jcr, char *since, int since_len)
       jcr->stime = get_pool_memory(PM_MESSAGE);
    } 
    jcr->stime[0] = 0;
-   /* Lookup the last FULL backup job to get the time/date for a
+   /*
+    * Lookup the last FULL backup job to get the time/date for a
     * differential or incremental save.
     */
    switch (jcr->JobLevel) {
    case L_DIFFERENTIAL:
    case L_INCREMENTAL:
-      /* Look up start time of last job */
+      /* Look up start time of last Full job */
+      now = time(NULL);
       jcr->jr.JobId = 0;     /* flag for db_find_job_start time */
-      FullOk = db_find_job_start_time(jcr, jcr->db, &jcr->jr, &jcr->stime);
+      have_full = db_find_job_start_time(jcr, jcr->db, &jcr->jr, &jcr->stime);
+#ifdef xxx
       /* If there was a successful job, make sure it is recent enough */
-      if (FullOk && jcr->job->MaxFullAge > 0) {
-         now = btime_to_utime(get_current_btime());
-         LastFull = str_to_utime(jcr->stime);
-         FullOk = ((now - LastFull) < jcr->job->MaxFullAge);
+      if (jcr->JobLevel == L_INCREMENTAL && have_full && jcr->job->MaxDiffInterval > 0) {
+         /* Lookup last diff job */
+         jcr->jr.JobId = 0;
+         /* ***FIXME*** must find diff start time and not destroy jcr->stime */
+         if (db_find_job_start_time(jcr, jcr->db, &jcr->jr, &jcr->stime)) {
+            diff_time = str_to_utime(jcr->stime);
+            do_diff = ((now - diff_time) <= jcr->job->MaxDiffInterval);
+         }
+      }
+#endif
+      if (have_full && jcr->job->MaxFullInterval > 0) {
+         full_time = str_to_utime(jcr->stime);
+         do_full = ((now - full_time) <= jcr->job->MaxFullInterval);
       }
-      if (!FullOk) {
-         /* No recent job found, so upgrade this one to Full */
+      if (!have_full || do_full) {
+         /* No recent Full job found, so upgrade this one to Full */
          Jmsg(jcr, M_INFO, 0, "%s", db_strerror(jcr->db));
          Jmsg(jcr, M_INFO, 0, _("No prior or suitable Full backup found in catalog. Doing FULL backup.\n"));
          bsnprintf(since, since_len, _(" (upgraded from %s)"),
             level_to_str(jcr->JobLevel));
          jcr->JobLevel = jcr->jr.JobLevel = L_FULL;
+       } else if (do_diff) {
+         /* No recent diff job found, so upgrade this one to Full */
+         Jmsg(jcr, M_INFO, 0, _("No prior or suitable Differential backup found in catalog. Doing Differential backup.\n"));
+         bsnprintf(since, since_len, _(" (upgraded from %s)"),
+            level_to_str(jcr->JobLevel));
+         jcr->JobLevel = jcr->jr.JobLevel = L_DIFFERENTIAL;
       } else {
          if (jcr->job->rerun_failed_levels) {
             if (db_find_failed_job_since(jcr, jcr->db, &jcr->jr, jcr->stime, JobLevel)) {
index a6050096a4ab090df26e8ab5c60a1b31a72c2545..204fc88fe15b22475d88957908c2e8ea0822dda7 100644 (file)
@@ -621,12 +621,9 @@ static void sendit(const char *msg, int len, BSOCK *bs)
    bs->send();
 }
 
-static void sendit(const char *msg, int len, void *arg)
+static void sendit(const char *msg, int len, void *bs)
 {
-   BSOCK *bs = (BSOCK *)arg;
-   memcpy(bs->msg, msg, len+1);
-   bs->msglen = len+1;
-   bs->send();
+   sendit(msg, len, (BSOCK *)bs);
 }
 
 static void sendit(POOL_MEM &msg, int len, BSOCK *bs)
index d0af56a28b6ef5670f1db70e7647a4142f65ec5d..e4144a729c8c4453deee86522602880431758ed8 100644 (file)
@@ -50,15 +50,18 @@ _Z24db_find_failed_job_sinceP3JCRP4B_DBP7JOB_DBRPcRi
  \r
 ; sql_get.o\r
 _Z15db_get_pool_idsP3JCRP4B_DBPiPPj\r
+_Z16db_get_file_listP3JCRP4B_DBPcPFiPviPS3_ES4_\r
 _Z16db_get_media_idsP3JCRP4B_DBP9MEDIA_DBRPiPPj\r
 _Z17db_get_client_idsP3JCRP4B_DBPiPPj\r
 _Z17db_get_job_recordP3JCRP4B_DBP7JOB_DBR\r
+_Z18db_get_int_handlerPviPPc\r
 _Z18db_get_pool_recordP3JCRP4B_DBP8POOL_DBR\r
 _Z18db_get_query_dbidsP3JCRP4B_DBR8POOL_MEMR9dbid_list\r
 _Z19db_get_media_recordP3JCRP4B_DBP9MEDIA_DBR\r
 _Z20db_get_client_recordP3JCRP4B_DBP10CLIENT_DBR\r
 _Z21db_get_counter_recordP3JCRP4B_DBP11COUNTER_DBR\r
 _Z21db_get_fileset_recordP3JCRP4B_DBP11FILESET_DBR\r
+_Z22db_accurate_get_jobidsP3JCRP4B_DBP7JOB_DBRPc\r
 _Z23db_get_job_volume_namesP3JCRP4B_DBjPPc\r
 _Z23db_get_num_pool_recordsP3JCRP4B_DB\r
 _Z24db_get_num_media_recordsP3JCRP4B_DB\r
index a2ee999757f79fa876780d560b99b0ada665fdbb..476d182713f2f57a687ba50455c8d700a052b012 100644 (file)
@@ -129,10 +129,12 @@ _Z24enable_backup_privilegesP3JCRi
  
 ; find.o
 _Z10find_filesP3JCRP6FF_PKTPFiS0_S2_bES4_
+_Z13is_in_filesetP6FF_PKT
 _Z15init_find_filesv
 _Z15term_find_filesP6FF_PKT
 _Z16set_find_optionsP6FF_PKTil
 _Z22get_win32_drivelettersP6FF_PKTPc
+_Z25set_find_changed_functionP6FF_PKTPFbP3JCRS0_E
  
 ; find_one.o
 _Z13find_one_fileP3JCRP6FF_PKTPFiS0_S2_bEPcjb
@@ -462,6 +464,24 @@ _ZN9guid_list11uid_to_nameEjPci
 _ZN9guid_list11gid_to_nameEjPci
 _Z14free_guid_listP9guid_list
 _Z13new_guid_listv
+
+; hmac.o
+_Z8hmac_md5PhiS_iS_
+; htable.o
+_ZN6htable10grow_tableEv
+_ZN6htable10hash_indexEPc
+_ZN6htable4initEPvS0_i
+_ZN6htable4nextEv
+_ZN6htable4sizeEv
+_ZN6htable5firstEv
+_ZN6htable5statsEv
+_ZN6htable6insertEPcPv
+_ZN6htable6lookupEPc
+_ZN6htable7destroyEv
+_ZN6htableC1EPvS0_i
+_ZN6htableC2EPvS0_i
+    
  
 ; jcr.o
 _Z10b_free_jcrPKciP3JCR
index 0735262e8bee40ed01f6aad5a8138bde5d182c03..246be6593db93a7a381bf2e218e5abd36a7dc6b3 100644 (file)
@@ -1,7 +1,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2007-2007 Free Software Foundation Europe e.V.
+   Copyright (C) 2007-2008 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
index cf3617a214300b0a51023e5543a6b7746357e9db..5e7add7c1994ffae74097b2fa125d65590d391c6 100644 (file)
@@ -2,6 +2,10 @@
 
 General:
 03Mar08
+kes  Implement 'MaxFullInterval' and start 'MaxDiffInterval' based on
+     some ideas in patch from Scott Bailey.
+kes  Begin implementation of duplicate Job control.
+kes  Fix some of Win32 build after recent additions.
 kes  Apply patch from Frank Kardel that implements 'honor no dump flag',
      which causes the FD to detect whether or not the OS has the 
      honor no dump bit (*BSD systems), and if so, to skip backing up
@@ -46,9 +50,6 @@ kes  First incomplete cut of big malloc blocks for htable.
 kes  Tweak plugin code.
 17Feb08
 kes  Plugin debug code + tweak a couple bat dialog layouts
-16Feb08
-kes  Apply Max Full Age patch submitted by Scott Bailey 
-     <scott dot bailey at eds dot com>
 14Feb08
 kes  Fix creating first JobMedia record during Migration to include
      proper index. This caused slow restores of migrated jobs.