All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.iotdb.mpp.rpc.thrift.TGetDataBlockRequest Maven / Gradle / Ivy

The newest version!
/**
 * Autogenerated by Thrift Compiler (0.14.1)
 *
 * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
 *  @generated
 */
package org.apache.iotdb.mpp.rpc.thrift;

@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"})
@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2024-09-12")
public class TGetDataBlockRequest 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("TGetDataBlockRequest");

  private static final org.apache.thrift.protocol.TField SOURCE_FRAGMENT_INSTANCE_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("sourceFragmentInstanceId", org.apache.thrift.protocol.TType.STRUCT, (short)1);
  private static final org.apache.thrift.protocol.TField START_SEQUENCE_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("startSequenceId", org.apache.thrift.protocol.TType.I32, (short)2);
  private static final org.apache.thrift.protocol.TField END_SEQUENCE_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("endSequenceId", org.apache.thrift.protocol.TType.I32, (short)3);
  private static final org.apache.thrift.protocol.TField INDEX_FIELD_DESC = new org.apache.thrift.protocol.TField("index", org.apache.thrift.protocol.TType.I32, (short)4);

  private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new TGetDataBlockRequestStandardSchemeFactory();
  private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new TGetDataBlockRequestTupleSchemeFactory();

  public @org.apache.thrift.annotation.Nullable TFragmentInstanceId sourceFragmentInstanceId; // required
  public int startSequenceId; // required
  public int endSequenceId; // required
  public int index; // 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 {
    SOURCE_FRAGMENT_INSTANCE_ID((short)1, "sourceFragmentInstanceId"),
    START_SEQUENCE_ID((short)2, "startSequenceId"),
    END_SEQUENCE_ID((short)3, "endSequenceId"),
    INDEX((short)4, "index");

    private static final java.util.Map byName = new java.util.HashMap();

    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: // SOURCE_FRAGMENT_INSTANCE_ID
          return SOURCE_FRAGMENT_INSTANCE_ID;
        case 2: // START_SEQUENCE_ID
          return START_SEQUENCE_ID;
        case 3: // END_SEQUENCE_ID
          return END_SEQUENCE_ID;
        case 4: // INDEX
          return INDEX;
        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 __STARTSEQUENCEID_ISSET_ID = 0;
  private static final int __ENDSEQUENCEID_ISSET_ID = 1;
  private static final int __INDEX_ISSET_ID = 2;
  private byte __isset_bitfield = 0;
  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.SOURCE_FRAGMENT_INSTANCE_ID, new org.apache.thrift.meta_data.FieldMetaData("sourceFragmentInstanceId", org.apache.thrift.TFieldRequirementType.REQUIRED, 
        new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, TFragmentInstanceId.class)));
    tmpMap.put(_Fields.START_SEQUENCE_ID, new org.apache.thrift.meta_data.FieldMetaData("startSequenceId", org.apache.thrift.TFieldRequirementType.REQUIRED, 
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32)));
    tmpMap.put(_Fields.END_SEQUENCE_ID, new org.apache.thrift.meta_data.FieldMetaData("endSequenceId", org.apache.thrift.TFieldRequirementType.REQUIRED, 
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32)));
    tmpMap.put(_Fields.INDEX, new org.apache.thrift.meta_data.FieldMetaData("index", org.apache.thrift.TFieldRequirementType.REQUIRED, 
        new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32)));
    metaDataMap = java.util.Collections.unmodifiableMap(tmpMap);
    org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(TGetDataBlockRequest.class, metaDataMap);
  }

  public TGetDataBlockRequest() {
  }

  public TGetDataBlockRequest(
    TFragmentInstanceId sourceFragmentInstanceId,
    int startSequenceId,
    int endSequenceId,
    int index)
  {
    this();
    this.sourceFragmentInstanceId = sourceFragmentInstanceId;
    this.startSequenceId = startSequenceId;
    setStartSequenceIdIsSet(true);
    this.endSequenceId = endSequenceId;
    setEndSequenceIdIsSet(true);
    this.index = index;
    setIndexIsSet(true);
  }

  /**
   * Performs a deep copy on other.
   */
  public TGetDataBlockRequest(TGetDataBlockRequest other) {
    __isset_bitfield = other.__isset_bitfield;
    if (other.isSetSourceFragmentInstanceId()) {
      this.sourceFragmentInstanceId = new TFragmentInstanceId(other.sourceFragmentInstanceId);
    }
    this.startSequenceId = other.startSequenceId;
    this.endSequenceId = other.endSequenceId;
    this.index = other.index;
  }

  public TGetDataBlockRequest deepCopy() {
    return new TGetDataBlockRequest(this);
  }

  @Override
  public void clear() {
    this.sourceFragmentInstanceId = null;
    setStartSequenceIdIsSet(false);
    this.startSequenceId = 0;
    setEndSequenceIdIsSet(false);
    this.endSequenceId = 0;
    setIndexIsSet(false);
    this.index = 0;
  }

  @org.apache.thrift.annotation.Nullable
  public TFragmentInstanceId getSourceFragmentInstanceId() {
    return this.sourceFragmentInstanceId;
  }

  public TGetDataBlockRequest setSourceFragmentInstanceId(@org.apache.thrift.annotation.Nullable TFragmentInstanceId sourceFragmentInstanceId) {
    this.sourceFragmentInstanceId = sourceFragmentInstanceId;
    return this;
  }

  public void unsetSourceFragmentInstanceId() {
    this.sourceFragmentInstanceId = null;
  }

  /** Returns true if field sourceFragmentInstanceId is set (has been assigned a value) and false otherwise */
  public boolean isSetSourceFragmentInstanceId() {
    return this.sourceFragmentInstanceId != null;
  }

  public void setSourceFragmentInstanceIdIsSet(boolean value) {
    if (!value) {
      this.sourceFragmentInstanceId = null;
    }
  }

  public int getStartSequenceId() {
    return this.startSequenceId;
  }

  public TGetDataBlockRequest setStartSequenceId(int startSequenceId) {
    this.startSequenceId = startSequenceId;
    setStartSequenceIdIsSet(true);
    return this;
  }

  public void unsetStartSequenceId() {
    __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __STARTSEQUENCEID_ISSET_ID);
  }

  /** Returns true if field startSequenceId is set (has been assigned a value) and false otherwise */
  public boolean isSetStartSequenceId() {
    return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __STARTSEQUENCEID_ISSET_ID);
  }

  public void setStartSequenceIdIsSet(boolean value) {
    __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __STARTSEQUENCEID_ISSET_ID, value);
  }

  public int getEndSequenceId() {
    return this.endSequenceId;
  }

  public TGetDataBlockRequest setEndSequenceId(int endSequenceId) {
    this.endSequenceId = endSequenceId;
    setEndSequenceIdIsSet(true);
    return this;
  }

  public void unsetEndSequenceId() {
    __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __ENDSEQUENCEID_ISSET_ID);
  }

  /** Returns true if field endSequenceId is set (has been assigned a value) and false otherwise */
  public boolean isSetEndSequenceId() {
    return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __ENDSEQUENCEID_ISSET_ID);
  }

  public void setEndSequenceIdIsSet(boolean value) {
    __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __ENDSEQUENCEID_ISSET_ID, value);
  }

  public int getIndex() {
    return this.index;
  }

  public TGetDataBlockRequest setIndex(int index) {
    this.index = index;
    setIndexIsSet(true);
    return this;
  }

  public void unsetIndex() {
    __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __INDEX_ISSET_ID);
  }

  /** Returns true if field index is set (has been assigned a value) and false otherwise */
  public boolean isSetIndex() {
    return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __INDEX_ISSET_ID);
  }

  public void setIndexIsSet(boolean value) {
    __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __INDEX_ISSET_ID, value);
  }

  public void setFieldValue(_Fields field, @org.apache.thrift.annotation.Nullable java.lang.Object value) {
    switch (field) {
    case SOURCE_FRAGMENT_INSTANCE_ID:
      if (value == null) {
        unsetSourceFragmentInstanceId();
      } else {
        setSourceFragmentInstanceId((TFragmentInstanceId)value);
      }
      break;

    case START_SEQUENCE_ID:
      if (value == null) {
        unsetStartSequenceId();
      } else {
        setStartSequenceId((java.lang.Integer)value);
      }
      break;

    case END_SEQUENCE_ID:
      if (value == null) {
        unsetEndSequenceId();
      } else {
        setEndSequenceId((java.lang.Integer)value);
      }
      break;

    case INDEX:
      if (value == null) {
        unsetIndex();
      } else {
        setIndex((java.lang.Integer)value);
      }
      break;

    }
  }

  @org.apache.thrift.annotation.Nullable
  public java.lang.Object getFieldValue(_Fields field) {
    switch (field) {
    case SOURCE_FRAGMENT_INSTANCE_ID:
      return getSourceFragmentInstanceId();

    case START_SEQUENCE_ID:
      return getStartSequenceId();

    case END_SEQUENCE_ID:
      return getEndSequenceId();

    case INDEX:
      return getIndex();

    }
    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 SOURCE_FRAGMENT_INSTANCE_ID:
      return isSetSourceFragmentInstanceId();
    case START_SEQUENCE_ID:
      return isSetStartSequenceId();
    case END_SEQUENCE_ID:
      return isSetEndSequenceId();
    case INDEX:
      return isSetIndex();
    }
    throw new java.lang.IllegalStateException();
  }

  @Override
  public boolean equals(java.lang.Object that) {
    if (that instanceof TGetDataBlockRequest)
      return this.equals((TGetDataBlockRequest)that);
    return false;
  }

  public boolean equals(TGetDataBlockRequest that) {
    if (that == null)
      return false;
    if (this == that)
      return true;

    boolean this_present_sourceFragmentInstanceId = true && this.isSetSourceFragmentInstanceId();
    boolean that_present_sourceFragmentInstanceId = true && that.isSetSourceFragmentInstanceId();
    if (this_present_sourceFragmentInstanceId || that_present_sourceFragmentInstanceId) {
      if (!(this_present_sourceFragmentInstanceId && that_present_sourceFragmentInstanceId))
        return false;
      if (!this.sourceFragmentInstanceId.equals(that.sourceFragmentInstanceId))
        return false;
    }

    boolean this_present_startSequenceId = true;
    boolean that_present_startSequenceId = true;
    if (this_present_startSequenceId || that_present_startSequenceId) {
      if (!(this_present_startSequenceId && that_present_startSequenceId))
        return false;
      if (this.startSequenceId != that.startSequenceId)
        return false;
    }

    boolean this_present_endSequenceId = true;
    boolean that_present_endSequenceId = true;
    if (this_present_endSequenceId || that_present_endSequenceId) {
      if (!(this_present_endSequenceId && that_present_endSequenceId))
        return false;
      if (this.endSequenceId != that.endSequenceId)
        return false;
    }

    boolean this_present_index = true;
    boolean that_present_index = true;
    if (this_present_index || that_present_index) {
      if (!(this_present_index && that_present_index))
        return false;
      if (this.index != that.index)
        return false;
    }

    return true;
  }

  @Override
  public int hashCode() {
    int hashCode = 1;

    hashCode = hashCode * 8191 + ((isSetSourceFragmentInstanceId()) ? 131071 : 524287);
    if (isSetSourceFragmentInstanceId())
      hashCode = hashCode * 8191 + sourceFragmentInstanceId.hashCode();

    hashCode = hashCode * 8191 + startSequenceId;

    hashCode = hashCode * 8191 + endSequenceId;

    hashCode = hashCode * 8191 + index;

    return hashCode;
  }

  @Override
  public int compareTo(TGetDataBlockRequest other) {
    if (!getClass().equals(other.getClass())) {
      return getClass().getName().compareTo(other.getClass().getName());
    }

    int lastComparison = 0;

    lastComparison = java.lang.Boolean.compare(isSetSourceFragmentInstanceId(), other.isSetSourceFragmentInstanceId());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetSourceFragmentInstanceId()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.sourceFragmentInstanceId, other.sourceFragmentInstanceId);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    lastComparison = java.lang.Boolean.compare(isSetStartSequenceId(), other.isSetStartSequenceId());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetStartSequenceId()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.startSequenceId, other.startSequenceId);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    lastComparison = java.lang.Boolean.compare(isSetEndSequenceId(), other.isSetEndSequenceId());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetEndSequenceId()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.endSequenceId, other.endSequenceId);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    lastComparison = java.lang.Boolean.compare(isSetIndex(), other.isSetIndex());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetIndex()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.index, other.index);
      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("TGetDataBlockRequest(");
    boolean first = true;

    sb.append("sourceFragmentInstanceId:");
    if (this.sourceFragmentInstanceId == null) {
      sb.append("null");
    } else {
      sb.append(this.sourceFragmentInstanceId);
    }
    first = false;
    if (!first) sb.append(", ");
    sb.append("startSequenceId:");
    sb.append(this.startSequenceId);
    first = false;
    if (!first) sb.append(", ");
    sb.append("endSequenceId:");
    sb.append(this.endSequenceId);
    first = false;
    if (!first) sb.append(", ");
    sb.append("index:");
    sb.append(this.index);
    first = false;
    sb.append(")");
    return sb.toString();
  }

  public void validate() throws org.apache.thrift.TException {
    // check for required fields
    if (sourceFragmentInstanceId == null) {
      throw new org.apache.thrift.protocol.TProtocolException("Required field 'sourceFragmentInstanceId' was not present! Struct: " + toString());
    }
    // alas, we cannot check 'startSequenceId' because it's a primitive and you chose the non-beans generator.
    // alas, we cannot check 'endSequenceId' because it's a primitive and you chose the non-beans generator.
    // alas, we cannot check 'index' because it's a primitive and you chose the non-beans generator.
    // check for sub-struct validity
    if (sourceFragmentInstanceId != null) {
      sourceFragmentInstanceId.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 TGetDataBlockRequestStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
    public TGetDataBlockRequestStandardScheme getScheme() {
      return new TGetDataBlockRequestStandardScheme();
    }
  }

  private static class TGetDataBlockRequestStandardScheme extends org.apache.thrift.scheme.StandardScheme {

    public void read(org.apache.thrift.protocol.TProtocol iprot, TGetDataBlockRequest 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: // SOURCE_FRAGMENT_INSTANCE_ID
            if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) {
              struct.sourceFragmentInstanceId = new TFragmentInstanceId();
              struct.sourceFragmentInstanceId.read(iprot);
              struct.setSourceFragmentInstanceIdIsSet(true);
            } else { 
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
            }
            break;
          case 2: // START_SEQUENCE_ID
            if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
              struct.startSequenceId = iprot.readI32();
              struct.setStartSequenceIdIsSet(true);
            } else { 
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
            }
            break;
          case 3: // END_SEQUENCE_ID
            if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
              struct.endSequenceId = iprot.readI32();
              struct.setEndSequenceIdIsSet(true);
            } else { 
              org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
            }
            break;
          case 4: // INDEX
            if (schemeField.type == org.apache.thrift.protocol.TType.I32) {
              struct.index = iprot.readI32();
              struct.setIndexIsSet(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
      if (!struct.isSetStartSequenceId()) {
        throw new org.apache.thrift.protocol.TProtocolException("Required field 'startSequenceId' was not found in serialized data! Struct: " + toString());
      }
      if (!struct.isSetEndSequenceId()) {
        throw new org.apache.thrift.protocol.TProtocolException("Required field 'endSequenceId' was not found in serialized data! Struct: " + toString());
      }
      if (!struct.isSetIndex()) {
        throw new org.apache.thrift.protocol.TProtocolException("Required field 'index' was not found in serialized data! Struct: " + toString());
      }
      struct.validate();
    }

    public void write(org.apache.thrift.protocol.TProtocol oprot, TGetDataBlockRequest struct) throws org.apache.thrift.TException {
      struct.validate();

      oprot.writeStructBegin(STRUCT_DESC);
      if (struct.sourceFragmentInstanceId != null) {
        oprot.writeFieldBegin(SOURCE_FRAGMENT_INSTANCE_ID_FIELD_DESC);
        struct.sourceFragmentInstanceId.write(oprot);
        oprot.writeFieldEnd();
      }
      oprot.writeFieldBegin(START_SEQUENCE_ID_FIELD_DESC);
      oprot.writeI32(struct.startSequenceId);
      oprot.writeFieldEnd();
      oprot.writeFieldBegin(END_SEQUENCE_ID_FIELD_DESC);
      oprot.writeI32(struct.endSequenceId);
      oprot.writeFieldEnd();
      oprot.writeFieldBegin(INDEX_FIELD_DESC);
      oprot.writeI32(struct.index);
      oprot.writeFieldEnd();
      oprot.writeFieldStop();
      oprot.writeStructEnd();
    }

  }

  private static class TGetDataBlockRequestTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory {
    public TGetDataBlockRequestTupleScheme getScheme() {
      return new TGetDataBlockRequestTupleScheme();
    }
  }

  private static class TGetDataBlockRequestTupleScheme extends org.apache.thrift.scheme.TupleScheme {

    @Override
    public void write(org.apache.thrift.protocol.TProtocol prot, TGetDataBlockRequest struct) throws org.apache.thrift.TException {
      org.apache.thrift.protocol.TTupleProtocol oprot = (org.apache.thrift.protocol.TTupleProtocol) prot;
      struct.sourceFragmentInstanceId.write(oprot);
      oprot.writeI32(struct.startSequenceId);
      oprot.writeI32(struct.endSequenceId);
      oprot.writeI32(struct.index);
    }

    @Override
    public void read(org.apache.thrift.protocol.TProtocol prot, TGetDataBlockRequest struct) throws org.apache.thrift.TException {
      org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot;
      struct.sourceFragmentInstanceId = new TFragmentInstanceId();
      struct.sourceFragmentInstanceId.read(iprot);
      struct.setSourceFragmentInstanceIdIsSet(true);
      struct.startSequenceId = iprot.readI32();
      struct.setStartSequenceIdIsSet(true);
      struct.endSequenceId = iprot.readI32();
      struct.setEndSequenceIdIsSet(true);
      struct.index = iprot.readI32();
      struct.setIndexIsSet(true);
    }
  }

  private static  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();
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy