JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Sun QFS and Sun Storage Archive Manager 5.3 Reference Manual     Sun QFS and Sun Storage Archive Manager 5.3 Information Library
search filter icon
search icon

Document Information

Preface

1.  User Commands (Man Pages Section 1)

2.  Maintenance Commands (Man Pages Section 1M)

3.  Library Functions (Man Pages Section 3)

intro_libsam(3)

intro_libsamrpc(3)

qfs_listio(3)

sam_advise(3)

sam_archive(3)

sam_audit(3)

sam_cancelstage(3)

sam_chmed(3)

sam_clear_request(3)

sam_closecat(3)

sam_damage(3)

sam_devstat(3)

sam_devstr(3)

sam_errno(3)

sam_exarchive(3)

sam_export(3)

sam_getcatalog(3)

sam_getfsdata(3)

sam_getfsdisks(3)

sam_import(3)

sam_load(3)

sam_lstat(3)

sam_mig_create_file(3)

sam_mig_mount_media(3)

sam_mig_rearchive(3)

sam_mig_release_device(3)

sam_mig_stage_end(3)

sam_mig_stage_error(3)

sam_mig_stage_file(3)

sam_mig_stage_write(3)

sam_move(3)

sam_odlabel(3)

sam_opencat(3)

sam_readrminfo(3)

sam_rearch(3)

sam_release(3)

sam_request(3)

sam_restore_copy(3)

sam_restore_file(3)

sam_segment(3)

sam_segment_stat(3)

sam_segment_vsn_stat(3)

sam_set_fs_contig(3)

sam_set_fs_thresh(3)

sam_set_state(3)

sam_setfa(3)

sam_settings(3)

sam_ssum(3)

sam_stage(3)

sam_stat(3)

sam_tplabel(3)

sam_unarchive(3)

sam_undamage(3)

sam_unload(3)

sam_unrearch(3)

sam_vsn_stat(3)

usam_mig_cancel_stage_req(3)

usam_mig_initialize(3)

usam_mig_stage_file_req(3)

4.  Library Functions (Man Pages Section 3X)

5.  File Formats (Man Pages Section 4)

6.  Standards, Environment, and Macros (Man Pages Section 5)

7.  Device and Network Interfaces (Man Pages Section 7)

sam_getcatalog(3)

NAME
     sam_getcatalog,  sam_getcatalogl,  sam_getcataloglv  -  Gets
     catalog entries

SYNOPSIS
     cc [ flag  ... ] file    ...  -L/opt/SUNWsamfs/lib  -lsam  [library ... ]

     #include "/opt/SUNWsamfs/include/catalog.h"

     int sam_getcatalog(int cat_handle,  uint  start_entry,  uint
     end_entry, struct sam_cat_ent *buf, size_t entbufsize);

     int sam_getcatalogl(int cat_handle, uint  start_entry,  uint
     end_entry, struct sam_cat_entl *buf, size_t entbufsize);

     int sam_getcataloglv(int cat_handle, uint start_entry,  uint
     end_entry, struct sam_cat_entlv *buf, size_t entbufsize);

DESCRIPTION
     sam_getcatalog() and  sam_getcatalogl()  are  obsolete,  use
     sam_getcataloglv().

     sam_getcataloglv() obtains a range of entries from the cata-
     log  of  an automated library or the historian.  The catalog
     from  which  entries  will  be  obtained  is  indicated   by
     cat_handle.  cat_handle is similar to a file descriptor, and
     is returned from a previous call to sam_opencat(). The range
     of  entries  is  indicated  by  start_entry  and  end_entry.
     start_entry must be less than or  equal  to  end_entry,  and
     must be in the range of valid slot numbers for the automated
     library (or historian).  buf is a pointer  to  an  array  of
     sam_cat_entlv  structures,  into  which  the  catalog  entry
     information is placed.  This array should be large enough to
     hold  the  number  of  entries requested.  entbufsize is the
     size of a single sam_cat_entlv structure, usually  indicated
     by sizeof(struct sam_cat_entlv).

     The contents of a sam_cat_entlv structure include  the  fol-
     lowing members:

          /* catalog table entry */
          uint_t   status;      /* Catalog entry status */
          char     media[4];    /* Media type */
          char     vsn[32];     /* VSN */
          int      access;      /* Count of accesses */
          uint64_t capacity;    /* Capacity of volume */
          uint64_t space;       /* Space left on volume */
          uint64_t ptoc_fwa;    /* First word address of PTOC */
          int      reserved[3]; /* Reserved space */
          time_t   modification_time;/* Last modification time */
          time_t   mount_time;  /* Last mount time */

          uchar_t  bar_code[BARCODE_LEN + 1];/* Bar code (zero filled) */
          time_t   lvtime;      /* Last verified time */
          uint64_t lvpos;       /* Last verified position */

     The  last  verified  time  and   position   are   valid   if
     CS_DIV(status) is non-zero.

RETURN VALUES
     Upon successful completion the  number  of  catalog  entries
     obtained  is returned.  Otherwise, a value of -1 is returned
     and errno is set to indicate the error.

ERRORS
     sam_getcataloglv() fails if one or more of the following are
     true:

     EBADF               The catalog handle provided is invalid.

     EFAULT              buf is an invalid address.

     EOVERFLOW           The catalog  library  software  returned
                         more information than was requested.

     ENOENT              This is no longer an active catalog.

     EINVAL              The buffer size provided is invalid,  or
                         start_entry  or  end_entry  is  invalid.
                         (Either start_entry is less  than  zero,
                         end_entry  is greater than the number of
                         entries in the catalog,  or  start_entry
                         is greater than end_entry.)

     E2BIG               For sam_getcatalog() only.  The capacity
                         or  space  is larger than UINT_MAX.  Use
                         sam_getcataloglv().

     sam_closecat(3), sam_opencat(3), tpverify(1M).