Class: Zip::ExtraField::UniversalTime
- Defined in:
- lib/zip/extra_field/universal_time.rb
Overview
Info-ZIP Additional timestamp field
Constant Summary collapse
- HEADER_ID =
'UT'
Instance Attribute Summary collapse
-
#atime ⇒ Object
Returns the value of attribute atime.
-
#ctime ⇒ Object
Returns the value of attribute ctime.
-
#flag ⇒ Object
Returns the value of attribute flag.
-
#mtime ⇒ Object
Returns the value of attribute mtime.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(binstr = nil) ⇒ UniversalTime
constructor
A new instance of UniversalTime.
- #merge(binstr) ⇒ Object
- #pack_for_c_dir ⇒ Object
- #pack_for_local ⇒ Object
Methods inherited from Generic
#initial_parse, name, register_map, #to_c_dir_bin, #to_local_bin
Constructor Details
#initialize(binstr = nil) ⇒ UniversalTime
Returns a new instance of UniversalTime.
7 8 9 10 11 12 13 |
# File 'lib/zip/extra_field/universal_time.rb', line 7 def initialize(binstr = nil) @ctime = nil @mtime = nil @atime = nil @flag = nil binstr && merge(binstr) end |
Instance Attribute Details
#atime ⇒ Object
Returns the value of attribute atime.
15 16 17 |
# File 'lib/zip/extra_field/universal_time.rb', line 15 def atime @atime end |
#ctime ⇒ Object
Returns the value of attribute ctime.
15 16 17 |
# File 'lib/zip/extra_field/universal_time.rb', line 15 def ctime @ctime end |
#flag ⇒ Object
Returns the value of attribute flag.
15 16 17 |
# File 'lib/zip/extra_field/universal_time.rb', line 15 def flag @flag end |
#mtime ⇒ Object
Returns the value of attribute mtime.
15 16 17 |
# File 'lib/zip/extra_field/universal_time.rb', line 15 def mtime @mtime end |
Instance Method Details
#==(other) ⇒ Object
27 28 29 30 31 |
# File 'lib/zip/extra_field/universal_time.rb', line 27 def ==(other) @mtime == other.mtime && @atime == other.atime && @ctime == other.ctime end |
#merge(binstr) ⇒ Object
17 18 19 20 21 22 23 24 25 |
# File 'lib/zip/extra_field/universal_time.rb', line 17 def merge(binstr) return if binstr.empty? size, content = initial_parse(binstr) size || return @flag, mtime, atime, ctime = content.unpack('CVVV') mtime && @mtime ||= ::Zip::DOSTime.at(mtime) atime && @atime ||= ::Zip::DOSTime.at(atime) ctime && @ctime ||= ::Zip::DOSTime.at(ctime) end |
#pack_for_c_dir ⇒ Object
41 42 43 44 45 |
# File 'lib/zip/extra_field/universal_time.rb', line 41 def pack_for_c_dir s = [@flag].pack('C') @flag & 1 == 1 && s << [@mtime.to_i].pack('V') s end |
#pack_for_local ⇒ Object
33 34 35 36 37 38 39 |
# File 'lib/zip/extra_field/universal_time.rb', line 33 def pack_for_local s = [@flag].pack('C') @flag & 1 != 0 && s << [@mtime.to_i].pack('V') @flag & 2 != 0 && s << [@atime.to_i].pack('V') @flag & 4 != 0 && s << [@ctime.to_i].pack('V') s end |