http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/7395b9cb/distribution-hadoop2/src/main/scripts/interface/gen-java/org/apache/blur/thrift/generated/BlurException.java
----------------------------------------------------------------------
diff --git
a/distribution-hadoop2/src/main/scripts/interface/gen-java/org/apache/blur/thrift/generated/BlurException.java
b/distribution-hadoop2/src/main/scripts/interface/gen-java/org/apache/blur/thrift/generated/BlurException.java
new file mode 100644
index 0000000..d4d120d
--- /dev/null
+++
b/distribution-hadoop2/src/main/scripts/interface/gen-java/org/apache/blur/thrift/generated/BlurException.java
@@ -0,0 +1,649 @@
+/**
+ * Autogenerated by Thrift Compiler (0.9.0)
+ *
+ * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
+ * @generated
+ */
+package org.apache.blur.thrift.generated;
+
+/**
+ * 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.
+ */
+
+
+
+import org.apache.blur.thirdparty.thrift_0_9_0.scheme.IScheme;
+import org.apache.blur.thirdparty.thrift_0_9_0.scheme.SchemeFactory;
+import org.apache.blur.thirdparty.thrift_0_9_0.scheme.StandardScheme;
+
+import org.apache.blur.thirdparty.thrift_0_9_0.scheme.TupleScheme;
+import org.apache.blur.thirdparty.thrift_0_9_0.protocol.TTupleProtocol;
+import org.apache.blur.thirdparty.thrift_0_9_0.protocol.TProtocolException;
+import org.apache.blur.thirdparty.thrift_0_9_0.EncodingUtils;
+import org.apache.blur.thirdparty.thrift_0_9_0.TException;
+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;
+
+/**
+ * BlurException that carries a message plus the original stack
+ * trace (if any).
+ */
+public class BlurException extends TException implements
org.apache.blur.thirdparty.thrift_0_9_0.TBase<BlurException,
BlurException._Fields>, java.io.Serializable, Cloneable {
+ private static final
org.apache.blur.thirdparty.thrift_0_9_0.protocol.TStruct STRUCT_DESC = new
org.apache.blur.thirdparty.thrift_0_9_0.protocol.TStruct("BlurException");
+
+ private static final org.apache.blur.thirdparty.thrift_0_9_0.protocol.TField
MESSAGE_FIELD_DESC = new
org.apache.blur.thirdparty.thrift_0_9_0.protocol.TField("message",
org.apache.blur.thirdparty.thrift_0_9_0.protocol.TType.STRING, (short)1);
+ private static final org.apache.blur.thirdparty.thrift_0_9_0.protocol.TField
STACK_TRACE_STR_FIELD_DESC = new
org.apache.blur.thirdparty.thrift_0_9_0.protocol.TField("stackTraceStr",
org.apache.blur.thirdparty.thrift_0_9_0.protocol.TType.STRING, (short)2);
+ private static final org.apache.blur.thirdparty.thrift_0_9_0.protocol.TField
ERROR_TYPE_FIELD_DESC = new
org.apache.blur.thirdparty.thrift_0_9_0.protocol.TField("errorType",
org.apache.blur.thirdparty.thrift_0_9_0.protocol.TType.I32, (short)3);
+
+ private static final Map<Class<? extends IScheme>, SchemeFactory> schemes =
new HashMap<Class<? extends IScheme>, SchemeFactory>();
+ static {
+ schemes.put(StandardScheme.class, new
BlurExceptionStandardSchemeFactory());
+ schemes.put(TupleScheme.class, new BlurExceptionTupleSchemeFactory());
+ }
+
+ /**
+ * The message in the exception.
+ */
+ public String message; // required
+ /**
+ * The original stack trace (if any).
+ */
+ public String stackTraceStr; // required
+ /**
+ *
+ * @see ErrorType
+ */
+ public ErrorType errorType; // required
+
+ /** The set of fields this struct contains, along with convenience methods
for finding and manipulating them. */
+ public enum _Fields implements
org.apache.blur.thirdparty.thrift_0_9_0.TFieldIdEnum {
+ /**
+ * The message in the exception.
+ */
+ MESSAGE((short)1, "message"),
+ /**
+ * The original stack trace (if any).
+ */
+ STACK_TRACE_STR((short)2, "stackTraceStr"),
+ /**
+ *
+ * @see ErrorType
+ */
+ ERROR_TYPE((short)3, "errorType");
+
+ 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: // MESSAGE
+ return MESSAGE;
+ case 2: // STACK_TRACE_STR
+ return STACK_TRACE_STR;
+ case 3: // ERROR_TYPE
+ return ERROR_TYPE;
+ 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
+ public static final Map<_Fields,
org.apache.blur.thirdparty.thrift_0_9_0.meta_data.FieldMetaData> metaDataMap;
+ static {
+ Map<_Fields,
org.apache.blur.thirdparty.thrift_0_9_0.meta_data.FieldMetaData> tmpMap = new
EnumMap<_Fields,
org.apache.blur.thirdparty.thrift_0_9_0.meta_data.FieldMetaData>(_Fields.class);
+ tmpMap.put(_Fields.MESSAGE, new
org.apache.blur.thirdparty.thrift_0_9_0.meta_data.FieldMetaData("message",
org.apache.blur.thirdparty.thrift_0_9_0.TFieldRequirementType.DEFAULT,
+ new
org.apache.blur.thirdparty.thrift_0_9_0.meta_data.FieldValueMetaData(org.apache.blur.thirdparty.thrift_0_9_0.protocol.TType.STRING)));
+ tmpMap.put(_Fields.STACK_TRACE_STR, new
org.apache.blur.thirdparty.thrift_0_9_0.meta_data.FieldMetaData("stackTraceStr",
org.apache.blur.thirdparty.thrift_0_9_0.TFieldRequirementType.DEFAULT,
+ new
org.apache.blur.thirdparty.thrift_0_9_0.meta_data.FieldValueMetaData(org.apache.blur.thirdparty.thrift_0_9_0.protocol.TType.STRING)));
+ tmpMap.put(_Fields.ERROR_TYPE, new
org.apache.blur.thirdparty.thrift_0_9_0.meta_data.FieldMetaData("errorType",
org.apache.blur.thirdparty.thrift_0_9_0.TFieldRequirementType.DEFAULT,
+ new
org.apache.blur.thirdparty.thrift_0_9_0.meta_data.EnumMetaData(org.apache.blur.thirdparty.thrift_0_9_0.protocol.TType.ENUM,
ErrorType.class)));
+ metaDataMap = Collections.unmodifiableMap(tmpMap);
+
org.apache.blur.thirdparty.thrift_0_9_0.meta_data.FieldMetaData.addStructMetaDataMap(BlurException.class,
metaDataMap);
+ }
+
+ public BlurException() {
+ }
+
+ public BlurException(
+ String message,
+ String stackTraceStr,
+ ErrorType errorType)
+ {
+ this();
+ this.message = message;
+ this.stackTraceStr = stackTraceStr;
+ this.errorType = errorType;
+ }
+
+ /**
+ * Performs a deep copy on <i>other</i>.
+ */
+ public BlurException(BlurException other) {
+ if (other.isSetMessage()) {
+ this.message = other.message;
+ }
+ if (other.isSetStackTraceStr()) {
+ this.stackTraceStr = other.stackTraceStr;
+ }
+ if (other.isSetErrorType()) {
+ this.errorType = other.errorType;
+ }
+ }
+
+ public BlurException deepCopy() {
+ return new BlurException(this);
+ }
+
+ @Override
+ public void clear() {
+ this.message = null;
+ this.stackTraceStr = null;
+ this.errorType = null;
+ }
+
+ /**
+ * The message in the exception.
+ */
+ public String getMessage() {
+ return this.message;
+ }
+
+ /**
+ * The message in the exception.
+ */
+ public BlurException setMessage(String message) {
+ this.message = message;
+ return this;
+ }
+
+ public void unsetMessage() {
+ this.message = null;
+ }
+
+ /** Returns true if field message is set (has been assigned a value) and
false otherwise */
+ public boolean isSetMessage() {
+ return this.message != null;
+ }
+
+ public void setMessageIsSet(boolean value) {
+ if (!value) {
+ this.message = null;
+ }
+ }
+
+ /**
+ * The original stack trace (if any).
+ */
+ public String getStackTraceStr() {
+ return this.stackTraceStr;
+ }
+
+ /**
+ * The original stack trace (if any).
+ */
+ public BlurException setStackTraceStr(String stackTraceStr) {
+ this.stackTraceStr = stackTraceStr;
+ return this;
+ }
+
+ public void unsetStackTraceStr() {
+ this.stackTraceStr = null;
+ }
+
+ /** Returns true if field stackTraceStr is set (has been assigned a value)
and false otherwise */
+ public boolean isSetStackTraceStr() {
+ return this.stackTraceStr != null;
+ }
+
+ public void setStackTraceStrIsSet(boolean value) {
+ if (!value) {
+ this.stackTraceStr = null;
+ }
+ }
+
+ /**
+ *
+ * @see ErrorType
+ */
+ public ErrorType getErrorType() {
+ return this.errorType;
+ }
+
+ /**
+ *
+ * @see ErrorType
+ */
+ public BlurException setErrorType(ErrorType errorType) {
+ this.errorType = errorType;
+ return this;
+ }
+
+ public void unsetErrorType() {
+ this.errorType = null;
+ }
+
+ /** Returns true if field errorType is set (has been assigned a value) and
false otherwise */
+ public boolean isSetErrorType() {
+ return this.errorType != null;
+ }
+
+ public void setErrorTypeIsSet(boolean value) {
+ if (!value) {
+ this.errorType = null;
+ }
+ }
+
+ public void setFieldValue(_Fields field, Object value) {
+ switch (field) {
+ case MESSAGE:
+ if (value == null) {
+ unsetMessage();
+ } else {
+ setMessage((String)value);
+ }
+ break;
+
+ case STACK_TRACE_STR:
+ if (value == null) {
+ unsetStackTraceStr();
+ } else {
+ setStackTraceStr((String)value);
+ }
+ break;
+
+ case ERROR_TYPE:
+ if (value == null) {
+ unsetErrorType();
+ } else {
+ setErrorType((ErrorType)value);
+ }
+ break;
+
+ }
+ }
+
+ public Object getFieldValue(_Fields field) {
+ switch (field) {
+ case MESSAGE:
+ return getMessage();
+
+ case STACK_TRACE_STR:
+ return getStackTraceStr();
+
+ case ERROR_TYPE:
+ return getErrorType();
+
+ }
+ 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 MESSAGE:
+ return isSetMessage();
+ case STACK_TRACE_STR:
+ return isSetStackTraceStr();
+ case ERROR_TYPE:
+ return isSetErrorType();
+ }
+ throw new IllegalStateException();
+ }
+
+ @Override
+ public boolean equals(Object that) {
+ if (that == null)
+ return false;
+ if (that instanceof BlurException)
+ return this.equals((BlurException)that);
+ return false;
+ }
+
+ public boolean equals(BlurException that) {
+ if (that == null)
+ return false;
+
+ boolean this_present_message = true && this.isSetMessage();
+ boolean that_present_message = true && that.isSetMessage();
+ if (this_present_message || that_present_message) {
+ if (!(this_present_message && that_present_message))
+ return false;
+ if (!this.message.equals(that.message))
+ return false;
+ }
+
+ boolean this_present_stackTraceStr = true && this.isSetStackTraceStr();
+ boolean that_present_stackTraceStr = true && that.isSetStackTraceStr();
+ if (this_present_stackTraceStr || that_present_stackTraceStr) {
+ if (!(this_present_stackTraceStr && that_present_stackTraceStr))
+ return false;
+ if (!this.stackTraceStr.equals(that.stackTraceStr))
+ return false;
+ }
+
+ boolean this_present_errorType = true && this.isSetErrorType();
+ boolean that_present_errorType = true && that.isSetErrorType();
+ if (this_present_errorType || that_present_errorType) {
+ if (!(this_present_errorType && that_present_errorType))
+ return false;
+ if (!this.errorType.equals(that.errorType))
+ return false;
+ }
+
+ return true;
+ }
+
+ @Override
+ public int hashCode() {
+ return 0;
+ }
+
+ public int compareTo(BlurException other) {
+ if (!getClass().equals(other.getClass())) {
+ return getClass().getName().compareTo(other.getClass().getName());
+ }
+
+ int lastComparison = 0;
+ BlurException typedOther = (BlurException)other;
+
+ lastComparison =
Boolean.valueOf(isSetMessage()).compareTo(typedOther.isSetMessage());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetMessage()) {
+ lastComparison =
org.apache.blur.thirdparty.thrift_0_9_0.TBaseHelper.compareTo(this.message,
typedOther.message);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ lastComparison =
Boolean.valueOf(isSetStackTraceStr()).compareTo(typedOther.isSetStackTraceStr());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetStackTraceStr()) {
+ lastComparison =
org.apache.blur.thirdparty.thrift_0_9_0.TBaseHelper.compareTo(this.stackTraceStr,
typedOther.stackTraceStr);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ lastComparison =
Boolean.valueOf(isSetErrorType()).compareTo(typedOther.isSetErrorType());
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ if (isSetErrorType()) {
+ lastComparison =
org.apache.blur.thirdparty.thrift_0_9_0.TBaseHelper.compareTo(this.errorType,
typedOther.errorType);
+ if (lastComparison != 0) {
+ return lastComparison;
+ }
+ }
+ return 0;
+ }
+
+ public _Fields fieldForId(int fieldId) {
+ return _Fields.findByThriftId(fieldId);
+ }
+
+ public void read(org.apache.blur.thirdparty.thrift_0_9_0.protocol.TProtocol
iprot) throws org.apache.blur.thirdparty.thrift_0_9_0.TException {
+ schemes.get(iprot.getScheme()).getScheme().read(iprot, this);
+ }
+
+ public void write(org.apache.blur.thirdparty.thrift_0_9_0.protocol.TProtocol
oprot) throws org.apache.blur.thirdparty.thrift_0_9_0.TException {
+ schemes.get(oprot.getScheme()).getScheme().write(oprot, this);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder("BlurException(");
+ boolean first = true;
+
+ sb.append("message:");
+ if (this.message == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.message);
+ }
+ first = false;
+ if (!first) sb.append(", ");
+ sb.append("stackTraceStr:");
+ if (this.stackTraceStr == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.stackTraceStr);
+ }
+ first = false;
+ if (!first) sb.append(", ");
+ sb.append("errorType:");
+ if (this.errorType == null) {
+ sb.append("null");
+ } else {
+ sb.append(this.errorType);
+ }
+ first = false;
+ sb.append(")");
+ return sb.toString();
+ }
+
+ public void validate() throws
org.apache.blur.thirdparty.thrift_0_9_0.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.blur.thirdparty.thrift_0_9_0.protocol.TCompactProtocol(new
org.apache.blur.thirdparty.thrift_0_9_0.transport.TIOStreamTransport(out)));
+ } catch (org.apache.blur.thirdparty.thrift_0_9_0.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.blur.thirdparty.thrift_0_9_0.protocol.TCompactProtocol(new
org.apache.blur.thirdparty.thrift_0_9_0.transport.TIOStreamTransport(in)));
+ } catch (org.apache.blur.thirdparty.thrift_0_9_0.TException te) {
+ throw new java.io.IOException(te);
+ }
+ }
+
+ private static class BlurExceptionStandardSchemeFactory implements
SchemeFactory {
+ public BlurExceptionStandardScheme getScheme() {
+ return new BlurExceptionStandardScheme();
+ }
+ }
+
+ private static class BlurExceptionStandardScheme extends
StandardScheme<BlurException> {
+
+ public void
read(org.apache.blur.thirdparty.thrift_0_9_0.protocol.TProtocol iprot,
BlurException struct) throws org.apache.blur.thirdparty.thrift_0_9_0.TException
{
+ org.apache.blur.thirdparty.thrift_0_9_0.protocol.TField schemeField;
+ iprot.readStructBegin();
+ while (true)
+ {
+ schemeField = iprot.readFieldBegin();
+ if (schemeField.type ==
org.apache.blur.thirdparty.thrift_0_9_0.protocol.TType.STOP) {
+ break;
+ }
+ switch (schemeField.id) {
+ case 1: // MESSAGE
+ if (schemeField.type ==
org.apache.blur.thirdparty.thrift_0_9_0.protocol.TType.STRING) {
+ struct.message = iprot.readString();
+ struct.setMessageIsSet(true);
+ } else {
+
org.apache.blur.thirdparty.thrift_0_9_0.protocol.TProtocolUtil.skip(iprot,
schemeField.type);
+ }
+ break;
+ case 2: // STACK_TRACE_STR
+ if (schemeField.type ==
org.apache.blur.thirdparty.thrift_0_9_0.protocol.TType.STRING) {
+ struct.stackTraceStr = iprot.readString();
+ struct.setStackTraceStrIsSet(true);
+ } else {
+
org.apache.blur.thirdparty.thrift_0_9_0.protocol.TProtocolUtil.skip(iprot,
schemeField.type);
+ }
+ break;
+ case 3: // ERROR_TYPE
+ if (schemeField.type ==
org.apache.blur.thirdparty.thrift_0_9_0.protocol.TType.I32) {
+ struct.errorType = ErrorType.findByValue(iprot.readI32());
+ struct.setErrorTypeIsSet(true);
+ } else {
+
org.apache.blur.thirdparty.thrift_0_9_0.protocol.TProtocolUtil.skip(iprot,
schemeField.type);
+ }
+ break;
+ default:
+
org.apache.blur.thirdparty.thrift_0_9_0.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.blur.thirdparty.thrift_0_9_0.protocol.TProtocol oprot,
BlurException struct) throws org.apache.blur.thirdparty.thrift_0_9_0.TException
{
+ struct.validate();
+
+ oprot.writeStructBegin(STRUCT_DESC);
+ if (struct.message != null) {
+ oprot.writeFieldBegin(MESSAGE_FIELD_DESC);
+ oprot.writeString(struct.message);
+ oprot.writeFieldEnd();
+ }
+ if (struct.stackTraceStr != null) {
+ oprot.writeFieldBegin(STACK_TRACE_STR_FIELD_DESC);
+ oprot.writeString(struct.stackTraceStr);
+ oprot.writeFieldEnd();
+ }
+ if (struct.errorType != null) {
+ oprot.writeFieldBegin(ERROR_TYPE_FIELD_DESC);
+ oprot.writeI32(struct.errorType.getValue());
+ oprot.writeFieldEnd();
+ }
+ oprot.writeFieldStop();
+ oprot.writeStructEnd();
+ }
+
+ }
+
+ private static class BlurExceptionTupleSchemeFactory implements
SchemeFactory {
+ public BlurExceptionTupleScheme getScheme() {
+ return new BlurExceptionTupleScheme();
+ }
+ }
+
+ private static class BlurExceptionTupleScheme extends
TupleScheme<BlurException> {
+
+ @Override
+ public void
write(org.apache.blur.thirdparty.thrift_0_9_0.protocol.TProtocol prot,
BlurException struct) throws org.apache.blur.thirdparty.thrift_0_9_0.TException
{
+ TTupleProtocol oprot = (TTupleProtocol) prot;
+ BitSet optionals = new BitSet();
+ if (struct.isSetMessage()) {
+ optionals.set(0);
+ }
+ if (struct.isSetStackTraceStr()) {
+ optionals.set(1);
+ }
+ if (struct.isSetErrorType()) {
+ optionals.set(2);
+ }
+ oprot.writeBitSet(optionals, 3);
+ if (struct.isSetMessage()) {
+ oprot.writeString(struct.message);
+ }
+ if (struct.isSetStackTraceStr()) {
+ oprot.writeString(struct.stackTraceStr);
+ }
+ if (struct.isSetErrorType()) {
+ oprot.writeI32(struct.errorType.getValue());
+ }
+ }
+
+ @Override
+ public void
read(org.apache.blur.thirdparty.thrift_0_9_0.protocol.TProtocol prot,
BlurException struct) throws org.apache.blur.thirdparty.thrift_0_9_0.TException
{
+ TTupleProtocol iprot = (TTupleProtocol) prot;
+ BitSet incoming = iprot.readBitSet(3);
+ if (incoming.get(0)) {
+ struct.message = iprot.readString();
+ struct.setMessageIsSet(true);
+ }
+ if (incoming.get(1)) {
+ struct.stackTraceStr = iprot.readString();
+ struct.setStackTraceStrIsSet(true);
+ }
+ if (incoming.get(2)) {
+ struct.errorType = ErrorType.findByValue(iprot.readI32());
+ struct.setErrorTypeIsSet(true);
+ }
+ }
+ }
+
+}
+