/** * 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 TCommandTransfer implements org.apache.thrift.TBase<TCommandTransfer, TCommandTransfer._Fields>, java.io.Serializable, Cloneable, Comparable<TCommandTransfer> { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("TCommandTransfer"); private static final org.apache.thrift.protocol.TField APPLICATION_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("applicationName", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField AGENT_ID_FIELD_DESC = new org.apache.thrift.protocol.TField("agentId", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField START_TIME_FIELD_DESC = new org.apache.thrift.protocol.TField("startTime", org.apache.thrift.protocol.TType.I64, (short)3); private static final org.apache.thrift.protocol.TField PAYLOAD_FIELD_DESC = new org.apache.thrift.protocol.TField("payload", org.apache.thrift.protocol.TType.STRING, (short)4); private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new TCommandTransferStandardSchemeFactory(); private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new TCommandTransferTupleSchemeFactory(); private java.lang.String applicationName; // required private java.lang.String agentId; // required private long startTime; // optional private java.nio.ByteBuffer payload; // 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 { APPLICATION_NAME((short)1, "applicationName"), AGENT_ID((short)2, "agentId"), START_TIME((short)3, "startTime"), PAYLOAD((short)4, "payload"); 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: // APPLICATION_NAME return APPLICATION_NAME; case 2: // AGENT_ID return AGENT_ID; case 3: // START_TIME return START_TIME; case 4: // PAYLOAD return PAYLOAD; 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 __STARTTIME_ISSET_ID = 0; private byte __isset_bitfield = 0; private static final _Fields optionals[] = {_Fields.START_TIME}; 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.APPLICATION_NAME, new org.apache.thrift.meta_data.FieldMetaData("applicationName", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.AGENT_ID, new org.apache.thrift.meta_data.FieldMetaData("agentId", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.START_TIME, new org.apache.thrift.meta_data.FieldMetaData("startTime", org.apache.thrift.TFieldRequirementType.OPTIONAL, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.PAYLOAD, new org.apache.thrift.meta_data.FieldMetaData("payload", org.apache.thrift.TFieldRequirementType.DEFAULT, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING , true))); metaDataMap = java.util.Collections.unmodifiableMap(tmpMap); org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(TCommandTransfer.class, metaDataMap); } public TCommandTransfer() { } public TCommandTransfer( java.lang.String applicationName, java.lang.String agentId, java.nio.ByteBuffer payload) { this(); this.applicationName = applicationName; this.agentId = agentId; this.payload = org.apache.thrift.TBaseHelper.copyBinary(payload); } /** * Performs a deep copy on <i>other</i>. */ public TCommandTransfer(TCommandTransfer other) { __isset_bitfield = other.__isset_bitfield; if (other.isSetApplicationName()) { this.applicationName = other.applicationName; } if (other.isSetAgentId()) { this.agentId = other.agentId; } this.startTime = other.startTime; if (other.isSetPayload()) { this.payload = org.apache.thrift.TBaseHelper.copyBinary(other.payload); } } public TCommandTransfer deepCopy() { return new TCommandTransfer(this); } @Override public void clear() { this.applicationName = null; this.agentId = null; setStartTimeIsSet(false); this.startTime = 0; this.payload = null; } public java.lang.String getApplicationName() { return this.applicationName; } public void setApplicationName(java.lang.String applicationName) { this.applicationName = applicationName; } public void unsetApplicationName() { this.applicationName = null; } /** Returns true if field applicationName is set (has been assigned a value) and false otherwise */ public boolean isSetApplicationName() { return this.applicationName != null; } public void setApplicationNameIsSet(boolean value) { if (!value) { this.applicationName = null; } } public java.lang.String getAgentId() { return this.agentId; } public void setAgentId(java.lang.String agentId) { this.agentId = agentId; } public void unsetAgentId() { this.agentId = null; } /** Returns true if field agentId is set (has been assigned a value) and false otherwise */ public boolean isSetAgentId() { return this.agentId != null; } public void setAgentIdIsSet(boolean value) { if (!value) { this.agentId = null; } } public long getStartTime() { return this.startTime; } public void setStartTime(long startTime) { this.startTime = startTime; setStartTimeIsSet(true); } public void unsetStartTime() { __isset_bitfield = org.apache.thrift.EncodingUtils.clearBit(__isset_bitfield, __STARTTIME_ISSET_ID); } /** Returns true if field startTime is set (has been assigned a value) and false otherwise */ public boolean isSetStartTime() { return org.apache.thrift.EncodingUtils.testBit(__isset_bitfield, __STARTTIME_ISSET_ID); } public void setStartTimeIsSet(boolean value) { __isset_bitfield = org.apache.thrift.EncodingUtils.setBit(__isset_bitfield, __STARTTIME_ISSET_ID, value); } public byte[] getPayload() { setPayload(org.apache.thrift.TBaseHelper.rightSize(payload)); return payload == null ? null : payload.array(); } public java.nio.ByteBuffer bufferForPayload() { return org.apache.thrift.TBaseHelper.copyBinary(payload); } public void setPayload(byte[] payload) { this.payload = payload == null ? (java.nio.ByteBuffer)null : java.nio.ByteBuffer.wrap(payload.clone()); } public void setPayload(java.nio.ByteBuffer payload) { this.payload = org.apache.thrift.TBaseHelper.copyBinary(payload); } public void unsetPayload() { this.payload = null; } /** Returns true if field payload is set (has been assigned a value) and false otherwise */ public boolean isSetPayload() { return this.payload != null; } public void setPayloadIsSet(boolean value) { if (!value) { this.payload = null; } } public void setFieldValue(_Fields field, java.lang.Object value) { switch (field) { case APPLICATION_NAME: if (value == null) { unsetApplicationName(); } else { setApplicationName((java.lang.String)value); } break; case AGENT_ID: if (value == null) { unsetAgentId(); } else { setAgentId((java.lang.String)value); } break; case START_TIME: if (value == null) { unsetStartTime(); } else { setStartTime((java.lang.Long)value); } break; case PAYLOAD: if (value == null) { unsetPayload(); } else { if (value instanceof byte[]) { setPayload((byte[])value); } else { setPayload((java.nio.ByteBuffer)value); } } break; } } public java.lang.Object getFieldValue(_Fields field) { switch (field) { case APPLICATION_NAME: return getApplicationName(); case AGENT_ID: return getAgentId(); case START_TIME: return getStartTime(); case PAYLOAD: return getPayload(); } 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 APPLICATION_NAME: return isSetApplicationName(); case AGENT_ID: return isSetAgentId(); case START_TIME: return isSetStartTime(); case PAYLOAD: return isSetPayload(); } throw new java.lang.IllegalStateException(); } @Override public boolean equals(java.lang.Object that) { if (that == null) return false; if (that instanceof TCommandTransfer) return this.equals((TCommandTransfer)that); return false; } public boolean equals(TCommandTransfer that) { if (that == null) return false; if (this == that) return true; boolean this_present_applicationName = true && this.isSetApplicationName(); boolean that_present_applicationName = true && that.isSetApplicationName(); if (this_present_applicationName || that_present_applicationName) { if (!(this_present_applicationName && that_present_applicationName)) return false; if (!this.applicationName.equals(that.applicationName)) return false; } boolean this_present_agentId = true && this.isSetAgentId(); boolean that_present_agentId = true && that.isSetAgentId(); if (this_present_agentId || that_present_agentId) { if (!(this_present_agentId && that_present_agentId)) return false; if (!this.agentId.equals(that.agentId)) return false; } boolean this_present_startTime = true && this.isSetStartTime(); boolean that_present_startTime = true && that.isSetStartTime(); if (this_present_startTime || that_present_startTime) { if (!(this_present_startTime && that_present_startTime)) return false; if (this.startTime != that.startTime) return false; } boolean this_present_payload = true && this.isSetPayload(); boolean that_present_payload = true && that.isSetPayload(); if (this_present_payload || that_present_payload) { if (!(this_present_payload && that_present_payload)) return false; if (!this.payload.equals(that.payload)) return false; } return true; } @Override public int hashCode() { int hashCode = 1; hashCode = hashCode * 8191 + ((isSetApplicationName()) ? 131071 : 524287); if (isSetApplicationName()) hashCode = hashCode * 8191 + applicationName.hashCode(); hashCode = hashCode * 8191 + ((isSetAgentId()) ? 131071 : 524287); if (isSetAgentId()) hashCode = hashCode * 8191 + agentId.hashCode(); hashCode = hashCode * 8191 + ((isSetStartTime()) ? 131071 : 524287); if (isSetStartTime()) hashCode = hashCode * 8191 + org.apache.thrift.TBaseHelper.hashCode(startTime); hashCode = hashCode * 8191 + ((isSetPayload()) ? 131071 : 524287); if (isSetPayload()) hashCode = hashCode * 8191 + payload.hashCode(); return hashCode; } @Override public int compareTo(TCommandTransfer other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; lastComparison = java.lang.Boolean.valueOf(isSetApplicationName()).compareTo(other.isSetApplicationName()); if (lastComparison != 0) { return lastComparison; } if (isSetApplicationName()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.applicationName, other.applicationName); if (lastComparison != 0) { return lastComparison; } } lastComparison = java.lang.Boolean.valueOf(isSetAgentId()).compareTo(other.isSetAgentId()); if (lastComparison != 0) { return lastComparison; } if (isSetAgentId()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.agentId, other.agentId); if (lastComparison != 0) { return lastComparison; } } lastComparison = java.lang.Boolean.valueOf(isSetStartTime()).compareTo(other.isSetStartTime()); if (lastComparison != 0) { return lastComparison; } if (isSetStartTime()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.startTime, other.startTime); if (lastComparison != 0) { return lastComparison; } } lastComparison = java.lang.Boolean.valueOf(isSetPayload()).compareTo(other.isSetPayload()); if (lastComparison != 0) { return lastComparison; } if (isSetPayload()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.payload, other.payload); 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("TCommandTransfer("); boolean first = true; sb.append("applicationName:"); if (this.applicationName == null) { sb.append("null"); } else { sb.append(this.applicationName); } first = false; if (!first) sb.append(", "); sb.append("agentId:"); if (this.agentId == null) { sb.append("null"); } else { sb.append(this.agentId); } first = false; if (isSetStartTime()) { if (!first) sb.append(", "); sb.append("startTime:"); sb.append(this.startTime); first = false; } if (!first) sb.append(", "); sb.append("payload:"); if (this.payload == null) { sb.append("null"); } else { org.apache.thrift.TBaseHelper.toString(this.payload, sb); } 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 TCommandTransferStandardSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { public TCommandTransferStandardScheme getScheme() { return new TCommandTransferStandardScheme(); } } private static class TCommandTransferStandardScheme extends org.apache.thrift.scheme.StandardScheme<TCommandTransfer> { public void read(org.apache.thrift.protocol.TProtocol iprot, TCommandTransfer 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: // APPLICATION_NAME if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.applicationName = iprot.readString(); struct.setApplicationNameIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 2: // AGENT_ID if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.agentId = iprot.readString(); struct.setAgentIdIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 3: // START_TIME if (schemeField.type == org.apache.thrift.protocol.TType.I64) { struct.startTime = iprot.readI64(); struct.setStartTimeIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 4: // PAYLOAD if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { struct.payload = iprot.readBinary(); struct.setPayloadIsSet(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, TCommandTransfer struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.applicationName != null) { oprot.writeFieldBegin(APPLICATION_NAME_FIELD_DESC); oprot.writeString(struct.applicationName); oprot.writeFieldEnd(); } if (struct.agentId != null) { oprot.writeFieldBegin(AGENT_ID_FIELD_DESC); oprot.writeString(struct.agentId); oprot.writeFieldEnd(); } if (struct.isSetStartTime()) { oprot.writeFieldBegin(START_TIME_FIELD_DESC); oprot.writeI64(struct.startTime); oprot.writeFieldEnd(); } if (struct.payload != null) { oprot.writeFieldBegin(PAYLOAD_FIELD_DESC); oprot.writeBinary(struct.payload); oprot.writeFieldEnd(); } oprot.writeFieldStop(); oprot.writeStructEnd(); } } private static class TCommandTransferTupleSchemeFactory implements org.apache.thrift.scheme.SchemeFactory { public TCommandTransferTupleScheme getScheme() { return new TCommandTransferTupleScheme(); } } private static class TCommandTransferTupleScheme extends org.apache.thrift.scheme.TupleScheme<TCommandTransfer> { @Override public void write(org.apache.thrift.protocol.TProtocol prot, TCommandTransfer 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.isSetApplicationName()) { optionals.set(0); } if (struct.isSetAgentId()) { optionals.set(1); } if (struct.isSetStartTime()) { optionals.set(2); } if (struct.isSetPayload()) { optionals.set(3); } oprot.writeBitSet(optionals, 4); if (struct.isSetApplicationName()) { oprot.writeString(struct.applicationName); } if (struct.isSetAgentId()) { oprot.writeString(struct.agentId); } if (struct.isSetStartTime()) { oprot.writeI64(struct.startTime); } if (struct.isSetPayload()) { oprot.writeBinary(struct.payload); } } @Override public void read(org.apache.thrift.protocol.TProtocol prot, TCommandTransfer struct) throws org.apache.thrift.TException { org.apache.thrift.protocol.TTupleProtocol iprot = (org.apache.thrift.protocol.TTupleProtocol) prot; java.util.BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { struct.applicationName = iprot.readString(); struct.setApplicationNameIsSet(true); } if (incoming.get(1)) { struct.agentId = iprot.readString(); struct.setAgentIdIsSet(true); } if (incoming.get(2)) { struct.startTime = iprot.readI64(); struct.setStartTimeIsSet(true); } if (incoming.get(3)) { struct.payload = iprot.readBinary(); struct.setPayloadIsSet(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(); } }