Module: Grit::GitRuby
- Included in:
- Git
- Defined in:
- lib/grit/git-ruby.rb,
lib/grit/git-ruby/git_object.rb,
lib/grit/git-ruby/repository.rb,
lib/grit/git-ruby/internal/pack.rb,
lib/grit/git-ruby/internal/loose.rb,
lib/grit/git-ruby/internal/raw_object.rb,
lib/grit/git-ruby/internal/file_window.rb
Overview
the functions in this module intercept the calls to git binary made by the grit objects and attempts to run them in pure ruby if it will be faster, or if the git binary is not available (!!TODO!!)
Defined Under Namespace
Modules: Internal Classes: Blob, Commit, DirectoryEntry, GitObject, Repository, Tag, Tree, UserInfo
Instance Attribute Summary collapse
-
#git_file_index ⇒ Object
Returns the value of attribute git_file_index.
-
#ruby_git_repo ⇒ Object
Returns the value of attribute ruby_git_repo.
Class Method Summary collapse
Instance Method Summary collapse
- #cat_file(options, sha) ⇒ Object
- #cat_ref(options, ref) ⇒ Object
-
#diff(options, sha1, sha2 = nil) ⇒ Object
git diff –full-index ‘ec037431382e83c3e95d4f2b3d145afbac8ea55d’ ‘f1ec1aea10986159456846b8a05615b87828d6c6’.
- #file_size(ref) ⇒ Object
- #file_type(ref) ⇒ Object
- #init(options, *args) ⇒ Object
-
#ls_tree(options, treeish, *paths) ⇒ Object
lib/grit/tree.rb:16: output = repo.git.ls_tree({}, treeish, *paths).
- #refs(options, prefix) ⇒ Object
- #rev_list(options, *refs) ⇒ Object
- #rev_parse(options, string) ⇒ Object
- #ruby_git ⇒ Object
- #tags(options, prefix) ⇒ Object
Instance Attribute Details
#git_file_index ⇒ Object
Returns the value of attribute git_file_index.
10 11 12 |
# File 'lib/grit/git-ruby.rb', line 10 def git_file_index @git_file_index end |
#ruby_git_repo ⇒ Object
Returns the value of attribute ruby_git_repo.
10 11 12 |
# File 'lib/grit/git-ruby.rb', line 10 def ruby_git_repo @ruby_git_repo end |
Class Method Details
.read_bytes_until(io, char) ⇒ Object
186 187 188 189 190 191 192 193 194 195 196 197 198 |
# File 'lib/grit/git-ruby/git_object.rb', line 186 def self.read_bytes_until(io, char) string = '' if RUBY_VERSION > '1.9' while ((next_char = io.getc) != char) && !io.eof string += next_char end else while ((next_char = io.getc.chr) != char) && !io.eof string += next_char end end string end |
Instance Method Details
#cat_file(options, sha) ⇒ Object
20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/grit/git-ruby.rb', line 20 def cat_file(, sha) if [:t] file_type(sha) elsif [:s] file_size(sha) elsif [:p] try_run { ruby_git.cat_file(sha) } end rescue Grit::GitRuby::Repository::NoSuchShaFound '' end |
#cat_ref(options, ref) ⇒ Object
32 33 34 35 |
# File 'lib/grit/git-ruby.rb', line 32 def cat_ref(, ref) sha = rev_parse({}, ref) cat_file(, sha) end |
#diff(options, sha1, sha2 = nil) ⇒ Object
git diff –full-index ‘ec037431382e83c3e95d4f2b3d145afbac8ea55d’ ‘f1ec1aea10986159456846b8a05615b87828d6c6’
46 47 48 |
# File 'lib/grit/git-ruby.rb', line 46 def diff(, sha1, sha2 = nil) try_run { ruby_git.diff(sha1, sha2, ) } end |
#file_size(ref) ⇒ Object
201 202 203 |
# File 'lib/grit/git-ruby.rb', line 201 def file_size(ref) try_run { ruby_git.cat_file_size(ref).to_s } end |
#file_type(ref) ⇒ Object
205 206 207 |
# File 'lib/grit/git-ruby.rb', line 205 def file_type(ref) try_run { ruby_git.cat_file_type(ref).to_s } end |
#init(options, *args) ⇒ Object
12 13 14 15 16 17 18 |
# File 'lib/grit/git-ruby.rb', line 12 def init(, *args) if .size == 0 Grit::GitRuby::Repository.init(@git_dir) else method_missing('init', , *args) end end |
#ls_tree(options, treeish, *paths) ⇒ Object
lib/grit/tree.rb:16: output = repo.git.ls_tree({}, treeish, *paths)
38 39 40 41 42 43 |
# File 'lib/grit/git-ruby.rb', line 38 def ls_tree(, treeish, *paths) sha = rev_parse({}, treeish) ruby_git.ls_tree(sha, paths.flatten, .delete(:r)) rescue Grit::GitRuby::Repository::NoSuchShaFound '' end |
#refs(options, prefix) ⇒ Object
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 |
# File 'lib/grit/git-ruby.rb', line 116 def refs(, prefix) refs = [] already = {} orig_prefix = prefix prefix = File.join @git_dir, prefix files = Dir.glob(prefix + '/**/*') files.each do |ref| next if !File.file?(ref) id = File.read(ref).chomp name = ref.sub("#{prefix}/", '') if !already[name] refs << "#{name} #{id}" already[name] = true end end packed = File.join(@git_dir, 'packed-refs') if File.file?(packed) File.readlines(packed).each do |line| if m = /^(\w{40}) (.*?)$/.match(line) next if !Regexp.new('^' + orig_prefix).match(m[2]) name = m[2].sub("#{orig_prefix}/", '') if !already[name] refs << "#{name} #{m[1]}" already[name] = true end end end end refs.join("\n") end |
#rev_list(options, *refs) ⇒ Object
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/grit/git-ruby.rb', line 50 def rev_list(, *refs) refs = ['master'] if refs.empty? .delete(:skip) if [:skip].to_i == 0 = [:max_count, :since, :until, :pretty] # this is all I can do right now if ((.keys - ).size > 0) || refs.size > 1 method_missing('rev-list', , *refs) elsif (.size == 0) # pure rev-list ref = refs.first begin file_index.commits_from(rev_parse({}, ref)).join("\n") + "\n" rescue method_missing('rev-list', , *refs) end else ref = refs.first aref = rev_parse({:verify => true}, ref) if aref.is_a? Array method_missing('rev-list', , *refs) else try_run { ruby_git.rev_list(aref, ) } end end end |
#rev_parse(options, string) ⇒ Object
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 |
# File 'lib/grit/git-ruby.rb', line 75 def rev_parse(, string) raise RuntimeError, "invalid string: #{string.inspect}" unless string.is_a?(String) # Split ranges, but don't split when specifying a ref:path. # Don't split HEAD:some/path/in/repo..txt # Do split sha1..sha2 if string !~ /:/ && string =~ /\.\./ (sha1, sha2) = string.split('..') return [rev_parse({}, sha1), rev_parse({}, sha2)] end if /^[0-9a-f]{40}$/.match(string) # passing in a sha - just no-op it return string.chomp end head = File.join(@git_dir, 'refs', 'heads', string) return File.read(head).chomp if File.file?(head) head = File.join(@git_dir, 'refs', 'remotes', string) return File.read(head).chomp if File.file?(head) head = File.join(@git_dir, 'refs', 'tags', string) return File.read(head).chomp if File.file?(head) ## check packed-refs file, too packref = File.join(@git_dir, 'packed-refs') if File.file?(packref) File.readlines(packref).each do |line| if m = /^(\w{40}) refs\/.+?\/(.*?)$/.match(line) next if !Regexp.new(Regexp.escape(string) + '$').match(m[3]) return m[1].chomp end end end ## !! more - partials and such !! # revert to calling git - grr return method_missing('rev-parse', , string).chomp end |
#ruby_git ⇒ Object
209 210 211 |
# File 'lib/grit/git-ruby.rb', line 209 def ruby_git @ruby_git_repo ||= Repository.new(@git_dir) end |
#tags(options, prefix) ⇒ Object
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
# File 'lib/grit/git-ruby.rb', line 150 def (, prefix) refs = [] already = {} orig_prefix = prefix prefix = File.join @git_dir, prefix files = Dir.glob(prefix + '/**/*') files.each do |ref| next if !File.file?(ref) id = File.read(ref).chomp name = ref.sub("#{prefix}/", '') if !already[name] refs << "#{name} #{id}" already[name] = true end end packed = File.join(@git_dir, 'packed-refs') if File.file?(packed) lines = File.readlines('packed-refs') lines.each_with_index do |line, i| if m = /^(\w{40}) (.*?)$/.match(line) next if !Regexp.new('^' + orig_prefix).match(m[2]) name = m[2].sub("#{orig_prefix}/", '') # Annotated tags in packed-refs include a reference # to the commit object on the following line. next_line = lines[i + 1] id = if next_line && next_line[0] == ?^ next_line[1..-1].chomp else m[1] end if !already[name] refs << "#{name} #{id}" already[name] = true end end end end refs.join("\n") end |