我正在使用 rubyzip-1.2.0 和 ruby 2.2.1 来生成一个包含单个文件的 zip 文件(在本例中是一个 python 脚本)。内容文件没有变化,生成的zip字符串的md5sum保持不变,但是一旦我写入然后读取zip字符串到文件,长度增加并且每次md5sum都不一样。无论我使用File.open(zip_file, 'wb') {}
还是都会发生这种情况IO.binwrite(zip_file, zip_string)
。
更令人兴奋的是,在 OS X 上,zip 字符串和写入的文件大小不同(当然,md5sum 不同),但在 Ubuntu 14.04 上,大小保持一致并且 md5sum 不同。
如果我多次生成文件而没有暂停,则校验和(通常)是相同的;如果我进入睡眠状态,它们会有所不同,这让我想知道 rubyzip 是否正在将某种时间戳写入文件?
我可能只是错过了 ruby 二进制文件处理的一些细微差别。
require 'zip'
require 'digest'
def update_zip_file(source_file)
zip_file = source_file.sub(/py$/, 'zip')
new_zip = create_lambda_zip_file(source_file)
puts "Zip string length: #{new_zip.length}"
md5_string = Digest::MD5.new
md5_string.update IO.binread(zip_file)
puts "Zip string MD5: #{md5_string.hexdigest}"
File.open(zip_file, 'wb') do |f|
puts "Updating #{zip_file}"
f.write new_zip
end
puts "New file size: #{File.size(zip_file)}"
md5_file_new = Digest::MD5.new
md5_file_new.update IO.binread(zip_file)
puts "New file MD5: #{md5_file_new.hexdigest}"
end
def create_lambda_zip_file(source_file)
zip_file = source_file.sub(/py$/, 'zip')
zip = Zip::OutputStream.write_buffer do |zio|
zio.put_next_entry(File.basename(source_file))
zio << File.read(source_file)
end
zip.string
end
(1..3).each do
update_zip_file('test.py')
sleep 2
end
OS X 上的输出:
Zip string length: 973
Zip string MD5: 2578d03cecf9539b046fb6993a87c6fd
Updating test.zip
New file size: 1019
New file MD5: 03e0aa2d345cac9731d1482d2674fc1e
Zip string length: 973
Zip string MD5: 03e0aa2d345cac9731d1482d2674fc1e
Updating test.zip
New file size: 1019
New file MD5: bb6fca23d13f1e2dfa01f93ba1e2cd16
Zip string length: 973
Zip string MD5: bb6fca23d13f1e2dfa01f93ba1e2cd16
Updating test.zip
New file size: 1019
New file MD5: 3d27653fa1662375de9aa4b6d2a49358
Ubuntu 14.04 上的输出:
Zip string length: 1020
Zip string MD5: 4a6f5c33b420360fed44c83f079202ce
Updating test.zip
New file size: 1020
New file MD5: 0cd8a123fe7f73be0175b02f38615572
Zip string length: 1020
Zip string MD5: 0cd8a123fe7f73be0175b02f38615572
Updating test.zip
New file size: 1020
New file MD5: 0a010e0ae0d75e5cde0c4c4ae098d436
Zip string length: 1020
Zip string MD5: 0a010e0ae0d75e5cde0c4c4ae098d436
Updating test.zip
New file size: 1020
New file MD5: e91ca00a43ccf505039a9d70604e184c
任何解释或解决方法?我想在重写文件之前确保 zip 文件的内容不同。
编辑以修复文件 md5sum 并更新输出。
编辑 实际上 rubyzip 确实将当前时间戳放在每个条目中(为什么?)。如果我对其进行修补以便我可以操纵条目属性,则 zip 字符串的 md5sum 将保持不变。
module Zip
class OutputStream
attr_accessor :entry_set
end
class Entry
attr_accessor :time
end
end
...
def create_lambda_zip_file(source_file)
zip_file = source_file.sub(/py$/, 'zip')
zip = Zip::OutputStream.write_buffer do |zio|
zio.put_next_entry(File.basename(source_file))
zio << File.read(source_file)
zio.entry_set.each {|e| puts e.time = Zip::DOSTime.at(File.mtime(source_file).to_i)}
end
zip.string
end