scm: mercurial: rewrite MercurialAdapter#revisions as an iterator (#4455).
Now it uses XmlMini.parse() in place of slow REXML. Contributed by Yuya Nishihara. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4848 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
08ed9cb5d5
commit
8acdda9816
|
@ -117,53 +117,45 @@ module Redmine
|
||||||
entries.sort_by_name
|
entries.sort_by_name
|
||||||
end
|
end
|
||||||
|
|
||||||
# Fetch the revisions by using a template file that
|
|
||||||
# makes Mercurial produce a xml output.
|
|
||||||
def revisions(path=nil, identifier_from=nil, identifier_to=nil, options={})
|
def revisions(path=nil, identifier_from=nil, identifier_to=nil, options={})
|
||||||
revisions = Revisions.new
|
revs = Revisions.new
|
||||||
cmd = "#{self.class.sq_bin} --debug --encoding utf8 -R #{target('')} log -C --style #{shell_quote self.class.template_path}"
|
each_revision(path, identifier_from, identifier_to, options) { |e| revs << e }
|
||||||
if identifier_from && identifier_to
|
revs
|
||||||
cmd << " -r #{hgrev(identifier_from, true)}:#{hgrev(identifier_to, true)}"
|
|
||||||
elsif identifier_from
|
|
||||||
cmd << " -r #{hgrev(identifier_from, true)}:"
|
|
||||||
end
|
end
|
||||||
cmd << " --limit #{options[:limit].to_i}" if options[:limit]
|
|
||||||
cmd << " #{shell_quote path}" unless path.blank?
|
|
||||||
shellout(cmd) do |io|
|
|
||||||
begin
|
|
||||||
# HG doesn't close the XML Document...
|
|
||||||
doc = REXML::Document.new(io.read << "</log>")
|
|
||||||
doc.elements.each("log/logentry") do |logentry|
|
|
||||||
paths = []
|
|
||||||
copies = logentry.get_elements('paths/path-copied')
|
|
||||||
logentry.elements.each("paths/path") do |path|
|
|
||||||
# Detect if the added file is a copy
|
|
||||||
if path.attributes['action'] == 'A' and c = copies.find{ |e| e.text == path.text }
|
|
||||||
from_path = c.attributes['copyfrom-path']
|
|
||||||
from_rev = logentry.attributes['revision']
|
|
||||||
end
|
|
||||||
paths << {:action => path.attributes['action'],
|
|
||||||
:path => "/#{CGI.unescape(path.text)}",
|
|
||||||
:from_path => from_path ? "/#{CGI.unescape(from_path)}" : nil,
|
|
||||||
:from_revision => from_rev ? from_rev : nil
|
|
||||||
}
|
|
||||||
end
|
|
||||||
paths.sort! { |x,y| x[:path] <=> y[:path] }
|
|
||||||
|
|
||||||
revisions << Revision.new({:revision => logentry.attributes['revision'],
|
# Iterates the revisions by using a template file that
|
||||||
:scmid => logentry.attributes['node'],
|
# makes Mercurial produce a xml output.
|
||||||
:author => (logentry.elements['author'] ? logentry.elements['author'].text : ""),
|
def each_revision(path=nil, identifier_from=nil, identifier_to=nil, options={})
|
||||||
:time => Time.parse(logentry.elements['date'].text).localtime,
|
hg_args = ['log', '--debug', '-C', '--style', self.class.template_path]
|
||||||
:message => logentry.elements['msg'].text,
|
hg_args << '-r' << "#{hgrev(identifier_from)}:#{hgrev(identifier_to)}"
|
||||||
:paths => paths,
|
hg_args << '--limit' << options[:limit] if options[:limit]
|
||||||
})
|
hg_args << hgtarget(path) unless path.blank?
|
||||||
|
log = hg(*hg_args) do |io|
|
||||||
|
# Mercurial < 1.5 does not support footer template for '</log>'
|
||||||
|
ActiveSupport::XmlMini.parse("#{io.read}</log>")['log']
|
||||||
end
|
end
|
||||||
rescue
|
|
||||||
logger.debug($!)
|
as_ary(log['logentry']).each do |le|
|
||||||
|
cpalist = as_ary(le['paths']['path-copied']).map do |e|
|
||||||
|
[e['__content__'], e['copyfrom-path']].map { |s| CGI.unescape(s) }
|
||||||
end
|
end
|
||||||
|
cpmap = Hash[*cpalist.flatten]
|
||||||
|
|
||||||
|
paths = as_ary(le['paths']['path']).map do |e|
|
||||||
|
p = CGI.unescape(e['__content__'])
|
||||||
|
{:action => e['action'], :path => with_leading_slash(p),
|
||||||
|
:from_path => (cpmap.member?(p) ? with_leading_slash(cpmap[p]) : nil),
|
||||||
|
:from_revision => (cpmap.member?(p) ? le['revision'] : nil)}
|
||||||
|
end.sort { |a, b| a[:path] <=> b[:path] }
|
||||||
|
|
||||||
|
yield Revision.new(:revision => le['revision'],
|
||||||
|
:scmid => le['node'],
|
||||||
|
:author => (le['author']['__content__'] rescue ''),
|
||||||
|
:time => Time.parse(le['date']['__content__']).localtime,
|
||||||
|
:message => le['msg']['__content__'],
|
||||||
|
:paths => paths)
|
||||||
end
|
end
|
||||||
return nil if $? && $?.exitstatus != 0
|
self
|
||||||
revisions
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def diff(path, identifier_from, identifier_to=nil)
|
def diff(path, identifier_from, identifier_to=nil)
|
||||||
|
@ -249,6 +241,12 @@ module Redmine
|
||||||
root_url + '/' + without_leading_slash(path)
|
root_url + '/' + without_leading_slash(path)
|
||||||
end
|
end
|
||||||
private :hgtarget
|
private :hgtarget
|
||||||
|
|
||||||
|
def as_ary(o)
|
||||||
|
return [] unless o
|
||||||
|
o.is_a?(Array) ? o : Array[o]
|
||||||
|
end
|
||||||
|
private :as_ary
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue