/** * Autogenerated by Thrift Compiler (0.10.0) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package com.navercorp.pinpoint.thrift.dto.command; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"}) @javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.10.0)", date = "2017-03-16") public class TCmdActiveThreadCountRes implements org.apache.thrift.TBase<TCmdActiveThreadCountRes, TCmdActiveThreadCountRes._Fields>, java.io.Serializable, Cloneable, Comparable<TCmdActiveThreadCountRes> { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TCmdActiveThreadCountRes"); private static final org.apache.thrift.protocol.TField HISTOGRAM_SCHEMA_TYPE_FIELD_DESC = new org.apache.thrift.protocol.TField("histogramSchemaType", org.apache.thrift.protocol.TType.I32, (short)1); private static final org.apache.thrift.protocol.TField ACTIVE_THREAD_COUNT_FIELD_DESC = new org.apache.thrift.protocol.TField("activeThreadCount", org.apache.thrift.protocol.TType.LIST, (short)2); private static final org.apache.thrift.protocol.TField TIME_STAMP_FIELD_DESC = new org.apache.thrift.protocol.TField("timeStamp", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new TCmdActiveThreadCountResStandardSchemeFactory(); private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new TCmdActiveThreadCountResTupleSchemeFactory(); private int histogramSchemaType; // required private java.util.List<java.lang.Integer> activeThreadCount; // required private long timeStamp; // 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 { HISTOGRAM_SCHEMA_TYPE((short)1, "histogramSchemaType"), ACTIVE_THREAD_COUNT((short)2, "activeThreadCount"), TIME_STAMP((short)3, "timeStamp"); 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. */ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { case 1: // HISTOGRAM_SCHEMA_TYPE return HISTOGRAM_SCHEMA_TYPE; case 2: // ACTIVE_THREAD_COUNT return ACTIVE_THREAD_COUNT; case 3: // TIME_STAMP return TIME_STAMP; 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. */ 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 __HISTOGRAMSCHEMATYPE_ISSET_ID = 0; private static final int __TIMESTAMP_ISSET_ID = 1; private byte __isset_bitfield = 0; private static final _Fields optionals[] = {_Fields.TIME_STAMP}; 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.HISTOGRAM_SCHEMA_TYPE, new org.apache.thrift.meta_data.FieldMetaData("histogramSchemaType", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32))); tmpMap.put(_Fields.ACTIVE_THREAD_COUNT, new org.apache.thrift.meta_data.FieldMetaData("activeThreadCount", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32)))); tmpMap.put(_Fields.TIME_STAMP, new org.apache.thrift.meta_data.FieldMetaData("timeStamp", org.apache.thrift.TFieldRequirementType.OPTIONAL, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(TCmdActiveThreadCountRes.class, metaDataMap); } public TCmdActiveThreadCountRes() { } public TCmdActiveThreadCountRes( int histogramSchemaType, java.util.List<java.lang.Integer> activeThreadCount) { this(); this.histogramSchemaType = histogramSchemaType; setHistogramSchemaTypeIsSet(true); this.activeThreadCount = activeThreadCount; } /** * Performs a deep copy on <i>other</i>. */ public TCmdActiveThreadCountRes(TCmdActiveThreadCountRes other) { __isset_bitfield = other.__isset_bitfield; this.histogramSchemaType = other.histogramSchemaType; if (other.isSetActiveThreadCount()) { java.util.List<java.lang.Integer> __this__activeThreadCount = new java.util.ArrayList<java.lang.Integer>(other.activeThreadCount); this.activeThreadCount = __this__activeThreadCount; } this.timeStamp = other.timeStamp; } public TCmdActiveThreadCountRes deepCopy() { return new TCmdActiveThreadCountRes(this); } @Override public void clear() { setHistogramSchemaTypeIsSet(false); this.histogramSchemaType = 0; this.activeThreadCount = null; setTimeStampIsSet(false); this.timeStamp = 0; } public int getHistogramSchemaType() { return this.histogramSchemaType; } public void setHistogramSchemaType(int histogramSchemaType) { this.histogramSchemaType = histogramSchemaType; setHistogramSchemaTypeIsSet(true); } public void unsetHistogramSchemaType() { __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __HISTOGRAMSCHEMATYPE_ISSET_ID); } /** Returns true if field histogramSchemaType is set (has been assigned a value) and false otherwise */ public boolean isSetHistogramSchemaType() { return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __HISTOGRAMSCHEMATYPE_ISSET_ID); } public void setHistogramSchemaTypeIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __HISTOGRAMSCHEMATYPE_ISSET_ID, value); } public int getActiveThreadCountSize() { return (this.activeThreadCount == null) ? 0 : this.activeThreadCount.size(); } public java.util.Iterator<java.lang.Integer> getActiveThreadCountIterator() { return (this.activeThreadCount == null) ? null : this.activeThreadCount.iterator(); } public void addToActiveThreadCount(int elem) { if (this.activeThreadCount == null) { this.activeThreadCount = new java.util.ArrayList<java.lang.Integer>(); } this.activeThreadCount.add(elem); } public java.util.List<java.lang.Integer> getActiveThreadCount() { return this.activeThreadCount; } public void setActiveThreadCount(java.util.List<java.lang.Integer> activeThreadCount) { this.activeThreadCount = activeThreadCount; } public void unsetActiveThreadCount() { this.activeThreadCount = null; } /** Returns true if field activeThreadCount is set (has been assigned a value) and false otherwise */ public boolean isSetActiveThreadCount() { return this.activeThreadCount != null; } public void setActiveThreadCountIsSet(boolean value) { if (!value) { this.activeThreadCount = null; } } public long getTimeStamp() { return this.timeStamp; } public void setTimeStamp(long timeStamp) { this.timeStamp = timeStamp; setTimeStampIsSet(true); } public void unsetTimeStamp() { __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } /** Returns true if field timeStamp is set (has been assigned a value) and false otherwise */ public boolean isSetTimeStamp() { return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __TIMESTAMP_ISSET_ID); } public void setTimeStampIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __TIMESTAMP_ISSET_ID, value); } public void setFieldValue(_Fields field, java.lang.Object value) { switch (field) { case HISTOGRAM_SCHEMA_TYPE: if (value == null) { unsetHistogramSchemaType(); } else { setHistogramSchemaType((java.lang.Integer)value); } break; case ACTIVE_THREAD_COUNT: if (value == null) { unsetActiveThreadCount(); } else { setActiveThreadCount((java.util.List<java.lang.Integer>)value); } break; case TIME_STAMP: if (value == null) { unsetTimeStamp(); } else { setTimeStamp((java.lang.Long)value); } break; } } public java.lang.Object getFieldValue(_Fields field) { switch (field) { case HISTOGRAM_SCHEMA_TYPE: return getHistogramSchemaType(); case ACTIVE_THREAD_COUNT: return getActiveThreadCount(); case TIME_STAMP: return getTimeStamp(); } 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 HISTOGRAM_SCHEMA_TYPE: return isSetHistogramSchemaType(); case ACTIVE_THREAD_COUNT: return isSetActiveThreadCount(); case TIME_STAMP: return isSetTimeStamp(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { if (that == null) return false; if (that instanceof TCmdActiveThreadCountRes) return this.equals((TCmdActiveThreadCountRes)that); return false; } public boolean equals(TCmdActiveThreadCountRes that) { if (that == null) return false; if (this == that) return true; boolean this_present_histogramSchemaType = true; boolean that_present_histogramSchemaType = true; if (this_present_histogramSchemaType || that_present_histogramSchemaType) { if (!(this_present_histogramSchemaType && that_present_histogramSchemaType)) return false; if (this.histogramSchemaType != that.histogramSchemaType) return false; } boolean this_present_activeThreadCount = true && this.isSetActiveThreadCount(); boolean that_present_activeThreadCount = true && that.isSetActiveThreadCount(); if (this_present_activeThreadCount || that_present_activeThreadCount) { if (!(this_present_activeThreadCount && that_present_activeThreadCount)) return false; if (!this.activeThreadCount.equals(that.activeThreadCount)) return false; } boolean this_present_timeStamp = true && this.isSetTimeStamp(); boolean that_present_timeStamp = true && that.isSetTimeStamp(); if (this_present_timeStamp || that_present_timeStamp) { if (!(this_present_timeStamp && that_present_timeStamp)) return false; if (this.timeStamp != that.timeStamp) return false; } return true; } @Override public int hashCode() { int hashCode = 1; hashCode = hashCode * 8191 + histogramSchemaType; hashCode = hashCode * 8191 + ((isSetActiveThreadCount()) ? 131071 : 524287); if (isSetActiveThreadCount()) hashCode = hashCode * 8191 + activeThreadCount.hashCode(); hashCode = hashCode * 8191 + ((isSetTimeStamp()) ? 131071 : 524287); if (isSetTimeStamp()) hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(timeStamp); return hashCode; } @Override public int compareTo(TCmdActiveThreadCountRes other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; lastComparison = java.lang.Boolean.valueOf(isSetHistogramSchemaType()).compareTo(other.isSetHistogramSchemaType()); if (lastComparison != 0) { return lastComparison; } if (isSetHistogramSchemaType()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.histogramSchemaType, other.histogramSchemaType); if (lastComparison != 0) { return lastComparison; } } lastComparison = java.lang.Boolean.valueOf(isSetActiveThreadCount()).compareTo(other.isSetActiveThreadCount()); if (lastComparison != 0) { return lastComparison; } if (isSetActiveThreadCount()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.activeThreadCount, other.activeThreadCount); if (lastComparison != 0) { return lastComparison; } } lastComparison = java.lang.Boolean.valueOf(isSetTimeStamp()).compareTo(other.isSetTimeStamp()); if (lastComparison != 0) { return lastComparison; } if (isSetTimeStamp()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.timeStamp, other.timeStamp); 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 { 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("TCmdActiveThreadCountRes("); boolean first = true; sb.append("histogramSchemaType:"); sb.append(this.histogramSchemaType); first = false; if (!first) sb.append(", "); sb.append("activeThreadCount:"); if (this.activeThreadCount == null) { sb.append("null"); } else { sb.append(this.activeThreadCount); } first = false; if (isSetTimeStamp()) { if (!first) sb.append(", "); sb.append("timeStamp:"); sb.append(this.timeStamp); 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 { // 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 TCmdActiveThreadCountResStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { public TCmdActiveThreadCountResStandardScheme getScheme() { return new TCmdActiveThreadCountResStandardScheme(); } } private static class TCmdActiveThreadCountResStandardScheme extends org.apache.thrift.scheme.StandardScheme<TCmdActiveThreadCountRes> { public void read(org.apache.thrift.protocol.TProtocol iprot, TCmdActiveThreadCountRes 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: // HISTOGRAM_SCHEMA_TYPE if (schemeField.type == org.apache.thrift.protocol.TType.I32) { struct.histogramSchemaType = iprot.readI32(); struct.setHistogramSchemaTypeIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 2: // ACTIVE_THREAD_COUNT if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { org.apache.thrift.protocol.TList _list32 = iprot.readListBegin(); struct.activeThreadCount = new java.util.ArrayList<java.lang.Integer>(_list32.size); int _elem33; for (int _i34 = 0; _i34 < _list32.size; ++_i34) { _elem33 = iprot.readI32(); struct.activeThreadCount.add(_elem33); } iprot.readListEnd(); } struct.setActiveThreadCountIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 3: // TIME_STAMP if (schemeField.type == org.apache.thrift.protocol.TType.I64) { struct.timeStamp = iprot.readI64(); struct.setTimeStampIsSet(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(); struct.validate(); } public void write(org.apache.thrift.protocol.TProtocol oprot, TCmdActiveThreadCountRes struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); oprot.writeFieldBegin(HISTOGRAM_SCHEMA_TYPE_FIELD_DESC); oprot.writeI32(struct.histogramSchemaType); oprot.writeFieldEnd(); if (struct.activeThreadCount != null) { oprot.writeFieldBegin(ACTIVE_THREAD_COUNT_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I32, struct.activeThreadCount.size())); for (int _iter35 : struct.activeThreadCount) { oprot.writeI32(_iter35); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } if (struct.isSetTimeStamp()) { oprot.writeFieldBegin(TIME_STAMP_FIELD_DESC); oprot.writeI64(struct.timeStamp); oprot.writeFieldEnd(); } oprot.writeFieldStop(); oprot.writeStructEnd(); } } private static class TCmdActiveThreadCountResTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { public TCmdActiveThreadCountResTupleScheme getScheme() { return new TCmdActiveThreadCountResTupleScheme(); } } private static class TCmdActiveThreadCountResTupleScheme extends org.apache.thrift.scheme.TupleScheme<TCmdActiveThreadCountRes> { @Override public void write(org.apache.thrift.protocol.TProtocol prot, TCmdActiveThreadCountRes 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.isSetHistogramSchemaType()) { optionals.set(0); } if (struct.isSetActiveThreadCount()) { optionals.set(1); } if (struct.isSetTimeStamp()) { optionals.set(2); } oprot.writeBitSet(optionals, 3); if (struct.isSetHistogramSchemaType()) { oprot.writeI32(struct.histogramSchemaType); } if (struct.isSetActiveThreadCount()) { { oprot.writeI32(struct.activeThreadCount.size()); for (int _iter36 : struct.activeThreadCount) { oprot.writeI32(_iter36); } } } if (struct.isSetTimeStamp()) { oprot.writeI64(struct.timeStamp); } } @Override public void read(org.apache.thrift.protocol.TProtocol prot, TCmdActiveThreadCountRes struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { struct.histogramSchemaType = iprot.readI32(); struct.setHistogramSchemaTypeIsSet(true); } if (incoming.get(1)) { { org.apache.thrift.protocol.TList _list37 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I32, iprot.readI32()); struct.activeThreadCount = new java.util.ArrayList<java.lang.Integer>(_list37.size); int _elem38; for (int _i39 = 0; _i39 < _list37.size; ++_i39) { _elem38 = iprot.readI32(); struct.activeThreadCount.add(_elem38); } } struct.setActiveThreadCountIsSet(true); } if (incoming.get(2)) { struct.timeStamp = iprot.readI64(); struct.setTimeStampIsSet(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(); } }