fileinfo.cms
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:10k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. [Quoting from a C/370 manual, courtesy of Carl Forde.]
  2.   C/370 supports three types of input and output: text streams, binary
  3.   streams, and record I/O.  Text and binary streams are both ANSI
  4.   standards; record I/O is a C/370 extension.
  5. [...]
  6.   Record I/O is a C/370 extension to the ANSI standard.  For files
  7.   opened in record format, C/370 reads and writes one record at a
  8.   time.  If you try to write more data to a record than the record
  9.   can hold, the data is truncated.  For record I/O, C/370 only allows
  10.   the use of fread() and fwrite() to read and write to the files.  Any
  11.   other functions (such as fprintf(), fscanf(), getc(), and putc())
  12.   fail.  For record-orientated files, records do not change size when
  13.   you update them.  If the new data has fewer characters than the
  14.   original record, the new data fills the first n characters, where
  15.   n is the number of characters of the new data.  The record will
  16.   remain the same size, and the old characters (those after) n are
  17.   left unchanged.  A subsequent update begins at the next boundary.
  18.   For example, if you have the string "abcdefgh":
  19.   abcdefgh
  20.   and you overwrite it with the string "1234", the record will look
  21.   like this:
  22.   1234efgh
  23.   C/370 record I/O is binary.  That is, it does not interpret any of
  24.   the data in a record file and therefore does not recognize control
  25.   characters.
  26.   The record model consists of:
  27.   * A record, which is the unit of data transmitted to and from a
  28.     program
  29.   * A block, which is the unit of data transmitted to and from a
  30.     device.  Each block may contain one or more records.
  31.   In the record model of I/O, records and blocks have the following
  32.   attributes:
  33.   RECFM   Specifies the format of the data or how the data is organized
  34.           on the physical device.
  35.   LRECL   Specifies the length of logical records (as opposed to
  36.           physical ones).
  37.   BLKSIZE Specifies the length of physical records (blocks on the
  38.           physical device).
  39.   Opening a File by Filename
  40.   The filename that you specify on the call to fopen() or freopen()
  41.   must be in the following format:
  42.   >> ----filename---- ----filetype--------------------
  43.                    |   |             |             |
  44.                    --.--             -- --filemode--
  45.                                      |   |
  46.                                      --.--
  47.   where
  48.   filename is a 1- to 8-character string of any of the characters,
  49.   A-Z, a-z, 0-9, and +, -, $, #, @, :, and _.  You can separate it
  50.   from the filetype with one or more spaces, or with a period.
  51.   [Further note:  filenames are fully case-sensitive, as in Unix.]
  52.   filetype is a 1- to 8-character string of any of the characters,
  53.   A-Z, a-z, 0-9, and +, -, $, #, @, :, and _.  You can separate it
  54.   from the filemode with one or more spaces, or with a period. The
  55.   separator between filetype and filemode must be the same as the
  56.   one between filename and filetype.
  57.   filemode is a 1- to 2-character string.  The first must be any of
  58.   the characters A-Z, a-z, or *.  If you use the asis parameter on
  59.   the fopen() or freopen() call, the first character of the filemode
  60.   must be a capital letter or an asterisk.  Otherwise, the function
  61.   call fails.  The second character of filemode is optional; if you
  62.   specify it, it must be any of the digits 0-6.  You cannot specify
  63.   the second character if you have specified * for the first one.
  64.   If you do not use periods as separators, there is no limit to how
  65.   much whitespace you can have before and after the filename, the
  66.   filetype, and filemode.
  67.   Opening a File without a File Mode Specified
  68.   If you omit the file mode or specify * for it, C/370 does one
  69.   of the following when you call fopen() or freopen():
  70.   * If you have specified a read mode, C/370 looks for the named file
  71.     on all the accessed readable disks, in order.  If it does not find
  72.     the file, the fopen() or freopen() call fails.
  73.   * If you have specified any of the write modes, C/370 writes the file
  74.     on the first writable disk you have accessed.  Specifying a write
  75.     mode on an fopen() or freopen() call that contains the filename of
  76.     an existing file destroys that file.  If you do not have any
  77.     writable disks accessed, the call fails.
  78.   fopen() and freopen() parameters
  79.   recfm
  80.      CMS supports only two RECFMs, V and F.  [note that MVS supports
  81.      27(!) different RECFMs.]  If you do not specify the RECFM for a
  82.      file, C/370 determines whether is is in fixed or variable format.
  83.   lrecl and blksize
  84.      For files in fixed format, CMS allows records to be read and
  85.      written in blocks.  To have a fixed format CMS file treated as a
  86.      fixed blocked CMS file, you can open the file with recfm=fb and
  87.      specify the lrecl and blksize.  If you do not specify a recfm on
  88.      the open, the blksize can be a multiple of the lrecl, and the
  89.      file is treated as if it were blocked.
  90.      For files in variable format, the CMS LRECL is different from the
  91.      LRECL for the record model.  In the record model, the LRECL is
  92.      equal to the data length plus 4 bytes (for the record descriptor
  93.      word), and the BLKSIZE  is equal to the LRECL plus 4 bytes (for
  94.      the block descriptor word).  In CMS, BDWs and RDWs do not exist,
  95.      but because CMS follows the record model, you must still account
  96.      for them.  When you specify V, you must still allocate the record
  97.      descriptor word and block descriptor word.  That is, if you want
  98.      a maximum of n bytes per record, you must specify a minimum LRECL
  99.      of n+4 and a minimum BLKSIZE of n+8.
  100.      When you are appending to V files, you can enlarge the record size
  101.      dynamically, but only if you have not specified LRECL or BLKSIZE
  102.      on the fopen() or freopen() command that opened the file.
  103.   type
  104.      If you specify this parameter, the only valid value for CMS disk
  105.      files is type =record. This opens a file for record I/O.
  106.   asis
  107.      If you use this parameter, you can open files with mixed-case
  108.      filenames such as JaMeS dAtA or pErCy.FILE.  If you specify this
  109.      parameter, the file mode that you specify must be a capital letter
  110.      (if it is not an asterisk); otherwise; the function call fails and
  111.      the value returned is NULL.
  112.   Reading from Record I/O Files
  113.      fread() is the only interface allowed for reading record I/O files.
  114.      Each time you call fread() for a record I/O file, fread() reads
  115.      one record from the system.  If you call fread() with a request for
  116.      less than a complete record, the requested bytes are copied to your
  117.      buffer, and the file position is set to the start fo the next
  118.      record.  If the request is for more bytes that are in the record,
  119.      one record is read and the position is set to the start of the next
  120.      record.  C/370 does not strip any blank characters or interpret any
  121.      data.
  122.      fread() returns the number of items read successfully, so if you
  123.      pass a size argument equal to 1 and a count argument equal to the
  124.      maximum expected length of the record, fread() returns the length,
  125.      in bytes, of the record read.  If you pass a size argument equal
  126.      to the maximum expected length of the record, and a count argument
  127.      equal to 1, fread() returns either 0 or 1, indicating whether a
  128.      record of length size read.  If a record is read successfully but
  129.      is less than size bytes long, fread() returns 0.
  130.   Writing to Record I/O Files
  131.      fwrite() is the only interface allowed for writing to a file
  132.      opened for record I/O.  Only one record is written at a time.  If
  133.      you attempt to write more new data than a full record can hold or
  134.      try to update a record with more data than it currently has, C/370
  135.      truncates your output at the record boundary.  When C/370 performs
  136.      a truncation, it sets errno and raises SIGIOERR, if SIGIOERR is not
  137.      set to SIG_IGN.
  138.      When you are writing new records to a fixed-record I/O file, if you
  139.      try to write a short record, C/370 pads the record with nulls out
  140.      to LRECL.
  141.      At the completion of an fwrite(), the file position is at the start
  142.      of the next record.  For new data, the block is flushed out to the
  143.      system as soon as it is full.
  144.   fldata() Behavior
  145.      When you call the fldata() function for an open CMS minidisk file,
  146.      it returns a data structure that looks like this:
  147.      struct __filedata {
  148.           unsigned int   __recfmF      : 1, /* fixed length records */
  149.                          __recfmV      : 1, /* variable length records */
  150.                          __recfmU      : 1, /* n/a */
  151.                          __recfmS      : 1, /* n/a */
  152.                          __recfmBlk    : 1, /* n/a */
  153.                          __recfmASA    : 1, /* text mode and ASA */
  154.                          __recfmM      : 1, /* n/a */
  155.                          __dsorgPO     : 1, /* n/a */
  156.                          __dsorgPDSmem : 1, /* n/a */
  157.                          __dsorgPDSdir : 1, /* n/a */
  158.                          __dsorgPS     : 1, /* sequential data set */
  159.                          __dsorgConcat : 1, /* n/a */
  160.                          __dsorgMem    : 1, /* n/a */
  161.                          __dsorgHiper  : 1, /* n/a */
  162.                          __dsorgTemp   : 1, /* created with tmpfile() */
  163.                          __dsorgVSAM   : 1, /* n/a */
  164.                          __reserve1    : 1, /* n/a */
  165.                          __openmode    : 2, /* see below 1 */
  166.                          __modeflag    : 4, /* see below 2 */
  167.                          __reserve2    : 9, /* n/a */
  168.           char           __device;  __DISK
  169.           unsigned long  __blksize,         /* see below 3 */
  170.                          __maxreclen;       /* see below 4 */
  171.           unsigned short __vsamtype;        /* n/a */
  172.           unsigned long  __vsamkeylen;      /* n/a */
  173.           unsigned long  __vsamRKP;         /* n/a */
  174.           char *         __dsname;          /* fname ftype fmode */
  175.           unsigned int   __reserve4;        /* n/a */
  176.           /* note 1: values are: __TEXT, __BINARY, __RECORD
  177.              note 2: values are: __READ, __WRITE, __APPEND, __UPDATE
  178.                      these values can be added together to determine
  179.                      the return value; for example, a file opened with
  180.                      a+ will have the value __READ + __APPEND.
  181.              note 3: total block size of the file, including ASA
  182.                      characters as well as RDW information
  183.              note 4: maximum record length of the data only (includes
  184.                      ASA characters but excludes RDW information).
  185.           */
  186.        };