Module: Dockly::History
- Defined in:
- lib/dockly/history.rb
Overview
This module contains logic to find matching content hash for a given commit.
Constant Summary collapse
- ASCII_FILE_SEP =
28.chr
- ASCII_RECORD_SEP =
30.chr
- TAG_PREFIX =
'dockly-'
Class Method Summary collapse
- .content_hash_for(paths) ⇒ Object
- .content_tag ⇒ Object
- .duplicate_build? ⇒ Boolean
- .duplicate_build_sha ⇒ Object
- .ls_files ⇒ Object
- .push_content_tag! ⇒ Object
- .repo ⇒ Object
- .tags ⇒ Object
- .write_content_tag! ⇒ Object
Class Method Details
.content_hash_for(paths) ⇒ Object
47 48 49 50 51 52 53 54 55 |
# File 'lib/dockly/history.rb', line 47 def content_hash_for(paths) paths.sort.each_with_object(Digest::SHA384.new) do |path, hash| next unless File.exist?(path) mode = File::Stat.new(path).mode data = File.read(path) str = [path, mode, data].join(ASCII_RECORD_SEP.chr) + ASCII_FILE_SEP.chr hash.update(str) end.hexdigest end |
.content_tag ⇒ Object
39 40 41 |
# File 'lib/dockly/history.rb', line 39 def content_tag @content_tag ||= TAG_PREFIX + content_hash_for(ls_files) end |
.duplicate_build? ⇒ Boolean
22 23 24 |
# File 'lib/dockly/history.rb', line 22 def duplicate_build? !duplicate_build_sha.nil? end |
.duplicate_build_sha ⇒ Object
26 27 28 29 30 |
# File 'lib/dockly/history.rb', line 26 def duplicate_build_sha return @duplicate_build_sha if @duplicate_build_sha sha = [content_tag] @duplicate_build_sha = sha unless sha == repo.capturing.rev_parse('HEAD').chomp end |
.ls_files ⇒ Object
43 44 45 |
# File 'lib/dockly/history.rb', line 43 def ls_files repo.capturing.ls_tree({ :name_only => true, :r => true }, 'HEAD').split end |
.push_content_tag! ⇒ Object
10 11 12 13 14 15 16 |
# File 'lib/dockly/history.rb', line 10 def push_content_tag! refs = ["refs/tags/#{content_tag}"] remotes = repo.capturing.remote(:v => true).split(/\n/).map{ |r| r.split.first }.uniq remotes.each do |remote| repo.push(remote, refs) end end |
.repo ⇒ Object
57 58 59 |
# File 'lib/dockly/history.rb', line 57 def repo @repo ||= MiniGit.new('.') end |
.tags ⇒ Object
32 33 34 35 36 37 |
# File 'lib/dockly/history.rb', line 32 def @tags ||= Hash.new do |hash, key| tag = repo.capturing.show_ref({ :tags => true }, key).chomp rescue nil hash[key] = repo.capturing.rev_parse(key).chomp if tag end end |
.write_content_tag! ⇒ Object
18 19 20 |
# File 'lib/dockly/history.rb', line 18 def write_content_tag! repo.tag('-f', content_tag, repo.capturing.rev_parse('HEAD').chomp) end |