/** * Autogenerated by Thrift Compiler (0.9.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package ch.usi.da.dmap.thrift.gen; 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 org.slf4j.Logger; import org.slf4j.LoggerFactory; public class Partition implements org.apache.thrift.TBase<Partition, Partition._Fields>, java.io.Serializable, Cloneable, Comparable<Partition> { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("Partition"); private static final org.apache.thrift.protocol.TField VERSION_FIELD_DESC = new org.apache.thrift.protocol.TField("version", org.apache.thrift.protocol.TType.I64, (short)1); private static final org.apache.thrift.protocol.TField PARTITIONS_FIELD_DESC = new org.apache.thrift.protocol.TField("partitions", org.apache.thrift.protocol.TType.MAP, (short)2); private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>(); static { schemes.put(StandardScheme.class, new PartitionStandardSchemeFactory()); schemes.put(TupleScheme.class, new PartitionTupleSchemeFactory()); } public long version; // required public Map<Integer,Set<Replica>> partitions; // 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 { VERSION((short)1, "version"), PARTITIONS((short)2, "partitions"); private static final Map<String, _Fields> byName = new HashMap<String, _Fields>(); 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: // VERSION return VERSION; case 2: // PARTITIONS return PARTITIONS; 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 __VERSION_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.VERSION, new org.apache.thrift.meta_data.FieldMetaData("version", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.PARTITIONS, new org.apache.thrift.meta_data.FieldMetaData("partitions", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32), new org.apache.thrift.meta_data.SetMetaData(org.apache.thrift.protocol.TType.SET, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, Replica.class))))); metaDataMap = Collections.unmodifiableMap(tmpMap); org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(Partition.class, metaDataMap); } public Partition() { } public Partition( long version, Map<Integer,Set<Replica>> partitions) { this(); this.version = version; setVersionIsSet(true); this.partitions = partitions; } /** * Performs a deep copy on <i>other</i>. */ public Partition(Partition other) { __isset_bitfield = other.__isset_bitfield; this.version = other.version; if (other.isSetPartitions()) { Map<Integer,Set<Replica>> __this__partitions = new HashMap<Integer,Set<Replica>>(other.partitions.size()); for (Map.Entry<Integer, Set<Replica>> other_element : other.partitions.entrySet()) { Integer other_element_key = other_element.getKey(); Set<Replica> other_element_value = other_element.getValue(); Integer __this__partitions_copy_key = other_element_key; Set<Replica> __this__partitions_copy_value = new HashSet<Replica>(other_element_value.size()); for (Replica other_element_value_element : other_element_value) { __this__partitions_copy_value.add(new Replica(other_element_value_element)); } __this__partitions.put(__this__partitions_copy_key, __this__partitions_copy_value); } this.partitions = __this__partitions; } } public Partition deepCopy() { return new Partition(this); } @Override public void clear() { setVersionIsSet(false); this.version = 0; this.partitions = null; } public long getVersion() { return this.version; } public Partition setVersion(long version) { this.version = version; setVersionIsSet(true); return this; } public void unsetVersion() { __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __VERSION_ISSET_ID); } /** Returns true if field version is set (has been assigned a value) and false otherwise */ public boolean isSetVersion() { return EncodingUtils.testBit(__isset_bitfield, __VERSION_ISSET_ID); } public void setVersionIsSet(boolean value) { __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __VERSION_ISSET_ID, value); } public int getPartitionsSize() { return (this.partitions == null) ? 0 : this.partitions.size(); } public void putToPartitions(int key, Set<Replica> val) { if (this.partitions == null) { this.partitions = new HashMap<Integer,Set<Replica>>(); } this.partitions.put(key, val); } public Map<Integer,Set<Replica>> getPartitions() { return this.partitions; } public Partition setPartitions(Map<Integer,Set<Replica>> partitions) { this.partitions = partitions; return this; } public void unsetPartitions() { this.partitions = null; } /** Returns true if field partitions is set (has been assigned a value) and false otherwise */ public boolean isSetPartitions() { return this.partitions != null; } public void setPartitionsIsSet(boolean value) { if (!value) { this.partitions = null; } } public void setFieldValue(_Fields field, Object value) { switch (field) { case VERSION: if (value == null) { unsetVersion(); } else { setVersion((Long)value); } break; case PARTITIONS: if (value == null) { unsetPartitions(); } else { setPartitions((Map<Integer,Set<Replica>>)value); } break; } } public Object getFieldValue(_Fields field) { switch (field) { case VERSION: return Long.valueOf(getVersion()); case PARTITIONS: return getPartitions(); } 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 VERSION: return isSetVersion(); case PARTITIONS: return isSetPartitions(); } throw new IllegalStateException(); } @Override public boolean equals(Object that) { if (that == null) return false; if (that instanceof Partition) return this.equals((Partition)that); return false; } public boolean equals(Partition that) { if (that == null) return false; boolean this_present_version = true; boolean that_present_version = true; if (this_present_version || that_present_version) { if (!(this_present_version && that_present_version)) return false; if (this.version != that.version) return false; } boolean this_present_partitions = true && this.isSetPartitions(); boolean that_present_partitions = true && that.isSetPartitions(); if (this_present_partitions || that_present_partitions) { if (!(this_present_partitions && that_present_partitions)) return false; if (!this.partitions.equals(that.partitions)) return false; } return true; } @Override public int hashCode() { return 0; } @Override public int compareTo(Partition other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; lastComparison = Boolean.valueOf(isSetVersion()).compareTo(other.isSetVersion()); if (lastComparison != 0) { return lastComparison; } if (isSetVersion()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.version, other.version); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetPartitions()).compareTo(other.isSetPartitions()); if (lastComparison != 0) { return lastComparison; } if (isSetPartitions()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.partitions, other.partitions); if (lastComparison != 0) { return lastComparison; } } return 0; } public _Fields fieldForId(int fieldId) { return _Fields.findByThriftId(fieldId); } public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { schemes.get(iprot.getScheme()).getScheme().read(iprot, this); } public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { schemes.get(oprot.getScheme()).getScheme().write(oprot, this); } @Override public String toString() { StringBuilder sb = new StringBuilder("Partition("); boolean first = true; sb.append("version:"); sb.append(this.version); first = false; if (!first) sb.append(", "); sb.append("partitions:"); if (this.partitions == null) { sb.append("null"); } else { sb.append(this.partitions); } 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, 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 PartitionStandardSchemeFactory implements SchemeFactory { public PartitionStandardScheme getScheme() { return new PartitionStandardScheme(); } } private static class PartitionStandardScheme extends StandardScheme<Partition> { public void read(org.apache.thrift.protocol.TProtocol iprot, Partition 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: // VERSION if (schemeField.type == org.apache.thrift.protocol.TType.I64) { struct.version = iprot.readI64(); struct.setVersionIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 2: // PARTITIONS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { org.apache.thrift.protocol.TMap _map0 = iprot.readMapBegin(); struct.partitions = new HashMap<Integer,Set<Replica>>(2*_map0.size); for (int _i1 = 0; _i1 < _map0.size; ++_i1) { int _key2; Set<Replica> _val3; _key2 = iprot.readI32(); { org.apache.thrift.protocol.TSet _set4 = iprot.readSetBegin(); _val3 = new HashSet<Replica>(2*_set4.size); for (int _i5 = 0; _i5 < _set4.size; ++_i5) { Replica _elem6; _elem6 = new Replica(); _elem6.read(iprot); _val3.add(_elem6); } iprot.readSetEnd(); } struct.partitions.put(_key2, _val3); } iprot.readMapEnd(); } struct.setPartitionsIsSet(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, Partition struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); oprot.writeFieldBegin(VERSION_FIELD_DESC); oprot.writeI64(struct.version); oprot.writeFieldEnd(); if (struct.partitions != null) { oprot.writeFieldBegin(PARTITIONS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, struct.partitions.size())); for (Map.Entry<Integer, Set<Replica>> _iter7 : struct.partitions.entrySet()) { oprot.writeI32(_iter7.getKey()); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, _iter7.getValue().size())); for (Replica _iter8 : _iter7.getValue()) { _iter8.write(oprot); } oprot.writeSetEnd(); } } oprot.writeMapEnd(); } oprot.writeFieldEnd(); } oprot.writeFieldStop(); oprot.writeStructEnd(); } } private static class PartitionTupleSchemeFactory implements SchemeFactory { public PartitionTupleScheme getScheme() { return new PartitionTupleScheme(); } } private static class PartitionTupleScheme extends TupleScheme<Partition> { @Override public void write(org.apache.thrift.protocol.TProtocol prot, Partition struct) throws org.apache.thrift.TException { TTupleProtocol oprot = (TTupleProtocol) prot; BitSet optionals = new BitSet(); if (struct.isSetVersion()) { optionals.set(0); } if (struct.isSetPartitions()) { optionals.set(1); } oprot.writeBitSet(optionals, 2); if (struct.isSetVersion()) { oprot.writeI64(struct.version); } if (struct.isSetPartitions()) { { oprot.writeI32(struct.partitions.size()); for (Map.Entry<Integer, Set<Replica>> _iter9 : struct.partitions.entrySet()) { oprot.writeI32(_iter9.getKey()); { oprot.writeI32(_iter9.getValue().size()); for (Replica _iter10 : _iter9.getValue()) { _iter10.write(oprot); } } } } } } @Override public void read(org.apache.thrift.protocol.TProtocol prot, Partition struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { struct.version = iprot.readI64(); struct.setVersionIsSet(true); } if (incoming.get(1)) { { org.apache.thrift.protocol.TMap _map11 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I32, org.apache.thrift.protocol.TType.SET, iprot.readI32()); struct.partitions = new HashMap<Integer,Set<Replica>>(2*_map11.size); for (int _i12 = 0; _i12 < _map11.size; ++_i12) { int _key13; Set<Replica> _val14; _key13 = iprot.readI32(); { org.apache.thrift.protocol.TSet _set15 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); _val14 = new HashSet<Replica>(2*_set15.size); for (int _i16 = 0; _i16 < _set15.size; ++_i16) { Replica _elem17; _elem17 = new Replica(); _elem17.read(iprot); _val14.add(_elem17); } } struct.partitions.put(_key13, _val14); } } struct.setPartitionsIsSet(true); } } } }