uk.co.real_logic.artio.messages.InitiateConnectionEncoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artio-codecs Show documentation
Show all versions of artio-codecs Show documentation
High-Performance FIX Gateway
/* Generated SBE (Simple Binary Encoding) message codec. */
package uk.co.real_logic.artio.messages;
import org.agrona.MutableDirectBuffer;
import org.agrona.DirectBuffer;
/**
* Try to make an outbound connection
*/
@SuppressWarnings("all")
public final class InitiateConnectionEncoder
{
public static final int BLOCK_LENGTH = 37;
public static final int TEMPLATE_ID = 11;
public static final int SCHEMA_ID = 666;
public static final int SCHEMA_VERSION = 25;
public static final String SEMANTIC_VERSION = "0.2";
public static final java.nio.ByteOrder BYTE_ORDER = java.nio.ByteOrder.LITTLE_ENDIAN;
private final InitiateConnectionEncoder parentMessage = this;
private MutableDirectBuffer buffer;
private int offset;
private int limit;
public int sbeBlockLength()
{
return BLOCK_LENGTH;
}
public int sbeTemplateId()
{
return TEMPLATE_ID;
}
public int sbeSchemaId()
{
return SCHEMA_ID;
}
public int sbeSchemaVersion()
{
return SCHEMA_VERSION;
}
public String sbeSemanticType()
{
return "";
}
public MutableDirectBuffer buffer()
{
return buffer;
}
public int offset()
{
return offset;
}
public InitiateConnectionEncoder wrap(final MutableDirectBuffer buffer, final int offset)
{
if (buffer != this.buffer)
{
this.buffer = buffer;
}
this.offset = offset;
limit(offset + BLOCK_LENGTH);
return this;
}
public InitiateConnectionEncoder wrapAndApplyHeader(
final MutableDirectBuffer buffer, final int offset, final MessageHeaderEncoder headerEncoder)
{
headerEncoder
.wrap(buffer, offset)
.blockLength(BLOCK_LENGTH)
.templateId(TEMPLATE_ID)
.schemaId(SCHEMA_ID)
.version(SCHEMA_VERSION);
return wrap(buffer, offset + MessageHeaderEncoder.ENCODED_LENGTH);
}
public int encodedLength()
{
return limit - offset;
}
public int limit()
{
return limit;
}
public void limit(final int limit)
{
this.limit = limit;
}
public static int libraryIdId()
{
return 1;
}
public static int libraryIdSinceVersion()
{
return 0;
}
public static int libraryIdEncodingOffset()
{
return 0;
}
public static int libraryIdEncodingLength()
{
return 4;
}
public static String libraryIdMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int libraryIdNullValue()
{
return -2147483648;
}
public static int libraryIdMinValue()
{
return -2147483647;
}
public static int libraryIdMaxValue()
{
return 2147483647;
}
public InitiateConnectionEncoder libraryId(final int value)
{
buffer.putInt(offset + 0, value, BYTE_ORDER);
return this;
}
public static int requestedInitialReceivedSequenceNumberId()
{
return 2;
}
public static int requestedInitialReceivedSequenceNumberSinceVersion()
{
return 0;
}
public static int requestedInitialReceivedSequenceNumberEncodingOffset()
{
return 4;
}
public static int requestedInitialReceivedSequenceNumberEncodingLength()
{
return 4;
}
public static String requestedInitialReceivedSequenceNumberMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int requestedInitialReceivedSequenceNumberNullValue()
{
return -2147483648;
}
public static int requestedInitialReceivedSequenceNumberMinValue()
{
return -2147483647;
}
public static int requestedInitialReceivedSequenceNumberMaxValue()
{
return 2147483647;
}
public InitiateConnectionEncoder requestedInitialReceivedSequenceNumber(final int value)
{
buffer.putInt(offset + 4, value, BYTE_ORDER);
return this;
}
public static int sequenceNumberTypeId()
{
return 3;
}
public static int sequenceNumberTypeSinceVersion()
{
return 0;
}
public static int sequenceNumberTypeEncodingOffset()
{
return 8;
}
public static int sequenceNumberTypeEncodingLength()
{
return 1;
}
public static String sequenceNumberTypeMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public InitiateConnectionEncoder sequenceNumberType(final SequenceNumberType value)
{
buffer.putByte(offset + 8, (byte)value.value());
return this;
}
public static int portId()
{
return 4;
}
public static int portSinceVersion()
{
return 0;
}
public static int portEncodingOffset()
{
return 9;
}
public static int portEncodingLength()
{
return 4;
}
public static String portMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int portNullValue()
{
return -2147483648;
}
public static int portMinValue()
{
return -2147483647;
}
public static int portMaxValue()
{
return 2147483647;
}
public InitiateConnectionEncoder port(final int value)
{
buffer.putInt(offset + 9, value, BYTE_ORDER);
return this;
}
public static int heartbeatIntervalInSId()
{
return 5;
}
public static int heartbeatIntervalInSSinceVersion()
{
return 0;
}
public static int heartbeatIntervalInSEncodingOffset()
{
return 13;
}
public static int heartbeatIntervalInSEncodingLength()
{
return 4;
}
public static String heartbeatIntervalInSMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int heartbeatIntervalInSNullValue()
{
return -2147483648;
}
public static int heartbeatIntervalInSMinValue()
{
return -2147483647;
}
public static int heartbeatIntervalInSMaxValue()
{
return 2147483647;
}
public InitiateConnectionEncoder heartbeatIntervalInS(final int value)
{
buffer.putInt(offset + 13, value, BYTE_ORDER);
return this;
}
public static int resetSequenceNumberId()
{
return 6;
}
public static int resetSequenceNumberSinceVersion()
{
return 0;
}
public static int resetSequenceNumberEncodingOffset()
{
return 17;
}
public static int resetSequenceNumberEncodingLength()
{
return 1;
}
public static String resetSequenceNumberMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public InitiateConnectionEncoder resetSequenceNumber(final ResetSequenceNumber value)
{
buffer.putByte(offset + 17, (byte)value.value());
return this;
}
public static int correlationIdId()
{
return 7;
}
public static int correlationIdSinceVersion()
{
return 0;
}
public static int correlationIdEncodingOffset()
{
return 18;
}
public static int correlationIdEncodingLength()
{
return 8;
}
public static String correlationIdMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static long correlationIdNullValue()
{
return -9223372036854775808L;
}
public static long correlationIdMinValue()
{
return -9223372036854775807L;
}
public static long correlationIdMaxValue()
{
return 9223372036854775807L;
}
public InitiateConnectionEncoder correlationId(final long value)
{
buffer.putLong(offset + 18, value, BYTE_ORDER);
return this;
}
public static int requestedInitialSentSequenceNumberId()
{
return 17;
}
public static int requestedInitialSentSequenceNumberSinceVersion()
{
return 0;
}
public static int requestedInitialSentSequenceNumberEncodingOffset()
{
return 26;
}
public static int requestedInitialSentSequenceNumberEncodingLength()
{
return 4;
}
public static String requestedInitialSentSequenceNumberMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int requestedInitialSentSequenceNumberNullValue()
{
return -2147483648;
}
public static int requestedInitialSentSequenceNumberMinValue()
{
return -2147483647;
}
public static int requestedInitialSentSequenceNumberMaxValue()
{
return 2147483647;
}
public InitiateConnectionEncoder requestedInitialSentSequenceNumber(final int value)
{
buffer.putInt(offset + 26, value, BYTE_ORDER);
return this;
}
public static int closedResendIntervalId()
{
return 18;
}
public static int closedResendIntervalSinceVersion()
{
return 0;
}
public static int closedResendIntervalEncodingOffset()
{
return 30;
}
public static int closedResendIntervalEncodingLength()
{
return 1;
}
public static String closedResendIntervalMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public InitiateConnectionEncoder closedResendInterval(final Bool value)
{
buffer.putByte(offset + 30, (byte)value.value());
return this;
}
public static int resendRequestChunkSizeId()
{
return 19;
}
public static int resendRequestChunkSizeSinceVersion()
{
return 0;
}
public static int resendRequestChunkSizeEncodingOffset()
{
return 31;
}
public static int resendRequestChunkSizeEncodingLength()
{
return 4;
}
public static String resendRequestChunkSizeMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int resendRequestChunkSizeNullValue()
{
return -2147483648;
}
public static int resendRequestChunkSizeMinValue()
{
return -2147483647;
}
public static int resendRequestChunkSizeMaxValue()
{
return 2147483647;
}
public InitiateConnectionEncoder resendRequestChunkSize(final int value)
{
buffer.putInt(offset + 31, value, BYTE_ORDER);
return this;
}
public static int sendRedundantResendRequestsId()
{
return 20;
}
public static int sendRedundantResendRequestsSinceVersion()
{
return 0;
}
public static int sendRedundantResendRequestsEncodingOffset()
{
return 35;
}
public static int sendRedundantResendRequestsEncodingLength()
{
return 1;
}
public static String sendRedundantResendRequestsMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public InitiateConnectionEncoder sendRedundantResendRequests(final Bool value)
{
buffer.putByte(offset + 35, (byte)value.value());
return this;
}
public static int enableLastMsgSeqNumProcessedId()
{
return 21;
}
public static int enableLastMsgSeqNumProcessedSinceVersion()
{
return 0;
}
public static int enableLastMsgSeqNumProcessedEncodingOffset()
{
return 36;
}
public static int enableLastMsgSeqNumProcessedEncodingLength()
{
return 1;
}
public static String enableLastMsgSeqNumProcessedMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public InitiateConnectionEncoder enableLastMsgSeqNumProcessed(final Bool value)
{
buffer.putByte(offset + 36, (byte)value.value());
return this;
}
public static int hostId()
{
return 8;
}
public static String hostCharacterEncoding()
{
return java.nio.charset.StandardCharsets.UTF_8.name();
}
public static String hostMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int hostHeaderLength()
{
return 2;
}
public InitiateConnectionEncoder putHost(final DirectBuffer src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public InitiateConnectionEncoder putHost(final byte[] src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public InitiateConnectionEncoder host(final String value)
{
final byte[] bytes = (null == value || value.isEmpty()) ? org.agrona.collections.ArrayUtil.EMPTY_BYTE_ARRAY : value.getBytes(java.nio.charset.StandardCharsets.UTF_8);
final int length = bytes.length;
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, bytes, 0, length);
return this;
}
public static int senderCompIdId()
{
return 9;
}
public static String senderCompIdCharacterEncoding()
{
return java.nio.charset.StandardCharsets.UTF_8.name();
}
public static String senderCompIdMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int senderCompIdHeaderLength()
{
return 2;
}
public InitiateConnectionEncoder putSenderCompId(final DirectBuffer src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public InitiateConnectionEncoder putSenderCompId(final byte[] src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public InitiateConnectionEncoder senderCompId(final String value)
{
final byte[] bytes = (null == value || value.isEmpty()) ? org.agrona.collections.ArrayUtil.EMPTY_BYTE_ARRAY : value.getBytes(java.nio.charset.StandardCharsets.UTF_8);
final int length = bytes.length;
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, bytes, 0, length);
return this;
}
public static int senderSubIdId()
{
return 10;
}
public static String senderSubIdCharacterEncoding()
{
return java.nio.charset.StandardCharsets.UTF_8.name();
}
public static String senderSubIdMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int senderSubIdHeaderLength()
{
return 2;
}
public InitiateConnectionEncoder putSenderSubId(final DirectBuffer src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public InitiateConnectionEncoder putSenderSubId(final byte[] src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public InitiateConnectionEncoder senderSubId(final String value)
{
final byte[] bytes = (null == value || value.isEmpty()) ? org.agrona.collections.ArrayUtil.EMPTY_BYTE_ARRAY : value.getBytes(java.nio.charset.StandardCharsets.UTF_8);
final int length = bytes.length;
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, bytes, 0, length);
return this;
}
public static int senderLocationIdId()
{
return 11;
}
public static String senderLocationIdCharacterEncoding()
{
return java.nio.charset.StandardCharsets.UTF_8.name();
}
public static String senderLocationIdMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int senderLocationIdHeaderLength()
{
return 2;
}
public InitiateConnectionEncoder putSenderLocationId(final DirectBuffer src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public InitiateConnectionEncoder putSenderLocationId(final byte[] src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public InitiateConnectionEncoder senderLocationId(final String value)
{
final byte[] bytes = (null == value || value.isEmpty()) ? org.agrona.collections.ArrayUtil.EMPTY_BYTE_ARRAY : value.getBytes(java.nio.charset.StandardCharsets.UTF_8);
final int length = bytes.length;
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, bytes, 0, length);
return this;
}
public static int targetCompIdId()
{
return 12;
}
public static String targetCompIdCharacterEncoding()
{
return java.nio.charset.StandardCharsets.UTF_8.name();
}
public static String targetCompIdMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int targetCompIdHeaderLength()
{
return 2;
}
public InitiateConnectionEncoder putTargetCompId(final DirectBuffer src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public InitiateConnectionEncoder putTargetCompId(final byte[] src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public InitiateConnectionEncoder targetCompId(final String value)
{
final byte[] bytes = (null == value || value.isEmpty()) ? org.agrona.collections.ArrayUtil.EMPTY_BYTE_ARRAY : value.getBytes(java.nio.charset.StandardCharsets.UTF_8);
final int length = bytes.length;
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, bytes, 0, length);
return this;
}
public static int targetSubIdId()
{
return 13;
}
public static String targetSubIdCharacterEncoding()
{
return java.nio.charset.StandardCharsets.UTF_8.name();
}
public static String targetSubIdMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int targetSubIdHeaderLength()
{
return 2;
}
public InitiateConnectionEncoder putTargetSubId(final DirectBuffer src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public InitiateConnectionEncoder putTargetSubId(final byte[] src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public InitiateConnectionEncoder targetSubId(final String value)
{
final byte[] bytes = (null == value || value.isEmpty()) ? org.agrona.collections.ArrayUtil.EMPTY_BYTE_ARRAY : value.getBytes(java.nio.charset.StandardCharsets.UTF_8);
final int length = bytes.length;
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, bytes, 0, length);
return this;
}
public static int targetLocationIdId()
{
return 14;
}
public static String targetLocationIdCharacterEncoding()
{
return java.nio.charset.StandardCharsets.UTF_8.name();
}
public static String targetLocationIdMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int targetLocationIdHeaderLength()
{
return 2;
}
public InitiateConnectionEncoder putTargetLocationId(final DirectBuffer src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public InitiateConnectionEncoder putTargetLocationId(final byte[] src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public InitiateConnectionEncoder targetLocationId(final String value)
{
final byte[] bytes = (null == value || value.isEmpty()) ? org.agrona.collections.ArrayUtil.EMPTY_BYTE_ARRAY : value.getBytes(java.nio.charset.StandardCharsets.UTF_8);
final int length = bytes.length;
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, bytes, 0, length);
return this;
}
public static int usernameId()
{
return 15;
}
public static String usernameCharacterEncoding()
{
return java.nio.charset.StandardCharsets.UTF_8.name();
}
public static String usernameMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int usernameHeaderLength()
{
return 2;
}
public InitiateConnectionEncoder putUsername(final DirectBuffer src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public InitiateConnectionEncoder putUsername(final byte[] src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public InitiateConnectionEncoder username(final String value)
{
final byte[] bytes = (null == value || value.isEmpty()) ? org.agrona.collections.ArrayUtil.EMPTY_BYTE_ARRAY : value.getBytes(java.nio.charset.StandardCharsets.UTF_8);
final int length = bytes.length;
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, bytes, 0, length);
return this;
}
public static int passwordId()
{
return 16;
}
public static String passwordCharacterEncoding()
{
return java.nio.charset.StandardCharsets.UTF_8.name();
}
public static String passwordMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int passwordHeaderLength()
{
return 2;
}
public InitiateConnectionEncoder putPassword(final DirectBuffer src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public InitiateConnectionEncoder putPassword(final byte[] src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public InitiateConnectionEncoder password(final String value)
{
final byte[] bytes = (null == value || value.isEmpty()) ? org.agrona.collections.ArrayUtil.EMPTY_BYTE_ARRAY : value.getBytes(java.nio.charset.StandardCharsets.UTF_8);
final int length = bytes.length;
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, bytes, 0, length);
return this;
}
public static int fixDictionaryId()
{
return 22;
}
public static String fixDictionaryCharacterEncoding()
{
return java.nio.charset.StandardCharsets.UTF_8.name();
}
public static String fixDictionaryMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int fixDictionaryHeaderLength()
{
return 2;
}
public InitiateConnectionEncoder putFixDictionary(final DirectBuffer src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public InitiateConnectionEncoder putFixDictionary(final byte[] src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public InitiateConnectionEncoder fixDictionary(final String value)
{
final byte[] bytes = (null == value || value.isEmpty()) ? org.agrona.collections.ArrayUtil.EMPTY_BYTE_ARRAY : value.getBytes(java.nio.charset.StandardCharsets.UTF_8);
final int length = bytes.length;
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, bytes, 0, length);
return this;
}
public String toString()
{
if (null == buffer)
{
return "";
}
return appendTo(new StringBuilder()).toString();
}
public StringBuilder appendTo(final StringBuilder builder)
{
if (null == buffer)
{
return builder;
}
final InitiateConnectionDecoder decoder = new InitiateConnectionDecoder();
decoder.wrap(buffer, offset, BLOCK_LENGTH, SCHEMA_VERSION);
return decoder.appendTo(builder);
}
}