Mercurial adapter:
* fetch changesets by batches of 100 (rather than in a single transaction) * fix: fetch_changesets tries to re-insert the last revision that exists in the db (#860) git-svn-id: http://redmine.rubyforge.org/svn/trunk@1255 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
a59e6bfb02
commit
01fdaf5977
|
@ -51,14 +51,18 @@ class Repository::Mercurial < Repository
|
||||||
scm_info = scm.info
|
scm_info = scm.info
|
||||||
if scm_info
|
if scm_info
|
||||||
# latest revision found in database
|
# latest revision found in database
|
||||||
db_revision = latest_changeset ? latest_changeset.revision : nil
|
db_revision = latest_changeset ? latest_changeset.revision.to_i : -1
|
||||||
# latest revision in the repository
|
# latest revision in the repository
|
||||||
scm_revision = scm_info.lastrev.identifier.to_i
|
scm_revision = scm_info.lastrev.identifier.to_i
|
||||||
|
if db_revision < scm_revision
|
||||||
unless changesets.find_by_revision(scm_revision)
|
logger.debug "Fetching changesets for repository #{url}" if logger && logger.debug?
|
||||||
revisions = scm.revisions('', db_revision, nil)
|
identifier_from = db_revision + 1
|
||||||
|
while (identifier_from <= scm_revision)
|
||||||
|
# loads changesets by batches of 100
|
||||||
|
identifier_to = [identifier_from + 99, scm_revision].min
|
||||||
|
revisions = scm.revisions('', identifier_from, identifier_to, :with_paths => true)
|
||||||
transaction do
|
transaction do
|
||||||
revisions.reverse_each do |revision|
|
revisions.each do |revision|
|
||||||
changeset = Changeset.create(:repository => self,
|
changeset = Changeset.create(:repository => self,
|
||||||
:revision => revision.identifier,
|
:revision => revision.identifier,
|
||||||
:scmid => revision.scmid,
|
:scmid => revision.scmid,
|
||||||
|
@ -74,6 +78,8 @@ class Repository::Mercurial < Repository
|
||||||
:from_revision => change[:from_revision])
|
:from_revision => change[:from_revision])
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end unless revisions.nil?
|
||||||
|
identifier_from = identifier_to + 1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -71,7 +71,11 @@ module Redmine
|
||||||
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
|
revisions = Revisions.new
|
||||||
cmd = "#{HG_BIN} -v -R #{target('')} log"
|
cmd = "#{HG_BIN} -v -R #{target('')} log"
|
||||||
cmd << " -r #{identifier_from.to_i}:" if identifier_from
|
if identifier_from && identifier_to
|
||||||
|
cmd << " -r #{identifier_from.to_i}:#{identifier_to.to_i}"
|
||||||
|
elsif identifier_from
|
||||||
|
cmd << " -r #{identifier_from.to_i}:"
|
||||||
|
end
|
||||||
cmd << " --limit #{options[:limit].to_i}" if options[:limit]
|
cmd << " --limit #{options[:limit].to_i}" if options[:limit]
|
||||||
shellout(cmd) do |io|
|
shellout(cmd) do |io|
|
||||||
changeset = {}
|
changeset = {}
|
||||||
|
|
Loading…
Reference in New Issue