当前位置: 首页>>代码示例>>Python>>正文


Python wire_format.ZigZagDecode方法代码示例

本文整理汇总了Python中google.protobuf.internal.wire_format.ZigZagDecode方法的典型用法代码示例。如果您正苦于以下问题:Python wire_format.ZigZagDecode方法的具体用法?Python wire_format.ZigZagDecode怎么用?Python wire_format.ZigZagDecode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在google.protobuf.internal.wire_format的用法示例。


在下文中一共展示了wire_format.ZigZagDecode方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: testZigZagDecode

# 需要导入模块: from google.protobuf.internal import wire_format [as 别名]
# 或者: from google.protobuf.internal.wire_format import ZigZagDecode [as 别名]
def testZigZagDecode(self):
    Z = wire_format.ZigZagDecode
    self.assertEqual(0, Z(0))
    self.assertEqual(-1, Z(1))
    self.assertEqual(1, Z(2))
    self.assertEqual(-2, Z(3))
    self.assertEqual(2, Z(4))
    self.assertEqual(0x7fffffff, Z(0xfffffffe))
    self.assertEqual(-0x80000000, Z(0xffffffff))
    self.assertEqual(0x7fffffffffffffff, Z(0xfffffffffffffffe))
    self.assertEqual(-0x8000000000000000, Z(0xffffffffffffffff))

    self.assertRaises(TypeError, Z, None)
    self.assertRaises(TypeError, Z, 'abcd')
    self.assertRaises(TypeError, Z, 0.0)
    self.assertRaises(TypeError, Z, object()) 
开发者ID:ryfeus,项目名称:lambda-packs,代码行数:18,代码来源:wire_format_test.py

示例2: _ModifiedDecoder

# 需要导入模块: from google.protobuf.internal import wire_format [as 别名]
# 或者: from google.protobuf.internal.wire_format import ZigZagDecode [as 别名]
def _ModifiedDecoder(wire_type, decode_value, modify_value):
  """Like SimpleDecoder but additionally invokes modify_value on every value
  before storing it.  Usually modify_value is ZigZagDecode.
  """

  # Reusing _SimpleDecoder is slightly slower than copying a bunch of code, but
  # not enough to make a significant difference.

  def InnerDecode(buffer, pos):
    (result, new_pos) = decode_value(buffer, pos)
    return (modify_value(result), new_pos)
  return _SimpleDecoder(wire_type, InnerDecode) 
开发者ID:ryfeus,项目名称:lambda-packs,代码行数:14,代码来源:decoder.py

示例3: ReadSInt64

# 需要导入模块: from google.protobuf.internal import wire_format [as 别名]
# 或者: from google.protobuf.internal.wire_format import ZigZagDecode [as 别名]
def ReadSInt64(self):
    return wire_format.ZigZagDecode(self.ReadVarint()) 
开发者ID:ryfeus,项目名称:lambda-packs,代码行数:4,代码来源:reflection_test.py

示例4: decode_svarint

# 需要导入模块: from google.protobuf.internal import wire_format [as 别名]
# 或者: from google.protobuf.internal.wire_format import ZigZagDecode [as 别名]
def decode_svarint(buf, pos):
    """Decode bytearray into a long."""
    output, pos = decode_uvarint(buf, pos)
    # zigzag encode value
    return wire_format.ZigZagDecode(output), pos 
开发者ID:nccgroup,项目名称:blackboxprotobuf,代码行数:7,代码来源:varint.py


注:本文中的google.protobuf.internal.wire_format.ZigZagDecode方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。