Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
odigos / etc / odigos-vmagent / instrumentations / python / google / protobuf / __pycache__ / message.cpython-311.pyc
Size: Mime:
§

QÄgÚ6ãó„—dZdZGd„de¦«ZGd„de¦«ZGd„de¦«ZGd„d	e¦«Zd
„ZdS)z6Contains an abstract base class for protocol messages.z#robinson@google.com (Will Robinson)có—eZdZdZdS)ÚErrorz Base error type for this module.N©Ú__name__Ú
__module__Ú__qualname__Ú__doc__©óú>/tmp/pip-target-0z7lll2b/lib/python/google/protobuf/message.pyrrs€€€€€Ø(Ð(Ø€$r
rcó—eZdZdZdS)ÚDecodeErrorz-Exception raised when deserializing messages.Nrr	r
rr
r
s€€€€€Ø5Ð5Ø€$r
r
có—eZdZdZdS)ÚEncodeErrorz+Exception raised when serializing messages.Nrr	r
rrrs€€€€€Ø3Ð3Ø€$r
rcóà—eZdZdZgZdZd!d„Zd„Zd„Zd„Z	d„Z
d„Zd	„Zd
„Z
d„Zd„Zd
„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zed„¦«Z d„Z!d„Z"d„Z#d „Z$dS)"ÚMessagezÒAbstract base class for protocol messages.

  Protocol message classes are almost always generated by the protocol
  compiler.  These generated types subclass Message and implement the methods
  shown below.
  Ncó^—t|¦«¦«}| |¦«|S©N)ÚtypeÚ	MergeFrom)ÚselfÚmemoÚclones   rÚ__deepcopy__zMessage.__deepcopy__6s*€ØD‰JŒJ‰LŒL€EØ	‡O‚ODÑÔÐØ€Lr
có—t‚)z9Recursively compares two messages by value and structure.©ÚNotImplementedError©rÚ	other_msgs  rÚ__eq__zMessage.__eq__;ó€å
Ðr
có—||kSrr	rs  rÚ__ne__zMessage.__ne__?s€àyÒ Ð Ð r
có —td¦«‚)Nzunhashable object)Ú	TypeError©rs rÚ__hash__zMessage.__hash__Cs€Ý
Ð'Ñ
(Ô
(Ð(r
có—t‚©z7Outputs a human-readable representation of the message.rr%s rÚ__str__zMessage.__str__Fr r
có—t‚r(rr%s rÚ__unicode__zMessage.__unicode__Jr r
có—t‚)aWChecks if a certain field is set for the message.

    Has presence fields return true if the field is set, false if the field is
    not set. Fields without presence do raise `ValueError` (this includes
    repeated fields, map fields, and implicit presence fields).

    If field_name is not defined in the message descriptor, `ValueError` will
    be raised.
    Note: WKT Struct checks if the key is contained in fields. ListValue checks
    if the item is contained in the list.

    Args:
      field_name_or_key: For Struct, the key (str) of the fields map. For
        ListValue, any type that may be contained in the list. For other
        messages, name of the field (str) to check for presence.

    Returns:
      bool: For Struct, whether the item is contained in fields. For ListValue,
            whether the item is contained in the list. For other message,
            whether a value has been set for the named field.

    Raises:
      ValueError: For normal messages,  if the `field_name_or_key` is not a
                  member of this message or `field_name_or_key` is not a string.
    r)rÚfield_name_or_keys  rÚ__contains__zMessage.__contains__Ns
€õ4Ðr
có—t‚)aÆMerges the contents of the specified message into current message.

    This method merges the contents of the specified message into the current
    message. Singular fields that are set in the specified message overwrite
    the corresponding fields in the current message. Repeated fields are
    appended. Singular sub-messages and groups are recursively merged.

    Args:
      other_msg (Message): A message to merge into the current message.
    rrs  rrzMessage.MergeFromjs
€õÐr
cód—||urdS| ¦«| |¦«dS)zþCopies the content of the specified message into the current message.

    The method clears the current message and then merges the specified
    message using MergeFrom.

    Args:
      other_msg (Message): A message to copy into the current one.
    N)ÚClearrrs  rÚCopyFromzMessage.CopyFromws9€ðˆyÐÐØ€f؇J‚JL„L€L؇N‚N9ÑÔÐÐÐr
có—t‚)z,Clears all data that was set in the message.rr%s rr1z
Message.Clear…r r
có—t‚)a Mark this as present in the parent.

    This normally happens automatically when you assign a field of a
    sub-message, but sometimes you want to make the sub-message
    present while keeping it empty.  If you find yourself using this,
    you may want to reconsider your design.
    rr%s rÚSetInParentzMessage.SetInParent‰ó
€õÐr
có—t‚)z«Checks if the message is initialized.

    Returns:
      bool: The method returns True if the message is initialized (i.e. all of
      its required fields are set).
    rr%s rÚ
IsInitializedzMessage.IsInitialized“s
€õÐr
có—t‚)aEMerges serialized protocol buffer data into this message.

    When we find a field in `serialized` that is already present
    in this message:

    -   If it's a "repeated" field, we append to the end of our list.
    -   Else, if it's a scalar, we overwrite our field.
    -   Else, (it's a nonrepeated composite), we recursively merge
        into the existing composite.

    Args:
      serialized (bytes): Any object that allows us to call
        ``memoryview(serialized)`` to access a string of bytes using the
        buffer interface.

    Returns:
      int: The number of bytes read from `serialized`.
      For non-group messages, this will always be `len(serialized)`,
      but for messages which are actually groups, this will
      generally be less than `len(serialized)`, since we must
      stop when we reach an ``END_GROUP`` tag.  Note that if
      we *do* stop because of an ``END_GROUP`` tag, the number
      of bytes returned does not include the bytes
      for the ``END_GROUP`` tag information.

    Raises:
      DecodeError: if the input cannot be parsed.
    r©rÚ
serializeds  rÚMergeFromStringzMessage.MergeFromString¢s
€õ>Ðr
cóT—| ¦«| |¦«S)zÙParse serialized protocol buffer data in binary form into this message.

    Like :func:`MergeFromString()`, except we clear the object first.

    Raises:
      message.DecodeError if the input cannot be parsed.
    )r1r<r:s  rÚParseFromStringzMessage.ParseFromStringÃs%€ð	‡J‚JL„L€LØ×Ò 
Ñ+Ô+Ð+r
có—t‚)aÓSerializes the protocol message to a binary string.

    Keyword Args:
      deterministic (bool): If true, requests deterministic serialization
        of the protobuf, with predictable ordering of map keys.

    Returns:
      A binary string representation of the message if all of the required
      fields in the message are set (i.e. the message is initialized).

    Raises:
      EncodeError: if the message isn't initialized (see :func:`IsInitialized`).
    r©rÚkwargss  rÚSerializeToStringzMessage.SerializeToStringÎó
€õÐr
có—t‚)aŠSerializes the protocol message to a binary string.

    This method is similar to SerializeToString but doesn't check if the
    message is initialized.

    Keyword Args:
      deterministic (bool): If true, requests deterministic serialization
        of the protobuf, with predictable ordering of map keys.

    Returns:
      bytes: A serialized representation of the partial message.
    rr@s  rÚSerializePartialToStringz Message.SerializePartialToStringÞó
€õÐr
có—t‚)a'Returns a list of (FieldDescriptor, value) tuples for present fields.

    A message field is non-empty if HasField() would return true. A singular
    primitive field is non-empty if HasField() would return true in proto2 or it
    is non zero in proto3. A repeated field is non-empty if it contains at least
    one element. The fields are ordered by field number.

    Returns:
      list[tuple(FieldDescriptor, value)]: field descriptors and values
      for all fields in the message which are not empty. The values vary by
      field type.
    rr%s rÚ
ListFieldszMessage.ListFieldsýrFr
có—t‚)aÑChecks if a certain field is set for the message.

    For a oneof group, checks if any field inside is set. Note that if the
    field_name is not defined in the message descriptor, :exc:`ValueError` will
    be raised.

    Args:
      field_name (str): The name of the field to check for presence.

    Returns:
      bool: Whether a value has been set for the named field.

    Raises:
      ValueError: if the `field_name` is not a member of this message.
    r©rÚ
field_names  rÚHasFieldzMessage.HasFieldó
€õ Ðr
có—t‚)a^Clears the contents of a given field.

    Inside a oneof group, clears the field set. If the name neither refers to a
    defined field or oneof group, :exc:`ValueError` is raised.

    Args:
      field_name (str): The name of the field to check for presence.

    Raises:
      ValueError: if the `field_name` is not a member of this message.
    rrJs  rÚ
ClearFieldzMessage.ClearFields
€õÐr
có—t‚)aEReturns the name of the field that is set inside a oneof group.

    If no field is set, returns None.

    Args:
      oneof_group (str): the name of the oneof group to check.

    Returns:
      str or None: The name of the group that is set, or None.

    Raises:
      ValueError: no group with the given name exists
    r)rÚoneof_groups  rÚ
WhichOneofzMessage.WhichOneof,rCr
có—t‚)aöChecks if a certain extension is present for this message.

    Extensions are retrieved using the :attr:`Extensions` mapping (if present).

    Args:
      field_descriptor: The field descriptor for the extension to check.

    Returns:
      bool: Whether the extension is present for this message.

    Raises:
      KeyError: if the extension is repeated. Similar to repeated fields,
        there is no separate notion of presence: a "not present" repeated
        extension is an empty list.
    r©rÚfield_descriptors  rÚHasExtensionzMessage.HasExtension<rMr
có—t‚)z‚Clears the contents of a given extension.

    Args:
      field_descriptor: The field descriptor for the extension to clear.
    rrTs  rÚClearExtensionzMessage.ClearExtensionNó
€õÐr
có—t‚)zqReturns the UnknownFieldSet.

    Returns:
      UnknownFieldSet: The unknown fields stored in this message.
    rr%s rÚ
UnknownFieldszMessage.UnknownFieldsVrYr
có—t‚)zlClears all fields in the :class:`UnknownFieldSet`.

    This operation is recursive for nested message.
    rr%s rÚDiscardUnknownFieldszMessage.DiscardUnknownFields^s
€õ
Ðr
có—t‚)z¿Returns the serialized size of this message.

    Recursively calls ByteSize() on all contained messages.

    Returns:
      int: The number of bytes required to serialize this message.
    rr%s rÚByteSizezMessage.ByteSizeer6r
có—t‚rr)ÚclsÚss  rÚ
FromStringzMessage.FromStringor r
có—t‚)a6Internal method used by the protocol message implementation.
    Clients should not call this directly.

    Sets a listener that this message will call on certain state transitions.

    The purpose of this method is to register back-edges from children to
    parents at runtime, for the purpose of setting "has" bits and
    byte-size-dirty bits in the parent and ancestor objects whenever a child or
    descendant object is modified.

    If the client wants to disconnect this Message from the object tree, she
    explicitly sets callback to None.

    If message_listener is None, unregisters any existing listener.  Otherwise,
    message_listener must implement the MessageListener interface in
    internal/message_listener.py, and we discard any listener registered
    via a previous _SetListener() call.
    r)rÚmessage_listeners  rÚ_SetListenerzMessage._SetListenerss
€õ&Ðr
cóF—t| ¦«¬¦«S)úSupport the pickle protocol.)r;)ÚdictrEr%s rÚ__getstate__zMessage.__getstate__ˆs€å˜4×8Ò8Ñ:Ô:Ð;Ñ;Ô;Ð;r
có¼—| ¦«|d}t|t¦«s| d¦«}| |¦«dS)rhr;Úlatin1N)Ú__init__Ú
isinstanceÚbytesÚencoder>)rÚstater;s   rÚ__setstate__zMessage.__setstate__ŒsZ€à‡M‚MO„O€Oؐ|Ô$€Jõj¥%Ñ(Ô(ð/Ø×$Ò$ XÑ.Ô.€jØ×Ò˜Ñ$Ô$Ð$Ð$Ð$r
có®—|j}|j€$t|¦«d| ¦«fS|}t|jf| ¦«fS)Nr	)Ú
DESCRIPTORÚcontaining_typerrjÚ_InternalConstructMessageÚ	full_name)rÚmessage_descriptorÚ	containers   rÚ
__reduce__zMessage.__reduce__–s]€ØœÐØÔ)Ð1Ý
$‰ZŒZ˜˜T×.Ò.Ñ0Ô0Ð
0Ð0ð#€IÝ%¨	Ô(;Ð'=Ø×ÒÑÔð!ð!r
r)%rrrrÚ	__slots__rtrrr"r&r)r+r.rr2r1r5r8r<r>rBrErHrLrOrRrVrXr[r]r_Úclassmethodrcrfrjrrrzr	r
rrrs€€€€€ððð€)ð€*ððððð
ððð!ð!ð!ð)ð)ð)ðððððððððð8ððððððððððððððððððB	,ð	,ð	,ðððð 
ð
ð
ð>
ð
ð
ðððð$ðððððð ððð$ððððððððððððððñ„;ððððð*<ð<ð<ð%ð%ð%ð	!ð	!ð	!ð	!ð	!r
rcól—ddlm}| ¦« |¦«¦«S)zConstructs a nested message.é)Úsymbol_database)Úgoogle.protobufrÚDefaultÚ	GetSymbol)rwrs  rrvrv¢s<€à-Ð-Ð-Ð-Ð-Ð-à	7ˆ×	 Ò	 Ñ	"Ô	"×	,Ò	,¨YÑ	7Ô	7Ñ	9Ô	9Ð9r
N)	rÚ
__author__Ú	Exceptionrr
rÚobjectrrvr	r
rú<module>r†sÜðð=Ð<à
2€
ðððððˆIñôðð
ðððð%ñôðð
ðððð%ñôðð
@!ð@!ð@!ð@!ð@!ˆfñ@!ô@!ð@!ðF:ð:ð:ð:ð:r