scray.service.qservice.thriftjava.ScrayStatefulTService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scray-client-jdbc Show documentation
Show all versions of scray-client-jdbc Show documentation
scray java code, which can be used from java and scala
The newest version!
/**
* Autogenerated by Thrift
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
*/
package scray.service.qservice.thriftjava;
import org.apache.commons.lang.builder.HashCodeBuilder;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.util.HashMap;
import java.util.EnumMap;
import java.util.Set;
import java.util.HashSet;
import java.util.EnumSet;
import java.util.Collections;
import java.util.BitSet;
import java.nio.ByteBuffer;
import java.util.Arrays;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.apache.thrift.*;
import org.apache.thrift.async.*;
import org.apache.thrift.meta_data.*;
import org.apache.thrift.transport.*;
import org.apache.thrift.protocol.*;
import com.twitter.util.Future;
import com.twitter.util.Function;
import com.twitter.util.Function2;
import com.twitter.util.Try;
import com.twitter.util.Return;
import com.twitter.util.Throw;
import com.twitter.finagle.thrift.DeserializeCtx;
import com.twitter.finagle.thrift.ThriftClientRequest;
public class ScrayStatefulTService {
public interface Iface {
public scray.service.qmodel.thriftjava.ScrayUUID query(scray.service.qmodel.thriftjava.ScrayTQuery query) throws ScrayTException, TException;
public ScrayTResultFrame getResults(scray.service.qmodel.thriftjava.ScrayUUID queryId) throws ScrayTException, TException;
}
public interface AsyncIface {
public void query(scray.service.qmodel.thriftjava.ScrayTQuery query, AsyncMethodCallback resultHandler) throws TException;
public void getResults(scray.service.qmodel.thriftjava.ScrayUUID queryId, AsyncMethodCallback resultHandler) throws TException;
}
public interface ServiceIface {
public Future query(scray.service.qmodel.thriftjava.ScrayTQuery query);
public Future getResults(scray.service.qmodel.thriftjava.ScrayUUID queryId);
}
public static class Client implements TServiceClient, Iface {
public static class Factory implements TServiceClientFactory {
public Factory() {}
public Client getClient(TProtocol prot) {
return new Client(prot);
}
public Client getClient(TProtocol iprot, TProtocol oprot) {
return new Client(iprot, oprot);
}
}
public Client(TProtocol prot)
{
this(prot, prot);
}
public Client(TProtocol iprot, TProtocol oprot)
{
iprot_ = iprot;
oprot_ = oprot;
}
protected TProtocol iprot_;
protected TProtocol oprot_;
protected int seqid_;
public TProtocol getInputProtocol()
{
return this.iprot_;
}
public TProtocol getOutputProtocol()
{
return this.oprot_;
}
public scray.service.qmodel.thriftjava.ScrayUUID query(scray.service.qmodel.thriftjava.ScrayTQuery query) throws ScrayTException, TException
{
send_query(query);
return recv_query();
}
public void send_query(scray.service.qmodel.thriftjava.ScrayTQuery query) throws TException
{
oprot_.writeMessageBegin(new TMessage("query", TMessageType.CALL, ++seqid_));
query_args __args__ = new query_args();
__args__.setQuery(query);
__args__.write(oprot_);
oprot_.writeMessageEnd();
oprot_.getTransport().flush();
}
public scray.service.qmodel.thriftjava.ScrayUUID recv_query() throws ScrayTException, TException
{
TMessage msg = iprot_.readMessageBegin();
if (msg.type == TMessageType.EXCEPTION) {
TApplicationException x = TApplicationException.read(iprot_);
iprot_.readMessageEnd();
throw x;
}
if (msg.seqid != seqid_) {
throw new TApplicationException(TApplicationException.BAD_SEQUENCE_ID, "query failed: out of sequence response");
}
query_result result = new query_result();
result.read(iprot_);
iprot_.readMessageEnd();
if (result.isSetSuccess()) {
return result.success;
}
if (result.ex != null) {
throw result.ex;
}
throw new TApplicationException(TApplicationException.MISSING_RESULT, "query failed: unknown result");
}
public ScrayTResultFrame getResults(scray.service.qmodel.thriftjava.ScrayUUID queryId) throws ScrayTException, TException
{
send_getResults(queryId);
return recv_getResults();
}
public void send_getResults(scray.service.qmodel.thriftjava.ScrayUUID queryId) throws TException
{
oprot_.writeMessageBegin(new TMessage("getResults", TMessageType.CALL, ++seqid_));
getResults_args __args__ = new getResults_args();
__args__.setQueryId(queryId);
__args__.write(oprot_);
oprot_.writeMessageEnd();
oprot_.getTransport().flush();
}
public ScrayTResultFrame recv_getResults() throws ScrayTException, TException
{
TMessage msg = iprot_.readMessageBegin();
if (msg.type == TMessageType.EXCEPTION) {
TApplicationException x = TApplicationException.read(iprot_);
iprot_.readMessageEnd();
throw x;
}
if (msg.seqid != seqid_) {
throw new TApplicationException(TApplicationException.BAD_SEQUENCE_ID, "getResults failed: out of sequence response");
}
getResults_result result = new getResults_result();
result.read(iprot_);
iprot_.readMessageEnd();
if (result.isSetSuccess()) {
return result.success;
}
if (result.ex != null) {
throw result.ex;
}
throw new TApplicationException(TApplicationException.MISSING_RESULT, "getResults failed: unknown result");
}
}
public static class AsyncClient extends TAsyncClient implements AsyncIface {
public static class Factory implements TAsyncClientFactory {
private final TAsyncClientManager clientManager;
private final TProtocolFactory protocolFactory;
public Factory(TAsyncClientManager clientManager, TProtocolFactory protocolFactory) {
this.clientManager = clientManager;
this.protocolFactory = protocolFactory;
}
public AsyncClient getAsyncClient(TNonblockingTransport transport) {
return new AsyncClient(protocolFactory, clientManager, transport);
}
}
public AsyncClient(TProtocolFactory protocolFactory, TAsyncClientManager clientManager, TNonblockingTransport transport) {
super(protocolFactory, clientManager, transport);
}
public void query(scray.service.qmodel.thriftjava.ScrayTQuery query, AsyncMethodCallback __resultHandler__) throws TException {
checkReady();
query_call __method_call__ = new query_call(query, __resultHandler__, this, super.protocolFactory, super.transport);
manager.call(__method_call__);
}
public static class query_call extends TAsyncMethodCall {
private scray.service.qmodel.thriftjava.ScrayTQuery query;
public query_call(scray.service.qmodel.thriftjava.ScrayTQuery query, AsyncMethodCallback __resultHandler__, TAsyncClient __client__, TProtocolFactory __protocolFactory__, TNonblockingTransport __transport__) throws TException {
super(__client__, __protocolFactory__, __transport__, __resultHandler__, false);
this.query = query;
}
public void write_args(TProtocol __prot__) throws TException {
__prot__.writeMessageBegin(new TMessage("query", TMessageType.CALL, 0));
query_args __args__ = new query_args();
__args__.setQuery(query);
__args__.write(__prot__);
__prot__.writeMessageEnd();
}
public scray.service.qmodel.thriftjava.ScrayUUID getResult() throws ScrayTException, TException {
if (getState() != State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
TMemoryInputTransport __memoryTransport__ = new TMemoryInputTransport(getFrameBuffer().array());
TProtocol __prot__ = super.client.getProtocolFactory().getProtocol(__memoryTransport__);
return (new Client(__prot__)).recv_query();
}
}
public void getResults(scray.service.qmodel.thriftjava.ScrayUUID queryId, AsyncMethodCallback __resultHandler__) throws TException {
checkReady();
getResults_call __method_call__ = new getResults_call(queryId, __resultHandler__, this, super.protocolFactory, super.transport);
manager.call(__method_call__);
}
public static class getResults_call extends TAsyncMethodCall {
private scray.service.qmodel.thriftjava.ScrayUUID queryId;
public getResults_call(scray.service.qmodel.thriftjava.ScrayUUID queryId, AsyncMethodCallback __resultHandler__, TAsyncClient __client__, TProtocolFactory __protocolFactory__, TNonblockingTransport __transport__) throws TException {
super(__client__, __protocolFactory__, __transport__, __resultHandler__, false);
this.queryId = queryId;
}
public void write_args(TProtocol __prot__) throws TException {
__prot__.writeMessageBegin(new TMessage("getResults", TMessageType.CALL, 0));
getResults_args __args__ = new getResults_args();
__args__.setQueryId(queryId);
__args__.write(__prot__);
__prot__.writeMessageEnd();
}
public ScrayTResultFrame getResult() throws ScrayTException, TException {
if (getState() != State.RESPONSE_READ) {
throw new IllegalStateException("Method call not finished!");
}
TMemoryInputTransport __memoryTransport__ = new TMemoryInputTransport(getFrameBuffer().array());
TProtocol __prot__ = super.client.getProtocolFactory().getProtocol(__memoryTransport__);
return (new Client(__prot__)).recv_getResults();
}
}
}
public static class ServiceToClient implements ServiceIface {
private final com.twitter.finagle.Service service;
private final TProtocolFactory protocolFactory;
private final scala.PartialFunction responseClassifier;
public ServiceToClient(com.twitter.finagle.Service service, TProtocolFactory protocolFactory, scala.PartialFunction responseClassifier) {
this.service = service;
this.protocolFactory = protocolFactory;
this.responseClassifier = responseClassifier;
}
public ServiceToClient(com.twitter.finagle.Service service, TProtocolFactory protocolFactory) {
this.service = service;
this.protocolFactory = protocolFactory;
this.responseClassifier = com.twitter.finagle.service.ResponseClassifier.Default();
}
public Future query(scray.service.qmodel.thriftjava.ScrayTQuery query) {
try {
// TODO: size
TMemoryBuffer __memoryTransport__ = new TMemoryBuffer(512);
TProtocol __prot__ = this.protocolFactory.getProtocol(__memoryTransport__);
__prot__.writeMessageBegin(new TMessage("query", TMessageType.CALL, 0));
query_args __args__ = new query_args();
__args__.setQuery(query);
__args__.write(__prot__);
__prot__.writeMessageEnd();
byte[] __buffer__ = Arrays.copyOfRange(__memoryTransport__.getArray(), 0, __memoryTransport__.length());
final ThriftClientRequest __request__ = new ThriftClientRequest(__buffer__, false);
Function> replyDeserializer =
new Function>() {
public com.twitter.util.Try apply(byte[] __buffer__) {
TMemoryInputTransport __memoryTransport__ = new TMemoryInputTransport(__buffer__);
TProtocol __prot__ = ServiceToClient.this.protocolFactory.getProtocol(__memoryTransport__);
try {
return new com.twitter.util.Return(((new Client(__prot__)).recv_query()));
} catch (Exception e) {
return new com.twitter.util.Throw(e);
}
}
};
DeserializeCtx serdeCtx = new DeserializeCtx(__args__, replyDeserializer);
return com.twitter.finagle.context.Contexts.local().let(
DeserializeCtx.Key(),
serdeCtx,
new com.twitter.util.Function0>() {
public Future apply() {
Future __done__ = service.apply(__request__);
return __done__.flatMap(new Function>() {
public Future apply(byte[] __buffer__) {
TMemoryInputTransport __memoryTransport__ = new TMemoryInputTransport(__buffer__);
TProtocol __prot__ = ServiceToClient.this.protocolFactory.getProtocol(__memoryTransport__);
try {
return Future.value((new Client(__prot__)).recv_query());
} catch (Exception e) {
return Future.exception(e);
}
}
});
}
});
} catch (TException e) {
return Future.exception(e);
}
}
public Future getResults(scray.service.qmodel.thriftjava.ScrayUUID queryId) {
try {
// TODO: size
TMemoryBuffer __memoryTransport__ = new TMemoryBuffer(512);
TProtocol __prot__ = this.protocolFactory.getProtocol(__memoryTransport__);
__prot__.writeMessageBegin(new TMessage("getResults", TMessageType.CALL, 0));
getResults_args __args__ = new getResults_args();
__args__.setQueryId(queryId);
__args__.write(__prot__);
__prot__.writeMessageEnd();
byte[] __buffer__ = Arrays.copyOfRange(__memoryTransport__.getArray(), 0, __memoryTransport__.length());
final ThriftClientRequest __request__ = new ThriftClientRequest(__buffer__, false);
Function> replyDeserializer =
new Function>() {
public com.twitter.util.Try apply(byte[] __buffer__) {
TMemoryInputTransport __memoryTransport__ = new TMemoryInputTransport(__buffer__);
TProtocol __prot__ = ServiceToClient.this.protocolFactory.getProtocol(__memoryTransport__);
try {
return new com.twitter.util.Return(((new Client(__prot__)).recv_getResults()));
} catch (Exception e) {
return new com.twitter.util.Throw(e);
}
}
};
DeserializeCtx serdeCtx = new DeserializeCtx(__args__, replyDeserializer);
return com.twitter.finagle.context.Contexts.local().let(
DeserializeCtx.Key(),
serdeCtx,
new com.twitter.util.Function0>() {
public Future apply() {
Future __done__ = service.apply(__request__);
return __done__.flatMap(new Function>() {
public Future apply(byte[] __buffer__) {
TMemoryInputTransport __memoryTransport__ = new TMemoryInputTransport(__buffer__);
TProtocol __prot__ = ServiceToClient.this.protocolFactory.getProtocol(__memoryTransport__);
try {
return Future.value((new Client(__prot__)).recv_getResults());
} catch (Exception e) {
return Future.exception(e);
}
}
});
}
});
} catch (TException e) {
return Future.exception(e);
}
}
}
public static class Processor implements TProcessor {
private static final Logger LOGGER = LoggerFactory.getLogger(Processor.class.getName());
public Processor(Iface iface)
{
iface_ = iface;
processMap_.put("query", new query());
processMap_.put("getResults", new getResults());
}
protected static interface ProcessFunction {
public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException;
}
private Iface iface_;
protected final HashMap processMap_ = new HashMap();
public boolean process(TProtocol iprot, TProtocol oprot) throws TException
{
TMessage msg = iprot.readMessageBegin();
ProcessFunction fn = processMap_.get(msg.name);
if (fn == null) {
TProtocolUtil.skip(iprot, TType.STRUCT);
iprot.readMessageEnd();
TApplicationException x = new TApplicationException(TApplicationException.UNKNOWN_METHOD, "Invalid method name: '"+msg.name+"'");
oprot.writeMessageBegin(new TMessage(msg.name, TMessageType.EXCEPTION, msg.seqid));
x.write(oprot);
oprot.writeMessageEnd();
oprot.getTransport().flush();
return true;
}
fn.process(msg.seqid, iprot, oprot);
return true;
}
private class query implements ProcessFunction {
public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
{
query_args args = new query_args();
try {
args.read(iprot);
} catch (TProtocolException e) {
iprot.readMessageEnd();
TApplicationException x = new TApplicationException(TApplicationException.PROTOCOL_ERROR, e.getMessage());
oprot.writeMessageBegin(new TMessage("query", TMessageType.EXCEPTION, seqid));
x.write(oprot);
oprot.writeMessageEnd();
oprot.getTransport().flush();
return;
}
iprot.readMessageEnd();
query_result result = new query_result();
try {
result.success = iface_.query(args.query);
} catch (ScrayTException ex) {
result.ex = ex;
} catch (Throwable th) {
LOGGER.error("Internal error processing query", th);
TApplicationException x = new TApplicationException(TApplicationException.INTERNAL_ERROR, "Internal error processing query");
oprot.writeMessageBegin(new TMessage("query", TMessageType.EXCEPTION, seqid));
x.write(oprot);
oprot.writeMessageEnd();
oprot.getTransport().flush();
return;
}
oprot.writeMessageBegin(new TMessage("query", TMessageType.REPLY, seqid));
result.write(oprot);
oprot.writeMessageEnd();
oprot.getTransport().flush();
}
}
private class getResults implements ProcessFunction {
public void process(int seqid, TProtocol iprot, TProtocol oprot) throws TException
{
getResults_args args = new getResults_args();
try {
args.read(iprot);
} catch (TProtocolException e) {
iprot.readMessageEnd();
TApplicationException x = new TApplicationException(TApplicationException.PROTOCOL_ERROR, e.getMessage());
oprot.writeMessageBegin(new TMessage("getResults", TMessageType.EXCEPTION, seqid));
x.write(oprot);
oprot.writeMessageEnd();
oprot.getTransport().flush();
return;
}
iprot.readMessageEnd();
getResults_result result = new getResults_result();
try {
result.success = iface_.getResults(args.queryId);
} catch (ScrayTException ex) {
result.ex = ex;
} catch (Throwable th) {
LOGGER.error("Internal error processing getResults", th);
TApplicationException x = new TApplicationException(TApplicationException.INTERNAL_ERROR, "Internal error processing getResults");
oprot.writeMessageBegin(new TMessage("getResults", TMessageType.EXCEPTION, seqid));
x.write(oprot);
oprot.writeMessageEnd();
oprot.getTransport().flush();
return;
}
oprot.writeMessageBegin(new TMessage("getResults", TMessageType.REPLY, seqid));
result.write(oprot);
oprot.writeMessageEnd();
oprot.getTransport().flush();
}
}
}
public static class Service extends com.twitter.finagle.Service {
private final ServiceIface iface;
private final TProtocolFactory protocolFactory;
protected HashMap>> functionMap = new HashMap>>();
public Service(final ServiceIface iface, final TProtocolFactory protocolFactory) {
this.iface = iface;
this.protocolFactory = protocolFactory;
functionMap.put("query", new Function2>() {
public Future apply(final TProtocol iprot, final Integer seqid) {
query_args args = new query_args();
try {
args.read(iprot);
} catch (TProtocolException e) {
try {
iprot.readMessageEnd();
TApplicationException x = new TApplicationException(TApplicationException.PROTOCOL_ERROR, e.getMessage());
TMemoryBuffer memoryBuffer = new TMemoryBuffer(512);
TProtocol oprot = protocolFactory.getProtocol(memoryBuffer);
oprot.writeMessageBegin(new TMessage("query", TMessageType.EXCEPTION, seqid));
x.write(oprot);
oprot.writeMessageEnd();
oprot.getTransport().flush();
byte[] buffer = Arrays.copyOfRange(memoryBuffer.getArray(), 0, memoryBuffer.length());
return Future.value(buffer);
} catch (Exception e1) {
return Future.exception(e1);
}
} catch (Exception e) {
return Future.exception(e);
}
try {
iprot.readMessageEnd();
} catch (Exception e) {
return Future.exception(e);
}
Future future;
try {
future = iface.query(args.query);
} catch (Exception e) {
future = Future.exception(e);
}
try {
return future.flatMap(new Function>() {
public Future apply(scray.service.qmodel.thriftjava.ScrayUUID value) {
query_result result = new query_result();
result.success = value;
result.setSuccessIsSet(true);
try {
TMemoryBuffer memoryBuffer = new TMemoryBuffer(512);
TProtocol oprot = protocolFactory.getProtocol(memoryBuffer);
oprot.writeMessageBegin(new TMessage("query", TMessageType.REPLY, seqid));
result.write(oprot);
oprot.writeMessageEnd();
return Future.value(Arrays.copyOfRange(memoryBuffer.getArray(), 0, memoryBuffer.length()));
} catch (Exception e) {
return Future.exception(e);
}
}
}).rescue(new Function>() {
public Future apply(Throwable t) {
try {
query_result result = new query_result();
if (t instanceof ScrayTException) {
result.ex = (ScrayTException)t;
}
else {
return Future.exception(t);
}
TMemoryBuffer memoryBuffer = new TMemoryBuffer(512);
TProtocol oprot = protocolFactory.getProtocol(memoryBuffer);
oprot.writeMessageBegin(new TMessage("query", TMessageType.REPLY, seqid));
result.write(oprot);
oprot.writeMessageEnd();
oprot.getTransport().flush();
return Future.value(Arrays.copyOfRange(memoryBuffer.getArray(), 0, memoryBuffer.length()));
} catch (Exception e) {
return Future.exception(e);
}
}
});
} catch (Exception e) {
return Future.exception(e);
}
}
});
functionMap.put("getResults", new Function2>() {
public Future apply(final TProtocol iprot, final Integer seqid) {
getResults_args args = new getResults_args();
try {
args.read(iprot);
} catch (TProtocolException e) {
try {
iprot.readMessageEnd();
TApplicationException x = new TApplicationException(TApplicationException.PROTOCOL_ERROR, e.getMessage());
TMemoryBuffer memoryBuffer = new TMemoryBuffer(512);
TProtocol oprot = protocolFactory.getProtocol(memoryBuffer);
oprot.writeMessageBegin(new TMessage("getResults", TMessageType.EXCEPTION, seqid));
x.write(oprot);
oprot.writeMessageEnd();
oprot.getTransport().flush();
byte[] buffer = Arrays.copyOfRange(memoryBuffer.getArray(), 0, memoryBuffer.length());
return Future.value(buffer);
} catch (Exception e1) {
return Future.exception(e1);
}
} catch (Exception e) {
return Future.exception(e);
}
try {
iprot.readMessageEnd();
} catch (Exception e) {
return Future.exception(e);
}
Future future;
try {
future = iface.getResults(args.queryId);
} catch (Exception e) {
future = Future.exception(e);
}
try {
return future.flatMap(new Function>() {
public Future apply(ScrayTResultFrame value) {
getResults_result result = new getResults_result();
result.success = value;
result.setSuccessIsSet(true);
try {
TMemoryBuffer memoryBuffer = new TMemoryBuffer(512);
TProtocol oprot = protocolFactory.getProtocol(memoryBuffer);
oprot.writeMessageBegin(new TMessage("getResults", TMessageType.REPLY, seqid));
result.write(oprot);
oprot.writeMessageEnd();
return Future.value(Arrays.copyOfRange(memoryBuffer.getArray(), 0, memoryBuffer.length()));
} catch (Exception e) {
return Future.exception(e);
}
}
}).rescue(new Function>() {
public Future apply(Throwable t) {
try {
getResults_result result = new getResults_result();
if (t instanceof ScrayTException) {
result.ex = (ScrayTException)t;
}
else {
return Future.exception(t);
}
TMemoryBuffer memoryBuffer = new TMemoryBuffer(512);
TProtocol oprot = protocolFactory.getProtocol(memoryBuffer);
oprot.writeMessageBegin(new TMessage("getResults", TMessageType.REPLY, seqid));
result.write(oprot);
oprot.writeMessageEnd();
oprot.getTransport().flush();
return Future.value(Arrays.copyOfRange(memoryBuffer.getArray(), 0, memoryBuffer.length()));
} catch (Exception e) {
return Future.exception(e);
}
}
});
} catch (Exception e) {
return Future.exception(e);
}
}
});
}
public Future apply(byte[] request) {
TTransport inputTransport = new TMemoryInputTransport(request);
TProtocol iprot = protocolFactory.getProtocol(inputTransport);
TMessage msg;
try {
msg = iprot.readMessageBegin();
} catch (Exception e) {
return Future.exception(e);
}
Function2> fn = functionMap.get(msg.name);
if (fn == null) {
try {
TProtocolUtil.skip(iprot, TType.STRUCT);
iprot.readMessageEnd();
TApplicationException x = new TApplicationException(TApplicationException.UNKNOWN_METHOD, "Invalid method name: '"+msg.name+"'");
TMemoryBuffer memoryBuffer = new TMemoryBuffer(512);
TProtocol oprot = protocolFactory.getProtocol(memoryBuffer);
oprot.writeMessageBegin(new TMessage(msg.name, TMessageType.EXCEPTION, msg.seqid));
x.write(oprot);
oprot.writeMessageEnd();
oprot.getTransport().flush();
return Future.value(Arrays.copyOfRange(memoryBuffer.getArray(), 0, memoryBuffer.length()));
} catch (Exception e) {
return Future.exception(e);
}
}
return fn.apply(iprot, msg.seqid);
}
}
public static class query_args implements TBase, java.io.Serializable, Cloneable {
private static final TStruct STRUCT_DESC = new TStruct("query_args");
private static final TField QUERY_FIELD_DESC = new TField("query", TType.STRUCT, (short)1);
public scray.service.qmodel.thriftjava.ScrayTQuery query;
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements TFieldIdEnum {
QUERY((short)1, "query");
private static final Map byName = new HashMap();
static {
for (_Fields field : EnumSet.allOf(_Fields.class)) {
byName.put(field.getFieldName(), field);
}
}
/**
* Find the _Fields constant that matches fieldId, or null if its not found.
*/
public static _Fields findByThriftId(int fieldId) {
switch(fieldId) {
case 1: // QUERY
return QUERY;
default:
return null;
}
}
/**
* Find the _Fields constant that matches fieldId, throwing an exception
* if it is not found.
*/
public static _Fields findByThriftIdOrThrow(int fieldId) {
_Fields fields = findByThriftId(fieldId);
if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
return fields;
}
/**
* Find the _Fields constant that matches name, or null if its not found.
*/
public static _Fields findByName(String name) {
return byName.get(name);
}
private final short _thriftId;
private final String _fieldName;
_Fields(short thriftId, String fieldName) {
_thriftId = thriftId;
_fieldName = fieldName;
}
public short getThriftFieldId() {
return _thriftId;
}
public String getFieldName() {
return _fieldName;
}
}
// isset id assignments
public static final Map<_Fields, FieldMetaData> metaDataMap;
static {
Map<_Fields, FieldMetaData> tmpMap = new EnumMap<_Fields, FieldMetaData>(_Fields.class);
tmpMap.put(_Fields.QUERY, new FieldMetaData("query", TFieldRequirementType.DEFAULT,
new StructMetaData(TType.STRUCT, scray.service.qmodel.thriftjava.ScrayTQuery.class)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
FieldMetaData.addStructMetaDataMap(query_args.class, metaDataMap);
}
public query_args() {
}
public query_args(
scray.service.qmodel.thriftjava.ScrayTQuery query)
{
this();
this.query = query;
}
/**
* Performs a deep copy on other.
*/
public query_args(query_args other) {
if (other.isSetQuery()) {
this.query = new scray.service.qmodel.thriftjava.ScrayTQuery(other.query);
}
}
public query_args deepCopy() {
return new query_args(this);
}
@java.lang.Override
public void clear() {
this.query = null;
}
public scray.service.qmodel.thriftjava.ScrayTQuery getQuery() {
return this.query;
}
public query_args setQuery(scray.service.qmodel.thriftjava.ScrayTQuery query) {
this.query = query;
return this;
}
public void unsetQuery() {
this.query = null;
}
/** Returns true if field query is set (has been asigned a value) and false otherwise */
public boolean isSetQuery() {
return this.query != null;
}
public void setQueryIsSet(boolean value) {
if (!value) {
this.query = null;
}
}
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case QUERY:
if (value == null) {
unsetQuery();
} else {
setQuery((scray.service.qmodel.thriftjava.ScrayTQuery)value);
}
break;
}
}
public Object getFieldValue(_Fields field) {
switch (field) {
case QUERY:
return getQuery();
}
throw new IllegalStateException();
}
/** Returns true if field corresponding to fieldID is set (has been asigned a value) and false otherwise */
public boolean isSet(_Fields field) {
if (field == null) {
throw new IllegalArgumentException();
}
switch (field) {
case QUERY:
return isSetQuery();
}
throw new IllegalStateException();
}
@java.lang.Override
public boolean equals(Object that) {
if (that == null)
return false;
if (that instanceof query_args)
return this.equals((query_args)that);
return false;
}
public boolean equals(query_args that) {
if (that == null)
return false;
boolean this_present_query = true && this.isSetQuery();
boolean that_present_query = true && that.isSetQuery();
if (this_present_query || that_present_query) {
if (!(this_present_query && that_present_query))
return false;
if (!this.query.equals(that.query))
return false;
}
return true;
}
@java.lang.Override
public int hashCode() {
HashCodeBuilder builder = new HashCodeBuilder();
boolean present_query = true && (isSetQuery());
builder.append(present_query);
if (present_query)
builder.append(query);
return builder.toHashCode();
}
public int compareTo(query_args other) {
if (!getClass().equals(other.getClass())) {
return getClass().getName().compareTo(other.getClass().getName());
}
int lastComparison = 0;
query_args typedOther = (query_args)other;
lastComparison = Boolean.valueOf(isSetQuery()).compareTo(typedOther.isSetQuery());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetQuery()) {
lastComparison = TBaseHelper.compareTo(this.query, typedOther.query);
if (lastComparison != 0) {
return lastComparison;
}
}
return 0;
}
public _Fields fieldForId(int fieldId) {
return _Fields.findByThriftId(fieldId);
}
public void read(TProtocol iprot) throws TException {
TField field;
iprot.readStructBegin();
while (true)
{
field = iprot.readFieldBegin();
if (field.type == TType.STOP) {
break;
}
switch (field.id) {
case 1: // QUERY
if (field.type == TType.STRUCT) {
this.query = new scray.service.qmodel.thriftjava.ScrayTQuery();
this.query.read(iprot);
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
default:
TProtocolUtil.skip(iprot, field.type);
}
iprot.readFieldEnd();
}
iprot.readStructEnd();
// check for required fields of primitive type, which can't be checked in the validate method
validate();
}
public void write(TProtocol oprot) throws TException {
validate();
oprot.writeStructBegin(STRUCT_DESC);
if (this.query != null) {
oprot.writeFieldBegin(QUERY_FIELD_DESC);
this.query.write(oprot);
oprot.writeFieldEnd();
}
oprot.writeFieldStop();
oprot.writeStructEnd();
}
@java.lang.Override
public String toString() {
StringBuilder sb = new StringBuilder("query_args(");
boolean first = true;
sb.append("query:");
if (this.query == null) {
sb.append("null");
} else {
sb.append(this.query);
}
first = false;
sb.append(")");
return sb.toString();
}
public void validate() throws TException {
// check for required fields
}
}
public static class query_result implements TBase, java.io.Serializable, Cloneable {
private static final TStruct STRUCT_DESC = new TStruct("query_result");
private static final TField SUCCESS_FIELD_DESC = new TField("success", TType.STRUCT, (short)0);
private static final TField EX_FIELD_DESC = new TField("ex", TType.STRUCT, (short)1);
public scray.service.qmodel.thriftjava.ScrayUUID success;
public ScrayTException ex;
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements TFieldIdEnum {
SUCCESS((short)0, "success"),
EX((short)1, "ex");
private static final Map byName = new HashMap();
static {
for (_Fields field : EnumSet.allOf(_Fields.class)) {
byName.put(field.getFieldName(), field);
}
}
/**
* Find the _Fields constant that matches fieldId, or null if its not found.
*/
public static _Fields findByThriftId(int fieldId) {
switch(fieldId) {
case 0: // SUCCESS
return SUCCESS;
case 1: // EX
return EX;
default:
return null;
}
}
/**
* Find the _Fields constant that matches fieldId, throwing an exception
* if it is not found.
*/
public static _Fields findByThriftIdOrThrow(int fieldId) {
_Fields fields = findByThriftId(fieldId);
if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
return fields;
}
/**
* Find the _Fields constant that matches name, or null if its not found.
*/
public static _Fields findByName(String name) {
return byName.get(name);
}
private final short _thriftId;
private final String _fieldName;
_Fields(short thriftId, String fieldName) {
_thriftId = thriftId;
_fieldName = fieldName;
}
public short getThriftFieldId() {
return _thriftId;
}
public String getFieldName() {
return _fieldName;
}
}
// isset id assignments
public static final Map<_Fields, FieldMetaData> metaDataMap;
static {
Map<_Fields, FieldMetaData> tmpMap = new EnumMap<_Fields, FieldMetaData>(_Fields.class);
tmpMap.put(_Fields.SUCCESS, new FieldMetaData("success", TFieldRequirementType.DEFAULT,
new StructMetaData(TType.STRUCT, scray.service.qmodel.thriftjava.ScrayUUID.class)));
tmpMap.put(_Fields.EX, new FieldMetaData("ex", TFieldRequirementType.DEFAULT,
new StructMetaData(TType.STRUCT, ScrayTException.class)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
FieldMetaData.addStructMetaDataMap(query_result.class, metaDataMap);
}
public query_result() {
}
public query_result(
scray.service.qmodel.thriftjava.ScrayUUID success,
ScrayTException ex)
{
this();
this.success = success;
this.ex = ex;
}
/**
* Performs a deep copy on other.
*/
public query_result(query_result other) {
if (other.isSetSuccess()) {
this.success = new scray.service.qmodel.thriftjava.ScrayUUID(other.success);
}
if (other.isSetEx()) {
this.ex = new ScrayTException(other.ex);
}
}
public query_result deepCopy() {
return new query_result(this);
}
@java.lang.Override
public void clear() {
this.success = null;
this.ex = null;
}
public scray.service.qmodel.thriftjava.ScrayUUID getSuccess() {
return this.success;
}
public query_result setSuccess(scray.service.qmodel.thriftjava.ScrayUUID success) {
this.success = success;
return this;
}
public void unsetSuccess() {
this.success = null;
}
/** Returns true if field success is set (has been asigned a value) and false otherwise */
public boolean isSetSuccess() {
return this.success != null;
}
public void setSuccessIsSet(boolean value) {
if (!value) {
this.success = null;
}
}
public ScrayTException getEx() {
return this.ex;
}
public query_result setEx(ScrayTException ex) {
this.ex = ex;
return this;
}
public void unsetEx() {
this.ex = null;
}
/** Returns true if field ex is set (has been asigned a value) and false otherwise */
public boolean isSetEx() {
return this.ex != null;
}
public void setExIsSet(boolean value) {
if (!value) {
this.ex = null;
}
}
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case SUCCESS:
if (value == null) {
unsetSuccess();
} else {
setSuccess((scray.service.qmodel.thriftjava.ScrayUUID)value);
}
break;
case EX:
if (value == null) {
unsetEx();
} else {
setEx((ScrayTException)value);
}
break;
}
}
public Object getFieldValue(_Fields field) {
switch (field) {
case SUCCESS:
return getSuccess();
case EX:
return getEx();
}
throw new IllegalStateException();
}
/** Returns true if field corresponding to fieldID is set (has been asigned a value) and false otherwise */
public boolean isSet(_Fields field) {
if (field == null) {
throw new IllegalArgumentException();
}
switch (field) {
case SUCCESS:
return isSetSuccess();
case EX:
return isSetEx();
}
throw new IllegalStateException();
}
@java.lang.Override
public boolean equals(Object that) {
if (that == null)
return false;
if (that instanceof query_result)
return this.equals((query_result)that);
return false;
}
public boolean equals(query_result that) {
if (that == null)
return false;
boolean this_present_success = true && this.isSetSuccess();
boolean that_present_success = true && that.isSetSuccess();
if (this_present_success || that_present_success) {
if (!(this_present_success && that_present_success))
return false;
if (!this.success.equals(that.success))
return false;
}
boolean this_present_ex = true && this.isSetEx();
boolean that_present_ex = true && that.isSetEx();
if (this_present_ex || that_present_ex) {
if (!(this_present_ex && that_present_ex))
return false;
if (!this.ex.equals(that.ex))
return false;
}
return true;
}
@java.lang.Override
public int hashCode() {
HashCodeBuilder builder = new HashCodeBuilder();
boolean present_success = true && (isSetSuccess());
builder.append(present_success);
if (present_success)
builder.append(success);
boolean present_ex = true && (isSetEx());
builder.append(present_ex);
if (present_ex)
builder.append(ex);
return builder.toHashCode();
}
public int compareTo(query_result other) {
if (!getClass().equals(other.getClass())) {
return getClass().getName().compareTo(other.getClass().getName());
}
int lastComparison = 0;
query_result typedOther = (query_result)other;
lastComparison = Boolean.valueOf(isSetSuccess()).compareTo(typedOther.isSetSuccess());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetSuccess()) {
lastComparison = TBaseHelper.compareTo(this.success, typedOther.success);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = Boolean.valueOf(isSetEx()).compareTo(typedOther.isSetEx());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetEx()) {
lastComparison = TBaseHelper.compareTo(this.ex, typedOther.ex);
if (lastComparison != 0) {
return lastComparison;
}
}
return 0;
}
public _Fields fieldForId(int fieldId) {
return _Fields.findByThriftId(fieldId);
}
public void read(TProtocol iprot) throws TException {
TField field;
iprot.readStructBegin();
while (true)
{
field = iprot.readFieldBegin();
if (field.type == TType.STOP) {
break;
}
switch (field.id) {
case 0: // SUCCESS
if (field.type == TType.STRUCT) {
this.success = new scray.service.qmodel.thriftjava.ScrayUUID();
this.success.read(iprot);
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case 1: // EX
if (field.type == TType.STRUCT) {
this.ex = new ScrayTException();
this.ex.read(iprot);
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
default:
TProtocolUtil.skip(iprot, field.type);
}
iprot.readFieldEnd();
}
iprot.readStructEnd();
// check for required fields of primitive type, which can't be checked in the validate method
validate();
}
public void write(TProtocol oprot) throws TException {
oprot.writeStructBegin(STRUCT_DESC);
if (this.isSetSuccess()) {
oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
this.success.write(oprot);
oprot.writeFieldEnd();
} else if (this.isSetEx()) {
oprot.writeFieldBegin(EX_FIELD_DESC);
this.ex.write(oprot);
oprot.writeFieldEnd();
}
oprot.writeFieldStop();
oprot.writeStructEnd();
}
@java.lang.Override
public String toString() {
StringBuilder sb = new StringBuilder("query_result(");
boolean first = true;
sb.append("success:");
if (this.success == null) {
sb.append("null");
} else {
sb.append(this.success);
}
first = false;
if (!first) sb.append(", ");
sb.append("ex:");
if (this.ex == null) {
sb.append("null");
} else {
sb.append(this.ex);
}
first = false;
sb.append(")");
return sb.toString();
}
public void validate() throws TException {
// check for required fields
}
}
public static class getResults_args implements TBase, java.io.Serializable, Cloneable {
private static final TStruct STRUCT_DESC = new TStruct("getResults_args");
private static final TField QUERY_ID_FIELD_DESC = new TField("queryId", TType.STRUCT, (short)1);
public scray.service.qmodel.thriftjava.ScrayUUID queryId;
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements TFieldIdEnum {
QUERY_ID((short)1, "queryId");
private static final Map byName = new HashMap();
static {
for (_Fields field : EnumSet.allOf(_Fields.class)) {
byName.put(field.getFieldName(), field);
}
}
/**
* Find the _Fields constant that matches fieldId, or null if its not found.
*/
public static _Fields findByThriftId(int fieldId) {
switch(fieldId) {
case 1: // QUERY_ID
return QUERY_ID;
default:
return null;
}
}
/**
* Find the _Fields constant that matches fieldId, throwing an exception
* if it is not found.
*/
public static _Fields findByThriftIdOrThrow(int fieldId) {
_Fields fields = findByThriftId(fieldId);
if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
return fields;
}
/**
* Find the _Fields constant that matches name, or null if its not found.
*/
public static _Fields findByName(String name) {
return byName.get(name);
}
private final short _thriftId;
private final String _fieldName;
_Fields(short thriftId, String fieldName) {
_thriftId = thriftId;
_fieldName = fieldName;
}
public short getThriftFieldId() {
return _thriftId;
}
public String getFieldName() {
return _fieldName;
}
}
// isset id assignments
public static final Map<_Fields, FieldMetaData> metaDataMap;
static {
Map<_Fields, FieldMetaData> tmpMap = new EnumMap<_Fields, FieldMetaData>(_Fields.class);
tmpMap.put(_Fields.QUERY_ID, new FieldMetaData("queryId", TFieldRequirementType.DEFAULT,
new StructMetaData(TType.STRUCT, scray.service.qmodel.thriftjava.ScrayUUID.class)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
FieldMetaData.addStructMetaDataMap(getResults_args.class, metaDataMap);
}
public getResults_args() {
}
public getResults_args(
scray.service.qmodel.thriftjava.ScrayUUID queryId)
{
this();
this.queryId = queryId;
}
/**
* Performs a deep copy on other.
*/
public getResults_args(getResults_args other) {
if (other.isSetQueryId()) {
this.queryId = new scray.service.qmodel.thriftjava.ScrayUUID(other.queryId);
}
}
public getResults_args deepCopy() {
return new getResults_args(this);
}
@java.lang.Override
public void clear() {
this.queryId = null;
}
public scray.service.qmodel.thriftjava.ScrayUUID getQueryId() {
return this.queryId;
}
public getResults_args setQueryId(scray.service.qmodel.thriftjava.ScrayUUID queryId) {
this.queryId = queryId;
return this;
}
public void unsetQueryId() {
this.queryId = null;
}
/** Returns true if field queryId is set (has been asigned a value) and false otherwise */
public boolean isSetQueryId() {
return this.queryId != null;
}
public void setQueryIdIsSet(boolean value) {
if (!value) {
this.queryId = null;
}
}
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case QUERY_ID:
if (value == null) {
unsetQueryId();
} else {
setQueryId((scray.service.qmodel.thriftjava.ScrayUUID)value);
}
break;
}
}
public Object getFieldValue(_Fields field) {
switch (field) {
case QUERY_ID:
return getQueryId();
}
throw new IllegalStateException();
}
/** Returns true if field corresponding to fieldID is set (has been asigned a value) and false otherwise */
public boolean isSet(_Fields field) {
if (field == null) {
throw new IllegalArgumentException();
}
switch (field) {
case QUERY_ID:
return isSetQueryId();
}
throw new IllegalStateException();
}
@java.lang.Override
public boolean equals(Object that) {
if (that == null)
return false;
if (that instanceof getResults_args)
return this.equals((getResults_args)that);
return false;
}
public boolean equals(getResults_args that) {
if (that == null)
return false;
boolean this_present_queryId = true && this.isSetQueryId();
boolean that_present_queryId = true && that.isSetQueryId();
if (this_present_queryId || that_present_queryId) {
if (!(this_present_queryId && that_present_queryId))
return false;
if (!this.queryId.equals(that.queryId))
return false;
}
return true;
}
@java.lang.Override
public int hashCode() {
HashCodeBuilder builder = new HashCodeBuilder();
boolean present_queryId = true && (isSetQueryId());
builder.append(present_queryId);
if (present_queryId)
builder.append(queryId);
return builder.toHashCode();
}
public int compareTo(getResults_args other) {
if (!getClass().equals(other.getClass())) {
return getClass().getName().compareTo(other.getClass().getName());
}
int lastComparison = 0;
getResults_args typedOther = (getResults_args)other;
lastComparison = Boolean.valueOf(isSetQueryId()).compareTo(typedOther.isSetQueryId());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetQueryId()) {
lastComparison = TBaseHelper.compareTo(this.queryId, typedOther.queryId);
if (lastComparison != 0) {
return lastComparison;
}
}
return 0;
}
public _Fields fieldForId(int fieldId) {
return _Fields.findByThriftId(fieldId);
}
public void read(TProtocol iprot) throws TException {
TField field;
iprot.readStructBegin();
while (true)
{
field = iprot.readFieldBegin();
if (field.type == TType.STOP) {
break;
}
switch (field.id) {
case 1: // QUERY_ID
if (field.type == TType.STRUCT) {
this.queryId = new scray.service.qmodel.thriftjava.ScrayUUID();
this.queryId.read(iprot);
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
default:
TProtocolUtil.skip(iprot, field.type);
}
iprot.readFieldEnd();
}
iprot.readStructEnd();
// check for required fields of primitive type, which can't be checked in the validate method
validate();
}
public void write(TProtocol oprot) throws TException {
validate();
oprot.writeStructBegin(STRUCT_DESC);
if (this.queryId != null) {
oprot.writeFieldBegin(QUERY_ID_FIELD_DESC);
this.queryId.write(oprot);
oprot.writeFieldEnd();
}
oprot.writeFieldStop();
oprot.writeStructEnd();
}
@java.lang.Override
public String toString() {
StringBuilder sb = new StringBuilder("getResults_args(");
boolean first = true;
sb.append("queryId:");
if (this.queryId == null) {
sb.append("null");
} else {
sb.append(this.queryId);
}
first = false;
sb.append(")");
return sb.toString();
}
public void validate() throws TException {
// check for required fields
}
}
public static class getResults_result implements TBase, java.io.Serializable, Cloneable {
private static final TStruct STRUCT_DESC = new TStruct("getResults_result");
private static final TField SUCCESS_FIELD_DESC = new TField("success", TType.STRUCT, (short)0);
private static final TField EX_FIELD_DESC = new TField("ex", TType.STRUCT, (short)1);
public ScrayTResultFrame success;
public ScrayTException ex;
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements TFieldIdEnum {
SUCCESS((short)0, "success"),
EX((short)1, "ex");
private static final Map byName = new HashMap();
static {
for (_Fields field : EnumSet.allOf(_Fields.class)) {
byName.put(field.getFieldName(), field);
}
}
/**
* Find the _Fields constant that matches fieldId, or null if its not found.
*/
public static _Fields findByThriftId(int fieldId) {
switch(fieldId) {
case 0: // SUCCESS
return SUCCESS;
case 1: // EX
return EX;
default:
return null;
}
}
/**
* Find the _Fields constant that matches fieldId, throwing an exception
* if it is not found.
*/
public static _Fields findByThriftIdOrThrow(int fieldId) {
_Fields fields = findByThriftId(fieldId);
if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!");
return fields;
}
/**
* Find the _Fields constant that matches name, or null if its not found.
*/
public static _Fields findByName(String name) {
return byName.get(name);
}
private final short _thriftId;
private final String _fieldName;
_Fields(short thriftId, String fieldName) {
_thriftId = thriftId;
_fieldName = fieldName;
}
public short getThriftFieldId() {
return _thriftId;
}
public String getFieldName() {
return _fieldName;
}
}
// isset id assignments
public static final Map<_Fields, FieldMetaData> metaDataMap;
static {
Map<_Fields, FieldMetaData> tmpMap = new EnumMap<_Fields, FieldMetaData>(_Fields.class);
tmpMap.put(_Fields.SUCCESS, new FieldMetaData("success", TFieldRequirementType.DEFAULT,
new StructMetaData(TType.STRUCT, ScrayTResultFrame.class)));
tmpMap.put(_Fields.EX, new FieldMetaData("ex", TFieldRequirementType.DEFAULT,
new StructMetaData(TType.STRUCT, ScrayTException.class)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
FieldMetaData.addStructMetaDataMap(getResults_result.class, metaDataMap);
}
public getResults_result() {
}
public getResults_result(
ScrayTResultFrame success,
ScrayTException ex)
{
this();
this.success = success;
this.ex = ex;
}
/**
* Performs a deep copy on other.
*/
public getResults_result(getResults_result other) {
if (other.isSetSuccess()) {
this.success = new ScrayTResultFrame(other.success);
}
if (other.isSetEx()) {
this.ex = new ScrayTException(other.ex);
}
}
public getResults_result deepCopy() {
return new getResults_result(this);
}
@java.lang.Override
public void clear() {
this.success = null;
this.ex = null;
}
public ScrayTResultFrame getSuccess() {
return this.success;
}
public getResults_result setSuccess(ScrayTResultFrame success) {
this.success = success;
return this;
}
public void unsetSuccess() {
this.success = null;
}
/** Returns true if field success is set (has been asigned a value) and false otherwise */
public boolean isSetSuccess() {
return this.success != null;
}
public void setSuccessIsSet(boolean value) {
if (!value) {
this.success = null;
}
}
public ScrayTException getEx() {
return this.ex;
}
public getResults_result setEx(ScrayTException ex) {
this.ex = ex;
return this;
}
public void unsetEx() {
this.ex = null;
}
/** Returns true if field ex is set (has been asigned a value) and false otherwise */
public boolean isSetEx() {
return this.ex != null;
}
public void setExIsSet(boolean value) {
if (!value) {
this.ex = null;
}
}
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case SUCCESS:
if (value == null) {
unsetSuccess();
} else {
setSuccess((ScrayTResultFrame)value);
}
break;
case EX:
if (value == null) {
unsetEx();
} else {
setEx((ScrayTException)value);
}
break;
}
}
public Object getFieldValue(_Fields field) {
switch (field) {
case SUCCESS:
return getSuccess();
case EX:
return getEx();
}
throw new IllegalStateException();
}
/** Returns true if field corresponding to fieldID is set (has been asigned a value) and false otherwise */
public boolean isSet(_Fields field) {
if (field == null) {
throw new IllegalArgumentException();
}
switch (field) {
case SUCCESS:
return isSetSuccess();
case EX:
return isSetEx();
}
throw new IllegalStateException();
}
@java.lang.Override
public boolean equals(Object that) {
if (that == null)
return false;
if (that instanceof getResults_result)
return this.equals((getResults_result)that);
return false;
}
public boolean equals(getResults_result that) {
if (that == null)
return false;
boolean this_present_success = true && this.isSetSuccess();
boolean that_present_success = true && that.isSetSuccess();
if (this_present_success || that_present_success) {
if (!(this_present_success && that_present_success))
return false;
if (!this.success.equals(that.success))
return false;
}
boolean this_present_ex = true && this.isSetEx();
boolean that_present_ex = true && that.isSetEx();
if (this_present_ex || that_present_ex) {
if (!(this_present_ex && that_present_ex))
return false;
if (!this.ex.equals(that.ex))
return false;
}
return true;
}
@java.lang.Override
public int hashCode() {
HashCodeBuilder builder = new HashCodeBuilder();
boolean present_success = true && (isSetSuccess());
builder.append(present_success);
if (present_success)
builder.append(success);
boolean present_ex = true && (isSetEx());
builder.append(present_ex);
if (present_ex)
builder.append(ex);
return builder.toHashCode();
}
public int compareTo(getResults_result other) {
if (!getClass().equals(other.getClass())) {
return getClass().getName().compareTo(other.getClass().getName());
}
int lastComparison = 0;
getResults_result typedOther = (getResults_result)other;
lastComparison = Boolean.valueOf(isSetSuccess()).compareTo(typedOther.isSetSuccess());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetSuccess()) {
lastComparison = TBaseHelper.compareTo(this.success, typedOther.success);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = Boolean.valueOf(isSetEx()).compareTo(typedOther.isSetEx());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetEx()) {
lastComparison = TBaseHelper.compareTo(this.ex, typedOther.ex);
if (lastComparison != 0) {
return lastComparison;
}
}
return 0;
}
public _Fields fieldForId(int fieldId) {
return _Fields.findByThriftId(fieldId);
}
public void read(TProtocol iprot) throws TException {
TField field;
iprot.readStructBegin();
while (true)
{
field = iprot.readFieldBegin();
if (field.type == TType.STOP) {
break;
}
switch (field.id) {
case 0: // SUCCESS
if (field.type == TType.STRUCT) {
this.success = new ScrayTResultFrame();
this.success.read(iprot);
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
case 1: // EX
if (field.type == TType.STRUCT) {
this.ex = new ScrayTException();
this.ex.read(iprot);
} else {
TProtocolUtil.skip(iprot, field.type);
}
break;
default:
TProtocolUtil.skip(iprot, field.type);
}
iprot.readFieldEnd();
}
iprot.readStructEnd();
// check for required fields of primitive type, which can't be checked in the validate method
validate();
}
public void write(TProtocol oprot) throws TException {
oprot.writeStructBegin(STRUCT_DESC);
if (this.isSetSuccess()) {
oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
this.success.write(oprot);
oprot.writeFieldEnd();
} else if (this.isSetEx()) {
oprot.writeFieldBegin(EX_FIELD_DESC);
this.ex.write(oprot);
oprot.writeFieldEnd();
}
oprot.writeFieldStop();
oprot.writeStructEnd();
}
@java.lang.Override
public String toString() {
StringBuilder sb = new StringBuilder("getResults_result(");
boolean first = true;
sb.append("success:");
if (this.success == null) {
sb.append("null");
} else {
sb.append(this.success);
}
first = false;
if (!first) sb.append(", ");
sb.append("ex:");
if (this.ex == null) {
sb.append("null");
} else {
sb.append(this.ex);
}
first = false;
sb.append(")");
return sb.toString();
}
public void validate() throws TException {
// check for required fields
}
}
}