]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/stored/mount.c
Clean up some SD message nos.
[bacula/bacula] / bacula / src / stored / mount.c
index abedacf060f120b51b00bc6bf0430ae962f270fc..a332b7a6312837469207e54df86d2894829095b0 100644 (file)
@@ -31,7 +31,6 @@
 #include "stored.h"                   /* pull in Storage Deamon headers */
 
 /* Forward referenced functions */
-static char *edit_device_codes(JCR *jcr, char *omsg, char *imsg, char *cmd);
 
 
 /*
@@ -57,8 +56,8 @@ mount_next_vol:
           dev_name(dev));
       return 0;
    }
-   if (job_cancelled(jcr)) {
-      Jmsg(jcr, M_FATAL, 0, _("Job cancelled.\n"));
+   if (job_canceled(jcr)) {
+      Jmsg(jcr, M_FATAL, 0, _("Job canceled.\n"));
       return 0;
    }
    recycle = ask = autochanger = 0;
@@ -186,10 +185,10 @@ read_volume:
             */
            memcpy(&dev->VolCatInfo, &jcr->VolCatInfo, sizeof(jcr->VolCatInfo));
            /* Check if this is a valid Volume in the pool */
-           strcpy(jcr->VolumeName, dev->VolHdr.VolName);
+           bstrncpy(jcr->VolumeName, dev->VolHdr.VolName, sizeof(jcr->VolumeName));
            if (!dir_get_volume_info(jcr, 1)) {
                Mmsg(&jcr->errmsg, _("Wanted Volume \"%s\".\n"
-                    "    Actual Volume \"%s\" not acceptable because:\n"
+                    "    Current Volume \"%s\" not acceptable because:\n"
                     "    %s"),
                   dev->VolCatInfo.VolCatName, dev->VolHdr.VolName,
                   jcr->dir_bsock->msg);
@@ -378,186 +377,3 @@ int mount_next_read_volume(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
    Dmsg0(90, "End of Device reached.\n");
    return 0;
 }
-
-/*
- * Called here to do an autoload using the autochanger, if
- *  configured, and if a Slot has been defined for this Volume.
- *  On success this routine loads the indicated tape, but the
- *  label is not read, so it must be verified.
- *
- *  Note if dir is not NULL, it is the console requesting the 
- *   autoload for labeling, so we respond directly to the
- *   dir bsock.
- *
- *  Returns: 1 on success
- *          0 on failure
- */
-int autoload_device(JCR *jcr, DEVICE *dev, int writing, BSOCK *dir)
-{
-   int slot = jcr->VolCatInfo.Slot;
-   int rtn_stat = 0;
-     
-   /*
-    * Handle autoloaders here. If we cannot autoload it, we
-    *  will return FALSE to ask the sysop.
-    */
-   if (writing && dev_cap(dev, CAP_AUTOCHANGER) && slot <= 0) {
-      if (dir) {
-        return 0;                    /* For user, bail out right now */
-      }
-      if (dir_find_next_appendable_volume(jcr)) {
-        slot = jcr->VolCatInfo.Slot; 
-      }
-   }
-   Dmsg1(100, "Want changer slot=%d\n", slot);
-
-   if (slot > 0 && jcr->device->changer_name && jcr->device->changer_command) {
-      uint32_t timeout = jcr->device->max_changer_wait;
-      POOLMEM *changer, *results;
-      int status, loaded;
-
-      results = get_pool_memory(PM_MESSAGE);
-      changer = get_pool_memory(PM_FNAME);
-
-      /* Find out what is loaded, zero means device is unloaded */
-      changer = edit_device_codes(jcr, changer, jcr->device->changer_command, 
-                   "loaded");
-      status = run_program(changer, timeout, results);
-      Dmsg3(100, "run_prog: %s stat=%d result=%s\n", changer, status, results);
-      if (status == 0) {
-        loaded = atoi(results);
-      } else {
-        loaded = -1;              /* force unload */
-      }
-      Dmsg1(100, "loaded=%s\n", results);
-
-      /* If bad status or tape we want is not loaded, load it. */
-      if (status != 0 || loaded != slot) { 
-        if (dev_cap(dev, CAP_OFFLINEUNMOUNT)) {
-           offline_dev(dev);
-        }
-        /* We are going to load a new tape, so close the device */
-        force_close_dev(dev);
-        if (loaded != 0) {        /* must unload drive */
-            Dmsg0(100, "Doing changer unload.\n");
-           if (dir) {
-               bnet_fsend(dir, _("3902 Issuing autochanger \"unload\" command.\n"));
-           } else {
-               Jmsg(jcr, M_INFO, 0, _("Issuing autochanger \"unload\" command.\n"));
-           }
-           changer = edit_device_codes(jcr, changer, 
-                        jcr->device->changer_command, "unload");
-           status = run_program(changer, timeout, NULL);
-            Dmsg1(100, "unload status=%d\n", status);
-        }
-        /*
-         * Load the desired cassette    
-         */
-         Dmsg1(100, "Doing changer load slot %d\n", slot);
-        if (dir) {
-            bnet_fsend(dir, _("3903 Issuing autochanger \"load slot %d\" command.\n"),
-              slot);
-        } else {
-            Jmsg(jcr, M_INFO, 0, _("Issuing autochanger \"load slot %d\" command.\n"),
-              slot);
-        }
-        changer = edit_device_codes(jcr, changer, 
-                      jcr->device->changer_command, "load");
-        status = run_program(changer, timeout, NULL);
-        if (status == 0) {
-            Jmsg(jcr, M_INFO, 0, _("Autochanger \"load slot\" status is OK.\n"));
-        } else {
-            Jmsg(jcr, M_INFO, 0, _("Bad autochanger \"load slot\" status = %d.\n"),
-              status);
-        }
-         Dmsg2(100, "load slot %d status=%d\n", slot, status);
-      }
-      free_pool_memory(changer);
-      free_pool_memory(results);
-      Dmsg1(100, "After changer, status=%d\n", status);
-      if (status == 0) {          /* did we succeed? */
-        rtn_stat = 1;             /* tape loaded by changer */
-      }
-   }
-   return rtn_stat;
-}
-
-
-
-/*
- * Edit codes into ChangerCommand
- *  %% = %
- *  %a = archive device name
- *  %c = changer device name
- *  %f = Client's name
- *  %j = Job name
- *  %o = command
- *  %s = Slot base 0
- *  %S = Slot base 1
- *  %v = Volume name
- *
- *
- *  omsg = edited output message
- *  imsg = input string containing edit codes (%x)
- *  cmd = command string (load, unload, ...) 
- *
- */
-static char *edit_device_codes(JCR *jcr, char *omsg, char *imsg, char *cmd) 
-{
-   char *p;
-   const char *str;
-   char add[20];
-
-   *omsg = 0;
-   Dmsg1(200, "edit_device_codes: %s\n", imsg);
-   for (p=imsg; *p; p++) {
-      if (*p == '%') {
-        switch (*++p) {
-         case '%':
-            str = "%";
-           break;
-         case 'a':
-           str = jcr->device->dev->dev_name;
-           break;
-         case 'c':
-           str = NPRT(jcr->device->changer_name);
-           break;
-         case 'o':
-           str = NPRT(cmd);
-           break;
-         case 's':
-            sprintf(add, "%d", jcr->VolCatInfo.Slot - 1);
-           str = add;
-           break;
-         case 'S':
-            sprintf(add, "%d", jcr->VolCatInfo.Slot);
-           str = add;
-           break;
-         case 'j':                    /* Job name */
-           str = jcr->Job;
-           break;
-         case 'v':
-           str = NPRT(jcr->VolumeName);
-           break;
-         case 'f':
-           str = NPRT(jcr->client_name);
-           break;
-
-        default:
-            add[0] = '%';
-           add[1] = *p;
-           add[2] = 0;
-           str = add;
-           break;
-        }
-      } else {
-        add[0] = *p;
-        add[1] = 0;
-        str = add;
-      }
-      Dmsg1(200, "add_str %s\n", str);
-      pm_strcat(&omsg, (char *)str);
-      Dmsg1(200, "omsg=%s\n", omsg);
-   }
-   return omsg;
-}