U
    µ£	dØ  ã                   @   sd   d Z dZddlmZ ddlmZ e ¡ dkr:ddlmZ	 nddlm
Z	 e	jZi Zdd	„ Zd
d„ ZdS )a  Contains a metaclass and helper functions used to create
protocol message classes from Descriptor objects at runtime.

Recall that a metaclass is the "type" of a class.
(A class is to a metaclass what an instance is to a class.)

In this case, we use the GeneratedProtocolMessageType metaclass
to inject all the useful functionality into the classes
output by the protocol compiler at compile-time.

The upshot of all this is that the real implementation
details for ALL pure-Python protocol buffers are *here in
this file*.
z#robinson@google.com (Will Robinson)é    )Úapi_implementation)ÚmessageZcpp)Úcpp_message)Úpython_messagec                 C   s   t | ƒ}|ƒ }| |¡ |S )zêGenerate a new Message instance from this Descriptor and a byte string.

  Args:
    descriptor: Protobuf Descriptor object
    byte_str: Serialized protocol buffer byte string

  Returns:
    Newly created protobuf Message object.
  )Ú	MakeClassZParseFromString)Ú
descriptorZbyte_strZresult_classZnew_msg© r   ú</usr/lib/python3/dist-packages/google/protobuf/reflection.pyÚParseMessageC   s    

r
   c                 C   sd   | t krt |  S i }t| j ¡ ƒD ]\}}t|ƒ||< q"| |tj< tt| jƒt	j
f|ƒ}|t | < |S )aŒ  Construct a class object for a protobuf described by descriptor.

  Composite descriptors are handled by defining the new class as a member of the
  parent class, recursing as deep as necessary.
  This is the dynamic equivalent to:

  class Parent(message.Message):
    __metaclass__ = GeneratedProtocolMessageType
    DESCRIPTOR = descriptor
    class Child(message.Message):
      __metaclass__ = GeneratedProtocolMessageType
      DESCRIPTOR = descriptor.nested_types[0]

  Sample usage:
    file_descriptor = descriptor_pb2.FileDescriptorProto()
    file_descriptor.ParseFromString(proto2_string)
    msg_descriptor = descriptor.MakeDescriptor(file_descriptor.message_type[0])
    msg_class = reflection.MakeClass(msg_descriptor)
    msg = msg_class()

  Args:
    descriptor: A descriptor.Descriptor object describing the protobuf.
  Returns:
    The Message class object described by the descriptor.
  )ÚMESSAGE_CLASS_CACHEÚlistZnested_types_by_nameÚitemsr   ÚGeneratedProtocolMessageTypeZ_DESCRIPTOR_KEYÚstrÚnamer   ZMessage)r   Z
attributesr   Znested_typeÚresultr   r   r	   r   S   s    
  ÿr   N)Ú__doc__Ú
__author__Zgoogle.protobuf.internalr   Zgoogle.protobufr   ZTypeZgoogle.protobuf.pyextr   Zmessage_implr   r   r   r
   r   r   r   r   r	   Ú<module>!   s   