| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506 |
- /**
- * Autogenerated by Thrift
- *
- * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
- */
- package com.cloudera.beeswax.api;
- 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.*;
- public class BeeswaxException extends Exception implements TBase<BeeswaxException, BeeswaxException._Fields>, java.io.Serializable, Cloneable {
- private static final TStruct STRUCT_DESC = new TStruct("BeeswaxException");
- private static final TField MESSAGE_FIELD_DESC = new TField("message", TType.STRING, (short)1);
- private static final TField LOG_CONTEXT_FIELD_DESC = new TField("log_context", TType.STRING, (short)2);
- private static final TField HANDLE_FIELD_DESC = new TField("handle", TType.STRUCT, (short)3);
- public String message;
- public String log_context;
- public QueryHandle handle;
- /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
- public enum _Fields implements TFieldIdEnum {
- MESSAGE((short)1, "message"),
- LOG_CONTEXT((short)2, "log_context"),
- HANDLE((short)3, "handle");
- private static final Map<String, _Fields> byName = new HashMap<String, _Fields>();
- 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: // MESSAGE
- return MESSAGE;
- case 2: // LOG_CONTEXT
- return LOG_CONTEXT;
- case 3: // HANDLE
- return HANDLE;
- 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.MESSAGE, new FieldMetaData("message", TFieldRequirementType.DEFAULT,
- new FieldValueMetaData(TType.STRING)));
- tmpMap.put(_Fields.LOG_CONTEXT, new FieldMetaData("log_context", TFieldRequirementType.DEFAULT,
- new FieldValueMetaData(TType.STRING , "LogContextId")));
- tmpMap.put(_Fields.HANDLE, new FieldMetaData("handle", TFieldRequirementType.DEFAULT,
- new StructMetaData(TType.STRUCT, QueryHandle.class)));
- metaDataMap = Collections.unmodifiableMap(tmpMap);
- FieldMetaData.addStructMetaDataMap(BeeswaxException.class, metaDataMap);
- }
- public BeeswaxException() {
- }
- public BeeswaxException(
- String message,
- String log_context,
- QueryHandle handle)
- {
- this();
- this.message = message;
- this.log_context = log_context;
- this.handle = handle;
- }
- /**
- * Performs a deep copy on <i>other</i>.
- */
- public BeeswaxException(BeeswaxException other) {
- if (other.isSetMessage()) {
- this.message = other.message;
- }
- if (other.isSetLog_context()) {
- this.log_context = other.log_context;
- }
- if (other.isSetHandle()) {
- this.handle = new QueryHandle(other.handle);
- }
- }
- public BeeswaxException deepCopy() {
- return new BeeswaxException(this);
- }
- @Override
- public void clear() {
- this.message = null;
- this.log_context = null;
- this.handle = null;
- }
- public String getMessage() {
- return this.message;
- }
- public BeeswaxException setMessage(String message) {
- this.message = message;
- return this;
- }
- public void unsetMessage() {
- this.message = null;
- }
- /** Returns true if field message is set (has been asigned a value) and false otherwise */
- public boolean isSetMessage() {
- return this.message != null;
- }
- public void setMessageIsSet(boolean value) {
- if (!value) {
- this.message = null;
- }
- }
- public String getLog_context() {
- return this.log_context;
- }
- public BeeswaxException setLog_context(String log_context) {
- this.log_context = log_context;
- return this;
- }
- public void unsetLog_context() {
- this.log_context = null;
- }
- /** Returns true if field log_context is set (has been asigned a value) and false otherwise */
- public boolean isSetLog_context() {
- return this.log_context != null;
- }
- public void setLog_contextIsSet(boolean value) {
- if (!value) {
- this.log_context = null;
- }
- }
- public QueryHandle getHandle() {
- return this.handle;
- }
- public BeeswaxException setHandle(QueryHandle handle) {
- this.handle = handle;
- return this;
- }
- public void unsetHandle() {
- this.handle = null;
- }
- /** Returns true if field handle is set (has been asigned a value) and false otherwise */
- public boolean isSetHandle() {
- return this.handle != null;
- }
- public void setHandleIsSet(boolean value) {
- if (!value) {
- this.handle = null;
- }
- }
- public void setFieldValue(_Fields field, Object value) {
- switch (field) {
- case MESSAGE:
- if (value == null) {
- unsetMessage();
- } else {
- setMessage((String)value);
- }
- break;
- case LOG_CONTEXT:
- if (value == null) {
- unsetLog_context();
- } else {
- setLog_context((String)value);
- }
- break;
- case HANDLE:
- if (value == null) {
- unsetHandle();
- } else {
- setHandle((QueryHandle)value);
- }
- break;
- }
- }
- public Object getFieldValue(_Fields field) {
- switch (field) {
- case MESSAGE:
- return getMessage();
- case LOG_CONTEXT:
- return getLog_context();
- case HANDLE:
- return getHandle();
- }
- 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 MESSAGE:
- return isSetMessage();
- case LOG_CONTEXT:
- return isSetLog_context();
- case HANDLE:
- return isSetHandle();
- }
- throw new IllegalStateException();
- }
- @Override
- public boolean equals(Object that) {
- if (that == null)
- return false;
- if (that instanceof BeeswaxException)
- return this.equals((BeeswaxException)that);
- return false;
- }
- public boolean equals(BeeswaxException that) {
- if (that == null)
- return false;
- boolean this_present_message = true && this.isSetMessage();
- boolean that_present_message = true && that.isSetMessage();
- if (this_present_message || that_present_message) {
- if (!(this_present_message && that_present_message))
- return false;
- if (!this.message.equals(that.message))
- return false;
- }
- boolean this_present_log_context = true && this.isSetLog_context();
- boolean that_present_log_context = true && that.isSetLog_context();
- if (this_present_log_context || that_present_log_context) {
- if (!(this_present_log_context && that_present_log_context))
- return false;
- if (!this.log_context.equals(that.log_context))
- return false;
- }
- boolean this_present_handle = true && this.isSetHandle();
- boolean that_present_handle = true && that.isSetHandle();
- if (this_present_handle || that_present_handle) {
- if (!(this_present_handle && that_present_handle))
- return false;
- if (!this.handle.equals(that.handle))
- return false;
- }
- return true;
- }
- @Override
- public int hashCode() {
- HashCodeBuilder builder = new HashCodeBuilder();
- boolean present_message = true && (isSetMessage());
- builder.append(present_message);
- if (present_message)
- builder.append(message);
- boolean present_log_context = true && (isSetLog_context());
- builder.append(present_log_context);
- if (present_log_context)
- builder.append(log_context);
- boolean present_handle = true && (isSetHandle());
- builder.append(present_handle);
- if (present_handle)
- builder.append(handle);
- return builder.toHashCode();
- }
- public int compareTo(BeeswaxException other) {
- if (!getClass().equals(other.getClass())) {
- return getClass().getName().compareTo(other.getClass().getName());
- }
- int lastComparison = 0;
- BeeswaxException typedOther = (BeeswaxException)other;
- lastComparison = Boolean.valueOf(isSetMessage()).compareTo(typedOther.isSetMessage());
- if (lastComparison != 0) {
- return lastComparison;
- }
- if (isSetMessage()) {
- lastComparison = TBaseHelper.compareTo(this.message, typedOther.message);
- if (lastComparison != 0) {
- return lastComparison;
- }
- }
- lastComparison = Boolean.valueOf(isSetLog_context()).compareTo(typedOther.isSetLog_context());
- if (lastComparison != 0) {
- return lastComparison;
- }
- if (isSetLog_context()) {
- lastComparison = TBaseHelper.compareTo(this.log_context, typedOther.log_context);
- if (lastComparison != 0) {
- return lastComparison;
- }
- }
- lastComparison = Boolean.valueOf(isSetHandle()).compareTo(typedOther.isSetHandle());
- if (lastComparison != 0) {
- return lastComparison;
- }
- if (isSetHandle()) {
- lastComparison = TBaseHelper.compareTo(this.handle, typedOther.handle);
- 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: // MESSAGE
- if (field.type == TType.STRING) {
- this.message = iprot.readString();
- } else {
- TProtocolUtil.skip(iprot, field.type);
- }
- break;
- case 2: // LOG_CONTEXT
- if (field.type == TType.STRING) {
- this.log_context = iprot.readString();
- } else {
- TProtocolUtil.skip(iprot, field.type);
- }
- break;
- case 3: // HANDLE
- if (field.type == TType.STRUCT) {
- this.handle = new QueryHandle();
- this.handle.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.message != null) {
- oprot.writeFieldBegin(MESSAGE_FIELD_DESC);
- oprot.writeString(this.message);
- oprot.writeFieldEnd();
- }
- if (this.log_context != null) {
- oprot.writeFieldBegin(LOG_CONTEXT_FIELD_DESC);
- oprot.writeString(this.log_context);
- oprot.writeFieldEnd();
- }
- if (this.handle != null) {
- oprot.writeFieldBegin(HANDLE_FIELD_DESC);
- this.handle.write(oprot);
- oprot.writeFieldEnd();
- }
- oprot.writeFieldStop();
- oprot.writeStructEnd();
- }
- @Override
- public String toString() {
- StringBuilder sb = new StringBuilder("BeeswaxException(");
- boolean first = true;
- sb.append("message:");
- if (this.message == null) {
- sb.append("null");
- } else {
- sb.append(this.message);
- }
- first = false;
- if (!first) sb.append(", ");
- sb.append("log_context:");
- if (this.log_context == null) {
- sb.append("null");
- } else {
- sb.append(this.log_context);
- }
- first = false;
- if (!first) sb.append(", ");
- sb.append("handle:");
- if (this.handle == null) {
- sb.append("null");
- } else {
- sb.append(this.handle);
- }
- first = false;
- sb.append(")");
- return sb.toString();
- }
- public void validate() throws TException {
- // check for required fields
- }
- }
|