io.snappydata.thrift.TransactionXid Maven / Gradle / Ivy
/**
* Autogenerated by Thrift Compiler (0.9.3)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package io.snappydata.thrift;
import org.apache.thrift.scheme.IScheme;
import org.apache.thrift.scheme.SchemeFactory;
import org.apache.thrift.scheme.StandardScheme;
import org.apache.thrift.scheme.TupleScheme;
import org.apache.thrift.protocol.TTupleProtocol;
import org.apache.thrift.protocol.TProtocolException;
import org.apache.thrift.EncodingUtils;
import org.apache.thrift.TException;
import org.apache.thrift.async.AsyncMethodCallback;
import org.apache.thrift.server.AbstractNonblockingServer.*;
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 javax.annotation.Generated;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked"})
@Generated(value = "Autogenerated by Thrift Compiler (0.9.3)", date = "2018-12-10")
public class TransactionXid implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TransactionXid");
private static final org.apache.thrift.protocol.TField FORMAT_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("formatId", org.apache.thrift.protocol.TType.I32, (short)1);
private static final org.apache.thrift.protocol.TField GLOBAL_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("globalId", org.apache.thrift.protocol.TType.STRING, (short)2);
private static final org.apache.thrift.protocol.TField BRANCH_QUALIFIER_FIELD_DESC = new org.apache.thrift.protocol.TField("branchQualifier", org.apache.thrift.protocol.TType.STRING, (short)3);
private static final Map, SchemeFactory> schemes = new HashMap, SchemeFactory>();
static {
schemes.put(StandardScheme.class, new TransactionXidStandardSchemeFactory());
schemes.put(TupleScheme.class, new TransactionXidTupleSchemeFactory());
}
public int formatId; // required
public ByteBuffer globalId; // required
public ByteBuffer branchQualifier; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.thrift.TFieldIdEnum {
FORMAT_ID((short)1, "formatId"),
GLOBAL_ID((short)2, "globalId"),
BRANCH_QUALIFIER((short)3, "branchQualifier");
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: // FORMAT_ID
return FORMAT_ID;
case 2: // GLOBAL_ID
return GLOBAL_ID;
case 3: // BRANCH_QUALIFIER
return BRANCH_QUALIFIER;
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
private static final int __FORMATID_ISSET_ID = 0;
private byte __isset_bitfield = 0;
public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap;
static {
Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class);
tmpMap.put(_Fields.FORMAT_ID, new org.apache.thrift.meta_data.FieldMetaData("formatId", org.apache.thrift.TFieldRequirementType.REQUIRED,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32)));
tmpMap.put(_Fields.GLOBAL_ID, new org.apache.thrift.meta_data.FieldMetaData("globalId", org.apache.thrift.TFieldRequirementType.REQUIRED,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , true)));
tmpMap.put(_Fields.BRANCH_QUALIFIER, new org.apache.thrift.meta_data.FieldMetaData("branchQualifier", org.apache.thrift.TFieldRequirementType.REQUIRED,
new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , true)));
metaDataMap = Collections.unmodifiableMap(tmpMap);
org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(TransactionXid.class, metaDataMap);
}
public TransactionXid() {
}
public TransactionXid(
int formatId,
ByteBuffer globalId,
ByteBuffer branchQualifier)
{
this();
this.formatId = formatId;
setFormatIdIsSet(true);
this.globalId = org.apache.thrift.TBaseHelper.copyBinary(globalId);
this.branchQualifier = org.apache.thrift.TBaseHelper.copyBinary(branchQualifier);
}
/**
* Performs a deep copy on other.
*/
public TransactionXid(TransactionXid other) {
__isset_bitfield = other.__isset_bitfield;
this.formatId = other.formatId;
if (other.isSetGlobalId()) {
this.globalId = org.apache.thrift.TBaseHelper.copyBinary(other.globalId);
}
if (other.isSetBranchQualifier()) {
this.branchQualifier = org.apache.thrift.TBaseHelper.copyBinary(other.branchQualifier);
}
}
public TransactionXid deepCopy() {
return new TransactionXid(this);
}
@Override
public void clear() {
setFormatIdIsSet(false);
this.formatId = 0;
this.globalId = null;
this.branchQualifier = null;
}
public int getFormatId() {
return this.formatId;
}
public TransactionXid setFormatId(int formatId) {
this.formatId = formatId;
setFormatIdIsSet(true);
return this;
}
public void unsetFormatId() {
__isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __FORMATID_ISSET_ID);
}
/** Returns true if field formatId is set (has been assigned a value) and false otherwise */
public boolean isSetFormatId() {
return EncodingUtils.testBit(__isset_bitfield, __FORMATID_ISSET_ID);
}
public void setFormatIdIsSet(boolean value) {
__isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __FORMATID_ISSET_ID, value);
}
public byte[] getGlobalId() {
setGlobalId(org.apache.thrift.TBaseHelper.rightSize(globalId));
return globalId == null ? null : globalId.array();
}
public ByteBuffer bufferForGlobalId() {
return org.apache.thrift.TBaseHelper.copyBinary(globalId);
}
public TransactionXid setGlobalId(byte[] globalId) {
this.globalId = globalId == null ? (ByteBuffer)null : ByteBuffer.wrap(Arrays.copyOf(globalId, globalId.length));
return this;
}
public TransactionXid setGlobalId(ByteBuffer globalId) {
this.globalId = org.apache.thrift.TBaseHelper.copyBinary(globalId);
return this;
}
public void unsetGlobalId() {
this.globalId = null;
}
/** Returns true if field globalId is set (has been assigned a value) and false otherwise */
public boolean isSetGlobalId() {
return this.globalId != null;
}
public void setGlobalIdIsSet(boolean value) {
if (!value) {
this.globalId = null;
}
}
public byte[] getBranchQualifier() {
setBranchQualifier(org.apache.thrift.TBaseHelper.rightSize(branchQualifier));
return branchQualifier == null ? null : branchQualifier.array();
}
public ByteBuffer bufferForBranchQualifier() {
return org.apache.thrift.TBaseHelper.copyBinary(branchQualifier);
}
public TransactionXid setBranchQualifier(byte[] branchQualifier) {
this.branchQualifier = branchQualifier == null ? (ByteBuffer)null : ByteBuffer.wrap(Arrays.copyOf(branchQualifier, branchQualifier.length));
return this;
}
public TransactionXid setBranchQualifier(ByteBuffer branchQualifier) {
this.branchQualifier = org.apache.thrift.TBaseHelper.copyBinary(branchQualifier);
return this;
}
public void unsetBranchQualifier() {
this.branchQualifier = null;
}
/** Returns true if field branchQualifier is set (has been assigned a value) and false otherwise */
public boolean isSetBranchQualifier() {
return this.branchQualifier != null;
}
public void setBranchQualifierIsSet(boolean value) {
if (!value) {
this.branchQualifier = null;
}
}
public void setFieldValue(_Fields field, Object value) {
switch (field) {
case FORMAT_ID:
if (value == null) {
unsetFormatId();
} else {
setFormatId((Integer)value);
}
break;
case GLOBAL_ID:
if (value == null) {
unsetGlobalId();
} else {
setGlobalId((ByteBuffer)value);
}
break;
case BRANCH_QUALIFIER:
if (value == null) {
unsetBranchQualifier();
} else {
setBranchQualifier((ByteBuffer)value);
}
break;
}
}
public Object getFieldValue(_Fields field) {
switch (field) {
case FORMAT_ID:
return getFormatId();
case GLOBAL_ID:
return getGlobalId();
case BRANCH_QUALIFIER:
return getBranchQualifier();
}
throw new 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 IllegalArgumentException();
}
switch (field) {
case FORMAT_ID:
return isSetFormatId();
case GLOBAL_ID:
return isSetGlobalId();
case BRANCH_QUALIFIER:
return isSetBranchQualifier();
}
throw new IllegalStateException();
}
@Override
public boolean equals(Object that) {
if (that == null)
return false;
if (that instanceof TransactionXid)
return this.equals((TransactionXid)that);
return false;
}
public boolean equals(TransactionXid that) {
if (that == null)
return false;
boolean this_present_formatId = true;
boolean that_present_formatId = true;
if (this_present_formatId || that_present_formatId) {
if (!(this_present_formatId && that_present_formatId))
return false;
if (this.formatId != that.formatId)
return false;
}
boolean this_present_globalId = true && this.isSetGlobalId();
boolean that_present_globalId = true && that.isSetGlobalId();
if (this_present_globalId || that_present_globalId) {
if (!(this_present_globalId && that_present_globalId))
return false;
if (!this.globalId.equals(that.globalId))
return false;
}
boolean this_present_branchQualifier = true && this.isSetBranchQualifier();
boolean that_present_branchQualifier = true && that.isSetBranchQualifier();
if (this_present_branchQualifier || that_present_branchQualifier) {
if (!(this_present_branchQualifier && that_present_branchQualifier))
return false;
if (!this.branchQualifier.equals(that.branchQualifier))
return false;
}
return true;
}
@Override
public int hashCode() {
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy