145 lines
4.1 KiB
Python
145 lines
4.1 KiB
Python
# Copyright 2016 Google LLC. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# source: net/proto/opaquemessage.proto
|
|
|
|
from __future__ import absolute_import
|
|
import abc
|
|
import array
|
|
import base64
|
|
from googlecloudsdk.appengine.proto import ProtocolBuffer
|
|
|
|
try:
|
|
from six.moves._thread import allocate_lock as _Lock
|
|
except ImportError:
|
|
from threading import Lock as _Lock
|
|
try:
|
|
from googlecloudsdk.appengine.proto import _net_proto___parse__python
|
|
except ImportError:
|
|
_net_proto___parse__python = None
|
|
|
|
if hasattr(__builtins__, 'xrange'): range = xrange
|
|
|
|
if hasattr(ProtocolBuffer, 'ExtendableProtocolMessage'):
|
|
_extension_runtime = True
|
|
_ExtendableProtocolMessage = ProtocolBuffer.ExtendableProtocolMessage
|
|
else:
|
|
_extension_runtime = False
|
|
_ExtendableProtocolMessage = ProtocolBuffer.ProtocolMessage
|
|
|
|
class OpaqueMessage(ProtocolBuffer.ProtocolMessage):
|
|
|
|
def __init__(self, contents=None):
|
|
pass
|
|
if contents is not None: self.MergeFromString(contents)
|
|
|
|
|
|
def MergeFrom(self, x):
|
|
assert x is not self
|
|
|
|
if _net_proto___parse__python is not None:
|
|
def _CMergeFromString(self, s):
|
|
_net_proto___parse__python.MergeFromString(self, 'OpaqueMessage', s)
|
|
|
|
if _net_proto___parse__python is not None:
|
|
def _CEncode(self):
|
|
return _net_proto___parse__python.Encode(self, 'OpaqueMessage')
|
|
|
|
if _net_proto___parse__python is not None:
|
|
def _CEncodePartial(self):
|
|
return _net_proto___parse__python.EncodePartial(self, 'OpaqueMessage')
|
|
|
|
if _net_proto___parse__python is not None:
|
|
def _CToASCII(self, output_format):
|
|
return _net_proto___parse__python.ToASCII(self, 'OpaqueMessage', output_format)
|
|
|
|
|
|
if _net_proto___parse__python is not None:
|
|
def ParseASCII(self, s):
|
|
_net_proto___parse__python.ParseASCII(self, 'OpaqueMessage', s)
|
|
|
|
|
|
if _net_proto___parse__python is not None:
|
|
def ParseASCIIIgnoreUnknown(self, s):
|
|
_net_proto___parse__python.ParseASCIIIgnoreUnknown(self, 'OpaqueMessage', s)
|
|
|
|
|
|
def Equals(self, x):
|
|
if x is self: return 1
|
|
return 1
|
|
|
|
def IsInitialized(self, debug_strs=None):
|
|
initialized = 1
|
|
return initialized
|
|
|
|
def ByteSize(self):
|
|
n = 0
|
|
return n
|
|
|
|
def ByteSizePartial(self):
|
|
n = 0
|
|
return n
|
|
|
|
def Clear(self):
|
|
pass
|
|
|
|
def OutputUnchecked(self, out):
|
|
pass
|
|
|
|
def OutputPartial(self, out):
|
|
pass
|
|
|
|
def TryMerge(self, d):
|
|
while d.avail() > 0:
|
|
tt = d.getVarInt32()
|
|
# tag 0 is special: it's used to indicate an error.
|
|
# so if we see it we raise an exception.
|
|
if (tt == 0): raise ProtocolBuffer.ProtocolBufferDecodeError()
|
|
d.skipData(tt)
|
|
|
|
|
|
def __str__(self, prefix="", printElemNumber=0):
|
|
res=""
|
|
return res
|
|
|
|
|
|
def _BuildTagLookupTable(sparse, maxtag, default=None):
|
|
return tuple([sparse.get(i, default) for i in range(0, 1+maxtag)])
|
|
|
|
|
|
_TEXT = _BuildTagLookupTable({
|
|
0: "ErrorCode",
|
|
}, 0)
|
|
|
|
_TYPES = _BuildTagLookupTable({
|
|
0: ProtocolBuffer.Encoder.NUMERIC,
|
|
}, 0, ProtocolBuffer.Encoder.MAX_TYPE)
|
|
|
|
# stylesheet for XML output
|
|
_STYLE = \
|
|
""""""
|
|
_STYLE_CONTENT_TYPE = \
|
|
""""""
|
|
_PROTO_DESCRIPTOR_NAME = 'OpaqueMessage'
|
|
_SERIALIZED_DESCRIPTOR = array.array('B')
|
|
_SERIALIZED_DESCRIPTOR.fromstring(base64.decodestring("Wh1uZXQvcHJvdG8vb3BhcXVlbWVzc2FnZS5wcm90bwoNT3BhcXVlTWVzc2FnZboBVgodbmV0L3Byb3RvL29wYXF1ZW1lc3NhZ2UucHJvdG8iDwoNT3BhcXVlTWVzc2FnZUIkChxjb20uZ29vZ2xlLmlvLnByb3RvY29sLnByb3RvEAIgASgB"))
|
|
if _net_proto___parse__python is not None:
|
|
_net_proto___parse__python.RegisterType(
|
|
_SERIALIZED_DESCRIPTOR.tostring())
|
|
|
|
if _extension_runtime:
|
|
pass
|
|
|
|
__all__ = ['OpaqueMessage']
|