uk.co.real_logic.artio.other.builder.ExampleMessageEncoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artio-session-codecs Show documentation
Show all versions of artio-session-codecs Show documentation
High-Performance FIX Gateway
/* Generated Fix Gateway message codec */
package uk.co.real_logic.artio.other.builder;
import uk.co.real_logic.artio.dictionary.Generated;
import org.agrona.MutableDirectBuffer;
import org.agrona.AsciiSequenceView;
import static uk.co.real_logic.artio.dictionary.generation.CodecUtil.*;
import static uk.co.real_logic.artio.dictionary.SessionConstants.*;
import uk.co.real_logic.artio.builder.Encoder;
import uk.co.real_logic.artio.other.builder.HeaderEncoder;
import uk.co.real_logic.artio.other.builder.TrailerEncoder;
import uk.co.real_logic.artio.fields.ReadOnlyDecimalFloat;
import uk.co.real_logic.artio.fields.DecimalFloat;
import uk.co.real_logic.artio.util.MutableAsciiBuffer;
import uk.co.real_logic.artio.util.AsciiBuffer;
import uk.co.real_logic.artio.fields.LocalMktDateEncoder;
import uk.co.real_logic.artio.fields.UtcTimestampEncoder;
import java.nio.charset.StandardCharsets;
import java.util.Arrays;
import uk.co.real_logic.artio.dictionary.CharArraySet;
import org.agrona.collections.IntHashSet;
import org.agrona.collections.IntHashSet.IntIterator;
import uk.co.real_logic.artio.EncodingException;
import uk.co.real_logic.artio.dictionary.CharArrayWrapper;
import org.agrona.DirectBuffer;
import org.agrona.MutableDirectBuffer;
import org.agrona.concurrent.UnsafeBuffer;
import org.agrona.AsciiSequenceView;
import uk.co.real_logic.artio.builder.FieldBagEncoder;
import static java.nio.charset.StandardCharsets.US_ASCII;
import static uk.co.real_logic.artio.builder.Validation.CODEC_VALIDATION_ENABLED;
import static uk.co.real_logic.artio.builder.RejectUnknownField.CODEC_REJECT_UNKNOWN_FIELD_ENABLED;
import static uk.co.real_logic.artio.builder.RejectUnknownEnumValue.CODEC_REJECT_UNKNOWN_ENUM_VALUE_ENABLED;
import uk.co.real_logic.artio.other.*;
@Generated("uk.co.real_logic.artio")
public class ExampleMessageEncoder implements Encoder
{
public long messageType()
{
return 66L;
}
public ExampleMessageEncoder()
{
header.msgType("B");
}
private final TrailerEncoder trailer = new TrailerEncoder();
public TrailerEncoder trailer()
{
return trailer;
}
private final HeaderEncoder header = new HeaderEncoder();
public HeaderEncoder header()
{
return header;
}
private static final int textHeaderLength = 3;
private static final byte[] textHeader = new byte[] {53, 56, (byte) '='};
private final MutableDirectBuffer text = new UnsafeBuffer();
private byte[] textInternalBuffer = text.byteArray();
private int textOffset = 0;
private int textLength = 0;
/* Text = 58 */
public ExampleMessageEncoder text(final DirectBuffer value, final int offset, final int length)
{
text.wrap(value);
textOffset = offset;
textLength = length;
return this;
}
/* Text = 58 */
public ExampleMessageEncoder text(final DirectBuffer value, final int length)
{
return text(value, 0, length);
}
/* Text = 58 */
public ExampleMessageEncoder text(final DirectBuffer value)
{
return text(value, 0, value.capacity());
}
/* Text = 58 */
public ExampleMessageEncoder text(final byte[] value, final int offset, final int length)
{
text.wrap(value);
textOffset = offset;
textLength = length;
return this;
}
/* Text = 58 */
public ExampleMessageEncoder textAsCopy(final byte[] value, final int offset, final int length)
{
if (copyInto(text, value, offset, length))
{
textInternalBuffer = text.byteArray();
}
textOffset = 0;
textLength = length;
return this;
}
/* Text = 58 */
public ExampleMessageEncoder text(final byte[] value, final int length)
{
return text(value, 0, length);
}
/* Text = 58 */
public ExampleMessageEncoder text(final byte[] value)
{
return text(value, 0, value.length);
}
/* Text = 58 */
public boolean hasText()
{
return textLength > 0;
}
/* Text = 58 */
public MutableDirectBuffer text()
{
return text;
}
/* Text = 58 */
public String textAsString()
{
return text.getStringWithoutLengthAscii(textOffset, textLength);
}
/* Text = 58 */
public ExampleMessageEncoder text(final CharSequence value)
{
if (toBytes(value, text))
{
textInternalBuffer = text.byteArray();
}
textOffset = 0;
textLength = value.length();
return this;
}
/* Text = 58 */
public ExampleMessageEncoder text(final AsciiSequenceView value)
{
final DirectBuffer buffer = value.buffer();
if (buffer != null)
{
text.wrap(buffer);
textOffset = value.offset();
textLength = value.length();
}
return this;
}
/* Text = 58 */
public ExampleMessageEncoder text(final char[] value)
{
return text(value, 0, value.length);
}
/* Text = 58 */
public ExampleMessageEncoder text(final char[] value, final int length)
{
return text(value, 0, length);
}
/* Text = 58 */
public ExampleMessageEncoder text(final char[] value, final int offset, final int length)
{
if (toBytes(value, text, offset, length))
{
textInternalBuffer = text.byteArray();
}
textOffset = 0;
textLength = length;
return this;
}
public long encode(final MutableAsciiBuffer buffer, final int offset)
{
final long startMessageResult = header.startMessage(buffer, offset);
final int bodyStart = Encoder.offset(startMessageResult);
int position = bodyStart + Encoder.length(startMessageResult);
if (textLength > 0)
{
buffer.putBytes(position, textHeader, 0, textHeaderLength);
position += textHeaderLength;
buffer.putBytes(position, text, textOffset, textLength);
position += textLength;
buffer.putSeparator(position);
position++;
}
position += trailer.startTrailer(buffer, position);
final int messageStart = header.finishHeader(buffer, bodyStart, position - bodyStart);
return trailer.finishMessage(buffer, messageStart, position);
}
public void reset()
{
header.reset();
trailer.reset();
resetMessage();
}
public void resetMessage()
{
this.resetText();
}
public void resetText()
{
textLength = 0;
text.wrap(textInternalBuffer);
}
public String toString()
{
return appendTo(new StringBuilder()).toString();
}
public StringBuilder appendTo(final StringBuilder builder)
{
return appendTo(builder, 1);
}
public StringBuilder appendTo(final StringBuilder builder, final int level)
{
builder.append("{\n"); indent(builder, level);
builder.append("\"MessageName\": \"ExampleMessage\",\n");
builder.append(" \"header\": ");
header.appendTo(builder, level + 1);
builder.append("\n");
if (hasText())
{
indent(builder, level);
builder.append("\"Text\": \"");
appendBuffer(builder, text, textOffset, textLength);
builder.append("\",\n");
}
indent(builder, level - 1);
builder.append("}");
return builder;
}
public ExampleMessageEncoder copyTo(final Encoder encoder)
{
return copyTo((ExampleMessageEncoder)encoder);
}
public ExampleMessageEncoder copyTo(final ExampleMessageEncoder encoder)
{
encoder.reset();
if (hasText())
{
encoder.textAsCopy(text.byteArray(), 0, textLength);
}
return encoder;
}
}