]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/stored/btape.c
Add V: to bextract and bscan
[bacula/bacula] / bacula / src / stored / btape.c
index 8124a999d83f3f1ce61e32b3758601303e9b7b54..fedf6e60b15f320a387f59ec9eaaae3a80fd45de 100644 (file)
@@ -44,7 +44,7 @@ extern void free_config_resources();
 int quit = 0;
 char buf[100000];
 int bsize = TAPE_BSIZE;
-char VolName[100];
+char VolName[MAX_NAME_LENGTH];
 
 DEVICE *dev = NULL;
 DEVRES *device = NULL;
@@ -60,12 +60,15 @@ static void wrcmd();
 static void rrcmd();
 static void eodcmd();
 static void fillcmd();
+static void qfillcmd();
 static void statcmd();
 static void unfillcmd();
 static int flush_block(DEV_BLOCK *block, int dump);
 static void record_cb(JCR *jcr, DEVICE *dev, DEV_BLOCK *block, DEV_RECORD *rec);
 static int my_mount_next_read_volume(JCR *jcr, DEVICE *dev, DEV_BLOCK *block);
 static void scan_blocks();
+static void set_volume_name(char *VolName, int volnum);
+static void rawfill_cmd();
 
 
 /* Static variables */
@@ -81,7 +84,7 @@ static uint64_t vol_size;
 static uint64_t VolBytes;
 static time_t now;
 static double kbs;
-static long file_index;
+static int32_t file_index;
 static int end_of_tape = 0;
 static uint32_t LastBlock = 0;
 static uint32_t eot_block;
@@ -92,9 +95,11 @@ static DEV_BLOCK *last_block = NULL;
 static DEV_BLOCK *this_block = NULL;
 static uint32_t last_file = 0;
 static uint32_t last_block_num = 0;
+static uint32_t BlockNumber = 0;
 static int simple = FALSE;
 
 static char *VolumeName = NULL;
+static int vol_num;
 
 static JCR *jcr = NULL;
 
@@ -104,19 +109,6 @@ static void terminate_btape(int sig);
 int get_cmd(char *prompt);
 
 
-int write_dev(DEVICE *dev, char *buf, size_t len) 
-{
-   Emsg0(M_ABORT, 0, "write_dev not implemented.\n");
-   return 0;
-}
-
-int read_dev(DEVICE *dev, char *buf, size_t len)
-{
-   Emsg0(M_ABORT, 0, "read_dev not implemented.\n");
-   return 0;
-}
-
-
 /*********************************************************************
  *
  *        Main Bacula Pool Creation Program
@@ -421,15 +413,15 @@ static void weofcmd()
 static void eomcmd()
 {
    if (!eod_dev(dev)) {
-      Pmsg1(0, _("Bad status from eod. ERR=%s\n"), strerror_dev(dev));
+      Pmsg1(0, _("Bad status from MTEOD. ERR=%s\n"), strerror_dev(dev));
       return;
    } else {
-      Pmsg0(0, _("Moved to end of media\n"));
+      Pmsg0(0, _("Moved to end of medium.\n"));
    }
 }
 
 /*
- * Go to the end of the media (either hardware determined
+ * Go to the end of the medium (either hardware determined
  *  or defined by two eofs.
  */
 static void eodcmd()
@@ -692,7 +684,7 @@ static int append_test()
    wrcmd();
    weofcmd();    /* end file 2 */
    rewindcmd();
-   Pmsg0(0, _("Now moving to end of media.\n"));
+   Pmsg0(0, _("Now moving to end of medium.\n"));
    eodcmd();
    Pmsg2(-1, _("We should be in file 3. I am at file %d. This is %s\n"), 
       dev->file, dev->file == 3 ? "correct!" : "NOT correct!!!!");
@@ -903,6 +895,7 @@ static void scancmd()
    int blocks, tot_blocks, tot_files;
    int block_size;
    uint64_t bytes;
+   char ec1[50];
 
 
    blocks = block_size = tot_blocks = 0;
@@ -913,6 +906,7 @@ static void scancmd()
    }
    update_pos_dev(dev);
    tot_files = dev->file;
+   Pmsg1(0, _("Starting scan at file %u\n"), dev->file);
    for (;;) {
       if ((stat = read(dev->fd, buf, sizeof(buf))) < 0) {
         clrerror_dev(dev, -1);
@@ -958,7 +952,8 @@ static void scancmd()
    }
    update_pos_dev(dev);
    tot_files = dev->file - tot_files;
-   printf("Total files=%d, blocks=%d, bytes = %" lld "\n", tot_files, tot_blocks, bytes);
+   printf("Total files=%d, blocks=%d, bytes = %s\n", tot_files, tot_blocks, 
+      edit_uint64_with_commas(bytes, ec1));
 }
 
 
@@ -974,6 +969,7 @@ static void scan_blocks()
    uint32_t block_size;
    uint64_t bytes;
    DEV_BLOCK *block;
+   char ec1[50];
 
    block = new_block(dev);
    blocks = block_size = tot_blocks = 0;
@@ -1044,7 +1040,8 @@ static void scan_blocks()
 bail_out:
    free_block(block);
    tot_files = dev->file - tot_files;
-   printf("Total files=%d, blocks=%d, bytes = %" lld "\n", tot_files, tot_blocks, bytes);
+   printf("Total files=%d, blocks=%d, bytes = %s\n", tot_files, tot_blocks, 
+      edit_uint64_with_commas(bytes, ec1));
 }
 
 
@@ -1078,8 +1075,9 @@ static void fillcmd()
 
    ok = TRUE;
    stop = 0;
+   vol_num = 0;
 
-   Pmsg0(000, "\n\
+   Pmsg0(-1, "\n\
 This command simulates Bacula writing to a tape.\n\
 It requires either one or two blank tapes, which it\n\
 will label and write. It will print a status approximately\n\
@@ -1106,8 +1104,7 @@ This may take a long time -- hours! ...\n\n");
       return;
    }
 
-   VolumeName = "TestVolume1";
-   pm_strcpy(&jcr->VolumeName, "TestVolume1");
+   set_volume_name("TestVolume1", 1);
    labelcmd();
    VolumeName = NULL;
 
@@ -1138,7 +1135,7 @@ This may take a long time -- hours! ...\n\n");
         strerror_dev(dev));
       ok = FALSE;
    }
-   Pmsg0(-1, "Wrote session label.\n");
+   Pmsg0(-1, "Wrote Start Of Session label.\n");
 
    memset(&rec, 0, sizeof(rec));
    rec.data = get_memory(100000);     /* max record size */
@@ -1147,21 +1144,23 @@ This may take a long time -- hours! ...\n\n");
    rec.data_len = REC_SIZE;
 
    /* 
-    * Get Data from File daemon, write to device   
+    * Generate data as if from File daemon, write to device   
     */
    jcr->VolFirstIndex = 0;
    time(&jcr->run_time);             /* start counting time for rates */
+   Pmsg0(-1, "Begin writing records to first tape ...\n");
    for (file_index = 0; ok && !job_canceled(jcr); ) {
       rec.VolSessionId = jcr->VolSessionId;
       rec.VolSessionTime = jcr->VolSessionTime;
       rec.FileIndex = ++file_index;
       rec.Stream = STREAM_FILE_DATA;
 
-      /* Write file_index at beginning of buffer and add file_index to each
-       *  uint64_t item to make it unique.
+      /* 
+       * Fill the buffer with the file_index negated. Negation ensures that
+       *   more bits are turned on.
        */
       uint64_t *lp = (uint64_t *)rec.data;
-      for (uint32_t i=0; i < (REC_SIZE-sizeof(uint64_t))/sizeof(uint64_t); i++) {
+      for (uint32_t i=0; i < (rec.data_len-sizeof(uint64_t))/sizeof(uint64_t); i++) {
         *lp++ = ~file_index;
       }
 
@@ -1170,11 +1169,9 @@ This may take a long time -- hours! ...\n\n");
         rec.data_len);
        
       while (!write_record_to_block(block, &rec)) {
-        
         /*
-         * Here we just filled a block
+         * When we get here we have just filled a block
          */
-
          Dmsg2(150, "!write_record_to_block data_len=%d rem=%d\n", rec.data_len,
                    rec.remainder);
 
@@ -1195,18 +1192,17 @@ This may take a long time -- hours! ...\n\n");
             Pmsg3(-1, "Wrote block=%u, VolBytes=%s rate=%.1f KB/s\n", block->BlockNumber,
               edit_uint64_with_commas(dev->VolCatInfo.VolCatBytes, ec1), (float)kbs);
         }
-        /* Every 15000 blocks (approx 1GB) write an eof.
+        /* Every 15000 blocks (approx 1GB) write an EOF.
          */
         if ((block->BlockNumber % 15000) == 0) {
             Pmsg0(-1, "Flush block, write EOF\n");
            flush_block(block, 0);
            weof_dev(dev, 1);
-           /* The weof resets the block number */
         }
 
         /* Get out after writing 10 blocks to the second tape */
-        if (block->BlockNumber > 10 && stop != 0) {      /* get out */
-           break;
+        if (++BlockNumber > 10 && stop != 0) {      /* get out */
+           break;    
         }
       }
       if (!ok) {
@@ -1217,6 +1213,12 @@ This may take a long time -- hours! ...\n\n");
       Dmsg4(190, "write_record FI=%s SessId=%d Strm=%s len=%d\n",
         FI_to_ascii(rec.FileIndex), rec.VolSessionId, 
         stream_to_ascii(rec.Stream, rec.FileIndex), rec.data_len);
+
+      /* Get out after writing 10 blocks to the second tape */
+      if (BlockNumber > 10 && stop != 0) {     /* get out */
+         Pmsg0(-1, "Done writing ...\n");
+        break;    
+      }
    }
    if (stop > 0) {
       Dmsg0(100, "Write_end_session_label()\n");
@@ -1235,6 +1237,7 @@ This may take a long time -- hours! ...\n\n");
          Pmsg0(-1, _("Set ok=FALSE after write_block_to_device.\n"));
         ok = FALSE;
       }
+      Pmsg0(-1, "Wrote End Of Session label.\n");
    }
 
    /* Release the device */
@@ -1245,7 +1248,7 @@ This may take a long time -- hours! ...\n\n");
 
    free_block(block);
    free_memory(rec.data);
-   Pmsg0(000, _("\n\nDone filling tape. Now beginning re-read of tape ...\n"));
+   Pmsg0(-1, _("\n\nDone filling tape. Now beginning re-read of tape ...\n"));
 
    dump_block(last_block, _("Last block written to tape.\n"));
 
@@ -1272,17 +1275,24 @@ static void unfillcmd()
 
    end_of_tape = 0;
 
-   get_cmd(_("Mount first tape. Press enter when ready: ")); 
+   if (!simple) {
+      /* Close device so user can use autochanger if desired */
+      if (dev_cap(dev, CAP_OFFLINEUNMOUNT)) {
+        offline_dev(dev);
+      }
+      force_close_dev(dev);
+      get_cmd(_("Mount first tape. Press enter when ready: ")); 
    
-   free_vol_list(jcr);
-   pm_strcpy(&jcr->VolumeName, "TestVolume1");
-   jcr->bsr = NULL;
-   create_vol_list(jcr);
-   close_dev(dev);
-   dev->state &= ~ST_READ;
-   if (!acquire_device_for_read(jcr, dev, block)) {
-      Pmsg1(-1, "%s", dev->errmsg);
-      return;
+      free_vol_list(jcr);
+      set_volume_name("TestVolume1", 1);
+      jcr->bsr = NULL;
+      create_vol_list(jcr);
+      close_dev(dev);
+      dev->state &= ~ST_READ;
+      if (!acquire_device_for_read(jcr, dev, block)) {
+         Pmsg1(-1, "%s", dev->errmsg);
+        return;
+      }
    }
 
    time(&jcr->run_time);             /* start counting time for rates */
@@ -1311,7 +1321,7 @@ static void unfillcmd()
       Pmsg1(-1, _("Forward space to file %u complete. Reading blocks ...\n"), 
            last_file);
       Pmsg1(-1, _("Now reading to block %u.\n"), last_block_num);
-      for (uint32_t i= 0; i < last_block_num; i++) {
+      for (uint32_t i=0; i <= last_block_num; i++) {
         if (!read_block_from_device(jcr, dev, block, NO_BLOCK_NUMBER_CHECK)) {
             Pmsg1(-1, _("Error reading blocks: ERR=%s\n"), strerror_dev(dev));
             Pmsg2(-1, _("Wanted block %u error at block %u\n"), last_block_num, i);
@@ -1321,7 +1331,7 @@ static void unfillcmd()
             Pmsg1(-1, _("At block %u\n"), i);
         }
       }
-      if (last_block != 0) {
+      if (last_block) {
          dump_block(last_block, _("Last block written"));
          dump_block(block, _("Block read back"));
          Pmsg0(-1, _("Except for the buffer address, the contents of\n"
@@ -1336,26 +1346,22 @@ bail_out:
    Pmsg0(000, _("Done with reread of fill data.\n"));
 }
 
-
 /* 
  * We are called here from "unfill" for each record on the tape.
  */
 static void record_cb(JCR *jcr, DEVICE *dev, DEV_BLOCK *block, DEV_RECORD *rec)
 {
-
    SESSION_LABEL label;
-   if (stop > 1) {                   /* on second tape */
-      Pmsg4(000, "Blk: FileIndex=%d: block=%u size=%d vol=%s\n", 
+
+   if (stop > 1 && !dumped) {        /* on second tape */
+      dumped = 1;
+      dump_block(block, "First block on second tape");
+      Pmsg4(-1, "Blk: FileIndex=%d: block=%u size=%d vol=%s\n", 
           rec->FileIndex, block->BlockNumber, block->block_len, dev->VolHdr.VolName);
-      Pmsg6(000, "   Rec: VId=%d VT=%d FI=%s Strm=%s len=%d state=%x\n",
+      Pmsg6(-1, "   Rec: VId=%d VT=%d FI=%s Strm=%s len=%d state=%x\n",
           rec->VolSessionId, rec->VolSessionTime, 
           FI_to_ascii(rec->FileIndex), stream_to_ascii(rec->Stream, rec->FileIndex),
           rec->data_len, rec->state);
-
-      if (!dumped) {
-        dumped = 1;
-         dump_block(block, "Block not written to previous tape");
-      }
    }
    if (rec->FileIndex < 0) {
       if (verbose > 1) {
@@ -1363,25 +1369,25 @@ static void record_cb(JCR *jcr, DEVICE *dev, DEV_BLOCK *block, DEV_RECORD *rec)
       }
       switch (rec->FileIndex) {
       case PRE_LABEL:
-         Pmsg0(000, "Volume is prelabeled. This tape cannot be scanned.\n");
+         Pmsg0(-1, "Volume is prelabeled. This tape cannot be scanned.\n");
         return;
       case VOL_LABEL:
         unser_volume_label(dev, rec);
-         Pmsg3(000, "VOL_LABEL: block=%u size=%d vol=%s\n", block->BlockNumber, 
+         Pmsg3(-1, "VOL_LABEL: block=%u size=%d vol=%s\n", block->BlockNumber, 
            block->block_len, dev->VolHdr.VolName);
         stop++;
         break;
       case SOS_LABEL:
         unser_session_label(&label, rec);
-         Pmsg1(000, "SOS_LABEL: JobId=%u\n", label.JobId);
+         Pmsg1(-1, "SOS_LABEL: JobId=%u\n", label.JobId);
         break;
       case EOS_LABEL:
         unser_session_label(&label, rec);
-         Pmsg2(000, "EOS_LABEL: block=%u JobId=%u\n", block->BlockNumber, 
+         Pmsg2(-1, "EOS_LABEL: block=%u JobId=%u\n", block->BlockNumber, 
            label.JobId);
         break;
       case EOM_LABEL:
-         Pmsg0(000, "EOM_LABEL:\n");
+         Pmsg0(-1, "EOM_LABEL:\n");
         break;
       case EOT_LABEL:             /* end of all tapes */
         char ec1[50];
@@ -1462,12 +1468,9 @@ static int flush_block(DEV_BLOCK *block, int dump)
       this_block = new_block(dev);
    }
    /* Copy block */
+   free_memory(this_block->buf);    
    memcpy(this_block, block, sizeof(DEV_BLOCK));
-   if (this_block->buf_len < block->buf_len) {
-      free_memory(this_block->buf);    
-      this_block->buf = get_memory(block->buf_len);
-      this_block->buf_len = block->buf_len;
-   }
+   this_block->buf = get_memory(block->buf_len);
    memcpy(this_block->buf, block->buf, this_block->buf_len);
    this_file = dev->file;
    this_block_num = dev->block_num;
@@ -1475,6 +1478,8 @@ static int flush_block(DEV_BLOCK *block, int dump)
       Pmsg0(000, strerror_dev(dev));           
       Pmsg3(000, "Block not written: FileIndex=%u Block=%u Size=%u\n", 
         (unsigned)file_index, block->BlockNumber, block->block_len);
+      Pmsg2(000, "last_block_num=%u this_block_num=%d\n", last_block_num,
+        this_block_num);
       if (dump) {
          dump_block(block, "Block not written");
       }
@@ -1504,6 +1509,7 @@ static int flush_block(DEV_BLOCK *block, int dump)
            return 0;
         }
         stop = 1;                                                     
+        BlockNumber = 0;             /* start counting for second tape */
       }
       unlock_device(dev);
       return 1;                      /* end of tape reached */
@@ -1525,6 +1531,103 @@ static int flush_block(DEV_BLOCK *block, int dump)
 }
 
 
+/* 
+ * First we label the tape, then we fill
+ *  it with data get a new tape and write a few blocks.
+ */                           
+static void qfillcmd()
+{
+   DEV_BLOCK *block;
+   DEV_RECORD *rec;
+   int i, count;
+
+   Pmsg0(0, "Test writing blocks of 64512 bytes to tape.\n");
+
+   get_cmd("How many blocks do you want to write? (1000): ");
+
+   count = atoi(cmd);
+   if (count <= 0) {
+      count = 1000;
+   }
+
+   sm_check(__FILE__, __LINE__, False);
+   block = new_block(dev);
+   rec = new_record();
+
+   i = block->buf_len - 100;
+   ASSERT (i > 0);
+   rec->data = check_pool_memory_size(rec->data, i);
+   memset(rec->data, i & 0xFF, i);
+   rec->data_len = i;
+   rewindcmd();
+   Pmsg1(0, "Begin writing %d blocks to tape ...\n", count);
+   for (i=0; i < count; i++) {
+      if (i % 100 == 0) {
+         printf("+");
+      }
+      if (!write_record_to_block(block, rec)) {
+         Pmsg0(0, _("Error writing record to block.\n")); 
+        goto bail_out;
+      }
+      if (!write_block_to_dev(jcr, dev, block)) {
+         Pmsg0(0, _("Error writing block to device.\n")); 
+        goto bail_out;
+      }
+   }
+   printf("\n");
+   weofcmd();
+   weofcmd();
+   rewindcmd();
+   scan_blocks();
+
+bail_out:
+   sm_check(__FILE__, __LINE__, False);
+   free_record(rec);
+   free_block(block);
+   sm_check(__FILE__, __LINE__, False);
+
+}
+
+static void rawfill_cmd()
+{
+   DEV_BLOCK *block;
+   int stat;
+   int fd;
+   uint32_t block_num = 0;
+   uint32_t *p;
+   int my_errno;
+
+   block = new_block(dev);
+   fd = open("/dev/urandom", O_RDONLY);
+   if (fd) {
+      read(fd, block->buf, block->buf_len);
+   } else {
+      Pmsg0(0, "Cannot open /dev/urandom.\n");
+      free_block(block);
+      return;
+   }
+   p = (uint32_t *)block->buf;
+   Pmsg1(0, "Begin writing blocks of %u bytes.\n", block->buf_len);
+   for ( ;; ) {
+      *p = block_num;
+      stat = write(dev->fd, block->buf, block->buf_len);
+      if (stat == (int)block->buf_len) {
+        if ((block_num++ % 100) == 0) {
+            printf("+");
+        }
+        continue;
+      }
+      break;
+   }
+   my_errno = errno;
+   printf("\n");
+   weofcmd();
+   printf("Write failed at block %u. stat=%d ERR=%s\n", block_num, stat,
+      strerror(my_errno));
+   free_block(block);
+
+}
+
 struct cmdstruct { char *key; void (*func)(); char *help; }; 
 static struct cmdstruct commands[] = {
  {"bsf",        bsfcmd,       "backspace file"},
@@ -1541,15 +1644,18 @@ static struct cmdstruct commands[] = {
  {"label",      labelcmd,     "write a Bacula label to the tape"},
  {"load",       loadcmd,      "load a tape"},
  {"quit",       quitcmd,      "quit btape"},   
+ {"rawfill",    rawfill_cmd,  "use write() to fill tape"},
  {"readlabel",  readlabelcmd, "read and print the Bacula tape label"},
  {"rectest",    rectestcmd,   "test record handling functions"},
  {"rewind",     rewindcmd,    "rewind the tape"},
- {"scan",       scancmd,      "read tape block by block to EOT and report"}, 
+ {"scan",       scancmd,      "read() tape block by block to EOT and report"}, 
+ {"scanblocks", scan_blocks,  "Bacula read block by block to EOT and report"},
  {"status",     statcmd,      "print tape status"},
  {"test",       testcmd,      "General test Bacula tape functions"},
  {"weof",       weofcmd,      "write an EOF on the tape"},
  {"wr",         wrcmd,        "write a single Bacula block"}, 
  {"rr",         rrcmd,        "read a single record"},
+ {"qfill",      qfillcmd,     "quick fill command"},
             };
 #define comsize (sizeof(commands)/sizeof(struct cmdstruct))
 
@@ -1633,16 +1739,26 @@ get_cmd(char *prompt)
 }
 
 /* Dummies to replace askdir.c */
-int    dir_get_volume_info(JCR *jcr, int writing) { return 1;}
-int    dir_find_next_appendable_volume(JCR *jcr) { return 1;}
+int    dir_get_volume_info(JCR *jcr, enum get_vol_info_rw  writing) { return 1;}
 int    dir_update_volume_info(JCR *jcr, VOLUME_CAT_INFO *vol, int relabel) { return 1; }
 int    dir_create_jobmedia_record(JCR *jcr) { return 1; }
 int    dir_update_file_attributes(JCR *jcr, DEV_RECORD *rec) { return 1;}
 int    dir_send_job_status(JCR *jcr) {return 1;}
 
 
+
+int    dir_find_next_appendable_volume(JCR *jcr) 
+{ 
+   return 1; 
+}
+
 int dir_ask_sysop_to_mount_volume(JCR *jcr, DEVICE *dev)
 {
+   /* Close device so user can use autochanger if desired */
+   if (dev_cap(dev, CAP_OFFLINEUNMOUNT)) {
+      offline_dev(dev);
+   }
+   force_close_dev(dev);
    Pmsg1(-1, "%s", dev->errmsg);           /* print reason */
    fprintf(stderr, "Mount Volume \"%s\" on device %s and press return when ready: ",
       jcr->VolumeName, dev_name(dev));
@@ -1652,13 +1768,19 @@ int dir_ask_sysop_to_mount_volume(JCR *jcr, DEVICE *dev)
 
 int dir_ask_sysop_to_mount_next_volume(JCR *jcr, DEVICE *dev)
 {
+   /* Close device so user can use autochanger if desired */
+   if (dev_cap(dev, CAP_OFFLINEUNMOUNT)) {
+      offline_dev(dev);
+   }
+   force_close_dev(dev);
    fprintf(stderr, "Mount next Volume on device %s and press return when ready: ",
       dev_name(dev));
    getchar();  
-   VolumeName = "TestVolume2";
-   pm_strcpy(&jcr->VolumeName, "TestVolume2");
+   set_volume_name("TestVolume2", 2);
    labelcmd();
    VolumeName = NULL;
+   BlockNumber = 0;
+   stop = 1;
    return 1;
 }
 
@@ -1687,7 +1809,7 @@ static int my_mount_next_read_volume(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
    }
 
    free_vol_list(jcr);
-   pm_strcpy(&jcr->VolumeName, "TestVolume2");
+   set_volume_name("TestVolume2", 2);
    jcr->bsr = NULL;
    create_vol_list(jcr);
    close_dev(dev);
@@ -1698,3 +1820,11 @@ static int my_mount_next_read_volume(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
    }
    return 1;                      /* next volume mounted */
 }
+
+static void set_volume_name(char *VolName, int volnum) 
+{
+   VolumeName = VolName;
+   vol_num = volnum;
+   pm_strcpy(&jcr->VolumeName, VolName);
+   bstrncpy(dev->VolCatInfo.VolCatName, VolName, sizeof(dev->VolCatInfo.VolCatName));
+}