[PATCH 2 of 7 bm-refactor V2] bookmarks: factor out rename logic from commands

Sean Farley sean at farley.io
Wed Jun 21 16:45:09 EDT 2017


# HG changeset patch
# User Sean Farley <sean at farley.io>
# Date 1497377422 25200
#      Tue Jun 13 11:10:22 2017 -0700
# Branch bm-refactor
# Node ID 50f0aad403c1c79e5c6fff4788c215eceac18118
# Parent  afad435bfa048b562cd4e302f01d0456e7ad33c5
bookmarks: factor out rename logic from commands

While we're here, let's use fancy context managers. I believe this
should still work since our locks are re-entrant.

diff --git a/mercurial/bookmarks.py b/mercurial/bookmarks.py
index 0371a52..f0b9f5f 100644
--- a/mercurial/bookmarks.py
+++ b/mercurial/bookmarks.py
@@ -704,5 +704,27 @@ def delete(repo, tr, names):
                               mark)
         if mark == repo._activebookmark:
             deactivate(repo)
         del marks[mark]
     marks.recordchange(tr)
+
+def rename(repo, tr, old, new, force=False, inactive=False):
+    """rename a bookmark from old to new
+
+    If force is specified, then the new name can overwrite an existing
+    bookmark.
+
+    If inactive is specified, then do not activate the new bookmark.
+
+    Raises an abort error if old is not in the bookmark store.
+    """
+    marks = repo._bookmarks
+    mark = checkformat(repo, new)
+    if old not in marks:
+        raise error.Abort(_("bookmark '%s' does not exist")
+                          % old)
+    marks.checkconflict(mark, force)
+    marks[mark] = marks[old]
+    if repo._activebookmark == old and not inactive:
+        activate(repo, mark)
+    del marks[old]
+    marks.recordchange(tr)
diff --git a/mercurial/commands.py b/mercurial/commands.py
index 876fb3e..e882567 100644
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -980,19 +980,11 @@ def bookmark(ui, repo, *names, **opts):
                 tr = repo.transaction('bookmark')
                 if not names:
                     raise error.Abort(_("new bookmark name required"))
                 elif len(names) > 1:
                     raise error.Abort(_("only one new bookmark name allowed"))
-                mark = bookmarks.checkformat(repo, names[0])
-                if rename not in marks:
-                    raise error.Abort(_("bookmark '%s' does not exist")
-                                      % rename)
-                marks.checkconflict(mark, force)
-                marks[mark] = marks[rename]
-                if repo._activebookmark == rename and not inactive:
-                    bookmarks.activate(repo, mark)
-                del marks[rename]
+                bookmarks.rename(repo, tr, rename, names[0], force, inactive)
             elif names:
                 tr = repo.transaction('bookmark')
                 newact = None
                 for mark in names:
                     mark = bookmarks.checkformat(repo, mark)


More information about the Mercurial-devel mailing list