class Duracloud::FastSyncValidation
Public Instance Methods
audit()
click to toggle source
# File lib/duracloud/fast_sync_validation.rb, line 9 def audit find_files if system("comm", "-23", find_filename, converted_manifest_filename, out: audit_filename) File.empty?(audit_filename) || recheck else raise Error, "Error comparing #{find_filename} with #{converted_manifest_filename}." end end
convert_manifest()
click to toggle source
# File lib/duracloud/fast_sync_validation.rb, line 4 def convert_manifest # content-id is the 2nd column of the manifest system("cut -f 2 #{manifest_filename} | sort", out: converted_manifest_filename) end
find_files()
click to toggle source
# File lib/duracloud/fast_sync_validation.rb, line 18 def find_files # TODO handle exclude file? outfile = File.join(FileUtils.pwd, find_filename) # Using a separate command for sort so we get find results incrementally system("find -L . -type f | sed -e 's|^\./||'", chdir: content_dir, out: outfile) && system("sort", "-o", find_filename, find_filename) end
Private Instance Methods
do_recheck()
click to toggle source
# File lib/duracloud/fast_sync_validation.rb, line 28 def do_recheck Enumerator.new do |e| File.foreach(audit_filename) do |line| content_id = line.chomp e << check(content_id) end end end
find_filename()
click to toggle source
# File lib/duracloud/fast_sync_validation.rb, line 37 def find_filename filename("find.txt") end