text_encoding.py 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. # Protocol Buffers - Google's data interchange format
  2. # Copyright 2008 Google Inc. All rights reserved.
  3. # https://developers.google.com/protocol-buffers/
  4. #
  5. # Redistribution and use in source and binary forms, with or without
  6. # modification, are permitted provided that the following conditions are
  7. # met:
  8. #
  9. # * Redistributions of source code must retain the above copyright
  10. # notice, this list of conditions and the following disclaimer.
  11. # * Redistributions in binary form must reproduce the above
  12. # copyright notice, this list of conditions and the following disclaimer
  13. # in the documentation and/or other materials provided with the
  14. # distribution.
  15. # * Neither the name of Google Inc. nor the names of its
  16. # contributors may be used to endorse or promote products derived from
  17. # this software without specific prior written permission.
  18. #
  19. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20. # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21. # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22. # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  23. # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  24. # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  25. # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  26. # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  27. # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  28. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  29. # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. #PY25 compatible for GAE.
  31. #
  32. """Encoding related utilities."""
  33. import re
  34. import sys ##PY25
  35. # Lookup table for utf8
  36. _cescape_utf8_to_str = [chr(i) for i in xrange(0, 256)]
  37. _cescape_utf8_to_str[9] = r'\t' # optional escape
  38. _cescape_utf8_to_str[10] = r'\n' # optional escape
  39. _cescape_utf8_to_str[13] = r'\r' # optional escape
  40. _cescape_utf8_to_str[39] = r"\'" # optional escape
  41. _cescape_utf8_to_str[34] = r'\"' # necessary escape
  42. _cescape_utf8_to_str[92] = r'\\' # necessary escape
  43. # Lookup table for non-utf8, with necessary escapes at (o >= 127 or o < 32)
  44. _cescape_byte_to_str = ([r'\%03o' % i for i in xrange(0, 32)] +
  45. [chr(i) for i in xrange(32, 127)] +
  46. [r'\%03o' % i for i in xrange(127, 256)])
  47. _cescape_byte_to_str[9] = r'\t' # optional escape
  48. _cescape_byte_to_str[10] = r'\n' # optional escape
  49. _cescape_byte_to_str[13] = r'\r' # optional escape
  50. _cescape_byte_to_str[39] = r"\'" # optional escape
  51. _cescape_byte_to_str[34] = r'\"' # necessary escape
  52. _cescape_byte_to_str[92] = r'\\' # necessary escape
  53. def CEscape(text, as_utf8):
  54. """Escape a bytes string for use in an ascii protocol buffer.
  55. text.encode('string_escape') does not seem to satisfy our needs as it
  56. encodes unprintable characters using two-digit hex escapes whereas our
  57. C++ unescaping function allows hex escapes to be any length. So,
  58. "\0011".encode('string_escape') ends up being "\\x011", which will be
  59. decoded in C++ as a single-character string with char code 0x11.
  60. Args:
  61. text: A byte string to be escaped
  62. as_utf8: Specifies if result should be returned in UTF-8 encoding
  63. Returns:
  64. Escaped string
  65. """
  66. # PY3 hack: make Ord work for str and bytes:
  67. # //platforms/networking/data uses unicode here, hence basestring.
  68. Ord = ord if isinstance(text, basestring) else lambda x: x
  69. if as_utf8:
  70. return ''.join(_cescape_utf8_to_str[Ord(c)] for c in text)
  71. return ''.join(_cescape_byte_to_str[Ord(c)] for c in text)
  72. _CUNESCAPE_HEX = re.compile(r'(\\+)x([0-9a-fA-F])(?![0-9a-fA-F])')
  73. _cescape_highbit_to_str = ([chr(i) for i in range(0, 127)] +
  74. [r'\%03o' % i for i in range(127, 256)])
  75. def CUnescape(text):
  76. """Unescape a text string with C-style escape sequences to UTF-8 bytes."""
  77. def ReplaceHex(m):
  78. # Only replace the match if the number of leading back slashes is odd. i.e.
  79. # the slash itself is not escaped.
  80. if len(m.group(1)) & 1:
  81. return m.group(1) + 'x0' + m.group(2)
  82. return m.group(0)
  83. # This is required because the 'string_escape' encoding doesn't
  84. # allow single-digit hex escapes (like '\xf').
  85. result = _CUNESCAPE_HEX.sub(ReplaceHex, text)
  86. if sys.version_info[0] < 3: ##PY25
  87. ##!PY25 if str is bytes: # PY2
  88. return result.decode('string_escape')
  89. result = ''.join(_cescape_highbit_to_str[ord(c)] for c in result)
  90. return (result.encode('ascii') # Make it bytes to allow decode.
  91. .decode('unicode_escape')
  92. # Make it bytes again to return the proper type.
  93. .encode('raw_unicode_escape'))