Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 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 | |
| 31 | # This code is meant to work on Python 2.4 and above only. |
| 32 | |
| 33 | """Contains a metaclass and helper functions used to create |
| 34 | protocol message classes from Descriptor objects at runtime. |
| 35 | |
| 36 | Recall that a metaclass is the "type" of a class. |
| 37 | (A class is to a metaclass what an instance is to a class.) |
| 38 | |
| 39 | In this case, we use the GeneratedProtocolMessageType metaclass |
| 40 | to inject all the useful functionality into the classes |
| 41 | output by the protocol compiler at compile-time. |
| 42 | |
| 43 | The upshot of all this is that the real implementation |
| 44 | details for ALL pure-Python protocol buffers are *here in |
| 45 | this file*. |
| 46 | """ |
| 47 | |
| 48 | __author__ = 'robinson@google.com (Will Robinson)' |
| 49 | |
| 50 | |
| 51 | from google.protobuf.internal import api_implementation |
| 52 | from google.protobuf import message |
| 53 | |
| 54 | |
| 55 | if api_implementation.Type() == 'cpp': |
| 56 | from google.protobuf.pyext import cpp_message as message_impl |
| 57 | else: |
| 58 | from google.protobuf.internal import python_message as message_impl |
| 59 | |
| 60 | # The type of all Message classes. |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame^] | 61 | # Part of the public interface, but normally only used by message factories. |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 62 | GeneratedProtocolMessageType = message_impl.GeneratedProtocolMessageType |
| 63 | |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame^] | 64 | MESSAGE_CLASS_CACHE = {} |
| 65 | |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 66 | |
| 67 | def ParseMessage(descriptor, byte_str): |
| 68 | """Generate a new Message instance from this Descriptor and a byte string. |
| 69 | |
| 70 | Args: |
| 71 | descriptor: Protobuf Descriptor object |
| 72 | byte_str: Serialized protocol buffer byte string |
| 73 | |
| 74 | Returns: |
| 75 | Newly created protobuf Message object. |
| 76 | """ |
| 77 | result_class = MakeClass(descriptor) |
| 78 | new_msg = result_class() |
| 79 | new_msg.ParseFromString(byte_str) |
| 80 | return new_msg |
| 81 | |
| 82 | |
| 83 | def MakeClass(descriptor): |
| 84 | """Construct a class object for a protobuf described by descriptor. |
| 85 | |
| 86 | Composite descriptors are handled by defining the new class as a member of the |
| 87 | parent class, recursing as deep as necessary. |
| 88 | This is the dynamic equivalent to: |
| 89 | |
| 90 | class Parent(message.Message): |
| 91 | __metaclass__ = GeneratedProtocolMessageType |
| 92 | DESCRIPTOR = descriptor |
| 93 | class Child(message.Message): |
| 94 | __metaclass__ = GeneratedProtocolMessageType |
| 95 | DESCRIPTOR = descriptor.nested_types[0] |
| 96 | |
| 97 | Sample usage: |
| 98 | file_descriptor = descriptor_pb2.FileDescriptorProto() |
| 99 | file_descriptor.ParseFromString(proto2_string) |
| 100 | msg_descriptor = descriptor.MakeDescriptor(file_descriptor.message_type[0]) |
| 101 | msg_class = reflection.MakeClass(msg_descriptor) |
| 102 | msg = msg_class() |
| 103 | |
| 104 | Args: |
| 105 | descriptor: A descriptor.Descriptor object describing the protobuf. |
| 106 | Returns: |
| 107 | The Message class object described by the descriptor. |
| 108 | """ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame^] | 109 | if descriptor in MESSAGE_CLASS_CACHE: |
| 110 | return MESSAGE_CLASS_CACHE[descriptor] |
| 111 | |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 112 | attributes = {} |
| 113 | for name, nested_type in descriptor.nested_types_by_name.items(): |
| 114 | attributes[name] = MakeClass(nested_type) |
| 115 | |
| 116 | attributes[GeneratedProtocolMessageType._DESCRIPTOR_KEY] = descriptor |
| 117 | |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame^] | 118 | result = GeneratedProtocolMessageType( |
| 119 | str(descriptor.name), (message.Message,), attributes) |
| 120 | MESSAGE_CLASS_CACHE[descriptor] = result |
| 121 | return result |