blob: dcf95ced8ad18ce783f0f69ed70d246db12b3d62 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Autogenerated by Thrift Compiler (0.13.0)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
package org.apache.storm.generated;
@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"})
@javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.13.0)")
public class HBRecords implements org.apache.storm.thrift.TBase<HBRecords, HBRecords._Fields>, java.io.Serializable, Cloneable, Comparable<HBRecords> {
private static final org.apache.storm.thrift.protocol.TStruct STRUCT_DESC = new org.apache.storm.thrift.protocol.TStruct("HBRecords");
private static final org.apache.storm.thrift.protocol.TField PULSES_FIELD_DESC = new org.apache.storm.thrift.protocol.TField("pulses", org.apache.storm.thrift.protocol.TType.LIST, (short)1);
private static final org.apache.storm.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new HBRecordsStandardSchemeFactory();
private static final org.apache.storm.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new HBRecordsTupleSchemeFactory();
private @org.apache.storm.thrift.annotation.Nullable java.util.List<HBPulse> pulses; // required
/** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
public enum _Fields implements org.apache.storm.thrift.TFieldIdEnum {
PULSES((short)1, "pulses");
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.
*/
@org.apache.storm.thrift.annotation.Nullable
public static _Fields findByThriftId(int fieldId) {
switch(fieldId) {
case 1: // PULSES
return PULSES;
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.
*/
@org.apache.storm.thrift.annotation.Nullable
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
public static final java.util.Map<_Fields, org.apache.storm.thrift.meta_data.FieldMetaData> metaDataMap;
static {
java.util.Map<_Fields, org.apache.storm.thrift.meta_data.FieldMetaData> tmpMap = new java.util.EnumMap<_Fields, org.apache.storm.thrift.meta_data.FieldMetaData>(_Fields.class);
tmpMap.put(_Fields.PULSES, new org.apache.storm.thrift.meta_data.FieldMetaData("pulses", org.apache.storm.thrift.TFieldRequirementType.DEFAULT,
new org.apache.storm.thrift.meta_data.ListMetaData(org.apache.storm.thrift.protocol.TType.LIST,
new org.apache.storm.thrift.meta_data.StructMetaData(org.apache.storm.thrift.protocol.TType.STRUCT, HBPulse.class))));
metaDataMap = java.util.Collections.unmodifiableMap(tmpMap);
org.apache.storm.thrift.meta_data.FieldMetaData.addStructMetaDataMap(HBRecords.class, metaDataMap);
}
public HBRecords() {
}
public HBRecords(
java.util.List<HBPulse> pulses)
{
this();
this.pulses = pulses;
}
/**
* Performs a deep copy on <i>other</i>.
*/
public HBRecords(HBRecords other) {
if (other.is_set_pulses()) {
java.util.List<HBPulse> __this__pulses = new java.util.ArrayList<HBPulse>(other.pulses.size());
for (HBPulse other_element : other.pulses) {
__this__pulses.add(new HBPulse(other_element));
}
this.pulses = __this__pulses;
}
}
public HBRecords deepCopy() {
return new HBRecords(this);
}
@Override
public void clear() {
this.pulses = null;
}
public int get_pulses_size() {
return (this.pulses == null) ? 0 : this.pulses.size();
}
@org.apache.storm.thrift.annotation.Nullable
public java.util.Iterator<HBPulse> get_pulses_iterator() {
return (this.pulses == null) ? null : this.pulses.iterator();
}
public void add_to_pulses(HBPulse elem) {
if (this.pulses == null) {
this.pulses = new java.util.ArrayList<HBPulse>();
}
this.pulses.add(elem);
}
@org.apache.storm.thrift.annotation.Nullable
public java.util.List<HBPulse> get_pulses() {
return this.pulses;
}
public void set_pulses(@org.apache.storm.thrift.annotation.Nullable java.util.List<HBPulse> pulses) {
this.pulses = pulses;
}
public void unset_pulses() {
this.pulses = null;
}
/** Returns true if field pulses is set (has been assigned a value) and false otherwise */
public boolean is_set_pulses() {
return this.pulses != null;
}
public void set_pulses_isSet(boolean value) {
if (!value) {
this.pulses = null;
}
}
public void setFieldValue(_Fields field, @org.apache.storm.thrift.annotation.Nullable java.lang.Object value) {
switch (field) {
case PULSES:
if (value == null) {
unset_pulses();
} else {
set_pulses((java.util.List<HBPulse>)value);
}
break;
}
}
@org.apache.storm.thrift.annotation.Nullable
public java.lang.Object getFieldValue(_Fields field) {
switch (field) {
case PULSES:
return get_pulses();
}
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 PULSES:
return is_set_pulses();
}
throw new java.lang.IllegalStateException();
}
@Override
public boolean equals(java.lang.Object that) {
if (that == null)
return false;
if (that instanceof HBRecords)
return this.equals((HBRecords)that);
return false;
}
public boolean equals(HBRecords that) {
if (that == null)
return false;
if (this == that)
return true;
boolean this_present_pulses = true && this.is_set_pulses();
boolean that_present_pulses = true && that.is_set_pulses();
if (this_present_pulses || that_present_pulses) {
if (!(this_present_pulses && that_present_pulses))
return false;
if (!this.pulses.equals(that.pulses))
return false;
}
return true;
}
@Override
public int hashCode() {
int hashCode = 1;
hashCode = hashCode * 8191 + ((is_set_pulses()) ? 131071 : 524287);
if (is_set_pulses())
hashCode = hashCode * 8191 + pulses.hashCode();
return hashCode;
}
@Override
public int compareTo(HBRecords other) {
if (!getClass().equals(other.getClass())) {
return getClass().getName().compareTo(other.getClass().getName());
}
int lastComparison = 0;
lastComparison = java.lang.Boolean.valueOf(is_set_pulses()).compareTo(other.is_set_pulses());
if (lastComparison != 0) {
return lastComparison;
}
if (is_set_pulses()) {
lastComparison = org.apache.storm.thrift.TBaseHelper.compareTo(this.pulses, other.pulses);
if (lastComparison != 0) {
return lastComparison;
}
}
return 0;
}
@org.apache.storm.thrift.annotation.Nullable
public _Fields fieldForId(int fieldId) {
return _Fields.findByThriftId(fieldId);
}
public void read(org.apache.storm.thrift.protocol.TProtocol iprot) throws org.apache.storm.thrift.TException {
scheme(iprot).read(iprot, this);
}
public void write(org.apache.storm.thrift.protocol.TProtocol oprot) throws org.apache.storm.thrift.TException {
scheme(oprot).write(oprot, this);
}
@Override
public java.lang.String toString() {
java.lang.StringBuilder sb = new java.lang.StringBuilder("HBRecords(");
boolean first = true;
sb.append("pulses:");
if (this.pulses == null) {
sb.append("null");
} else {
sb.append(this.pulses);
}
first = false;
sb.append(")");
return sb.toString();
}
public void validate() throws org.apache.storm.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.storm.thrift.protocol.TCompactProtocol(new org.apache.storm.thrift.transport.TIOStreamTransport(out)));
} catch (org.apache.storm.thrift.TException te) {
throw new java.io.IOException(te);
}
}
private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, java.lang.ClassNotFoundException {
try {
read(new org.apache.storm.thrift.protocol.TCompactProtocol(new org.apache.storm.thrift.transport.TIOStreamTransport(in)));
} catch (org.apache.storm.thrift.TException te) {
throw new java.io.IOException(te);
}
}
private static class HBRecordsStandardSchemeFactory implements org.apache.storm.thrift.scheme.SchemeFactory {
public HBRecordsStandardScheme getScheme() {
return new HBRecordsStandardScheme();
}
}
private static class HBRecordsStandardScheme extends org.apache.storm.thrift.scheme.StandardScheme<HBRecords> {
public void read(org.apache.storm.thrift.protocol.TProtocol iprot, HBRecords struct) throws org.apache.storm.thrift.TException {
org.apache.storm.thrift.protocol.TField schemeField;
iprot.readStructBegin();
while (true)
{
schemeField = iprot.readFieldBegin();
if (schemeField.type == org.apache.storm.thrift.protocol.TType.STOP) {
break;
}
switch (schemeField.id) {
case 1: // PULSES
if (schemeField.type == org.apache.storm.thrift.protocol.TType.LIST) {
{
org.apache.storm.thrift.protocol.TList _list954 = iprot.readListBegin();
struct.pulses = new java.util.ArrayList<HBPulse>(_list954.size);
@org.apache.storm.thrift.annotation.Nullable HBPulse _elem955;
for (int _i956 = 0; _i956 < _list954.size; ++_i956)
{
_elem955 = new HBPulse();
_elem955.read(iprot);
struct.pulses.add(_elem955);
}
iprot.readListEnd();
}
struct.set_pulses_isSet(true);
} else {
org.apache.storm.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
default:
org.apache.storm.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
iprot.readFieldEnd();
}
iprot.readStructEnd();
struct.validate();
}
public void write(org.apache.storm.thrift.protocol.TProtocol oprot, HBRecords struct) throws org.apache.storm.thrift.TException {
struct.validate();
oprot.writeStructBegin(STRUCT_DESC);
if (struct.pulses != null) {
oprot.writeFieldBegin(PULSES_FIELD_DESC);
{
oprot.writeListBegin(new org.apache.storm.thrift.protocol.TList(org.apache.storm.thrift.protocol.TType.STRUCT, struct.pulses.size()));
for (HBPulse _iter957 : struct.pulses)
{
_iter957.write(oprot);
}
oprot.writeListEnd();
}
oprot.writeFieldEnd();
}
oprot.writeFieldStop();
oprot.writeStructEnd();
}
}
private static class HBRecordsTupleSchemeFactory implements org.apache.storm.thrift.scheme.SchemeFactory {
public HBRecordsTupleScheme getScheme() {
return new HBRecordsTupleScheme();
}
}
private static class HBRecordsTupleScheme extends org.apache.storm.thrift.scheme.TupleScheme<HBRecords> {
@Override
public void write(org.apache.storm.thrift.protocol.TProtocol prot, HBRecords struct) throws org.apache.storm.thrift.TException {
org.apache.storm.thrift.protocol.TTupleProtocol oprot = (org.apache.storm.thrift.protocol.TTupleProtocol) prot;
java.util.BitSet optionals = new java.util.BitSet();
if (struct.is_set_pulses()) {
optionals.set(0);
}
oprot.writeBitSet(optionals, 1);
if (struct.is_set_pulses()) {
{
oprot.writeI32(struct.pulses.size());
for (HBPulse _iter958 : struct.pulses)
{
_iter958.write(oprot);
}
}
}
}
@Override
public void read(org.apache.storm.thrift.protocol.TProtocol prot, HBRecords struct) throws org.apache.storm.thrift.TException {
org.apache.storm.thrift.protocol.TTupleProtocol iprot = (org.apache.storm.thrift.protocol.TTupleProtocol) prot;
java.util.BitSet incoming = iprot.readBitSet(1);
if (incoming.get(0)) {
{
org.apache.storm.thrift.protocol.TList _list959 = new org.apache.storm.thrift.protocol.TList(org.apache.storm.thrift.protocol.TType.STRUCT, iprot.readI32());
struct.pulses = new java.util.ArrayList<HBPulse>(_list959.size);
@org.apache.storm.thrift.annotation.Nullable HBPulse _elem960;
for (int _i961 = 0; _i961 < _list959.size; ++_i961)
{
_elem960 = new HBPulse();
_elem960.read(iprot);
struct.pulses.add(_elem960);
}
}
struct.set_pulses_isSet(true);
}
}
}
private static <S extends org.apache.storm.thrift.scheme.IScheme> S scheme(org.apache.storm.thrift.protocol.TProtocol proto) {
return (org.apache.storm.thrift.scheme.StandardScheme.class.equals(proto.getScheme()) ? STANDARD_SCHEME_FACTORY : TUPLE_SCHEME_FACTORY).getScheme();
}
}