Example #1
0
  public static List<IteratorSetting> toIteratorSettings(IteratorConfig ic) {
    List<IteratorSetting> ret = new ArrayList<>();
    for (TIteratorSetting tIteratorSetting : ic.getIterators()) {
      ret.add(toIteratorSetting(tIteratorSetting));
    }

    return ret;
  }
Example #2
0
 @Override
 public void write(org.apache.thrift.protocol.TProtocol prot, IteratorConfig struct)
     throws org.apache.thrift.TException {
   TTupleProtocol oprot = (TTupleProtocol) prot;
   BitSet optionals = new BitSet();
   if (struct.isSetIterators()) {
     optionals.set(0);
   }
   oprot.writeBitSet(optionals, 1);
   if (struct.isSetIterators()) {
     {
       oprot.writeI32(struct.iterators.size());
       for (TIteratorSetting _iter102 : struct.iterators) {
         _iter102.write(oprot);
       }
     }
   }
 }
Example #3
0
 /** Performs a deep copy on <i>other</i>. */
 public IteratorConfig(IteratorConfig other) {
   if (other.isSetIterators()) {
     List<TIteratorSetting> __this__iterators =
         new ArrayList<TIteratorSetting>(other.iterators.size());
     for (TIteratorSetting other_element : other.iterators) {
       __this__iterators.add(new TIteratorSetting(other_element));
     }
     this.iterators = __this__iterators;
   }
 }
Example #4
0
  @Override
  public int compareTo(IteratorConfig other) {
    if (!getClass().equals(other.getClass())) {
      return getClass().getName().compareTo(other.getClass().getName());
    }

    int lastComparison = 0;

    lastComparison = Boolean.valueOf(isSetIterators()).compareTo(other.isSetIterators());
    if (lastComparison != 0) {
      return lastComparison;
    }
    if (isSetIterators()) {
      lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.iterators, other.iterators);
      if (lastComparison != 0) {
        return lastComparison;
      }
    }
    return 0;
  }
Example #5
0
 @Override
 public void read(org.apache.thrift.protocol.TProtocol prot, IteratorConfig struct)
     throws org.apache.thrift.TException {
   TTupleProtocol iprot = (TTupleProtocol) prot;
   BitSet incoming = iprot.readBitSet(1);
   if (incoming.get(0)) {
     {
       org.apache.thrift.protocol.TList _list103 =
           new org.apache.thrift.protocol.TList(
               org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
       struct.iterators = new ArrayList<TIteratorSetting>(_list103.size);
       TIteratorSetting _elem104;
       for (int _i105 = 0; _i105 < _list103.size; ++_i105) {
         _elem104 = new TIteratorSetting();
         _elem104.read(iprot);
         struct.iterators.add(_elem104);
       }
     }
     struct.setIteratorsIsSet(true);
   }
 }
Example #6
0
  public boolean equals(IteratorConfig that) {
    if (that == null) return false;

    boolean this_present_iterators = true && this.isSetIterators();
    boolean that_present_iterators = true && that.isSetIterators();
    if (this_present_iterators || that_present_iterators) {
      if (!(this_present_iterators && that_present_iterators)) return false;
      if (!this.iterators.equals(that.iterators)) return false;
    }

    return true;
  }
Example #7
0
    public void read(org.apache.thrift.protocol.TProtocol iprot, IteratorConfig 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: // ITERATORS
            if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
              {
                org.apache.thrift.protocol.TList _list98 = iprot.readListBegin();
                struct.iterators = new ArrayList<TIteratorSetting>(_list98.size);
                TIteratorSetting _elem99;
                for (int _i100 = 0; _i100 < _list98.size; ++_i100) {
                  _elem99 = new TIteratorSetting();
                  _elem99.read(iprot);
                  struct.iterators.add(_elem99);
                }
                iprot.readListEnd();
              }
              struct.setIteratorsIsSet(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();
    }
Example #8
0
    public void write(org.apache.thrift.protocol.TProtocol oprot, IteratorConfig struct)
        throws org.apache.thrift.TException {
      struct.validate();

      oprot.writeStructBegin(STRUCT_DESC);
      if (struct.iterators != null) {
        oprot.writeFieldBegin(ITERATORS_FIELD_DESC);
        {
          oprot.writeListBegin(
              new org.apache.thrift.protocol.TList(
                  org.apache.thrift.protocol.TType.STRUCT, struct.iterators.size()));
          for (TIteratorSetting _iter101 : struct.iterators) {
            _iter101.write(oprot);
          }
          oprot.writeListEnd();
        }
        oprot.writeFieldEnd();
      }
      oprot.writeFieldStop();
      oprot.writeStructEnd();
    }