##// END OF EJS Templates
wireproto: add streams to frame-based protocol...
wireproto: add streams to frame-based protocol Previously, the frame-based protocol was just a series of frames, with each frame associated with a request ID. In order to scale the protocol, we'll want to enable the use of compression. While it is possible to enable compression at the socket/pipe level, this has its disadvantages. The big one is it undermines the point of frames being standalone, atomic units that can be read and written: if you add compression above the framing protocol, you are back to having a stream-based protocol as opposed to something frame-based. So in order to preserve frames, compression needs to occur at the frame payload level. Compressing each frame's payload individually will limit compression ratios because the window size of the compressor will be limited by the max frame size, which is 32-64kb as currently defined. It will also add CPU overhead, as it is more efficient for compressors to operate on fewer, larger blocks of data than more, smaller blocks. So compressing each frame independently is out. This means we need to compress each frame's payload as if it is part of a larger stream. The simplest approach is to have 1 stream per connection. This could certainly work. However, it has disadvantages (documented below). We could also have 1 stream per RPC/command invocation. (This is the model HTTP/2 goes with.) This also has disadvantages. The main disadvantage to one global stream is that it has the very real potential to create CPU bottlenecks doing compression. Networks are only getting faster and the performance of single CPU cores has been relatively flat. Newer compression formats like zstandard offer better CPU cycle efficiency than predecessors like zlib. But it still all too common to saturate your CPU with compression overhead long before you saturate the network pipe. The main disadvantage with streams per request is that you can't reap the benefits of the compression context for multiple requests. For example, if you send 1000 RPC requests (or HTTP/2 requests for that matter), the response to each would have its own compression context. The overall size of the raw responses would be larger because compression contexts wouldn't be able to reference data from another request or response. The approach for streams as implemented in this commit is to support N streams per connection and for streams to potentially span requests and responses. As explained by the added internals docs, this facilitates servers and clients delegating independent streams and compression to independent threads / CPU cores. This helps alleviate the CPU bottleneck of compression. This design also allows compression contexts to be reused across requests/responses. This can result in improved compression ratios and less overhead for compressors and decompressors having to build new contexts. Another feature that was defined was the ability for individual frames within a stream to declare whether that individual frame's payload uses the content encoding (read: compression) defined by the stream. The idea here is that some servers may serve data from a combination of caches and dynamic resolution. Data coming from caches may be pre-compressed. We want to facilitate servers being able to essentially stream bytes from caches to the wire with minimal overhead. Being able to mix and match with frames are compressed within a stream enables these types of advanced server functionality. This commit defines the new streams mechanism. Basic code for supporting streams in frames has been added. But that code is seriously lacking and doesn't fully conform to the defined protocol. For example, we don't close any streams. And support for content encoding within streams is not yet implemented. The change was rather invasive and I didn't think it would be reasonable to implement the entire feature in a single commit. For the record, I would have loved to reuse an existing multiplexing protocol to build the new wire protocol on top of. However, I couldn't find a protocol that offers the performance and scaling characteristics that I desired. Namely, it should support multiple compression contexts to facilitate scaling out to multiple CPU cores and compression contexts should be able to live longer than single RPC requests. HTTP/2 *almost* fits the bill. But the semantics of HTTP message exchange state that streams can only live for a single request-response. We /could/ tunnel on top of HTTP/2 streams and frames with HEADER and DATA frames. But there's no guarantee that HTTP/2 libraries and proxies would allow us to use HTTP/2 streams and frames without the HTTP message exchange semantics defined in RFC 7540 Section 8. Other RPC protocols like gRPC tunnel are built on top of HTTP/2 and thus preserve its semantics of stream per RPC invocation. Even QUIC does this. We could attempt to invent a higher-level stream that spans HTTP/2 streams. But this would be violating HTTP/2 because there is no guarantee that HTTP/2 streams are routed to the same server. The best we can do - which is what this protocol does - is shoehorn all request and response data into a single HTTP message and create streams within. At that point, we've defined a Content-Type in HTTP parlance. It just so happens our media type can also work as a standalone, stream-based protocol, without leaning on HTTP or similar protocol. Differential Revision: https://phab.mercurial-scm.org/D2907

File last commit:

r37292:45987e2b default
r37304:9bfcbe4f default
Show More
templatekw.py
801 lines | 29.6 KiB | text/x-python | PythonLexer
# templatekw.py - common changeset template keywords
#
# Copyright 2005-2009 Matt Mackall <mpm@selenic.com>
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
from __future__ import absolute_import
from .i18n import _
from .node import (
hex,
nullid,
)
from . import (
encoding,
error,
hbisect,
i18n,
obsutil,
patch,
pycompat,
registrar,
scmutil,
templateutil,
util,
)
from .utils import (
stringutil,
)
_hybrid = templateutil.hybrid
_mappable = templateutil.mappable
hybriddict = templateutil.hybriddict
hybridlist = templateutil.hybridlist
compatdict = templateutil.compatdict
compatlist = templateutil.compatlist
_showcompatlist = templateutil._showcompatlist
def _showlist(name, values, templ, mapping, plural=None, separator=' '):
ui = mapping.get('ui')
if ui:
ui.deprecwarn("templatekw._showlist() is deprecated, use "
"templateutil._showcompatlist()", '4.6')
context = templ # this is actually a template context, not a templater
return _showcompatlist(context, mapping, name, values, plural, separator)
def showdict(name, data, mapping, plural=None, key='key', value='value',
fmt=None, separator=' '):
ui = mapping.get('ui')
if ui:
ui.deprecwarn("templatekw.showdict() is deprecated, use "
"templateutil.compatdict()", '4.6')
c = [{key: k, value: v} for k, v in data.iteritems()]
f = _showlist(name, c, mapping['templ'], mapping, plural, separator)
return hybriddict(data, key=key, value=value, fmt=fmt, gen=f)
def showlist(name, values, mapping, plural=None, element=None, separator=' '):
ui = mapping.get('ui')
if ui:
ui.deprecwarn("templatekw.showlist() is deprecated, use "
"templateutil.compatlist()", '4.6')
if not element:
element = name
f = _showlist(name, values, mapping['templ'], mapping, plural, separator)
return hybridlist(values, name=element, gen=f)
def getlatesttags(context, mapping, pattern=None):
'''return date, distance and name for the latest tag of rev'''
repo = context.resource(mapping, 'repo')
ctx = context.resource(mapping, 'ctx')
cache = context.resource(mapping, 'cache')
cachename = 'latesttags'
if pattern is not None:
cachename += '-' + pattern
match = stringutil.stringmatcher(pattern)[2]
else:
match = util.always
if cachename not in cache:
# Cache mapping from rev to a tuple with tag date, tag
# distance and tag name
cache[cachename] = {-1: (0, 0, ['null'])}
latesttags = cache[cachename]
rev = ctx.rev()
todo = [rev]
while todo:
rev = todo.pop()
if rev in latesttags:
continue
ctx = repo[rev]
tags = [t for t in ctx.tags()
if (repo.tagtype(t) and repo.tagtype(t) != 'local'
and match(t))]
if tags:
latesttags[rev] = ctx.date()[0], 0, [t for t in sorted(tags)]
continue
try:
ptags = [latesttags[p.rev()] for p in ctx.parents()]
if len(ptags) > 1:
if ptags[0][2] == ptags[1][2]:
# The tuples are laid out so the right one can be found by
# comparison in this case.
pdate, pdist, ptag = max(ptags)
else:
def key(x):
changessincetag = len(repo.revs('only(%d, %s)',
ctx.rev(), x[2][0]))
# Smallest number of changes since tag wins. Date is
# used as tiebreaker.
return [-changessincetag, x[0]]
pdate, pdist, ptag = max(ptags, key=key)
else:
pdate, pdist, ptag = ptags[0]
except KeyError:
# Cache miss - recurse
todo.append(rev)
todo.extend(p.rev() for p in ctx.parents())
continue
latesttags[rev] = pdate, pdist + 1, ptag
return latesttags[rev]
def getrenamedfn(repo, endrev=None):
rcache = {}
if endrev is None:
endrev = len(repo)
def getrenamed(fn, rev):
'''looks up all renames for a file (up to endrev) the first
time the file is given. It indexes on the changerev and only
parses the manifest if linkrev != changerev.
Returns rename info for fn at changerev rev.'''
if fn not in rcache:
rcache[fn] = {}
fl = repo.file(fn)
for i in fl:
lr = fl.linkrev(i)
renamed = fl.renamed(fl.node(i))
rcache[fn][lr] = renamed
if lr >= endrev:
break
if rev in rcache[fn]:
return rcache[fn][rev]
# If linkrev != rev (i.e. rev not found in rcache) fallback to
# filectx logic.
try:
return repo[rev][fn].renamed()
except error.LookupError:
return None
return getrenamed
def getlogcolumns():
"""Return a dict of log column labels"""
_ = pycompat.identity # temporarily disable gettext
# i18n: column positioning for "hg log"
columns = _('bookmark: %s\n'
'branch: %s\n'
'changeset: %s\n'
'copies: %s\n'
'date: %s\n'
'extra: %s=%s\n'
'files+: %s\n'
'files-: %s\n'
'files: %s\n'
'instability: %s\n'
'manifest: %s\n'
'obsolete: %s\n'
'parent: %s\n'
'phase: %s\n'
'summary: %s\n'
'tag: %s\n'
'user: %s\n')
return dict(zip([s.split(':', 1)[0] for s in columns.splitlines()],
i18n._(columns).splitlines(True)))
# default templates internally used for rendering of lists
defaulttempl = {
'parent': '{rev}:{node|formatnode} ',
'manifest': '{rev}:{node|formatnode}',
'file_copy': '{name} ({source})',
'envvar': '{key}={value}',
'extra': '{key}={value|stringescape}'
}
# filecopy is preserved for compatibility reasons
defaulttempl['filecopy'] = defaulttempl['file_copy']
# keywords are callables (see registrar.templatekeyword for details)
keywords = {}
templatekeyword = registrar.templatekeyword(keywords)
@templatekeyword('author', requires={'ctx'})
def showauthor(context, mapping):
"""String. The unmodified author of the changeset."""
ctx = context.resource(mapping, 'ctx')
return ctx.user()
@templatekeyword('bisect', requires={'repo', 'ctx'})
def showbisect(context, mapping):
"""String. The changeset bisection status."""
repo = context.resource(mapping, 'repo')
ctx = context.resource(mapping, 'ctx')
return hbisect.label(repo, ctx.node())
@templatekeyword('branch', requires={'ctx'})
def showbranch(context, mapping):
"""String. The name of the branch on which the changeset was
committed.
"""
ctx = context.resource(mapping, 'ctx')
return ctx.branch()
@templatekeyword('branches', requires={'ctx'})
def showbranches(context, mapping):
"""List of strings. The name of the branch on which the
changeset was committed. Will be empty if the branch name was
default. (DEPRECATED)
"""
ctx = context.resource(mapping, 'ctx')
branch = ctx.branch()
if branch != 'default':
return compatlist(context, mapping, 'branch', [branch],
plural='branches')
return compatlist(context, mapping, 'branch', [], plural='branches')
@templatekeyword('bookmarks', requires={'repo', 'ctx'})
def showbookmarks(context, mapping):
"""List of strings. Any bookmarks associated with the
changeset. Also sets 'active', the name of the active bookmark.
"""
repo = context.resource(mapping, 'repo')
ctx = context.resource(mapping, 'ctx')
bookmarks = ctx.bookmarks()
active = repo._activebookmark
makemap = lambda v: {'bookmark': v, 'active': active, 'current': active}
f = _showcompatlist(context, mapping, 'bookmark', bookmarks)
return _hybrid(f, bookmarks, makemap, pycompat.identity)
@templatekeyword('children', requires={'ctx'})
def showchildren(context, mapping):
"""List of strings. The children of the changeset."""
ctx = context.resource(mapping, 'ctx')
childrevs = ['%d:%s' % (cctx.rev(), cctx) for cctx in ctx.children()]
return compatlist(context, mapping, 'children', childrevs, element='child')
# Deprecated, but kept alive for help generation a purpose.
@templatekeyword('currentbookmark', requires={'repo', 'ctx'})
def showcurrentbookmark(context, mapping):
"""String. The active bookmark, if it is associated with the changeset.
(DEPRECATED)"""
return showactivebookmark(context, mapping)
@templatekeyword('activebookmark', requires={'repo', 'ctx'})
def showactivebookmark(context, mapping):
"""String. The active bookmark, if it is associated with the changeset."""
repo = context.resource(mapping, 'repo')
ctx = context.resource(mapping, 'ctx')
active = repo._activebookmark
if active and active in ctx.bookmarks():
return active
return ''
@templatekeyword('date', requires={'ctx'})
def showdate(context, mapping):
"""Date information. The date when the changeset was committed."""
ctx = context.resource(mapping, 'ctx')
return ctx.date()
@templatekeyword('desc', requires={'ctx'})
def showdescription(context, mapping):
"""String. The text of the changeset description."""
ctx = context.resource(mapping, 'ctx')
s = ctx.description()
if isinstance(s, encoding.localstr):
# try hard to preserve utf-8 bytes
return encoding.tolocal(encoding.fromlocal(s).strip())
else:
return s.strip()
@templatekeyword('diffstat', requires={'ctx'})
def showdiffstat(context, mapping):
"""String. Statistics of changes with the following format:
"modified files: +added/-removed lines"
"""
ctx = context.resource(mapping, 'ctx')
stats = patch.diffstatdata(util.iterlines(ctx.diff(noprefix=False)))
maxname, maxtotal, adds, removes, binary = patch.diffstatsum(stats)
return '%d: +%d/-%d' % (len(stats), adds, removes)
@templatekeyword('envvars', requires={'ui'})
def showenvvars(context, mapping):
"""A dictionary of environment variables. (EXPERIMENTAL)"""
ui = context.resource(mapping, 'ui')
env = ui.exportableenviron()
env = util.sortdict((k, env[k]) for k in sorted(env))
return compatdict(context, mapping, 'envvar', env, plural='envvars')
@templatekeyword('extras', requires={'ctx'})
def showextras(context, mapping):
"""List of dicts with key, value entries of the 'extras'
field of this changeset."""
ctx = context.resource(mapping, 'ctx')
extras = ctx.extra()
extras = util.sortdict((k, extras[k]) for k in sorted(extras))
makemap = lambda k: {'key': k, 'value': extras[k]}
c = [makemap(k) for k in extras]
f = _showcompatlist(context, mapping, 'extra', c, plural='extras')
return _hybrid(f, extras, makemap,
lambda k: '%s=%s' % (k, stringutil.escapestr(extras[k])))
def _showfilesbystat(context, mapping, name, index):
repo = context.resource(mapping, 'repo')
ctx = context.resource(mapping, 'ctx')
revcache = context.resource(mapping, 'revcache')
if 'files' not in revcache:
revcache['files'] = repo.status(ctx.p1(), ctx)[:3]
files = revcache['files'][index]
return compatlist(context, mapping, name, files, element='file')
@templatekeyword('file_adds', requires={'repo', 'ctx', 'revcache'})
def showfileadds(context, mapping):
"""List of strings. Files added by this changeset."""
return _showfilesbystat(context, mapping, 'file_add', 1)
@templatekeyword('file_copies',
requires={'repo', 'ctx', 'cache', 'revcache'})
def showfilecopies(context, mapping):
"""List of strings. Files copied in this changeset with
their sources.
"""
repo = context.resource(mapping, 'repo')
ctx = context.resource(mapping, 'ctx')
cache = context.resource(mapping, 'cache')
copies = context.resource(mapping, 'revcache').get('copies')
if copies is None:
if 'getrenamed' not in cache:
cache['getrenamed'] = getrenamedfn(repo)
copies = []
getrenamed = cache['getrenamed']
for fn in ctx.files():
rename = getrenamed(fn, ctx.rev())
if rename:
copies.append((fn, rename[0]))
copies = util.sortdict(copies)
return compatdict(context, mapping, 'file_copy', copies,
key='name', value='source', fmt='%s (%s)',
plural='file_copies')
# showfilecopiesswitch() displays file copies only if copy records are
# provided before calling the templater, usually with a --copies
# command line switch.
@templatekeyword('file_copies_switch', requires={'revcache'})
def showfilecopiesswitch(context, mapping):
"""List of strings. Like "file_copies" but displayed
only if the --copied switch is set.
"""
copies = context.resource(mapping, 'revcache').get('copies') or []
copies = util.sortdict(copies)
return compatdict(context, mapping, 'file_copy', copies,
key='name', value='source', fmt='%s (%s)',
plural='file_copies')
@templatekeyword('file_dels', requires={'repo', 'ctx', 'revcache'})
def showfiledels(context, mapping):
"""List of strings. Files removed by this changeset."""
return _showfilesbystat(context, mapping, 'file_del', 2)
@templatekeyword('file_mods', requires={'repo', 'ctx', 'revcache'})
def showfilemods(context, mapping):
"""List of strings. Files modified by this changeset."""
return _showfilesbystat(context, mapping, 'file_mod', 0)
@templatekeyword('files', requires={'ctx'})
def showfiles(context, mapping):
"""List of strings. All files modified, added, or removed by this
changeset.
"""
ctx = context.resource(mapping, 'ctx')
return compatlist(context, mapping, 'file', ctx.files())
@templatekeyword('graphnode', requires={'repo', 'ctx'})
def showgraphnode(context, mapping):
"""String. The character representing the changeset node in an ASCII
revision graph."""
repo = context.resource(mapping, 'repo')
ctx = context.resource(mapping, 'ctx')
return getgraphnode(repo, ctx)
def getgraphnode(repo, ctx):
wpnodes = repo.dirstate.parents()
if wpnodes[1] == nullid:
wpnodes = wpnodes[:1]
if ctx.node() in wpnodes:
return '@'
elif ctx.obsolete():
return 'x'
elif ctx.isunstable():
return '*'
elif ctx.closesbranch():
return '_'
else:
return 'o'
@templatekeyword('graphwidth', requires=())
def showgraphwidth(context, mapping):
"""Integer. The width of the graph drawn by 'log --graph' or zero."""
# just hosts documentation; should be overridden by template mapping
return 0
@templatekeyword('index', requires=())
def showindex(context, mapping):
"""Integer. The current iteration of the loop. (0 indexed)"""
# just hosts documentation; should be overridden by template mapping
raise error.Abort(_("can't use index in this context"))
@templatekeyword('latesttag', requires={'repo', 'ctx', 'cache'})
def showlatesttag(context, mapping):
"""List of strings. The global tags on the most recent globally
tagged ancestor of this changeset. If no such tags exist, the list
consists of the single string "null".
"""
return showlatesttags(context, mapping, None)
def showlatesttags(context, mapping, pattern):
"""helper method for the latesttag keyword and function"""
latesttags = getlatesttags(context, mapping, pattern)
# latesttag[0] is an implementation detail for sorting csets on different
# branches in a stable manner- it is the date the tagged cset was created,
# not the date the tag was created. Therefore it isn't made visible here.
makemap = lambda v: {
'changes': _showchangessincetag,
'distance': latesttags[1],
'latesttag': v, # BC with {latesttag % '{latesttag}'}
'tag': v
}
tags = latesttags[2]
f = _showcompatlist(context, mapping, 'latesttag', tags, separator=':')
return _hybrid(f, tags, makemap, pycompat.identity)
@templatekeyword('latesttagdistance', requires={'repo', 'ctx', 'cache'})
def showlatesttagdistance(context, mapping):
"""Integer. Longest path to the latest tag."""
return getlatesttags(context, mapping)[1]
@templatekeyword('changessincelatesttag', requires={'repo', 'ctx', 'cache'})
def showchangessincelatesttag(context, mapping):
"""Integer. All ancestors not in the latest tag."""
tag = getlatesttags(context, mapping)[2][0]
mapping = context.overlaymap(mapping, {'tag': tag})
return _showchangessincetag(context, mapping)
def _showchangessincetag(context, mapping):
repo = context.resource(mapping, 'repo')
ctx = context.resource(mapping, 'ctx')
offset = 0
revs = [ctx.rev()]
tag = context.symbol(mapping, 'tag')
# The only() revset doesn't currently support wdir()
if ctx.rev() is None:
offset = 1
revs = [p.rev() for p in ctx.parents()]
return len(repo.revs('only(%ld, %s)', revs, tag)) + offset
# teach templater latesttags.changes is switched to (context, mapping) API
_showchangessincetag._requires = {'repo', 'ctx'}
@templatekeyword('manifest', requires={'repo', 'ctx'})
def showmanifest(context, mapping):
repo = context.resource(mapping, 'repo')
ctx = context.resource(mapping, 'ctx')
mnode = ctx.manifestnode()
if mnode is None:
# just avoid crash, we might want to use the 'ff...' hash in future
return
mrev = repo.manifestlog._revlog.rev(mnode)
mhex = hex(mnode)
mapping = context.overlaymap(mapping, {'rev': mrev, 'node': mhex})
f = context.process('manifest', mapping)
# TODO: perhaps 'ctx' should be dropped from mapping because manifest
# rev and node are completely different from changeset's.
return _mappable(f, None, f, lambda x: {'rev': mrev, 'node': mhex})
@templatekeyword('obsfate', requires={'ui', 'repo', 'ctx'})
def showobsfate(context, mapping):
# this function returns a list containing pre-formatted obsfate strings.
#
# This function will be replaced by templates fragments when we will have
# the verbosity templatekw available.
succsandmarkers = showsuccsandmarkers(context, mapping)
ui = context.resource(mapping, 'ui')
values = []
for x in succsandmarkers:
values.append(obsutil.obsfateprinter(x['successors'], x['markers'], ui))
return compatlist(context, mapping, "fate", values)
def shownames(context, mapping, namespace):
"""helper method to generate a template keyword for a namespace"""
repo = context.resource(mapping, 'repo')
ctx = context.resource(mapping, 'ctx')
ns = repo.names[namespace]
names = ns.names(repo, ctx.node())
return compatlist(context, mapping, ns.templatename, names,
plural=namespace)
@templatekeyword('namespaces', requires={'repo', 'ctx'})
def shownamespaces(context, mapping):
"""Dict of lists. Names attached to this changeset per
namespace."""
repo = context.resource(mapping, 'repo')
ctx = context.resource(mapping, 'ctx')
namespaces = util.sortdict()
def makensmapfn(ns):
# 'name' for iterating over namespaces, templatename for local reference
return lambda v: {'name': v, ns.templatename: v}
for k, ns in repo.names.iteritems():
names = ns.names(repo, ctx.node())
f = _showcompatlist(context, mapping, 'name', names)
namespaces[k] = _hybrid(f, names, makensmapfn(ns), pycompat.identity)
f = _showcompatlist(context, mapping, 'namespace', list(namespaces))
def makemap(ns):
return {
'namespace': ns,
'names': namespaces[ns],
'builtin': repo.names[ns].builtin,
'colorname': repo.names[ns].colorname,
}
return _hybrid(f, namespaces, makemap, pycompat.identity)
@templatekeyword('node', requires={'ctx'})
def shownode(context, mapping):
"""String. The changeset identification hash, as a 40 hexadecimal
digit string.
"""
ctx = context.resource(mapping, 'ctx')
return ctx.hex()
@templatekeyword('obsolete', requires={'ctx'})
def showobsolete(context, mapping):
"""String. Whether the changeset is obsolete. (EXPERIMENTAL)"""
ctx = context.resource(mapping, 'ctx')
if ctx.obsolete():
return 'obsolete'
return ''
@templatekeyword('peerurls', requires={'repo'})
def showpeerurls(context, mapping):
"""A dictionary of repository locations defined in the [paths] section
of your configuration file."""
repo = context.resource(mapping, 'repo')
# see commands.paths() for naming of dictionary keys
paths = repo.ui.paths
urls = util.sortdict((k, p.rawloc) for k, p in sorted(paths.iteritems()))
def makemap(k):
p = paths[k]
d = {'name': k, 'url': p.rawloc}
d.update((o, v) for o, v in sorted(p.suboptions.iteritems()))
return d
return _hybrid(None, urls, makemap, lambda k: '%s=%s' % (k, urls[k]))
@templatekeyword("predecessors", requires={'repo', 'ctx'})
def showpredecessors(context, mapping):
"""Returns the list if the closest visible successors. (EXPERIMENTAL)"""
repo = context.resource(mapping, 'repo')
ctx = context.resource(mapping, 'ctx')
predecessors = sorted(obsutil.closestpredecessors(repo, ctx.node()))
predecessors = map(hex, predecessors)
return _hybrid(None, predecessors,
lambda x: {'ctx': repo[x]},
lambda x: scmutil.formatchangeid(repo[x]))
@templatekeyword('reporoot', requires={'repo'})
def showreporoot(context, mapping):
"""String. The root directory of the current repository."""
repo = context.resource(mapping, 'repo')
return repo.root
@templatekeyword("successorssets", requires={'repo', 'ctx'})
def showsuccessorssets(context, mapping):
"""Returns a string of sets of successors for a changectx. Format used
is: [ctx1, ctx2], [ctx3] if ctx has been splitted into ctx1 and ctx2
while also diverged into ctx3. (EXPERIMENTAL)"""
repo = context.resource(mapping, 'repo')
ctx = context.resource(mapping, 'ctx')
if not ctx.obsolete():
return ''
ssets = obsutil.successorssets(repo, ctx.node(), closest=True)
ssets = [[hex(n) for n in ss] for ss in ssets]
data = []
for ss in ssets:
h = _hybrid(None, ss, lambda x: {'ctx': repo[x]},
lambda x: scmutil.formatchangeid(repo[x]))
data.append(h)
# Format the successorssets
def render(d):
return templateutil.stringify(context, mapping, d)
def gen(data):
yield "; ".join(render(d) for d in data)
return _hybrid(gen(data), data, lambda x: {'successorset': x},
pycompat.identity)
@templatekeyword("succsandmarkers", requires={'repo', 'ctx'})
def showsuccsandmarkers(context, mapping):
"""Returns a list of dict for each final successor of ctx. The dict
contains successors node id in "successors" keys and the list of
obs-markers from ctx to the set of successors in "markers".
(EXPERIMENTAL)
"""
repo = context.resource(mapping, 'repo')
ctx = context.resource(mapping, 'ctx')
values = obsutil.successorsandmarkers(repo, ctx)
if values is None:
values = []
# Format successors and markers to avoid exposing binary to templates
data = []
for i in values:
# Format successors
successors = i['successors']
successors = [hex(n) for n in successors]
successors = _hybrid(None, successors,
lambda x: {'ctx': repo[x]},
lambda x: scmutil.formatchangeid(repo[x]))
# Format markers
finalmarkers = []
for m in i['markers']:
hexprec = hex(m[0])
hexsucs = tuple(hex(n) for n in m[1])
hexparents = None
if m[5] is not None:
hexparents = tuple(hex(n) for n in m[5])
newmarker = (hexprec, hexsucs) + m[2:5] + (hexparents,) + m[6:]
finalmarkers.append(newmarker)
data.append({'successors': successors, 'markers': finalmarkers})
f = _showcompatlist(context, mapping, 'succsandmarkers', data)
return _hybrid(f, data, lambda x: x, pycompat.identity)
@templatekeyword('p1rev', requires={'ctx'})
def showp1rev(context, mapping):
"""Integer. The repository-local revision number of the changeset's
first parent, or -1 if the changeset has no parents."""
ctx = context.resource(mapping, 'ctx')
return ctx.p1().rev()
@templatekeyword('p2rev', requires={'ctx'})
def showp2rev(context, mapping):
"""Integer. The repository-local revision number of the changeset's
second parent, or -1 if the changeset has no second parent."""
ctx = context.resource(mapping, 'ctx')
return ctx.p2().rev()
@templatekeyword('p1node', requires={'ctx'})
def showp1node(context, mapping):
"""String. The identification hash of the changeset's first parent,
as a 40 digit hexadecimal string. If the changeset has no parents, all
digits are 0."""
ctx = context.resource(mapping, 'ctx')
return ctx.p1().hex()
@templatekeyword('p2node', requires={'ctx'})
def showp2node(context, mapping):
"""String. The identification hash of the changeset's second
parent, as a 40 digit hexadecimal string. If the changeset has no second
parent, all digits are 0."""
ctx = context.resource(mapping, 'ctx')
return ctx.p2().hex()
@templatekeyword('parents', requires={'repo', 'ctx'})
def showparents(context, mapping):
"""List of strings. The parents of the changeset in "rev:node"
format. If the changeset has only one "natural" parent (the predecessor
revision) nothing is shown."""
repo = context.resource(mapping, 'repo')
ctx = context.resource(mapping, 'ctx')
pctxs = scmutil.meaningfulparents(repo, ctx)
prevs = [p.rev() for p in pctxs]
parents = [[('rev', p.rev()),
('node', p.hex()),
('phase', p.phasestr())]
for p in pctxs]
f = _showcompatlist(context, mapping, 'parent', parents)
return _hybrid(f, prevs, lambda x: {'ctx': repo[x]},
lambda x: scmutil.formatchangeid(repo[x]), keytype=int)
@templatekeyword('phase', requires={'ctx'})
def showphase(context, mapping):
"""String. The changeset phase name."""
ctx = context.resource(mapping, 'ctx')
return ctx.phasestr()
@templatekeyword('phaseidx', requires={'ctx'})
def showphaseidx(context, mapping):
"""Integer. The changeset phase index. (ADVANCED)"""
ctx = context.resource(mapping, 'ctx')
return ctx.phase()
@templatekeyword('rev', requires={'ctx'})
def showrev(context, mapping):
"""Integer. The repository-local changeset revision number."""
ctx = context.resource(mapping, 'ctx')
return scmutil.intrev(ctx)
def showrevslist(context, mapping, name, revs):
"""helper to generate a list of revisions in which a mapped template will
be evaluated"""
repo = context.resource(mapping, 'repo')
f = _showcompatlist(context, mapping, name, ['%d' % r for r in revs])
return _hybrid(f, revs,
lambda x: {name: x, 'ctx': repo[x]},
pycompat.identity, keytype=int)
@templatekeyword('subrepos', requires={'ctx'})
def showsubrepos(context, mapping):
"""List of strings. Updated subrepositories in the changeset."""
ctx = context.resource(mapping, 'ctx')
substate = ctx.substate
if not substate:
return compatlist(context, mapping, 'subrepo', [])
psubstate = ctx.parents()[0].substate or {}
subrepos = []
for sub in substate:
if sub not in psubstate or substate[sub] != psubstate[sub]:
subrepos.append(sub) # modified or newly added in ctx
for sub in psubstate:
if sub not in substate:
subrepos.append(sub) # removed in ctx
return compatlist(context, mapping, 'subrepo', sorted(subrepos))
# don't remove "showtags" definition, even though namespaces will put
# a helper function for "tags" keyword into "keywords" map automatically,
# because online help text is built without namespaces initialization
@templatekeyword('tags', requires={'repo', 'ctx'})
def showtags(context, mapping):
"""List of strings. Any tags associated with the changeset."""
return shownames(context, mapping, 'tags')
@templatekeyword('termwidth', requires={'ui'})
def showtermwidth(context, mapping):
"""Integer. The width of the current terminal."""
ui = context.resource(mapping, 'ui')
return ui.termwidth()
@templatekeyword('instabilities', requires={'ctx'})
def showinstabilities(context, mapping):
"""List of strings. Evolution instabilities affecting the changeset.
(EXPERIMENTAL)
"""
ctx = context.resource(mapping, 'ctx')
return compatlist(context, mapping, 'instability', ctx.instabilities(),
plural='instabilities')
@templatekeyword('verbosity', requires={'ui'})
def showverbosity(context, mapping):
"""String. The current output verbosity in 'debug', 'quiet', 'verbose',
or ''."""
ui = context.resource(mapping, 'ui')
# see logcmdutil.changesettemplater for priority of these flags
if ui.debugflag:
return 'debug'
elif ui.quiet:
return 'quiet'
elif ui.verbose:
return 'verbose'
return ''
def loadkeyword(ui, extname, registrarobj):
"""Load template keyword from specified registrarobj
"""
for name, func in registrarobj._table.iteritems():
keywords[name] = func
# tell hggettext to extract docstrings from these functions:
i18nfunctions = keywords.values()