Class: Zip::ZipExtraField::UniversalTime

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

Overview

Info-ZIP Additional timestamp field

Constant Summary collapse

HEADER_ID =
"UT"

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) ⇒ UniversalTime

Returns a new instance of UniversalTime.



1215
1216
1217
1218
1219
1220
1221
# File 'lib/zip/zip.rb', line 1215

def initialize(binstr = nil)
  @ctime = nil
  @mtime = nil
  @atime = nil
  @flag  = nil
  binstr and merge(binstr)
end

Instance Attribute Details

#atimeObject

Returns the value of attribute atime.



1222
1223
1224
# File 'lib/zip/zip.rb', line 1222

def atime
  @atime
end

#ctimeObject

Returns the value of attribute ctime.



1222
1223
1224
# File 'lib/zip/zip.rb', line 1222

def ctime
  @ctime
end

#flagObject

Returns the value of attribute flag.



1222
1223
1224
# File 'lib/zip/zip.rb', line 1222

def flag
  @flag
end

#mtimeObject

Returns the value of attribute mtime.



1222
1223
1224
# File 'lib/zip/zip.rb', line 1222

def mtime
  @mtime
end

Instance Method Details

#==(other) ⇒ Object



1234
1235
1236
1237
1238
# File 'lib/zip/zip.rb', line 1234

def ==(other)
  @mtime == other.mtime &&
  @atime == other.atime &&
  @ctime == other.ctime
end

#merge(binstr) ⇒ Object



1224
1225
1226
1227
1228
1229
1230
1231
1232
# File 'lib/zip/zip.rb', line 1224

def merge(binstr)
  binstr == "" and return
  size, content = initial_parse(binstr)
  size or return
  @flag, mtime, atime, ctime = content.unpack("CVVV")
  mtime and @mtime ||= Time.at(mtime)
  atime and @atime ||= Time.at(atime)
  ctime and @ctime ||= Time.at(ctime)
end

#pack_for_c_dirObject



1248
1249
1250
1251
1252
# File 'lib/zip/zip.rb', line 1248

def pack_for_c_dir
  s = [@flag].pack("C")
  @flag & 1 == 1 and s << [@mtime.to_i].pack("V")
  s
end

#pack_for_localObject



1240
1241
1242
1243
1244
1245
1246
# File 'lib/zip/zip.rb', line 1240

def pack_for_local
  s = [@flag].pack("C")
  @flag & 1 != 0 and s << [@mtime.to_i].pack("V")
  @flag & 2 != 0 and s << [@atime.to_i].pack("V")
  @flag & 4 != 0 and s << [@ctime.to_i].pack("V")
  s
end