店播爬取Python脚本

reflection.py 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. # This code is meant to work on Python 2.4 and above only.
  31. """Contains a metaclass and helper functions used to create
  32. protocol message classes from Descriptor objects at runtime.
  33. Recall that a metaclass is the "type" of a class.
  34. (A class is to a metaclass what an instance is to a class.)
  35. In this case, we use the GeneratedProtocolMessageType metaclass
  36. to inject all the useful functionality into the classes
  37. output by the protocol compiler at compile-time.
  38. The upshot of all this is that the real implementation
  39. details for ALL pure-Python protocol buffers are *here in
  40. this file*.
  41. """
  42. __author__ = 'robinson@google.com (Will Robinson)'
  43. from google.protobuf import message_factory
  44. from google.protobuf import symbol_database
  45. # The type of all Message classes.
  46. # Part of the public interface, but normally only used by message factories.
  47. GeneratedProtocolMessageType = message_factory._GENERATED_PROTOCOL_MESSAGE_TYPE
  48. MESSAGE_CLASS_CACHE = {}
  49. # Deprecated. Please NEVER use reflection.ParseMessage().
  50. def ParseMessage(descriptor, byte_str):
  51. """Generate a new Message instance from this Descriptor and a byte string.
  52. DEPRECATED: ParseMessage is deprecated because it is using MakeClass().
  53. Please use MessageFactory.GetPrototype() instead.
  54. Args:
  55. descriptor: Protobuf Descriptor object
  56. byte_str: Serialized protocol buffer byte string
  57. Returns:
  58. Newly created protobuf Message object.
  59. """
  60. result_class = MakeClass(descriptor)
  61. new_msg = result_class()
  62. new_msg.ParseFromString(byte_str)
  63. return new_msg
  64. # Deprecated. Please NEVER use reflection.MakeClass().
  65. def MakeClass(descriptor):
  66. """Construct a class object for a protobuf described by descriptor.
  67. DEPRECATED: use MessageFactory.GetPrototype() instead.
  68. Args:
  69. descriptor: A descriptor.Descriptor object describing the protobuf.
  70. Returns:
  71. The Message class object described by the descriptor.
  72. """
  73. # Original implementation leads to duplicate message classes, which won't play
  74. # well with extensions. Message factory info is also missing.
  75. # Redirect to message_factory.
  76. return symbol_database.Default().GetPrototype(descriptor)