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

uk.co.real_logic.artio.fixp.SimpleOpenFramingHeader Maven / Gradle / Ivy

There is a newer version: 0.160
Show newest version
/*
 * Copyright 2020 Monotonic Ltd.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package uk.co.real_logic.artio.fixp;

import org.agrona.DirectBuffer;
import org.agrona.MutableDirectBuffer;

import java.nio.ByteOrder;

public final class SimpleOpenFramingHeader
{
    public static final int SOFH_MSG_SIZE_LENGTH = 2;
    public static final int SOFH_ENCODING_LENGTH = 2;
    public static final int SOFH_LENGTH = SOFH_MSG_SIZE_LENGTH + SOFH_ENCODING_LENGTH;

    public static final int SOFH_MSG_SIZE_OFFSET = 0;
    public static final int SOFH_ENCODING_OFFSET = SOFH_MSG_SIZE_LENGTH;

    public static final short CME_ENCODING_TYPE = (short)0xCAFE;
    public static final short BINARY_ENTRYPOINT_TYPE = (short)0xEB50;

    public static void writeILinkSofh(
        final MutableDirectBuffer buffer, final int offset, final int messageSize)
    {
        writeSofh(buffer, offset, messageSize, CME_ENCODING_TYPE);
    }

    public static void writeBinaryEntryPointSofh(
        final MutableDirectBuffer buffer, final int offset, final int messageSize)
    {
        writeSofh(buffer, offset, messageSize, BINARY_ENTRYPOINT_TYPE);
    }

    public static void writeSofh(
        final MutableDirectBuffer buffer, final int offset, final int messageSize, final short encodingType)
    {
        buffer.putShort(offset + SOFH_MSG_SIZE_OFFSET, (short)messageSize, ByteOrder.LITTLE_ENDIAN);
        buffer.putShort(offset + SOFH_ENCODING_OFFSET, encodingType, ByteOrder.LITTLE_ENDIAN);
    }

    public static int readSofhMessageSize(final DirectBuffer buffer, final int offset)
    {
        return buffer.getShort(offset + SOFH_MSG_SIZE_OFFSET, ByteOrder.LITTLE_ENDIAN) & 0xFFFF;
    }

    public static int readSofh(final DirectBuffer buffer, final int offset, final short expectedEncodingType)
    {
        final int messageSize = readSofhMessageSize(buffer, offset);
        final short encodingType = buffer.getShort(offset + SOFH_ENCODING_OFFSET, ByteOrder.LITTLE_ENDIAN);
        if (encodingType != expectedEncodingType)
        {
            throw new IllegalArgumentException(
                "Unsupported Encoding Type: " + encodingType + " should be " + expectedEncodingType);
        }
        return messageSize;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy