SLiKZiP - Continuing the evolution of ASE's compression software
Designed by experienced mainframers, SLiKZiP has just the functionality you need for compression and uncompression tasks in production jobstreams.
Topics:
SLiKZiP supports the ZIP compressed dataset format
Found across all platforms, ZIP datasets, more commonly called ZIP files, are increasingly required to be handled on mainframe systems.
(Note that unless otherwise stated, a feature supported by any particular edition of SLiKZiP will be automatically supported by all subsequent editions)
SLiKZiP supports the GZIP compressed dataset format
Found especially in UN*X platforms, GZIP datasets, or files, are often required to be handled on mainframe systems.
SLiKZiP runs as a batch program, accepting input from the PARM= field as well as an optional control statement file.
Control statement files may also be generated by other programs or be stored within libraries and controlled in different ways than PARM field contents.
The control statement file ddname and the control listing file ddname can each be overridden by specifying the CTLDD= or PRTDD= keywords in the PARM field.
When PGM=SLIKZIP is used then ZIP, GZIP or UNZIP must be coded in the PARM field, or in the control statement file.
When PGM=ZIP or PGM=UNZIP is used, the program name itself implies the initial process to be performed:
To select all members of a PDS with names beginning ABC and put them into the ZIP dataset with membernames made up of their PDS membername plus ".DAT" we could specify:
SLiKZiP runs as a TSO line command in READY mode or ISPF option 6
Note: SLIKZIP does not at this stage support the dataset naming conventions for TSO command processors. For the moment all dataset names must be specified in full and without enclosing apostrophes, just like batch operation.
This file will by default be read via ddname SYSIN. To avoid having to type or paste a DEMOKEY statement into the screen each time the command is executed, a current DEMOKEY statement can be saved as a PDS member to which ddname SYSIN is then allocated.
* When installed for formal trial, or when a license agreement has been entered into, a unique key installed within the SLIKZIP program removes the need for a DEMOKEY statement.
SLiKZiP reads and writes sequential and partitioned datasets
SLiKZiP 1.9 will compress data directly to a new ZIP dataset on tape. SLiKZiP cannot read a ZIP file directly from tape. SLiKZiP can read the data to be compressed directly from tape. SLiKZiP can write uncompressed data directly to tape.
SLiKZiP 1.9 supports AES 128/192/256 bit encryption. The PASSWORD(..) option may be used to provide a password of up to 64 characters for compress and uncompress operations. Different passwords may be provided for different members." The AES option used with PASSWORD(..) will cause SLiKZiP to use AES encryption. Passwords up to 31 characters force 128 bit encryption, 32 to 63 characters force 192 bit encryption and a 64 character password will force 256 bit encryption.
see: http://www.winzip.com/aes_info.htm for more on AES.
SLiKZiP also supports the standard PKZIP encryption process. The PASSWORD(..) option may be used to provide a password of up to 64 characters for compress and uncompress operations. Different passwords may be provided for different members.
Note that encryption is not a feature of the GZIP file format. Therefore, SLIKZIP does not support the use of the PASSWORD(..) option when creating, or extracting from, a GZIP dataset.
SLiKZiP 1.4 supports the ZIP file extensions that allow members to be larger than 4GB. To invoke this option simply use the ZIP64 process option.
Note that during an UNCOMPRESS or UNZIP operation, SLiKZiP 1.4 automatically detects that ZIP64 has been used during compression and operates in a compatible way.
SLiKZiP 1.4 supports the alternative compression algorithm known as DEFLATE 64. To invoke this option simply use the DEF64 process option.
Note that during an UNCOMPRESS or UNZIP operation, SLiKZiP 1.4 automatically detects that DEF64 has been used during compression and operates in a compatible way.
SLiKZiP lets you specify your own translate tables in two ways:
SLiKZiP is supported 24x7 by email, web site and telephone every day of the year.
After accepting a very simple no-productive-use condition, triallors may download and install the demo version of SLiKZiP.
Alternatively, you may wish to find out about a more formal trial
ZIP dataset support
SLiKZiP Features when handling ZIP datasets:
GZIP dataset support
SLiKZiP Features when handling GZIP datasets:
Batch operation
//ZIP EXEC PGM=SLIKZIP,
// PARM='ZIP TODS(your.new.zip.dataset) FRDD(IN) TEXT'
//IN DD DISP=SHR,DSN=your.input.sequential.dataset
//SYSPRINT DD SYSOUT=*
//ZIP EXEC PGM=SLIKZIP,PARM='CTLDD=CARDS PRTDD=LIST ZIP'
//IN DD DISP=SHR,DSN=your.input.sequential.dataset
//LIST DD SYSOUT=*
//CARDS DD *
FROMDD IN TEXT
TODS your.new.zip.dataset LF /* just LF, not CRLF
//
//ZIP EXEC PGM=SLIKZIP,
// PARM='ZIP TODS(your.new.zip.dataset) FRDD(IN) TEXT'
//IN DD DISP=SHR,DSN=your.input.sequential.dataset
//SYSPRINT DD SYSOUT=*
//GZIP EXEC PGM=SLIKZIP,
// PARM='GZIP TODS(your.new.gzip.dataset) FRDD(IN) TEXT'
//IN DD DISP=SHR,DSN=your.input.sequential.dataset
//SYSPRINT DD SYSOUT=*
//ZIP EXEC PGM=ZIP,
// PARM='FRDD(IN) TODS(your.new.zip.dataset) TEXT'
//IN DD DISP=SHR,DSN=your.input.sequential.dataset
//SYSPRINT DD SYSOUT=*
//ZIP EXEC PGM=ZIP,
// PARM='FRDD(IN(ABC*.DAT) TODS(your.new.zip.dataset) TEXT'
//IN DD DISP=SHR,DSN=your.input.partitioned.dataset
//SYSPRINT DD SYSOUT=*
//ZIP EXEC PGM=ZIP,REGION=0M,
// PARM='FRDS(USRCFG.SPFLOG*.LIST) TODD(ZIP) TEXT'
//STEPLIB DD DISP=SHR,DSN=ASE.SLIKZIP.LOAD
//ZIP DD DSN=USRCFG.NEWZIP,SPACE=(TRK,(10,10)),UNIT=SYSALLDA,
// DISP=(,CATLG,DELETE),VOL=SER=ASE004,DCB=BLKSIZE=23476
//SYSPRINT DD SYSOUT=*
TSO command line operation
===> ZIP FRDS(your.input.dataset) text tods(your.zip)
===> alloc f(sysin) da(your.pds(demokey)) shr
===> ZIP FRDS(your.input.dataset) text tods(your.zip)
Sequential and Partitioned Datasets
Tape
ZIP encryption support
Support for files > 4GB in size
//ZIP EXEC PGM=ZIP,REGION=0M,
// PARM=('FRDS(USRCFG.SPFLOG*.LIST) TEXT TRMOD(EUROTAB) ',
// 'ZIP64 TODD(ZIP)')
//STEPLIB DD DISP=SHR,DSN=ASE.SLIKZIP.LOAD
//ZIP DD DSN=USRCFG.NEWZIP,SPACE=(TRK,(10,10)),UNIT=3390,
// DISP=(,CATLG,DELETE),VOL=SER=ASE004,DCB=BLKSIZE=23476
//SYSPRINT DD SYSOUT=*
Support for DEFLATE 64 algorithm
//ZIP EXEC PGM=ZIP,REGION=0M,
// PARM=('FRDS(USRCFG.SPFLOG*.LIST) TEXT TRMOD(EUROTAB) ',
// 'DEF64 TODD(ZIP)')
//STEPLIB DD DISP=SHR,DSN=ASE.SLIKZIP.LOAD
//ZIP DD DSN=USRCFG.NEWZIP,SPACE=(TRK,(10,10)),UNIT=3390,
// DISP=(,CATLG,DELETE),VOL=SER=ASE004,DCB=BLKSIZE=23476
//SYSPRINT DD SYSOUT=*
Dynamic Translate Table support
//ZIP EXEC PGM=ZIP,REGION=0M,
// PARM=('FRDS(USRCFG.SPFLOG*.LIST) TEXT TRMOD(EUROTAB) ',
// 'TODD(ZIP)')
//STEPLIB DD DISP=SHR,DSN=ASE.SLIKZIP.LOAD
//ZIP DD DSN=USRCFG.NEWZIP,SPACE=(TRK,(10,10)),UNIT=3390,
// DISP=(,CATLG,DELETE),VOL=SER=ASE004,DCB=BLKSIZE=23476
//SYSPRINT DD SYSOUT=*
//ZIP EXEC PGM=ZIP,REGION=0M
//STEPLIB DD DISP=SHR,DSN=ASE.SLIKZIP.LOAD
//ZIP DD DSN=USRCFG.NEWZIP,SPACE=(TRK,(10,10)),UNIT=3390,
// DISP=(,CATLG,DELETE),VOL=SER=ASE004,DCB=BLKSIZE=23476
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
TRANSTAB EURO_ASCII COPY(ASCII) FOR(ZIP) VERIFY
+43 FE
+9F 80
FRDS USRCFG.SPFLOG*.LIST TEXT TRANSTAB(EURO_ASCII)
TODD ZIP
//
24/7 Support
Anonymous trialling with daily key download