TWorkloadAction.java
/**
* 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.doris.thrift;
@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"})
@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.16.0)", date = "2026-05-14")
public class TWorkloadAction implements org.apache.thrift.TBase<TWorkloadAction, TWorkloadAction._Fields>, java.io.Serializable, Cloneable, Comparable<TWorkloadAction> {
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TWorkloadAction");
private static final org.apache.thrift.protocol.TField ACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("action", org.apache.thrift.protocol.TType.I32, (short)1);
private static final org.apache.thrift.protocol.TField ACTION_ARGS_FIELD_DESC = new org.apache.thrift.protocol.TField("action_args", org.apache.thrift.protocol.TType.STRING, (short)2);
private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new TWorkloadActionStandardSchemeFactory();
private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new TWorkloadActionTupleSchemeFactory();
/**
*
* @see TWorkloadActionType
*/
public @org.apache.thrift.annotation.Nullable TWorkloadActionType action; // optional
public @org.apache.thrift.annotation.Nullable java.lang.String action_args; // 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 {
/**
*
* @see TWorkloadActionType
*/
ACTION((short)1, "action"),
ACTION_ARGS((short)2, "action_args");
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: // ACTION
return ACTION;
case 2: // ACTION_ARGS
return ACTION_ARGS;
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 _Fields optionals[] = {_Fields.ACTION,_Fields.ACTION_ARGS};
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.ACTION, new org.apache.thrift.meta_data.FieldMetaData("action", org.apache.thrift.TFieldRequirementType.OPTIONAL,
new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, TWorkloadActionType.class)));
tmpMap.put(_Fields.ACTION_ARGS, new org.apache.thrift.meta_data.FieldMetaData("action_args", 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(TWorkloadAction.class, metaDataMap);
}
public TWorkloadAction() {
}
/**
* Performs a deep copy on <i>other</i>.
*/
public TWorkloadAction(TWorkloadAction other) {
if (other.isSetAction()) {
this.action = other.action;
}
if (other.isSetActionArgs()) {
this.action_args = other.action_args;
}
}
public TWorkloadAction deepCopy() {
return new TWorkloadAction(this);
}
@Override
public void clear() {
this.action = null;
this.action_args = null;
}
/**
*
* @see TWorkloadActionType
*/
@org.apache.thrift.annotation.Nullable
public TWorkloadActionType getAction() {
return this.action;
}
/**
*
* @see TWorkloadActionType
*/
public TWorkloadAction setAction(@org.apache.thrift.annotation.Nullable TWorkloadActionType action) {
this.action = action;
return this;
}
public void unsetAction() {
this.action = null;
}
/** Returns true if field action is set (has been assigned a value) and false otherwise */
public boolean isSetAction() {
return this.action != null;
}
public void setActionIsSet(boolean value) {
if (!value) {
this.action = null;
}
}
@org.apache.thrift.annotation.Nullable
public java.lang.String getActionArgs() {
return this.action_args;
}
public TWorkloadAction setActionArgs(@org.apache.thrift.annotation.Nullable java.lang.String action_args) {
this.action_args = action_args;
return this;
}
public void unsetActionArgs() {
this.action_args = null;
}
/** Returns true if field action_args is set (has been assigned a value) and false otherwise */
public boolean isSetActionArgs() {
return this.action_args != null;
}
public void setActionArgsIsSet(boolean value) {
if (!value) {
this.action_args = null;
}
}
public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) {
switch (field) {
case ACTION:
if (value == null) {
unsetAction();
} else {
setAction((TWorkloadActionType)value);
}
break;
case ACTION_ARGS:
if (value == null) {
unsetActionArgs();
} else {
setActionArgs((java.lang.String)value);
}
break;
}
}
@org.apache.thrift.annotation.Nullable
public java.lang.Object getFieldValue(_Fields field) {
switch (field) {
case ACTION:
return getAction();
case ACTION_ARGS:
return getActionArgs();
}
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 ACTION:
return isSetAction();
case ACTION_ARGS:
return isSetActionArgs();
}
throw new java.lang.IllegalStateException();
}
@Override
public boolean equals(java.lang.Object that) {
if (that instanceof TWorkloadAction)
return this.equals((TWorkloadAction)that);
return false;
}
public boolean equals(TWorkloadAction that) {
if (that == null)
return false;
if (this == that)
return true;
boolean this_present_action = true && this.isSetAction();
boolean that_present_action = true && that.isSetAction();
if (this_present_action || that_present_action) {
if (!(this_present_action && that_present_action))
return false;
if (!this.action.equals(that.action))
return false;
}
boolean this_present_action_args = true && this.isSetActionArgs();
boolean that_present_action_args = true && that.isSetActionArgs();
if (this_present_action_args || that_present_action_args) {
if (!(this_present_action_args && that_present_action_args))
return false;
if (!this.action_args.equals(that.action_args))
return false;
}
return true;
}
@Override
public int hashCode() {
int hashCode = 1;
hashCode = hashCode * 8191 + ((isSetAction()) ? 131071 : 524287);
if (isSetAction())
hashCode = hashCode * 8191 + action.getValue();
hashCode = hashCode * 8191 + ((isSetActionArgs()) ? 131071 : 524287);
if (isSetActionArgs())
hashCode = hashCode * 8191 + action_args.hashCode();
return hashCode;
}
@Override
public int compareTo(TWorkloadAction other) {
if (!getClass().equals(other.getClass())) {
return getClass().getName().compareTo(other.getClass().getName());
}
int lastComparison = 0;
lastComparison = java.lang.Boolean.compare(isSetAction(), other.isSetAction());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetAction()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.action, other.action);
if (lastComparison != 0) {
return lastComparison;
}
}
lastComparison = java.lang.Boolean.compare(isSetActionArgs(), other.isSetActionArgs());
if (lastComparison != 0) {
return lastComparison;
}
if (isSetActionArgs()) {
lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.action_args, other.action_args);
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("TWorkloadAction(");
boolean first = true;
if (isSetAction()) {
sb.append("action:");
if (this.action == null) {
sb.append("null");
} else {
sb.append(this.action);
}
first = false;
}
if (isSetActionArgs()) {
if (!first) sb.append(", ");
sb.append("action_args:");
if (this.action_args == null) {
sb.append("null");
} else {
sb.append(this.action_args);
}
first = false;
}
sb.append(")");
return sb.toString();
}
public void validate() throws org.apache.thrift.TException {
// check for required fields
// check for sub-struct validity
}
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 {
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 TWorkloadActionStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
public TWorkloadActionStandardScheme getScheme() {
return new TWorkloadActionStandardScheme();
}
}
private static class TWorkloadActionStandardScheme extends org.apache.thrift.scheme.StandardScheme<TWorkloadAction> {
public void read(org.apache.thrift.protocol.TProtocol iprot, TWorkloadAction 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: // ACTION
if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
struct.action = org.apache.doris.thrift.TWorkloadActionType.findByValue(iprot.readI32());
struct.setActionIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case 2: // ACTION_ARGS
if (schemeField.type == org.apache.thrift.protocol.TType.STRING) {
struct.action_args = iprot.readString();
struct.setActionArgsIsSet(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();
// check for required fields of primitive type, which can't be checked in the validate method
struct.validate();
}
public void write(org.apache.thrift.protocol.TProtocol oprot, TWorkloadAction struct) throws org.apache.thrift.TException {
struct.validate();
oprot.writeStructBegin(STRUCT_DESC);
if (struct.action != null) {
if (struct.isSetAction()) {
oprot.writeFieldBegin(ACTION_FIELD_DESC);
oprot.writeI32(struct.action.getValue());
oprot.writeFieldEnd();
}
}
if (struct.action_args != null) {
if (struct.isSetActionArgs()) {
oprot.writeFieldBegin(ACTION_ARGS_FIELD_DESC);
oprot.writeString(struct.action_args);
oprot.writeFieldEnd();
}
}
oprot.writeFieldStop();
oprot.writeStructEnd();
}
}
private static class TWorkloadActionTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
public TWorkloadActionTupleScheme getScheme() {
return new TWorkloadActionTupleScheme();
}
}
private static class TWorkloadActionTupleScheme extends org.apache.thrift.scheme.TupleScheme<TWorkloadAction> {
@Override
public void write(org.apache.thrift.protocol.TProtocol prot, TWorkloadAction struct) throws org.apache.thrift.TException {
org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot;
java.util.BitSet optionals = new java.util.BitSet();
if (struct.isSetAction()) {
optionals.set(0);
}
if (struct.isSetActionArgs()) {
optionals.set(1);
}
oprot.writeBitSet(optionals, 2);
if (struct.isSetAction()) {
oprot.writeI32(struct.action.getValue());
}
if (struct.isSetActionArgs()) {
oprot.writeString(struct.action_args);
}
}
@Override
public void read(org.apache.thrift.protocol.TProtocol prot, TWorkloadAction struct) throws org.apache.thrift.TException {
org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot;
java.util.BitSet incoming = iprot.readBitSet(2);
if (incoming.get(0)) {
struct.action = org.apache.doris.thrift.TWorkloadActionType.findByValue(iprot.readI32());
struct.setActionIsSet(true);
}
if (incoming.get(1)) {
struct.action_args = iprot.readString();
struct.setActionArgsIsSet(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();
}
}