Skip to content
Snippets Groups Projects
Commit 990a0b07 authored by Yuya Nishihara's avatar Yuya Nishihara
Browse files

formatter: factor out function that detects node change and document it

This prepares for demand loading of ctx/fctx objects. With this change,
'revcache' is also recreated if 'node' value changes, which will be needed
to support loading of ctx from (repo, node) pair.
parent 109b2c2d
No related branches found
No related tags found
No related merge requests found
......@@ -567,5 +567,5 @@
def populatemap(self, context, origmapping, newmapping):
mapping = {}
if self._hasctx(newmapping):
if self._hasnodespec(newmapping):
mapping['revcache'] = {} # per-ctx cache
......@@ -571,6 +571,5 @@
mapping['revcache'] = {} # per-ctx cache
if (('node' in origmapping or self._hasctx(origmapping))
and ('node' in newmapping or self._hasctx(newmapping))):
if self._hasnodespec(origmapping) and self._hasnodespec(newmapping):
orignode = templateutil.runsymbol(context, origmapping, 'node')
mapping['originalnode'] = orignode
return mapping
......@@ -581,8 +580,9 @@
return v
return self._resmap.get(key)
def _hasctx(self, mapping):
return 'ctx' in mapping
def _hasnodespec(self, mapping):
"""Test if context revision is set or unset in the given mapping"""
return 'node' in mapping or 'ctx' in mapping
def formatter(ui, out, topic, opts):
template = opts.get("template", "")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment