All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.rbkmoney.bender.GenerationSchema Maven / Gradle / Ivy

Go to download

Generates jar artifact containing compiled thrift classes based on generated thrift IDL files

There is a newer version: 1.17-75be941
Show newest version
/**
 * Autogenerated by Thrift Compiler (1.0.0-dev)
 *
 * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
 *  @generated
 */
package com.rbkmoney.bender;

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.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 javax.annotation.Generated;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked", "unused"})
public class GenerationSchema extends org.apache.thrift.TUnion {
  private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("GenerationSchema");
  private static final org.apache.thrift.protocol.TField SNOWFLAKE_FIELD_DESC = new org.apache.thrift.protocol.TField("snowflake", org.apache.thrift.protocol.TType.STRUCT, (short)1);
  private static final org.apache.thrift.protocol.TField CONSTANT_FIELD_DESC = new org.apache.thrift.protocol.TField("constant", org.apache.thrift.protocol.TType.STRUCT, (short)2);
  private static final org.apache.thrift.protocol.TField SEQUENCE_FIELD_DESC = new org.apache.thrift.protocol.TField("sequence", org.apache.thrift.protocol.TType.STRUCT, (short)3);

  /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */
  public enum _Fields implements org.apache.thrift.TFieldIdEnum {
    SNOWFLAKE((short)1, "snowflake"),
    CONSTANT((short)2, "constant"),
    SEQUENCE((short)3, "sequence");

    private static final Map byName = new HashMap();

    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: // SNOWFLAKE
          return SNOWFLAKE;
        case 2: // CONSTANT
          return CONSTANT;
        case 3: // SEQUENCE
          return SEQUENCE;
        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;
    }
  }

  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.SNOWFLAKE, new org.apache.thrift.meta_data.FieldMetaData("snowflake", org.apache.thrift.TFieldRequirementType.OPTIONAL, 
        new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, SnowflakeSchema.class)));
    tmpMap.put(_Fields.CONSTANT, new org.apache.thrift.meta_data.FieldMetaData("constant", org.apache.thrift.TFieldRequirementType.OPTIONAL, 
        new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, ConstantSchema.class)));
    tmpMap.put(_Fields.SEQUENCE, new org.apache.thrift.meta_data.FieldMetaData("sequence", org.apache.thrift.TFieldRequirementType.OPTIONAL, 
        new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, SequenceSchema.class)));
    metaDataMap = Collections.unmodifiableMap(tmpMap);
    org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(GenerationSchema.class, metaDataMap);
  }

  public GenerationSchema() {
    super();
  }

  public GenerationSchema(_Fields setField, Object value) {
    super(setField, value);
  }

  public GenerationSchema(GenerationSchema other) {
    super(other);
  }
  public GenerationSchema deepCopy() {
    return new GenerationSchema(this);
  }

  public static GenerationSchema snowflake(SnowflakeSchema value) {
    GenerationSchema x = new GenerationSchema();
    x.setSnowflake(value);
    return x;
  }

  public static GenerationSchema constant(ConstantSchema value) {
    GenerationSchema x = new GenerationSchema();
    x.setConstant(value);
    return x;
  }

  public static GenerationSchema sequence(SequenceSchema value) {
    GenerationSchema x = new GenerationSchema();
    x.setSequence(value);
    return x;
  }


  @Override
  protected void checkType(_Fields setField, Object value) throws ClassCastException {
    switch (setField) {
      case SNOWFLAKE:
        if (value instanceof SnowflakeSchema) {
          break;
        }
        throw new ClassCastException("Was expecting value of type SnowflakeSchema for field 'snowflake', but got " + value.getClass().getSimpleName());
      case CONSTANT:
        if (value instanceof ConstantSchema) {
          break;
        }
        throw new ClassCastException("Was expecting value of type ConstantSchema for field 'constant', but got " + value.getClass().getSimpleName());
      case SEQUENCE:
        if (value instanceof SequenceSchema) {
          break;
        }
        throw new ClassCastException("Was expecting value of type SequenceSchema for field 'sequence', but got " + value.getClass().getSimpleName());
      default:
        throw new IllegalArgumentException("Unknown field id " + setField);
    }
  }

  @Override
  protected Object standardSchemeReadValue(org.apache.thrift.protocol.TProtocol iprot, org.apache.thrift.protocol.TField field) throws org.apache.thrift.TException {
    _Fields setField = _Fields.findByThriftId(field.id);
    if (setField != null) {
      switch (setField) {
        case SNOWFLAKE:
          if (field.type == SNOWFLAKE_FIELD_DESC.type) {
            SnowflakeSchema snowflake;
            snowflake = new SnowflakeSchema();
            snowflake.read(iprot);
            return snowflake;
          } else {
            org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
            return null;
          }
        case CONSTANT:
          if (field.type == CONSTANT_FIELD_DESC.type) {
            ConstantSchema constant;
            constant = new ConstantSchema();
            constant.read(iprot);
            return constant;
          } else {
            org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
            return null;
          }
        case SEQUENCE:
          if (field.type == SEQUENCE_FIELD_DESC.type) {
            SequenceSchema sequence;
            sequence = new SequenceSchema();
            sequence.read(iprot);
            return sequence;
          } else {
            org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
            return null;
          }
        default:
          throw new IllegalStateException("setField wasn't null, but didn't match any of the case statements!");
      }
    } else {
      org.apache.thrift.protocol.TProtocolUtil.skip(iprot, field.type);
      return null;
    }
  }

  @Override
  protected void standardSchemeWriteValue(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
    switch (setField_) {
      case SNOWFLAKE:
        SnowflakeSchema snowflake = (SnowflakeSchema)value_;
        snowflake.write(oprot);
        return;
      case CONSTANT:
        ConstantSchema constant = (ConstantSchema)value_;
        constant.write(oprot);
        return;
      case SEQUENCE:
        SequenceSchema sequence = (SequenceSchema)value_;
        sequence.write(oprot);
        return;
      default:
        throw new IllegalStateException("Cannot write union with unknown field " + setField_);
    }
  }

  @Override
  protected Object tupleSchemeReadValue(org.apache.thrift.protocol.TProtocol iprot, short fieldID) throws org.apache.thrift.TException {
    _Fields setField = _Fields.findByThriftId(fieldID);
    if (setField != null) {
      switch (setField) {
        case SNOWFLAKE:
          SnowflakeSchema snowflake;
          snowflake = new SnowflakeSchema();
          snowflake.read(iprot);
          return snowflake;
        case CONSTANT:
          ConstantSchema constant;
          constant = new ConstantSchema();
          constant.read(iprot);
          return constant;
        case SEQUENCE:
          SequenceSchema sequence;
          sequence = new SequenceSchema();
          sequence.read(iprot);
          return sequence;
        default:
          throw new IllegalStateException("setField wasn't null, but didn't match any of the case statements!");
      }
    } else {
      throw new TProtocolException("Couldn't find a field with field id " + fieldID);
    }
  }

  @Override
  protected void tupleSchemeWriteValue(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException {
    switch (setField_) {
      case SNOWFLAKE:
        SnowflakeSchema snowflake = (SnowflakeSchema)value_;
        snowflake.write(oprot);
        return;
      case CONSTANT:
        ConstantSchema constant = (ConstantSchema)value_;
        constant.write(oprot);
        return;
      case SEQUENCE:
        SequenceSchema sequence = (SequenceSchema)value_;
        sequence.write(oprot);
        return;
      default:
        throw new IllegalStateException("Cannot write union with unknown field " + setField_);
    }
  }

  @Override
  protected org.apache.thrift.protocol.TField getFieldDesc(_Fields setField) {
    switch (setField) {
      case SNOWFLAKE:
        return SNOWFLAKE_FIELD_DESC;
      case CONSTANT:
        return CONSTANT_FIELD_DESC;
      case SEQUENCE:
        return SEQUENCE_FIELD_DESC;
      default:
        throw new IllegalArgumentException("Unknown field id " + setField);
    }
  }

  @Override
  protected org.apache.thrift.protocol.TStruct getStructDesc() {
    return STRUCT_DESC;
  }

  @Override
  protected _Fields enumForId(short id) {
    return _Fields.findByThriftIdOrThrow(id);
  }

  public _Fields[] getFields() {
    return _Fields.values();
  }

  public Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> getFieldMetaData() {
    return metaDataMap;
  }

  public _Fields fieldForId(int fieldId) {
    return _Fields.findByThriftId(fieldId);
  }


  public SnowflakeSchema getSnowflake() {
    if (getSetField() == _Fields.SNOWFLAKE) {
      return (SnowflakeSchema)getFieldValue();
    } else {
      throw new RuntimeException("Cannot get field 'snowflake' because union is currently set to " + getFieldDesc(getSetField()).name);
    }
  }

  public void setSnowflake(SnowflakeSchema value) {
    if (value == null) throw new NullPointerException();
    setField_ = _Fields.SNOWFLAKE;
    value_ = value;
  }

  public ConstantSchema getConstant() {
    if (getSetField() == _Fields.CONSTANT) {
      return (ConstantSchema)getFieldValue();
    } else {
      throw new RuntimeException("Cannot get field 'constant' because union is currently set to " + getFieldDesc(getSetField()).name);
    }
  }

  public void setConstant(ConstantSchema value) {
    if (value == null) throw new NullPointerException();
    setField_ = _Fields.CONSTANT;
    value_ = value;
  }

  public SequenceSchema getSequence() {
    if (getSetField() == _Fields.SEQUENCE) {
      return (SequenceSchema)getFieldValue();
    } else {
      throw new RuntimeException("Cannot get field 'sequence' because union is currently set to " + getFieldDesc(getSetField()).name);
    }
  }

  public void setSequence(SequenceSchema value) {
    if (value == null) throw new NullPointerException();
    setField_ = _Fields.SEQUENCE;
    value_ = value;
  }

  public boolean isSetSnowflake() {
    return setField_ == _Fields.SNOWFLAKE;
  }


  public boolean isSetConstant() {
    return setField_ == _Fields.CONSTANT;
  }


  public boolean isSetSequence() {
    return setField_ == _Fields.SEQUENCE;
  }


  public boolean equals(Object other) {
    if (other instanceof GenerationSchema) {
      return equals((GenerationSchema)other);
    } else {
      return false;
    }
  }

  public boolean equals(GenerationSchema other) {
    return other != null && getSetField() == other.getSetField() && getFieldValue().equals(other.getFieldValue());
  }

  @Override
  public int compareTo(GenerationSchema other) {
    int lastComparison = org.apache.thrift.TBaseHelper.compareTo(getSetField(), other.getSetField());
    if (lastComparison == 0) {
      return org.apache.thrift.TBaseHelper.compareTo(getFieldValue(), other.getFieldValue());
    }
    return lastComparison;
  }


  @Override
  public int hashCode() {
    List list = new ArrayList();
    list.add(this.getClass().getName());
    org.apache.thrift.TFieldIdEnum setField = getSetField();
    if (setField != null) {
      list.add(setField.getThriftFieldId());
      Object value = getFieldValue();
      if (value instanceof org.apache.thrift.TEnum) {
        list.add(((org.apache.thrift.TEnum)getFieldValue()).getValue());
      } else {
        list.add(value);
      }
    }
    return list.hashCode();
  }
  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 {
      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);
    }
  }


}