diff options
author | Paul Duncan <pabs@pablotron.org> | 2016-08-11 00:18:59 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2016-08-11 00:18:59 -0400 |
commit | 1b273022bdb7055c3679583389504e080359ea43 (patch) | |
tree | 23f750bd57cf44a0ec6694519ad36462ed415aeb /src | |
parent | f1f9b26a00bd3f0a3247dbacad1d4fc6f30aa8d9 (diff) | |
download | zip-crystal-1b273022bdb7055c3679583389504e080359ea43.tar.bz2 zip-crystal-1b273022bdb7055c3679583389504e080359ea43.zip |
s/(internal|external)_attr/$1/; s/uncompressed_size/size/
Diffstat (limited to 'src')
-rw-r--r-- | src/zip.cr | 42 |
1 files changed, 13 insertions, 29 deletions
@@ -1502,13 +1502,11 @@ module Zip # Zip.read("foo.zip") do |zip| # # print uncompressed size for each entry # zip.each do |e| - # puts "#{e.path} uncompressed size: #{e.uncompressed_size}" + # puts "#{e.path} uncompressed size: #{e.size}" # end # end # - # See also: `#size` - # - getter :uncompressed_size + getter :size # # Get path for this `Entry` as a `String`. @@ -1552,11 +1550,11 @@ module Zip # Zip.read("foo.zip") do |zip| # # print internal attributes for each entry # zip.each do |e| - # puts "#{e.path} internal attributes: #{e.internal_attr}" + # puts "#{e.path} internal attributes: #{e.internal}" # end # end # - getter :internal_attr + getter :internal # # Get external attributes for this `Entry` as a `UInt32`. @@ -1564,11 +1562,11 @@ module Zip # Zip.read("foo.zip") do |zip| # # print external attributes for each entry # zip.each do |e| - # puts "#{e.path} external attributes: #{e.external_attr}" + # puts "#{e.path} external attributes: #{e.external}" # end # end # - getter :external_attr + getter :external # # Get position for this `Entry` as a `UInt32`. @@ -1647,7 +1645,7 @@ module Zip # read crc and lengths @crc = UInt32.from_io(head_mem_io, LE).as(UInt32) @compressed_size = UInt32.from_io(head_mem_io, LE).as(UInt32) - @uncompressed_size = UInt32.from_io(head_mem_io, LE).as(UInt32) + @size = UInt32.from_io(head_mem_io, LE).as(UInt32) # read lengths @path_len = UInt16.from_io(head_mem_io, LE).not_nil!.as(UInt16) @@ -1658,8 +1656,8 @@ module Zip @disk_start = UInt16.from_io(head_mem_io, LE).as(UInt16) # read attributes and position - @internal_attr = UInt16.from_io(head_mem_io, LE).as(UInt16) - @external_attr = UInt32.from_io(head_mem_io, LE).as(UInt32) + @internal = UInt16.from_io(head_mem_io, LE).as(UInt16) + @external = UInt32.from_io(head_mem_io, LE).as(UInt32) @pos = UInt32.from_io(head_mem_io, LE).as(UInt32) # close memory io @@ -1696,21 +1694,7 @@ module Zip # end # def dir? : Bool - (@external_attr & 0x01) != 0 - end - - # - # Return the uncompressed size of this entry in bytes. - # - # Example: - # - # Zip.read("foo.zip") do |zip| - # size = zip["bar.txt"].size - # puts "bar.txt is #{size} bytes." - # end - # - def size : UInt32 - @uncompressed_size + (@external & 0x01) != 0 end # :nodoc: @@ -1780,15 +1764,15 @@ module Zip case @method when CompressionMethod::NONE - decompress_none(@io, dst_io, @compressed_size, @uncompressed_size) + decompress_none(@io, dst_io, @compressed_size, @size) when CompressionMethod::DEFLATE - decompress_deflate(@io, dst_io, @compressed_size, @uncompressed_size) + decompress_deflate(@io, dst_io, @compressed_size, @size) else raise Error.new("unsupported method: #{@method}") end # return number of bytes written - @uncompressed_size + @size end # |