[Updated] D12612: upgrade: split some logic from UpgradeOperation
baymax (Baymax, Your Personal Patch-care Companion)
phabricator at mercurial-scm.org
Thu May 19 10:37:19 UTC 2022
baymax added a comment.
baymax edited the summary of this revision.
baymax updated this revision to Diff 33410.
✅ refresh by Heptapod after a successful CI run (🐙 💚)
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D12612?vs=33364&id=33410
BRANCH
default
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D12612/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D12612
AFFECTED FILES
mercurial/upgrade_utils/actions.py
CHANGE DETAILS
diff --git a/mercurial/upgrade_utils/actions.py b/mercurial/upgrade_utils/actions.py
--- a/mercurial/upgrade_utils/actions.py
+++ b/mercurial/upgrade_utils/actions.py
@@ -685,7 +685,24 @@
return newactions
-class UpgradeOperation:
+class BaseOperation:
+ """base class that contains the minimum for an upgrade to work
+
+ (this might need to be extended as the usage for subclass alternative to
+ UpgradeOperation extends)
+ """
+
+ def __init__(
+ self,
+ new_requirements,
+ backup_store,
+ ):
+ self.new_requirements = new_requirements
+ # should this operation create a backup of the store
+ self.backup_store = backup_store
+
+
+class UpgradeOperation(BaseOperation):
"""represent the work to be done during an upgrade"""
def __init__(
@@ -698,8 +715,11 @@
revlogs_to_process,
backup_store,
):
+ super().__init__(
+ new_requirements,
+ backup_store,
+ )
self.ui = ui
- self.new_requirements = new_requirements
self.current_requirements = current_requirements
# list of upgrade actions the operation will perform
self.upgrade_actions = upgrade_actions
@@ -741,9 +761,6 @@
b're-delta-multibase' in upgrade_actions_names
)
- # should this operation create a backup of the store
- self.backup_store = backup_store
-
@property
def upgrade_actions_names(self):
return set([a.name for a in self.upgrade_actions])
To: marmoute, #hg-reviewers, Alphare
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20220519/bb0f2d22/attachment-0002.html>
More information about the Mercurial-patches
mailing list