]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/cats/bdb_find.c
- Fix ANSI labels to put EOF1 and EOF2 after each file mark.
[bacula/bacula] / bacula / src / cats / bdb_find.c
index eee4ea7b188de2f365b9dd2e1aff2651cb7f77bf..b234f69b6904bac8af4f4bf253c6fbcbc28fe9c0 100644 (file)
  *  The purpose of these routines is to ensure that Bacula
  *  can limp along if no real database is loaded on the
  *  system.
- *   
- *    Kern Sibbald, January MMI 
+ *
+ *    Kern Sibbald, January MMI
  *
  *    Version $Id$
  */
 
 /*
-   Copyright (C) 2001, 2002 Kern Sibbald and John Walker
+   Copyright (C) 2001-2003 Kern Sibbald and John Walker
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
@@ -49,7 +49,6 @@
 #ifdef HAVE_BACULA_DB
 
 /* Forward referenced functions */
-int db_find_job_start_time(B_DB *mdb, JOB_DBR *jr, char *stime);
 
 /* -----------------------------------------------------------------------
  *
@@ -59,14 +58,14 @@ int db_find_job_start_time(B_DB *mdb, JOB_DBR *jr, char *stime);
  */
 
 
-/* 
+/*
  * Find job start time. Used to find last full save that terminated normally
  * so we can do Incremental and Differential saves.
  *
  * Returns: 0 on failure
  *         1 on success, jr unchanged, but stime set
  */
-int db_find_job_start_time(B_DB *mdb, JOB_DBR *jr, char *stime)
+int db_find_job_start_time(JCR *jcr, B_DB *mdb, JOB_DBR *jr, POOLMEM **stime)
 {
    char cmd[MAXSTRING], Name[MAX_NAME_LENGTH], StartTime[MAXSTRING];
    int Type, Level;
@@ -76,8 +75,8 @@ int db_find_job_start_time(B_DB *mdb, JOB_DBR *jr, char *stime)
    int found;
    long addr;
 
-   strcpy(stime, "0000-00-00 00:00:00");   /* default */
    db_lock(mdb);
+   pm_strcpy(stime, "0000-00-00 00:00:00");   /* default */
    if (!bdb_open_jobs_file(mdb)) {
       db_unlock(mdb);
       return 0;
@@ -87,8 +86,8 @@ int db_find_job_start_time(B_DB *mdb, JOB_DBR *jr, char *stime)
     */
 
    while (fgets(cmd, sizeof(cmd), mdb->jobfd)) {
-      if (sscanf(cmd, "JobStart JobId=%d Name=%127s Type=%1s Level=%1s \
-StartTime=%100s", &JobId, Name, cType, cLevel, StartTime) == 5) {
+      if (sscanf(cmd, "JobStart JobId=%d Name=%127s Type=%1s Level=%1s "
+"StartTime=%100s", &JobId, Name, cType, cLevel, StartTime) == 5) {
         if (JobId < jr->JobId) {
            continue;                 /* older not a candidate */
         }
@@ -96,15 +95,15 @@ StartTime=%100s", &JobId, Name, cType, cLevel, StartTime) == 5) {
         Level = cLevel[0];
         unbash_spaces(Name);
         unbash_spaces(StartTime);
-         Dmsg4(200, "Got Type=%c Level=%c Name=%s StartTime=%s\n",
+        Dmsg4(200, "Got Type=%c Level=%c Name=%s StartTime=%s\n",
            Type, Level, Name, StartTime);
-         Dmsg3(200, "Want Type=%c Level=%c Name=%s\n", jr->Type, jr->Level,     
+        Dmsg3(200, "Want Type=%c Level=%c Name=%s\n", jr->JobType, jr->JobLevel,
            jr->Name);
         /* Differential is since last Full backup */
         /* Incremental is since last FULL or Incremental or Differential */
-        if (((jr->Level == L_DIFFERENTIAL) && (Type == jr->Type && 
+        if (((jr->JobLevel == L_DIFFERENTIAL) && (Type == jr->JobType &&
               Level == L_FULL && strcmp(Name, jr->Name) == 0)) ||
-            ((jr->Level == L_INCREMENTAL) && (Type == jr->Type && 
+            ((jr->JobLevel == L_INCREMENTAL) && (Type == jr->JobType &&
               (Level == L_FULL || Level == L_INCREMENTAL ||
                Level == L_DIFFERENTIAL) && strcmp(Name, jr->Name) == 0))) {
            addr = ftell(mdb->jobfd);    /* save current location */
@@ -112,10 +111,10 @@ StartTime=%100s", &JobId, Name, cType, cLevel, StartTime) == 5) {
            found = 0;
            /* Search for matching JobEnd record */
            while (!found && fgets(cmd, sizeof(cmd), mdb->jobfd)) {
-               if (sscanf(cmd, "JobEnd JobId=%d JobStatus=%1s ClientId=%d",
+              if (sscanf(cmd, "JobEnd JobId=%d JobStatus=%1s ClientId=%d",
                  &EndId, JobStatus, &ClientId) == 3) {
-                  if (EndId == JobId && *JobStatus == 'T' && ClientId == jr->ClientId) {
-                     Dmsg0(200, "====found EndJob matching Job\n");
+                 if (EndId == JobId && *JobStatus == 'T' && ClientId == jr->ClientId) {
+                    Dmsg0(200, "====found EndJob matching Job\n");
                     found = 1;
                     break;
                  }
@@ -124,9 +123,9 @@ StartTime=%100s", &JobId, Name, cType, cLevel, StartTime) == 5) {
            /* Reset for next read */
            fseek(mdb->jobfd, addr, SEEK_SET);
            if (found) {
-              strcpy(stime, StartTime);
+              pm_strcpy(stime, StartTime);
               stat = 1;              /* Got a candidate */
-               Dmsg5(200, "Got candidate JobId=%d Type=%c Level=%c Name=%s StartTime=%s\n",
+              Dmsg5(200, "Got candidate JobId=%d Type=%c Level=%c Name=%s StartTime=%s\n",
                  JobId, Type, Level, Name, StartTime);
            }
         }
@@ -137,15 +136,18 @@ StartTime=%100s", &JobId, Name, cType, cLevel, StartTime) == 5) {
 }
 
 
-/* 
+/*
  * Find Available Media (Volume) for Pool
  *
  * Find a Volume for a given PoolId, MediaType, and VolStatus
  *
+ *   Note! this does not correctly implement InChanger.
+ *
  * Returns: 0 on failure
  *         numrows on success
  */
-int db_find_next_volume(B_DB *mdb, int item, MEDIA_DBR *mr)
+int
+db_find_next_volume(JCR *jcr, B_DB *mdb, int item, bool InChanger, MEDIA_DBR *mr)
 {
    MEDIA_DBR omr;
    int stat = 0;
@@ -162,22 +164,28 @@ int db_find_next_volume(B_DB *mdb, int item, MEDIA_DBR *mr)
    while (fread(&omr, len, 1, mdb->mediafd) > 0) {
       if (mr->PoolId == omr.PoolId && strcmp(mr->VolStatus, omr.VolStatus) == 0 &&
          strcmp(mr->MediaType, omr.MediaType) == 0) {
-         if (!(++index == item)) {    /* looking for item'th entry */
-            Dmsg0(200, "Media record matches, but not index\n");
+        if (!(++index == item)) {    /* looking for item'th entry */
+           Dmsg0(200, "Media record matches, but not index\n");
            continue;
         }
-         Dmsg0(200, "Media record matches\n");
+        Dmsg0(200, "Media record matches\n");
         memcpy(mr, &omr, len);
-         Dmsg1(200, "Findnextvol MediaId=%d\n", mr->MediaId);
+        Dmsg1(200, "Findnextvol MediaId=%d\n", mr->MediaId);
         stat = 1;
         break;                       /* found it */
       }
    }
    db_unlock(mdb);
-   return stat;                
+   return stat;
 }
 
-int db_find_last_full_verify(B_DB *mdb, JOB_DBR *jr) { return 0; }
+int
+db_find_last_jobid(JCR *jcr, B_DB *mdb, const char *Name, JOB_DBR *jr)
+{ return 0; }
+
+bool
+db_find_failed_job_since(JCR *jcr, B_DB *mdb, JOB_DBR *jr, POOLMEM *stime, int &JobLevel)
+{ return false; }
 
 
 #endif /* HAVE_BACULA_DB */