Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* Autogenerated by Avro
*
* DO NOT EDIT DIRECTLY
*/
package org.apache.hudi.avro.model;
import org.apache.avro.generic.GenericArray;
import org.apache.avro.specific.SpecificData;
import org.apache.avro.util.Utf8;
import org.apache.avro.message.BinaryMessageEncoder;
import org.apache.avro.message.BinaryMessageDecoder;
import org.apache.avro.message.SchemaStore;
@org.apache.avro.specific.AvroGenerated
public class HoodieRestoreMetadata extends org.apache.avro.specific.SpecificRecordBase implements org.apache.avro.specific.SpecificRecord {
private static final long serialVersionUID = -1183775355830843545L;
public static final org.apache.avro.Schema SCHEMA$ = new org.apache.avro.Schema.Parser().parse("{\"type\":\"record\",\"name\":\"HoodieRestoreMetadata\",\"namespace\":\"org.apache.hudi.avro.model\",\"fields\":[{\"name\":\"startRestoreTime\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"}},{\"name\":\"timeTakenInMillis\",\"type\":\"long\"},{\"name\":\"instantsToRollback\",\"type\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"avro.java.string\":\"String\"}}},{\"name\":\"hoodieRestoreMetadata\",\"type\":{\"type\":\"map\",\"values\":{\"type\":\"array\",\"items\":[\"null\",{\"type\":\"record\",\"name\":\"HoodieRollbackMetadata\",\"fields\":[{\"name\":\"startRollbackTime\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"}},{\"name\":\"timeTakenInMillis\",\"type\":\"long\"},{\"name\":\"totalFilesDeleted\",\"type\":\"int\"},{\"name\":\"commitsRollback\",\"type\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"avro.java.string\":\"String\"}}},{\"name\":\"partitionMetadata\",\"type\":{\"type\":\"map\",\"values\":{\"type\":\"record\",\"name\":\"HoodieRollbackPartitionMetadata\",\"fields\":[{\"name\":\"partitionPath\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"}},{\"name\":\"successDeleteFiles\",\"type\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"avro.java.string\":\"String\"}}},{\"name\":\"failedDeleteFiles\",\"type\":{\"type\":\"array\",\"items\":{\"type\":\"string\",\"avro.java.string\":\"String\"}}},{\"name\":\"rollbackLogFiles\",\"type\":[\"null\",{\"type\":\"map\",\"values\":\"long\",\"avro.java.string\":\"String\"}],\"default\":null},{\"name\":\"logFilesFromFailedCommit\",\"type\":[\"null\",{\"type\":\"map\",\"values\":\"long\",\"avro.java.string\":\"String\"}],\"default\":null}]},\"avro.java.string\":\"String\"}},{\"name\":\"version\",\"type\":[\"int\",\"null\"],\"default\":1},{\"name\":\"instantsRollback\",\"type\":{\"type\":\"array\",\"items\":{\"type\":\"record\",\"name\":\"HoodieInstantInfo\",\"fields\":[{\"name\":\"commitTime\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"}},{\"name\":\"action\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"}}]},\"default\":[]},\"default\":[]}]}],\"default\":null},\"avro.java.string\":\"String\"}},{\"name\":\"version\",\"type\":[\"int\",\"null\"],\"default\":1},{\"name\":\"restoreInstantInfo\",\"type\":{\"type\":\"array\",\"items\":\"HoodieInstantInfo\",\"default\":null},\"default\":[]}]}");
public static org.apache.avro.Schema getClassSchema() { return SCHEMA$; }
private static SpecificData MODEL$ = new SpecificData();
private static final BinaryMessageEncoder ENCODER =
new BinaryMessageEncoder(MODEL$, SCHEMA$);
private static final BinaryMessageDecoder DECODER =
new BinaryMessageDecoder(MODEL$, SCHEMA$);
/**
* Return the BinaryMessageEncoder instance used by this class.
* @return the message encoder used by this class
*/
public static BinaryMessageEncoder getEncoder() {
return ENCODER;
}
/**
* Return the BinaryMessageDecoder instance used by this class.
* @return the message decoder used by this class
*/
public static BinaryMessageDecoder getDecoder() {
return DECODER;
}
/**
* Create a new BinaryMessageDecoder instance for this class that uses the specified {@link SchemaStore}.
* @param resolver a {@link SchemaStore} used to find schemas by fingerprint
* @return a BinaryMessageDecoder instance for this class backed by the given SchemaStore
*/
public static BinaryMessageDecoder createDecoder(SchemaStore resolver) {
return new BinaryMessageDecoder(MODEL$, SCHEMA$, resolver);
}
/**
* Serializes this HoodieRestoreMetadata to a ByteBuffer.
* @return a buffer holding the serialized data for this instance
* @throws java.io.IOException if this instance could not be serialized
*/
public java.nio.ByteBuffer toByteBuffer() throws java.io.IOException {
return ENCODER.encode(this);
}
/**
* Deserializes a HoodieRestoreMetadata from a ByteBuffer.
* @param b a byte buffer holding serialized data for an instance of this class
* @return a HoodieRestoreMetadata instance decoded from the given buffer
* @throws java.io.IOException if the given bytes could not be deserialized into an instance of this class
*/
public static HoodieRestoreMetadata fromByteBuffer(
java.nio.ByteBuffer b) throws java.io.IOException {
return DECODER.decode(b);
}
private java.lang.String startRestoreTime;
private long timeTakenInMillis;
private java.util.List instantsToRollback;
private java.util.Map> hoodieRestoreMetadata;
private java.lang.Integer version;
private java.util.List restoreInstantInfo;
/**
* Default constructor. Note that this does not initialize fields
* to their default values from the schema. If that is desired then
* one should use newBuilder().
*/
public HoodieRestoreMetadata() {}
/**
* All-args constructor.
* @param startRestoreTime The new value for startRestoreTime
* @param timeTakenInMillis The new value for timeTakenInMillis
* @param instantsToRollback The new value for instantsToRollback
* @param hoodieRestoreMetadata The new value for hoodieRestoreMetadata
* @param version The new value for version
* @param restoreInstantInfo The new value for restoreInstantInfo
*/
public HoodieRestoreMetadata(java.lang.String startRestoreTime, java.lang.Long timeTakenInMillis, java.util.List instantsToRollback, java.util.Map> hoodieRestoreMetadata, java.lang.Integer version, java.util.List restoreInstantInfo) {
this.startRestoreTime = startRestoreTime;
this.timeTakenInMillis = timeTakenInMillis;
this.instantsToRollback = instantsToRollback;
this.hoodieRestoreMetadata = hoodieRestoreMetadata;
this.version = version;
this.restoreInstantInfo = restoreInstantInfo;
}
public org.apache.avro.specific.SpecificData getSpecificData() { return MODEL$; }
public org.apache.avro.Schema getSchema() { return SCHEMA$; }
// Used by DatumWriter. Applications should not call.
public java.lang.Object get(int field$) {
switch (field$) {
case 0: return startRestoreTime;
case 1: return timeTakenInMillis;
case 2: return instantsToRollback;
case 3: return hoodieRestoreMetadata;
case 4: return version;
case 5: return restoreInstantInfo;
default: throw new IndexOutOfBoundsException("Invalid index: " + field$);
}
}
// Used by DatumReader. Applications should not call.
@SuppressWarnings(value="unchecked")
public void put(int field$, java.lang.Object value$) {
switch (field$) {
case 0: startRestoreTime = value$ != null ? value$.toString() : null; break;
case 1: timeTakenInMillis = (java.lang.Long)value$; break;
case 2: instantsToRollback = (java.util.List)value$; break;
case 3: hoodieRestoreMetadata = (java.util.Map>)value$; break;
case 4: version = (java.lang.Integer)value$; break;
case 5: restoreInstantInfo = (java.util.List)value$; break;
default: throw new IndexOutOfBoundsException("Invalid index: " + field$);
}
}
/**
* Gets the value of the 'startRestoreTime' field.
* @return The value of the 'startRestoreTime' field.
*/
public java.lang.String getStartRestoreTime() {
return startRestoreTime;
}
/**
* Sets the value of the 'startRestoreTime' field.
* @param value the value to set.
*/
public void setStartRestoreTime(java.lang.String value) {
this.startRestoreTime = value;
}
/**
* Gets the value of the 'timeTakenInMillis' field.
* @return The value of the 'timeTakenInMillis' field.
*/
public long getTimeTakenInMillis() {
return timeTakenInMillis;
}
/**
* Sets the value of the 'timeTakenInMillis' field.
* @param value the value to set.
*/
public void setTimeTakenInMillis(long value) {
this.timeTakenInMillis = value;
}
/**
* Gets the value of the 'instantsToRollback' field.
* @return The value of the 'instantsToRollback' field.
*/
public java.util.List getInstantsToRollback() {
return instantsToRollback;
}
/**
* Sets the value of the 'instantsToRollback' field.
* @param value the value to set.
*/
public void setInstantsToRollback(java.util.List value) {
this.instantsToRollback = value;
}
/**
* Gets the value of the 'hoodieRestoreMetadata' field.
* @return The value of the 'hoodieRestoreMetadata' field.
*/
public java.util.Map> getHoodieRestoreMetadata() {
return hoodieRestoreMetadata;
}
/**
* Sets the value of the 'hoodieRestoreMetadata' field.
* @param value the value to set.
*/
public void setHoodieRestoreMetadata(java.util.Map> value) {
this.hoodieRestoreMetadata = value;
}
/**
* Gets the value of the 'version' field.
* @return The value of the 'version' field.
*/
public java.lang.Integer getVersion() {
return version;
}
/**
* Sets the value of the 'version' field.
* @param value the value to set.
*/
public void setVersion(java.lang.Integer value) {
this.version = value;
}
/**
* Gets the value of the 'restoreInstantInfo' field.
* @return The value of the 'restoreInstantInfo' field.
*/
public java.util.List getRestoreInstantInfo() {
return restoreInstantInfo;
}
/**
* Sets the value of the 'restoreInstantInfo' field.
* @param value the value to set.
*/
public void setRestoreInstantInfo(java.util.List value) {
this.restoreInstantInfo = value;
}
/**
* Creates a new HoodieRestoreMetadata RecordBuilder.
* @return A new HoodieRestoreMetadata RecordBuilder
*/
public static org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder newBuilder() {
return new org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder();
}
/**
* Creates a new HoodieRestoreMetadata RecordBuilder by copying an existing Builder.
* @param other The existing builder to copy.
* @return A new HoodieRestoreMetadata RecordBuilder
*/
public static org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder newBuilder(org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder other) {
if (other == null) {
return new org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder();
} else {
return new org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder(other);
}
}
/**
* Creates a new HoodieRestoreMetadata RecordBuilder by copying an existing HoodieRestoreMetadata instance.
* @param other The existing instance to copy.
* @return A new HoodieRestoreMetadata RecordBuilder
*/
public static org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder newBuilder(org.apache.hudi.avro.model.HoodieRestoreMetadata other) {
if (other == null) {
return new org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder();
} else {
return new org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder(other);
}
}
/**
* RecordBuilder for HoodieRestoreMetadata instances.
*/
@org.apache.avro.specific.AvroGenerated
public static class Builder extends org.apache.avro.specific.SpecificRecordBuilderBase
implements org.apache.avro.data.RecordBuilder {
private java.lang.String startRestoreTime;
private long timeTakenInMillis;
private java.util.List instantsToRollback;
private java.util.Map> hoodieRestoreMetadata;
private java.lang.Integer version;
private java.util.List restoreInstantInfo;
/** Creates a new Builder */
private Builder() {
super(SCHEMA$);
}
/**
* Creates a Builder by copying an existing Builder.
* @param other The existing Builder to copy.
*/
private Builder(org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder other) {
super(other);
if (isValidValue(fields()[0], other.startRestoreTime)) {
this.startRestoreTime = data().deepCopy(fields()[0].schema(), other.startRestoreTime);
fieldSetFlags()[0] = other.fieldSetFlags()[0];
}
if (isValidValue(fields()[1], other.timeTakenInMillis)) {
this.timeTakenInMillis = data().deepCopy(fields()[1].schema(), other.timeTakenInMillis);
fieldSetFlags()[1] = other.fieldSetFlags()[1];
}
if (isValidValue(fields()[2], other.instantsToRollback)) {
this.instantsToRollback = data().deepCopy(fields()[2].schema(), other.instantsToRollback);
fieldSetFlags()[2] = other.fieldSetFlags()[2];
}
if (isValidValue(fields()[3], other.hoodieRestoreMetadata)) {
this.hoodieRestoreMetadata = data().deepCopy(fields()[3].schema(), other.hoodieRestoreMetadata);
fieldSetFlags()[3] = other.fieldSetFlags()[3];
}
if (isValidValue(fields()[4], other.version)) {
this.version = data().deepCopy(fields()[4].schema(), other.version);
fieldSetFlags()[4] = other.fieldSetFlags()[4];
}
if (isValidValue(fields()[5], other.restoreInstantInfo)) {
this.restoreInstantInfo = data().deepCopy(fields()[5].schema(), other.restoreInstantInfo);
fieldSetFlags()[5] = other.fieldSetFlags()[5];
}
}
/**
* Creates a Builder by copying an existing HoodieRestoreMetadata instance
* @param other The existing instance to copy.
*/
private Builder(org.apache.hudi.avro.model.HoodieRestoreMetadata other) {
super(SCHEMA$);
if (isValidValue(fields()[0], other.startRestoreTime)) {
this.startRestoreTime = data().deepCopy(fields()[0].schema(), other.startRestoreTime);
fieldSetFlags()[0] = true;
}
if (isValidValue(fields()[1], other.timeTakenInMillis)) {
this.timeTakenInMillis = data().deepCopy(fields()[1].schema(), other.timeTakenInMillis);
fieldSetFlags()[1] = true;
}
if (isValidValue(fields()[2], other.instantsToRollback)) {
this.instantsToRollback = data().deepCopy(fields()[2].schema(), other.instantsToRollback);
fieldSetFlags()[2] = true;
}
if (isValidValue(fields()[3], other.hoodieRestoreMetadata)) {
this.hoodieRestoreMetadata = data().deepCopy(fields()[3].schema(), other.hoodieRestoreMetadata);
fieldSetFlags()[3] = true;
}
if (isValidValue(fields()[4], other.version)) {
this.version = data().deepCopy(fields()[4].schema(), other.version);
fieldSetFlags()[4] = true;
}
if (isValidValue(fields()[5], other.restoreInstantInfo)) {
this.restoreInstantInfo = data().deepCopy(fields()[5].schema(), other.restoreInstantInfo);
fieldSetFlags()[5] = true;
}
}
/**
* Gets the value of the 'startRestoreTime' field.
* @return The value.
*/
public java.lang.String getStartRestoreTime() {
return startRestoreTime;
}
/**
* Sets the value of the 'startRestoreTime' field.
* @param value The value of 'startRestoreTime'.
* @return This builder.
*/
public org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder setStartRestoreTime(java.lang.String value) {
validate(fields()[0], value);
this.startRestoreTime = value;
fieldSetFlags()[0] = true;
return this;
}
/**
* Checks whether the 'startRestoreTime' field has been set.
* @return True if the 'startRestoreTime' field has been set, false otherwise.
*/
public boolean hasStartRestoreTime() {
return fieldSetFlags()[0];
}
/**
* Clears the value of the 'startRestoreTime' field.
* @return This builder.
*/
public org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder clearStartRestoreTime() {
startRestoreTime = null;
fieldSetFlags()[0] = false;
return this;
}
/**
* Gets the value of the 'timeTakenInMillis' field.
* @return The value.
*/
public long getTimeTakenInMillis() {
return timeTakenInMillis;
}
/**
* Sets the value of the 'timeTakenInMillis' field.
* @param value The value of 'timeTakenInMillis'.
* @return This builder.
*/
public org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder setTimeTakenInMillis(long value) {
validate(fields()[1], value);
this.timeTakenInMillis = value;
fieldSetFlags()[1] = true;
return this;
}
/**
* Checks whether the 'timeTakenInMillis' field has been set.
* @return True if the 'timeTakenInMillis' field has been set, false otherwise.
*/
public boolean hasTimeTakenInMillis() {
return fieldSetFlags()[1];
}
/**
* Clears the value of the 'timeTakenInMillis' field.
* @return This builder.
*/
public org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder clearTimeTakenInMillis() {
fieldSetFlags()[1] = false;
return this;
}
/**
* Gets the value of the 'instantsToRollback' field.
* @return The value.
*/
public java.util.List getInstantsToRollback() {
return instantsToRollback;
}
/**
* Sets the value of the 'instantsToRollback' field.
* @param value The value of 'instantsToRollback'.
* @return This builder.
*/
public org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder setInstantsToRollback(java.util.List value) {
validate(fields()[2], value);
this.instantsToRollback = value;
fieldSetFlags()[2] = true;
return this;
}
/**
* Checks whether the 'instantsToRollback' field has been set.
* @return True if the 'instantsToRollback' field has been set, false otherwise.
*/
public boolean hasInstantsToRollback() {
return fieldSetFlags()[2];
}
/**
* Clears the value of the 'instantsToRollback' field.
* @return This builder.
*/
public org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder clearInstantsToRollback() {
instantsToRollback = null;
fieldSetFlags()[2] = false;
return this;
}
/**
* Gets the value of the 'hoodieRestoreMetadata' field.
* @return The value.
*/
public java.util.Map> getHoodieRestoreMetadata() {
return hoodieRestoreMetadata;
}
/**
* Sets the value of the 'hoodieRestoreMetadata' field.
* @param value The value of 'hoodieRestoreMetadata'.
* @return This builder.
*/
public org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder setHoodieRestoreMetadata(java.util.Map> value) {
validate(fields()[3], value);
this.hoodieRestoreMetadata = value;
fieldSetFlags()[3] = true;
return this;
}
/**
* Checks whether the 'hoodieRestoreMetadata' field has been set.
* @return True if the 'hoodieRestoreMetadata' field has been set, false otherwise.
*/
public boolean hasHoodieRestoreMetadata() {
return fieldSetFlags()[3];
}
/**
* Clears the value of the 'hoodieRestoreMetadata' field.
* @return This builder.
*/
public org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder clearHoodieRestoreMetadata() {
hoodieRestoreMetadata = null;
fieldSetFlags()[3] = false;
return this;
}
/**
* Gets the value of the 'version' field.
* @return The value.
*/
public java.lang.Integer getVersion() {
return version;
}
/**
* Sets the value of the 'version' field.
* @param value The value of 'version'.
* @return This builder.
*/
public org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder setVersion(java.lang.Integer value) {
validate(fields()[4], value);
this.version = value;
fieldSetFlags()[4] = true;
return this;
}
/**
* Checks whether the 'version' field has been set.
* @return True if the 'version' field has been set, false otherwise.
*/
public boolean hasVersion() {
return fieldSetFlags()[4];
}
/**
* Clears the value of the 'version' field.
* @return This builder.
*/
public org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder clearVersion() {
version = null;
fieldSetFlags()[4] = false;
return this;
}
/**
* Gets the value of the 'restoreInstantInfo' field.
* @return The value.
*/
public java.util.List getRestoreInstantInfo() {
return restoreInstantInfo;
}
/**
* Sets the value of the 'restoreInstantInfo' field.
* @param value The value of 'restoreInstantInfo'.
* @return This builder.
*/
public org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder setRestoreInstantInfo(java.util.List value) {
validate(fields()[5], value);
this.restoreInstantInfo = value;
fieldSetFlags()[5] = true;
return this;
}
/**
* Checks whether the 'restoreInstantInfo' field has been set.
* @return True if the 'restoreInstantInfo' field has been set, false otherwise.
*/
public boolean hasRestoreInstantInfo() {
return fieldSetFlags()[5];
}
/**
* Clears the value of the 'restoreInstantInfo' field.
* @return This builder.
*/
public org.apache.hudi.avro.model.HoodieRestoreMetadata.Builder clearRestoreInstantInfo() {
restoreInstantInfo = null;
fieldSetFlags()[5] = false;
return this;
}
@Override
@SuppressWarnings("unchecked")
public HoodieRestoreMetadata build() {
try {
HoodieRestoreMetadata record = new HoodieRestoreMetadata();
record.startRestoreTime = fieldSetFlags()[0] ? this.startRestoreTime : (java.lang.String) defaultValue(fields()[0]);
record.timeTakenInMillis = fieldSetFlags()[1] ? this.timeTakenInMillis : (java.lang.Long) defaultValue(fields()[1]);
record.instantsToRollback = fieldSetFlags()[2] ? this.instantsToRollback : (java.util.List) defaultValue(fields()[2]);
record.hoodieRestoreMetadata = fieldSetFlags()[3] ? this.hoodieRestoreMetadata : (java.util.Map>) defaultValue(fields()[3]);
record.version = fieldSetFlags()[4] ? this.version : (java.lang.Integer) defaultValue(fields()[4]);
record.restoreInstantInfo = fieldSetFlags()[5] ? this.restoreInstantInfo : (java.util.List) defaultValue(fields()[5]);
return record;
} catch (org.apache.avro.AvroMissingFieldException e) {
throw e;
} catch (java.lang.Exception e) {
throw new org.apache.avro.AvroRuntimeException(e);
}
}
}
@SuppressWarnings("unchecked")
private static final org.apache.avro.io.DatumWriter
WRITER$ = (org.apache.avro.io.DatumWriter)MODEL$.createDatumWriter(SCHEMA$);
@Override public void writeExternal(java.io.ObjectOutput out)
throws java.io.IOException {
WRITER$.write(this, SpecificData.getEncoder(out));
}
@SuppressWarnings("unchecked")
private static final org.apache.avro.io.DatumReader
READER$ = (org.apache.avro.io.DatumReader)MODEL$.createDatumReader(SCHEMA$);
@Override public void readExternal(java.io.ObjectInput in)
throws java.io.IOException {
READER$.read(this, SpecificData.getDecoder(in));
}
@Override protected boolean hasCustomCoders() { return true; }
@Override public void customEncode(org.apache.avro.io.Encoder out)
throws java.io.IOException
{
out.writeString(this.startRestoreTime);
out.writeLong(this.timeTakenInMillis);
long size0 = this.instantsToRollback.size();
out.writeArrayStart();
out.setItemCount(size0);
long actualSize0 = 0;
for (java.lang.String e0: this.instantsToRollback) {
actualSize0++;
out.startItem();
out.writeString(e0);
}
out.writeArrayEnd();
if (actualSize0 != size0)
throw new java.util.ConcurrentModificationException("Array-size written was " + size0 + ", but element count was " + actualSize0 + ".");
long size1 = this.hoodieRestoreMetadata.size();
out.writeMapStart();
out.setItemCount(size1);
long actualSize1 = 0;
for (java.util.Map.Entry> e1: this.hoodieRestoreMetadata.entrySet()) {
actualSize1++;
out.startItem();
out.writeString(e1.getKey());
java.util.List v1 = e1.getValue();
long size2 = v1.size();
out.writeArrayStart();
out.setItemCount(size2);
long actualSize2 = 0;
for (org.apache.hudi.avro.model.HoodieRollbackMetadata e2: v1) {
actualSize2++;
out.startItem();
if (e2 == null) {
out.writeIndex(0);
out.writeNull();
} else {
out.writeIndex(1);
e2.customEncode(out);
}
}
out.writeArrayEnd();
if (actualSize2 != size2)
throw new java.util.ConcurrentModificationException("Array-size written was " + size2 + ", but element count was " + actualSize2 + ".");
}
out.writeMapEnd();
if (actualSize1 != size1)
throw new java.util.ConcurrentModificationException("Map-size written was " + size1 + ", but element count was " + actualSize1 + ".");
if (this.version == null) {
out.writeIndex(1);
out.writeNull();
} else {
out.writeIndex(0);
out.writeInt(this.version);
}
long size3 = this.restoreInstantInfo.size();
out.writeArrayStart();
out.setItemCount(size3);
long actualSize3 = 0;
for (org.apache.hudi.avro.model.HoodieInstantInfo e3: this.restoreInstantInfo) {
actualSize3++;
out.startItem();
e3.customEncode(out);
}
out.writeArrayEnd();
if (actualSize3 != size3)
throw new java.util.ConcurrentModificationException("Array-size written was " + size3 + ", but element count was " + actualSize3 + ".");
}
@Override public void customDecode(org.apache.avro.io.ResolvingDecoder in)
throws java.io.IOException
{
org.apache.avro.Schema.Field[] fieldOrder = in.readFieldOrderIfDiff();
if (fieldOrder == null) {
this.startRestoreTime = in.readString();
this.timeTakenInMillis = in.readLong();
long size0 = in.readArrayStart();
java.util.List a0 = this.instantsToRollback;
if (a0 == null) {
a0 = new SpecificData.Array((int)size0, SCHEMA$.getField("instantsToRollback").schema());
this.instantsToRollback = a0;
} else a0.clear();
SpecificData.Array ga0 = (a0 instanceof SpecificData.Array ? (SpecificData.Array)a0 : null);
for ( ; 0 < size0; size0 = in.arrayNext()) {
for ( ; size0 != 0; size0--) {
java.lang.String e0 = (ga0 != null ? ga0.peek() : null);
e0 = in.readString();
a0.add(e0);
}
}
long size1 = in.readMapStart();
java.util.Map> m1 = this.hoodieRestoreMetadata; // Need fresh name due to limitation of macro system
if (m1 == null) {
m1 = new java.util.HashMap>((int)size1);
this.hoodieRestoreMetadata = m1;
} else m1.clear();
for ( ; 0 < size1; size1 = in.mapNext()) {
for ( ; size1 != 0; size1--) {
java.lang.String k1 = null;
k1 = in.readString();
java.util.List v1 = null;
long size2 = in.readArrayStart();
java.util.List a2 = v1;
if (a2 == null) {
a2 = new SpecificData.Array((int)size2, SCHEMA$.getField("hoodieRestoreMetadata").schema().getValueType());
v1 = a2;
} else a2.clear();
SpecificData.Array ga2 = (a2 instanceof SpecificData.Array ? (SpecificData.Array)a2 : null);
for ( ; 0 < size2; size2 = in.arrayNext()) {
for ( ; size2 != 0; size2--) {
org.apache.hudi.avro.model.HoodieRollbackMetadata e2 = (ga2 != null ? ga2.peek() : null);
if (in.readIndex() != 1) {
in.readNull();
e2 = null;
} else {
if (e2 == null) {
e2 = new org.apache.hudi.avro.model.HoodieRollbackMetadata();
}
e2.customDecode(in);
}
a2.add(e2);
}
}
m1.put(k1, v1);
}
}
if (in.readIndex() != 0) {
in.readNull();
this.version = null;
} else {
this.version = in.readInt();
}
long size3 = in.readArrayStart();
java.util.List a3 = this.restoreInstantInfo;
if (a3 == null) {
a3 = new SpecificData.Array((int)size3, SCHEMA$.getField("restoreInstantInfo").schema());
this.restoreInstantInfo = a3;
} else a3.clear();
SpecificData.Array ga3 = (a3 instanceof SpecificData.Array ? (SpecificData.Array)a3 : null);
for ( ; 0 < size3; size3 = in.arrayNext()) {
for ( ; size3 != 0; size3--) {
org.apache.hudi.avro.model.HoodieInstantInfo e3 = (ga3 != null ? ga3.peek() : null);
if (e3 == null) {
e3 = new org.apache.hudi.avro.model.HoodieInstantInfo();
}
e3.customDecode(in);
a3.add(e3);
}
}
} else {
for (int i = 0; i < 6; i++) {
switch (fieldOrder[i].pos()) {
case 0:
this.startRestoreTime = in.readString();
break;
case 1:
this.timeTakenInMillis = in.readLong();
break;
case 2:
long size0 = in.readArrayStart();
java.util.List a0 = this.instantsToRollback;
if (a0 == null) {
a0 = new SpecificData.Array((int)size0, SCHEMA$.getField("instantsToRollback").schema());
this.instantsToRollback = a0;
} else a0.clear();
SpecificData.Array ga0 = (a0 instanceof SpecificData.Array ? (SpecificData.Array)a0 : null);
for ( ; 0 < size0; size0 = in.arrayNext()) {
for ( ; size0 != 0; size0--) {
java.lang.String e0 = (ga0 != null ? ga0.peek() : null);
e0 = in.readString();
a0.add(e0);
}
}
break;
case 3:
long size1 = in.readMapStart();
java.util.Map> m1 = this.hoodieRestoreMetadata; // Need fresh name due to limitation of macro system
if (m1 == null) {
m1 = new java.util.HashMap>((int)size1);
this.hoodieRestoreMetadata = m1;
} else m1.clear();
for ( ; 0 < size1; size1 = in.mapNext()) {
for ( ; size1 != 0; size1--) {
java.lang.String k1 = null;
k1 = in.readString();
java.util.List v1 = null;
long size2 = in.readArrayStart();
java.util.List a2 = v1;
if (a2 == null) {
a2 = new SpecificData.Array((int)size2, SCHEMA$.getField("hoodieRestoreMetadata").schema().getValueType());
v1 = a2;
} else a2.clear();
SpecificData.Array ga2 = (a2 instanceof SpecificData.Array ? (SpecificData.Array)a2 : null);
for ( ; 0 < size2; size2 = in.arrayNext()) {
for ( ; size2 != 0; size2--) {
org.apache.hudi.avro.model.HoodieRollbackMetadata e2 = (ga2 != null ? ga2.peek() : null);
if (in.readIndex() != 1) {
in.readNull();
e2 = null;
} else {
if (e2 == null) {
e2 = new org.apache.hudi.avro.model.HoodieRollbackMetadata();
}
e2.customDecode(in);
}
a2.add(e2);
}
}
m1.put(k1, v1);
}
}
break;
case 4:
if (in.readIndex() != 0) {
in.readNull();
this.version = null;
} else {
this.version = in.readInt();
}
break;
case 5:
long size3 = in.readArrayStart();
java.util.List a3 = this.restoreInstantInfo;
if (a3 == null) {
a3 = new SpecificData.Array((int)size3, SCHEMA$.getField("restoreInstantInfo").schema());
this.restoreInstantInfo = a3;
} else a3.clear();
SpecificData.Array ga3 = (a3 instanceof SpecificData.Array ? (SpecificData.Array)a3 : null);
for ( ; 0 < size3; size3 = in.arrayNext()) {
for ( ; size3 != 0; size3--) {
org.apache.hudi.avro.model.HoodieInstantInfo e3 = (ga3 != null ? ga3.peek() : null);
if (e3 == null) {
e3 = new org.apache.hudi.avro.model.HoodieInstantInfo();
}
e3.customDecode(in);
a3.add(e3);
}
}
break;
default:
throw new java.io.IOException("Corrupt ResolvingDecoder.");
}
}
}
}
}