Class: Zip::ZipExtraField::IUnix

Inherits:
Generic show all
Defined in:
lib/zip/zip.rb

Overview

Info-ZIP Extra for UNIX uid/gid

Constant Summary collapse

HEADER_ID =
"Ux"

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Generic

#initial_parse, name, register_map, #to_c_dir_bin, #to_local_bin

Constructor Details

#initialize(binstr = nil) ⇒ IUnix

Returns a new instance of IUnix.



1729
1730
1731
1732
1733
# File 'lib/zip/zip.rb', line 1729

def initialize(binstr = nil)
  @uid = 0
  @gid = 0
  binstr and merge(binstr)
end

Instance Attribute Details

#gidObject

Returns the value of attribute gid.



1734
1735
1736
# File 'lib/zip/zip.rb', line 1734

def gid
  @gid
end

#uidObject

Returns the value of attribute uid.



1734
1735
1736
# File 'lib/zip/zip.rb', line 1734

def uid
  @uid
end

Instance Method Details

#==(other) ⇒ Object



1746
1747
1748
1749
# File 'lib/zip/zip.rb', line 1746

def ==(other)
  @uid == other.uid &&
  @gid == other.gid
end

#merge(binstr) ⇒ Object



1736
1737
1738
1739
1740
1741
1742
1743
1744
# File 'lib/zip/zip.rb', line 1736

def merge(binstr)
  binstr == "" and return
  size, content = initial_parse(binstr)
  # size: 0 for central direcotry. 4 for local header
  return if(! size || size == 0)
  uid, gid = content.unpack("vv")
  @uid ||= uid
  @gid ||= gid
end

#pack_for_c_dirObject



1755
1756
1757
# File 'lib/zip/zip.rb', line 1755

def pack_for_c_dir
  ""
end

#pack_for_localObject



1751
1752
1753
# File 'lib/zip/zip.rb', line 1751

def pack_for_local
  [@uid, @gid].pack("vv")
end