import: get lock and wlock one time
authorVadim Gelfer <vadim.gelfer@gmail.com>
Fri, 11 Aug 2006 14:50:41 -0700
changeset 2854 7706fa503677
parent 2853 619f1c65384c
child 2858 c9b08cacf983
child 2860 b3d1145ed06c
child 2869 81f351c5264d
child 2943 8e59010158ce
import: get lock and wlock one time this makes import of many patches 6x faster in kernel repo.
mercurial/commands.py
--- a/mercurial/commands.py	Fri Aug 11 09:11:54 2006 +0200
+++ b/mercurial/commands.py	Fri Aug 11 14:50:41 2006 -0700
@@ -1822,6 +1822,9 @@
                         'retrieving revision [0-9]+(\.[0-9]+)*$|' +
                         '(---|\*\*\*)[ \t])', re.MULTILINE)
 
+    wlock = repo.wlock()
+    lock = repo.lock()
+
     for patch in patches:
         pf = os.path.join(d, patch)
 
@@ -1910,8 +1913,8 @@
                 cwd = repo.getcwd()
                 if cwd:
                     cfiles = [util.pathto(cwd, f) for f in files]
-                addremove_lock(ui, repo, cfiles, {})
-            repo.commit(files, message, user, date)
+                addremove_lock(ui, repo, cfiles, {}, wlock=wlock)
+            repo.commit(files, message, user, date, wlock=wlock, lock=lock)
         finally:
             os.unlink(tmpname)