/** * Autogenerated by Thrift Compiler (0.9.3) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package alluxio.thrift; 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 javax.annotation.Generated; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked"}) @Generated(value = "Autogenerated by Thrift Compiler (0.9.3)") public class CreateDirectoryTOptions implements org.apache.thrift.TBase<CreateDirectoryTOptions, CreateDirectoryTOptions._Fields>, java.io.Serializable, Cloneable, Comparable<CreateDirectoryTOptions> { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("CreateDirectoryTOptions"); private static final org.apache.thrift.protocol.TField PERSISTED_FIELD_DESC = new org.apache.thrift.protocol.TField("persisted", org.apache.thrift.protocol.TType.BOOL, (short)1); private static final org.apache.thrift.protocol.TField RECURSIVE_FIELD_DESC = new org.apache.thrift.protocol.TField("recursive", org.apache.thrift.protocol.TType.BOOL, (short)2); private static final org.apache.thrift.protocol.TField ALLOW_EXISTS_FIELD_DESC = new org.apache.thrift.protocol.TField("allowExists", org.apache.thrift.protocol.TType.BOOL, (short)3); private static final org.apache.thrift.protocol.TField MODE_FIELD_DESC = new org.apache.thrift.protocol.TField("mode", org.apache.thrift.protocol.TType.I16, (short)4); private static final org.apache.thrift.protocol.TField TTL_FIELD_DESC = new org.apache.thrift.protocol.TField("ttl", org.apache.thrift.protocol.TType.I64, (short)5); private static final org.apache.thrift.protocol.TField TTL_ACTION_FIELD_DESC = new org.apache.thrift.protocol.TField("ttlAction", org.apache.thrift.protocol.TType.I32, (short)6); private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>(); static { schemes.put(StandardScheme.class, new CreateDirectoryTOptionsStandardSchemeFactory()); schemes.put(TupleScheme.class, new CreateDirectoryTOptionsTupleSchemeFactory()); } private boolean persisted; // optional private boolean recursive; // optional private boolean allowExists; // optional private short mode; // optional private long ttl; // optional private alluxio.thrift.TTtlAction ttlAction; // optional /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { PERSISTED((short)1, "persisted"), RECURSIVE((short)2, "recursive"), ALLOW_EXISTS((short)3, "allowExists"), MODE((short)4, "mode"), TTL((short)5, "ttl"), /** * * @see alluxio.thrift.TTtlAction */ TTL_ACTION((short)6, "ttlAction"); 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: // PERSISTED return PERSISTED; case 2: // RECURSIVE return RECURSIVE; case 3: // ALLOW_EXISTS return ALLOW_EXISTS; case 4: // MODE return MODE; case 5: // TTL return TTL; case 6: // TTL_ACTION return TTL_ACTION; 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 __PERSISTED_ISSET_ID = 0; private static final int __RECURSIVE_ISSET_ID = 1; private static final int __ALLOWEXISTS_ISSET_ID = 2; private static final int __MODE_ISSET_ID = 3; private static final int __TTL_ISSET_ID = 4; private byte __isset_bitfield = 0; private static final _Fields optionals[] = {_Fields.PERSISTED,_Fields.RECURSIVE,_Fields.ALLOW_EXISTS,_Fields.MODE,_Fields.TTL,_Fields.TTL_ACTION}; 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.PERSISTED, new org.apache.thrift.meta_data.FieldMetaData("persisted", org.apache.thrift.TFieldRequirementType.OPTIONAL, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))); tmpMap.put(_Fields.RECURSIVE, new org.apache.thrift.meta_data.FieldMetaData("recursive", org.apache.thrift.TFieldRequirementType.OPTIONAL, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))); tmpMap.put(_Fields.ALLOW_EXISTS, new org.apache.thrift.meta_data.FieldMetaData("allowExists", org.apache.thrift.TFieldRequirementType.OPTIONAL, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.BOOL))); tmpMap.put(_Fields.MODE, new org.apache.thrift.meta_data.FieldMetaData("mode", org.apache.thrift.TFieldRequirementType.OPTIONAL, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I16))); tmpMap.put(_Fields.TTL, new org.apache.thrift.meta_data.FieldMetaData("ttl", org.apache.thrift.TFieldRequirementType.OPTIONAL, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); tmpMap.put(_Fields.TTL_ACTION, new org.apache.thrift.meta_data.FieldMetaData("ttlAction", org.apache.thrift.TFieldRequirementType.OPTIONAL, new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, alluxio.thrift.TTtlAction.class))); metaDataMap = Collections.unmodifiableMap(tmpMap); org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(CreateDirectoryTOptions.class, metaDataMap); } public CreateDirectoryTOptions() { } /** * Performs a deep copy on <i>other</i>. */ public CreateDirectoryTOptions(CreateDirectoryTOptions other) { __isset_bitfield = other.__isset_bitfield; this.persisted = other.persisted; this.recursive = other.recursive; this.allowExists = other.allowExists; this.mode = other.mode; this.ttl = other.ttl; if (other.isSetTtlAction()) { this.ttlAction = other.ttlAction; } } public CreateDirectoryTOptions deepCopy() { return new CreateDirectoryTOptions(this); } @Override public void clear() { setPersistedIsSet(false); this.persisted = false; setRecursiveIsSet(false); this.recursive = false; setAllowExistsIsSet(false); this.allowExists = false; setModeIsSet(false); this.mode = 0; setTtlIsSet(false); this.ttl = 0; this.ttlAction = null; } public boolean isPersisted() { return this.persisted; } public CreateDirectoryTOptions setPersisted(boolean persisted) { this.persisted = persisted; setPersistedIsSet(true); return this; } public void unsetPersisted() { __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __PERSISTED_ISSET_ID); } /** Returns true if field persisted is set (has been assigned a value) and false otherwise */ public boolean isSetPersisted() { return EncodingUtils.testBit(__isset_bitfield, __PERSISTED_ISSET_ID); } public void setPersistedIsSet(boolean value) { __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __PERSISTED_ISSET_ID, value); } public boolean isRecursive() { return this.recursive; } public CreateDirectoryTOptions setRecursive(boolean recursive) { this.recursive = recursive; setRecursiveIsSet(true); return this; } public void unsetRecursive() { __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __RECURSIVE_ISSET_ID); } /** Returns true if field recursive is set (has been assigned a value) and false otherwise */ public boolean isSetRecursive() { return EncodingUtils.testBit(__isset_bitfield, __RECURSIVE_ISSET_ID); } public void setRecursiveIsSet(boolean value) { __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __RECURSIVE_ISSET_ID, value); } public boolean isAllowExists() { return this.allowExists; } public CreateDirectoryTOptions setAllowExists(boolean allowExists) { this.allowExists = allowExists; setAllowExistsIsSet(true); return this; } public void unsetAllowExists() { __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __ALLOWEXISTS_ISSET_ID); } /** Returns true if field allowExists is set (has been assigned a value) and false otherwise */ public boolean isSetAllowExists() { return EncodingUtils.testBit(__isset_bitfield, __ALLOWEXISTS_ISSET_ID); } public void setAllowExistsIsSet(boolean value) { __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __ALLOWEXISTS_ISSET_ID, value); } public short getMode() { return this.mode; } public CreateDirectoryTOptions setMode(short mode) { this.mode = mode; setModeIsSet(true); return this; } public void unsetMode() { __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __MODE_ISSET_ID); } /** Returns true if field mode is set (has been assigned a value) and false otherwise */ public boolean isSetMode() { return EncodingUtils.testBit(__isset_bitfield, __MODE_ISSET_ID); } public void setModeIsSet(boolean value) { __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __MODE_ISSET_ID, value); } public long getTtl() { return this.ttl; } public CreateDirectoryTOptions setTtl(long ttl) { this.ttl = ttl; setTtlIsSet(true); return this; } public void unsetTtl() { __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __TTL_ISSET_ID); } /** Returns true if field ttl is set (has been assigned a value) and false otherwise */ public boolean isSetTtl() { return EncodingUtils.testBit(__isset_bitfield, __TTL_ISSET_ID); } public void setTtlIsSet(boolean value) { __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __TTL_ISSET_ID, value); } /** * * @see alluxio.thrift.TTtlAction */ public alluxio.thrift.TTtlAction getTtlAction() { return this.ttlAction; } /** * * @see alluxio.thrift.TTtlAction */ public CreateDirectoryTOptions setTtlAction(alluxio.thrift.TTtlAction ttlAction) { this.ttlAction = ttlAction; return this; } public void unsetTtlAction() { this.ttlAction = null; } /** Returns true if field ttlAction is set (has been assigned a value) and false otherwise */ public boolean isSetTtlAction() { return this.ttlAction != null; } public void setTtlActionIsSet(boolean value) { if (!value) { this.ttlAction = null; } } public void setFieldValue(_Fields field, Object value) { switch (field) { case PERSISTED: if (value == null) { unsetPersisted(); } else { setPersisted((Boolean)value); } break; case RECURSIVE: if (value == null) { unsetRecursive(); } else { setRecursive((Boolean)value); } break; case ALLOW_EXISTS: if (value == null) { unsetAllowExists(); } else { setAllowExists((Boolean)value); } break; case MODE: if (value == null) { unsetMode(); } else { setMode((Short)value); } break; case TTL: if (value == null) { unsetTtl(); } else { setTtl((Long)value); } break; case TTL_ACTION: if (value == null) { unsetTtlAction(); } else { setTtlAction((alluxio.thrift.TTtlAction)value); } break; } } public Object getFieldValue(_Fields field) { switch (field) { case PERSISTED: return isPersisted(); case RECURSIVE: return isRecursive(); case ALLOW_EXISTS: return isAllowExists(); case MODE: return getMode(); case TTL: return getTtl(); case TTL_ACTION: return getTtlAction(); } 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 PERSISTED: return isSetPersisted(); case RECURSIVE: return isSetRecursive(); case ALLOW_EXISTS: return isSetAllowExists(); case MODE: return isSetMode(); case TTL: return isSetTtl(); case TTL_ACTION: return isSetTtlAction(); } throw new IllegalStateException(); } @Override public boolean equals(Object that) { if (that == null) return false; if (that instanceof CreateDirectoryTOptions) return this.equals((CreateDirectoryTOptions)that); return false; } public boolean equals(CreateDirectoryTOptions that) { if (that == null) return false; boolean this_present_persisted = true && this.isSetPersisted(); boolean that_present_persisted = true && that.isSetPersisted(); if (this_present_persisted || that_present_persisted) { if (!(this_present_persisted && that_present_persisted)) return false; if (this.persisted != that.persisted) return false; } boolean this_present_recursive = true && this.isSetRecursive(); boolean that_present_recursive = true && that.isSetRecursive(); if (this_present_recursive || that_present_recursive) { if (!(this_present_recursive && that_present_recursive)) return false; if (this.recursive != that.recursive) return false; } boolean this_present_allowExists = true && this.isSetAllowExists(); boolean that_present_allowExists = true && that.isSetAllowExists(); if (this_present_allowExists || that_present_allowExists) { if (!(this_present_allowExists && that_present_allowExists)) return false; if (this.allowExists != that.allowExists) return false; } boolean this_present_mode = true && this.isSetMode(); boolean that_present_mode = true && that.isSetMode(); if (this_present_mode || that_present_mode) { if (!(this_present_mode && that_present_mode)) return false; if (this.mode != that.mode) return false; } boolean this_present_ttl = true && this.isSetTtl(); boolean that_present_ttl = true && that.isSetTtl(); if (this_present_ttl || that_present_ttl) { if (!(this_present_ttl && that_present_ttl)) return false; if (this.ttl != that.ttl) return false; } boolean this_present_ttlAction = true && this.isSetTtlAction(); boolean that_present_ttlAction = true && that.isSetTtlAction(); if (this_present_ttlAction || that_present_ttlAction) { if (!(this_present_ttlAction && that_present_ttlAction)) return false; if (!this.ttlAction.equals(that.ttlAction)) return false; } return true; } @Override public int hashCode() { List<Object> list = new ArrayList<Object>(); boolean present_persisted = true && (isSetPersisted()); list.add(present_persisted); if (present_persisted) list.add(persisted); boolean present_recursive = true && (isSetRecursive()); list.add(present_recursive); if (present_recursive) list.add(recursive); boolean present_allowExists = true && (isSetAllowExists()); list.add(present_allowExists); if (present_allowExists) list.add(allowExists); boolean present_mode = true && (isSetMode()); list.add(present_mode); if (present_mode) list.add(mode); boolean present_ttl = true && (isSetTtl()); list.add(present_ttl); if (present_ttl) list.add(ttl); boolean present_ttlAction = true && (isSetTtlAction()); list.add(present_ttlAction); if (present_ttlAction) list.add(ttlAction.getValue()); return list.hashCode(); } @Override public int compareTo(CreateDirectoryTOptions other) { if (!getClass().equals(other.getClass())) { return getClass().getName().compareTo(other.getClass().getName()); } int lastComparison = 0; lastComparison = Boolean.valueOf(isSetPersisted()).compareTo(other.isSetPersisted()); if (lastComparison != 0) { return lastComparison; } if (isSetPersisted()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.persisted, other.persisted); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetRecursive()).compareTo(other.isSetRecursive()); if (lastComparison != 0) { return lastComparison; } if (isSetRecursive()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.recursive, other.recursive); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetAllowExists()).compareTo(other.isSetAllowExists()); if (lastComparison != 0) { return lastComparison; } if (isSetAllowExists()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.allowExists, other.allowExists); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetMode()).compareTo(other.isSetMode()); if (lastComparison != 0) { return lastComparison; } if (isSetMode()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.mode, other.mode); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetTtl()).compareTo(other.isSetTtl()); if (lastComparison != 0) { return lastComparison; } if (isSetTtl()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ttl, other.ttl); if (lastComparison != 0) { return lastComparison; } } lastComparison = Boolean.valueOf(isSetTtlAction()).compareTo(other.isSetTtlAction()); if (lastComparison != 0) { return lastComparison; } if (isSetTtlAction()) { lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.ttlAction, other.ttlAction); 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("CreateDirectoryTOptions("); boolean first = true; if (isSetPersisted()) { sb.append("persisted:"); sb.append(this.persisted); first = false; } if (isSetRecursive()) { if (!first) sb.append(", "); sb.append("recursive:"); sb.append(this.recursive); first = false; } if (isSetAllowExists()) { if (!first) sb.append(", "); sb.append("allowExists:"); sb.append(this.allowExists); first = false; } if (isSetMode()) { if (!first) sb.append(", "); sb.append("mode:"); sb.append(this.mode); first = false; } if (isSetTtl()) { if (!first) sb.append(", "); sb.append("ttl:"); sb.append(this.ttl); first = false; } if (isSetTtlAction()) { if (!first) sb.append(", "); sb.append("ttlAction:"); if (this.ttlAction == null) { sb.append("null"); } else { sb.append(this.ttlAction); } 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 CreateDirectoryTOptionsStandardSchemeFactory implements SchemeFactory { public CreateDirectoryTOptionsStandardScheme getScheme() { return new CreateDirectoryTOptionsStandardScheme(); } } private static class CreateDirectoryTOptionsStandardScheme extends StandardScheme<CreateDirectoryTOptions> { public void read(org.apache.thrift.protocol.TProtocol iprot, CreateDirectoryTOptions 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: // PERSISTED if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { struct.persisted = iprot.readBool(); struct.setPersistedIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 2: // RECURSIVE if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { struct.recursive = iprot.readBool(); struct.setRecursiveIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 3: // ALLOW_EXISTS if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) { struct.allowExists = iprot.readBool(); struct.setAllowExistsIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 4: // MODE if (schemeField.type == org.apache.thrift.protocol.TType.I16) { struct.mode = iprot.readI16(); struct.setModeIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 5: // TTL if (schemeField.type == org.apache.thrift.protocol.TType.I64) { struct.ttl = iprot.readI64(); struct.setTtlIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; case 6: // TTL_ACTION if (schemeField.type == org.apache.thrift.protocol.TType.I32) { struct.ttlAction = alluxio.thrift.TTtlAction.findByValue(iprot.readI32()); struct.setTtlActionIsSet(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, CreateDirectoryTOptions struct) throws org.apache.thrift.TException { struct.validate(); oprot.writeStructBegin(STRUCT_DESC); if (struct.isSetPersisted()) { oprot.writeFieldBegin(PERSISTED_FIELD_DESC); oprot.writeBool(struct.persisted); oprot.writeFieldEnd(); } if (struct.isSetRecursive()) { oprot.writeFieldBegin(RECURSIVE_FIELD_DESC); oprot.writeBool(struct.recursive); oprot.writeFieldEnd(); } if (struct.isSetAllowExists()) { oprot.writeFieldBegin(ALLOW_EXISTS_FIELD_DESC); oprot.writeBool(struct.allowExists); oprot.writeFieldEnd(); } if (struct.isSetMode()) { oprot.writeFieldBegin(MODE_FIELD_DESC); oprot.writeI16(struct.mode); oprot.writeFieldEnd(); } if (struct.isSetTtl()) { oprot.writeFieldBegin(TTL_FIELD_DESC); oprot.writeI64(struct.ttl); oprot.writeFieldEnd(); } if (struct.ttlAction != null) { if (struct.isSetTtlAction()) { oprot.writeFieldBegin(TTL_ACTION_FIELD_DESC); oprot.writeI32(struct.ttlAction.getValue()); oprot.writeFieldEnd(); } } oprot.writeFieldStop(); oprot.writeStructEnd(); } } private static class CreateDirectoryTOptionsTupleSchemeFactory implements SchemeFactory { public CreateDirectoryTOptionsTupleScheme getScheme() { return new CreateDirectoryTOptionsTupleScheme(); } } private static class CreateDirectoryTOptionsTupleScheme extends TupleScheme<CreateDirectoryTOptions> { @Override public void write(org.apache.thrift.protocol.TProtocol prot, CreateDirectoryTOptions struct) throws org.apache.thrift.TException { TTupleProtocol oprot = (TTupleProtocol) prot; BitSet optionals = new BitSet(); if (struct.isSetPersisted()) { optionals.set(0); } if (struct.isSetRecursive()) { optionals.set(1); } if (struct.isSetAllowExists()) { optionals.set(2); } if (struct.isSetMode()) { optionals.set(3); } if (struct.isSetTtl()) { optionals.set(4); } if (struct.isSetTtlAction()) { optionals.set(5); } oprot.writeBitSet(optionals, 6); if (struct.isSetPersisted()) { oprot.writeBool(struct.persisted); } if (struct.isSetRecursive()) { oprot.writeBool(struct.recursive); } if (struct.isSetAllowExists()) { oprot.writeBool(struct.allowExists); } if (struct.isSetMode()) { oprot.writeI16(struct.mode); } if (struct.isSetTtl()) { oprot.writeI64(struct.ttl); } if (struct.isSetTtlAction()) { oprot.writeI32(struct.ttlAction.getValue()); } } @Override public void read(org.apache.thrift.protocol.TProtocol prot, CreateDirectoryTOptions struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; BitSet incoming = iprot.readBitSet(6); if (incoming.get(0)) { struct.persisted = iprot.readBool(); struct.setPersistedIsSet(true); } if (incoming.get(1)) { struct.recursive = iprot.readBool(); struct.setRecursiveIsSet(true); } if (incoming.get(2)) { struct.allowExists = iprot.readBool(); struct.setAllowExistsIsSet(true); } if (incoming.get(3)) { struct.mode = iprot.readI16(); struct.setModeIsSet(true); } if (incoming.get(4)) { struct.ttl = iprot.readI64(); struct.setTtlIsSet(true); } if (incoming.get(5)) { struct.ttlAction = alluxio.thrift.TTtlAction.findByValue(iprot.readI32()); struct.setTtlActionIsSet(true); } } } }