org.apache.kafka.common.message.OffsetFetchRequestData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jena-fmod-kafka Show documentation
Show all versions of jena-fmod-kafka Show documentation
Apache Jena Fuseki server Kafka connector
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// THIS CODE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
package org.apache.kafka.common.message;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.List;
import org.apache.kafka.common.errors.UnsupportedVersionException;
import org.apache.kafka.common.protocol.ApiMessage;
import org.apache.kafka.common.protocol.Message;
import org.apache.kafka.common.protocol.MessageSizeAccumulator;
import org.apache.kafka.common.protocol.MessageUtil;
import org.apache.kafka.common.protocol.ObjectSerializationCache;
import org.apache.kafka.common.protocol.Readable;
import org.apache.kafka.common.protocol.Writable;
import org.apache.kafka.common.protocol.types.ArrayOf;
import org.apache.kafka.common.protocol.types.CompactArrayOf;
import org.apache.kafka.common.protocol.types.Field;
import org.apache.kafka.common.protocol.types.RawTaggedField;
import org.apache.kafka.common.protocol.types.RawTaggedFieldWriter;
import org.apache.kafka.common.protocol.types.Schema;
import org.apache.kafka.common.protocol.types.Type;
import org.apache.kafka.common.utils.ByteUtils;
import static org.apache.kafka.common.protocol.types.Field.TaggedFieldsSection;
public class OffsetFetchRequestData implements ApiMessage {
String groupId;
List topics;
List groups;
boolean requireStable;
private List _unknownTaggedFields;
public static final Schema SCHEMA_0 =
new Schema(
new Field("group_id", Type.STRING, "The group to fetch offsets for."),
new Field("topics", new ArrayOf(OffsetFetchRequestTopic.SCHEMA_0), "Each topic we would like to fetch offsets for, or null to fetch offsets for all topics.")
);
public static final Schema SCHEMA_1 = SCHEMA_0;
public static final Schema SCHEMA_2 =
new Schema(
new Field("group_id", Type.STRING, "The group to fetch offsets for."),
new Field("topics", ArrayOf.nullable(OffsetFetchRequestTopic.SCHEMA_0), "Each topic we would like to fetch offsets for, or null to fetch offsets for all topics.")
);
public static final Schema SCHEMA_3 = SCHEMA_2;
public static final Schema SCHEMA_4 = SCHEMA_3;
public static final Schema SCHEMA_5 = SCHEMA_4;
public static final Schema SCHEMA_6 =
new Schema(
new Field("group_id", Type.COMPACT_STRING, "The group to fetch offsets for."),
new Field("topics", CompactArrayOf.nullable(OffsetFetchRequestTopic.SCHEMA_6), "Each topic we would like to fetch offsets for, or null to fetch offsets for all topics."),
TaggedFieldsSection.of(
)
);
public static final Schema SCHEMA_7 =
new Schema(
new Field("group_id", Type.COMPACT_STRING, "The group to fetch offsets for."),
new Field("topics", CompactArrayOf.nullable(OffsetFetchRequestTopic.SCHEMA_6), "Each topic we would like to fetch offsets for, or null to fetch offsets for all topics."),
new Field("require_stable", Type.BOOLEAN, "Whether broker should hold on returning unstable offsets but set a retriable error code for the partitions."),
TaggedFieldsSection.of(
)
);
public static final Schema SCHEMA_8 =
new Schema(
new Field("groups", new CompactArrayOf(OffsetFetchRequestGroup.SCHEMA_8), "Each group we would like to fetch offsets for"),
new Field("require_stable", Type.BOOLEAN, "Whether broker should hold on returning unstable offsets but set a retriable error code for the partitions."),
TaggedFieldsSection.of(
)
);
public static final Schema SCHEMA_9 =
new Schema(
new Field("groups", new CompactArrayOf(OffsetFetchRequestGroup.SCHEMA_9), "Each group we would like to fetch offsets for"),
new Field("require_stable", Type.BOOLEAN, "Whether broker should hold on returning unstable offsets but set a retriable error code for the partitions."),
TaggedFieldsSection.of(
)
);
public static final Schema[] SCHEMAS = new Schema[] {
SCHEMA_0,
SCHEMA_1,
SCHEMA_2,
SCHEMA_3,
SCHEMA_4,
SCHEMA_5,
SCHEMA_6,
SCHEMA_7,
SCHEMA_8,
SCHEMA_9
};
public static final short LOWEST_SUPPORTED_VERSION = 0;
public static final short HIGHEST_SUPPORTED_VERSION = 9;
public OffsetFetchRequestData(Readable _readable, short _version) {
read(_readable, _version);
}
public OffsetFetchRequestData() {
this.groupId = "";
this.topics = new ArrayList(0);
this.groups = new ArrayList(0);
this.requireStable = false;
}
@Override
public short apiKey() {
return 9;
}
@Override
public short lowestSupportedVersion() {
return 0;
}
@Override
public short highestSupportedVersion() {
return 9;
}
@Override
public final void read(Readable _readable, short _version) {
if (_version <= 7) {
int length;
if (_version >= 6) {
length = _readable.readUnsignedVarint() - 1;
} else {
length = _readable.readShort();
}
if (length < 0) {
throw new RuntimeException("non-nullable field groupId was serialized as null");
} else if (length > 0x7fff) {
throw new RuntimeException("string field groupId had invalid length " + length);
} else {
this.groupId = _readable.readString(length);
}
} else {
this.groupId = "";
}
if (_version <= 7) {
if (_version >= 6) {
int arrayLength;
arrayLength = _readable.readUnsignedVarint() - 1;
if (arrayLength < 0) {
this.topics = null;
} else {
if (arrayLength > _readable.remaining()) {
throw new RuntimeException("Tried to allocate a collection of size " + arrayLength + ", but there are only " + _readable.remaining() + " bytes remaining.");
}
ArrayList newCollection = new ArrayList<>(arrayLength);
for (int i = 0; i < arrayLength; i++) {
newCollection.add(new OffsetFetchRequestTopic(_readable, _version));
}
this.topics = newCollection;
}
} else {
int arrayLength;
arrayLength = _readable.readInt();
if (arrayLength < 0) {
if (_version >= 2) {
this.topics = null;
} else {
throw new RuntimeException("non-nullable field topics was serialized as null");
}
} else {
if (arrayLength > _readable.remaining()) {
throw new RuntimeException("Tried to allocate a collection of size " + arrayLength + ", but there are only " + _readable.remaining() + " bytes remaining.");
}
ArrayList newCollection = new ArrayList<>(arrayLength);
for (int i = 0; i < arrayLength; i++) {
newCollection.add(new OffsetFetchRequestTopic(_readable, _version));
}
this.topics = newCollection;
}
}
} else {
this.topics = new ArrayList(0);
}
if (_version >= 8) {
int arrayLength;
arrayLength = _readable.readUnsignedVarint() - 1;
if (arrayLength < 0) {
throw new RuntimeException("non-nullable field groups was serialized as null");
} else {
if (arrayLength > _readable.remaining()) {
throw new RuntimeException("Tried to allocate a collection of size " + arrayLength + ", but there are only " + _readable.remaining() + " bytes remaining.");
}
ArrayList newCollection = new ArrayList<>(arrayLength);
for (int i = 0; i < arrayLength; i++) {
newCollection.add(new OffsetFetchRequestGroup(_readable, _version));
}
this.groups = newCollection;
}
} else {
this.groups = new ArrayList(0);
}
if (_version >= 7) {
this.requireStable = _readable.readByte() != 0;
} else {
this.requireStable = false;
}
this._unknownTaggedFields = null;
if (_version >= 6) {
int _numTaggedFields = _readable.readUnsignedVarint();
for (int _i = 0; _i < _numTaggedFields; _i++) {
int _tag = _readable.readUnsignedVarint();
int _size = _readable.readUnsignedVarint();
switch (_tag) {
default:
this._unknownTaggedFields = _readable.readUnknownTaggedField(this._unknownTaggedFields, _tag, _size);
break;
}
}
}
}
@Override
public void write(Writable _writable, ObjectSerializationCache _cache, short _version) {
int _numTaggedFields = 0;
if (_version <= 7) {
{
byte[] _stringBytes = _cache.getSerializedValue(groupId);
if (_version >= 6) {
_writable.writeUnsignedVarint(_stringBytes.length + 1);
} else {
_writable.writeShort((short) _stringBytes.length);
}
_writable.writeByteArray(_stringBytes);
}
} else {
if (!this.groupId.equals("")) {
throw new UnsupportedVersionException("Attempted to write a non-default groupId at version " + _version);
}
}
if (_version <= 7) {
if (_version >= 6) {
if (topics == null) {
_writable.writeUnsignedVarint(0);
} else {
_writable.writeUnsignedVarint(topics.size() + 1);
for (OffsetFetchRequestTopic topicsElement : topics) {
topicsElement.write(_writable, _cache, _version);
}
}
} else {
if (topics == null) {
if (_version >= 2) {
_writable.writeInt(-1);
} else {
throw new NullPointerException();
}
} else {
_writable.writeInt(topics.size());
for (OffsetFetchRequestTopic topicsElement : topics) {
topicsElement.write(_writable, _cache, _version);
}
}
}
} else {
if (this.topics == null || !this.topics.isEmpty()) {
throw new UnsupportedVersionException("Attempted to write a non-default topics at version " + _version);
}
}
if (_version >= 8) {
_writable.writeUnsignedVarint(groups.size() + 1);
for (OffsetFetchRequestGroup groupsElement : groups) {
groupsElement.write(_writable, _cache, _version);
}
} else {
if (!this.groups.isEmpty()) {
throw new UnsupportedVersionException("Attempted to write a non-default groups at version " + _version);
}
}
if (_version >= 7) {
_writable.writeByte(requireStable ? (byte) 1 : (byte) 0);
} else {
if (this.requireStable) {
throw new UnsupportedVersionException("Attempted to write a non-default requireStable at version " + _version);
}
}
RawTaggedFieldWriter _rawWriter = RawTaggedFieldWriter.forFields(_unknownTaggedFields);
_numTaggedFields += _rawWriter.numFields();
if (_version >= 6) {
_writable.writeUnsignedVarint(_numTaggedFields);
_rawWriter.writeRawTags(_writable, Integer.MAX_VALUE);
} else {
if (_numTaggedFields > 0) {
throw new UnsupportedVersionException("Tagged fields were set, but version " + _version + " of this message does not support them.");
}
}
}
@Override
public void addSize(MessageSizeAccumulator _size, ObjectSerializationCache _cache, short _version) {
int _numTaggedFields = 0;
if (_version <= 7) {
{
byte[] _stringBytes = groupId.getBytes(StandardCharsets.UTF_8);
if (_stringBytes.length > 0x7fff) {
throw new RuntimeException("'groupId' field is too long to be serialized");
}
_cache.cacheSerializedValue(groupId, _stringBytes);
if (_version >= 6) {
_size.addBytes(_stringBytes.length + ByteUtils.sizeOfUnsignedVarint(_stringBytes.length + 1));
} else {
_size.addBytes(_stringBytes.length + 2);
}
}
}
if (_version <= 7) {
if (topics == null) {
if (_version >= 6) {
_size.addBytes(1);
} else {
_size.addBytes(4);
}
} else {
if (_version >= 6) {
_size.addBytes(ByteUtils.sizeOfUnsignedVarint(topics.size() + 1));
} else {
_size.addBytes(4);
}
for (OffsetFetchRequestTopic topicsElement : topics) {
topicsElement.addSize(_size, _cache, _version);
}
}
}
if (_version >= 8) {
{
_size.addBytes(ByteUtils.sizeOfUnsignedVarint(groups.size() + 1));
for (OffsetFetchRequestGroup groupsElement : groups) {
groupsElement.addSize(_size, _cache, _version);
}
}
}
if (_version >= 7) {
_size.addBytes(1);
}
if (_unknownTaggedFields != null) {
_numTaggedFields += _unknownTaggedFields.size();
for (RawTaggedField _field : _unknownTaggedFields) {
_size.addBytes(ByteUtils.sizeOfUnsignedVarint(_field.tag()));
_size.addBytes(ByteUtils.sizeOfUnsignedVarint(_field.size()));
_size.addBytes(_field.size());
}
}
if (_version >= 6) {
_size.addBytes(ByteUtils.sizeOfUnsignedVarint(_numTaggedFields));
} else {
if (_numTaggedFields > 0) {
throw new UnsupportedVersionException("Tagged fields were set, but version " + _version + " of this message does not support them.");
}
}
}
@Override
public boolean equals(Object obj) {
if (!(obj instanceof OffsetFetchRequestData)) return false;
OffsetFetchRequestData other = (OffsetFetchRequestData) obj;
if (this.groupId == null) {
if (other.groupId != null) return false;
} else {
if (!this.groupId.equals(other.groupId)) return false;
}
if (this.topics == null) {
if (other.topics != null) return false;
} else {
if (!this.topics.equals(other.topics)) return false;
}
if (this.groups == null) {
if (other.groups != null) return false;
} else {
if (!this.groups.equals(other.groups)) return false;
}
if (requireStable != other.requireStable) return false;
return MessageUtil.compareRawTaggedFields(_unknownTaggedFields, other._unknownTaggedFields);
}
@Override
public int hashCode() {
int hashCode = 0;
hashCode = 31 * hashCode + (groupId == null ? 0 : groupId.hashCode());
hashCode = 31 * hashCode + (topics == null ? 0 : topics.hashCode());
hashCode = 31 * hashCode + (groups == null ? 0 : groups.hashCode());
hashCode = 31 * hashCode + (requireStable ? 1231 : 1237);
return hashCode;
}
@Override
public OffsetFetchRequestData duplicate() {
OffsetFetchRequestData _duplicate = new OffsetFetchRequestData();
_duplicate.groupId = groupId;
if (topics == null) {
_duplicate.topics = null;
} else {
ArrayList newTopics = new ArrayList(topics.size());
for (OffsetFetchRequestTopic _element : topics) {
newTopics.add(_element.duplicate());
}
_duplicate.topics = newTopics;
}
ArrayList newGroups = new ArrayList(groups.size());
for (OffsetFetchRequestGroup _element : groups) {
newGroups.add(_element.duplicate());
}
_duplicate.groups = newGroups;
_duplicate.requireStable = requireStable;
return _duplicate;
}
@Override
public String toString() {
return "OffsetFetchRequestData("
+ "groupId=" + ((groupId == null) ? "null" : "'" + groupId.toString() + "'")
+ ", topics=" + ((topics == null) ? "null" : MessageUtil.deepToString(topics.iterator()))
+ ", groups=" + MessageUtil.deepToString(groups.iterator())
+ ", requireStable=" + (requireStable ? "true" : "false")
+ ")";
}
public String groupId() {
return this.groupId;
}
public List topics() {
return this.topics;
}
public List groups() {
return this.groups;
}
public boolean requireStable() {
return this.requireStable;
}
@Override
public List unknownTaggedFields() {
if (_unknownTaggedFields == null) {
_unknownTaggedFields = new ArrayList<>(0);
}
return _unknownTaggedFields;
}
public OffsetFetchRequestData setGroupId(String v) {
this.groupId = v;
return this;
}
public OffsetFetchRequestData setTopics(List v) {
this.topics = v;
return this;
}
public OffsetFetchRequestData setGroups(List v) {
this.groups = v;
return this;
}
public OffsetFetchRequestData setRequireStable(boolean v) {
this.requireStable = v;
return this;
}
public static class OffsetFetchRequestTopic implements Message {
String name;
List partitionIndexes;
private List _unknownTaggedFields;
public static final Schema SCHEMA_0 =
new Schema(
new Field("name", Type.STRING, "The topic name."),
new Field("partition_indexes", new ArrayOf(Type.INT32), "The partition indexes we would like to fetch offsets for.")
);
public static final Schema SCHEMA_1 = SCHEMA_0;
public static final Schema SCHEMA_2 = SCHEMA_1;
public static final Schema SCHEMA_3 = SCHEMA_2;
public static final Schema SCHEMA_4 = SCHEMA_3;
public static final Schema SCHEMA_5 = SCHEMA_4;
public static final Schema SCHEMA_6 =
new Schema(
new Field("name", Type.COMPACT_STRING, "The topic name."),
new Field("partition_indexes", new CompactArrayOf(Type.INT32), "The partition indexes we would like to fetch offsets for."),
TaggedFieldsSection.of(
)
);
public static final Schema SCHEMA_7 = SCHEMA_6;
public static final Schema[] SCHEMAS = new Schema[] {
SCHEMA_0,
SCHEMA_1,
SCHEMA_2,
SCHEMA_3,
SCHEMA_4,
SCHEMA_5,
SCHEMA_6,
SCHEMA_7
};
public static final short LOWEST_SUPPORTED_VERSION = 0;
public static final short HIGHEST_SUPPORTED_VERSION = 7;
public OffsetFetchRequestTopic(Readable _readable, short _version) {
read(_readable, _version);
}
public OffsetFetchRequestTopic() {
this.name = "";
this.partitionIndexes = new ArrayList(0);
}
@Override
public short lowestSupportedVersion() {
return 0;
}
@Override
public short highestSupportedVersion() {
return 9;
}
@Override
public final void read(Readable _readable, short _version) {
{
int length;
if (_version >= 6) {
length = _readable.readUnsignedVarint() - 1;
} else {
length = _readable.readShort();
}
if (length < 0) {
throw new RuntimeException("non-nullable field name was serialized as null");
} else if (length > 0x7fff) {
throw new RuntimeException("string field name had invalid length " + length);
} else {
this.name = _readable.readString(length);
}
}
{
int arrayLength;
if (_version >= 6) {
arrayLength = _readable.readUnsignedVarint() - 1;
} else {
arrayLength = _readable.readInt();
}
if (arrayLength < 0) {
throw new RuntimeException("non-nullable field partitionIndexes was serialized as null");
} else {
if (arrayLength > _readable.remaining()) {
throw new RuntimeException("Tried to allocate a collection of size " + arrayLength + ", but there are only " + _readable.remaining() + " bytes remaining.");
}
ArrayList newCollection = new ArrayList<>(arrayLength);
for (int i = 0; i < arrayLength; i++) {
newCollection.add(_readable.readInt());
}
this.partitionIndexes = newCollection;
}
}
this._unknownTaggedFields = null;
if (_version >= 6) {
int _numTaggedFields = _readable.readUnsignedVarint();
for (int _i = 0; _i < _numTaggedFields; _i++) {
int _tag = _readable.readUnsignedVarint();
int _size = _readable.readUnsignedVarint();
switch (_tag) {
default:
this._unknownTaggedFields = _readable.readUnknownTaggedField(this._unknownTaggedFields, _tag, _size);
break;
}
}
}
}
@Override
public void write(Writable _writable, ObjectSerializationCache _cache, short _version) {
if (_version > 7) {
throw new UnsupportedVersionException("Can't write version " + _version + " of OffsetFetchRequestTopic");
}
int _numTaggedFields = 0;
{
byte[] _stringBytes = _cache.getSerializedValue(name);
if (_version >= 6) {
_writable.writeUnsignedVarint(_stringBytes.length + 1);
} else {
_writable.writeShort((short) _stringBytes.length);
}
_writable.writeByteArray(_stringBytes);
}
if (_version >= 6) {
_writable.writeUnsignedVarint(partitionIndexes.size() + 1);
} else {
_writable.writeInt(partitionIndexes.size());
}
for (Integer partitionIndexesElement : partitionIndexes) {
_writable.writeInt(partitionIndexesElement);
}
RawTaggedFieldWriter _rawWriter = RawTaggedFieldWriter.forFields(_unknownTaggedFields);
_numTaggedFields += _rawWriter.numFields();
if (_version >= 6) {
_writable.writeUnsignedVarint(_numTaggedFields);
_rawWriter.writeRawTags(_writable, Integer.MAX_VALUE);
} else {
if (_numTaggedFields > 0) {
throw new UnsupportedVersionException("Tagged fields were set, but version " + _version + " of this message does not support them.");
}
}
}
@Override
public void addSize(MessageSizeAccumulator _size, ObjectSerializationCache _cache, short _version) {
int _numTaggedFields = 0;
{
byte[] _stringBytes = name.getBytes(StandardCharsets.UTF_8);
if (_stringBytes.length > 0x7fff) {
throw new RuntimeException("'name' field is too long to be serialized");
}
_cache.cacheSerializedValue(name, _stringBytes);
if (_version >= 6) {
_size.addBytes(_stringBytes.length + ByteUtils.sizeOfUnsignedVarint(_stringBytes.length + 1));
} else {
_size.addBytes(_stringBytes.length + 2);
}
}
{
if (_version >= 6) {
_size.addBytes(ByteUtils.sizeOfUnsignedVarint(partitionIndexes.size() + 1));
} else {
_size.addBytes(4);
}
_size.addBytes(partitionIndexes.size() * 4);
}
if (_unknownTaggedFields != null) {
_numTaggedFields += _unknownTaggedFields.size();
for (RawTaggedField _field : _unknownTaggedFields) {
_size.addBytes(ByteUtils.sizeOfUnsignedVarint(_field.tag()));
_size.addBytes(ByteUtils.sizeOfUnsignedVarint(_field.size()));
_size.addBytes(_field.size());
}
}
if (_version >= 6) {
_size.addBytes(ByteUtils.sizeOfUnsignedVarint(_numTaggedFields));
} else {
if (_numTaggedFields > 0) {
throw new UnsupportedVersionException("Tagged fields were set, but version " + _version + " of this message does not support them.");
}
}
}
@Override
public boolean equals(Object obj) {
if (!(obj instanceof OffsetFetchRequestTopic)) return false;
OffsetFetchRequestTopic other = (OffsetFetchRequestTopic) obj;
if (this.name == null) {
if (other.name != null) return false;
} else {
if (!this.name.equals(other.name)) return false;
}
if (this.partitionIndexes == null) {
if (other.partitionIndexes != null) return false;
} else {
if (!this.partitionIndexes.equals(other.partitionIndexes)) return false;
}
return MessageUtil.compareRawTaggedFields(_unknownTaggedFields, other._unknownTaggedFields);
}
@Override
public int hashCode() {
int hashCode = 0;
hashCode = 31 * hashCode + (name == null ? 0 : name.hashCode());
hashCode = 31 * hashCode + (partitionIndexes == null ? 0 : partitionIndexes.hashCode());
return hashCode;
}
@Override
public OffsetFetchRequestTopic duplicate() {
OffsetFetchRequestTopic _duplicate = new OffsetFetchRequestTopic();
_duplicate.name = name;
ArrayList newPartitionIndexes = new ArrayList(partitionIndexes.size());
for (Integer _element : partitionIndexes) {
newPartitionIndexes.add(_element);
}
_duplicate.partitionIndexes = newPartitionIndexes;
return _duplicate;
}
@Override
public String toString() {
return "OffsetFetchRequestTopic("
+ "name=" + ((name == null) ? "null" : "'" + name.toString() + "'")
+ ", partitionIndexes=" + MessageUtil.deepToString(partitionIndexes.iterator())
+ ")";
}
public String name() {
return this.name;
}
public List partitionIndexes() {
return this.partitionIndexes;
}
@Override
public List unknownTaggedFields() {
if (_unknownTaggedFields == null) {
_unknownTaggedFields = new ArrayList<>(0);
}
return _unknownTaggedFields;
}
public OffsetFetchRequestTopic setName(String v) {
this.name = v;
return this;
}
public OffsetFetchRequestTopic setPartitionIndexes(List v) {
this.partitionIndexes = v;
return this;
}
}
public static class OffsetFetchRequestGroup implements Message {
String groupId;
String memberId;
int memberEpoch;
List topics;
private List _unknownTaggedFields;
public static final Schema SCHEMA_8 =
new Schema(
new Field("group_id", Type.COMPACT_STRING, "The group ID."),
new Field("topics", CompactArrayOf.nullable(OffsetFetchRequestTopics.SCHEMA_8), "Each topic we would like to fetch offsets for, or null to fetch offsets for all topics."),
TaggedFieldsSection.of(
)
);
public static final Schema SCHEMA_9 =
new Schema(
new Field("group_id", Type.COMPACT_STRING, "The group ID."),
new Field("member_id", Type.COMPACT_NULLABLE_STRING, "The member ID assigned by the group coordinator if using the new consumer protocol (KIP-848)."),
new Field("member_epoch", Type.INT32, "The member epoch if using the new consumer protocol (KIP-848)."),
new Field("topics", CompactArrayOf.nullable(OffsetFetchRequestTopics.SCHEMA_8), "Each topic we would like to fetch offsets for, or null to fetch offsets for all topics."),
TaggedFieldsSection.of(
)
);
public static final Schema[] SCHEMAS = new Schema[] {
null,
null,
null,
null,
null,
null,
null,
null,
SCHEMA_8,
SCHEMA_9
};
public static final short LOWEST_SUPPORTED_VERSION = 8;
public static final short HIGHEST_SUPPORTED_VERSION = 9;
public OffsetFetchRequestGroup(Readable _readable, short _version) {
read(_readable, _version);
}
public OffsetFetchRequestGroup() {
this.groupId = "";
this.memberId = null;
this.memberEpoch = -1;
this.topics = new ArrayList(0);
}
@Override
public short lowestSupportedVersion() {
return 0;
}
@Override
public short highestSupportedVersion() {
return 9;
}
@Override
public final void read(Readable _readable, short _version) {
if (_version > 9) {
throw new UnsupportedVersionException("Can't read version " + _version + " of OffsetFetchRequestGroup");
}
{
int length;
length = _readable.readUnsignedVarint() - 1;
if (length < 0) {
throw new RuntimeException("non-nullable field groupId was serialized as null");
} else if (length > 0x7fff) {
throw new RuntimeException("string field groupId had invalid length " + length);
} else {
this.groupId = _readable.readString(length);
}
}
if (_version >= 9) {
int length;
length = _readable.readUnsignedVarint() - 1;
if (length < 0) {
this.memberId = null;
} else if (length > 0x7fff) {
throw new RuntimeException("string field memberId had invalid length " + length);
} else {
this.memberId = _readable.readString(length);
}
} else {
this.memberId = null;
}
if (_version >= 9) {
this.memberEpoch = _readable.readInt();
} else {
this.memberEpoch = -1;
}
{
int arrayLength;
arrayLength = _readable.readUnsignedVarint() - 1;
if (arrayLength < 0) {
this.topics = null;
} else {
if (arrayLength > _readable.remaining()) {
throw new RuntimeException("Tried to allocate a collection of size " + arrayLength + ", but there are only " + _readable.remaining() + " bytes remaining.");
}
ArrayList newCollection = new ArrayList<>(arrayLength);
for (int i = 0; i < arrayLength; i++) {
newCollection.add(new OffsetFetchRequestTopics(_readable, _version));
}
this.topics = newCollection;
}
}
this._unknownTaggedFields = null;
int _numTaggedFields = _readable.readUnsignedVarint();
for (int _i = 0; _i < _numTaggedFields; _i++) {
int _tag = _readable.readUnsignedVarint();
int _size = _readable.readUnsignedVarint();
switch (_tag) {
default:
this._unknownTaggedFields = _readable.readUnknownTaggedField(this._unknownTaggedFields, _tag, _size);
break;
}
}
}
@Override
public void write(Writable _writable, ObjectSerializationCache _cache, short _version) {
if (_version < 8) {
throw new UnsupportedVersionException("Can't write version " + _version + " of OffsetFetchRequestGroup");
}
int _numTaggedFields = 0;
{
byte[] _stringBytes = _cache.getSerializedValue(groupId);
_writable.writeUnsignedVarint(_stringBytes.length + 1);
_writable.writeByteArray(_stringBytes);
}
if (_version >= 9) {
if (memberId == null) {
_writable.writeUnsignedVarint(0);
} else {
byte[] _stringBytes = _cache.getSerializedValue(memberId);
_writable.writeUnsignedVarint(_stringBytes.length + 1);
_writable.writeByteArray(_stringBytes);
}
}
if (_version >= 9) {
_writable.writeInt(memberEpoch);
}
if (topics == null) {
_writable.writeUnsignedVarint(0);
} else {
_writable.writeUnsignedVarint(topics.size() + 1);
for (OffsetFetchRequestTopics topicsElement : topics) {
topicsElement.write(_writable, _cache, _version);
}
}
RawTaggedFieldWriter _rawWriter = RawTaggedFieldWriter.forFields(_unknownTaggedFields);
_numTaggedFields += _rawWriter.numFields();
_writable.writeUnsignedVarint(_numTaggedFields);
_rawWriter.writeRawTags(_writable, Integer.MAX_VALUE);
}
@Override
public void addSize(MessageSizeAccumulator _size, ObjectSerializationCache _cache, short _version) {
int _numTaggedFields = 0;
if (_version > 9) {
throw new UnsupportedVersionException("Can't size version " + _version + " of OffsetFetchRequestGroup");
}
{
byte[] _stringBytes = groupId.getBytes(StandardCharsets.UTF_8);
if (_stringBytes.length > 0x7fff) {
throw new RuntimeException("'groupId' field is too long to be serialized");
}
_cache.cacheSerializedValue(groupId, _stringBytes);
_size.addBytes(_stringBytes.length + ByteUtils.sizeOfUnsignedVarint(_stringBytes.length + 1));
}
if (_version >= 9) {
if (memberId == null) {
_size.addBytes(1);
} else {
byte[] _stringBytes = memberId.getBytes(StandardCharsets.UTF_8);
if (_stringBytes.length > 0x7fff) {
throw new RuntimeException("'memberId' field is too long to be serialized");
}
_cache.cacheSerializedValue(memberId, _stringBytes);
_size.addBytes(_stringBytes.length + ByteUtils.sizeOfUnsignedVarint(_stringBytes.length + 1));
}
}
if (_version >= 9) {
_size.addBytes(4);
}
if (topics == null) {
_size.addBytes(1);
} else {
_size.addBytes(ByteUtils.sizeOfUnsignedVarint(topics.size() + 1));
for (OffsetFetchRequestTopics topicsElement : topics) {
topicsElement.addSize(_size, _cache, _version);
}
}
if (_unknownTaggedFields != null) {
_numTaggedFields += _unknownTaggedFields.size();
for (RawTaggedField _field : _unknownTaggedFields) {
_size.addBytes(ByteUtils.sizeOfUnsignedVarint(_field.tag()));
_size.addBytes(ByteUtils.sizeOfUnsignedVarint(_field.size()));
_size.addBytes(_field.size());
}
}
_size.addBytes(ByteUtils.sizeOfUnsignedVarint(_numTaggedFields));
}
@Override
public boolean equals(Object obj) {
if (!(obj instanceof OffsetFetchRequestGroup)) return false;
OffsetFetchRequestGroup other = (OffsetFetchRequestGroup) obj;
if (this.groupId == null) {
if (other.groupId != null) return false;
} else {
if (!this.groupId.equals(other.groupId)) return false;
}
if (this.memberId == null) {
if (other.memberId != null) return false;
} else {
if (!this.memberId.equals(other.memberId)) return false;
}
if (memberEpoch != other.memberEpoch) return false;
if (this.topics == null) {
if (other.topics != null) return false;
} else {
if (!this.topics.equals(other.topics)) return false;
}
return MessageUtil.compareRawTaggedFields(_unknownTaggedFields, other._unknownTaggedFields);
}
@Override
public int hashCode() {
int hashCode = 0;
hashCode = 31 * hashCode + (groupId == null ? 0 : groupId.hashCode());
hashCode = 31 * hashCode + (memberId == null ? 0 : memberId.hashCode());
hashCode = 31 * hashCode + memberEpoch;
hashCode = 31 * hashCode + (topics == null ? 0 : topics.hashCode());
return hashCode;
}
@Override
public OffsetFetchRequestGroup duplicate() {
OffsetFetchRequestGroup _duplicate = new OffsetFetchRequestGroup();
_duplicate.groupId = groupId;
if (memberId == null) {
_duplicate.memberId = null;
} else {
_duplicate.memberId = memberId;
}
_duplicate.memberEpoch = memberEpoch;
if (topics == null) {
_duplicate.topics = null;
} else {
ArrayList newTopics = new ArrayList(topics.size());
for (OffsetFetchRequestTopics _element : topics) {
newTopics.add(_element.duplicate());
}
_duplicate.topics = newTopics;
}
return _duplicate;
}
@Override
public String toString() {
return "OffsetFetchRequestGroup("
+ "groupId=" + ((groupId == null) ? "null" : "'" + groupId.toString() + "'")
+ ", memberId=" + ((memberId == null) ? "null" : "'" + memberId.toString() + "'")
+ ", memberEpoch=" + memberEpoch
+ ", topics=" + ((topics == null) ? "null" : MessageUtil.deepToString(topics.iterator()))
+ ")";
}
public String groupId() {
return this.groupId;
}
public String memberId() {
return this.memberId;
}
public int memberEpoch() {
return this.memberEpoch;
}
public List topics() {
return this.topics;
}
@Override
public List unknownTaggedFields() {
if (_unknownTaggedFields == null) {
_unknownTaggedFields = new ArrayList<>(0);
}
return _unknownTaggedFields;
}
public OffsetFetchRequestGroup setGroupId(String v) {
this.groupId = v;
return this;
}
public OffsetFetchRequestGroup setMemberId(String v) {
this.memberId = v;
return this;
}
public OffsetFetchRequestGroup setMemberEpoch(int v) {
this.memberEpoch = v;
return this;
}
public OffsetFetchRequestGroup setTopics(List v) {
this.topics = v;
return this;
}
}
public static class OffsetFetchRequestTopics implements Message {
String name;
List partitionIndexes;
private List _unknownTaggedFields;
public static final Schema SCHEMA_8 =
new Schema(
new Field("name", Type.COMPACT_STRING, "The topic name."),
new Field("partition_indexes", new CompactArrayOf(Type.INT32), "The partition indexes we would like to fetch offsets for."),
TaggedFieldsSection.of(
)
);
public static final Schema SCHEMA_9 = SCHEMA_8;
public static final Schema[] SCHEMAS = new Schema[] {
null,
null,
null,
null,
null,
null,
null,
null,
SCHEMA_8,
SCHEMA_9
};
public static final short LOWEST_SUPPORTED_VERSION = 8;
public static final short HIGHEST_SUPPORTED_VERSION = 9;
public OffsetFetchRequestTopics(Readable _readable, short _version) {
read(_readable, _version);
}
public OffsetFetchRequestTopics() {
this.name = "";
this.partitionIndexes = new ArrayList(0);
}
@Override
public short lowestSupportedVersion() {
return 8;
}
@Override
public short highestSupportedVersion() {
return 9;
}
@Override
public final void read(Readable _readable, short _version) {
if (_version > 9) {
throw new UnsupportedVersionException("Can't read version " + _version + " of OffsetFetchRequestTopics");
}
{
int length;
length = _readable.readUnsignedVarint() - 1;
if (length < 0) {
throw new RuntimeException("non-nullable field name was serialized as null");
} else if (length > 0x7fff) {
throw new RuntimeException("string field name had invalid length " + length);
} else {
this.name = _readable.readString(length);
}
}
{
int arrayLength;
arrayLength = _readable.readUnsignedVarint() - 1;
if (arrayLength < 0) {
throw new RuntimeException("non-nullable field partitionIndexes was serialized as null");
} else {
if (arrayLength > _readable.remaining()) {
throw new RuntimeException("Tried to allocate a collection of size " + arrayLength + ", but there are only " + _readable.remaining() + " bytes remaining.");
}
ArrayList newCollection = new ArrayList<>(arrayLength);
for (int i = 0; i < arrayLength; i++) {
newCollection.add(_readable.readInt());
}
this.partitionIndexes = newCollection;
}
}
this._unknownTaggedFields = null;
int _numTaggedFields = _readable.readUnsignedVarint();
for (int _i = 0; _i < _numTaggedFields; _i++) {
int _tag = _readable.readUnsignedVarint();
int _size = _readable.readUnsignedVarint();
switch (_tag) {
default:
this._unknownTaggedFields = _readable.readUnknownTaggedField(this._unknownTaggedFields, _tag, _size);
break;
}
}
}
@Override
public void write(Writable _writable, ObjectSerializationCache _cache, short _version) {
int _numTaggedFields = 0;
{
byte[] _stringBytes = _cache.getSerializedValue(name);
_writable.writeUnsignedVarint(_stringBytes.length + 1);
_writable.writeByteArray(_stringBytes);
}
_writable.writeUnsignedVarint(partitionIndexes.size() + 1);
for (Integer partitionIndexesElement : partitionIndexes) {
_writable.writeInt(partitionIndexesElement);
}
RawTaggedFieldWriter _rawWriter = RawTaggedFieldWriter.forFields(_unknownTaggedFields);
_numTaggedFields += _rawWriter.numFields();
_writable.writeUnsignedVarint(_numTaggedFields);
_rawWriter.writeRawTags(_writable, Integer.MAX_VALUE);
}
@Override
public void addSize(MessageSizeAccumulator _size, ObjectSerializationCache _cache, short _version) {
int _numTaggedFields = 0;
if (_version > 9) {
throw new UnsupportedVersionException("Can't size version " + _version + " of OffsetFetchRequestTopics");
}
{
byte[] _stringBytes = name.getBytes(StandardCharsets.UTF_8);
if (_stringBytes.length > 0x7fff) {
throw new RuntimeException("'name' field is too long to be serialized");
}
_cache.cacheSerializedValue(name, _stringBytes);
_size.addBytes(_stringBytes.length + ByteUtils.sizeOfUnsignedVarint(_stringBytes.length + 1));
}
{
_size.addBytes(ByteUtils.sizeOfUnsignedVarint(partitionIndexes.size() + 1));
_size.addBytes(partitionIndexes.size() * 4);
}
if (_unknownTaggedFields != null) {
_numTaggedFields += _unknownTaggedFields.size();
for (RawTaggedField _field : _unknownTaggedFields) {
_size.addBytes(ByteUtils.sizeOfUnsignedVarint(_field.tag()));
_size.addBytes(ByteUtils.sizeOfUnsignedVarint(_field.size()));
_size.addBytes(_field.size());
}
}
_size.addBytes(ByteUtils.sizeOfUnsignedVarint(_numTaggedFields));
}
@Override
public boolean equals(Object obj) {
if (!(obj instanceof OffsetFetchRequestTopics)) return false;
OffsetFetchRequestTopics other = (OffsetFetchRequestTopics) obj;
if (this.name == null) {
if (other.name != null) return false;
} else {
if (!this.name.equals(other.name)) return false;
}
if (this.partitionIndexes == null) {
if (other.partitionIndexes != null) return false;
} else {
if (!this.partitionIndexes.equals(other.partitionIndexes)) return false;
}
return MessageUtil.compareRawTaggedFields(_unknownTaggedFields, other._unknownTaggedFields);
}
@Override
public int hashCode() {
int hashCode = 0;
hashCode = 31 * hashCode + (name == null ? 0 : name.hashCode());
hashCode = 31 * hashCode + (partitionIndexes == null ? 0 : partitionIndexes.hashCode());
return hashCode;
}
@Override
public OffsetFetchRequestTopics duplicate() {
OffsetFetchRequestTopics _duplicate = new OffsetFetchRequestTopics();
_duplicate.name = name;
ArrayList newPartitionIndexes = new ArrayList(partitionIndexes.size());
for (Integer _element : partitionIndexes) {
newPartitionIndexes.add(_element);
}
_duplicate.partitionIndexes = newPartitionIndexes;
return _duplicate;
}
@Override
public String toString() {
return "OffsetFetchRequestTopics("
+ "name=" + ((name == null) ? "null" : "'" + name.toString() + "'")
+ ", partitionIndexes=" + MessageUtil.deepToString(partitionIndexes.iterator())
+ ")";
}
public String name() {
return this.name;
}
public List partitionIndexes() {
return this.partitionIndexes;
}
@Override
public List unknownTaggedFields() {
if (_unknownTaggedFields == null) {
_unknownTaggedFields = new ArrayList<>(0);
}
return _unknownTaggedFields;
}
public OffsetFetchRequestTopics setName(String v) {
this.name = v;
return this;
}
public OffsetFetchRequestTopics setPartitionIndexes(List v) {
this.partitionIndexes = v;
return this;
}
}
}