http://git-wip-us.apache.org/repos/asf/curator/blob/95b70d2b/curator-x-rpc/src/test/java/org/apache/curator/generated/EventService.java ---------------------------------------------------------------------- diff --git a/curator-x-rpc/src/test/java/org/apache/curator/generated/EventService.java b/curator-x-rpc/src/test/java/org/apache/curator/generated/EventService.java deleted file mode 100644 index 9854e0e..0000000 --- a/curator-x-rpc/src/test/java/org/apache/curator/generated/EventService.java +++ /dev/null @@ -1,1082 +0,0 @@ -/** - * Autogenerated by Thrift Compiler (0.9.1) - * - * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING - * @generated - */ -package org.apache.curator.generated; - -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 org.apache.thrift.async.AsyncMethodCallback; -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 org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -public class EventService { - - public interface Iface { - - public CuratorEvent getNextEvent(CuratorProjection projection) throws CuratorException, org.apache.thrift.TException; - - } - - public interface AsyncIface { - - public void getNextEvent(CuratorProjection projection, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException; - - } - - public static class Client extends org.apache.thrift.TServiceClient implements Iface { - public static class Factory implements org.apache.thrift.TServiceClientFactory<Client> { - public Factory() {} - public Client getClient(org.apache.thrift.protocol.TProtocol prot) { - return new Client(prot); - } - public Client getClient(org.apache.thrift.protocol.TProtocol iprot, org.apache.thrift.protocol.TProtocol oprot) { - return new Client(iprot, oprot); - } - } - - public Client(org.apache.thrift.protocol.TProtocol prot) - { - super(prot, prot); - } - - public Client(org.apache.thrift.protocol.TProtocol iprot, org.apache.thrift.protocol.TProtocol oprot) { - super(iprot, oprot); - } - - public CuratorEvent getNextEvent(CuratorProjection projection) throws CuratorException, org.apache.thrift.TException - { - send_getNextEvent(projection); - return recv_getNextEvent(); - } - - public void send_getNextEvent(CuratorProjection projection) throws org.apache.thrift.TException - { - getNextEvent_args args = new getNextEvent_args(); - args.setProjection(projection); - sendBase("getNextEvent", args); - } - - public CuratorEvent recv_getNextEvent() throws CuratorException, org.apache.thrift.TException - { - getNextEvent_result result = new getNextEvent_result(); - receiveBase(result, "getNextEvent"); - if (result.isSetSuccess()) { - return result.success; - } - if (result.ex1 != null) { - throw result.ex1; - } - throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "getNextEvent failed: unknown result"); - } - - } - public static class AsyncClient extends org.apache.thrift.async.TAsyncClient implements AsyncIface { - public static class Factory implements org.apache.thrift.async.TAsyncClientFactory<AsyncClient> { - private org.apache.thrift.async.TAsyncClientManager clientManager; - private org.apache.thrift.protocol.TProtocolFactory protocolFactory; - public Factory(org.apache.thrift.async.TAsyncClientManager clientManager, org.apache.thrift.protocol.TProtocolFactory protocolFactory) { - this.clientManager = clientManager; - this.protocolFactory = protocolFactory; - } - public AsyncClient getAsyncClient(org.apache.thrift.transport.TNonblockingTransport transport) { - return new AsyncClient(protocolFactory, clientManager, transport); - } - } - - public AsyncClient(org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.async.TAsyncClientManager clientManager, org.apache.thrift.transport.TNonblockingTransport transport) { - super(protocolFactory, clientManager, transport); - } - - public void getNextEvent(CuratorProjection projection, org.apache.thrift.async.AsyncMethodCallback resultHandler) throws org.apache.thrift.TException { - checkReady(); - getNextEvent_call method_call = new getNextEvent_call(projection, resultHandler, this, ___protocolFactory, ___transport); - this.___currentMethod = method_call; - ___manager.call(method_call); - } - - public static class getNextEvent_call extends org.apache.thrift.async.TAsyncMethodCall { - private CuratorProjection projection; - public getNextEvent_call(CuratorProjection projection, org.apache.thrift.async.AsyncMethodCallback 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.projection = projection; - } - - public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException { - prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("getNextEvent", org.apache.thrift.protocol.TMessageType.CALL, 0)); - getNextEvent_args args = new getNextEvent_args(); - args.setProjection(projection); - args.write(prot); - prot.writeMessageEnd(); - } - - public CuratorEvent getResult() throws CuratorException, 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_getNextEvent(); - } - } - - } - - public static class Processor<I extends Iface> extends org.apache.thrift.TBaseProcessor<I> implements org.apache.thrift.TProcessor { - private static final Logger LOGGER = LoggerFactory.getLogger(Processor.class.getName()); - public Processor(I iface) { - super(iface, getProcessMap(new HashMap<String, org.apache.thrift.ProcessFunction<I, ? extends org.apache.thrift.TBase>>())); - } - - protected Processor(I iface, Map<String, org.apache.thrift.ProcessFunction<I, ? extends org.apache.thrift.TBase>> processMap) { - super(iface, getProcessMap(processMap)); - } - - private static <I extends Iface> Map<String, org.apache.thrift.ProcessFunction<I, ? extends org.apache.thrift.TBase>> getProcessMap(Map<String, org.apache.thrift.ProcessFunction<I, ? extends org.apache.thrift.TBase>> processMap) { - processMap.put("getNextEvent", new getNextEvent()); - return processMap; - } - - public static class getNextEvent<I extends Iface> extends org.apache.thrift.ProcessFunction<I, getNextEvent_args> { - public getNextEvent() { - super("getNextEvent"); - } - - public getNextEvent_args getEmptyArgsInstance() { - return new getNextEvent_args(); - } - - protected boolean isOneway() { - return false; - } - - public getNextEvent_result getResult(I iface, getNextEvent_args args) throws org.apache.thrift.TException { - getNextEvent_result result = new getNextEvent_result(); - try { - result.success = iface.getNextEvent(args.projection); - } catch (CuratorException ex1) { - result.ex1 = ex1; - } - return result; - } - } - - } - - public static class AsyncProcessor<I extends AsyncIface> extends org.apache.thrift.TBaseAsyncProcessor<I> { - private static final Logger LOGGER = LoggerFactory.getLogger(AsyncProcessor.class.getName()); - public AsyncProcessor(I iface) { - super(iface, getProcessMap(new HashMap<String, org.apache.thrift.AsyncProcessFunction<I, ? extends org.apache.thrift.TBase, ?>>())); - } - - protected AsyncProcessor(I iface, Map<String, org.apache.thrift.AsyncProcessFunction<I, ? extends org.apache.thrift.TBase, ?>> processMap) { - super(iface, getProcessMap(processMap)); - } - - private static <I extends AsyncIface> Map<String, org.apache.thrift.AsyncProcessFunction<I, ? extends org.apache.thrift.TBase,?>> getProcessMap(Map<String, org.apache.thrift.AsyncProcessFunction<I, ? extends org.apache.thrift.TBase, ?>> processMap) { - processMap.put("getNextEvent", new getNextEvent()); - return processMap; - } - - public static class getNextEvent<I extends AsyncIface> extends org.apache.thrift.AsyncProcessFunction<I, getNextEvent_args, CuratorEvent> { - public getNextEvent() { - super("getNextEvent"); - } - - public getNextEvent_args getEmptyArgsInstance() { - return new getNextEvent_args(); - } - - public AsyncMethodCallback<CuratorEvent> getResultHandler(final AsyncFrameBuffer fb, final int seqid) { - final org.apache.thrift.AsyncProcessFunction fcall = this; - return new AsyncMethodCallback<CuratorEvent>() { - public void onComplete(CuratorEvent o) { - getNextEvent_result result = new getNextEvent_result(); - result.success = o; - try { - fcall.sendResponse(fb,result, org.apache.thrift.protocol.TMessageType.REPLY,seqid); - return; - } catch (Exception e) { - LOGGER.error("Exception writing to internal frame buffer", e); - } - fb.close(); - } - public void onError(Exception e) { - byte msgType = org.apache.thrift.protocol.TMessageType.REPLY; - org.apache.thrift.TBase msg; - getNextEvent_result result = new getNextEvent_result(); - if (e instanceof CuratorException) { - result.ex1 = (CuratorException) e; - result.setEx1IsSet(true); - msg = result; - } - else - { - msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION; - msg = (org.apache.thrift.TBase)new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR, e.getMessage()); - } - try { - fcall.sendResponse(fb,msg,msgType,seqid); - return; - } catch (Exception ex) { - LOGGER.error("Exception writing to internal frame buffer", ex); - } - fb.close(); - } - }; - } - - protected boolean isOneway() { - return false; - } - - public void start(I iface, getNextEvent_args args, org.apache.thrift.async.AsyncMethodCallback<CuratorEvent> resultHandler) throws TException { - iface.getNextEvent(args.projection,resultHandler); - } - } - - } - - public static class getNextEvent_args implements org.apache.thrift.TBase<getNextEvent_args, getNextEvent_args._Fields>, java.io.Serializable, Cloneable, Comparable<getNextEvent_args> { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getNextEvent_args"); - - private static final org.apache.thrift.protocol.TField PROJECTION_FIELD_DESC = new org.apache.thrift.protocol.TField("projection", 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 getNextEvent_argsStandardSchemeFactory()); - schemes.put(TupleScheme.class, new getNextEvent_argsTupleSchemeFactory()); - } - - public CuratorProjection projection; // 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 { - PROJECTION((short)1, "projection"); - - 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: // PROJECTION - return PROJECTION; - 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.PROJECTION, new org.apache.thrift.meta_data.FieldMetaData("projection", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, CuratorProjection.class))); - metaDataMap = Collections.unmodifiableMap(tmpMap); - org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(getNextEvent_args.class, metaDataMap); - } - - public getNextEvent_args() { - } - - public getNextEvent_args( - CuratorProjection projection) - { - this(); - this.projection = projection; - } - - /** - * Performs a deep copy on <i>other</i>. - */ - public getNextEvent_args(getNextEvent_args other) { - if (other.isSetProjection()) { - this.projection = new CuratorProjection(other.projection); - } - } - - public getNextEvent_args deepCopy() { - return new getNextEvent_args(this); - } - - @Override - public void clear() { - this.projection = null; - } - - public CuratorProjection getProjection() { - return this.projection; - } - - public getNextEvent_args setProjection(CuratorProjection projection) { - this.projection = projection; - return this; - } - - public void unsetProjection() { - this.projection = null; - } - - /** Returns true if field projection is set (has been assigned a value) and false otherwise */ - public boolean isSetProjection() { - return this.projection != null; - } - - public void setProjectionIsSet(boolean value) { - if (!value) { - this.projection = null; - } - } - - public void setFieldValue(_Fields field, Object value) { - switch (field) { - case PROJECTION: - if (value == null) { - unsetProjection(); - } else { - setProjection((CuratorProjection)value); - } - break; - - } - } - - public Object getFieldValue(_Fields field) { - switch (field) { - case PROJECTION: - return getProjection(); - - } - 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 PROJECTION: - return isSetProjection(); - } - throw new IllegalStateException(); - } - - @Override - public boolean equals(Object that) { - if (that == null) - return false; - if (that instanceof getNextEvent_args) - return this.equals((getNextEvent_args)that); - return false; - } - - public boolean equals(getNextEvent_args that) { - if (that == null) - return false; - - boolean this_present_projection = true && this.isSetProjection(); - boolean that_present_projection = true && that.isSetProjection(); - if (this_present_projection || that_present_projection) { - if (!(this_present_projection && that_present_projection)) - return false; - if (!this.projection.equals(that.projection)) - return false; - } - - return true; - } - - @Override - public int hashCode() { - return 0; - } - - @Override - public int compareTo(getNextEvent_args other) { - if (!getClass().equals(other.getClass())) { - return getClass().getName().compareTo(other.getClass().getName()); - } - - int lastComparison = 0; - - lastComparison = Boolean.valueOf(isSetProjection()).compareTo(other.isSetProjection()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetProjection()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.projection, other.projection); - 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("getNextEvent_args("); - boolean first = true; - - sb.append("projection:"); - if (this.projection == null) { - sb.append("null"); - } else { - sb.append(this.projection); - } - 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 (projection != null) { - projection.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 getNextEvent_argsStandardSchemeFactory implements SchemeFactory { - public getNextEvent_argsStandardScheme getScheme() { - return new getNextEvent_argsStandardScheme(); - } - } - - private static class getNextEvent_argsStandardScheme extends StandardScheme<getNextEvent_args> { - - public void read(org.apache.thrift.protocol.TProtocol iprot, getNextEvent_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: // PROJECTION - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.projection = new CuratorProjection(); - struct.projection.read(iprot); - struct.setProjectionIsSet(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, getNextEvent_args struct) throws org.apache.thrift.TException { - struct.validate(); - - oprot.writeStructBegin(STRUCT_DESC); - if (struct.projection != null) { - oprot.writeFieldBegin(PROJECTION_FIELD_DESC); - struct.projection.write(oprot); - oprot.writeFieldEnd(); - } - oprot.writeFieldStop(); - oprot.writeStructEnd(); - } - - } - - private static class getNextEvent_argsTupleSchemeFactory implements SchemeFactory { - public getNextEvent_argsTupleScheme getScheme() { - return new getNextEvent_argsTupleScheme(); - } - } - - private static class getNextEvent_argsTupleScheme extends TupleScheme<getNextEvent_args> { - - @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getNextEvent_args struct) throws org.apache.thrift.TException { - TTupleProtocol oprot = (TTupleProtocol) prot; - BitSet optionals = new BitSet(); - if (struct.isSetProjection()) { - optionals.set(0); - } - oprot.writeBitSet(optionals, 1); - if (struct.isSetProjection()) { - struct.projection.write(oprot); - } - } - - @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getNextEvent_args struct) throws org.apache.thrift.TException { - TTupleProtocol iprot = (TTupleProtocol) prot; - BitSet incoming = iprot.readBitSet(1); - if (incoming.get(0)) { - struct.projection = new CuratorProjection(); - struct.projection.read(iprot); - struct.setProjectionIsSet(true); - } - } - } - - } - - public static class getNextEvent_result implements org.apache.thrift.TBase<getNextEvent_result, getNextEvent_result._Fields>, java.io.Serializable, Cloneable, Comparable<getNextEvent_result> { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("getNextEvent_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 EX1_FIELD_DESC = new org.apache.thrift.protocol.TField("ex1", 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 getNextEvent_resultStandardSchemeFactory()); - schemes.put(TupleScheme.class, new getNextEvent_resultTupleSchemeFactory()); - } - - public CuratorEvent success; // required - public CuratorException ex1; // 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"), - EX1((short)1, "ex1"); - - 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: // EX1 - return EX1; - 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, CuratorEvent.class))); - tmpMap.put(_Fields.EX1, new org.apache.thrift.meta_data.FieldMetaData("ex1", 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(getNextEvent_result.class, metaDataMap); - } - - public getNextEvent_result() { - } - - public getNextEvent_result( - CuratorEvent success, - CuratorException ex1) - { - this(); - this.success = success; - this.ex1 = ex1; - } - - /** - * Performs a deep copy on <i>other</i>. - */ - public getNextEvent_result(getNextEvent_result other) { - if (other.isSetSuccess()) { - this.success = new CuratorEvent(other.success); - } - if (other.isSetEx1()) { - this.ex1 = new CuratorException(other.ex1); - } - } - - public getNextEvent_result deepCopy() { - return new getNextEvent_result(this); - } - - @Override - public void clear() { - this.success = null; - this.ex1 = null; - } - - public CuratorEvent getSuccess() { - return this.success; - } - - public getNextEvent_result setSuccess(CuratorEvent 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 CuratorException getEx1() { - return this.ex1; - } - - public getNextEvent_result setEx1(CuratorException ex1) { - this.ex1 = ex1; - return this; - } - - public void unsetEx1() { - this.ex1 = null; - } - - /** Returns true if field ex1 is set (has been assigned a value) and false otherwise */ - public boolean isSetEx1() { - return this.ex1 != null; - } - - public void setEx1IsSet(boolean value) { - if (!value) { - this.ex1 = null; - } - } - - public void setFieldValue(_Fields field, Object value) { - switch (field) { - case SUCCESS: - if (value == null) { - unsetSuccess(); - } else { - setSuccess((CuratorEvent)value); - } - break; - - case EX1: - if (value == null) { - unsetEx1(); - } else { - setEx1((CuratorException)value); - } - break; - - } - } - - public Object getFieldValue(_Fields field) { - switch (field) { - case SUCCESS: - return getSuccess(); - - case EX1: - return getEx1(); - - } - 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 EX1: - return isSetEx1(); - } - throw new IllegalStateException(); - } - - @Override - public boolean equals(Object that) { - if (that == null) - return false; - if (that instanceof getNextEvent_result) - return this.equals((getNextEvent_result)that); - return false; - } - - public boolean equals(getNextEvent_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_ex1 = true && this.isSetEx1(); - boolean that_present_ex1 = true && that.isSetEx1(); - if (this_present_ex1 || that_present_ex1) { - if (!(this_present_ex1 && that_present_ex1)) - return false; - if (!this.ex1.equals(that.ex1)) - return false; - } - - return true; - } - - @Override - public int hashCode() { - return 0; - } - - @Override - public int compareTo(getNextEvent_result other) { - if (!getClass().equals(other.getClass())) { - return getClass().getName().compareTo(other.getClass().getName()); - } - - int lastComparison = 0; - - lastComparison = Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetSuccess()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.success, other.success); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = Boolean.valueOf(isSetEx1()).compareTo(other.isSetEx1()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetEx1()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ex1, other.ex1); - 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("getNextEvent_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("ex1:"); - if (this.ex1 == null) { - sb.append("null"); - } else { - sb.append(this.ex1); - } - 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 getNextEvent_resultStandardSchemeFactory implements SchemeFactory { - public getNextEvent_resultStandardScheme getScheme() { - return new getNextEvent_resultStandardScheme(); - } - } - - private static class getNextEvent_resultStandardScheme extends StandardScheme<getNextEvent_result> { - - public void read(org.apache.thrift.protocol.TProtocol iprot, getNextEvent_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 CuratorEvent(); - struct.success.read(iprot); - struct.setSuccessIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 1: // EX1 - if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { - struct.ex1 = new CuratorException(); - struct.ex1.read(iprot); - struct.setEx1IsSet(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, getNextEvent_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.ex1 != null) { - oprot.writeFieldBegin(EX1_FIELD_DESC); - struct.ex1.write(oprot); - oprot.writeFieldEnd(); - } - oprot.writeFieldStop(); - oprot.writeStructEnd(); - } - - } - - private static class getNextEvent_resultTupleSchemeFactory implements SchemeFactory { - public getNextEvent_resultTupleScheme getScheme() { - return new getNextEvent_resultTupleScheme(); - } - } - - private static class getNextEvent_resultTupleScheme extends TupleScheme<getNextEvent_result> { - - @Override - public void write(org.apache.thrift.protocol.TProtocol prot, getNextEvent_result struct) throws org.apache.thrift.TException { - TTupleProtocol oprot = (TTupleProtocol) prot; - BitSet optionals = new BitSet(); - if (struct.isSetSuccess()) { - optionals.set(0); - } - if (struct.isSetEx1()) { - optionals.set(1); - } - oprot.writeBitSet(optionals, 2); - if (struct.isSetSuccess()) { - struct.success.write(oprot); - } - if (struct.isSetEx1()) { - struct.ex1.write(oprot); - } - } - - @Override - public void read(org.apache.thrift.protocol.TProtocol prot, getNextEvent_result struct) throws org.apache.thrift.TException { - TTupleProtocol iprot = (TTupleProtocol) prot; - BitSet incoming = iprot.readBitSet(2); - if (incoming.get(0)) { - struct.success = new CuratorEvent(); - struct.success.read(iprot); - struct.setSuccessIsSet(true); - } - if (incoming.get(1)) { - struct.ex1 = new CuratorException(); - struct.ex1.read(iprot); - struct.setEx1IsSet(true); - } - } - } - - } - -}
http://git-wip-us.apache.org/repos/asf/curator/blob/95b70d2b/curator-x-rpc/src/test/java/org/apache/curator/generated/EventType.java ---------------------------------------------------------------------- diff --git a/curator-x-rpc/src/test/java/org/apache/curator/generated/EventType.java b/curator-x-rpc/src/test/java/org/apache/curator/generated/EventType.java deleted file mode 100644 index dced909..0000000 --- a/curator-x-rpc/src/test/java/org/apache/curator/generated/EventType.java +++ /dev/null @@ -1,54 +0,0 @@ -/** - * Autogenerated by Thrift Compiler (0.9.1) - * - * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING - * @generated - */ -package org.apache.curator.generated; - - -import java.util.Map; -import java.util.HashMap; -import org.apache.thrift.TEnum; - -public enum EventType implements org.apache.thrift.TEnum { - None(0), - NodeCreated(1), - NodeDeleted(2), - NodeDataChanged(3), - NodeChildrenChanged(4); - - private final int value; - - private EventType(int value) { - this.value = value; - } - - /** - * Get the integer value of this enum value, as defined in the Thrift IDL. - */ - public int getValue() { - return value; - } - - /** - * Find a the enum type by its integer value, as defined in the Thrift IDL. - * @return null if the value is not found. - */ - public static EventType findByValue(int value) { - switch (value) { - case 0: - return None; - case 1: - return NodeCreated; - case 2: - return NodeDeleted; - case 3: - return NodeDataChanged; - case 4: - return NodeChildrenChanged; - default: - return null; - } - } -} http://git-wip-us.apache.org/repos/asf/curator/blob/95b70d2b/curator-x-rpc/src/test/java/org/apache/curator/generated/ExceptionType.java ---------------------------------------------------------------------- diff --git a/curator-x-rpc/src/test/java/org/apache/curator/generated/ExceptionType.java b/curator-x-rpc/src/test/java/org/apache/curator/generated/ExceptionType.java deleted file mode 100644 index b727f3a..0000000 --- a/curator-x-rpc/src/test/java/org/apache/curator/generated/ExceptionType.java +++ /dev/null @@ -1,48 +0,0 @@ -/** - * Autogenerated by Thrift Compiler (0.9.1) - * - * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING - * @generated - */ -package org.apache.curator.generated; - - -import java.util.Map; -import java.util.HashMap; -import org.apache.thrift.TEnum; - -public enum ExceptionType implements org.apache.thrift.TEnum { - GENERAL(0), - ZOOKEEPER(1), - NODE(2); - - private final int value; - - private ExceptionType(int value) { - this.value = value; - } - - /** - * Get the integer value of this enum value, as defined in the Thrift IDL. - */ - public int getValue() { - return value; - } - - /** - * Find a the enum type by its integer value, as defined in the Thrift IDL. - * @return null if the value is not found. - */ - public static ExceptionType findByValue(int value) { - switch (value) { - case 0: - return GENERAL; - case 1: - return ZOOKEEPER; - case 2: - return NODE; - default: - return null; - } - } -} http://git-wip-us.apache.org/repos/asf/curator/blob/95b70d2b/curator-x-rpc/src/test/java/org/apache/curator/generated/ExistsSpec.java ---------------------------------------------------------------------- diff --git a/curator-x-rpc/src/test/java/org/apache/curator/generated/ExistsSpec.java b/curator-x-rpc/src/test/java/org/apache/curator/generated/ExistsSpec.java deleted file mode 100644 index e06749e..0000000 --- a/curator-x-rpc/src/test/java/org/apache/curator/generated/ExistsSpec.java +++ /dev/null @@ -1,586 +0,0 @@ -/** - * Autogenerated by Thrift Compiler (0.9.1) - * - * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING - * @generated - */ -package org.apache.curator.generated; - -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 org.apache.thrift.async.AsyncMethodCallback; -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 org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -public class ExistsSpec implements org.apache.thrift.TBase<ExistsSpec, ExistsSpec._Fields>, java.io.Serializable, Cloneable, Comparable<ExistsSpec> { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("ExistsSpec"); - - private static final org.apache.thrift.protocol.TField PATH_FIELD_DESC = new org.apache.thrift.protocol.TField("path", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField WATCHED_FIELD_DESC = new org.apache.thrift.protocol.TField("watched", org.apache.thrift.protocol.TType.BOOL, (short)2); - private static final org.apache.thrift.protocol.TField ASYNC_CONTEXT_FIELD_DESC = new org.apache.thrift.protocol.TField("asyncContext", org.apache.thrift.protocol.TType.STRING, (short)3); - - private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>(); - static { - schemes.put(StandardScheme.class, new ExistsSpecStandardSchemeFactory()); - schemes.put(TupleScheme.class, new ExistsSpecTupleSchemeFactory()); - } - - public String path; // required - public boolean watched; // required - public String asyncContext; // 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 { - PATH((short)1, "path"), - WATCHED((short)2, "watched"), - ASYNC_CONTEXT((short)3, "asyncContext"); - - 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: // PATH - return PATH; - case 2: // WATCHED - return WATCHED; - case 3: // ASYNC_CONTEXT - return ASYNC_CONTEXT; - 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 __WATCHED_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.PATH, new org.apache.thrift.meta_data.FieldMetaData("path", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.WATCHED, new org.apache.thrift.meta_data.FieldMetaData("watched", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))); - tmpMap.put(_Fields.ASYNC_CONTEXT, new org.apache.thrift.meta_data.FieldMetaData("asyncContext", 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(ExistsSpec.class, metaDataMap); - } - - public ExistsSpec() { - } - - public ExistsSpec( - String path, - boolean watched, - String asyncContext) - { - this(); - this.path = path; - this.watched = watched; - setWatchedIsSet(true); - this.asyncContext = asyncContext; - } - - /** - * Performs a deep copy on <i>other</i>. - */ - public ExistsSpec(ExistsSpec other) { - __isset_bitfield = other.__isset_bitfield; - if (other.isSetPath()) { - this.path = other.path; - } - this.watched = other.watched; - if (other.isSetAsyncContext()) { - this.asyncContext = other.asyncContext; - } - } - - public ExistsSpec deepCopy() { - return new ExistsSpec(this); - } - - @Override - public void clear() { - this.path = null; - setWatchedIsSet(false); - this.watched = false; - this.asyncContext = null; - } - - public String getPath() { - return this.path; - } - - public ExistsSpec setPath(String path) { - this.path = path; - return this; - } - - public void unsetPath() { - this.path = null; - } - - /** Returns true if field path is set (has been assigned a value) and false otherwise */ - public boolean isSetPath() { - return this.path != null; - } - - public void setPathIsSet(boolean value) { - if (!value) { - this.path = null; - } - } - - public boolean isWatched() { - return this.watched; - } - - public ExistsSpec setWatched(boolean watched) { - this.watched = watched; - setWatchedIsSet(true); - return this; - } - - public void unsetWatched() { - __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __WATCHED_ISSET_ID); - } - - /** Returns true if field watched is set (has been assigned a value) and false otherwise */ - public boolean isSetWatched() { - return EncodingUtils.testBit(__isset_bitfield, __WATCHED_ISSET_ID); - } - - public void setWatchedIsSet(boolean value) { - __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __WATCHED_ISSET_ID, value); - } - - public String getAsyncContext() { - return this.asyncContext; - } - - public ExistsSpec setAsyncContext(String asyncContext) { - this.asyncContext = asyncContext; - return this; - } - - public void unsetAsyncContext() { - this.asyncContext = null; - } - - /** Returns true if field asyncContext is set (has been assigned a value) and false otherwise */ - public boolean isSetAsyncContext() { - return this.asyncContext != null; - } - - public void setAsyncContextIsSet(boolean value) { - if (!value) { - this.asyncContext = null; - } - } - - public void setFieldValue(_Fields field, Object value) { - switch (field) { - case PATH: - if (value == null) { - unsetPath(); - } else { - setPath((String)value); - } - break; - - case WATCHED: - if (value == null) { - unsetWatched(); - } else { - setWatched((Boolean)value); - } - break; - - case ASYNC_CONTEXT: - if (value == null) { - unsetAsyncContext(); - } else { - setAsyncContext((String)value); - } - break; - - } - } - - public Object getFieldValue(_Fields field) { - switch (field) { - case PATH: - return getPath(); - - case WATCHED: - return Boolean.valueOf(isWatched()); - - case ASYNC_CONTEXT: - return getAsyncContext(); - - } - 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 PATH: - return isSetPath(); - case WATCHED: - return isSetWatched(); - case ASYNC_CONTEXT: - return isSetAsyncContext(); - } - throw new IllegalStateException(); - } - - @Override - public boolean equals(Object that) { - if (that == null) - return false; - if (that instanceof ExistsSpec) - return this.equals((ExistsSpec)that); - return false; - } - - public boolean equals(ExistsSpec that) { - if (that == null) - return false; - - boolean this_present_path = true && this.isSetPath(); - boolean that_present_path = true && that.isSetPath(); - if (this_present_path || that_present_path) { - if (!(this_present_path && that_present_path)) - return false; - if (!this.path.equals(that.path)) - return false; - } - - boolean this_present_watched = true; - boolean that_present_watched = true; - if (this_present_watched || that_present_watched) { - if (!(this_present_watched && that_present_watched)) - return false; - if (this.watched != that.watched) - return false; - } - - boolean this_present_asyncContext = true && this.isSetAsyncContext(); - boolean that_present_asyncContext = true && that.isSetAsyncContext(); - if (this_present_asyncContext || that_present_asyncContext) { - if (!(this_present_asyncContext && that_present_asyncContext)) - return false; - if (!this.asyncContext.equals(that.asyncContext)) - return false; - } - - return true; - } - - @Override - public int hashCode() { - return 0; - } - - @Override - public int compareTo(ExistsSpec other) { - if (!getClass().equals(other.getClass())) { - return getClass().getName().compareTo(other.getClass().getName()); - } - - int lastComparison = 0; - - lastComparison = Boolean.valueOf(isSetPath()).compareTo(other.isSetPath()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPath()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.path, other.path); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = Boolean.valueOf(isSetWatched()).compareTo(other.isSetWatched()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetWatched()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.watched, other.watched); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = Boolean.valueOf(isSetAsyncContext()).compareTo(other.isSetAsyncContext()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetAsyncContext()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.asyncContext, other.asyncContext); - 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("ExistsSpec("); - boolean first = true; - - sb.append("path:"); - if (this.path == null) { - sb.append("null"); - } else { - sb.append(this.path); - } - first = false; - if (!first) sb.append(", "); - sb.append("watched:"); - sb.append(this.watched); - first = false; - if (!first) sb.append(", "); - sb.append("asyncContext:"); - if (this.asyncContext == null) { - sb.append("null"); - } else { - sb.append(this.asyncContext); - } - 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 ExistsSpecStandardSchemeFactory implements SchemeFactory { - public ExistsSpecStandardScheme getScheme() { - return new ExistsSpecStandardScheme(); - } - } - - private static class ExistsSpecStandardScheme extends StandardScheme<ExistsSpec> { - - public void read(org.apache.thrift.protocol.TProtocol iprot, ExistsSpec 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: // PATH - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.path = iprot.readString(); - struct.setPathIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 2: // WATCHED - if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { - struct.watched = iprot.readBool(); - struct.setWatchedIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 3: // ASYNC_CONTEXT - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.asyncContext = iprot.readString(); - struct.setAsyncContextIsSet(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, ExistsSpec struct) throws org.apache.thrift.TException { - struct.validate(); - - oprot.writeStructBegin(STRUCT_DESC); - if (struct.path != null) { - oprot.writeFieldBegin(PATH_FIELD_DESC); - oprot.writeString(struct.path); - oprot.writeFieldEnd(); - } - oprot.writeFieldBegin(WATCHED_FIELD_DESC); - oprot.writeBool(struct.watched); - oprot.writeFieldEnd(); - if (struct.asyncContext != null) { - oprot.writeFieldBegin(ASYNC_CONTEXT_FIELD_DESC); - oprot.writeString(struct.asyncContext); - oprot.writeFieldEnd(); - } - oprot.writeFieldStop(); - oprot.writeStructEnd(); - } - - } - - private static class ExistsSpecTupleSchemeFactory implements SchemeFactory { - public ExistsSpecTupleScheme getScheme() { - return new ExistsSpecTupleScheme(); - } - } - - private static class ExistsSpecTupleScheme extends TupleScheme<ExistsSpec> { - - @Override - public void write(org.apache.thrift.protocol.TProtocol prot, ExistsSpec struct) throws org.apache.thrift.TException { - TTupleProtocol oprot = (TTupleProtocol) prot; - BitSet optionals = new BitSet(); - if (struct.isSetPath()) { - optionals.set(0); - } - if (struct.isSetWatched()) { - optionals.set(1); - } - if (struct.isSetAsyncContext()) { - optionals.set(2); - } - oprot.writeBitSet(optionals, 3); - if (struct.isSetPath()) { - oprot.writeString(struct.path); - } - if (struct.isSetWatched()) { - oprot.writeBool(struct.watched); - } - if (struct.isSetAsyncContext()) { - oprot.writeString(struct.asyncContext); - } - } - - @Override - public void read(org.apache.thrift.protocol.TProtocol prot, ExistsSpec struct) throws org.apache.thrift.TException { - TTupleProtocol iprot = (TTupleProtocol) prot; - BitSet incoming = iprot.readBitSet(3); - if (incoming.get(0)) { - struct.path = iprot.readString(); - struct.setPathIsSet(true); - } - if (incoming.get(1)) { - struct.watched = iprot.readBool(); - struct.setWatchedIsSet(true); - } - if (incoming.get(2)) { - struct.asyncContext = iprot.readString(); - struct.setAsyncContextIsSet(true); - } - } - } - -} - http://git-wip-us.apache.org/repos/asf/curator/blob/95b70d2b/curator-x-rpc/src/test/java/org/apache/curator/generated/GetChildrenSpec.java ---------------------------------------------------------------------- diff --git a/curator-x-rpc/src/test/java/org/apache/curator/generated/GetChildrenSpec.java b/curator-x-rpc/src/test/java/org/apache/curator/generated/GetChildrenSpec.java deleted file mode 100644 index 7282982..0000000 --- a/curator-x-rpc/src/test/java/org/apache/curator/generated/GetChildrenSpec.java +++ /dev/null @@ -1,586 +0,0 @@ -/** - * Autogenerated by Thrift Compiler (0.9.1) - * - * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING - * @generated - */ -package org.apache.curator.generated; - -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 org.apache.thrift.async.AsyncMethodCallback; -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 org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -public class GetChildrenSpec implements org.apache.thrift.TBase<GetChildrenSpec, GetChildrenSpec._Fields>, java.io.Serializable, Cloneable, Comparable<GetChildrenSpec> { - private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("GetChildrenSpec"); - - private static final org.apache.thrift.protocol.TField PATH_FIELD_DESC = new org.apache.thrift.protocol.TField("path", org.apache.thrift.protocol.TType.STRING, (short)1); - private static final org.apache.thrift.protocol.TField WATCHED_FIELD_DESC = new org.apache.thrift.protocol.TField("watched", org.apache.thrift.protocol.TType.BOOL, (short)2); - private static final org.apache.thrift.protocol.TField ASYNC_CONTEXT_FIELD_DESC = new org.apache.thrift.protocol.TField("asyncContext", org.apache.thrift.protocol.TType.STRING, (short)3); - - private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>(); - static { - schemes.put(StandardScheme.class, new GetChildrenSpecStandardSchemeFactory()); - schemes.put(TupleScheme.class, new GetChildrenSpecTupleSchemeFactory()); - } - - public String path; // required - public boolean watched; // required - public String asyncContext; // 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 { - PATH((short)1, "path"), - WATCHED((short)2, "watched"), - ASYNC_CONTEXT((short)3, "asyncContext"); - - 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: // PATH - return PATH; - case 2: // WATCHED - return WATCHED; - case 3: // ASYNC_CONTEXT - return ASYNC_CONTEXT; - 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 __WATCHED_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.PATH, new org.apache.thrift.meta_data.FieldMetaData("path", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); - tmpMap.put(_Fields.WATCHED, new org.apache.thrift.meta_data.FieldMetaData("watched", org.apache.thrift.TFieldRequirementType.DEFAULT, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))); - tmpMap.put(_Fields.ASYNC_CONTEXT, new org.apache.thrift.meta_data.FieldMetaData("asyncContext", 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(GetChildrenSpec.class, metaDataMap); - } - - public GetChildrenSpec() { - } - - public GetChildrenSpec( - String path, - boolean watched, - String asyncContext) - { - this(); - this.path = path; - this.watched = watched; - setWatchedIsSet(true); - this.asyncContext = asyncContext; - } - - /** - * Performs a deep copy on <i>other</i>. - */ - public GetChildrenSpec(GetChildrenSpec other) { - __isset_bitfield = other.__isset_bitfield; - if (other.isSetPath()) { - this.path = other.path; - } - this.watched = other.watched; - if (other.isSetAsyncContext()) { - this.asyncContext = other.asyncContext; - } - } - - public GetChildrenSpec deepCopy() { - return new GetChildrenSpec(this); - } - - @Override - public void clear() { - this.path = null; - setWatchedIsSet(false); - this.watched = false; - this.asyncContext = null; - } - - public String getPath() { - return this.path; - } - - public GetChildrenSpec setPath(String path) { - this.path = path; - return this; - } - - public void unsetPath() { - this.path = null; - } - - /** Returns true if field path is set (has been assigned a value) and false otherwise */ - public boolean isSetPath() { - return this.path != null; - } - - public void setPathIsSet(boolean value) { - if (!value) { - this.path = null; - } - } - - public boolean isWatched() { - return this.watched; - } - - public GetChildrenSpec setWatched(boolean watched) { - this.watched = watched; - setWatchedIsSet(true); - return this; - } - - public void unsetWatched() { - __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __WATCHED_ISSET_ID); - } - - /** Returns true if field watched is set (has been assigned a value) and false otherwise */ - public boolean isSetWatched() { - return EncodingUtils.testBit(__isset_bitfield, __WATCHED_ISSET_ID); - } - - public void setWatchedIsSet(boolean value) { - __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __WATCHED_ISSET_ID, value); - } - - public String getAsyncContext() { - return this.asyncContext; - } - - public GetChildrenSpec setAsyncContext(String asyncContext) { - this.asyncContext = asyncContext; - return this; - } - - public void unsetAsyncContext() { - this.asyncContext = null; - } - - /** Returns true if field asyncContext is set (has been assigned a value) and false otherwise */ - public boolean isSetAsyncContext() { - return this.asyncContext != null; - } - - public void setAsyncContextIsSet(boolean value) { - if (!value) { - this.asyncContext = null; - } - } - - public void setFieldValue(_Fields field, Object value) { - switch (field) { - case PATH: - if (value == null) { - unsetPath(); - } else { - setPath((String)value); - } - break; - - case WATCHED: - if (value == null) { - unsetWatched(); - } else { - setWatched((Boolean)value); - } - break; - - case ASYNC_CONTEXT: - if (value == null) { - unsetAsyncContext(); - } else { - setAsyncContext((String)value); - } - break; - - } - } - - public Object getFieldValue(_Fields field) { - switch (field) { - case PATH: - return getPath(); - - case WATCHED: - return Boolean.valueOf(isWatched()); - - case ASYNC_CONTEXT: - return getAsyncContext(); - - } - 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 PATH: - return isSetPath(); - case WATCHED: - return isSetWatched(); - case ASYNC_CONTEXT: - return isSetAsyncContext(); - } - throw new IllegalStateException(); - } - - @Override - public boolean equals(Object that) { - if (that == null) - return false; - if (that instanceof GetChildrenSpec) - return this.equals((GetChildrenSpec)that); - return false; - } - - public boolean equals(GetChildrenSpec that) { - if (that == null) - return false; - - boolean this_present_path = true && this.isSetPath(); - boolean that_present_path = true && that.isSetPath(); - if (this_present_path || that_present_path) { - if (!(this_present_path && that_present_path)) - return false; - if (!this.path.equals(that.path)) - return false; - } - - boolean this_present_watched = true; - boolean that_present_watched = true; - if (this_present_watched || that_present_watched) { - if (!(this_present_watched && that_present_watched)) - return false; - if (this.watched != that.watched) - return false; - } - - boolean this_present_asyncContext = true && this.isSetAsyncContext(); - boolean that_present_asyncContext = true && that.isSetAsyncContext(); - if (this_present_asyncContext || that_present_asyncContext) { - if (!(this_present_asyncContext && that_present_asyncContext)) - return false; - if (!this.asyncContext.equals(that.asyncContext)) - return false; - } - - return true; - } - - @Override - public int hashCode() { - return 0; - } - - @Override - public int compareTo(GetChildrenSpec other) { - if (!getClass().equals(other.getClass())) { - return getClass().getName().compareTo(other.getClass().getName()); - } - - int lastComparison = 0; - - lastComparison = Boolean.valueOf(isSetPath()).compareTo(other.isSetPath()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetPath()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.path, other.path); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = Boolean.valueOf(isSetWatched()).compareTo(other.isSetWatched()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetWatched()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.watched, other.watched); - if (lastComparison != 0) { - return lastComparison; - } - } - lastComparison = Boolean.valueOf(isSetAsyncContext()).compareTo(other.isSetAsyncContext()); - if (lastComparison != 0) { - return lastComparison; - } - if (isSetAsyncContext()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.asyncContext, other.asyncContext); - 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("GetChildrenSpec("); - boolean first = true; - - sb.append("path:"); - if (this.path == null) { - sb.append("null"); - } else { - sb.append(this.path); - } - first = false; - if (!first) sb.append(", "); - sb.append("watched:"); - sb.append(this.watched); - first = false; - if (!first) sb.append(", "); - sb.append("asyncContext:"); - if (this.asyncContext == null) { - sb.append("null"); - } else { - sb.append(this.asyncContext); - } - 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 GetChildrenSpecStandardSchemeFactory implements SchemeFactory { - public GetChildrenSpecStandardScheme getScheme() { - return new GetChildrenSpecStandardScheme(); - } - } - - private static class GetChildrenSpecStandardScheme extends StandardScheme<GetChildrenSpec> { - - public void read(org.apache.thrift.protocol.TProtocol iprot, GetChildrenSpec 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: // PATH - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.path = iprot.readString(); - struct.setPathIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 2: // WATCHED - if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { - struct.watched = iprot.readBool(); - struct.setWatchedIsSet(true); - } else { - org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); - } - break; - case 3: // ASYNC_CONTEXT - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.asyncContext = iprot.readString(); - struct.setAsyncContextIsSet(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, GetChildrenSpec struct) throws org.apache.thrift.TException { - struct.validate(); - - oprot.writeStructBegin(STRUCT_DESC); - if (struct.path != null) { - oprot.writeFieldBegin(PATH_FIELD_DESC); - oprot.writeString(struct.path); - oprot.writeFieldEnd(); - } - oprot.writeFieldBegin(WATCHED_FIELD_DESC); - oprot.writeBool(struct.watched); - oprot.writeFieldEnd(); - if (struct.asyncContext != null) { - oprot.writeFieldBegin(ASYNC_CONTEXT_FIELD_DESC); - oprot.writeString(struct.asyncContext); - oprot.writeFieldEnd(); - } - oprot.writeFieldStop(); - oprot.writeStructEnd(); - } - - } - - private static class GetChildrenSpecTupleSchemeFactory implements SchemeFactory { - public GetChildrenSpecTupleScheme getScheme() { - return new GetChildrenSpecTupleScheme(); - } - } - - private static class GetChildrenSpecTupleScheme extends TupleScheme<GetChildrenSpec> { - - @Override - public void write(org.apache.thrift.protocol.TProtocol prot, GetChildrenSpec struct) throws org.apache.thrift.TException { - TTupleProtocol oprot = (TTupleProtocol) prot; - BitSet optionals = new BitSet(); - if (struct.isSetPath()) { - optionals.set(0); - } - if (struct.isSetWatched()) { - optionals.set(1); - } - if (struct.isSetAsyncContext()) { - optionals.set(2); - } - oprot.writeBitSet(optionals, 3); - if (struct.isSetPath()) { - oprot.writeString(struct.path); - } - if (struct.isSetWatched()) { - oprot.writeBool(struct.watched); - } - if (struct.isSetAsyncContext()) { - oprot.writeString(struct.asyncContext); - } - } - - @Override - public void read(org.apache.thrift.protocol.TProtocol prot, GetChildrenSpec struct) throws org.apache.thrift.TException { - TTupleProtocol iprot = (TTupleProtocol) prot; - BitSet incoming = iprot.readBitSet(3); - if (incoming.get(0)) { - struct.path = iprot.readString(); - struct.setPathIsSet(true); - } - if (incoming.get(1)) { - struct.watched = iprot.readBool(); - struct.setWatchedIsSet(true); - } - if (incoming.get(2)) { - struct.asyncContext = iprot.readString(); - struct.setAsyncContextIsSet(true); - } - } - } - -} -
