Class: Oxidized::Git
Defined Under Namespace
Classes: GitError
Instance Method Summary collapse
- #fetch(node, group) ⇒ Object
-
#get_diff(node, group, oid1, oid2) ⇒ Object
give a hash with the patch of a diff between 2 revision and the stats (added and deleted lines).
-
#get_version(node, group, oid) ⇒ Object
give the blob of a specific revision.
-
#initialize ⇒ Git
constructor
A new instance of Git.
- #setup ⇒ Object
- #store(file, outputs, opt = {}) ⇒ Object
-
#version(node, group) ⇒ Object
give a hash of all oid revision for the givin node, and the date of the commit.
Methods inherited from Output
Constructor Details
#initialize ⇒ Git
Returns a new instance of Git.
10 11 12 |
# File 'lib/oxidized/output/git.rb', line 10 def initialize @cfg = CFG.output.git end |
Instance Method Details
#fetch(node, group) ⇒ Object
51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'lib/oxidized/output/git.rb', line 51 def fetch node, group begin repo = @cfg.repo repo = File.join File.dirname(repo), group + '.git' if group and not @cfg.single_repo? repo = Rugged::Repository.new repo index = repo.index index.read_tree repo.head.target.tree unless repo.empty? file = node file = File.join(group, node) if group and @cfg.single_repo? repo.read(index.get(file)[:oid]).data rescue 'node not found' end end |
#get_diff(node, group, oid1, oid2) ⇒ Object
give a hash with the patch of a diff between 2 revision and the stats (added and deleted lines)
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 |
# File 'lib/oxidized/output/git.rb', line 111 def get_diff node, group, oid1, oid2 begin repo = @cfg.repo diff_commits = nil if group && group != '' repo = File.join File.dirname(repo), group + '.git' end repo = Rugged::Repository.new repo commit = repo.lookup(oid1) #if the second revision is precised if oid2 commit_old = repo.lookup(oid2) diff = repo.diff(commit_old, commit) diff.each do |patch| if /#{node}\s+/.match(patch.to_s.lines.first) diff_commits = {:patch => patch.to_s, :stat => patch.stat} break end end #else gives the diffs between the first oid and his first parrent else stat = commit.parents[0].diff(commit).stat stat = [stat[1],stat[2]] patch = commit.parents[0].diff(commit).patch diff_commits = {:patch => patch, :stat => stat} end diff_commits rescue 'no diffs' end end |
#get_version(node, group, oid) ⇒ Object
give the blob of a specific revision
97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/oxidized/output/git.rb', line 97 def get_version node, group, oid begin repo = @cfg.repo if group && group != '' repo = File.join File.dirname(repo), group + '.git' end repo = Rugged::Repository.new repo repo.blob_at(oid,node).content rescue 'version not found' end end |
#setup ⇒ Object
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/oxidized/output/git.rb', line 14 def setup if @cfg.empty? CFGS.user.output.git.user = 'Oxidized' CFGS.user.output.git.email = '[email protected]' CFGS.user.output.git.repo = File.join(Config::Root, 'oxidized.git') CFGS.save :user raise NoConfig, 'no output git config, edit ~/.config/oxidized/config' end @cfg.repo = File. @cfg.repo end |
#store(file, outputs, opt = {}) ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/oxidized/output/git.rb', line 25 def store file, outputs, opt={} @msg = opt[:msg] @user = (opt[:user] or @cfg.user) @email = (opt[:email] or @cfg.email) @opt = opt repo = @cfg.repo outputs.types.each do |type| type_cfg = '' type_repo = File.join File.dirname(repo), type + '.git' outputs.type(type).each do |output| (type_cfg << output; next) if not output.name type_file = file + '--' + output.name if @cfg.type_as_directory? type_file = type + '/' + type_file type_repo = repo end update type_repo, type_file, output end update type_repo, file, type_cfg end update repo, file, outputs.to_cfg end |
#version(node, group) ⇒ Object
give a hash of all oid revision for the givin node, and the date of the commit
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 |
# File 'lib/oxidized/output/git.rb', line 67 def version node, group begin repo = @cfg.repo if group repo = File.join File.dirname(repo), group + '.git' end repo = Rugged::Repository.new repo walker = Rugged::Walker.new(repo) walker.sorting(Rugged::SORT_DATE) walker.push(repo.head.target) i = -1 tab = [] walker.each do |commit| if commit.diff(paths: [node]).size > 0 hash = {} hash[:date] = commit.time.to_s hash[:oid] = commit.oid hash[:author] = commit. hash[:message] = commit. tab[i += 1] = hash end end walker.reset tab rescue 'node not found' end end |