1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
module Git
# object that holds the last X commits on given branch
class Diff
include Enumerable
def initialize(base, from = nil, to = nil)
@base = base
@from = from && from.to_s
@to = to && to.to_s
@path = nil
@full_diff = nil
@full_diff_files = nil
@stats = nil
end
attr_reader :from, :to
def name_status
cache_name_status
end
def path(path)
@path = path
return self
end
def size
cache_stats
@stats[:total][:files]
end
def lines
cache_stats
@stats[:total][:lines]
end
def deletions
cache_stats
@stats[:total][:deletions]
end
def insertions
cache_stats
@stats[:total][:insertions]
end
def stats
cache_stats
@stats
end
# if file is provided and is writable, it will write the patch into the file
def patch(file = nil)
cache_full
@full_diff
end
alias_method :to_s, :patch
# enumerable methods
def [](key)
process_full
@full_diff_files.assoc(key)[1]
end
def each(&block) # :yields: each Git::DiffFile in turn
process_full
@full_diff_files.map { |file| file[1] }.each(&block)
end
class DiffFile
attr_accessor :patch, :path, :mode, :src, :dst, :type
@base = nil
NIL_BLOB_REGEXP = /\A0{4,40}\z/.freeze
def initialize(base, hash)
@base = base
@patch = hash[:patch]
@path = hash[:path]
@mode = hash[:mode]
@src = hash[:src]
@dst = hash[:dst]
@type = hash[:type]
@binary = hash[:binary]
end
def binary?
!!@binary
end
def blob(type = :dst)
if type == :src && !NIL_BLOB_REGEXP.match(@src)
@base.object(@src)
elsif !NIL_BLOB_REGEXP.match(@dst)
@base.object(@dst)
end
end
end
private
def cache_full
@full_diff ||= @base.lib.diff_full(@from, @to, {:path_limiter => @path})
end
def process_full
return if @full_diff_files
cache_full
@full_diff_files = process_full_diff
end
def cache_stats
@stats ||= @base.lib.diff_stats(@from, @to, {:path_limiter => @path})
end
def cache_name_status
@name_status ||= @base.lib.diff_name_status(@from, @to, {:path => @path})
end
# break up @diff_full
def process_full_diff
defaults = {
:mode => '',
:src => '',
:dst => '',
:type => 'modified'
}
final = {}
current_file = nil
@full_diff.split("\n").each do |line|
if m = %r{\Adiff --git ("?)a/(.+?)\1 ("?)b/(.+?)\3\z}.match(line)
current_file = Git::EscapedPath.new(m[2]).unescape
final[current_file] = defaults.merge({:patch => line, :path => current_file})
else
if m = /^index ([0-9a-f]{4,40})\.\.([0-9a-f]{4,40})( ......)*/.match(line)
final[current_file][:src] = m[1]
final[current_file][:dst] = m[2]
final[current_file][:mode] = m[3].strip if m[3]
end
if m = /^([[:alpha:]]*?) file mode (......)/.match(line)
final[current_file][:type] = m[1]
final[current_file][:mode] = m[2]
end
if m = /^Binary files /.match(line)
final[current_file][:binary] = true
end
final[current_file][:patch] << "\n" + line
end
end
final.map { |e| [e[0], DiffFile.new(@base, e[1])] }
end
end
end
|