##// END OF EJS Templates
revsetbenchmark: add entry for ::rev::...
revsetbenchmark: add entry for ::rev:: Revsets of the form ::rev:: were identified as the source behind the regressions in issue 4201. Ensure we have explicit coverage of that revset.

File last commit:

r20856:8a6a86c9 default
r20861:c2a81aa1 default
Show More
bundle2.py
269 lines | 8.2 KiB | text/x-python | PythonLexer
Pierre-Yves David
bundle2: very first version of a bundle2 bundler...
r20801 # bundle2.py - generic container format to transmit arbitrary data.
#
# Copyright 2013 Facebook, Inc.
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
"""Handling of the new bundle2 format
The goal of bundle2 is to act as an atomically packet to transmit a set of
payloads in an application agnostic way. It consist in a sequence of "parts"
that will be handed to and processed by the application layer.
General format architecture
===========================
The format is architectured as follow
- magic string
- stream level parameters
- payload parts (any number)
- end of stream marker.
Pierre-Yves David
bundle2: support bundling of empty part (with a type)...
r20856 the Binary format
Pierre-Yves David
bundle2: very first version of a bundle2 bundler...
r20801 ============================
All numbers are unsigned and big endian.
stream level parameters
------------------------
Binary format is as follow
:params size: (16 bits integer)
The total number of Bytes used by the parameters
:params value: arbitrary number of Bytes
A blob of `params size` containing the serialized version of all stream level
parameters.
Pierre-Yves David
bundle2: support for bundling parameter value...
r20809 The blob contains a space separated list of parameters. parameter with value
Pierre-Yves David
bundle2: urlquote stream parameter name and value...
r20811 are stored in the form `<name>=<value>`. Both name and value are urlquoted.
Pierre-Yves David
bundle2: support bundling simple parameter...
r20804
Pierre-Yves David
bundle2: refuse empty parameter name...
r20813 Empty name are obviously forbidden.
Pierre-Yves David
bundle2: implement the mandatory/advisory logic for parameter...
r20844 Name MUST start with a letter. If this first letter is lower case, the
parameter is advisory and can be safefly ignored. However when the first
letter is capital, the parameter is mandatory and the bundling process MUST
stop if he is not able to proceed it.
Pierre-Yves David
bundle2: force the first char of parameter to be an letter....
r20814
Pierre-Yves David
bundle2: clarify stream parameter design in the documentation...
r20808 Stream parameters use a simple textual format for two main reasons:
Pierre-Yves David
bundle2: support bundling simple parameter...
r20804
Pierre-Yves David
bundle2: clarify stream parameter design in the documentation...
r20808 - Stream level parameters should remains simple and we want to discourage any
crazy usage.
- Textual data allow easy human inspection of a the bundle2 header in case of
troubles.
Any Applicative level options MUST go into a bundle2 part instead.
Pierre-Yves David
bundle2: very first version of a bundle2 bundler...
r20801
Payload part
------------------------
Binary format is as follow
:header size: (16 bits inter)
The total number of Bytes used by the part headers. When the header is empty
(size = 0) this is interpreted as the end of stream marker.
Pierre-Yves David
bundle2: support bundling of empty part (with a type)...
r20856 :header:
The header defines how to interpret the part. It contains two piece of
data: the part type, and the part parameters.
The part type is used to route an application level handler, that can
interpret payload.
Part parameters are passed to the application level handler. They are
meant to convey information that will help the application level object to
interpret the part payload.
The binary format of the header is has follow
:typesize: (one byte)
:typename: alphanumerical part name
:option: we do not support option yet this denoted by two 16 bites zero.
:payload:
The current payload is a 32bit integer with a value of 0. This is
considered an "empty" payload.
Pierre-Yves David
bundle2: very first version of a bundle2 bundler...
r20801 """
Pierre-Yves David
bundle2: a very first version of bundle2 unbundler...
r20802 import util
Pierre-Yves David
bundle2: support bundling simple parameter...
r20804 import struct
Pierre-Yves David
bundle2: urlquote stream parameter name and value...
r20811 import urllib
Pierre-Yves David
bundle2: force the first char of parameter to be an letter....
r20814 import string
Pierre-Yves David
bundle2: support bundling simple parameter...
r20804
Pierre-Yves David
bundle2: a very first version of bundle2 unbundler...
r20802 import changegroup
Pierre-Yves David
bundle2: make sure the unbundler refuse non bundle2 stream...
r20803 from i18n import _
Pierre-Yves David
bundle2: a very first version of bundle2 unbundler...
r20802
Pierre-Yves David
bundle2: support bundling simple parameter...
r20804 _pack = struct.pack
_unpack = struct.unpack
Pierre-Yves David
bundle2: very first version of a bundle2 bundler...
r20801 _magicstring = 'HG20'
Pierre-Yves David
bundle2: support bundling simple parameter...
r20804 _fstreamparamsize = '>H'
Pierre-Yves David
bundle2: support bundling of empty part (with a type)...
r20856 _fpartheadersize = '>H'
_fparttypesize = '>B'
Pierre-Yves David
bundle2: support bundling simple parameter...
r20804
Pierre-Yves David
bundle2: very first version of a bundle2 bundler...
r20801 class bundle20(object):
"""represent an outgoing bundle2 container
Pierre-Yves David
bundle2: support bundling of empty part (with a type)...
r20856 Use the `addparam` method to add stream level parameter. and `addpart` to
populate it. Then call `getchunks` to retrieve all the binary chunks of
datathat compose the bundle2 container."""
Pierre-Yves David
bundle2: very first version of a bundle2 bundler...
r20801
Pierre-Yves David
bundle2: print debug information during bundling...
r20842 def __init__(self, ui):
self.ui = ui
Pierre-Yves David
bundle2: very first version of a bundle2 bundler...
r20801 self._params = []
self._parts = []
Pierre-Yves David
bundle2: support bundling simple parameter...
r20804 def addparam(self, name, value=None):
"""add a stream level parameter"""
Pierre-Yves David
bundle2: refuse empty parameter name...
r20813 if not name:
raise ValueError('empty parameter name')
Pierre-Yves David
bundle2: force the first char of parameter to be an letter....
r20814 if name[0] not in string.letters:
raise ValueError('non letter first character: %r' % name)
Pierre-Yves David
bundle2: support bundling simple parameter...
r20804 self._params.append((name, value))
Pierre-Yves David
bundle2: support bundling of empty part (with a type)...
r20856 def addpart(self, part):
"""add a new part to the bundle2 container
Parts contains the actuall applicative payload."""
self._parts.append(part)
Pierre-Yves David
bundle2: very first version of a bundle2 bundler...
r20801 def getchunks(self):
Pierre-Yves David
bundle2: print debug information during bundling...
r20842 self.ui.debug('start emission of %s stream\n' % _magicstring)
Pierre-Yves David
bundle2: very first version of a bundle2 bundler...
r20801 yield _magicstring
Pierre-Yves David
bundle2: support bundling simple parameter...
r20804 param = self._paramchunk()
Pierre-Yves David
bundle2: print debug information during bundling...
r20842 self.ui.debug('bundle parameter: %s\n' % param)
Pierre-Yves David
bundle2: support bundling simple parameter...
r20804 yield _pack(_fstreamparamsize, len(param))
if param:
yield param
Pierre-Yves David
bundle2: support bundling of empty part (with a type)...
r20856 self.ui.debug('start of parts\n')
for part in self._parts:
self.ui.debug('bundle part: "%s"\n' % part.type)
for chunk in part.getchunks():
yield chunk
Pierre-Yves David
bundle2: print debug information during bundling...
r20842 self.ui.debug('end of bundle\n')
Pierre-Yves David
bundle2: very first version of a bundle2 bundler...
r20801 yield '\0\0'
Pierre-Yves David
bundle2: a very first version of bundle2 unbundler...
r20802
Pierre-Yves David
bundle2: support bundling simple parameter...
r20804 def _paramchunk(self):
"""return a encoded version of all stream parameters"""
blocks = []
Pierre-Yves David
bundle2: support for bundling parameter value...
r20809 for par, value in self._params:
Pierre-Yves David
bundle2: urlquote stream parameter name and value...
r20811 par = urllib.quote(par)
Pierre-Yves David
bundle2: support for bundling parameter value...
r20809 if value is not None:
Pierre-Yves David
bundle2: urlquote stream parameter name and value...
r20811 value = urllib.quote(value)
Pierre-Yves David
bundle2: support for bundling parameter value...
r20809 par = '%s=%s' % (par, value)
blocks.append(par)
Pierre-Yves David
bundle2: support bundling simple parameter...
r20804 return ' '.join(blocks)
Pierre-Yves David
bundle2: a very first version of bundle2 unbundler...
r20802 class unbundle20(object):
"""interpret a bundle2 stream
(this will eventually yield parts)"""
Pierre-Yves David
bundle2: print debug information during unbundling...
r20843 def __init__(self, ui, fp):
self.ui = ui
Pierre-Yves David
bundle2: a very first version of bundle2 unbundler...
r20802 self._fp = fp
Pierre-Yves David
bundle2: make sure the unbundler refuse non bundle2 stream...
r20803 header = self._readexact(4)
magic, version = header[0:2], header[2:4]
if magic != 'HG':
raise util.Abort(_('not a Mercurial bundle'))
if version != '20':
raise util.Abort(_('unknown bundle version %s') % version)
Pierre-Yves David
bundle2: print debug information during unbundling...
r20843 self.ui.debug('start processing of %s stream\n' % header)
Pierre-Yves David
bundle2: a very first version of bundle2 unbundler...
r20802
def _unpack(self, format):
"""unpack this struct format from the stream"""
data = self._readexact(struct.calcsize(format))
return _unpack(format, data)
def _readexact(self, size):
"""read exactly <size> bytes from the stream"""
return changegroup.readexactly(self._fp, size)
@util.propertycache
def params(self):
"""dictionnary of stream level parameters"""
Pierre-Yves David
bundle2: print debug information during unbundling...
r20843 self.ui.debug('reading bundle2 stream parameters\n')
Pierre-Yves David
bundle2: support for unbundling simple parameter...
r20805 params = {}
paramssize = self._unpack(_fstreamparamsize)[0]
if paramssize:
for p in self._readexact(paramssize).split(' '):
Pierre-Yves David
bundle2: support for unbundling parameter value...
r20810 p = p.split('=', 1)
Pierre-Yves David
bundle2: urlunquote stream parameter name and value during unbundling...
r20812 p = [urllib.unquote(i) for i in p]
Pierre-Yves David
bundle2: support for unbundling parameter value...
r20810 if len(p) < 2:
p.append(None)
Pierre-Yves David
bundle2: implement the mandatory/advisory logic for parameter...
r20844 self._processparam(*p)
Pierre-Yves David
bundle2: support for unbundling parameter value...
r20810 params[p[0]] = p[1]
Pierre-Yves David
bundle2: support for unbundling simple parameter...
r20805 return params
Pierre-Yves David
bundle2: a very first version of bundle2 unbundler...
r20802
Pierre-Yves David
bundle2: implement the mandatory/advisory logic for parameter...
r20844 def _processparam(self, name, value):
"""process a parameter, applying its effect if needed
Parameter starting with a lower case letter are advisory and will be
ignored when unknown. Those starting with an upper case letter are
mandatory and will this function will raise a KeyError when unknown.
Note: no option are currently supported. Any input will be either
ignored or failing.
"""
if not name:
raise ValueError('empty parameter name')
if name[0] not in string.letters:
raise ValueError('non letter first character: %r' % name)
# Some logic will be later added here to try to process the option for
# a dict of known parameter.
if name[0].islower():
self.ui.debug("ignoring unknown parameter %r\n" % name)
else:
raise KeyError(name)
Pierre-Yves David
bundle2: a very first version of bundle2 unbundler...
r20802 def __iter__(self):
"""yield all parts contained in the stream"""
# make sure param have been loaded
self.params
Pierre-Yves David
bundle2: print debug information during unbundling...
r20843 self.ui.debug('start extraction of bundle2 parts\n')
Pierre-Yves David
bundle2: a very first version of bundle2 unbundler...
r20802 part = self._readpart()
while part is not None:
yield part
part = self._readpart()
Pierre-Yves David
bundle2: print debug information during unbundling...
r20843 self.ui.debug('end of bundle2 stream\n')
Pierre-Yves David
bundle2: a very first version of bundle2 unbundler...
r20802
def _readpart(self):
"""return None when an end of stream markers is reach"""
headersize = self._readexact(2)
assert headersize == '\0\0'
return None
Pierre-Yves David
bundle2: support bundling of empty part (with a type)...
r20856 class part(object):
"""A bundle2 part contains application level payload
The part `type` is used to route the part to the application level
handler.
"""
def __init__(self, parttype):
self.type = parttype
def getchunks(self):
### header
header = [_pack(_fparttypesize, len(self.type)),
self.type,
'\0\0', # No option support for now.
]
headerchunk = ''.join(header)
yield _pack(_fpartheadersize, len(headerchunk))
yield headerchunk
# force empty part for now
yield '\0\0\0\0'
Pierre-Yves David
bundle2: a very first version of bundle2 unbundler...
r20802