# # Autogenerated by Thrift Compiler (0.13.0) # # DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING # # options string: py:new_style # from thrift.Thrift import TType, TMessageType, TFrozenDict, TException, TApplicationException from thrift.protocol.TProtocol import TProtocolException from thrift.TRecursive import fix_spec import sys import logging from .ttypes import * from thrift.Thrift import TProcessor from thrift.transport import TTransport all_structs = [] class Iface(object): def query(self, query): """ Submit a query and return a handle (QueryHandle). The query runs asynchronously. Parameters: - query """ pass def executeAndWait(self, query, clientCtx): """ run a query synchronously and return a handle (QueryHandle). Parameters: - query - clientCtx """ pass def explain(self, query): """ Get the query plan for a query. Parameters: - query """ pass def fetch(self, query_id, start_over, fetch_size): """ Get the results of a query. This is non-blocking. Caller should check Results.ready to determine if the results are in yet. The call requests the batch size of fetch. Parameters: - query_id - start_over - fetch_size """ pass def get_state(self, handle): """ Get the state of the query Parameters: - handle """ pass def get_results_metadata(self, handle): """ Get the result metadata Parameters: - handle """ pass def echo(self, s): """ Used to test connection to server. A "noop" command. Parameters: - s """ pass def dump_config(self): """ Returns a string representation of the configuration object being used. Handy for debugging. """ pass def get_log(self, context): """ Get the log messages related to the given context. Parameters: - context """ pass def get_default_configuration(self, include_hadoop): """ Parameters: - include_hadoop """ pass def close(self, handle): """ Parameters: - handle """ pass def clean(self, log_context): """ Parameters: - log_context """ pass class Client(Iface): def __init__(self, iprot, oprot=None): self._iprot = self._oprot = iprot if oprot is not None: self._oprot = oprot self._seqid = 0 def query(self, query): """ Submit a query and return a handle (QueryHandle). The query runs asynchronously. Parameters: - query """ self.send_query(query) return self.recv_query() def send_query(self, query): self._oprot.writeMessageBegin('query', TMessageType.CALL, self._seqid) args = query_args() args.query = query args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_query(self): iprot = self._iprot (fname, mtype, rseqid) = iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(iprot) iprot.readMessageEnd() raise x result = query_result() result.read(iprot) iprot.readMessageEnd() if result.success is not None: return result.success if result.error is not None: raise result.error raise TApplicationException(TApplicationException.MISSING_RESULT, "query failed: unknown result") def executeAndWait(self, query, clientCtx): """ run a query synchronously and return a handle (QueryHandle). Parameters: - query - clientCtx """ self.send_executeAndWait(query, clientCtx) return self.recv_executeAndWait() def send_executeAndWait(self, query, clientCtx): self._oprot.writeMessageBegin('executeAndWait', TMessageType.CALL, self._seqid) args = executeAndWait_args() args.query = query args.clientCtx = clientCtx args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_executeAndWait(self): iprot = self._iprot (fname, mtype, rseqid) = iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(iprot) iprot.readMessageEnd() raise x result = executeAndWait_result() result.read(iprot) iprot.readMessageEnd() if result.success is not None: return result.success if result.error is not None: raise result.error raise TApplicationException(TApplicationException.MISSING_RESULT, "executeAndWait failed: unknown result") def explain(self, query): """ Get the query plan for a query. Parameters: - query """ self.send_explain(query) return self.recv_explain() def send_explain(self, query): self._oprot.writeMessageBegin('explain', TMessageType.CALL, self._seqid) args = explain_args() args.query = query args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_explain(self): iprot = self._iprot (fname, mtype, rseqid) = iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(iprot) iprot.readMessageEnd() raise x result = explain_result() result.read(iprot) iprot.readMessageEnd() if result.success is not None: return result.success if result.error is not None: raise result.error raise TApplicationException(TApplicationException.MISSING_RESULT, "explain failed: unknown result") def fetch(self, query_id, start_over, fetch_size): """ Get the results of a query. This is non-blocking. Caller should check Results.ready to determine if the results are in yet. The call requests the batch size of fetch. Parameters: - query_id - start_over - fetch_size """ self.send_fetch(query_id, start_over, fetch_size) return self.recv_fetch() def send_fetch(self, query_id, start_over, fetch_size): self._oprot.writeMessageBegin('fetch', TMessageType.CALL, self._seqid) args = fetch_args() args.query_id = query_id args.start_over = start_over args.fetch_size = fetch_size args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_fetch(self): iprot = self._iprot (fname, mtype, rseqid) = iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(iprot) iprot.readMessageEnd() raise x result = fetch_result() result.read(iprot) iprot.readMessageEnd() if result.success is not None: return result.success if result.error is not None: raise result.error if result.error2 is not None: raise result.error2 raise TApplicationException(TApplicationException.MISSING_RESULT, "fetch failed: unknown result") def get_state(self, handle): """ Get the state of the query Parameters: - handle """ self.send_get_state(handle) return self.recv_get_state() def send_get_state(self, handle): self._oprot.writeMessageBegin('get_state', TMessageType.CALL, self._seqid) args = get_state_args() args.handle = handle args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_get_state(self): iprot = self._iprot (fname, mtype, rseqid) = iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(iprot) iprot.readMessageEnd() raise x result = get_state_result() result.read(iprot) iprot.readMessageEnd() if result.success is not None: return result.success if result.error is not None: raise result.error raise TApplicationException(TApplicationException.MISSING_RESULT, "get_state failed: unknown result") def get_results_metadata(self, handle): """ Get the result metadata Parameters: - handle """ self.send_get_results_metadata(handle) return self.recv_get_results_metadata() def send_get_results_metadata(self, handle): self._oprot.writeMessageBegin('get_results_metadata', TMessageType.CALL, self._seqid) args = get_results_metadata_args() args.handle = handle args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_get_results_metadata(self): iprot = self._iprot (fname, mtype, rseqid) = iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(iprot) iprot.readMessageEnd() raise x result = get_results_metadata_result() result.read(iprot) iprot.readMessageEnd() if result.success is not None: return result.success if result.error is not None: raise result.error raise TApplicationException(TApplicationException.MISSING_RESULT, "get_results_metadata failed: unknown result") def echo(self, s): """ Used to test connection to server. A "noop" command. Parameters: - s """ self.send_echo(s) return self.recv_echo() def send_echo(self, s): self._oprot.writeMessageBegin('echo', TMessageType.CALL, self._seqid) args = echo_args() args.s = s args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_echo(self): iprot = self._iprot (fname, mtype, rseqid) = iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(iprot) iprot.readMessageEnd() raise x result = echo_result() result.read(iprot) iprot.readMessageEnd() if result.success is not None: return result.success raise TApplicationException(TApplicationException.MISSING_RESULT, "echo failed: unknown result") def dump_config(self): """ Returns a string representation of the configuration object being used. Handy for debugging. """ self.send_dump_config() return self.recv_dump_config() def send_dump_config(self): self._oprot.writeMessageBegin('dump_config', TMessageType.CALL, self._seqid) args = dump_config_args() args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_dump_config(self): iprot = self._iprot (fname, mtype, rseqid) = iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(iprot) iprot.readMessageEnd() raise x result = dump_config_result() result.read(iprot) iprot.readMessageEnd() if result.success is not None: return result.success raise TApplicationException(TApplicationException.MISSING_RESULT, "dump_config failed: unknown result") def get_log(self, context): """ Get the log messages related to the given context. Parameters: - context """ self.send_get_log(context) return self.recv_get_log() def send_get_log(self, context): self._oprot.writeMessageBegin('get_log', TMessageType.CALL, self._seqid) args = get_log_args() args.context = context args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_get_log(self): iprot = self._iprot (fname, mtype, rseqid) = iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(iprot) iprot.readMessageEnd() raise x result = get_log_result() result.read(iprot) iprot.readMessageEnd() if result.success is not None: return result.success if result.error is not None: raise result.error raise TApplicationException(TApplicationException.MISSING_RESULT, "get_log failed: unknown result") def get_default_configuration(self, include_hadoop): """ Parameters: - include_hadoop """ self.send_get_default_configuration(include_hadoop) return self.recv_get_default_configuration() def send_get_default_configuration(self, include_hadoop): self._oprot.writeMessageBegin('get_default_configuration', TMessageType.CALL, self._seqid) args = get_default_configuration_args() args.include_hadoop = include_hadoop args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_get_default_configuration(self): iprot = self._iprot (fname, mtype, rseqid) = iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(iprot) iprot.readMessageEnd() raise x result = get_default_configuration_result() result.read(iprot) iprot.readMessageEnd() if result.success is not None: return result.success raise TApplicationException(TApplicationException.MISSING_RESULT, "get_default_configuration failed: unknown result") def close(self, handle): """ Parameters: - handle """ self.send_close(handle) self.recv_close() def send_close(self, handle): self._oprot.writeMessageBegin('close', TMessageType.CALL, self._seqid) args = close_args() args.handle = handle args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_close(self): iprot = self._iprot (fname, mtype, rseqid) = iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(iprot) iprot.readMessageEnd() raise x result = close_result() result.read(iprot) iprot.readMessageEnd() if result.error is not None: raise result.error if result.error2 is not None: raise result.error2 return def clean(self, log_context): """ Parameters: - log_context """ self.send_clean(log_context) self.recv_clean() def send_clean(self, log_context): self._oprot.writeMessageBegin('clean', TMessageType.CALL, self._seqid) args = clean_args() args.log_context = log_context args.write(self._oprot) self._oprot.writeMessageEnd() self._oprot.trans.flush() def recv_clean(self): iprot = self._iprot (fname, mtype, rseqid) = iprot.readMessageBegin() if mtype == TMessageType.EXCEPTION: x = TApplicationException() x.read(iprot) iprot.readMessageEnd() raise x result = clean_result() result.read(iprot) iprot.readMessageEnd() return class Processor(Iface, TProcessor): def __init__(self, handler): self._handler = handler self._processMap = {} self._processMap["query"] = Processor.process_query self._processMap["executeAndWait"] = Processor.process_executeAndWait self._processMap["explain"] = Processor.process_explain self._processMap["fetch"] = Processor.process_fetch self._processMap["get_state"] = Processor.process_get_state self._processMap["get_results_metadata"] = Processor.process_get_results_metadata self._processMap["echo"] = Processor.process_echo self._processMap["dump_config"] = Processor.process_dump_config self._processMap["get_log"] = Processor.process_get_log self._processMap["get_default_configuration"] = Processor.process_get_default_configuration self._processMap["close"] = Processor.process_close self._processMap["clean"] = Processor.process_clean self._on_message_begin = None def on_message_begin(self, func): self._on_message_begin = func def process(self, iprot, oprot): (name, type, seqid) = iprot.readMessageBegin() if self._on_message_begin: self._on_message_begin(name, type, seqid) if name not in self._processMap: iprot.skip(TType.STRUCT) iprot.readMessageEnd() x = TApplicationException(TApplicationException.UNKNOWN_METHOD, 'Unknown function %s' % (name)) oprot.writeMessageBegin(name, TMessageType.EXCEPTION, seqid) x.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() return else: self._processMap[name](self, seqid, iprot, oprot) return True def process_query(self, seqid, iprot, oprot): args = query_args() args.read(iprot) iprot.readMessageEnd() result = query_result() try: result.success = self._handler.query(args.query) msg_type = TMessageType.REPLY except TTransport.TTransportException: raise except BeeswaxException as error: msg_type = TMessageType.REPLY result.error = error except TApplicationException as ex: logging.exception('TApplication exception in handler') msg_type = TMessageType.EXCEPTION result = ex except Exception: logging.exception('Unexpected exception in handler') msg_type = TMessageType.EXCEPTION result = TApplicationException(TApplicationException.INTERNAL_ERROR, 'Internal error') oprot.writeMessageBegin("query", msg_type, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_executeAndWait(self, seqid, iprot, oprot): args = executeAndWait_args() args.read(iprot) iprot.readMessageEnd() result = executeAndWait_result() try: result.success = self._handler.executeAndWait(args.query, args.clientCtx) msg_type = TMessageType.REPLY except TTransport.TTransportException: raise except BeeswaxException as error: msg_type = TMessageType.REPLY result.error = error except TApplicationException as ex: logging.exception('TApplication exception in handler') msg_type = TMessageType.EXCEPTION result = ex except Exception: logging.exception('Unexpected exception in handler') msg_type = TMessageType.EXCEPTION result = TApplicationException(TApplicationException.INTERNAL_ERROR, 'Internal error') oprot.writeMessageBegin("executeAndWait", msg_type, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_explain(self, seqid, iprot, oprot): args = explain_args() args.read(iprot) iprot.readMessageEnd() result = explain_result() try: result.success = self._handler.explain(args.query) msg_type = TMessageType.REPLY except TTransport.TTransportException: raise except BeeswaxException as error: msg_type = TMessageType.REPLY result.error = error except TApplicationException as ex: logging.exception('TApplication exception in handler') msg_type = TMessageType.EXCEPTION result = ex except Exception: logging.exception('Unexpected exception in handler') msg_type = TMessageType.EXCEPTION result = TApplicationException(TApplicationException.INTERNAL_ERROR, 'Internal error') oprot.writeMessageBegin("explain", msg_type, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_fetch(self, seqid, iprot, oprot): args = fetch_args() args.read(iprot) iprot.readMessageEnd() result = fetch_result() try: result.success = self._handler.fetch(args.query_id, args.start_over, args.fetch_size) msg_type = TMessageType.REPLY except TTransport.TTransportException: raise except QueryNotFoundException as error: msg_type = TMessageType.REPLY result.error = error except BeeswaxException as error2: msg_type = TMessageType.REPLY result.error2 = error2 except TApplicationException as ex: logging.exception('TApplication exception in handler') msg_type = TMessageType.EXCEPTION result = ex except Exception: logging.exception('Unexpected exception in handler') msg_type = TMessageType.EXCEPTION result = TApplicationException(TApplicationException.INTERNAL_ERROR, 'Internal error') oprot.writeMessageBegin("fetch", msg_type, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_get_state(self, seqid, iprot, oprot): args = get_state_args() args.read(iprot) iprot.readMessageEnd() result = get_state_result() try: result.success = self._handler.get_state(args.handle) msg_type = TMessageType.REPLY except TTransport.TTransportException: raise except QueryNotFoundException as error: msg_type = TMessageType.REPLY result.error = error except TApplicationException as ex: logging.exception('TApplication exception in handler') msg_type = TMessageType.EXCEPTION result = ex except Exception: logging.exception('Unexpected exception in handler') msg_type = TMessageType.EXCEPTION result = TApplicationException(TApplicationException.INTERNAL_ERROR, 'Internal error') oprot.writeMessageBegin("get_state", msg_type, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_get_results_metadata(self, seqid, iprot, oprot): args = get_results_metadata_args() args.read(iprot) iprot.readMessageEnd() result = get_results_metadata_result() try: result.success = self._handler.get_results_metadata(args.handle) msg_type = TMessageType.REPLY except TTransport.TTransportException: raise except QueryNotFoundException as error: msg_type = TMessageType.REPLY result.error = error except TApplicationException as ex: logging.exception('TApplication exception in handler') msg_type = TMessageType.EXCEPTION result = ex except Exception: logging.exception('Unexpected exception in handler') msg_type = TMessageType.EXCEPTION result = TApplicationException(TApplicationException.INTERNAL_ERROR, 'Internal error') oprot.writeMessageBegin("get_results_metadata", msg_type, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_echo(self, seqid, iprot, oprot): args = echo_args() args.read(iprot) iprot.readMessageEnd() result = echo_result() try: result.success = self._handler.echo(args.s) msg_type = TMessageType.REPLY except TTransport.TTransportException: raise except TApplicationException as ex: logging.exception('TApplication exception in handler') msg_type = TMessageType.EXCEPTION result = ex except Exception: logging.exception('Unexpected exception in handler') msg_type = TMessageType.EXCEPTION result = TApplicationException(TApplicationException.INTERNAL_ERROR, 'Internal error') oprot.writeMessageBegin("echo", msg_type, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_dump_config(self, seqid, iprot, oprot): args = dump_config_args() args.read(iprot) iprot.readMessageEnd() result = dump_config_result() try: result.success = self._handler.dump_config() msg_type = TMessageType.REPLY except TTransport.TTransportException: raise except TApplicationException as ex: logging.exception('TApplication exception in handler') msg_type = TMessageType.EXCEPTION result = ex except Exception: logging.exception('Unexpected exception in handler') msg_type = TMessageType.EXCEPTION result = TApplicationException(TApplicationException.INTERNAL_ERROR, 'Internal error') oprot.writeMessageBegin("dump_config", msg_type, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_get_log(self, seqid, iprot, oprot): args = get_log_args() args.read(iprot) iprot.readMessageEnd() result = get_log_result() try: result.success = self._handler.get_log(args.context) msg_type = TMessageType.REPLY except TTransport.TTransportException: raise except QueryNotFoundException as error: msg_type = TMessageType.REPLY result.error = error except TApplicationException as ex: logging.exception('TApplication exception in handler') msg_type = TMessageType.EXCEPTION result = ex except Exception: logging.exception('Unexpected exception in handler') msg_type = TMessageType.EXCEPTION result = TApplicationException(TApplicationException.INTERNAL_ERROR, 'Internal error') oprot.writeMessageBegin("get_log", msg_type, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_get_default_configuration(self, seqid, iprot, oprot): args = get_default_configuration_args() args.read(iprot) iprot.readMessageEnd() result = get_default_configuration_result() try: result.success = self._handler.get_default_configuration(args.include_hadoop) msg_type = TMessageType.REPLY except TTransport.TTransportException: raise except TApplicationException as ex: logging.exception('TApplication exception in handler') msg_type = TMessageType.EXCEPTION result = ex except Exception: logging.exception('Unexpected exception in handler') msg_type = TMessageType.EXCEPTION result = TApplicationException(TApplicationException.INTERNAL_ERROR, 'Internal error') oprot.writeMessageBegin("get_default_configuration", msg_type, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_close(self, seqid, iprot, oprot): args = close_args() args.read(iprot) iprot.readMessageEnd() result = close_result() try: self._handler.close(args.handle) msg_type = TMessageType.REPLY except TTransport.TTransportException: raise except QueryNotFoundException as error: msg_type = TMessageType.REPLY result.error = error except BeeswaxException as error2: msg_type = TMessageType.REPLY result.error2 = error2 except TApplicationException as ex: logging.exception('TApplication exception in handler') msg_type = TMessageType.EXCEPTION result = ex except Exception: logging.exception('Unexpected exception in handler') msg_type = TMessageType.EXCEPTION result = TApplicationException(TApplicationException.INTERNAL_ERROR, 'Internal error') oprot.writeMessageBegin("close", msg_type, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() def process_clean(self, seqid, iprot, oprot): args = clean_args() args.read(iprot) iprot.readMessageEnd() result = clean_result() try: self._handler.clean(args.log_context) msg_type = TMessageType.REPLY except TTransport.TTransportException: raise except TApplicationException as ex: logging.exception('TApplication exception in handler') msg_type = TMessageType.EXCEPTION result = ex except Exception: logging.exception('Unexpected exception in handler') msg_type = TMessageType.EXCEPTION result = TApplicationException(TApplicationException.INTERNAL_ERROR, 'Internal error') oprot.writeMessageBegin("clean", msg_type, seqid) result.write(oprot) oprot.writeMessageEnd() oprot.trans.flush() # HELPER FUNCTIONS AND STRUCTURES class query_args(object): """ Attributes: - query """ def __init__(self, query=None,): self.query = query def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [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.STRUCT: self.query = Query() self.query.read(iprot) else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('query_args') if self.query is not None: oprot.writeFieldBegin('query', TType.STRUCT, 1) self.query.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__.items()] 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) all_structs.append(query_args) query_args.thrift_spec = ( None, # 0 (1, TType.STRUCT, 'query', [Query, None], None, ), # 1 ) class query_result(object): """ Attributes: - success - error """ def __init__(self, success=None, error=None,): self.success = success self.error = error def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.STRUCT: self.success = QueryHandle() self.success.read(iprot) else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: self.error = BeeswaxException() self.error.read(iprot) else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('query_result') if self.success is not None: oprot.writeFieldBegin('success', TType.STRUCT, 0) self.success.write(oprot) oprot.writeFieldEnd() if self.error is not None: oprot.writeFieldBegin('error', TType.STRUCT, 1) self.error.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__.items()] 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) all_structs.append(query_result) query_result.thrift_spec = ( (0, TType.STRUCT, 'success', [QueryHandle, None], None, ), # 0 (1, TType.STRUCT, 'error', [BeeswaxException, None], None, ), # 1 ) class executeAndWait_args(object): """ Attributes: - query - clientCtx """ def __init__(self, query=None, clientCtx=None,): self.query = query self.clientCtx = clientCtx def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [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.STRUCT: self.query = Query() self.query.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRING: self.clientCtx = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('executeAndWait_args') if self.query is not None: oprot.writeFieldBegin('query', TType.STRUCT, 1) self.query.write(oprot) oprot.writeFieldEnd() if self.clientCtx is not None: oprot.writeFieldBegin('clientCtx', TType.STRING, 2) oprot.writeString(self.clientCtx.encode('utf-8') if sys.version_info[0] == 2 else self.clientCtx) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.items()] 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) all_structs.append(executeAndWait_args) executeAndWait_args.thrift_spec = ( None, # 0 (1, TType.STRUCT, 'query', [Query, None], None, ), # 1 (2, TType.STRING, 'clientCtx', 'UTF8', None, ), # 2 ) class executeAndWait_result(object): """ Attributes: - success - error """ def __init__(self, success=None, error=None,): self.success = success self.error = error def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.STRUCT: self.success = QueryHandle() self.success.read(iprot) else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: self.error = BeeswaxException() self.error.read(iprot) else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('executeAndWait_result') if self.success is not None: oprot.writeFieldBegin('success', TType.STRUCT, 0) self.success.write(oprot) oprot.writeFieldEnd() if self.error is not None: oprot.writeFieldBegin('error', TType.STRUCT, 1) self.error.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__.items()] 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) all_structs.append(executeAndWait_result) executeAndWait_result.thrift_spec = ( (0, TType.STRUCT, 'success', [QueryHandle, None], None, ), # 0 (1, TType.STRUCT, 'error', [BeeswaxException, None], None, ), # 1 ) class explain_args(object): """ Attributes: - query """ def __init__(self, query=None,): self.query = query def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [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.STRUCT: self.query = Query() self.query.read(iprot) else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('explain_args') if self.query is not None: oprot.writeFieldBegin('query', TType.STRUCT, 1) self.query.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__.items()] 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) all_structs.append(explain_args) explain_args.thrift_spec = ( None, # 0 (1, TType.STRUCT, 'query', [Query, None], None, ), # 1 ) class explain_result(object): """ Attributes: - success - error """ def __init__(self, success=None, error=None,): self.success = success self.error = error def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.STRUCT: self.success = QueryExplanation() self.success.read(iprot) else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: self.error = BeeswaxException() self.error.read(iprot) else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('explain_result') if self.success is not None: oprot.writeFieldBegin('success', TType.STRUCT, 0) self.success.write(oprot) oprot.writeFieldEnd() if self.error is not None: oprot.writeFieldBegin('error', TType.STRUCT, 1) self.error.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__.items()] 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) all_structs.append(explain_result) explain_result.thrift_spec = ( (0, TType.STRUCT, 'success', [QueryExplanation, None], None, ), # 0 (1, TType.STRUCT, 'error', [BeeswaxException, None], None, ), # 1 ) class fetch_args(object): """ Attributes: - query_id - start_over - fetch_size """ def __init__(self, query_id=None, start_over=None, fetch_size=-1,): self.query_id = query_id self.start_over = start_over self.fetch_size = fetch_size def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [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.STRUCT: self.query_id = QueryHandle() self.query_id.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.BOOL: self.start_over = iprot.readBool() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.I32: self.fetch_size = iprot.readI32() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('fetch_args') if self.query_id is not None: oprot.writeFieldBegin('query_id', TType.STRUCT, 1) self.query_id.write(oprot) oprot.writeFieldEnd() if self.start_over is not None: oprot.writeFieldBegin('start_over', TType.BOOL, 2) oprot.writeBool(self.start_over) oprot.writeFieldEnd() if self.fetch_size is not None: oprot.writeFieldBegin('fetch_size', TType.I32, 3) oprot.writeI32(self.fetch_size) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.items()] 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) all_structs.append(fetch_args) fetch_args.thrift_spec = ( None, # 0 (1, TType.STRUCT, 'query_id', [QueryHandle, None], None, ), # 1 (2, TType.BOOL, 'start_over', None, None, ), # 2 (3, TType.I32, 'fetch_size', None, -1, ), # 3 ) class fetch_result(object): """ Attributes: - success - error - error2 """ def __init__(self, success=None, error=None, error2=None,): self.success = success self.error = error self.error2 = error2 def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.STRUCT: self.success = Results() self.success.read(iprot) else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: self.error = QueryNotFoundException() self.error.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: self.error2 = BeeswaxException() self.error2.read(iprot) else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('fetch_result') if self.success is not None: oprot.writeFieldBegin('success', TType.STRUCT, 0) self.success.write(oprot) oprot.writeFieldEnd() if self.error is not None: oprot.writeFieldBegin('error', TType.STRUCT, 1) self.error.write(oprot) oprot.writeFieldEnd() if self.error2 is not None: oprot.writeFieldBegin('error2', TType.STRUCT, 2) self.error2.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__.items()] 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) all_structs.append(fetch_result) fetch_result.thrift_spec = ( (0, TType.STRUCT, 'success', [Results, None], None, ), # 0 (1, TType.STRUCT, 'error', [QueryNotFoundException, None], None, ), # 1 (2, TType.STRUCT, 'error2', [BeeswaxException, None], None, ), # 2 ) class get_state_args(object): """ Attributes: - handle """ def __init__(self, handle=None,): self.handle = handle def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [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.STRUCT: self.handle = QueryHandle() self.handle.read(iprot) else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('get_state_args') if self.handle is not None: oprot.writeFieldBegin('handle', TType.STRUCT, 1) self.handle.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__.items()] 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) all_structs.append(get_state_args) get_state_args.thrift_spec = ( None, # 0 (1, TType.STRUCT, 'handle', [QueryHandle, None], None, ), # 1 ) class get_state_result(object): """ Attributes: - success - error """ def __init__(self, success=None, error=None,): self.success = success self.error = error def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.I32: self.success = iprot.readI32() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: self.error = QueryNotFoundException() self.error.read(iprot) else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('get_state_result') if self.success is not None: oprot.writeFieldBegin('success', TType.I32, 0) oprot.writeI32(self.success) oprot.writeFieldEnd() if self.error is not None: oprot.writeFieldBegin('error', TType.STRUCT, 1) self.error.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__.items()] 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) all_structs.append(get_state_result) get_state_result.thrift_spec = ( (0, TType.I32, 'success', None, None, ), # 0 (1, TType.STRUCT, 'error', [QueryNotFoundException, None], None, ), # 1 ) class get_results_metadata_args(object): """ Attributes: - handle """ def __init__(self, handle=None,): self.handle = handle def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [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.STRUCT: self.handle = QueryHandle() self.handle.read(iprot) else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('get_results_metadata_args') if self.handle is not None: oprot.writeFieldBegin('handle', TType.STRUCT, 1) self.handle.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__.items()] 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) all_structs.append(get_results_metadata_args) get_results_metadata_args.thrift_spec = ( None, # 0 (1, TType.STRUCT, 'handle', [QueryHandle, None], None, ), # 1 ) class get_results_metadata_result(object): """ Attributes: - success - error """ def __init__(self, success=None, error=None,): self.success = success self.error = error def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.STRUCT: self.success = ResultsMetadata() self.success.read(iprot) else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: self.error = QueryNotFoundException() self.error.read(iprot) else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('get_results_metadata_result') if self.success is not None: oprot.writeFieldBegin('success', TType.STRUCT, 0) self.success.write(oprot) oprot.writeFieldEnd() if self.error is not None: oprot.writeFieldBegin('error', TType.STRUCT, 1) self.error.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__.items()] 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) all_structs.append(get_results_metadata_result) get_results_metadata_result.thrift_spec = ( (0, TType.STRUCT, 'success', [ResultsMetadata, None], None, ), # 0 (1, TType.STRUCT, 'error', [QueryNotFoundException, None], None, ), # 1 ) class echo_args(object): """ Attributes: - s """ def __init__(self, s=None,): self.s = s def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [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.s = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('echo_args') if self.s is not None: oprot.writeFieldBegin('s', TType.STRING, 1) oprot.writeString(self.s.encode('utf-8') if sys.version_info[0] == 2 else self.s) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.items()] 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) all_structs.append(echo_args) echo_args.thrift_spec = ( None, # 0 (1, TType.STRING, 's', 'UTF8', None, ), # 1 ) class echo_result(object): """ Attributes: - success """ def __init__(self, success=None,): self.success = success def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.STRING: self.success = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('echo_result') if self.success is not None: oprot.writeFieldBegin('success', TType.STRING, 0) oprot.writeString(self.success.encode('utf-8') if sys.version_info[0] == 2 else self.success) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.items()] 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) all_structs.append(echo_result) echo_result.thrift_spec = ( (0, TType.STRING, 'success', 'UTF8', None, ), # 0 ) class dump_config_args(object): def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('dump_config_args') oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.items()] 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) all_structs.append(dump_config_args) dump_config_args.thrift_spec = ( ) class dump_config_result(object): """ Attributes: - success """ def __init__(self, success=None,): self.success = success def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.STRING: self.success = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('dump_config_result') if self.success is not None: oprot.writeFieldBegin('success', TType.STRING, 0) oprot.writeString(self.success.encode('utf-8') if sys.version_info[0] == 2 else self.success) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.items()] 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) all_structs.append(dump_config_result) dump_config_result.thrift_spec = ( (0, TType.STRING, 'success', 'UTF8', None, ), # 0 ) class get_log_args(object): """ Attributes: - context """ def __init__(self, context=None,): self.context = context def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [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.context = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('get_log_args') if self.context is not None: oprot.writeFieldBegin('context', TType.STRING, 1) oprot.writeString(self.context.encode('utf-8') if sys.version_info[0] == 2 else self.context) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.items()] 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) all_structs.append(get_log_args) get_log_args.thrift_spec = ( None, # 0 (1, TType.STRING, 'context', 'UTF8', None, ), # 1 ) class get_log_result(object): """ Attributes: - success - error """ def __init__(self, success=None, error=None,): self.success = success self.error = error def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.STRING: self.success = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) elif fid == 1: if ftype == TType.STRUCT: self.error = QueryNotFoundException() self.error.read(iprot) else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('get_log_result') if self.success is not None: oprot.writeFieldBegin('success', TType.STRING, 0) oprot.writeString(self.success.encode('utf-8') if sys.version_info[0] == 2 else self.success) oprot.writeFieldEnd() if self.error is not None: oprot.writeFieldBegin('error', TType.STRUCT, 1) self.error.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__.items()] 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) all_structs.append(get_log_result) get_log_result.thrift_spec = ( (0, TType.STRING, 'success', 'UTF8', None, ), # 0 (1, TType.STRUCT, 'error', [QueryNotFoundException, None], None, ), # 1 ) class get_default_configuration_args(object): """ Attributes: - include_hadoop """ def __init__(self, include_hadoop=None,): self.include_hadoop = include_hadoop def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [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.BOOL: self.include_hadoop = iprot.readBool() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('get_default_configuration_args') if self.include_hadoop is not None: oprot.writeFieldBegin('include_hadoop', TType.BOOL, 1) oprot.writeBool(self.include_hadoop) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.items()] 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) all_structs.append(get_default_configuration_args) get_default_configuration_args.thrift_spec = ( None, # 0 (1, TType.BOOL, 'include_hadoop', None, None, ), # 1 ) class get_default_configuration_result(object): """ Attributes: - success """ def __init__(self, success=None,): self.success = success def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break if fid == 0: if ftype == TType.LIST: self.success = [] (_etype24, _size21) = iprot.readListBegin() for _i25 in range(_size21): _elem26 = ConfigVariable() _elem26.read(iprot) self.success.append(_elem26) iprot.readListEnd() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('get_default_configuration_result') if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) for iter27 in self.success: iter27.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__.items()] 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) all_structs.append(get_default_configuration_result) get_default_configuration_result.thrift_spec = ( (0, TType.LIST, 'success', (TType.STRUCT, [ConfigVariable, None], False), None, ), # 0 ) class close_args(object): """ Attributes: - handle """ def __init__(self, handle=None,): self.handle = handle def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [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.STRUCT: self.handle = QueryHandle() self.handle.read(iprot) else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('close_args') if self.handle is not None: oprot.writeFieldBegin('handle', TType.STRUCT, 1) self.handle.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__.items()] 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) all_structs.append(close_args) close_args.thrift_spec = ( None, # 0 (1, TType.STRUCT, 'handle', [QueryHandle, None], None, ), # 1 ) class close_result(object): """ Attributes: - error - error2 """ def __init__(self, error=None, error2=None,): self.error = error self.error2 = error2 def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [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.STRUCT: self.error = QueryNotFoundException() self.error.read(iprot) else: iprot.skip(ftype) elif fid == 2: if ftype == TType.STRUCT: self.error2 = BeeswaxException() self.error2.read(iprot) else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('close_result') if self.error is not None: oprot.writeFieldBegin('error', TType.STRUCT, 1) self.error.write(oprot) oprot.writeFieldEnd() if self.error2 is not None: oprot.writeFieldBegin('error2', TType.STRUCT, 2) self.error2.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__.items()] 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) all_structs.append(close_result) close_result.thrift_spec = ( None, # 0 (1, TType.STRUCT, 'error', [QueryNotFoundException, None], None, ), # 1 (2, TType.STRUCT, 'error2', [BeeswaxException, None], None, ), # 2 ) class clean_args(object): """ Attributes: - log_context """ def __init__(self, log_context=None,): self.log_context = log_context def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [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.log_context = iprot.readString().decode('utf-8') if sys.version_info[0] == 2 else iprot.readString() else: iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('clean_args') if self.log_context is not None: oprot.writeFieldBegin('log_context', TType.STRING, 1) oprot.writeString(self.log_context.encode('utf-8') if sys.version_info[0] == 2 else self.log_context) oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.items()] 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) all_structs.append(clean_args) clean_args.thrift_spec = ( None, # 0 (1, TType.STRING, 'log_context', 'UTF8', None, ), # 1 ) class clean_result(object): def read(self, iprot): if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None: iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec]) return iprot.readStructBegin() while True: (fname, ftype, fid) = iprot.readFieldBegin() if ftype == TType.STOP: break else: iprot.skip(ftype) iprot.readFieldEnd() iprot.readStructEnd() def write(self, oprot): if oprot._fast_encode is not None and self.thrift_spec is not None: oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec])) return oprot.writeStructBegin('clean_result') oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): return def __repr__(self): L = ['%s=%r' % (key, value) for key, value in self.__dict__.items()] 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) all_structs.append(clean_result) clean_result.thrift_spec = ( ) fix_spec(all_structs) del all_structs