uk.co.real_logic.artio.messages.ControlNotificationDecoder 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.DirectBuffer;
/**
* notifies library instances of messages that have been acquired
*/
@SuppressWarnings("all")
public final class ControlNotificationDecoder
{
public static final int BLOCK_LENGTH = 5;
public static final int TEMPLATE_ID = 39;
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 ControlNotificationDecoder 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 ControlNotificationDecoder 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 ControlNotificationDecoder 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 ControlNotificationDecoder 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 initialAcceptedSessionOwnerId()
{
return 3;
}
public static int initialAcceptedSessionOwnerSinceVersion()
{
return 10;
}
public static int initialAcceptedSessionOwnerEncodingOffset()
{
return 4;
}
public static int initialAcceptedSessionOwnerEncodingLength()
{
return 1;
}
public static String initialAcceptedSessionOwnerMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public short initialAcceptedSessionOwnerRaw()
{
if (parentMessage.actingVersion < 10)
{
return (short)255;
}
return ((short)(buffer.getByte(offset + 4) & 0xFF));
}
public InitialAcceptedSessionOwner initialAcceptedSessionOwner()
{
if (parentMessage.actingVersion < 10)
{
return InitialAcceptedSessionOwner.NULL_VAL;
}
return InitialAcceptedSessionOwner.get(((short)(buffer.getByte(offset + 4) & 0xFF)));
}
private final SessionsDecoder sessions = new SessionsDecoder(this);
public static long sessionsDecoderId()
{
return 2;
}
public static int sessionsDecoderSinceVersion()
{
return 0;
}
public SessionsDecoder sessions()
{
sessions.wrap(buffer);
return sessions;
}
public static final class SessionsDecoder
implements Iterable, java.util.Iterator
{
public static final int HEADER_SIZE = 3;
private final ControlNotificationDecoder parentMessage;
private DirectBuffer buffer;
private int count;
private int index;
private int offset;
private int blockLength;
SessionsDecoder(final ControlNotificationDecoder parentMessage)
{
this.parentMessage = parentMessage;
}
public void wrap(final DirectBuffer buffer)
{
if (buffer != this.buffer)
{
this.buffer = buffer;
}
index = 0;
final int limit = parentMessage.limit();
parentMessage.limit(limit + HEADER_SIZE);
blockLength = (buffer.getShort(limit + 0, BYTE_ORDER) & 0xFFFF);
count = ((short)(buffer.getByte(limit + 2) & 0xFF));
}
public SessionsDecoder next()
{
if (index >= count)
{
throw new java.util.NoSuchElementException();
}
offset = parentMessage.limit();
parentMessage.limit(offset + blockLength);
++index;
return this;
}
public static short countMinValue()
{
return (short)0;
}
public static short countMaxValue()
{
return (short)254;
}
public static int sbeHeaderSize()
{
return HEADER_SIZE;
}
public static int sbeBlockLength()
{
return 8;
}
public int actingBlockLength()
{
return blockLength;
}
public int count()
{
return count;
}
public java.util.Iterator iterator()
{
return this;
}
public void remove()
{
throw new UnsupportedOperationException();
}
public boolean hasNext()
{
return index < count;
}
public static int sessionIdId()
{
return 10;
}
public static int sessionIdSinceVersion()
{
return 0;
}
public static int sessionIdEncodingOffset()
{
return 0;
}
public static int sessionIdEncodingLength()
{
return 8;
}
public static String sessionIdMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static long sessionIdNullValue()
{
return -9223372036854775808L;
}
public static long sessionIdMinValue()
{
return -9223372036854775807L;
}
public static long sessionIdMaxValue()
{
return 9223372036854775807L;
}
public long sessionId()
{
return buffer.getLong(offset + 0, BYTE_ORDER);
}
public StringBuilder appendTo(final StringBuilder builder)
{
if (null == buffer)
{
return builder;
}
builder.append('(');
builder.append("sessionId=");
builder.append(this.sessionId());
builder.append(')');
return builder;
}
public SessionsDecoder sbeSkip()
{
return this;
}
}
private final DisconnectedSessionsDecoder disconnectedSessions = new DisconnectedSessionsDecoder(this);
public static long disconnectedSessionsDecoderId()
{
return 4;
}
public static int disconnectedSessionsDecoderSinceVersion()
{
return 0;
}
public DisconnectedSessionsDecoder disconnectedSessions()
{
disconnectedSessions.wrap(buffer);
return disconnectedSessions;
}
public static final class DisconnectedSessionsDecoder
implements Iterable, java.util.Iterator
{
public static final int HEADER_SIZE = 3;
private final ControlNotificationDecoder parentMessage;
private DirectBuffer buffer;
private int count;
private int index;
private int offset;
private int blockLength;
DisconnectedSessionsDecoder(final ControlNotificationDecoder parentMessage)
{
this.parentMessage = parentMessage;
}
public void wrap(final DirectBuffer buffer)
{
if (buffer != this.buffer)
{
this.buffer = buffer;
}
index = 0;
final int limit = parentMessage.limit();
parentMessage.limit(limit + HEADER_SIZE);
blockLength = (buffer.getShort(limit + 0, BYTE_ORDER) & 0xFFFF);
count = ((short)(buffer.getByte(limit + 2) & 0xFF));
}
public DisconnectedSessionsDecoder next()
{
if (index >= count)
{
throw new java.util.NoSuchElementException();
}
offset = parentMessage.limit();
parentMessage.limit(offset + blockLength);
++index;
return this;
}
public static short countMinValue()
{
return (short)0;
}
public static short countMaxValue()
{
return (short)254;
}
public static int sbeHeaderSize()
{
return HEADER_SIZE;
}
public static int sbeBlockLength()
{
return 8;
}
public int actingBlockLength()
{
return blockLength;
}
public int count()
{
return count;
}
public java.util.Iterator iterator()
{
return this;
}
public void remove()
{
throw new UnsupportedOperationException();
}
public boolean hasNext()
{
return index < count;
}
public static int sessionIdId()
{
return 10;
}
public static int sessionIdSinceVersion()
{
return 0;
}
public static int sessionIdEncodingOffset()
{
return 0;
}
public static int sessionIdEncodingLength()
{
return 8;
}
public static String sessionIdMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static long sessionIdNullValue()
{
return -9223372036854775808L;
}
public static long sessionIdMinValue()
{
return -9223372036854775807L;
}
public static long sessionIdMaxValue()
{
return 9223372036854775807L;
}
public long sessionId()
{
return buffer.getLong(offset + 0, BYTE_ORDER);
}
public StringBuilder appendTo(final StringBuilder builder)
{
if (null == buffer)
{
return builder;
}
builder.append('(');
builder.append("sessionId=");
builder.append(this.sessionId());
builder.append(')');
return builder;
}
public DisconnectedSessionsDecoder sbeSkip()
{
return this;
}
}
public String toString()
{
if (null == buffer)
{
return "";
}
final ControlNotificationDecoder decoder = new ControlNotificationDecoder();
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("[ControlNotification](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("initialAcceptedSessionOwner=");
builder.append(this.initialAcceptedSessionOwner());
builder.append('|');
builder.append("sessions=[");
final int sessionsOriginalOffset = sessions.offset;
final int sessionsOriginalIndex = sessions.index;
final SessionsDecoder sessions = this.sessions();
if (sessions.count() > 0)
{
while (sessions.hasNext())
{
sessions.next().appendTo(builder);
builder.append(',');
}
builder.setLength(builder.length() - 1);
}
sessions.offset = sessionsOriginalOffset;
sessions.index = sessionsOriginalIndex;
builder.append(']');
builder.append('|');
builder.append("disconnectedSessions=[");
final int disconnectedSessionsOriginalOffset = disconnectedSessions.offset;
final int disconnectedSessionsOriginalIndex = disconnectedSessions.index;
final DisconnectedSessionsDecoder disconnectedSessions = this.disconnectedSessions();
if (disconnectedSessions.count() > 0)
{
while (disconnectedSessions.hasNext())
{
disconnectedSessions.next().appendTo(builder);
builder.append(',');
}
builder.setLength(builder.length() - 1);
}
disconnectedSessions.offset = disconnectedSessionsOriginalOffset;
disconnectedSessions.index = disconnectedSessionsOriginalIndex;
builder.append(']');
limit(originalLimit);
return builder;
}
public ControlNotificationDecoder sbeSkip()
{
sbeRewind();
SessionsDecoder sessions = this.sessions();
if (sessions.count() > 0)
{
while (sessions.hasNext())
{
sessions.next();
sessions.sbeSkip();
}
}
DisconnectedSessionsDecoder disconnectedSessions = this.disconnectedSessions();
if (disconnectedSessions.count() > 0)
{
while (disconnectedSessions.hasNext())
{
disconnectedSessions.next();
disconnectedSessions.sbeSkip();
}
}
return this;
}
}