AlkantarClanX12
Current Path : /lib/python2.7/site-packages/google/protobuf/ |
Current File : //lib/python2.7/site-packages/google/protobuf/descriptor_pool.pyc |
� Du�ac @ s� d Z d Z d d l Z d d l m Z d d l m Z d d l m Z e j Z d � Z d � Z d � Z d e f d � � YZ d � Z e r� e j j Z n e � Z d � Z d S( sJ Provides DescriptorPool to use as a container for proto2 descriptors. The DescriptorPool is used in conjection with a DescriptorDatabase to maintain a collection of protocol buffer descriptors for use when dynamically creating message types at runtime. For most applications protocol buffers should be used via modules generated by the protocol buffer compiler tool. This should only be used when the type of protocol buffers used in an application or library cannot be predetermined. Below is a straightforward example on how to use this class: pool = DescriptorPool() file_descriptor_protos = [ ... ] for file_descriptor_proto in file_descriptor_protos: pool.Add(file_descriptor_proto) my_message_descriptor = pool.FindMessageTypeByName('some.package.MessageType') The message descriptor can be used in conjunction with the message_factory module in order to create a protocol buffer class that can be encoded and decoded. If you want to get a Python class for the specified proto, use the helper functions inside google.protobuf.message_factory directly instead of this class. s"