uk.co.real_logic.artio.other.decoder.PrinterImpl 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.decoder;
import uk.co.real_logic.artio.builder.Printer;
import uk.co.real_logic.artio.util.AsciiBuffer;
import uk.co.real_logic.artio.dictionary.Generated;
@Generated("uk.co.real_logic.artio")
public class PrinterImpl implements Printer
{
private final HeartbeatDecoder heartbeat = new HeartbeatDecoder();
private final TestRequestDecoder testRequest = new TestRequestDecoder();
private final ExampleMessageDecoder exampleMessage = new ExampleMessageDecoder();
private final ResendRequestDecoder resendRequest = new ResendRequestDecoder();
private final RejectDecoder reject = new RejectDecoder();
private final SequenceResetDecoder sequenceReset = new SequenceResetDecoder();
private final LogoutDecoder logout = new LogoutDecoder();
private final LogonDecoder logon = new LogonDecoder();
private final UserRequestDecoder userRequest = new UserRequestDecoder();
private final NewOrderSingleDecoder newOrderSingle = new NewOrderSingleDecoder();
private final ExecutionReportDecoder executionReport = new ExecutionReportDecoder();
public String toString(
final AsciiBuffer input,
final int offset,
final int length,
final long messageType)
{
if (messageType == 48L)
{
heartbeat.decode(input, offset, length);
return heartbeat.toString();
}
if (messageType == 49L)
{
testRequest.decode(input, offset, length);
return testRequest.toString();
}
if (messageType == 66L)
{
exampleMessage.decode(input, offset, length);
return exampleMessage.toString();
}
if (messageType == 50L)
{
resendRequest.decode(input, offset, length);
return resendRequest.toString();
}
if (messageType == 51L)
{
reject.decode(input, offset, length);
return reject.toString();
}
if (messageType == 52L)
{
sequenceReset.decode(input, offset, length);
return sequenceReset.toString();
}
if (messageType == 53L)
{
logout.decode(input, offset, length);
return logout.toString();
}
if (messageType == 65L)
{
logon.decode(input, offset, length);
return logon.toString();
}
if (messageType == 17730L)
{
userRequest.decode(input, offset, length);
return userRequest.toString();
}
if (messageType == 68L)
{
newOrderSingle.decode(input, offset, length);
return newOrderSingle.toString();
}
if (messageType == 56L)
{
executionReport.decode(input, offset, length);
return executionReport.toString();
}
else
{
throw new IllegalArgumentException("Unknown Message Type: " + messageType);
}
}
}