
org.sackfix.fix44.TrdRegTimestampsComponent.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sackfix-messages-fix44_2.13 Show documentation
Show all versions of sackfix-messages-fix44_2.13 Show documentation
All Fix 4.4 strongly typed messages, purely generated code, do not edit.
The newest version!
package org.sackfix.fix44
import org.sackfix.field._
import org.sackfix.common.validated.fields.{SfFixComponent, SfFixDecoder, SfFixFieldsToAscii, SfFixRenderable}
import org.sackfix.common.message.SfRepeatingGroupCountException
import scala.annotation.tailrec
import scala.collection.immutable.HashSet
import scala.collection.mutable.ArrayBuffer
/**
* Generated by SackFix code generator on 20210314
* Source specification was read from:
* /quickfixj1.6.0/FIX44.xml
*/
case class TrdRegTimestampsComponent(noTrdRegTimestampsField:NoTrdRegTimestampsField,
trdRegTimestampsGroups: List[TrdRegTimestampsGroup]) extends SfFixComponent with SfFixRenderable with SfFixFieldsToAscii {
if (noTrdRegTimestampsField.value != trdRegTimestampsGroups.size)
throw SfRepeatingGroupCountException(NoTrdRegTimestampsField.TagId,noTrdRegTimestampsField.value, trdRegTimestampsGroups.size)
override lazy val fixStr : String = appendFixStr().toString
override def appendFixStr(b:StringBuilder = new StringBuilder): StringBuilder = format(formatForFix, b)
override def toString():String = appendStringBuilder().toString()
def appendStringBuilder(b:StringBuilder = new StringBuilder) : StringBuilder = format(formatForToString, b)
def format( fmt: ((StringBuilder,SfFixRenderable)=>Unit), b:StringBuilder = new StringBuilder()): StringBuilder = {
fmt(b,noTrdRegTimestampsField)
b
}
}
object TrdRegTimestampsComponent extends SfFixDecoder {
override val MandatoryFields = HashSet[Int](
NoTrdRegTimestampsField.TagId)
override def isMandatoryField(tagId:Int) : Boolean = {
MandatoryFields.contains(tagId) ||
TrdRegTimestampsGroup.isMandatoryField(tagId)
}
override val OptionalFields = HashSet[Int]()
override def isOptionalField(tagId:Int) : Boolean = {
OptionalFields.contains(tagId) ||
TrdRegTimestampsGroup.isOptionalField(tagId)
}
override def isFieldOf(tagId:Int) : Boolean = isMandatoryField(tagId) || isOptionalField(tagId) ||
TrdRegTimestampsGroup.isFieldOf(tagId)
override lazy val RepeatingGroupsTags = HashSet[Int](
NoTrdRegTimestampsField.TagId)
override def isFirstField(tagId:Int) : Boolean = TrdRegTimestampsGroup.isFirstField(tagId)
def decode(flds: Seq[Tuple2[Int, Any]], startPos:Int = 0):Option[TrdRegTimestampsComponent] = {
val (pos, myFields, nextTagPosLookup) = extractMyFieldsAndPopulatePositions(false, flds, startPos)
validateMandatoryFieldsPresent(myFields)
if (myFields.nonEmpty) {
Some(TrdRegTimestampsComponent(NoTrdRegTimestampsField.decode(myFields.get(NoTrdRegTimestampsField.TagId)).get,
if (nextTagPosLookup.contains(NoTrdRegTimestampsField.TagId)) TrdRegTimestampsGroup.decode(flds, nextTagPosLookup(NoTrdRegTimestampsField.TagId)).get else List.empty))
} else None
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy