Category : Miscellaneous Language Source Code
Archive   : ZVMS160.ZIP
Filename : VMSZOO.DOC

 
Output of file : VMSZOO.DOC contained in archive : ZVMS160.ZIP
Zoo 1.60 Release A for VAX/VMS
by
Rahul Dhesi

The zoo archiver is used to create and maintain archives containing multiple
files that may be stored in compressed format. Consult the zoo manual for
more details. This document describes those features of VAX/VMS zoo that are
specific to the VAX/VMS implementation.


WARNING -- VMS BUGS

Special features of VAX/VMS cause unusual bahavior.

1. VMS C does not preserve uppercase characters in a command line.
To specify a command containing an uppercase character, enclose
the command in double quotes. For example, the command

zoo aM stuff *

will not work under VMS. To make this command work under VMS,
use double quotes like this:

zoo "aM" stuff *

2. For most text files that are not in stream-LF format, VMS
returns an incorrect file size to zoo. This will be evident
if you use the "f" modifier to tell zoo to archive files without
compression. Files that were in stream-LF format will be
stored with the correct size; other text files will be stored
with an incorrect value for the original size of the file.

When such files are extracted, however, they are extracted in
stream-LF format, which VMS appears to handle correctly. Thus,
so far as I can determine, no file contents are actually lost,
and the only evidence of the problem is that in archive listings,
files stored without compression may still appear to be
compressed by about 1 to 5 percent, or occasionally by some
meaningless value.

3. I have not been able to find a way of making zoo for VMS restore
file timestamps at extraction time. The standard utime() function
seems to be entirely missing in VMS C. One of these days I will
have to see if a direct RMS call will do this, but at the moment,
VMS zoo does not restore timestamps when it extracts files.

4. VAX/VMS uses many different types of file structures. Zoo creates
archives in stream-LF format, and all archives used by zoo in any
way must be in this format. It is dangerous to use zoo on an
archive that is in any other format, because it may permanently
corrupt the archive contents. Thus, if you have uploaded an archive
to a VMS system using Kermit, do not try to manipulate it with zoo
until you have converted it to stream-LF format. File conversion
instructions are given later in this document.

"Again," says the manual, "VMS C adds functionality". The internal working
of zoo has been extensively revised to carefully evade most of this added
functionality. I believe that text files and executable files are currently
correctly handled by zoo. But each version of VMS C seems to have its own
peculiarities, and it is hard to say how future changes in the VMS C compiler
will affect the zoo archiver. I believe I will be able to follow these
changes, and to continue to work around past, present, and future added
functionality in VMS C, but don't bet your life on it.


ARCHIVING SELECTED FILES

Zoo can read filenames from standard input. This allows you to use an
external program to generate a list of files to be archived. When this list
is fed to zoo, it will archive only the selected files.

For this example, assume that files are to be archived in an archive called
"backups.zoo".

To achieve redirection of input under VAX/VMS, the following steps are
necessary:

1. Create a file containing the filenames to be archived. Suppose
this file is called "names.lis".

2. Redirect zoo's standard input thus:

$ define /user_mode SYS$INPUT names.lis

3. Invoke zoo thus:

$ zoo "aI" backups

This command line will cause zoo to read a list of filenames from
its standard input, and archive them into "backups.zoo". Since
the logical name SYS$INPUT was changed to refer to the file
"names.lis", zoo will read filenames from that file.


A good way of creating a list of files to be archived is to use the vms
"directory" command. Include at least the switches shown:

$ directory /noheading /notrailing /column=1 /output=names.lis

This tells VMS to produce a list of filenames, one per line, and to store the
resulting output in the file "names.lis". You can also add additional
selection options. For example, to select all files that have been modified
in the last 12 hours:

$ dir /nohead /notrail /col=1 /out=names.lis /since=-12:00 /modified

A good way to decrease the effort is to create a symbol as follows:

$ select:=="dir/nohead/notrail/col=1/out=names.lis/modified/since="

Now you can archive all *.c files modified in the last 60 minutes by giving
the following commands:

$ select -1:00:00 *.c
$ define/user sys$input names.lis
$ zoo "aI" backups


FILE TRANSFERS WITH KERMIT

Zoo archives can be uploaded to a VAX/VMS system and downloaded from it using
Kermit. Due to VMS limitations, some file conversions must be done to avoid
a corrupted zoo archive.

Zoo always expects zoo archives to be in stream-LF format. However, VAX/VMS
Kermit does not create stream-LF files, and treats them as text files when it
reads them, resulting in corrupted downloads. Thus you must handle Kermit
transfers with care. If the following instructions are carefully followed,
you should be able to transfer zoo archives between a VAX/VMS system and a
microcomputer running Kermit.

KERMIT UPLOADS: To transfer a zoo archive from a microcomputer to a VAX/VMS
system, do the following.

1. Invoke VAX/VMS Kermit as shown below. It will prompt you with
the string "Kermit-32>". Give it a command as shown to tell
it to receive a binary file:

$ kermit
Kermit-32> set file type binary
Kermit-32> set block-check 3
Kermit-32> receive

Note: Do not use the command "set file type fixed". In most
cases it will not work.

The command to set the block-check is optional, but tells
Kermit to use a 16-bit CRC, which is much more reliable
than the default 6-bit CRC. Use this command if your version
of Kermit does not use a 16-bit CRC by default.

2. At this point, VAX/VMS Kermit is waiting for you to send it
a file. Now tell your local Kermit to send the file. On an
MS-DOS system, using MS-Kermit, you would do this by first typing
the local escape sequence to get to the local mode, where
the prompt is "MS-Kermit>", then telling your local Kermit
to send the zoo archive as a binary file. A typical sequence
of commands is:

(type escape sequence to get back to local mode)
MS-Kermit> set eof noctrl-z
MS-Kermit> send stuff.zoo

It is important that your local Kermit send the zoo archive
as a binary file, not a text file. How you do this depends
on your system; on MS-DOS systems it suffices to give say
"set eof noctrl-z".

3. Wait until the Kermit upload is complete. Then tell your local
Kermit to go into terminal mode (usually by giving the command
CONNECT), and exit from VAX/VMS Kermit with the command EXIT).
A typical sequence is:

MS-Kermit> connect
(stuff from MS-Kermit printed...)
(hit carriage return if necessary to get the next prompt)
Kermit-32> exit
$

Now you are back at the VAX/VMS prompt. At this point, you must
convert the uploaded zoo archive, which is currently in binary
format, to stream-LF format so that it can be used by VAX/VMS zoo.
You do this by using the Bilf utility, which can convert
files between binary and stream-LF formats. Give the command:

$ bilf l stuff.zoo

4. After Bilf has done the conversion, you will have a new
generation of stuff.zoo that is in stream-LF format. Now you
can manipulate it normally with VAX/VMS zoo.

DON'T TRY TO USE ZOO TO MANIPULATE AN UPLOADED ARCHIVE WITHOUT
PEFORMING THE CONVERSION TO STREAM-LF FORMAT, ELSE YOU MAY
PERMANENTLY DESTROY ARCHIVE CONTENTS.


KERMIT DOWNLOADS: Before downloading a zoo archive from VAX/VMS to a
microcomputer, you must convert it to binary format. Then use VMS Kermit
normally. A sample sequence is shown.

1. Convert the zoo archive to binary format.

$ bilf b stuff.zoo

2. Invoke VMS Kermit and tell it to send the file.

$ kermit
Kermit-32> set block-check 3
Kermit-32> send stuff.zoo

3. Get back to your local Kermit and tell it to receive a binary
file.

(type escape sequence to get into local mode)
MS-Kermit> set eof noctrl-z
MS-Kermit> receive
(transfer takes place)


FILE TRANSFER SUMMARY

Here are pictorial summaries of the steps involved in performing file
transfers of zoo archives using Kermit.

======================================================================

DOWNLOADS:
files on a VMS
system to be archived
using zoo
|
archive created |
using zoo.exe |
or zoobig.exe |
on a VMS system |
v

zoo archive on VMS bilf b zoo archive on VMS, in
in fixed-length <---------------- in stream-LF format
binary format
|
|
| archive transferred
| from VMS to microcomputer
| using Kermit; receiving
| Kermit must be told this
| is a binary file; sending
| Kermit may need to be told too
|
v
zoo archive
on microcomputer
system

======================================================================

UPLOADS:

zoo archive
on microcomputer
system
|
|
| archive uploaded to VMS using Kermit;
| receiving Kermit on VMS must be given
| command "set file type binary"
| (NOTE: "set file type fixed" will
| usually not work); sending Kermit
| must be told this is a binary file
|
v
zoo archive on VMS, bilf l zoo archive on VMS, in
in variable-length ----------------> in stream-LF format
binary format |
| extract
| normally using
| zoo on VMS
|
v
files extracted from zoo
archive on a VMS system

======================================================================


ENSURING ARCHIVE INTEGRITY

After performing a transfer of a zoo archive using Kermit (and performing any
file conversion necessary for VMS), make it a habit to immediately test the
integrity of the transferred archive with the -test command of zoo,
illustrated for VMS:

$ zoo -test stuff

In addition, also get a listing of the archive contents:

$ zoo -list stuff

If neither command reports an error, it is reasonable to assume that archive
integrity was not harmed by the Kermit transfer.

The -test command tests the integrity of each stored file. The -list command
tests the integrity of the internal archive structure. Both are checked
using separate cyclic redundancy codes, one for each archived file, and one
for each directory entry in the archived. (Actually, the -list command
ignores deleted entries, so if the archive contains any, use the "ld" command
instead.)

WILDCARDS

All implementations of zoo on all systems use the same wildcard characters:
"*" matches any sequence of zero or more characters, and "?" matches any one
character.

ADDING FILES: For specifying directory names when adding files, use the
usual VAX/VMS syntax. Thus, to recursively archive all files in the current
directory and all its subdirectories, the command syntax is:

$ zoo a stuff [...]*

The character range wildcard of the form "c-c" is also available, which will
select all files beginning with the specified character range. For example,

$ zoo a stuff [...]a-d [...]x-z

will archive all files beginning with the characters a through d, and with
the characters x through z, in the current directory and all its
subdirectories.

A side-effect of this is that during addition to archives, dots in filenames
must be explicitly matched. Thus to add all files with an extension of DOC,
you would type:

$ zoo a stuff *.doc

and "*doc" not work. As a special case, a trailing "*.*" in any filename you
specify can always be replaced by just a trailing "*". The safest rule to
follow when adding files is to always specify the dot in each filename.

EXTRACTING FILES: During extraction, both the directory name and the
filename must be specified according to zoo syntax. Thus you could say

$ zoo x stuff [*xyz*]*.doc

to extract all archived files with filenames that match "*.doc" and that
contain the string "xyz" in the directory name. Note that VMS syntax for
selecting directories won't work here:

$ zoo x stuff [...]*.doc ! won't work for extraction

If you do not specify the directory name at all, zoo will only perform the
match against filenames; thus

$ zoo x stuff *.doc

will extract all files matching *.doc regardless of the directory name.

Also note that if you specify extraction of "*.*", as in

$ zoo x stuff *.*

it will result in the extraction of files whose filename contains at least
one dot. Similarly, the command

$ zoo x stuff *_*

will select all filename containing at least one underscore.

To extract all files, specify no filename, e.g.

$ zoo x stuff

or use "*" rather than "*.*".

SAFEST RULE OF THUMB: WHEN SELECTING FILES ON DISK, SPECIFY THE DOT IN EACH
FILENAME; WHEN SELECTING FILES INSIDE A ZOO ARCHIVE, SPECIFY A DOT ONLY IF
YOU NEED ONE. But to select all files, you can always just use "*".

VERSION NUMBERING

Currently VAX/VMS zoo does not store version numbers for files. When support
for multiple versions is added to zoo, support for VMS versions will likely
be also added. At extraction time a new version is always created for an
extracted file. The overwrite option ("O") does not cause overwriting, but
simply suppresses the warning message that zoo normally gives when it finds
that a file about to be extracted already exists.

FILE STRUCTURES

At extraction time, zoo preserves all data bytes in binary files, and stores
all text files as lines of text terminated with linefeeds. The internal file
structure maintained by DEC's RMS is not currently preserved. (Support for
this is planned for the future.) Thus, the following two types of files can
be safely archived and restored:

o All text files, are extracted in stream-LF format. Most VMS
utilities that accept text files will accept such files. The
EDT editor may complain, but will still work.

o VMS executable files, when stored and then extracted, are
extracted in stream-LF format. Such files can be restored to
their original state using Bilf with the "b" option.

HANDLING VMS EXECUTABLE FILES. You can archive an executable program called
"xyz.exe":

$ zoo a stuff xyz.exe
$ delete xyz.exe;*

Now the only copy of xyz.exe is in the archive "stuff.zoo". Extract it:

$ zoo x stuff xyz.exe

The extracted copy of "xyz.exe" is in stream-LF format and VMS may or may not
execute it. Now we convert it back to fixed-length record format thus:

$ bilf b xyz.exe
$ purge xyz.exe

Now "xyz.exe" has been converted to binary format and can be executed. It
should be identical to the original copy of "xyz.exe" that was archived.

TEXT FILES FROM OTHER SYSTEMS. A text file archived on a different computer
system will use either linefeeds, or carriage returns plus linefeeds, as line
terminators. Text files with linfeeds only can be be extracted and used
exactly as if they had been archived on a VAX/VMS system. Text files
containing carriage returns plus linefeeds will, when extracted, contain a
spurious carriage return at the end of each line. This extra carriage return
can be removed using EDT's "substitute" command while in screen mode. Simply
replace all carriage returns with nothing. The VMS C compiler currently
appears to accept trailing carriage returns in files without any trouble.

Text files trasnferred from MS-DOS or CP/M or similar systems may contain a
trailing control Z character. This may cause problems on VMS and should be
edited out with a text editor.


VOOZ IS OBSOLETE

Some months ago I distributed VMS ooz (Vooz), which could list and extract
zoo archives under VAX/VMS. This program should now be considered obsolete.
Vooz requires archives to be in fixed-length record format, while zoo
requires them to be in stream-LF format. Using both on the same system will
lead to needless confusion.

-- Rahul Dhesi 1987/08/01


  3 Responses to “Category : Miscellaneous Language Source Code
Archive   : ZVMS160.ZIP
Filename : VMSZOO.DOC

  1. Very nice! Thank you for this wonderful archive. I wonder why I found it only now. Long live the BBS file archives!

  2. This is so awesome! 😀 I’d be cool if you could download an entire archive of this at once, though.

  3. But one thing that puzzles me is the “mtswslnkmcjklsdlsbdmMICROSOFT” string. There is an article about it here. It is definitely worth a read: http://www.os2museum.com/wp/mtswslnk/