|
|
|
@ -0,0 +1,452 @@
|
|
|
|
|
#
|
|
|
|
|
# Autogenerated by Thrift Compiler (0.8.0)
|
|
|
|
|
#
|
|
|
|
|
# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
|
|
|
|
|
#
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
from thrift.Thrift import TType, TMessageType, TException
|
|
|
|
|
|
|
|
|
|
from thrift.transport import TTransport
|
|
|
|
|
from thrift.protocol import TBinaryProtocol, TProtocol
|
|
|
|
|
try:
|
|
|
|
|
from thrift.protocol import fastbinary
|
|
|
|
|
except:
|
|
|
|
|
fastbinary = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class AnnotationType:
|
|
|
|
|
BOOL = 0
|
|
|
|
|
BYTES = 1
|
|
|
|
|
I16 = 2
|
|
|
|
|
I32 = 3
|
|
|
|
|
I64 = 4
|
|
|
|
|
DOUBLE = 5
|
|
|
|
|
STRING = 6
|
|
|
|
|
|
|
|
|
|
_VALUES_TO_NAMES = {
|
|
|
|
|
0: "BOOL",
|
|
|
|
|
1: "BYTES",
|
|
|
|
|
2: "I16",
|
|
|
|
|
3: "I32",
|
|
|
|
|
4: "I64",
|
|
|
|
|
5: "DOUBLE",
|
|
|
|
|
6: "STRING",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_NAMES_TO_VALUES = {
|
|
|
|
|
"BOOL": 0,
|
|
|
|
|
"BYTES": 1,
|
|
|
|
|
"I16": 2,
|
|
|
|
|
"I32": 3,
|
|
|
|
|
"I64": 4,
|
|
|
|
|
"DOUBLE": 5,
|
|
|
|
|
"STRING": 6,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Endpoint:
|
|
|
|
|
"""
|
|
|
|
|
Attributes:
|
|
|
|
|
- ipv4
|
|
|
|
|
- port
|
|
|
|
|
- service_name
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
thrift_spec = (
|
|
|
|
|
None, # 0
|
|
|
|
|
(1, TType.I32, 'ipv4', None, None, ), # 1
|
|
|
|
|
(2, TType.I16, 'port', None, None, ), # 2
|
|
|
|
|
(3, TType.STRING, 'service_name', None, None, ), # 3
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def __init__(self, ipv4=None, port=None, service_name=None,):
|
|
|
|
|
self.ipv4 = ipv4
|
|
|
|
|
self.port = port
|
|
|
|
|
self.service_name = service_name
|
|
|
|
|
|
|
|
|
|
def read(self, iprot):
|
|
|
|
|
if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None:
|
|
|
|
|
fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec))
|
|
|
|
|
return
|
|
|
|
|
iprot.readStructBegin()
|
|
|
|
|
while True:
|
|
|
|
|
(fname, ftype, fid) = iprot.readFieldBegin()
|
|
|
|
|
if ftype == TType.STOP:
|
|
|
|
|
break
|
|
|
|
|
if fid == 1:
|
|
|
|
|
if ftype == TType.I32:
|
|
|
|
|
self.ipv4 = iprot.readI32();
|
|
|
|
|
else:
|
|
|
|
|
iprot.skip(ftype)
|
|
|
|
|
elif fid == 2:
|
|
|
|
|
if ftype == TType.I16:
|
|
|
|
|
self.port = iprot.readI16();
|
|
|
|
|
else:
|
|
|
|
|
iprot.skip(ftype)
|
|
|
|
|
elif fid == 3:
|
|
|
|
|
if ftype == TType.STRING:
|
|
|
|
|
self.service_name = iprot.readString();
|
|
|
|
|
else:
|
|
|
|
|
iprot.skip(ftype)
|
|
|
|
|
else:
|
|
|
|
|
iprot.skip(ftype)
|
|
|
|
|
iprot.readFieldEnd()
|
|
|
|
|
iprot.readStructEnd()
|
|
|
|
|
|
|
|
|
|
def write(self, oprot):
|
|
|
|
|
if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None:
|
|
|
|
|
oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec)))
|
|
|
|
|
return
|
|
|
|
|
oprot.writeStructBegin('Endpoint')
|
|
|
|
|
if self.ipv4 is not None:
|
|
|
|
|
oprot.writeFieldBegin('ipv4', TType.I32, 1)
|
|
|
|
|
oprot.writeI32(self.ipv4)
|
|
|
|
|
oprot.writeFieldEnd()
|
|
|
|
|
if self.port is not None:
|
|
|
|
|
oprot.writeFieldBegin('port', TType.I16, 2)
|
|
|
|
|
oprot.writeI16(self.port)
|
|
|
|
|
oprot.writeFieldEnd()
|
|
|
|
|
if self.service_name is not None:
|
|
|
|
|
oprot.writeFieldBegin('service_name', TType.STRING, 3)
|
|
|
|
|
oprot.writeString(self.service_name)
|
|
|
|
|
oprot.writeFieldEnd()
|
|
|
|
|
oprot.writeFieldStop()
|
|
|
|
|
oprot.writeStructEnd()
|
|
|
|
|
|
|
|
|
|
def validate(self):
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
|
L = ['%s=%r' % (key, value)
|
|
|
|
|
for key, value in self.__dict__.iteritems()]
|
|
|
|
|
return '%s(%s)' % (self.__class__.__name__, ', '.join(L))
|
|
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
|
return isinstance(other, self.__class__) and self.__dict__ == other.__dict__
|
|
|
|
|
|
|
|
|
|
def __ne__(self, other):
|
|
|
|
|
return not (self == other)
|
|
|
|
|
|
|
|
|
|
class Annotation:
|
|
|
|
|
"""
|
|
|
|
|
Attributes:
|
|
|
|
|
- timestamp
|
|
|
|
|
- value
|
|
|
|
|
- host
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
thrift_spec = (
|
|
|
|
|
None, # 0
|
|
|
|
|
(1, TType.I64, 'timestamp', None, None, ), # 1
|
|
|
|
|
(2, TType.STRING, 'value', None, None, ), # 2
|
|
|
|
|
(3, TType.STRUCT, 'host', (Endpoint, Endpoint.thrift_spec), None, ), # 3
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def __init__(self, timestamp=None, value=None, host=None,):
|
|
|
|
|
self.timestamp = timestamp
|
|
|
|
|
self.value = value
|
|
|
|
|
self.host = host
|
|
|
|
|
|
|
|
|
|
def read(self, iprot):
|
|
|
|
|
if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None:
|
|
|
|
|
fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec))
|
|
|
|
|
return
|
|
|
|
|
iprot.readStructBegin()
|
|
|
|
|
while True:
|
|
|
|
|
(fname, ftype, fid) = iprot.readFieldBegin()
|
|
|
|
|
if ftype == TType.STOP:
|
|
|
|
|
break
|
|
|
|
|
if fid == 1:
|
|
|
|
|
if ftype == TType.I64:
|
|
|
|
|
self.timestamp = iprot.readI64();
|
|
|
|
|
else:
|
|
|
|
|
iprot.skip(ftype)
|
|
|
|
|
elif fid == 2:
|
|
|
|
|
if ftype == TType.STRING:
|
|
|
|
|
self.value = iprot.readString();
|
|
|
|
|
else:
|
|
|
|
|
iprot.skip(ftype)
|
|
|
|
|
elif fid == 3:
|
|
|
|
|
if ftype == TType.STRUCT:
|
|
|
|
|
self.host = Endpoint()
|
|
|
|
|
self.host.read(iprot)
|
|
|
|
|
else:
|
|
|
|
|
iprot.skip(ftype)
|
|
|
|
|
else:
|
|
|
|
|
iprot.skip(ftype)
|
|
|
|
|
iprot.readFieldEnd()
|
|
|
|
|
iprot.readStructEnd()
|
|
|
|
|
|
|
|
|
|
def write(self, oprot):
|
|
|
|
|
if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None:
|
|
|
|
|
oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec)))
|
|
|
|
|
return
|
|
|
|
|
oprot.writeStructBegin('Annotation')
|
|
|
|
|
if self.timestamp is not None:
|
|
|
|
|
oprot.writeFieldBegin('timestamp', TType.I64, 1)
|
|
|
|
|
oprot.writeI64(self.timestamp)
|
|
|
|
|
oprot.writeFieldEnd()
|
|
|
|
|
if self.value is not None:
|
|
|
|
|
oprot.writeFieldBegin('value', TType.STRING, 2)
|
|
|
|
|
oprot.writeString(self.value)
|
|
|
|
|
oprot.writeFieldEnd()
|
|
|
|
|
if self.host is not None:
|
|
|
|
|
oprot.writeFieldBegin('host', TType.STRUCT, 3)
|
|
|
|
|
self.host.write(oprot)
|
|
|
|
|
oprot.writeFieldEnd()
|
|
|
|
|
oprot.writeFieldStop()
|
|
|
|
|
oprot.writeStructEnd()
|
|
|
|
|
|
|
|
|
|
def validate(self):
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
|
L = ['%s=%r' % (key, value)
|
|
|
|
|
for key, value in self.__dict__.iteritems()]
|
|
|
|
|
return '%s(%s)' % (self.__class__.__name__, ', '.join(L))
|
|
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
|
return isinstance(other, self.__class__) and self.__dict__ == other.__dict__
|
|
|
|
|
|
|
|
|
|
def __ne__(self, other):
|
|
|
|
|
return not (self == other)
|
|
|
|
|
|
|
|
|
|
class BinaryAnnotation:
|
|
|
|
|
"""
|
|
|
|
|
Attributes:
|
|
|
|
|
- key
|
|
|
|
|
- value
|
|
|
|
|
- annotation_type
|
|
|
|
|
- host
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
thrift_spec = (
|
|
|
|
|
None, # 0
|
|
|
|
|
(1, TType.STRING, 'key', None, None, ), # 1
|
|
|
|
|
(2, TType.STRING, 'value', None, None, ), # 2
|
|
|
|
|
(3, TType.I32, 'annotation_type', None, None, ), # 3
|
|
|
|
|
(4, TType.STRUCT, 'host', (Endpoint, Endpoint.thrift_spec), None, ), # 4
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def __init__(self, key=None, value=None, annotation_type=None, host=None,):
|
|
|
|
|
self.key = key
|
|
|
|
|
self.value = value
|
|
|
|
|
self.annotation_type = annotation_type
|
|
|
|
|
self.host = host
|
|
|
|
|
|
|
|
|
|
def read(self, iprot):
|
|
|
|
|
if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None:
|
|
|
|
|
fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec))
|
|
|
|
|
return
|
|
|
|
|
iprot.readStructBegin()
|
|
|
|
|
while True:
|
|
|
|
|
(fname, ftype, fid) = iprot.readFieldBegin()
|
|
|
|
|
if ftype == TType.STOP:
|
|
|
|
|
break
|
|
|
|
|
if fid == 1:
|
|
|
|
|
if ftype == TType.STRING:
|
|
|
|
|
self.key = iprot.readString();
|
|
|
|
|
else:
|
|
|
|
|
iprot.skip(ftype)
|
|
|
|
|
elif fid == 2:
|
|
|
|
|
if ftype == TType.STRING:
|
|
|
|
|
self.value = iprot.readString();
|
|
|
|
|
else:
|
|
|
|
|
iprot.skip(ftype)
|
|
|
|
|
elif fid == 3:
|
|
|
|
|
if ftype == TType.I32:
|
|
|
|
|
self.annotation_type = iprot.readI32();
|
|
|
|
|
else:
|
|
|
|
|
iprot.skip(ftype)
|
|
|
|
|
elif fid == 4:
|
|
|
|
|
if ftype == TType.STRUCT:
|
|
|
|
|
self.host = Endpoint()
|
|
|
|
|
self.host.read(iprot)
|
|
|
|
|
else:
|
|
|
|
|
iprot.skip(ftype)
|
|
|
|
|
else:
|
|
|
|
|
iprot.skip(ftype)
|
|
|
|
|
iprot.readFieldEnd()
|
|
|
|
|
iprot.readStructEnd()
|
|
|
|
|
|
|
|
|
|
def write(self, oprot):
|
|
|
|
|
if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None:
|
|
|
|
|
oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec)))
|
|
|
|
|
return
|
|
|
|
|
oprot.writeStructBegin('BinaryAnnotation')
|
|
|
|
|
if self.key is not None:
|
|
|
|
|
oprot.writeFieldBegin('key', TType.STRING, 1)
|
|
|
|
|
oprot.writeString(self.key)
|
|
|
|
|
oprot.writeFieldEnd()
|
|
|
|
|
if self.value is not None:
|
|
|
|
|
oprot.writeFieldBegin('value', TType.STRING, 2)
|
|
|
|
|
oprot.writeString(self.value)
|
|
|
|
|
oprot.writeFieldEnd()
|
|
|
|
|
if self.annotation_type is not None:
|
|
|
|
|
oprot.writeFieldBegin('annotation_type', TType.I32, 3)
|
|
|
|
|
oprot.writeI32(self.annotation_type)
|
|
|
|
|
oprot.writeFieldEnd()
|
|
|
|
|
if self.host is not None:
|
|
|
|
|
oprot.writeFieldBegin('host', TType.STRUCT, 4)
|
|
|
|
|
self.host.write(oprot)
|
|
|
|
|
oprot.writeFieldEnd()
|
|
|
|
|
oprot.writeFieldStop()
|
|
|
|
|
oprot.writeStructEnd()
|
|
|
|
|
|
|
|
|
|
def validate(self):
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
|
L = ['%s=%r' % (key, value)
|
|
|
|
|
for key, value in self.__dict__.iteritems()]
|
|
|
|
|
return '%s(%s)' % (self.__class__.__name__, ', '.join(L))
|
|
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
|
return isinstance(other, self.__class__) and self.__dict__ == other.__dict__
|
|
|
|
|
|
|
|
|
|
def __ne__(self, other):
|
|
|
|
|
return not (self == other)
|
|
|
|
|
|
|
|
|
|
class Span:
|
|
|
|
|
"""
|
|
|
|
|
Attributes:
|
|
|
|
|
- trace_id
|
|
|
|
|
- name
|
|
|
|
|
- id
|
|
|
|
|
- parent_id
|
|
|
|
|
- annotations
|
|
|
|
|
- binary_annotations
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
thrift_spec = (
|
|
|
|
|
None, # 0
|
|
|
|
|
(1, TType.I64, 'trace_id', None, None, ), # 1
|
|
|
|
|
None, # 2
|
|
|
|
|
(3, TType.STRING, 'name', None, None, ), # 3
|
|
|
|
|
(4, TType.I64, 'id', None, None, ), # 4
|
|
|
|
|
(5, TType.I64, 'parent_id', None, None, ), # 5
|
|
|
|
|
(6, TType.LIST, 'annotations', (TType.STRUCT,(Annotation, Annotation.thrift_spec)), None, ), # 6
|
|
|
|
|
None, # 7
|
|
|
|
|
(8, TType.LIST, 'binary_annotations', (TType.STRUCT,(BinaryAnnotation, BinaryAnnotation.thrift_spec)), None, ), # 8
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def __init__(self, trace_id=None, name=None, id=None, parent_id=None, annotations=None, binary_annotations=None,):
|
|
|
|
|
self.trace_id = trace_id
|
|
|
|
|
self.name = name
|
|
|
|
|
self.id = id
|
|
|
|
|
self.parent_id = parent_id
|
|
|
|
|
self.annotations = annotations
|
|
|
|
|
self.binary_annotations = binary_annotations
|
|
|
|
|
|
|
|
|
|
def read(self, iprot):
|
|
|
|
|
if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None:
|
|
|
|
|
fastbinary.decode_binary(self, iprot.trans, (self.__class__, self.thrift_spec))
|
|
|
|
|
return
|
|
|
|
|
iprot.readStructBegin()
|
|
|
|
|
while True:
|
|
|
|
|
(fname, ftype, fid) = iprot.readFieldBegin()
|
|
|
|
|
if ftype == TType.STOP:
|
|
|
|
|
break
|
|
|
|
|
if fid == 1:
|
|
|
|
|
if ftype == TType.I64:
|
|
|
|
|
self.trace_id = iprot.readI64();
|
|
|
|
|
else:
|
|
|
|
|
iprot.skip(ftype)
|
|
|
|
|
elif fid == 3:
|
|
|
|
|
if ftype == TType.STRING:
|
|
|
|
|
self.name = iprot.readString();
|
|
|
|
|
else:
|
|
|
|
|
iprot.skip(ftype)
|
|
|
|
|
elif fid == 4:
|
|
|
|
|
if ftype == TType.I64:
|
|
|
|
|
self.id = iprot.readI64();
|
|
|
|
|
else:
|
|
|
|
|
iprot.skip(ftype)
|
|
|
|
|
elif fid == 5:
|
|
|
|
|
if ftype == TType.I64:
|
|
|
|
|
self.parent_id = iprot.readI64();
|
|
|
|
|
else:
|
|
|
|
|
iprot.skip(ftype)
|
|
|
|
|
elif fid == 6:
|
|
|
|
|
if ftype == TType.LIST:
|
|
|
|
|
self.annotations = []
|
|
|
|
|
(_etype3, _size0) = iprot.readListBegin()
|
|
|
|
|
for _i4 in xrange(_size0):
|
|
|
|
|
_elem5 = Annotation()
|
|
|
|
|
_elem5.read(iprot)
|
|
|
|
|
self.annotations.append(_elem5)
|
|
|
|
|
iprot.readListEnd()
|
|
|
|
|
else:
|
|
|
|
|
iprot.skip(ftype)
|
|
|
|
|
elif fid == 8:
|
|
|
|
|
if ftype == TType.LIST:
|
|
|
|
|
self.binary_annotations = []
|
|
|
|
|
(_etype9, _size6) = iprot.readListBegin()
|
|
|
|
|
for _i10 in xrange(_size6):
|
|
|
|
|
_elem11 = BinaryAnnotation()
|
|
|
|
|
_elem11.read(iprot)
|
|
|
|
|
self.binary_annotations.append(_elem11)
|
|
|
|
|
iprot.readListEnd()
|
|
|
|
|
else:
|
|
|
|
|
iprot.skip(ftype)
|
|
|
|
|
else:
|
|
|
|
|
iprot.skip(ftype)
|
|
|
|
|
iprot.readFieldEnd()
|
|
|
|
|
iprot.readStructEnd()
|
|
|
|
|
|
|
|
|
|
def write(self, oprot):
|
|
|
|
|
if oprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and self.thrift_spec is not None and fastbinary is not None:
|
|
|
|
|
oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec)))
|
|
|
|
|
return
|
|
|
|
|
oprot.writeStructBegin('Span')
|
|
|
|
|
if self.trace_id is not None:
|
|
|
|
|
oprot.writeFieldBegin('trace_id', TType.I64, 1)
|
|
|
|
|
oprot.writeI64(self.trace_id)
|
|
|
|
|
oprot.writeFieldEnd()
|
|
|
|
|
if self.name is not None:
|
|
|
|
|
oprot.writeFieldBegin('name', TType.STRING, 3)
|
|
|
|
|
oprot.writeString(self.name)
|
|
|
|
|
oprot.writeFieldEnd()
|
|
|
|
|
if self.id is not None:
|
|
|
|
|
oprot.writeFieldBegin('id', TType.I64, 4)
|
|
|
|
|
oprot.writeI64(self.id)
|
|
|
|
|
oprot.writeFieldEnd()
|
|
|
|
|
if self.parent_id is not None:
|
|
|
|
|
oprot.writeFieldBegin('parent_id', TType.I64, 5)
|
|
|
|
|
oprot.writeI64(self.parent_id)
|
|
|
|
|
oprot.writeFieldEnd()
|
|
|
|
|
if self.annotations is not None:
|
|
|
|
|
oprot.writeFieldBegin('annotations', TType.LIST, 6)
|
|
|
|
|
oprot.writeListBegin(TType.STRUCT, len(self.annotations))
|
|
|
|
|
for iter12 in self.annotations:
|
|
|
|
|
iter12.write(oprot)
|
|
|
|
|
oprot.writeListEnd()
|
|
|
|
|
oprot.writeFieldEnd()
|
|
|
|
|
if self.binary_annotations is not None:
|
|
|
|
|
oprot.writeFieldBegin('binary_annotations', TType.LIST, 8)
|
|
|
|
|
oprot.writeListBegin(TType.STRUCT, len(self.binary_annotations))
|
|
|
|
|
for iter13 in self.binary_annotations:
|
|
|
|
|
iter13.write(oprot)
|
|
|
|
|
oprot.writeListEnd()
|
|
|
|
|
oprot.writeFieldEnd()
|
|
|
|
|
oprot.writeFieldStop()
|
|
|
|
|
oprot.writeStructEnd()
|
|
|
|
|
|
|
|
|
|
def validate(self):
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
|
L = ['%s=%r' % (key, value)
|
|
|
|
|
for key, value in self.__dict__.iteritems()]
|
|
|
|
|
return '%s(%s)' % (self.__class__.__name__, ', '.join(L))
|
|
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
|
return isinstance(other, self.__class__) and self.__dict__ == other.__dict__
|
|
|
|
|
|
|
|
|
|
def __ne__(self, other):
|
|
|
|
|
return not (self == other)
|