http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/0996b6a1/src/blur-thrift/src/main/java/org/apache/blur/thrift/generated/Blur.java ---------------------------------------------------------------------- diff --git a/src/blur-thrift/src/main/java/org/apache/blur/thrift/generated/Blur.java b/src/blur-thrift/src/main/java/org/apache/blur/thrift/generated/Blur.java index 5ed500f..19b75db 100644 --- a/src/blur-thrift/src/main/java/org/apache/blur/thrift/generated/Blur.java +++ b/src/blur-thrift/src/main/java/org/apache/blur/thrift/generated/Blur.java @@ -141,8 +141,6 @@ public class Blur { public Schema schema(String table) throws BlurException, org.apache.thrift.TException; - public TableStats getTableStats(String table) throws BlurException, org.apache.thrift.TException; - public TableStats tableStats(String table) throws BlurException, org.apache.thrift.TException; public void createTable(TableDescriptor tableDescriptor) throws BlurException, org.apache.thrift.TException; @@ -187,8 +185,6 @@ public class Blur { public void schema(String table, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.schema_call> resultHandler) throws org.apache.thrift.TException; - public void getTableStats(String table, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.getTableStats_call> resultHandler) throws org.apache.thrift.TException; - public void tableStats(String table, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.tableStats_call> resultHandler) throws org.apache.thrift.TException; public void createTable(TableDescriptor tableDescriptor, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.createTable_call> resultHandler) throws org.apache.thrift.TException; @@ -535,32 +531,6 @@ public class Blur { throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "schema failed: unknown result"); } - public TableStats getTableStats(String table) throws BlurException, org.apache.thrift.TException - { - send_getTableStats(table); - return recv_getTableStats(); - } - - public void send_getTableStats(String table) throws org.apache.thrift.TException - { - getTableStats_args args = new getTableStats_args(); - args.setTable(table); - sendBase("getTableStats", args); - } - - public TableStats recv_getTableStats() throws BlurException, org.apache.thrift.TException - { - getTableStats_result result = new getTableStats_result(); - receiveBase(result, "getTableStats"); - if (result.isSetSuccess()) { - return result.success; - } - if (result.ex != null) { - throw result.ex; - } - throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getTableStats failed: unknown result"); - } - public TableStats tableStats(String table) throws BlurException, org.apache.thrift.TException { send_tableStats(table); @@ -1154,38 +1124,6 @@ public class Blur { } } - public void getTableStats(String table, org.apache.thrift.async.AsyncMethodCallback<getTableStats_call> resultHandler) throws org.apache.thrift.TException { - checkReady(); - getTableStats_call method_call = new getTableStats_call(table, resultHandler, this, ___protocolFactory, ___transport); - this.___currentMethod = method_call; - ___manager.call(method_call); - } - - public static class getTableStats_call extends org.apache.thrift.async.TAsyncMethodCall { - private String table; - public getTableStats_call(String table, org.apache.thrift.async.AsyncMethodCallback<getTableStats_call> resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException { - super(client, protocolFactory, transport, resultHandler, false); - this.table = table; - } - - public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { - prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getTableStats", org.apache.thrift.protocol.TMessageType.CALL, 0)); - getTableStats_args args = new getTableStats_args(); - args.setTable(table); - args.write(prot); - prot.writeMessageEnd(); - } - - public TableStats getResult() throws BlurException, org.apache.thrift.TException { - if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) { - throw new IllegalStateException("Method call not finished!"); - } - org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array()); - org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport); - return (new Client(prot)).recv_getTableStats(); - } - } - public void tableStats(String table, org.apache.thrift.async.AsyncMethodCallback<tableStats_call> resultHandler) throws org.apache.thrift.TException { checkReady(); tableStats_call method_call = new tableStats_call(table, resultHandler, this, ___protocolFactory, ___transport); @@ -1470,7 +1408,6 @@ public class Blur { processMap.put("queryStatusIdList", new queryStatusIdList()); processMap.put("queryStatusById", new queryStatusById()); processMap.put("schema", new schema()); - processMap.put("getTableStats", new getTableStats()); processMap.put("tableStats", new tableStats()); processMap.put("createTable", new createTable()); processMap.put("enableTable", new enableTable()); @@ -1770,30 +1707,6 @@ public class Blur { } } - public static class getTableStats<I extends Iface> extends org.apache.thrift.ProcessFunction<I, getTableStats_args> { - public getTableStats() { - super("getTableStats"); - } - - public getTableStats_args getEmptyArgsInstance() { - return new getTableStats_args(); - } - - protected boolean isOneway() { - return false; - } - - public getTableStats_result getResult(I iface, getTableStats_args args) throws org.apache.thrift.TException { - getTableStats_result result = new getTableStats_result(); - try { - result.success = iface.getTableStats(args.table); - } catch (BlurException ex) { - result.ex = ex; - } - return result; - } - } - public static class tableStats<I extends Iface> extends org.apache.thrift.ProcessFunction<I, tableStats_args> { public tableStats() { super("tableStats"); @@ -11925,821 +11838,6 @@ public class Blur { } - public static class getTableStats_args implements org.apache.thrift.TBase<getTableStats_args, getTableStats_args._Fields>, java.io.Serializable, Cloneable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTableStats_args"); - - private static final org.apache.thrift.protocol.TField TABLE_FIELD_DESC = new org.apache.thrift.protocol.TField("table", org.apache.thrift.protocol.TType.STRING, (short)1); - - private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>(); - static { - schemes.put(StandardScheme.class, new getTableStats_argsStandardSchemeFactory()); - schemes.put(TupleScheme.class, new getTableStats_argsTupleSchemeFactory()); - } - - public String table; // 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 { - TABLE((short)1, "table"); - - 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: // TABLE - return TABLE; - 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.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.TABLE, new org.apache.thrift.meta_data.FieldMetaData("table", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - metaDataMap = Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTableStats_args.class, metaDataMap); - } - - public getTableStats_args() { - } - - public getTableStats_args( - String table) - { - this(); - this.table = table; - } - - /** - * Performs a deep copy on <i>other</i>. - */ - public getTableStats_args(getTableStats_args other) { - if (other.isSetTable()) { - this.table = other.table; - } - } - - public getTableStats_args deepCopy() { - return new getTableStats_args(this); - } - - @Override - public void clear() { - this.table = null; - } - - public String getTable() { - return this.table; - } - - public getTableStats_args setTable(String table) { - this.table = table; - return this; - } - - public void unsetTable() { - this.table = null; - } - - /** Returns true if field table is set (has been assigned a value) and false otherwise */ - public boolean isSetTable() { - return this.table != null; - } - - public void setTableIsSet(boolean value) { - if (!value) { - this.table = null; - } - } - - public void setFieldValue(_Fields field, Object value) { - switch (field) { - case TABLE: - if (value == null) { - unsetTable(); - } else { - setTable((String)value); - } - break; - - } - } - - public Object getFieldValue(_Fields field) { - switch (field) { - case TABLE: - return getTable(); - - } - 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 TABLE: - return isSetTable(); - } - throw new IllegalStateException(); - } - - @Override - public boolean equals(Object that) { - if (that == null) - return false; - if (that instanceof getTableStats_args) - return this.equals((getTableStats_args)that); - return false; - } - - public boolean equals(getTableStats_args that) { - if (that == null) - return false; - - boolean this_present_table = true && this.isSetTable(); - boolean that_present_table = true && that.isSetTable(); - if (this_present_table || that_present_table) { - if (!(this_present_table && that_present_table)) - return false; - if (!this.table.equals(that.table)) - return false; - } - - return true; - } - - @Override - public int hashCode() { - return 0; - } - - public int compareTo(getTableStats_args other) { - if (!getClass().equals(other.getClass())) { - return getClass().getName().compareTo(other.getClass().getName()); - } - - int lastComparison = 0; - getTableStats_args typedOther = (getTableStats_args)other; - - lastComparison = Boolean.valueOf(isSetTable()).compareTo(typedOther.isSetTable()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetTable()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.table, typedOther.table); - 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 { - schemes.get(iprot.getScheme()).getScheme().read(iprot, this); - } - - public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { - schemes.get(oprot.getScheme()).getScheme().write(oprot, this); - } - - @Override - public String toString() { - StringBuilder sb = new StringBuilder("getTableStats_args("); - boolean first = true; - - sb.append("table:"); - if (this.table == null) { - sb.append("null"); - } else { - sb.append(this.table); - } - 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, 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); - } - } - - private static class getTableStats_argsStandardSchemeFactory implements SchemeFactory { - public getTableStats_argsStandardScheme getScheme() { - return new getTableStats_argsStandardScheme(); - } - } - - private static class getTableStats_argsStandardScheme extends StandardScheme<getTableStats_args> { - - public void read(org.apache.thrift.protocol.TProtocol iprot, getTableStats_args 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: // TABLE - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.table = iprot.readString(); - struct.setTableIsSet(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(); - - // check for required fields of primitive type, which can't be checked in the validate method - struct.validate(); - } - - public void write(org.apache.thrift.protocol.TProtocol oprot, getTableStats_args struct) throws org.apache.thrift.TException { - struct.validate(); - - oprot.writeStructBegin(STRUCT_DESC); - if (struct.table != null) { - oprot.writeFieldBegin(TABLE_FIELD_DESC); - oprot.writeString(struct.table); - oprot.writeFieldEnd(); - } - oprot.writeFieldStop(); - oprot.writeStructEnd(); - } - - } - - private static class getTableStats_argsTupleSchemeFactory implements SchemeFactory { - public getTableStats_argsTupleScheme getScheme() { - return new getTableStats_argsTupleScheme(); - } - } - - private static class getTableStats_argsTupleScheme extends TupleScheme<getTableStats_args> { - - @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getTableStats_args struct) throws org.apache.thrift.TException { - TTupleProtocol oprot = (TTupleProtocol) prot; - BitSet optionals = new BitSet(); - if (struct.isSetTable()) { - optionals.set(0); - } - oprot.writeBitSet(optionals, 1); - if (struct.isSetTable()) { - oprot.writeString(struct.table); - } - } - - @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getTableStats_args struct) throws org.apache.thrift.TException { - TTupleProtocol iprot = (TTupleProtocol) prot; - BitSet incoming = iprot.readBitSet(1); - if (incoming.get(0)) { - struct.table = iprot.readString(); - struct.setTableIsSet(true); - } - } - } - - } - - public static class getTableStats_result implements org.apache.thrift.TBase<getTableStats_result, getTableStats_result._Fields>, java.io.Serializable, Cloneable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getTableStats_result"); - - private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.STRUCT, (short)0); - private static final org.apache.thrift.protocol.TField EX_FIELD_DESC = new org.apache.thrift.protocol.TField("ex", org.apache.thrift.protocol.TType.STRUCT, (short)1); - - private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>(); - static { - schemes.put(StandardScheme.class, new getTableStats_resultStandardSchemeFactory()); - schemes.put(TupleScheme.class, new getTableStats_resultTupleSchemeFactory()); - } - - public TableStats success; // required - public BlurException ex; // 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 { - SUCCESS((short)0, "success"), - EX((short)1, "ex"); - - 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 0: // SUCCESS - return SUCCESS; - case 1: // EX - return EX; - 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.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.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, TableStats.class))); - tmpMap.put(_Fields.EX, new org.apache.thrift.meta_data.FieldMetaData("ex", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT))); - metaDataMap = Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getTableStats_result.class, metaDataMap); - } - - public getTableStats_result() { - } - - public getTableStats_result( - TableStats success, - BlurException ex) - { - this(); - this.success = success; - this.ex = ex; - } - - /** - * Performs a deep copy on <i>other</i>. - */ - public getTableStats_result(getTableStats_result other) { - if (other.isSetSuccess()) { - this.success = new TableStats(other.success); - } - if (other.isSetEx()) { - this.ex = new BlurException(other.ex); - } - } - - public getTableStats_result deepCopy() { - return new getTableStats_result(this); - } - - @Override - public void clear() { - this.success = null; - this.ex = null; - } - - public TableStats getSuccess() { - return this.success; - } - - public getTableStats_result setSuccess(TableStats success) { - this.success = success; - return this; - } - - public void unsetSuccess() { - this.success = null; - } - - /** Returns true if field success is set (has been assigned a value) and false otherwise */ - public boolean isSetSuccess() { - return this.success != null; - } - - public void setSuccessIsSet(boolean value) { - if (!value) { - this.success = null; - } - } - - public BlurException getEx() { - return this.ex; - } - - public getTableStats_result setEx(BlurException ex) { - this.ex = ex; - return this; - } - - public void unsetEx() { - this.ex = null; - } - - /** Returns true if field ex is set (has been assigned a value) and false otherwise */ - public boolean isSetEx() { - return this.ex != null; - } - - public void setExIsSet(boolean value) { - if (!value) { - this.ex = null; - } - } - - public void setFieldValue(_Fields field, Object value) { - switch (field) { - case SUCCESS: - if (value == null) { - unsetSuccess(); - } else { - setSuccess((TableStats)value); - } - break; - - case EX: - if (value == null) { - unsetEx(); - } else { - setEx((BlurException)value); - } - break; - - } - } - - public Object getFieldValue(_Fields field) { - switch (field) { - case SUCCESS: - return getSuccess(); - - case EX: - return getEx(); - - } - 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 SUCCESS: - return isSetSuccess(); - case EX: - return isSetEx(); - } - throw new IllegalStateException(); - } - - @Override - public boolean equals(Object that) { - if (that == null) - return false; - if (that instanceof getTableStats_result) - return this.equals((getTableStats_result)that); - return false; - } - - public boolean equals(getTableStats_result that) { - if (that == null) - return false; - - boolean this_present_success = true && this.isSetSuccess(); - boolean that_present_success = true && that.isSetSuccess(); - if (this_present_success || that_present_success) { - if (!(this_present_success && that_present_success)) - return false; - if (!this.success.equals(that.success)) - return false; - } - - boolean this_present_ex = true && this.isSetEx(); - boolean that_present_ex = true && that.isSetEx(); - if (this_present_ex || that_present_ex) { - if (!(this_present_ex && that_present_ex)) - return false; - if (!this.ex.equals(that.ex)) - return false; - } - - return true; - } - - @Override - public int hashCode() { - return 0; - } - - public int compareTo(getTableStats_result other) { - if (!getClass().equals(other.getClass())) { - return getClass().getName().compareTo(other.getClass().getName()); - } - - int lastComparison = 0; - getTableStats_result typedOther = (getTableStats_result)other; - - lastComparison = Boolean.valueOf(isSetSuccess()).compareTo(typedOther.isSetSuccess()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetSuccess()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.success, typedOther.success); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = Boolean.valueOf(isSetEx()).compareTo(typedOther.isSetEx()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex, typedOther.ex); - 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 { - schemes.get(iprot.getScheme()).getScheme().read(iprot, this); - } - - public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { - schemes.get(oprot.getScheme()).getScheme().write(oprot, this); - } - - @Override - public String toString() { - StringBuilder sb = new StringBuilder("getTableStats_result("); - boolean first = true; - - sb.append("success:"); - if (this.success == null) { - sb.append("null"); - } else { - sb.append(this.success); - } - first = false; - if (!first) sb.append(", "); - sb.append("ex:"); - if (this.ex == null) { - sb.append("null"); - } else { - sb.append(this.ex); - } - first = false; - sb.append(")"); - return sb.toString(); - } - - public void validate() throws org.apache.thrift.TException { - // check for required fields - // check for sub-struct validity - if (success != null) { - success.validate(); - } - } - - 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); - } - } - - private static class getTableStats_resultStandardSchemeFactory implements SchemeFactory { - public getTableStats_resultStandardScheme getScheme() { - return new getTableStats_resultStandardScheme(); - } - } - - private static class getTableStats_resultStandardScheme extends StandardScheme<getTableStats_result> { - - public void read(org.apache.thrift.protocol.TProtocol iprot, getTableStats_result 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 0: // SUCCESS - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.success = new TableStats(); - struct.success.read(iprot); - struct.setSuccessIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 1: // EX - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex = new BlurException(); - struct.ex.read(iprot); - struct.setExIsSet(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(); - - // check for required fields of primitive type, which can't be checked in the validate method - struct.validate(); - } - - public void write(org.apache.thrift.protocol.TProtocol oprot, getTableStats_result struct) throws org.apache.thrift.TException { - struct.validate(); - - oprot.writeStructBegin(STRUCT_DESC); - if (struct.success != null) { - oprot.writeFieldBegin(SUCCESS_FIELD_DESC); - struct.success.write(oprot); - oprot.writeFieldEnd(); - } - if (struct.ex != null) { - oprot.writeFieldBegin(EX_FIELD_DESC); - struct.ex.write(oprot); - oprot.writeFieldEnd(); - } - oprot.writeFieldStop(); - oprot.writeStructEnd(); - } - - } - - private static class getTableStats_resultTupleSchemeFactory implements SchemeFactory { - public getTableStats_resultTupleScheme getScheme() { - return new getTableStats_resultTupleScheme(); - } - } - - private static class getTableStats_resultTupleScheme extends TupleScheme<getTableStats_result> { - - @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getTableStats_result struct) throws org.apache.thrift.TException { - TTupleProtocol oprot = (TTupleProtocol) prot; - BitSet optionals = new BitSet(); - if (struct.isSetSuccess()) { - optionals.set(0); - } - if (struct.isSetEx()) { - optionals.set(1); - } - oprot.writeBitSet(optionals, 2); - if (struct.isSetSuccess()) { - struct.success.write(oprot); - } - if (struct.isSetEx()) { - struct.ex.write(oprot); - } - } - - @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getTableStats_result struct) throws org.apache.thrift.TException { - TTupleProtocol iprot = (TTupleProtocol) prot; - BitSet incoming = iprot.readBitSet(2); - if (incoming.get(0)) { - struct.success = new TableStats(); - struct.success.read(iprot); - struct.setSuccessIsSet(true); - } - if (incoming.get(1)) { - struct.ex = new BlurException(); - struct.ex.read(iprot); - struct.setExIsSet(true); - } - } - } - - } - public static class tableStats_args implements org.apache.thrift.TBase<tableStats_args, tableStats_args._Fields>, java.io.Serializable, Cloneable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("tableStats_args");
http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/0996b6a1/src/blur-thrift/src/main/java/org/apache/blur/thrift/generated/Facet.java ---------------------------------------------------------------------- diff --git a/src/blur-thrift/src/main/java/org/apache/blur/thrift/generated/Facet.java b/src/blur-thrift/src/main/java/org/apache/blur/thrift/generated/Facet.java deleted file mode 100644 index b294cc3..0000000 --- a/src/blur-thrift/src/main/java/org/apache/blur/thrift/generated/Facet.java +++ /dev/null @@ -1,508 +0,0 @@ -/** - * 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.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.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; - -/** - * Blur facet. - */ -public class Facet implements org.apache.thrift.TBase<Facet, Facet._Fields>, java.io.Serializable, Cloneable { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("Facet"); - - private static final org.apache.thrift.protocol.TField QUERY_STR_FIELD_DESC = new org.apache.thrift.protocol.TField("queryStr", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField MINIMUM_NUMBER_OF_BLUR_RESULTS_FIELD_DESC = new org.apache.thrift.protocol.TField("minimumNumberOfBlurResults", org.apache.thrift.protocol.TType.I64, (short)2); - - private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>(); - static { - schemes.put(StandardScheme.class, new FacetStandardSchemeFactory()); - schemes.put(TupleScheme.class, new FacetTupleSchemeFactory()); - } - - public String queryStr; // required - public long minimumNumberOfBlurResults; // 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 { - QUERY_STR((short)1, "queryStr"), - MINIMUM_NUMBER_OF_BLUR_RESULTS((short)2, "minimumNumberOfBlurResults"); - - 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: // QUERY_STR - return QUERY_STR; - case 2: // MINIMUM_NUMBER_OF_BLUR_RESULTS - return MINIMUM_NUMBER_OF_BLUR_RESULTS; - 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 - private static final int __MINIMUMNUMBEROFBLURRESULTS_ISSET_ID = 0; - private byte __isset_bitfield = 0; - 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.QUERY_STR, new org.apache.thrift.meta_data.FieldMetaData("queryStr", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.MINIMUM_NUMBER_OF_BLUR_RESULTS, new org.apache.thrift.meta_data.FieldMetaData("minimumNumberOfBlurResults", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); - metaDataMap = Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(Facet.class, metaDataMap); - } - - public Facet() { - this.minimumNumberOfBlurResults = 9223372036854775807L; - - } - - public Facet( - String queryStr, - long minimumNumberOfBlurResults) - { - this(); - this.queryStr = queryStr; - this.minimumNumberOfBlurResults = minimumNumberOfBlurResults; - setMinimumNumberOfBlurResultsIsSet(true); - } - - /** - * Performs a deep copy on <i>other</i>. - */ - public Facet(Facet other) { - __isset_bitfield = other.__isset_bitfield; - if (other.isSetQueryStr()) { - this.queryStr = other.queryStr; - } - this.minimumNumberOfBlurResults = other.minimumNumberOfBlurResults; - } - - public Facet deepCopy() { - return new Facet(this); - } - - @Override - public void clear() { - this.queryStr = null; - this.minimumNumberOfBlurResults = 9223372036854775807L; - - } - - public String getQueryStr() { - return this.queryStr; - } - - public Facet setQueryStr(String queryStr) { - this.queryStr = queryStr; - return this; - } - - public void unsetQueryStr() { - this.queryStr = null; - } - - /** Returns true if field queryStr is set (has been assigned a value) and false otherwise */ - public boolean isSetQueryStr() { - return this.queryStr != null; - } - - public void setQueryStrIsSet(boolean value) { - if (!value) { - this.queryStr = null; - } - } - - public long getMinimumNumberOfBlurResults() { - return this.minimumNumberOfBlurResults; - } - - public Facet setMinimumNumberOfBlurResults(long minimumNumberOfBlurResults) { - this.minimumNumberOfBlurResults = minimumNumberOfBlurResults; - setMinimumNumberOfBlurResultsIsSet(true); - return this; - } - - public void unsetMinimumNumberOfBlurResults() { - __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __MINIMUMNUMBEROFBLURRESULTS_ISSET_ID); - } - - /** Returns true if field minimumNumberOfBlurResults is set (has been assigned a value) and false otherwise */ - public boolean isSetMinimumNumberOfBlurResults() { - return EncodingUtils.testBit(__isset_bitfield, __MINIMUMNUMBEROFBLURRESULTS_ISSET_ID); - } - - public void setMinimumNumberOfBlurResultsIsSet(boolean value) { - __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __MINIMUMNUMBEROFBLURRESULTS_ISSET_ID, value); - } - - public void setFieldValue(_Fields field, Object value) { - switch (field) { - case QUERY_STR: - if (value == null) { - unsetQueryStr(); - } else { - setQueryStr((String)value); - } - break; - - case MINIMUM_NUMBER_OF_BLUR_RESULTS: - if (value == null) { - unsetMinimumNumberOfBlurResults(); - } else { - setMinimumNumberOfBlurResults((Long)value); - } - break; - - } - } - - public Object getFieldValue(_Fields field) { - switch (field) { - case QUERY_STR: - return getQueryStr(); - - case MINIMUM_NUMBER_OF_BLUR_RESULTS: - return Long.valueOf(getMinimumNumberOfBlurResults()); - - } - 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 QUERY_STR: - return isSetQueryStr(); - case MINIMUM_NUMBER_OF_BLUR_RESULTS: - return isSetMinimumNumberOfBlurResults(); - } - throw new IllegalStateException(); - } - - @Override - public boolean equals(Object that) { - if (that == null) - return false; - if (that instanceof Facet) - return this.equals((Facet)that); - return false; - } - - public boolean equals(Facet that) { - if (that == null) - return false; - - boolean this_present_queryStr = true && this.isSetQueryStr(); - boolean that_present_queryStr = true && that.isSetQueryStr(); - if (this_present_queryStr || that_present_queryStr) { - if (!(this_present_queryStr && that_present_queryStr)) - return false; - if (!this.queryStr.equals(that.queryStr)) - return false; - } - - boolean this_present_minimumNumberOfBlurResults = true; - boolean that_present_minimumNumberOfBlurResults = true; - if (this_present_minimumNumberOfBlurResults || that_present_minimumNumberOfBlurResults) { - if (!(this_present_minimumNumberOfBlurResults && that_present_minimumNumberOfBlurResults)) - return false; - if (this.minimumNumberOfBlurResults != that.minimumNumberOfBlurResults) - return false; - } - - return true; - } - - @Override - public int hashCode() { - return 0; - } - - public int compareTo(Facet other) { - if (!getClass().equals(other.getClass())) { - return getClass().getName().compareTo(other.getClass().getName()); - } - - int lastComparison = 0; - Facet typedOther = (Facet)other; - - lastComparison = Boolean.valueOf(isSetQueryStr()).compareTo(typedOther.isSetQueryStr()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetQueryStr()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.queryStr, typedOther.queryStr); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = Boolean.valueOf(isSetMinimumNumberOfBlurResults()).compareTo(typedOther.isSetMinimumNumberOfBlurResults()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetMinimumNumberOfBlurResults()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.minimumNumberOfBlurResults, typedOther.minimumNumberOfBlurResults); - 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 { - schemes.get(iprot.getScheme()).getScheme().read(iprot, this); - } - - public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { - schemes.get(oprot.getScheme()).getScheme().write(oprot, this); - } - - @Override - public String toString() { - StringBuilder sb = new StringBuilder("Facet("); - boolean first = true; - - sb.append("queryStr:"); - if (this.queryStr == null) { - sb.append("null"); - } else { - sb.append(this.queryStr); - } - first = false; - if (!first) sb.append(", "); - sb.append("minimumNumberOfBlurResults:"); - sb.append(this.minimumNumberOfBlurResults); - 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, 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 FacetStandardSchemeFactory implements SchemeFactory { - public FacetStandardScheme getScheme() { - return new FacetStandardScheme(); - } - } - - private static class FacetStandardScheme extends StandardScheme<Facet> { - - public void read(org.apache.thrift.protocol.TProtocol iprot, Facet 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: // QUERY_STR - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.queryStr = iprot.readString(); - struct.setQueryStrIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 2: // MINIMUM_NUMBER_OF_BLUR_RESULTS - if (schemeField.type == org.apache.thrift.protocol.TType.I64) { - struct.minimumNumberOfBlurResults = iprot.readI64(); - struct.setMinimumNumberOfBlurResultsIsSet(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(); - - // check for required fields of primitive type, which can't be checked in the validate method - struct.validate(); - } - - public void write(org.apache.thrift.protocol.TProtocol oprot, Facet struct) throws org.apache.thrift.TException { - struct.validate(); - - oprot.writeStructBegin(STRUCT_DESC); - if (struct.queryStr != null) { - oprot.writeFieldBegin(QUERY_STR_FIELD_DESC); - oprot.writeString(struct.queryStr); - oprot.writeFieldEnd(); - } - oprot.writeFieldBegin(MINIMUM_NUMBER_OF_BLUR_RESULTS_FIELD_DESC); - oprot.writeI64(struct.minimumNumberOfBlurResults); - oprot.writeFieldEnd(); - oprot.writeFieldStop(); - oprot.writeStructEnd(); - } - - } - - private static class FacetTupleSchemeFactory implements SchemeFactory { - public FacetTupleScheme getScheme() { - return new FacetTupleScheme(); - } - } - - private static class FacetTupleScheme extends TupleScheme<Facet> { - - @Override - public void write(org.apache.thrift.protocol.TProtocol prot, Facet struct) throws org.apache.thrift.TException { - TTupleProtocol oprot = (TTupleProtocol) prot; - BitSet optionals = new BitSet(); - if (struct.isSetQueryStr()) { - optionals.set(0); - } - if (struct.isSetMinimumNumberOfBlurResults()) { - optionals.set(1); - } - oprot.writeBitSet(optionals, 2); - if (struct.isSetQueryStr()) { - oprot.writeString(struct.queryStr); - } - if (struct.isSetMinimumNumberOfBlurResults()) { - oprot.writeI64(struct.minimumNumberOfBlurResults); - } - } - - @Override - public void read(org.apache.thrift.protocol.TProtocol prot, Facet struct) throws org.apache.thrift.TException { - TTupleProtocol iprot = (TTupleProtocol) prot; - BitSet incoming = iprot.readBitSet(2); - if (incoming.get(0)) { - struct.queryStr = iprot.readString(); - struct.setQueryStrIsSet(true); - } - if (incoming.get(1)) { - struct.minimumNumberOfBlurResults = iprot.readI64(); - struct.setMinimumNumberOfBlurResultsIsSet(true); - } - } - } - -} -
