Class: Zip::ZipExtraField
- Inherits:
-
Hash
show all
- Defined in:
- lib/amp/dependencies/zip/zip.rb
Defined Under Namespace
Classes: Generic, IUnix, UniversalTime
Constant Summary
collapse
- ID_MAP =
{}
Instance Method Summary
collapse
Methods inherited from Hash
#[], #get, #pick, with_keys
Constructor Details
#initialize(binstr = nil) ⇒ ZipExtraField
start main of ZipExtraField < Hash
1764
1765
1766
|
# File 'lib/amp/dependencies/zip/zip.rb', line 1764
def initialize(binstr = nil)
binstr and merge(binstr)
end
|
Instance Method Details
#c_dir_length ⇒ Object
Also known as:
c_dir_size
1832
1833
1834
|
# File 'lib/amp/dependencies/zip/zip.rb', line 1832
def c_dir_length
to_c_dir_bin.length
end
|
#create(name) ⇒ Object
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
|
# File 'lib/amp/dependencies/zip/zip.rb', line 1801
def create(name)
field_class = nil
ID_MAP.each { |id, klass|
if klass.name == name
field_class = klass
break
end
}
if ! field_class
raise ZipError, "Unknown extra field '#{name}'"
end
self[name] = field_class.new()
end
|
#local_length ⇒ Object
Also known as:
local_size, length, size
1835
1836
1837
|
# File 'lib/amp/dependencies/zip/zip.rb', line 1835
def local_length
to_local_bin.length
end
|
#merge(binstr) ⇒ Object
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
|
# File 'lib/amp/dependencies/zip/zip.rb', line 1768
def merge(binstr)
binstr == "" and return
i = 0
while i < binstr.length
id = binstr[i,2]
len = binstr[i+2,2].to_s.unpack("v")[0]
if id && ID_MAP.member?(id)
field_name = ID_MAP[id].name
if self.member?(field_name)
self[field_name].mergea(binstr[i, len+4])
else
field_obj = ID_MAP[id].new(binstr[i, len+4])
self[field_name] = field_obj
end
elsif id
unless self["Unknown"]
s = ""
class << s
alias_method :to_c_dir_bin, :to_s
alias_method :to_local_bin, :to_s
end
self["Unknown"] = s
end
if ! len || len+4 > binstr[i..-1].length
self["Unknown"] << binstr[i..-1]
break;
end
self["Unknown"] << binstr[i, len+4]
end
i += len+4
end
end
|
#to_c_dir_bin ⇒ Object
1824
1825
1826
1827
1828
1829
1830
|
# File 'lib/amp/dependencies/zip/zip.rb', line 1824
def to_c_dir_bin
s = ""
each { |k, v|
s << v.to_c_dir_bin
}
s
end
|
#to_local_bin ⇒ Object
Also known as:
to_s
1815
1816
1817
1818
1819
1820
1821
|
# File 'lib/amp/dependencies/zip/zip.rb', line 1815
def to_local_bin
s = ""
each { |k, v|
s << v.to_local_bin
}
s
end
|