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.
/* Generated SBE (Simple Binary Encoding) message codec. */
package io.camunda.zeebe.protocol.record;
import org.agrona.MutableDirectBuffer;
import org.agrona.DirectBuffer;
import org.agrona.sbe.*;
@SuppressWarnings("all")
public final class ExecuteCommandRequestDecoder implements MessageDecoderFlyweight
{
public static final int BLOCK_LENGTH = 20;
public static final int TEMPLATE_ID = 20;
public static final int SCHEMA_ID = 0;
public static final int SCHEMA_VERSION = 5;
public static final String SEMANTIC_VERSION = "8.6.0-alpha4-rc1";
public static final java.nio.ByteOrder BYTE_ORDER = java.nio.ByteOrder.LITTLE_ENDIAN;
private final ExecuteCommandRequestDecoder parentMessage = this;
private DirectBuffer buffer;
private int offset;
private int limit;
int actingBlockLength;
int actingVersion;
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 DirectBuffer buffer()
{
return buffer;
}
public int offset()
{
return offset;
}
public ExecuteCommandRequestDecoder wrap(
final DirectBuffer buffer,
final int offset,
final int actingBlockLength,
final int actingVersion)
{
if (buffer != this.buffer)
{
this.buffer = buffer;
}
this.offset = offset;
this.actingBlockLength = actingBlockLength;
this.actingVersion = actingVersion;
limit(offset + actingBlockLength);
return this;
}
public ExecuteCommandRequestDecoder wrapAndApplyHeader(
final DirectBuffer buffer,
final int offset,
final MessageHeaderDecoder headerDecoder)
{
headerDecoder.wrap(buffer, offset);
final int templateId = headerDecoder.templateId();
if (TEMPLATE_ID != templateId)
{
throw new IllegalStateException("Invalid TEMPLATE_ID: " + templateId);
}
return wrap(
buffer,
offset + MessageHeaderDecoder.ENCODED_LENGTH,
headerDecoder.blockLength(),
headerDecoder.version());
}
public ExecuteCommandRequestDecoder sbeRewind()
{
return wrap(buffer, offset, actingBlockLength, actingVersion);
}
public int sbeDecodedLength()
{
final int currentLimit = limit();
sbeSkip();
final int decodedLength = encodedLength();
limit(currentLimit);
return decodedLength;
}
public int actingVersion()
{
return actingVersion;
}
public int encodedLength()
{
return limit - offset;
}
public int limit()
{
return limit;
}
public void limit(final int limit)
{
this.limit = limit;
}
public static int partitionIdId()
{
return 1;
}
public static int partitionIdSinceVersion()
{
return 0;
}
public static int partitionIdEncodingOffset()
{
return 0;
}
public static int partitionIdEncodingLength()
{
return 2;
}
public static String partitionIdMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int partitionIdNullValue()
{
return 65535;
}
public static int partitionIdMinValue()
{
return 0;
}
public static int partitionIdMaxValue()
{
return 65534;
}
public int partitionId()
{
return (buffer.getShort(offset + 0, BYTE_ORDER) & 0xFFFF);
}
public static int keyId()
{
return 4;
}
public static int keySinceVersion()
{
return 0;
}
public static int keyEncodingOffset()
{
return 2;
}
public static int keyEncodingLength()
{
return 8;
}
public static String keyMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static long keyNullValue()
{
return 0xffffffffffffffffL;
}
public static long keyMinValue()
{
return 0x0L;
}
public static long keyMaxValue()
{
return 0xfffffffffffffffeL;
}
public long key()
{
return buffer.getLong(offset + 2, BYTE_ORDER);
}
public static int valueTypeId()
{
return 5;
}
public static int valueTypeSinceVersion()
{
return 0;
}
public static int valueTypeEncodingOffset()
{
return 10;
}
public static int valueTypeEncodingLength()
{
return 1;
}
public static String valueTypeMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public short valueTypeRaw()
{
return ((short)(buffer.getByte(offset + 10) & 0xFF));
}
public ValueType valueType()
{
return ValueType.get(((short)(buffer.getByte(offset + 10) & 0xFF)));
}
public static int intentId()
{
return 6;
}
public static int intentSinceVersion()
{
return 0;
}
public static int intentEncodingOffset()
{
return 11;
}
public static int intentEncodingLength()
{
return 1;
}
public static String intentMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static short intentNullValue()
{
return (short)255;
}
public static short intentMinValue()
{
return (short)0;
}
public static short intentMaxValue()
{
return (short)254;
}
public short intent()
{
return ((short)(buffer.getByte(offset + 11) & 0xFF));
}
public static int operationReferenceId()
{
return 9;
}
public static int operationReferenceSinceVersion()
{
return 5;
}
public static int operationReferenceEncodingOffset()
{
return 12;
}
public static int operationReferenceEncodingLength()
{
return 8;
}
public static String operationReferenceMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "optional";
}
return "";
}
public static long operationReferenceNullValue()
{
return 0xffffffffffffffffL;
}
public static long operationReferenceMinValue()
{
return 0x0L;
}
public static long operationReferenceMaxValue()
{
return 0xfffffffffffffffeL;
}
public long operationReference()
{
if (parentMessage.actingVersion < 5)
{
return 0xffffffffffffffffL;
}
return buffer.getLong(offset + 12, BYTE_ORDER);
}
public static int valueId()
{
return 7;
}
public static int valueSinceVersion()
{
return 0;
}
public static String valueCharacterEncoding()
{
return java.nio.charset.StandardCharsets.UTF_8.name();
}
public static String valueMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int valueHeaderLength()
{
return 4;
}
public int valueLength()
{
final int limit = parentMessage.limit();
return (int)(buffer.getInt(limit, BYTE_ORDER) & 0xFFFF_FFFFL);
}
public int skipValue()
{
final int headerLength = 4;
final int limit = parentMessage.limit();
final int dataLength = (int)(buffer.getInt(limit, BYTE_ORDER) & 0xFFFF_FFFFL);
final int dataOffset = limit + headerLength;
parentMessage.limit(dataOffset + dataLength);
return dataLength;
}
public int getValue(final MutableDirectBuffer dst, final int dstOffset, final int length)
{
final int headerLength = 4;
final int limit = parentMessage.limit();
final int dataLength = (int)(buffer.getInt(limit, BYTE_ORDER) & 0xFFFF_FFFFL);
final int bytesCopied = Math.min(length, dataLength);
parentMessage.limit(limit + headerLength + dataLength);
buffer.getBytes(limit + headerLength, dst, dstOffset, bytesCopied);
return bytesCopied;
}
public int getValue(final byte[] dst, final int dstOffset, final int length)
{
final int headerLength = 4;
final int limit = parentMessage.limit();
final int dataLength = (int)(buffer.getInt(limit, BYTE_ORDER) & 0xFFFF_FFFFL);
final int bytesCopied = Math.min(length, dataLength);
parentMessage.limit(limit + headerLength + dataLength);
buffer.getBytes(limit + headerLength, dst, dstOffset, bytesCopied);
return bytesCopied;
}
public void wrapValue(final DirectBuffer wrapBuffer)
{
final int headerLength = 4;
final int limit = parentMessage.limit();
final int dataLength = (int)(buffer.getInt(limit, BYTE_ORDER) & 0xFFFF_FFFFL);
parentMessage.limit(limit + headerLength + dataLength);
wrapBuffer.wrap(buffer, limit + headerLength, dataLength);
}
public String value()
{
final int headerLength = 4;
final int limit = parentMessage.limit();
final int dataLength = (int)(buffer.getInt(limit, BYTE_ORDER) & 0xFFFF_FFFFL);
parentMessage.limit(limit + headerLength + dataLength);
if (0 == dataLength)
{
return "";
}
final byte[] tmp = new byte[dataLength];
buffer.getBytes(limit + headerLength, tmp, 0, dataLength);
return new String(tmp, java.nio.charset.StandardCharsets.UTF_8);
}
public static int authorizationId()
{
return 8;
}
public static int authorizationSinceVersion()
{
return 4;
}
public static String authorizationCharacterEncoding()
{
return java.nio.charset.StandardCharsets.UTF_8.name();
}
public static String authorizationMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int authorizationHeaderLength()
{
return 4;
}
public int authorizationLength()
{
if (parentMessage.actingVersion < 4)
{
return 0;
}
final int limit = parentMessage.limit();
return (int)(buffer.getInt(limit, BYTE_ORDER) & 0xFFFF_FFFFL);
}
public int skipAuthorization()
{
if (parentMessage.actingVersion < 4)
{
return 0;
}
final int headerLength = 4;
final int limit = parentMessage.limit();
final int dataLength = (int)(buffer.getInt(limit, BYTE_ORDER) & 0xFFFF_FFFFL);
final int dataOffset = limit + headerLength;
parentMessage.limit(dataOffset + dataLength);
return dataLength;
}
public int getAuthorization(final MutableDirectBuffer dst, final int dstOffset, final int length)
{
if (parentMessage.actingVersion < 4)
{
return 0;
}
final int headerLength = 4;
final int limit = parentMessage.limit();
final int dataLength = (int)(buffer.getInt(limit, BYTE_ORDER) & 0xFFFF_FFFFL);
final int bytesCopied = Math.min(length, dataLength);
parentMessage.limit(limit + headerLength + dataLength);
buffer.getBytes(limit + headerLength, dst, dstOffset, bytesCopied);
return bytesCopied;
}
public int getAuthorization(final byte[] dst, final int dstOffset, final int length)
{
if (parentMessage.actingVersion < 4)
{
return 0;
}
final int headerLength = 4;
final int limit = parentMessage.limit();
final int dataLength = (int)(buffer.getInt(limit, BYTE_ORDER) & 0xFFFF_FFFFL);
final int bytesCopied = Math.min(length, dataLength);
parentMessage.limit(limit + headerLength + dataLength);
buffer.getBytes(limit + headerLength, dst, dstOffset, bytesCopied);
return bytesCopied;
}
public void wrapAuthorization(final DirectBuffer wrapBuffer)
{
if (parentMessage.actingVersion < 4)
{
wrapBuffer.wrap(buffer, offset, 0);
return;
}
final int headerLength = 4;
final int limit = parentMessage.limit();
final int dataLength = (int)(buffer.getInt(limit, BYTE_ORDER) & 0xFFFF_FFFFL);
parentMessage.limit(limit + headerLength + dataLength);
wrapBuffer.wrap(buffer, limit + headerLength, dataLength);
}
public String authorization()
{
if (parentMessage.actingVersion < 4)
{
return "";
}
final int headerLength = 4;
final int limit = parentMessage.limit();
final int dataLength = (int)(buffer.getInt(limit, BYTE_ORDER) & 0xFFFF_FFFFL);
parentMessage.limit(limit + headerLength + dataLength);
if (0 == dataLength)
{
return "";
}
final byte[] tmp = new byte[dataLength];
buffer.getBytes(limit + headerLength, tmp, 0, dataLength);
return new String(tmp, java.nio.charset.StandardCharsets.UTF_8);
}
public String toString()
{
if (null == buffer)
{
return "";
}
final ExecuteCommandRequestDecoder decoder = new ExecuteCommandRequestDecoder();
decoder.wrap(buffer, offset, actingBlockLength, actingVersion);
return decoder.appendTo(new StringBuilder()).toString();
}
public StringBuilder appendTo(final StringBuilder builder)
{
if (null == buffer)
{
return builder;
}
final int originalLimit = limit();
limit(offset + actingBlockLength);
builder.append("[ExecuteCommandRequest](sbeTemplateId=");
builder.append(TEMPLATE_ID);
builder.append("|sbeSchemaId=");
builder.append(SCHEMA_ID);
builder.append("|sbeSchemaVersion=");
if (parentMessage.actingVersion != SCHEMA_VERSION)
{
builder.append(parentMessage.actingVersion);
builder.append('/');
}
builder.append(SCHEMA_VERSION);
builder.append("|sbeBlockLength=");
if (actingBlockLength != BLOCK_LENGTH)
{
builder.append(actingBlockLength);
builder.append('/');
}
builder.append(BLOCK_LENGTH);
builder.append("):");
builder.append("partitionId=");
builder.append(this.partitionId());
builder.append('|');
builder.append("key=");
builder.append(this.key());
builder.append('|');
builder.append("valueType=");
builder.append(this.valueType());
builder.append('|');
builder.append("intent=");
builder.append(this.intent());
builder.append('|');
builder.append("operationReference=");
builder.append(this.operationReference());
builder.append('|');
builder.append("value=");
builder.append('\'').append(value()).append('\'');
builder.append('|');
builder.append("authorization=");
builder.append('\'').append(authorization()).append('\'');
limit(originalLimit);
return builder;
}
public ExecuteCommandRequestDecoder sbeSkip()
{
sbeRewind();
skipValue();
skipAuthorization();
return this;
}
}