uk.co.real_logic.artio.otf.OtfValidator 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
/*
* Copyright 2015-2024 Real Logic Limited.
*
* 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.otf;
import org.agrona.collections.IntHashSet;
import uk.co.real_logic.artio.ValidationError;
import uk.co.real_logic.artio.dictionary.LongDictionary;
import uk.co.real_logic.artio.fields.AsciiFieldFlyweight;
import uk.co.real_logic.artio.util.AsciiBuffer;
import static uk.co.real_logic.artio.ValidationError.*;
import static uk.co.real_logic.artio.dictionary.SessionConstants.MESSAGE_TYPE;
/**
* Acceptor that validates messages according to a dictionary
*/
public final class OtfValidator implements OtfMessageAcceptor
{
private static final int UNKNOWN = -1;
private final IntHashSet fieldsForMessage = new IntHashSet(1024);
private final AsciiFieldFlyweight stringField = new AsciiFieldFlyweight();
private final OtfMessageAcceptor delegate;
private final LongDictionary allFields;
private final LongDictionary requiredFields;
private int groupLevel = 0;
private long messageType;
private IntHashSet allFieldsForMessageType;
public OtfValidator(
final OtfMessageAcceptor delegate,
final LongDictionary allFields,
final LongDictionary requiredFields)
{
this.delegate = delegate;
this.allFields = allFields;
this.requiredFields = requiredFields;
}
public MessageControl onNext()
{
delegate.onNext();
fieldsForMessage.clear();
messageType = UNKNOWN;
allFieldsForMessageType = null;
return MessageControl.CONTINUE;
}
public MessageControl onComplete()
{
final IntHashSet missingFields = requiredFields.values(messageType).difference(fieldsForMessage);
if (missingFields == null)
{
return delegate.onComplete();
}
else
{
for (final int value : missingFields)
{
delegate.onError(MISSING_REQUIRED_FIELD, messageType, value, stringField);
}
}
return MessageControl.CONTINUE;
}
public MessageControl onField(final int tag, final AsciiBuffer buffer, final int offset, final int length)
{
if (groupLevel == 0)
{
if (tag == MESSAGE_TYPE)
{
messageType = buffer.getMessageType(offset, length);
allFieldsForMessageType = allFields.values(messageType);
if (allFieldsForMessageType == null)
{
delegate.onError(UNKNOWN_MESSAGE_TYPE, messageType, UNKNOWN, stringField);
return MessageControl.STOP;
}
}
else if (!allFieldsForMessageType.contains(tag))
{
delegate.onError(UNKNOWN_FIELD, messageType, tag, stringField);
return MessageControl.STOP;
}
}
fieldsForMessage.add(tag);
return delegate.onField(tag, buffer, offset, length);
}
public MessageControl onGroupHeader(final int tag, final int numInGroup)
{
groupLevel++;
return delegate.onGroupHeader(tag, numInGroup);
}
public MessageControl onGroupBegin(final int tag, final int numInGroup, final int index)
{
return delegate.onGroupBegin(tag, numInGroup, index);
}
public MessageControl onGroupEnd(final int tag, final int numInGroup, final int index)
{
final MessageControl control = delegate.onGroupEnd(tag, numInGroup, index);
if (numInGroup == index + 1)
{
groupLevel--;
}
return control;
}
public boolean onError(
final ValidationError error, final long messageType, final int tagNumber, final AsciiFieldFlyweight value)
{
return delegate.onError(error, messageType, tagNumber, value);
}
}