home *** CD-ROM | disk | FTP | other *** search
/ Netrunner 2004 October / NETRUNNER0410.ISO / regular / ActivePerl-5.8.4.810-MSWin32-x86.msi / _e45fdd5872931e3c1a06a49cf9bb9e7a < prev    next >
Encoding:
Text File  |  2004-06-01  |  40.0 KB  |  1,511 lines

  1.  
  2. =head1 NAME
  3.  
  4.  
  5. Archive::Zip - Provide an interface to ZIP archive files.
  6.  
  7. =head1 SYNOPSIS
  8.  
  9.  
  10.    use Archive::Zip qw( :ERROR_CODES :CONSTANTS );
  11.    my $zip = Archive::Zip->new();
  12.    my $member = $zip->addDirectory( 'dirname/' );
  13.    $member = $zip->addString( 'This is a test', 'stringMember.txt' );
  14.    $member->desiredCompressionMethod( COMPRESSION_DEFLATED );
  15.    $member = $zip->addFile( 'xyz.pl', 'AnotherName.pl' );
  16.    die 'write error' unless $zip->writeToFileNamed( 'someZip.zip' ) == AZ_OK;
  17.    $zip = Archive::Zip->new();
  18.    die 'read error' unless $zip->read( 'someZip.zip' ) == AZ_OK;
  19.    $member = $zip->memberNamed( 'stringMember.txt' );
  20.    $member->desiredCompressionMethod( COMPRESSION_STORED );
  21.    die 'write error' unless $zip->writeToFileNamed( 'someOtherZip.zip' ) == AZ_OK;
  22.  
  23. =head1 DESCRIPTION
  24.  
  25.  
  26. The Archive::Zip module allows a Perl program to create, manipulate, read,
  27. and write Zip archive files. Zip archives can be created, or you can read
  28. from existing zip files. Once created, they can be written to files, streams,
  29. or strings. Members can be added, removed, extracted, replaced, rearranged,
  30. and enumerated. They can also be renamed or have their dates, comments, or
  31. other attributes queried or modified. Their data can be compressed or
  32. uncompressed as needed. Members can be created from members in existing Zip
  33. files, or from existing directories, files, or strings. This module uses the
  34. L<Compress::Zlib|Compress::Zlib> library to read and write the compressed
  35. streams inside the files.
  36.  
  37. =head1 FILE NAMING
  38.  
  39.  
  40. Regardless of what your local file system uses for file naming, names in a
  41. Zip file are in Unix format (I<forward> slashes (/) separating directory
  42. names, etc.).
  43. C<Archive::Zip> tries to be consistent with file naming
  44. conventions, and will
  45. translate back and forth between native and Zip file names.
  46. However, it can't guess which format names are in. So two rules control what
  47. kind of file name you must pass various routines:
  48.  
  49. =over 4
  50.  
  51. =item Names of files are in local format.
  52.  
  53.  
  54.  
  55. C<File::Spec> and C<File::Basename> are used for various file
  56. operations. When you're referring to a file on your system, use its
  57. file naming conventions.
  58.  
  59. =item Names of archive members are in Unix format.
  60.  
  61.  
  62.  
  63. This applies to every method that refers to an archive member, or
  64. provides a name for new archive members. The C<extract()> methods
  65. that can take one or two names will convert from local to zip names
  66. if you call them with a single name.
  67.  
  68. =back
  69.  
  70. =head1 OBJECT MODEL
  71.  
  72.  
  73. =head2 Overview
  74.  
  75.  
  76. Archive::Zip::Archive objects are what you ordinarily deal with.
  77. These maintain the structure of a zip file, without necessarily
  78. holding data. When a zip is read from a disk file, the (possibly
  79. compressed) data still lives in the file, not in memory. Archive
  80. members hold information about the individual members, but not
  81. (usually) the actual member data. When the zip is written to a
  82. (different) file, the member data is compressed or copied as needed.
  83. It is possible to make archive members whose data is held in a string
  84. in memory, but this is not done when a zip file is read. Directory
  85. members don't have any data.
  86.  
  87. =head2 Inheritance
  88.  
  89.  
  90.   Exporter
  91.    Archive::Zip                            Common base class, has defs.
  92.        Archive::Zip::Archive               A Zip archive.
  93.        Archive::Zip::Member                Abstract superclass for all members.
  94.            Archive::Zip::StringMember      Member made from a string
  95.            Archive::Zip::FileMember        Member made from an external file
  96.                Archive::Zip::ZipFileMember Member that lives in a zip file
  97.                Archive::Zip::NewFileMember Member whose data is in a file
  98.            Archive::Zip::DirectoryMember   Member that is a directory
  99.  
  100. =head1 EXPORTS
  101.  
  102.  
  103. =over 4
  104.  
  105. =item :CONSTANTS
  106.  
  107.  
  108.  
  109. Exports the following constants: FA_MSDOS FA_UNIX GPBF_ENCRYPTED_MASK
  110. GPBF_DEFLATING_COMPRESSION_MASK GPBF_HAS_DATA_DESCRIPTOR_MASK
  111. COMPRESSION_STORED COMPRESSION_DEFLATED IFA_TEXT_FILE_MASK
  112. IFA_TEXT_FILE IFA_BINARY_FILE COMPRESSION_LEVEL_NONE
  113. COMPRESSION_LEVEL_DEFAULT COMPRESSION_LEVEL_FASTEST
  114. COMPRESSION_LEVEL_BEST_COMPRESSION
  115.  
  116. =item :MISC_CONSTANTS
  117.  
  118.  
  119.  
  120. Exports the following constants (only necessary for extending the
  121. module): FA_AMIGA FA_VAX_VMS FA_VM_CMS FA_ATARI_ST FA_OS2_HPFS
  122. FA_MACINTOSH FA_Z_SYSTEM FA_CPM FA_WINDOWS_NTFS
  123. GPBF_IMPLODING_8K_SLIDING_DICTIONARY_MASK
  124. GPBF_IMPLODING_3_SHANNON_FANO_TREES_MASK
  125. GPBF_IS_COMPRESSED_PATCHED_DATA_MASK COMPRESSION_SHRUNK
  126. DEFLATING_COMPRESSION_NORMAL DEFLATING_COMPRESSION_MAXIMUM
  127. DEFLATING_COMPRESSION_FAST DEFLATING_COMPRESSION_SUPER_FAST
  128. COMPRESSION_REDUCED_1 COMPRESSION_REDUCED_2 COMPRESSION_REDUCED_3
  129. COMPRESSION_REDUCED_4 COMPRESSION_IMPLODED COMPRESSION_TOKENIZED
  130. COMPRESSION_DEFLATED_ENHANCED
  131. COMPRESSION_PKWARE_DATA_COMPRESSION_LIBRARY_IMPLODED
  132.  
  133. =item :ERROR_CODES
  134.  
  135.  
  136.  
  137. Explained below. Returned from most methods. AZ_OK AZ_STREAM_END
  138. AZ_ERROR AZ_FORMAT_ERROR AZ_IO_ERROR
  139.  
  140. =back
  141.  
  142. =head1 ERROR CODES
  143.  
  144.  
  145. Many of the methods in Archive::Zip return error codes. These are implemented
  146. as inline subroutines, using the C<use constant> pragma. They can be imported
  147. into your namespace using the C<:ERROR_CODES> tag:
  148.  
  149.   use Archive::Zip qw( :ERROR_CODES );
  150.   ...
  151.   die "whoops!" unless $zip->read( 'myfile.zip' ) == AZ_OK;
  152.  
  153. =over 4
  154.  
  155. =item AZ_OK (0)
  156.  
  157.  
  158.  
  159. Everything is fine.
  160.  
  161. =item AZ_STREAM_END (1)
  162.  
  163.  
  164.  
  165. The read stream (or central directory) ended normally.
  166.  
  167. =item AZ_ERROR (2)
  168.  
  169.  
  170.  
  171. There was some generic kind of error.
  172.  
  173. =item AZ_FORMAT_ERROR (3)
  174.  
  175.  
  176.  
  177. There is a format error in a ZIP file being read.
  178.  
  179. =item AZ_IO_ERROR (4)
  180.  
  181.  
  182.  
  183. There was an IO error.
  184.  
  185. =back
  186.  
  187. =head1 COMPRESSION
  188.  
  189.  
  190. Archive::Zip allows each member of a ZIP file to be compressed (using the
  191. Deflate algorithm) or uncompressed. Other compression algorithms that some
  192. versions of ZIP have been able to produce are not supported. Each member has
  193. two compression methods: the one it's stored as (this is always
  194. COMPRESSION_STORED for string and external file members), and the one you
  195. desire for the member in the zip file. These can be different, of course, so
  196. you can make a zip member that is not compressed out of one that is, and vice
  197. versa. You can inquire about the current compression and set the desired
  198. compression method:
  199.  
  200.   my $member = $zip->memberNamed( 'xyz.txt' );
  201.   $member->compressionMethod();    # return current compression
  202.   # set to read uncompressed
  203.   $member->desiredCompressionMethod( COMPRESSION_STORED );
  204.   # set to read compressed
  205.   $member->desiredCompressionMethod( COMPRESSION_DEFLATED );
  206.  
  207. There are two different compression methods:
  208.  
  209. =over 4
  210.  
  211. =item COMPRESSION_STORED
  212.  
  213.  
  214.  
  215. file is stored (no compression)
  216.  
  217. =item COMPRESSION_DEFLATED
  218.  
  219.  
  220.  
  221. file is Deflated
  222.  
  223. =back
  224.  
  225. =head2 Compression Levels
  226.  
  227.  
  228. If a member's desiredCompressionMethod is COMPRESSION_DEFLATED, you
  229. can choose different compression levels. This choice may affect the
  230. speed of compression and decompression, as well as the size of the
  231. compressed member data.
  232.  
  233.   $member->desiredCompressionLevel( 9 );
  234.  
  235. The levels given can be:
  236.  
  237. =over 4
  238.  
  239. =item 0 or COMPRESSION_LEVEL_NONE
  240.  
  241.  
  242.  
  243. This is the same as saying
  244.  
  245.   $member->desiredCompressionMethod( COMPRESSION_STORED );
  246.  
  247. =item 1 .. 9
  248.  
  249.  
  250.  
  251. 1 gives the best speed and worst compression, and 9 gives the
  252. best compression and worst speed.
  253.  
  254. =item COMPRESSION_LEVEL_FASTEST
  255.  
  256.  
  257.  
  258. This is a synonym for level 1.
  259.  
  260. =item COMPRESSION_LEVEL_BEST_COMPRESSION
  261.  
  262.  
  263.  
  264. This is a synonym for level 9.
  265.  
  266. =item COMPRESSION_LEVEL_DEFAULT
  267.  
  268.  
  269.  
  270. This gives a good compromise between speed and compression,
  271. and is currently equivalent to 6 (this is in the zlib code).
  272. This is the level that will be used if not specified.
  273.  
  274. =back
  275.  
  276. =head1 Archive::Zip methods
  277.  
  278.  
  279. The Archive::Zip class (and its invisible subclass Archive::Zip::Archive)
  280. implement generic zip file functionality. Creating a new Archive::Zip object
  281. actually makes an Archive::Zip::Archive object, but you don't have to worry
  282. about this unless you're subclassing.
  283.  
  284. =head2 Constructor
  285.  
  286.  
  287. =over 4
  288.  
  289. =item new( [$fileName] )
  290.  
  291.  
  292.  
  293. Make a new, empty zip archive.
  294.  
  295.     my $zip = Archive::Zip->new();
  296.  
  297. If an additional argument is passed, new() will call read()
  298. to read the contents of an archive:
  299.  
  300.     my $zip = Archive::Zip->new( 'xyz.zip' );
  301.  
  302. If a filename argument is passed and the read fails for any
  303. reason, new will return undef. For this reason, it may be
  304. better to call read separately.
  305.  
  306. =back
  307.  
  308. =head2 Zip Archive Utility Methods
  309.  
  310.  
  311. These Archive::Zip methods may be called as functions or as object
  312. methods. Do not call them as class methods:
  313.  
  314.     $zip = Archive::Zip->new();
  315.     $crc = Archive::Zip::computeCRC32( 'ghijkl' );    # OK
  316.     $crc = $zip->computeCRC32( 'ghijkl' );            # also OK
  317.     $crc = Archive::Zip->computeCRC32( 'ghijkl' );    # NOT OK
  318.  
  319. =over 4
  320.  
  321. =item Archive::Zip::computeCRC32( $string [, $crc] )
  322.  
  323.  
  324.  
  325. This is a utility function that uses the Compress::Zlib CRC
  326. routine to compute a CRC-32. You can get the CRC of a string:
  327.  
  328.     $crc = Archive::Zip::computeCRC32( $string );
  329.  
  330. Or you can compute the running CRC:
  331.  
  332.     $crc = 0;
  333.     $crc = Archive::Zip::computeCRC32( 'abcdef', $crc );
  334.     $crc = Archive::Zip::computeCRC32( 'ghijkl', $crc );
  335.  
  336. =item Archive::Zip::setChunkSize( $number )
  337.  
  338.  
  339.  
  340. Report or change chunk size used for reading and writing.
  341. Currently, this defaults to 32K. This also changes the chunk
  342. size used for Compress::Zlib. You must call setChunkSize()
  343. before reading or writing. This is not exportable, so you
  344. must call it like:
  345.  
  346.     Archive::Zip::setChunkSize( 4096 );
  347.  
  348. or as a method on a zip (though this is a global setting).
  349. Returns old chunk size.
  350.  
  351. =item Archive::Zip::chunkSize()
  352.  
  353.  
  354.  
  355. Returns the current chunk size:
  356.  
  357.     my $chunkSize = Archive::Zip::chunkSize();
  358.  
  359. =item Archive::Zip::setErrorHandler( \&subroutine )
  360.  
  361.  
  362.  
  363. Change the subroutine called with error strings. This
  364. defaults to \&Carp::carp, but you may want to change it to
  365. get the error strings. This is not exportable, so you must
  366. call it like:
  367.  
  368.     Archive::Zip::setErrorHandler( \&myErrorHandler );
  369.  
  370. If no error handler is passed, resets handler to default.
  371. Returns old error handler. Note that if you call Carp::carp
  372. or a similar routine or if you're chaining to the default
  373. error handler from your error handler, you may want to
  374. increment the number of caller levels that are skipped (do
  375. not just set it to a number):
  376.  
  377.     $Carp::CarpLevel++;
  378.  
  379. =item Archive::Zip::tempName( [$tmpdir] )
  380.  
  381.  
  382.  
  383. Create a unique name for a temp file, in the given directory
  384. or in the first one of:
  385.  
  386.     /tmp
  387.     $ENV{TMPDIR}
  388.     $ENV{TEMP}
  389.     .
  390.  
  391. =item Archive::Zip::tempFile( [$tmpdir] )
  392.  
  393.  
  394.  
  395. Create a uniquely named temp file. It will be returned open
  396. for read/write. If C<$tmpdir> is given, it is used as the
  397. name of a directory to create the file in. If not given,
  398. creates the file in the first directory found in this list:
  399.  
  400.     /tmp
  401.     $ENV{TMPDIR}
  402.     $ENV{TEMP}
  403.     .
  404.  
  405. Will create C<$tmpdir> if it doesn't exist; will C<die> if it
  406. can't create the directory. Returns file handle and name:
  407.  
  408.     my ($fh, $name) = Archive::Zip::tempFile();
  409.     my ($fh, $name) = Archive::Zip::tempFile('myTempDir');
  410.     my $fh = Archive::Zip::tempFile();  # if you don't need the name
  411.  
  412. =back
  413.  
  414. =head2 Zip Archive Accessors
  415.  
  416.  
  417. =over 4
  418.  
  419. =item members()
  420.  
  421.  
  422.  
  423. Return a copy of the members array
  424.  
  425.     my @members = $zip->members();
  426.  
  427. =item numberOfMembers()
  428.  
  429.  
  430.  
  431. Return the number of members I have
  432.  
  433. =item memberNames()
  434.  
  435.  
  436.  
  437. Return a list of the (internal) file names of the zip members
  438.  
  439. =item memberNamed( $string )
  440.  
  441.  
  442.  
  443. Return ref to member whose filename equals given filename or
  444. undef. C<$string> must be in Zip (Unix) filename format.
  445.  
  446. =item membersMatching( $regex )
  447.  
  448.  
  449.  
  450. Return array of members whose filenames match given regular
  451. expression in list context. Returns number of matching
  452. members in scalar context.
  453.  
  454.     my @textFileMembers = $zip->membersMatching( '.*\.txt' );
  455.     # or
  456.     my $numberOfTextFiles = $zip->membersMatching( '.*\.txt' );
  457.  
  458. =item diskNumber()
  459.  
  460.  
  461.  
  462. Return the disk that I start on. Not used for writing zips,
  463. but might be interesting if you read a zip in. This should be
  464. 0, as Archive::Zip does not handle multi-volume archives.
  465.  
  466. =item diskNumberWithStartOfCentralDirectory()
  467.  
  468.  
  469.  
  470. Return the disk number that holds the beginning of the
  471. central directory. Not used for writing zips, but might be
  472. interesting if you read a zip in. This should be 0, as
  473. Archive::Zip does not handle multi-volume archives.
  474.  
  475. =item numberOfCentralDirectoriesOnThisDisk()
  476.  
  477.  
  478.  
  479. Return the number of CD structures on this disk. Not used for
  480. writing zips, but might be interesting if you read a zip in.
  481.  
  482. =item numberOfCentralDirectories()
  483.  
  484.  
  485.  
  486. Return the number of CD structures in the whole zip. Not used
  487. for writing zips, but might be interesting if you read a zip
  488. in.
  489.  
  490. =item centralDirectorySize()
  491.  
  492.  
  493.  
  494. Returns central directory size, as read from an external zip
  495. file. Not used for writing zips, but might be interesting if
  496. you read a zip in.
  497.  
  498. =item centralDirectoryOffsetWRTStartingDiskNumber()
  499.  
  500.  
  501.  
  502. Returns the offset into the zip file where the CD begins. Not
  503. used for writing zips, but might be interesting if you read a
  504. zip in.
  505.  
  506. =item zipfileComment( [$string] )
  507.  
  508.  
  509.  
  510. Get or set the zipfile comment. Returns the old comment.
  511.  
  512.     print $zip->zipfileComment();
  513.     $zip->zipfileComment( 'New Comment' );
  514.  
  515. =item eocdOffset()
  516.  
  517.  
  518.  
  519. Returns the (unexpected) number of bytes between where the
  520. EOCD was found and where it expected to be. This is normally
  521. 0, but would be positive if something (a virus, perhaps) had
  522. added bytes somewhere before the EOCD. Not used for writing
  523. zips, but might be interesting if you read a zip in. Here is
  524. an example of how you can diagnose this:
  525.  
  526.   my $zip = Archive::Zip->new('somefile.zip');
  527.   if ($zip->eocdOffset())
  528.   {
  529.     warn "A virus has added ", $zip->eocdOffset, " bytes of garbage\n";
  530.   }
  531.  
  532. =item fileName()
  533.  
  534.  
  535.  
  536. Returns the name of the file last read from. If nothing has
  537. been read yet, returns an empty string; if read from a file
  538. handle, returns the handle in string form.
  539.  
  540. =back
  541.  
  542. =head2 Zip Archive Member Operations
  543.  
  544.  
  545. Various operations on a zip file modify members. When a member is
  546. passed as an argument, you can either use a reference to the member
  547. itself, or the name of a member. Of course, using the name requires
  548. that names be unique within a zip (this is not enforced).
  549.  
  550. =over 4
  551.  
  552. =item removeMember( $memberOrName )
  553.  
  554.  
  555.  
  556. Remove and return the given member, or match its name and
  557. remove it. Returns undef if member name doesn't exist in this
  558. Zip. No-op if member does not belong to this zip.
  559.  
  560. =item replaceMember( $memberOrName, $newMember )
  561.  
  562.  
  563.  
  564. Remove and return the given member, or match its name and
  565. remove it. Replace with new member. Returns undef if member
  566. name doesn't exist in this Zip.
  567.  
  568.     my $member1 = $zip->removeMember( 'xyz' );
  569.     my $member2 = $zip->replaceMember( 'abc', $member1 );
  570.     # now, $member2 (named 'abc') is not in $zip,
  571.     # and $member1 (named 'xyz') is, having taken $member2's place.
  572.  
  573. =item extractMember( $memberOrName [, $extractedName ] )
  574.  
  575.  
  576.  
  577. Extract the given member, or match its name and extract it.
  578. Returns undef if member doesn't exist in this Zip. If
  579. optional second arg is given, use it as the name of the
  580. extracted member. Otherwise, the internal filename of the
  581. member is used as the name of the extracted file or
  582. directory.
  583. If you pass C<$extractedName>, it should be in the local file
  584. system's format.
  585. All necessary directories will be created. Returns C<AZ_OK>
  586. on success.
  587.  
  588. =item extractMemberWithoutPaths( $memberOrName [, $extractedName ] )
  589.  
  590.  
  591.  
  592. Extract the given member, or match its name and extract it.
  593. Does not use path information (extracts into the current
  594. directory). Returns undef if member doesn't exist in this
  595. Zip.
  596. If optional second arg is given, use it as the name of the
  597. extracted member (its paths will be deleted too). Otherwise,
  598. the internal filename of the member (minus paths) is used as
  599. the name of the extracted file or directory. Returns C<AZ_OK>
  600. on success.
  601.  
  602. =item addMember( $member )
  603.  
  604.  
  605.  
  606. Append a member (possibly from another zip file) to the zip
  607. file. Returns the new member. Generally, you will use
  608. addFile(), addDirectory(), addFileOrDirectory(), addString(),
  609. or read() to add members.
  610.  
  611.     # Move member named 'abc' to end of zip:
  612.     my $member = $zip->removeMember( 'abc' );
  613.     $zip->addMember( $member );
  614.  
  615. =item addFile( $fileName [, $newName ] )
  616.  
  617.  
  618.  
  619. Append a member whose data comes from an external file,
  620. returning the member or undef. The member will have its file
  621. name set to the name of the external file, and its
  622. desiredCompressionMethod set to COMPRESSION_DEFLATED. The
  623. file attributes and last modification time will be set from
  624. the file.
  625. If the name given does not represent a readable plain file or
  626. symbolic link, undef will be returned. C<$fileName> must be
  627. in the format required for the local file system.
  628. The optional C<$newName> argument sets the internal file name
  629. to something different than the given $fileName. C<$newName>,
  630. if given, must be in Zip name format (i.e. Unix).
  631. The text mode bit will be set if the contents appears to be
  632. text (as returned by the C<-T> perl operator).
  633.  
  634.  
  635. I<NOTE> that you shouldn't (generally) use absolute path names
  636. in zip member names, as this will cause problems with some zip
  637. tools as well as introduce a security hole and make the zip
  638. harder to use.
  639.  
  640. =item addDirectory( $directoryName [, $fileName ] )
  641.  
  642.  
  643.  
  644. Append a member created from the given directory name. The
  645. directory name does not have to name an existing directory.
  646. If the named directory exists, the file modification time and
  647. permissions are set from the existing directory, otherwise
  648. they are set to now and permissive default permissions.
  649. C<$directoryName> must be in local file system format.
  650. The optional second argument sets the name of the archive
  651. member (which defaults to C<$directoryName>). If given, it
  652. must be in Zip (Unix) format.
  653. Returns the new member.
  654.  
  655. =item addFileOrDirectory( $name [, $newName ] )
  656.  
  657.  
  658.  
  659. Append a member from the file or directory named $name. If
  660. $newName is given, use it for the name of the new member.
  661. Will add or remove trailing slashes from $newName as needed.
  662. C<$name> must be in local file system format.
  663. The optional second argument sets the name of the archive
  664. member (which defaults to C<$name>). If given, it must be in
  665. Zip (Unix) format.
  666.  
  667. =item addString( $stringOrStringRef [, $name] )
  668.  
  669.  
  670.  
  671. Append a member created from the given string or string
  672. reference. The name is given by the optional second argument.
  673. Returns the new member. The last modification time will be
  674. set to now, and the file attributes will be set to permissive
  675. defaults.
  676.  
  677.     my $member = $zip->addString( 'This is a test', 'test.txt' );
  678.  
  679. =item contents( $memberOrMemberName [, $newContents ] )
  680.  
  681.  
  682.  
  683. Returns the uncompressed data for a particular member, or
  684. undef.
  685.  
  686.     print "xyz.txt contains " . $zip->contents( 'xyz.txt' );
  687.  
  688. Also can change the contents of a member:
  689.  
  690.     $zip->contents( 'xyz.txt', 'This is the new contents' );
  691.  
  692. =back
  693.  
  694. =head2 Zip Archive I/O operations
  695.  
  696.  
  697. A Zip archive can be written to a file or file handle, or read from
  698. one.
  699.  
  700. =over 4
  701.  
  702. =item writeToFileNamed( $fileName )
  703.  
  704.  
  705.  
  706. Write a zip archive to named file. Returns C<AZ_OK> on
  707. success.
  708.  
  709.     my $status = $zip->writeToFileNamed( 'xx.zip' );
  710.     die "error somewhere" if $status != AZ_OK;
  711.  
  712. Note that if you use the same name as an existing zip file
  713. that you read in, you will clobber ZipFileMembers. So
  714. instead, write to a different file name, then delete the
  715. original.
  716. If you use the overwrite() or overwriteAs() methods, you can
  717. re-write the original zip in this way.
  718. C<$fileName> should be a valid file name on your system.
  719.  
  720. =item writeToFileHandle( $fileHandle [, $seekable] )
  721.  
  722.  
  723.  
  724. Write a zip archive to a file handle. Return AZ_OK on
  725. success. The optional second arg tells whether or not to try
  726. to seek backwards to re-write headers. If not provided, it is
  727. set if the Perl C<-f> test returns true. This could fail on
  728. some operating systems, though.
  729.  
  730.     my $fh = IO::File->new( 'someFile.zip', 'w' );
  731.     if ( $zip->writeToFileHandle( $fh ) != AZ_OK)
  732.         {
  733.             # error handling
  734.         }
  735.  
  736. If you pass a file handle that is not seekable (like if
  737. you're writing to a pipe or a socket), pass a false second
  738. argument:
  739.  
  740.     my $fh = IO::File->new( '| cat > somefile.zip', 'w' );
  741.     $zip->writeToFileHandle( $fh, 0 );   # fh is not seekable
  742.  
  743. If this method fails during the write of a member, that
  744. member and all following it will return false from
  745. C<wasWritten()>. See writeCentralDirectory() for a way to
  746. deal with this.
  747. If you want, you can write data to the file handle before
  748. passing it to writeToFileHandle(); this could be used (for
  749. instance) for making self-extracting archives. However, this
  750. only works reliably when writing to a real file (as opposed
  751. to STDOUT or some other possible non-file).
  752. See examples/selfex.pl for how to write a self-extracting
  753. archive.
  754.  
  755. =item writeCentralDirectory( $fileHandle [, $offset ] )
  756.  
  757.  
  758.  
  759. Writes the central directory structure to the given file
  760. handle. Returns AZ_OK on success. If given an $offset, will
  761. seek to that point before writing. This can be used for
  762. recovery in cases where writeToFileHandle or writeToFileNamed
  763. returns an IO error because of running out of space on the
  764. destination file. You can truncate the zip by seeking
  765. backwards and then writing the directory:
  766.  
  767.     my $fh = IO::File->new( 'someFile.zip', 'w' );
  768.         my $retval = $zip->writeToFileHandle( $fh );
  769.     if ( $retval == AZ_IO_ERROR )
  770.         {
  771.             my @unwritten = grep { not $_->wasWritten() } $zip->members();
  772.             if (@unwritten)
  773.             {
  774.                 $zip->removeMember( $member ) foreach my $member ( @unwritten );
  775.                 $zip->writeCentralDirectory( $fh,
  776.                     $unwritten[0]->writeLocalHeaderRelativeOffset());
  777.             }
  778.         }
  779.  
  780. =item overwriteAs( $newName )
  781.  
  782.  
  783.  
  784. Write the zip to the specified file, as safely as possible.
  785. This is done by first writing to a temp file, then renaming
  786. the original if it exists, then renaming the temp file, then
  787. deleting the renamed original if it exists. Returns AZ_OK if
  788. successful.
  789.  
  790. =item overwrite()
  791.  
  792.  
  793.  
  794. Write back to the original zip file. See overwriteAs() above.
  795. If the zip was not ever read from a file, this generates an
  796. error.
  797.  
  798. =item read( $fileName )
  799.  
  800.  
  801.  
  802. Read zipfile headers from a zip file, appending new members.
  803. Returns C<AZ_OK> or error code.
  804.  
  805.     my $zipFile = Archive::Zip->new();
  806.     my $status = $zipFile->read( '/some/FileName.zip' );
  807.  
  808. =item readFromFileHandle( $fileHandle, $filename )
  809.  
  810.  
  811.  
  812. Read zipfile headers from an already-opened file handle,
  813. appending new members. Does not close the file handle.
  814. Returns C<AZ_OK> or error code. Note that this requires a
  815. seekable file handle; reading from a stream is not yet
  816. supported.
  817.  
  818.     my $fh = IO::File->new( '/some/FileName.zip', 'r' );
  819.     my $zip1 = Archive::Zip->new();
  820.     my $status = $zip1->readFromFileHandle( $fh );
  821.     my $zip2 = Archive::Zip->new();
  822.     $status = $zip2->readFromFileHandle( $fh );
  823.  
  824. =back
  825.  
  826. =head2 Zip Archive Tree operations
  827.  
  828.  
  829. These used to be in Archive::Zip::Tree but got moved into
  830. Archive::Zip. They enable operation on an entire tree of members or
  831. files.
  832. A usage example:
  833.  
  834.   use Archive::Zip;
  835.   my $zip = Archive::Zip->new();
  836.   # add all readable files and directories below . as xyz/*
  837.   $zip->addTree( '.', 'xyz' );    
  838.   # add all readable plain files below /abc as def/*
  839.   $zip->addTree( '/abc', 'def', sub { -f && -r } );    
  840.   # add all .c files below /tmp as stuff/*
  841.   $zip->addTreeMatching( '/tmp', 'stuff', '\.c$' );
  842.   # add all .o files below /tmp as stuff/* if they aren't writable
  843.   $zip->addTreeMatching( '/tmp', 'stuff', '\.o$', sub { ! -w } );
  844.   # add all .so files below /tmp that are smaller than 200 bytes as stuff/*
  845.   $zip->addTreeMatching( '/tmp', 'stuff', '\.o$', sub { -s < 200 } );
  846.   # and write them into a file
  847.   $zip->writeToFileNamed('xxx.zip');
  848.   # now extract the same files into /tmpx
  849.   $zip->extractTree( 'stuff', '/tmpx' );
  850.  
  851. =over 4
  852.  
  853. =item $zip->addTree( $root, $dest [,$pred] ) -- Add tree of files to a zip
  854.  
  855.  
  856.  
  857. C<$root> is the root of the tree of files and directories to be
  858. added. It is a valid directory name on your system. C<$dest> is
  859. the name for the root in the zip file (undef or blank means
  860. to use relative pathnames). It is a valid ZIP directory name
  861. (that is, it uses forward slashes (/) for separating
  862. directory components). C<$pred> is an optional subroutine
  863. reference to select files: it is passed the name of the
  864. prospective file or directory using C<$_>, and if it returns
  865. true, the file or directory will be included. The default is
  866. to add all readable files and directories. For instance,
  867. using
  868.  
  869.   my $pred = sub { /\.txt/ };
  870.   $zip->addTree( '.', '', $pred );
  871.  
  872. will add all the .txt files in and below the current
  873. directory, using relative names, and making the names
  874. identical in the zipfile:
  875.  
  876.   original name           zip member name
  877.   ./xyz                   xyz
  878.   ./a/                    a/
  879.   ./a/b                   a/b
  880.  
  881. To translate absolute to relative pathnames, just pass them
  882. in: $zip->addTree( '/c/d', 'a' );
  883.  
  884.   original name           zip member name
  885.   /c/d/xyz                a/xyz
  886.   /c/d/a/                 a/a/
  887.   /c/d/a/b                a/a/b
  888.  
  889. Returns AZ_OK on success. Note that this will not follow
  890. symbolic links to directories. Note also that this does not
  891. check for the validity of filenames.
  892.  
  893.  
  894. Note that you generally I<don't> want to make zip archive member names
  895. absolute.
  896.  
  897. =item $zip->addTreeMatching( $root, $dest, $pattern [,$pred] )
  898.  
  899.  
  900.  
  901. $root is the root of the tree of files and directories to be
  902. added $dest is the name for the root in the zip file (undef
  903. means to use relative pathnames) $pattern is a (non-anchored)
  904. regular expression for filenames to match $pred is an
  905. optional subroutine reference to select files: it is passed
  906. the name of the prospective file or directory in C<$_>, and
  907. if it returns true, the file or directory will be included.
  908. The default is to add all readable files and directories. To
  909. add all files in and below the current dirctory whose names
  910. end in C<.pl>, and make them extract into a subdirectory
  911. named C<xyz>, do this:
  912.  
  913.   $zip->addTreeMatching( '.', 'xyz', '\.pl$' )
  914.  
  915. To add all I<writable> files in and below the dirctory named
  916. C</abc> whose names end in C<.pl>, and make them extract into
  917. a subdirectory named C<xyz>, do this:
  918.  
  919.   $zip->addTreeMatching( '/abc', 'xyz', '\.pl$', sub { -w } )
  920.  
  921. Returns AZ_OK on success. Note that this will not follow
  922. symbolic links to directories.
  923.  
  924. =item $zip->extractTree()
  925.  
  926.  
  927.  
  928. =item $zip->extractTree( $root )
  929.  
  930.  
  931.  
  932. =item $zip->extractTree( $root, $dest )
  933.  
  934.  
  935.  
  936. =item $zip->extractTree( $root, $dest, $volume )
  937.  
  938.  
  939.  
  940. If you don't give any arguments at all, will extract all the
  941. files in the zip with their original names.
  942.  
  943.  
  944. If you supply one argument for C<$root>, C<extractTree> will extract
  945. all the members whose names start with C<$root> into the current
  946. directory, stripping off C<$root> first.
  947. C<$root> is in Zip (Unix) format.
  948. For instance,
  949.  
  950.   $zip->extractTree( 'a' );
  951.  
  952. when applied to a zip containing the files:
  953. a/x a/b/c ax/d/e d/e will extract:
  954.  
  955.  
  956. a/x as ./x
  957.  
  958.  
  959. a/b/c as ./b/c
  960.  
  961.  
  962. If you give two arguments, C<extractTree> extracts all the members
  963. whose names start with C<$root>. It will translate C<$root> into
  964. C<$dest> to construct the destination file name.
  965. C<$root> and C<$dest> are in Zip (Unix) format.
  966. For instance,
  967.  
  968.    $zip->extractTree( 'a', 'd/e' );
  969.  
  970. when applied to a zip containing the files:
  971. a/x a/b/c ax/d/e d/e will extract:
  972.  
  973.  
  974. a/x to d/e/x
  975.  
  976.  
  977. a/b/c to d/e/b/c and ignore ax/d/e and d/e
  978.  
  979.  
  980. If you give three arguments, C<extractTree> extracts all the members
  981. whose names start with C<$root>. It will translate C<$root> into
  982. C<$dest> to construct the destination file name, and then it will
  983. convert to local file system format, using C<$volume> as the name of
  984. the destination volume.
  985.  
  986.  
  987. C<$root> and C<$dest> are in Zip (Unix) format.
  988.  
  989.  
  990. C<$volume> is in local file system format.
  991.  
  992.  
  993. For instance, under Windows,
  994.  
  995.    $zip->extractTree( 'a', 'd/e', 'f:' );
  996.  
  997. when applied to a zip containing the files:
  998. a/x a/b/c ax/d/e d/e will extract:
  999.  
  1000.  
  1001. a/x to f:d/e/x
  1002.  
  1003.  
  1004. a/b/c to f:d/e/b/c and ignore ax/d/e and d/e
  1005.  
  1006.  
  1007. If you want absolute paths (the prior example used paths relative to
  1008. the current directory on the destination volume, you can specify these
  1009. in C<$dest>:
  1010.  
  1011.    $zip->extractTree( 'a', '/d/e', 'f:' );
  1012.  
  1013. when applied to a zip containing the files:
  1014. a/x a/b/c ax/d/e d/e will extract:
  1015.  
  1016.  
  1017. a/x to f:\d\e\x
  1018.  
  1019.  
  1020. a/b/c to f:\d\e\b\c and ignore ax/d/e and d/e
  1021.  
  1022.  
  1023. =back
  1024.  
  1025. =head1 MEMBER OPERATIONS
  1026.  
  1027.  
  1028. =head2 Member Class Methods
  1029.  
  1030.  
  1031. Several constructors allow you to construct members without adding
  1032. them to a zip archive. These work the same as the addFile(),
  1033. addDirectory(), and addString() zip instance methods described above,
  1034. but they don't add the new members to a zip.
  1035.  
  1036. =over 4
  1037.  
  1038. =item Archive::Zip::Member->newFromString( $stringOrStringRef [, $fileName] )
  1039.  
  1040.  
  1041.  
  1042. Construct a new member from the given string. Returns undef
  1043. on error.
  1044.  
  1045.     my $member = Archive::Zip::Member->newFromString( 'This is a test',
  1046.                                                  'xyz.txt' );
  1047.  
  1048. =item newFromFile( $fileName )
  1049.  
  1050.  
  1051.  
  1052. Construct a new member from the given file. Returns undef on
  1053. error.
  1054.  
  1055.     my $member = Archive::Zip::Member->newFromFile( 'xyz.txt' );
  1056.  
  1057. =item newDirectoryNamed( $directoryName [, $zipname ] )
  1058.  
  1059.  
  1060.  
  1061. Construct a new member from the given directory.
  1062. C<$directoryName> must be a valid name on your file system; it doesn't
  1063. have to exist.
  1064.  
  1065.  
  1066. If given, C<$zipname> will be the name of the zip member; it must be a
  1067. valid Zip (Unix) name. If not given, it will be converted from
  1068. C<$directoryName>.
  1069.  
  1070.  
  1071. Returns undef on error.
  1072.  
  1073.     my $member = Archive::Zip::Member->newDirectoryNamed( 'CVS/' );
  1074.  
  1075. =back
  1076.  
  1077. =head2 Member Simple accessors
  1078.  
  1079.  
  1080. These methods get (and/or set) member attribute values.
  1081.  
  1082. =over 4
  1083.  
  1084. =item versionMadeBy()
  1085.  
  1086.  
  1087.  
  1088. Gets the field from the member header.
  1089.  
  1090. =item fileAttributeFormat( [$format] )
  1091.  
  1092.  
  1093.  
  1094. Gets or sets the field from the member header. These are
  1095. C<FA_*> values.
  1096.  
  1097. =item versionNeededToExtract()
  1098.  
  1099.  
  1100.  
  1101. Gets the field from the member header.
  1102.  
  1103. =item bitFlag()
  1104.  
  1105.  
  1106.  
  1107. Gets the general purpose bit field from the member header.
  1108. This is where the C<GPBF_*> bits live.
  1109.  
  1110. =item compressionMethod()
  1111.  
  1112.  
  1113.  
  1114. Returns the member compression method. This is the method
  1115. that is currently being used to compress the member data.
  1116. This will be COMPRESSION_STORED for added string or file
  1117. members, or any of the C<COMPRESSION_*> values for members
  1118. from a zip file. However, this module can only handle members
  1119. whose data is in COMPRESSION_STORED or COMPRESSION_DEFLATED
  1120. format.
  1121.  
  1122. =item desiredCompressionMethod( [$method] )
  1123.  
  1124.  
  1125.  
  1126. Get or set the member's C<desiredCompressionMethod>. This is
  1127. the compression method that will be used when the member is
  1128. written. Returns prior desiredCompressionMethod. Only
  1129. COMPRESSION_DEFLATED or COMPRESSION_STORED are valid
  1130. arguments. Changing to COMPRESSION_STORED will change the
  1131. member desiredCompressionLevel to 0; changing to
  1132. COMPRESSION_DEFLATED will change the member
  1133. desiredCompressionLevel to COMPRESSION_LEVEL_DEFAULT.
  1134.  
  1135. =item desiredCompressionLevel( [$method] )
  1136.  
  1137.  
  1138.  
  1139. Get or set the member's desiredCompressionLevel This is the
  1140. method that will be used to write. Returns prior
  1141. desiredCompressionLevel. Valid arguments are 0 through 9,
  1142. COMPRESSION_LEVEL_NONE, COMPRESSION_LEVEL_DEFAULT,
  1143. COMPRESSION_LEVEL_BEST_COMPRESSION, and
  1144. COMPRESSION_LEVEL_FASTEST. 0 or COMPRESSION_LEVEL_NONE will
  1145. change the desiredCompressionMethod to COMPRESSION_STORED.
  1146. All other arguments will change the desiredCompressionMethod
  1147. to COMPRESSION_DEFLATED.
  1148.  
  1149. =item externalFileName()
  1150.  
  1151.  
  1152.  
  1153. Return the member's external file name, if any, or undef.
  1154.  
  1155. =item fileName()
  1156.  
  1157.  
  1158.  
  1159. Get or set the member's internal filename. Returns the
  1160. (possibly new) filename. Names will have backslashes
  1161. converted to forward slashes, and will have multiple
  1162. consecutive slashes converted to single ones.
  1163.  
  1164. =item lastModFileDateTime()
  1165.  
  1166.  
  1167.  
  1168. Return the member's last modification date/time stamp in
  1169. MS-DOS format.
  1170.  
  1171. =item lastModTime()
  1172.  
  1173.  
  1174.  
  1175. Return the member's last modification date/time stamp,
  1176. converted to unix localtime format.
  1177.  
  1178.     print "Mod Time: " . scalar( localtime( $member->lastModTime() ) );
  1179.  
  1180. =item setLastModFileDateTimeFromUnix()
  1181.  
  1182.  
  1183.  
  1184. Set the member's lastModFileDateTime from the given unix
  1185. time.
  1186.  
  1187.     $member->setLastModFileDateTimeFromUnix( time() );
  1188.  
  1189. =item internalFileAttributes()
  1190.  
  1191.  
  1192.  
  1193. Return the internal file attributes field from the zip
  1194. header. This is only set for members read from a zip file.
  1195.  
  1196. =item externalFileAttributes()
  1197.  
  1198.  
  1199.  
  1200. Return member attributes as read from the ZIP file. Note that
  1201. these are NOT UNIX!
  1202.  
  1203. =item unixFileAttributes( [$newAttributes] )
  1204.  
  1205.  
  1206.  
  1207. Get or set the member's file attributes using UNIX file
  1208. attributes. Returns old attributes.
  1209.  
  1210.     my $oldAttribs = $member->unixFileAttributes( 0666 );
  1211.  
  1212. Note that the return value has more than just the file
  1213. permissions, so you will have to mask off the lowest bits for
  1214. comparisions.
  1215.  
  1216. =item localExtraField( [$newField] )
  1217.  
  1218.  
  1219.  
  1220. Gets or sets the extra field that was read from the local
  1221. header. This is not set for a member from a zip file until
  1222. after the member has been written out. The extra field must
  1223. be in the proper format.
  1224.  
  1225. =item cdExtraField( [$newField] )
  1226.  
  1227.  
  1228.  
  1229. Gets or sets the extra field that was read from the central
  1230. directory header. The extra field must be in the proper
  1231. format.
  1232.  
  1233. =item extraFields()
  1234.  
  1235.  
  1236.  
  1237. Return both local and CD extra fields, concatenated.
  1238.  
  1239. =item fileComment( [$newComment] )
  1240.  
  1241.  
  1242.  
  1243. Get or set the member's file comment.
  1244.  
  1245. =item hasDataDescriptor()
  1246.  
  1247.  
  1248.  
  1249. Get or set the data descriptor flag. If this is set, the
  1250. local header will not necessarily have the correct data
  1251. sizes. Instead, a small structure will be stored at the end
  1252. of the member data with these values. This should be
  1253. transparent in normal operation.
  1254.  
  1255. =item crc32()
  1256.  
  1257.  
  1258.  
  1259. Return the CRC-32 value for this member. This will not be set
  1260. for members that were constructed from strings or external
  1261. files until after the member has been written.
  1262.  
  1263. =item crc32String()
  1264.  
  1265.  
  1266.  
  1267. Return the CRC-32 value for this member as an 8 character
  1268. printable hex string. This will not be set for members that
  1269. were constructed from strings or external files until after
  1270. the member has been written.
  1271.  
  1272. =item compressedSize()
  1273.  
  1274.  
  1275.  
  1276. Return the compressed size for this member. This will not be
  1277. set for members that were constructed from strings or
  1278. external files until after the member has been written.
  1279.  
  1280. =item uncompressedSize()
  1281.  
  1282.  
  1283.  
  1284. Return the uncompressed size for this member.
  1285.  
  1286. =item isEncrypted()
  1287.  
  1288.  
  1289.  
  1290. Return true if this member is encrypted. The Archive::Zip
  1291. module does not currently create or extract encrypted
  1292. members.
  1293.  
  1294. =item isTextFile( [$flag] )
  1295.  
  1296.  
  1297.  
  1298. Returns true if I am a text file. Also can set the status if
  1299. given an argument (then returns old state). Note that this
  1300. module does not currently do anything with this flag upon
  1301. extraction or storage. That is, bytes are stored in native
  1302. format whether or not they came from a text file.
  1303.  
  1304. =item isBinaryFile()
  1305.  
  1306.  
  1307.  
  1308. Returns true if I am a binary file. Also can set the status
  1309. if given an argument (then returns old state). Note that this
  1310. module does not currently do anything with this flag upon
  1311. extraction or storage. That is, bytes are stored in native
  1312. format whether or not they came from a text file.
  1313.  
  1314. =item extractToFileNamed( $fileName )
  1315.  
  1316.  
  1317.  
  1318. Extract me to a file with the given name. The file will be
  1319. created with default modes. Directories will be created as
  1320. needed.
  1321. The C<$fileName> argument should be a valid file name on your
  1322. file system.
  1323. Returns AZ_OK on success.
  1324.  
  1325. =item isDirectory()
  1326.  
  1327.  
  1328.  
  1329. Returns true if I am a directory.
  1330.  
  1331. =item writeLocalHeaderRelativeOffset()
  1332.  
  1333.  
  1334.  
  1335. Returns the file offset in bytes the last time I was written.
  1336.  
  1337. =item wasWritten()
  1338.  
  1339.  
  1340.  
  1341. Returns true if I was successfully written. Reset at the
  1342. beginning of a write attempt.
  1343.  
  1344. =back
  1345.  
  1346. =head2 Low-level member data reading
  1347.  
  1348.  
  1349. It is possible to use lower-level routines to access member data
  1350. streams, rather than the extract* methods and contents(). For
  1351. instance, here is how to print the uncompressed contents of a member
  1352. in chunks using these methods:
  1353.  
  1354.     my ( $member, $status, $bufferRef );
  1355.     $member = $zip->memberNamed( 'xyz.txt' );
  1356.     $member->desiredCompressionMethod( COMPRESSION_STORED );
  1357.     $status = $member->rewindData();
  1358.     die "error $status" unless $status == AZ_OK;
  1359.     while ( ! $member->readIsDone() )
  1360.     {
  1361.     ( $bufferRef, $status ) = $member->readChunk();
  1362.     die "error $status"
  1363.                 if $status != AZ_OK && $status != AZ_STREAM_END;
  1364.     # do something with $bufferRef:
  1365.     print $$bufferRef;
  1366.     }
  1367.     $member->endRead();
  1368.  
  1369. =over 4
  1370.  
  1371. =item readChunk( [$chunkSize] )
  1372.  
  1373.  
  1374.  
  1375. This reads the next chunk of given size from the member's
  1376. data stream and compresses or uncompresses it as necessary,
  1377. returning a reference to the bytes read and a status. If size
  1378. argument is not given, defaults to global set by
  1379. Archive::Zip::setChunkSize. Status is AZ_OK on success until
  1380. the last chunk, where it returns AZ_STREAM_END. Returns C<(
  1381. \$bytes, $status)>.
  1382.  
  1383.     my ( $outRef, $status ) = $self->readChunk();
  1384.     print $$outRef if $status != AZ_OK && $status != AZ_STREAM_END;
  1385.  
  1386. =item rewindData()
  1387.  
  1388.  
  1389.  
  1390. Rewind data and set up for reading data streams or writing
  1391. zip files. Can take options for C<inflateInit()> or
  1392. C<deflateInit()>, but this isn't likely to be necessary.
  1393. Subclass overrides should call this method. Returns C<AZ_OK>
  1394. on success.
  1395.  
  1396. =item endRead()
  1397.  
  1398.  
  1399.  
  1400. Reset the read variables and free the inflater or deflater.
  1401. Must be called to close files, etc. Returns AZ_OK on success.
  1402.  
  1403. =item readIsDone()
  1404.  
  1405.  
  1406.  
  1407. Return true if the read has run out of data or errored out.
  1408.  
  1409. =item contents()
  1410.  
  1411.  
  1412.  
  1413. Return the entire uncompressed member data or undef in scalar
  1414. context. When called in array context, returns C<( $string,
  1415. $status )>; status will be AZ_OK on success:
  1416.  
  1417.     my $string = $member->contents();
  1418.     # or
  1419.     my ( $string, $status ) = $member->contents();
  1420.     die "error $status" unless $status == AZ_OK;
  1421.  
  1422. Can also be used to set the contents of a member (this may
  1423. change the class of the member):
  1424.  
  1425.     $member->contents( "this is my new contents" );
  1426.  
  1427. =item extractToFileHandle( $fh )
  1428.  
  1429.  
  1430.  
  1431. Extract (and uncompress, if necessary) the member's contents
  1432. to the given file handle. Return AZ_OK on success.
  1433.  
  1434. =back
  1435.  
  1436. =head1 Archive::Zip::FileMember methods
  1437.  
  1438.  
  1439. The Archive::Zip::FileMember class extends Archive::Zip::Member. It is the
  1440. base class for both ZipFileMember and NewFileMember classes. This class adds
  1441. an C<externalFileName> and an C<fh> member to keep track of the external
  1442. file.
  1443.  
  1444. =over 4
  1445.  
  1446. =item externalFileName()
  1447.  
  1448.  
  1449.  
  1450. Return the member's external filename.
  1451.  
  1452. =item fh()
  1453.  
  1454.  
  1455.  
  1456. Return the member's read file handle. Automatically opens file if
  1457. necessary.
  1458.  
  1459. =back
  1460.  
  1461. =head1 Archive::Zip::ZipFileMember methods
  1462.  
  1463.  
  1464. The Archive::Zip::ZipFileMember class represents members that have been read
  1465. from external zip files.
  1466.  
  1467. =over 4
  1468.  
  1469. =item diskNumberStart()
  1470.  
  1471.  
  1472.  
  1473. Returns the disk number that the member's local header resides in.
  1474. Should be 0.
  1475.  
  1476. =item localHeaderRelativeOffset()
  1477.  
  1478.  
  1479.  
  1480. Returns the offset into the zip file where the member's local header
  1481. is.
  1482.  
  1483. =item dataOffset()
  1484.  
  1485.  
  1486.  
  1487. Returns the offset from the beginning of the zip file to the member's
  1488. data.
  1489.  
  1490. =back
  1491.  
  1492. =head1 AUTHOR
  1493.  
  1494.  
  1495. Ned Konz, nedkonz@cpan.org
  1496.  
  1497. =head1 COPYRIGHT
  1498.  
  1499.  
  1500. Copyright (c) 2000-2002 Ned Konz. All rights reserved. This program is free
  1501. software; you can redistribute it and/or modify it under the same terms as
  1502. Perl itself.
  1503.  
  1504. =head1 SEE ALSO
  1505.  
  1506.  
  1507. L<Compress::Zlib> L<Archive::Tar> There is a Japanese translation of this
  1508. document at http://www.necoware.com/~deq/perl/doc-ja/Archive-Zip.html that
  1509. was done by DEQ <deq@oct.zaq.ne.jp> . Thanks! 
  1510.  
  1511.