X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fbup%2Fcompat.py;h=f713f52253e27e7f792e2ed4f15c0c21eae948c9;hb=1353177a1b256427ee513e654b83d9b60462b20d;hp=51aabf8db38a4839ca8b5d47a9d31e83b113f84a;hpb=be10c911bbe8c51357b20bf1ea6d472d908670d4;p=bup.git diff --git a/lib/bup/compat.py b/lib/bup/compat.py index 51aabf8..f713f52 100644 --- a/lib/bup/compat.py +++ b/lib/bup/compat.py @@ -1,31 +1,53 @@ -from __future__ import print_function +from __future__ import absolute_import, print_function +from array import array from traceback import print_exception import sys # Please see CODINGSTYLE for important exception handling guidelines -# and the rationale behind add_ex_tb(), chain_ex(), etc. +# and the rationale behind add_ex_tb(), add_ex_ctx(), etc. py_maj = sys.version_info[0] py3 = py_maj >= 3 if py3: + from shlex import quote + range = range str_type = str def add_ex_tb(ex): """Do nothing (already handled by Python 3 infrastructure).""" return ex - def chain_ex(ex, context_ex): + def add_ex_ctx(ex, context_ex): """Do nothing (already handled by Python 3 infrastructure).""" return ex def items(x): return x.items() + def bytes_from_uint(i): + return bytes((i,)) + + byte_int = lambda x: x + + def buffer(object, offset=None, size=None): + if size: + assert offset is not None + return memoryview(object)[offset:offset + size] + if offset: + return memoryview(object)[offset:] + return memoryview(object) + + def join_bytes(*items): + """Return the concatenated bytes or memoryview arguments as bytes.""" + return b''.join(items) + else: # Python 2 + from pipes import quote + range = xrange str_type = basestring def add_ex_tb(ex): @@ -36,9 +58,9 @@ else: # Python 2 ex.__traceback__ = sys.exc_info()[2] return ex - def chain_ex(ex, context_ex): - """Chain context_ex to ex as the __context__ (unless it already has - one). Return ex. + def add_ex_ctx(ex, context_ex): + """Make context_ex the __context__ of ex (unless it already has one). + Return ex. """ if context_ex: @@ -65,6 +87,23 @@ else: # Python 2 def items(x): return x.iteritems() + def bytes_from_uint(i): + return chr(i) + + byte_int = ord + + buffer = buffer + + def join_bytes(x, y): + """Return the concatenated bytes or buffer arguments as bytes.""" + if type(x) == buffer: + assert type(y) in (bytes, buffer) + return x + y + assert type(x) == bytes + if type(y) == bytes: + return b''.join((x, y)) + assert type(y) in (bytes, buffer) + return buffer(x) + y def wrap_main(main): """Run main() and raise a SystemExit with the return value if it @@ -108,6 +147,6 @@ if __name__ == '__main__': try: raise Exception('second') except Exception as ex2: - raise chain_ex(add_ex_tb(ex2), ex) + raise add_ex_ctx(add_ex_tb(ex2), ex) wrap_main(outer)