##// END OF EJS Templates
scm: git: use "-c log.decorate=no" option instead of "--no-decorate" of "git log" above Git 1.7.2 (#8081, #8083)....
Toshi MARUYAMA -
r5229:b23bf1f2999b
parent child
Show More
@@ -1,357 +1,358
1 1 # redMine - project management software
2 2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 require 'redmine/scm/adapters/abstract_adapter'
19 19
20 20 module Redmine
21 21 module Scm
22 22 module Adapters
23 23 class GitAdapter < AbstractAdapter
24 24
25 25 SCM_GIT_REPORT_LAST_COMMIT = true
26 26
27 27 # Git executable name
28 28 GIT_BIN = Redmine::Configuration['scm_git_command'] || "git"
29 29
30 30 # raised if scm command exited with error, e.g. unknown revision.
31 31 class ScmCommandAborted < CommandFailed; end
32 32
33 33 class << self
34 34 def client_command
35 35 @@bin ||= GIT_BIN
36 36 end
37 37
38 38 def sq_bin
39 39 @@sq_bin ||= shell_quote(GIT_BIN)
40 40 end
41 41
42 42 def client_version
43 43 @@client_version ||= (scm_command_version || [])
44 44 end
45 45
46 46 def client_available
47 47 !client_version.empty?
48 48 end
49 49
50 50 def scm_command_version
51 51 scm_version = scm_version_from_command_line.dup
52 52 if scm_version.respond_to?(:force_encoding)
53 53 scm_version.force_encoding('ASCII-8BIT')
54 54 end
55 55 if m = scm_version.match(%r{\A(.*?)((\d+\.)+\d+)})
56 56 m[2].scan(%r{\d+}).collect(&:to_i)
57 57 end
58 58 end
59 59
60 60 def scm_version_from_command_line
61 61 shellout("#{sq_bin} --version --no-color") { |io| io.read }.to_s
62 62 end
63 63 end
64 64
65 65 def initialize(url, root_url=nil, login=nil, password=nil, path_encoding=nil)
66 66 super
67 67 @path_encoding = path_encoding || 'UTF-8'
68 68 @flag_report_last_commit = SCM_GIT_REPORT_LAST_COMMIT
69 69 end
70 70
71 71 def info
72 72 begin
73 73 Info.new(:root_url => url, :lastrev => lastrev('',nil))
74 74 rescue
75 75 nil
76 76 end
77 77 end
78 78
79 79 def branches
80 80 return @branches if @branches
81 81 @branches = []
82 82 cmd_args = %w|branch --no-color|
83 83 scm_cmd(*cmd_args) do |io|
84 84 io.each_line do |line|
85 85 @branches << line.match('\s*\*?\s*(.*)$')[1]
86 86 end
87 87 end
88 88 @branches.sort!
89 89 rescue ScmCommandAborted
90 90 nil
91 91 end
92 92
93 93 def tags
94 94 return @tags if @tags
95 95 cmd_args = %w|tag|
96 96 scm_cmd(*cmd_args) do |io|
97 97 @tags = io.readlines.sort!.map{|t| t.strip}
98 98 end
99 99 rescue ScmCommandAborted
100 100 nil
101 101 end
102 102
103 103 def default_branch
104 104 bras = self.branches
105 105 return nil if bras.nil?
106 106 bras.include?('master') ? 'master' : bras.first
107 107 end
108 108
109 109 def entries(path=nil, identifier=nil)
110 110 path ||= ''
111 111 p = scm_iconv(@path_encoding, 'UTF-8', path)
112 112 entries = Entries.new
113 113 cmd_args = %w|ls-tree -l|
114 114 cmd_args << "HEAD:#{p}" if identifier.nil?
115 115 cmd_args << "#{identifier}:#{p}" if identifier
116 116 scm_cmd(*cmd_args) do |io|
117 117 io.each_line do |line|
118 118 e = line.chomp.to_s
119 119 if e =~ /^\d+\s+(\w+)\s+([0-9a-f]{40})\s+([0-9-]+)\t(.+)$/
120 120 type = $1
121 121 sha = $2
122 122 size = $3
123 123 name = $4
124 124 if name.respond_to?(:force_encoding)
125 125 name.force_encoding(@path_encoding)
126 126 end
127 127 full_path = p.empty? ? name : "#{p}/#{name}"
128 128 n = scm_iconv('UTF-8', @path_encoding, name)
129 129 full_p = scm_iconv('UTF-8', @path_encoding, full_path)
130 130 entries << Entry.new({:name => n,
131 131 :path => full_p,
132 132 :kind => (type == "tree") ? 'dir' : 'file',
133 133 :size => (type == "tree") ? nil : size,
134 134 :lastrev => @flag_report_last_commit ? lastrev(full_path, identifier) : Revision.new
135 135 }) unless entries.detect{|entry| entry.name == name}
136 136 end
137 137 end
138 138 end
139 139 entries.sort_by_name
140 140 rescue ScmCommandAborted
141 141 nil
142 142 end
143 143
144 144 def lastrev(path, rev)
145 145 return nil if path.nil?
146 cmd_args = %w|log --no-decorate --no-color --encoding=UTF-8 --date=iso --pretty=fuller --no-merges -n 1|
146 cmd_args = %w|log --no-color --encoding=UTF-8 --date=iso --pretty=fuller --no-merges -n 1|
147 147 cmd_args << rev if rev
148 148 cmd_args << "--" << path unless path.empty?
149 149 lines = []
150 150 scm_cmd(*cmd_args) { |io| lines = io.readlines }
151 151 begin
152 152 id = lines[0].split[1]
153 153 author = lines[1].match('Author:\s+(.*)$')[1]
154 154 time = Time.parse(lines[4].match('CommitDate:\s+(.*)$')[1])
155 155
156 156 Revision.new({
157 157 :identifier => id,
158 158 :scmid => id,
159 159 :author => author,
160 160 :time => time,
161 161 :message => nil,
162 162 :paths => nil
163 163 })
164 164 rescue NoMethodError => e
165 165 logger.error("The revision '#{path}' has a wrong format")
166 166 return nil
167 167 end
168 168 rescue ScmCommandAborted
169 169 nil
170 170 end
171 171
172 172 def revisions(path, identifier_from, identifier_to, options={})
173 173 revisions = Revisions.new
174 cmd_args = %w|log --no-decorate --no-color --encoding=UTF-8 --raw --date=iso --pretty=fuller|
174 cmd_args = %w|log --no-color --encoding=UTF-8 --raw --date=iso --pretty=fuller|
175 175 cmd_args << "--reverse" if options[:reverse]
176 176 cmd_args << "--all" if options[:all]
177 177 cmd_args << "-n" << "#{options[:limit].to_i}" if options[:limit]
178 178 from_to = ""
179 179 from_to << "#{identifier_from}.." if identifier_from
180 180 from_to << "#{identifier_to}" if identifier_to
181 181 cmd_args << from_to if !from_to.empty?
182 182 cmd_args << "--since=#{options[:since].strftime("%Y-%m-%d %H:%M:%S")}" if options[:since]
183 183 cmd_args << "--" << scm_iconv(@path_encoding, 'UTF-8', path) if path && !path.empty?
184 184
185 185 scm_cmd *cmd_args do |io|
186 186 files=[]
187 187 changeset = {}
188 188 parsing_descr = 0 #0: not parsing desc or files, 1: parsing desc, 2: parsing files
189 189
190 190 io.each_line do |line|
191 191 if line =~ /^commit ([0-9a-f]{40})$/
192 192 key = "commit"
193 193 value = $1
194 194 if (parsing_descr == 1 || parsing_descr == 2)
195 195 parsing_descr = 0
196 196 revision = Revision.new({
197 197 :identifier => changeset[:commit],
198 198 :scmid => changeset[:commit],
199 199 :author => changeset[:author],
200 200 :time => Time.parse(changeset[:date]),
201 201 :message => changeset[:description],
202 202 :paths => files
203 203 })
204 204 if block_given?
205 205 yield revision
206 206 else
207 207 revisions << revision
208 208 end
209 209 changeset = {}
210 210 files = []
211 211 end
212 212 changeset[:commit] = $1
213 213 elsif (parsing_descr == 0) && line =~ /^(\w+):\s*(.*)$/
214 214 key = $1
215 215 value = $2
216 216 if key == "Author"
217 217 changeset[:author] = value
218 218 elsif key == "CommitDate"
219 219 changeset[:date] = value
220 220 end
221 221 elsif (parsing_descr == 0) && line.chomp.to_s == ""
222 222 parsing_descr = 1
223 223 changeset[:description] = ""
224 224 elsif (parsing_descr == 1 || parsing_descr == 2) \
225 225 && line =~ /^:\d+\s+\d+\s+[0-9a-f.]+\s+[0-9a-f.]+\s+(\w)\t(.+)$/
226 226 parsing_descr = 2
227 227 fileaction = $1
228 228 filepath = $2
229 229 p = scm_iconv('UTF-8', @path_encoding, filepath)
230 230 files << {:action => fileaction, :path => p}
231 231 elsif (parsing_descr == 1 || parsing_descr == 2) \
232 232 && line =~ /^:\d+\s+\d+\s+[0-9a-f.]+\s+[0-9a-f.]+\s+(\w)\d+\s+(\S+)\t(.+)$/
233 233 parsing_descr = 2
234 234 fileaction = $1
235 235 filepath = $3
236 236 p = scm_iconv('UTF-8', @path_encoding, filepath)
237 237 files << {:action => fileaction, :path => p}
238 238 elsif (parsing_descr == 1) && line.chomp.to_s == ""
239 239 parsing_descr = 2
240 240 elsif (parsing_descr == 1)
241 241 changeset[:description] << line[4..-1]
242 242 end
243 243 end
244 244
245 245 if changeset[:commit]
246 246 revision = Revision.new({
247 247 :identifier => changeset[:commit],
248 248 :scmid => changeset[:commit],
249 249 :author => changeset[:author],
250 250 :time => Time.parse(changeset[:date]),
251 251 :message => changeset[:description],
252 252 :paths => files
253 253 })
254 254
255 255 if block_given?
256 256 yield revision
257 257 else
258 258 revisions << revision
259 259 end
260 260 end
261 261 end
262 262 revisions
263 263 rescue ScmCommandAborted
264 264 revisions
265 265 end
266 266
267 267 def diff(path, identifier_from, identifier_to=nil)
268 268 path ||= ''
269 269 cmd_args = []
270 270 if identifier_to
271 271 cmd_args << "diff" << "--no-color" << identifier_to << identifier_from
272 272 else
273 273 cmd_args << "show" << "--no-color" << identifier_from
274 274 end
275 275 cmd_args << "--" << scm_iconv(@path_encoding, 'UTF-8', path) unless path.empty?
276 276 diff = []
277 277 scm_cmd *cmd_args do |io|
278 278 io.each_line do |line|
279 279 diff << line
280 280 end
281 281 end
282 282 diff
283 283 rescue ScmCommandAborted
284 284 nil
285 285 end
286 286
287 287 def annotate(path, identifier=nil)
288 288 identifier = 'HEAD' if identifier.blank?
289 289 cmd_args = %w|blame|
290 290 cmd_args << "-p" << identifier << "--" << scm_iconv(@path_encoding, 'UTF-8', path)
291 291 blame = Annotate.new
292 292 content = nil
293 293 scm_cmd(*cmd_args) { |io| io.binmode; content = io.read }
294 294 # git annotates binary files
295 295 return nil if content.is_binary_data?
296 296 identifier = ''
297 297 # git shows commit author on the first occurrence only
298 298 authors_by_commit = {}
299 299 content.split("\n").each do |line|
300 300 if line =~ /^([0-9a-f]{39,40})\s.*/
301 301 identifier = $1
302 302 elsif line =~ /^author (.+)/
303 303 authors_by_commit[identifier] = $1.strip
304 304 elsif line =~ /^\t(.*)/
305 305 blame.add_line($1, Revision.new(
306 306 :identifier => identifier,
307 307 :author => authors_by_commit[identifier]))
308 308 identifier = ''
309 309 author = ''
310 310 end
311 311 end
312 312 blame
313 313 rescue ScmCommandAborted
314 314 nil
315 315 end
316 316
317 317 def cat(path, identifier=nil)
318 318 if identifier.nil?
319 319 identifier = 'HEAD'
320 320 end
321 321 cmd_args = %w|show --no-color|
322 322 cmd_args << "#{identifier}:#{scm_iconv(@path_encoding, 'UTF-8', path)}"
323 323 cat = nil
324 324 scm_cmd(*cmd_args) do |io|
325 325 io.binmode
326 326 cat = io.read
327 327 end
328 328 cat
329 329 rescue ScmCommandAborted
330 330 nil
331 331 end
332 332
333 333 class Revision < Redmine::Scm::Adapters::Revision
334 334 # Returns the readable identifier
335 335 def format_identifier
336 336 identifier[0,8]
337 337 end
338 338 end
339 339
340 340 def scm_cmd(*args, &block)
341 341 repo_path = root_url || url
342 342 full_args = [GIT_BIN, '--git-dir', repo_path]
343 343 if self.class.client_version_above?([1, 7, 2])
344 344 full_args << '-c' << 'core.quotepath=false'
345 full_args << '-c' << 'log.decorate=no'
345 346 end
346 347 full_args += args
347 348 ret = shellout(full_args.map { |e| shell_quote e.to_s }.join(' '), &block)
348 349 if $? && $?.exitstatus != 0
349 350 raise ScmCommandAborted, "git exited with non-zero status: #{$?.exitstatus}"
350 351 end
351 352 ret
352 353 end
353 354 private :scm_cmd
354 355 end
355 356 end
356 357 end
357 358 end
General Comments 0
You need to be logged in to leave comments. Login now