All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.co.real_logic.artio.messages.ReplayMessagesDecoder Maven / Gradle / Ivy

/* Generated SBE (Simple Binary Encoding) message codec. */
package uk.co.real_logic.artio.messages;

import org.agrona.DirectBuffer;

@SuppressWarnings("all")
public final class ReplayMessagesDecoder
{
    public static final int BLOCK_LENGTH = 44;
    public static final int TEMPLATE_ID = 53;
    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 ReplayMessagesDecoder 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 ReplayMessagesDecoder 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 ReplayMessagesDecoder 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 ReplayMessagesDecoder 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 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 int libraryId()
    {
        return buffer.getInt(offset + 0, BYTE_ORDER);
    }


    public static int sessionId()
    {
        return 2;
    }

    public static int sessionSinceVersion()
    {
        return 0;
    }

    public static int sessionEncodingOffset()
    {
        return 4;
    }

    public static int sessionEncodingLength()
    {
        return 8;
    }

    public static String sessionMetaAttribute(final MetaAttribute metaAttribute)
    {
        if (MetaAttribute.PRESENCE == metaAttribute)
        {
            return "required";
        }

        return "";
    }

    public static long sessionNullValue()
    {
        return -9223372036854775808L;
    }

    public static long sessionMinValue()
    {
        return -9223372036854775807L;
    }

    public static long sessionMaxValue()
    {
        return 9223372036854775807L;
    }

    public long session()
    {
        return buffer.getLong(offset + 4, BYTE_ORDER);
    }


    public static int correlationIdId()
    {
        return 3;
    }

    public static int correlationIdSinceVersion()
    {
        return 0;
    }

    public static int correlationIdEncodingOffset()
    {
        return 12;
    }

    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 long correlationId()
    {
        return buffer.getLong(offset + 12, BYTE_ORDER);
    }


    public static int replayFromSequenceNumberId()
    {
        return 4;
    }

    public static int replayFromSequenceNumberSinceVersion()
    {
        return 0;
    }

    public static int replayFromSequenceNumberEncodingOffset()
    {
        return 20;
    }

    public static int replayFromSequenceNumberEncodingLength()
    {
        return 4;
    }

    public static String replayFromSequenceNumberMetaAttribute(final MetaAttribute metaAttribute)
    {
        if (MetaAttribute.PRESENCE == metaAttribute)
        {
            return "required";
        }

        return "";
    }

    public static int replayFromSequenceNumberNullValue()
    {
        return -2147483648;
    }

    public static int replayFromSequenceNumberMinValue()
    {
        return -2147483647;
    }

    public static int replayFromSequenceNumberMaxValue()
    {
        return 2147483647;
    }

    public int replayFromSequenceNumber()
    {
        return buffer.getInt(offset + 20, BYTE_ORDER);
    }


    public static int replayFromSequenceIndexId()
    {
        return 5;
    }

    public static int replayFromSequenceIndexSinceVersion()
    {
        return 0;
    }

    public static int replayFromSequenceIndexEncodingOffset()
    {
        return 24;
    }

    public static int replayFromSequenceIndexEncodingLength()
    {
        return 4;
    }

    public static String replayFromSequenceIndexMetaAttribute(final MetaAttribute metaAttribute)
    {
        if (MetaAttribute.PRESENCE == metaAttribute)
        {
            return "required";
        }

        return "";
    }

    public static int replayFromSequenceIndexNullValue()
    {
        return -2147483648;
    }

    public static int replayFromSequenceIndexMinValue()
    {
        return -2147483647;
    }

    public static int replayFromSequenceIndexMaxValue()
    {
        return 2147483647;
    }

    public int replayFromSequenceIndex()
    {
        return buffer.getInt(offset + 24, BYTE_ORDER);
    }


    public static int replayToSequenceNumberId()
    {
        return 6;
    }

    public static int replayToSequenceNumberSinceVersion()
    {
        return 0;
    }

    public static int replayToSequenceNumberEncodingOffset()
    {
        return 28;
    }

    public static int replayToSequenceNumberEncodingLength()
    {
        return 4;
    }

    public static String replayToSequenceNumberMetaAttribute(final MetaAttribute metaAttribute)
    {
        if (MetaAttribute.PRESENCE == metaAttribute)
        {
            return "required";
        }

        return "";
    }

    public static int replayToSequenceNumberNullValue()
    {
        return -2147483648;
    }

    public static int replayToSequenceNumberMinValue()
    {
        return -2147483647;
    }

    public static int replayToSequenceNumberMaxValue()
    {
        return 2147483647;
    }

    public int replayToSequenceNumber()
    {
        return buffer.getInt(offset + 28, BYTE_ORDER);
    }


    public static int replayToSequenceIndexId()
    {
        return 7;
    }

    public static int replayToSequenceIndexSinceVersion()
    {
        return 0;
    }

    public static int replayToSequenceIndexEncodingOffset()
    {
        return 32;
    }

    public static int replayToSequenceIndexEncodingLength()
    {
        return 4;
    }

    public static String replayToSequenceIndexMetaAttribute(final MetaAttribute metaAttribute)
    {
        if (MetaAttribute.PRESENCE == metaAttribute)
        {
            return "required";
        }

        return "";
    }

    public static int replayToSequenceIndexNullValue()
    {
        return -2147483648;
    }

    public static int replayToSequenceIndexMinValue()
    {
        return -2147483647;
    }

    public static int replayToSequenceIndexMaxValue()
    {
        return 2147483647;
    }

    public int replayToSequenceIndex()
    {
        return buffer.getInt(offset + 32, BYTE_ORDER);
    }


    public static int latestReplyArrivalTimeInMsId()
    {
        return 8;
    }

    public static int latestReplyArrivalTimeInMsSinceVersion()
    {
        return 0;
    }

    public static int latestReplyArrivalTimeInMsEncodingOffset()
    {
        return 36;
    }

    public static int latestReplyArrivalTimeInMsEncodingLength()
    {
        return 8;
    }

    public static String latestReplyArrivalTimeInMsMetaAttribute(final MetaAttribute metaAttribute)
    {
        if (MetaAttribute.PRESENCE == metaAttribute)
        {
            return "required";
        }

        return "";
    }

    public static long latestReplyArrivalTimeInMsNullValue()
    {
        return -9223372036854775808L;
    }

    public static long latestReplyArrivalTimeInMsMinValue()
    {
        return -9223372036854775807L;
    }

    public static long latestReplyArrivalTimeInMsMaxValue()
    {
        return 9223372036854775807L;
    }

    public long latestReplyArrivalTimeInMs()
    {
        return buffer.getLong(offset + 36, BYTE_ORDER);
    }


    public String toString()
    {
        if (null == buffer)
        {
            return "";
        }

        final ReplayMessagesDecoder decoder = new ReplayMessagesDecoder();
        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("[ReplayMessages](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("libraryId=");
        builder.append(this.libraryId());
        builder.append('|');
        builder.append("session=");
        builder.append(this.session());
        builder.append('|');
        builder.append("correlationId=");
        builder.append(this.correlationId());
        builder.append('|');
        builder.append("replayFromSequenceNumber=");
        builder.append(this.replayFromSequenceNumber());
        builder.append('|');
        builder.append("replayFromSequenceIndex=");
        builder.append(this.replayFromSequenceIndex());
        builder.append('|');
        builder.append("replayToSequenceNumber=");
        builder.append(this.replayToSequenceNumber());
        builder.append('|');
        builder.append("replayToSequenceIndex=");
        builder.append(this.replayToSequenceIndex());
        builder.append('|');
        builder.append("latestReplyArrivalTimeInMs=");
        builder.append(this.latestReplyArrivalTimeInMs());

        limit(originalLimit);

        return builder;
    }
    
    public ReplayMessagesDecoder sbeSkip()
    {
        sbeRewind();

        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy