blob: bac65050655037aff8983f5969c72d0e24efc2b1 [file] [log] [blame]
/**
* Autogenerated by Thrift Compiler (0.16.0)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package org.apache.hive.service.rpc.thrift;
@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"})
@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.16.0)")
@org.apache.hadoop.hive.common.classification.InterfaceAudience.Public @org.apache.hadoop.hive.common.classification.InterfaceStability.Stable public class TColumnDesc implements org.apache.thrift.TBase<TColumnDesc, TColumnDesc._Fields>, java.io.Serializable, Cloneable, Comparable<TColumnDesc> {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TColumnDesc");
private static final org.apache.thrift.protocol.TField COLUMN_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("columnName", org.apache.thrift.protocol.TType.STRING, (short)1);
private static final org.apache.thrift.protocol.TField TYPE_DESC_FIELD_DESC = new org.apache.thrift.protocol.TField("typeDesc", org.apache.thrift.protocol.TType.STRUCT, (short)2);
private static final org.apache.thrift.protocol.TField POSITION_FIELD_DESC = new org.apache.thrift.protocol.TField("position", org.apache.thrift.protocol.TType.I32, (short)3);
private static final org.apache.thrift.protocol.TField COMMENT_FIELD_DESC = new org.apache.thrift.protocol.TField("comment", org.apache.thrift.protocol.TType.STRING, (short)4);
private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new TColumnDescStandardSchemeFactory();
private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new TColumnDescTupleSchemeFactory();
private @org.apache.thrift.annotation.Nullable java.lang.String columnName; // required
private @org.apache.thrift.annotation.Nullable TTypeDesc typeDesc; // required
private int position; // required
private @org.apache.thrift.annotation.Nullable java.lang.String comment; // optional
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
COLUMN_NAME((short)1, "columnName"),
TYPE_DESC((short)2, "typeDesc"),
POSITION((short)3, "position"),
COMMENT((short)4, "comment");
private static final java.util.Map<java.lang.String, _Fields> byName = new java.util.HashMap<java.lang.String, _Fields>();
static {
for (_Fields field : java.util.EnumSet.allOf(_Fields.class)) {
byName.put(field.getFieldName(), field);
}
}
/**
* Find the _Fields constant that matches fieldId, or null if its not found.
*/
@org.apache.thrift.annotation.Nullable
public static _Fields findByThriftId(int fieldId) {
switch(fieldId) {
case 1: // COLUMN_NAME
return COLUMN_NAME;
case 2: // TYPE_DESC
return TYPE_DESC;
case 3: // POSITION
return POSITION;
case 4: // COMMENT
return COMMENT;
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 java.lang.IllegalArgumentException("Field " + fieldId + " doesn't exist!");
return fields;
}
/**
* Find the _Fields constant that matches name, or null if its not found.
*/
@org.apache.thrift.annotation.Nullable
public static _Fields findByName(java.lang.String name) {
return byName.get(name);
}
private final short _thriftId;
private final java.lang.String _fieldName;
_Fields(short thriftId, java.lang.String fieldName) {
_thriftId = thriftId;
_fieldName = fieldName;
}
public short getThriftFieldId() {
return _thriftId;
}
public java.lang.String getFieldName() {
return _fieldName;
}
}
// isset id assignments
private static final int __POSITION_ISSET_ID = 0;
private byte __isset_bitfield = 0;
private static final _Fields optionals[] = {_Fields.COMMENT};
public static final java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
static {
java.util.Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
tmpMap.put(_Fields.COLUMN_NAME, new org.apache.thrift.meta_data.FieldMetaData("columnName", org.apache.thrift.TFieldRequirementType.REQUIRED,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
tmpMap.put(_Fields.TYPE_DESC, new org.apache.thrift.meta_data.FieldMetaData("typeDesc", org.apache.thrift.TFieldRequirementType.REQUIRED,
new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, TTypeDesc.class)));
tmpMap.put(_Fields.POSITION, new org.apache.thrift.meta_data.FieldMetaData("position", org.apache.thrift.TFieldRequirementType.REQUIRED,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32)));
tmpMap.put(_Fields.COMMENT, new org.apache.thrift.meta_data.FieldMetaData("comment", org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)));
metaDataMap = java.util.Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(TColumnDesc.class, metaDataMap);
}
public TColumnDesc() {
}
public TColumnDesc(
java.lang.String columnName,
TTypeDesc typeDesc,
int position)
{
this();
this.columnName = columnName;
this.typeDesc = typeDesc;
this.position = position;
setPositionIsSet(true);
}
/**
* Performs a deep copy on <i>other</i>.
*/
public TColumnDesc(TColumnDesc other) {
__isset_bitfield = other.__isset_bitfield;
if (other.isSetColumnName()) {
this.columnName = other.columnName;
}
if (other.isSetTypeDesc()) {
this.typeDesc = new TTypeDesc(other.typeDesc);
}
this.position = other.position;
if (other.isSetComment()) {
this.comment = other.comment;
}
}
public TColumnDesc deepCopy() {
return new TColumnDesc(this);
}
@Override
public void clear() {
this.columnName = null;
this.typeDesc = null;
setPositionIsSet(false);
this.position = 0;
this.comment = null;
}
@org.apache.thrift.annotation.Nullable
public java.lang.String getColumnName() {
return this.columnName;
}
public void setColumnName(@org.apache.thrift.annotation.Nullable java.lang.String columnName) {
this.columnName = columnName;
}
public void unsetColumnName() {
this.columnName = null;
}
/** Returns true if field columnName is set (has been assigned a value) and false otherwise */
public boolean isSetColumnName() {
return this.columnName != null;
}
public void setColumnNameIsSet(boolean value) {
if (!value) {
this.columnName = null;
}
}
@org.apache.thrift.annotation.Nullable
public TTypeDesc getTypeDesc() {
return this.typeDesc;
}
public void setTypeDesc(@org.apache.thrift.annotation.Nullable TTypeDesc typeDesc) {
this.typeDesc = typeDesc;
}
public void unsetTypeDesc() {
this.typeDesc = null;
}
/** Returns true if field typeDesc is set (has been assigned a value) and false otherwise */
public boolean isSetTypeDesc() {
return this.typeDesc != null;
}
public void setTypeDescIsSet(boolean value) {
if (!value) {
this.typeDesc = null;
}
}
public int getPosition() {
return this.position;
}
public void setPosition(int position) {
this.position = position;
setPositionIsSet(true);
}
public void unsetPosition() {
__isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __POSITION_ISSET_ID);
}
/** Returns true if field position is set (has been assigned a value) and false otherwise */
public boolean isSetPosition() {
return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __POSITION_ISSET_ID);
}
public void setPositionIsSet(boolean value) {
__isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __POSITION_ISSET_ID, value);
}
@org.apache.thrift.annotation.Nullable
public java.lang.String getComment() {
return this.comment;
}
public void setComment(@org.apache.thrift.annotation.Nullable java.lang.String comment) {
this.comment = comment;
}
public void unsetComment() {
this.comment = null;
}
/** Returns true if field comment is set (has been assigned a value) and false otherwise */
public boolean isSetComment() {
return this.comment != null;
}
public void setCommentIsSet(boolean value) {
if (!value) {
this.comment = null;
}
}
public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) {
switch (field) {
case COLUMN_NAME:
if (value == null) {
unsetColumnName();
} else {
setColumnName((java.lang.String)value);
}
break;
case TYPE_DESC:
if (value == null) {
unsetTypeDesc();
} else {
setTypeDesc((TTypeDesc)value);
}
break;
case POSITION:
if (value == null) {
unsetPosition();
} else {
setPosition((java.lang.Integer)value);
}
break;
case COMMENT:
if (value == null) {
unsetComment();
} else {
setComment((java.lang.String)value);
}
break;
}
}
@org.apache.thrift.annotation.Nullable
public java.lang.Object getFieldValue(_Fields field) {
switch (field) {
case COLUMN_NAME:
return getColumnName();
case TYPE_DESC:
return getTypeDesc();
case POSITION:
return getPosition();
case COMMENT:
return getComment();
}
throw new java.lang.IllegalStateException();
}
/** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */
public boolean isSet(_Fields field) {
if (field == null) {
throw new java.lang.IllegalArgumentException();
}
switch (field) {
case COLUMN_NAME:
return isSetColumnName();
case TYPE_DESC:
return isSetTypeDesc();
case POSITION:
return isSetPosition();
case COMMENT:
return isSetComment();
}
throw new java.lang.IllegalStateException();
}
@Override
public boolean equals(java.lang.Object that) {
if (that instanceof TColumnDesc)
return this.equals((TColumnDesc)that);
return false;
}
public boolean equals(TColumnDesc that) {
if (that == null)
return false;
if (this == that)
return true;
boolean this_present_columnName = true && this.isSetColumnName();
boolean that_present_columnName = true && that.isSetColumnName();
if (this_present_columnName || that_present_columnName) {
if (!(this_present_columnName && that_present_columnName))
return false;
if (!this.columnName.equals(that.columnName))
return false;
}
boolean this_present_typeDesc = true && this.isSetTypeDesc();
boolean that_present_typeDesc = true && that.isSetTypeDesc();
if (this_present_typeDesc || that_present_typeDesc) {
if (!(this_present_typeDesc && that_present_typeDesc))
return false;
if (!this.typeDesc.equals(that.typeDesc))
return false;
}
boolean this_present_position = true;
boolean that_present_position = true;
if (this_present_position || that_present_position) {
if (!(this_present_position && that_present_position))
return false;
if (this.position != that.position)
return false;
}
boolean this_present_comment = true && this.isSetComment();
boolean that_present_comment = true && that.isSetComment();
if (this_present_comment || that_present_comment) {
if (!(this_present_comment && that_present_comment))
return false;
if (!this.comment.equals(that.comment))
return false;
}
return true;
}
@Override
public int hashCode() {
int hashCode = 1;
hashCode = hashCode * 8191 + ((isSetColumnName()) ? 131071 : 524287);
if (isSetColumnName())
hashCode = hashCode * 8191 + columnName.hashCode();
hashCode = hashCode * 8191 + ((isSetTypeDesc()) ? 131071 : 524287);
if (isSetTypeDesc())
hashCode = hashCode * 8191 + typeDesc.hashCode();
hashCode = hashCode * 8191 + position;
hashCode = hashCode * 8191 + ((isSetComment()) ? 131071 : 524287);
if (isSetComment())
hashCode = hashCode * 8191 + comment.hashCode();
return hashCode;
}
@Override
public int compareTo(TColumnDesc other) {
if (!getClass().equals(other.getClass())) {
return getClass().getName().compareTo(other.getClass().getName());
}
int lastComparison = 0;
lastComparison = java.lang.Boolean.compare(isSetColumnName(), other.isSetColumnName());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetColumnName()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.columnName, other.columnName);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = java.lang.Boolean.compare(isSetTypeDesc(), other.isSetTypeDesc());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetTypeDesc()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.typeDesc, other.typeDesc);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = java.lang.Boolean.compare(isSetPosition(), other.isSetPosition());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetPosition()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.position, other.position);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = java.lang.Boolean.compare(isSetComment(), other.isSetComment());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetComment()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.comment, other.comment);
if (lastComparison != 0) {
return lastComparison;
}
}
return 0;
}
@org.apache.thrift.annotation.Nullable
public _Fields fieldForId(int fieldId) {
return _Fields.findByThriftId(fieldId);
}
public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException {
scheme(iprot).read(iprot, this);
}
public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
scheme(oprot).write(oprot, this);
}
@Override
public java.lang.String toString() {
java.lang.StringBuilder sb = new java.lang.StringBuilder("TColumnDesc(");
boolean first = true;
sb.append("columnName:");
if (this.columnName == null) {
sb.append("null");
} else {
sb.append(this.columnName);
}
first = false;
if (!first) sb.append(", ");
sb.append("typeDesc:");
if (this.typeDesc == null) {
sb.append("null");
} else {
sb.append(this.typeDesc);
}
first = false;
if (!first) sb.append(", ");
sb.append("position:");
sb.append(this.position);
first = false;
if (isSetComment()) {
if (!first) sb.append(", ");
sb.append("comment:");
if (this.comment == null) {
sb.append("null");
} else {
sb.append(this.comment);
}
first = false;
}
sb.append(")");
return sb.toString();
}
public void validate() throws org.apache.thrift.TException {
// check for required fields
if (!isSetColumnName()) {
throw new org.apache.thrift.protocol.TProtocolException("Required field 'columnName' is unset! Struct:" + toString());
}
if (!isSetTypeDesc()) {
throw new org.apache.thrift.protocol.TProtocolException("Required field 'typeDesc' is unset! Struct:" + toString());
}
if (!isSetPosition()) {
throw new org.apache.thrift.protocol.TProtocolException("Required field 'position' is unset! Struct:" + toString());
}
// check for sub-struct validity
if (typeDesc != null) {
typeDesc.validate();
}
}
private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException {
try {
write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out)));
} catch (org.apache.thrift.TException te) {
throw new java.io.IOException(te);
}
}
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException {
try {
// it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor.
__isset_bitfield = 0;
read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in)));
} catch (org.apache.thrift.TException te) {
throw new java.io.IOException(te);
}
}
private static class TColumnDescStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
public TColumnDescStandardScheme getScheme() {
return new TColumnDescStandardScheme();
}
}
private static class TColumnDescStandardScheme extends org.apache.thrift.scheme.StandardScheme<TColumnDesc> {
public void read(org.apache.thrift.protocol.TProtocol iprot, TColumnDesc struct) throws org.apache.thrift.TException {
org.apache.thrift.protocol.TField schemeField;
iprot.readStructBegin();
while (true)
{
schemeField = iprot.readFieldBegin();
if (schemeField.type == org.apache.thrift.protocol.TType.STOP) {
break;
}
switch (schemeField.id) {
case 1: // COLUMN_NAME
if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
struct.columnName = iprot.readString();
struct.setColumnNameIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 2: // TYPE_DESC
if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
struct.typeDesc = new TTypeDesc();
struct.typeDesc.read(iprot);
struct.setTypeDescIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 3: // POSITION
if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
struct.position = iprot.readI32();
struct.setPositionIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 4: // COMMENT
if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
struct.comment = iprot.readString();
struct.setCommentIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
default:
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
iprot.readFieldEnd();
}
iprot.readStructEnd();
struct.validate();
}
public void write(org.apache.thrift.protocol.TProtocol oprot, TColumnDesc struct) throws org.apache.thrift.TException {
struct.validate();
oprot.writeStructBegin(STRUCT_DESC);
if (struct.columnName != null) {
oprot.writeFieldBegin(COLUMN_NAME_FIELD_DESC);
oprot.writeString(struct.columnName);
oprot.writeFieldEnd();
}
if (struct.typeDesc != null) {
oprot.writeFieldBegin(TYPE_DESC_FIELD_DESC);
struct.typeDesc.write(oprot);
oprot.writeFieldEnd();
}
oprot.writeFieldBegin(POSITION_FIELD_DESC);
oprot.writeI32(struct.position);
oprot.writeFieldEnd();
if (struct.comment != null) {
if (struct.isSetComment()) {
oprot.writeFieldBegin(COMMENT_FIELD_DESC);
oprot.writeString(struct.comment);
oprot.writeFieldEnd();
}
}
oprot.writeFieldStop();
oprot.writeStructEnd();
}
}
private static class TColumnDescTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
public TColumnDescTupleScheme getScheme() {
return new TColumnDescTupleScheme();
}
}
private static class TColumnDescTupleScheme extends org.apache.thrift.scheme.TupleScheme<TColumnDesc> {
@Override
public void write(org.apache.thrift.protocol.TProtocol prot, TColumnDesc struct) throws org.apache.thrift.TException {
org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot;
oprot.writeString(struct.columnName);
struct.typeDesc.write(oprot);
oprot.writeI32(struct.position);
java.util.BitSet optionals = new java.util.BitSet();
if (struct.isSetComment()) {
optionals.set(0);
}
oprot.writeBitSet(optionals, 1);
if (struct.isSetComment()) {
oprot.writeString(struct.comment);
}
}
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, TColumnDesc struct) throws org.apache.thrift.TException {
org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot;
struct.columnName = iprot.readString();
struct.setColumnNameIsSet(true);
struct.typeDesc = new TTypeDesc();
struct.typeDesc.read(iprot);
struct.setTypeDescIsSet(true);
struct.position = iprot.readI32();
struct.setPositionIsSet(true);
java.util.BitSet incoming = iprot.readBitSet(1);
if (incoming.get(0)) {
struct.comment = iprot.readString();
struct.setCommentIsSet(true);
}
}
}
private static <S extends org.apache.thrift.scheme.IScheme> S scheme(org.apache.thrift.protocol.TProtocol proto) {
return (org.apache.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme();
}
}