@Override public void read(org.apache.thrift.protocol.TProtocol prot, BlockInfo struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { struct.blockId = iprot.readI64(); struct.setBlockIdIsSet(true); } if (incoming.get(1)) { struct.length = iprot.readI64(); struct.setLengthIsSet(true); } if (incoming.get(2)) { { org.apache.thrift.protocol.TList _list5 = new org.apache.thrift.protocol.TList( org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); struct.locations = new ArrayList<BlockLocation>(_list5.size); BlockLocation _elem6; for (int _i7 = 0; _i7 < _list5.size; ++_i7) { _elem6 = new BlockLocation(); _elem6.read(iprot); struct.locations.add(_elem6); } } struct.setLocationsIsSet(true); } }
@Override public void clear() { setBlockIdIsSet(false); this.blockId = 0; setLengthIsSet(false); this.length = 0; this.locations = null; }
public BlockInfo(long blockId, long length, List<BlockLocation> locations) { this(); this.blockId = blockId; setBlockIdIsSet(true); this.length = length; setLengthIsSet(true); this.locations = locations; }
public void read(org.apache.thrift.protocol.TProtocol iprot, BlockInfo 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: // BLOCK_ID if (schemeField.type == org.apache.thrift.protocol.TType.I64) { struct.blockId = iprot.readI64(); struct.setBlockIdIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 2: // LENGTH if (schemeField.type == org.apache.thrift.protocol.TType.I64) { struct.length = iprot.readI64(); struct.setLengthIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 3: // LOCATIONS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { org.apache.thrift.protocol.TList _list0 = iprot.readListBegin(); struct.locations = new ArrayList<BlockLocation>(_list0.size); BlockLocation _elem1; for (int _i2 = 0; _i2 < _list0.size; ++_i2) { _elem1 = new BlockLocation(); _elem1.read(iprot); struct.locations.add(_elem1); } iprot.readListEnd(); } struct.setLocationsIsSet(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 BlockInfo setLength(long length) { this.length = length; setLengthIsSet(true); return this; }