Field Declarations(3.2)
The syntax for fields of a sequential record, record field declarations , are declared as follows:
<field_type> <field_name> : <field options> ;
Primitive Field Types
The following primitive types are supported:
Primitive Field Type | Description |
---|---|
| ASCII encoded string. This type may also be used for other types of string encodings with the |
| Special type used to encode a BER encoded size specification. It decodes to the BER length specification as well as the length of the length specification itself. The type makes it possible to decode some special cases of BER encoded data without using ASN.1 format specifications. The special option |
| Array of digits encoded in BCD. Nibble order can be specified as |
| Byte array. |
| A special case of |
float types ( | Binary encoded float value. This type supports IEEE754 standard 32-bit and 64-bit data encodings. The only difference between float and double is that the field is automatically mapped to their corresponding internal type. |
integer types ( byte , short , int , long , bigint ) | Binary coded integer value. The first byte is the most significant (that is, big endian order). The field can be used with the field options The only difference between the types, when using an automatic Note! Since the integer types are handled internally as fixed-length signed integers (except for bigint), there can be overflows in both decoding and encoding. If this occurs the integer values are truncated. |
msp_length
| Special type used to decode the length field in a Siemens MSP billing event. The length field specifies the event length excluding the length field itself. external MSP_BILLING_EVENT { msp_length l : external_only; ascii v : dynamic_size(l); }; |
list
| Type that can be used to decode a list of elements. external MySubUDR { int dataLength : static_size(1); ascii secretData : dynamic_size(dataLength); }; external MyUDR { int elementCount : terminated_by(":"); list<MySubUDR> myList : element_count(elementCount); int userType : terminated_by(0xA); }; The list can have any of the following field size options |
Primitive Field Options
Primitive Field Option | Description |
---|---|
| Specifies that the field is encoded with the encoding named |
| Specifies that the encoded value of the field always is |
| Informs the decoder that the value is actually a |
| Informs the decoder that the value is actually an integer of decimal or hexadecimal base and that the automatic mapping of the field is of the internal type |
| The least significant bit of the field is |
| The most significant bit of the field is |
| Specifies the number of BCD digits for a bcd declared field. This size does not cover field size calculation and |
byte_alignment(<int_constant>)
| Specifies that a field begins at the next even multiple of an alignment byte size. The value must be an even power of 2 (for example 1, 2, 4, or 8). This field option can also be used in a Note! The |
Field Size Specifications
Field Size Specification | Description |
---|---|
| Used to specify a static size of a field (in bytes) |
| Used to specify a dynamic size of a field (in bytes) |
element_count(<expr>) | Used to specify the size of a list field (in number of elements) |
| Used to specify a dynamic field terminated by a specific constant |
| Used to specify a size of a field (in bits). This size specification can only be used inside a |
| Used to specify padding character |
| Specifies that the field is left aligned, default |
| Specifies that the field is right aligned |
When decoding a field, the size calculation is done in two steps. First the occupying size is calculated. This is the required field size in the record. After that the core size and offset is calculated, which is the part of the field actually decoded into the internal field.
The occupying size is calculated as follows:
- If
static_size
is speci fied, this one is used.
- If
dynamic_size
is specified, then this one is used.
- If
element_count
is specified, then this one is used.
- If
terminated_by
is specified, then this one is used. The field size includes the termination character but will never take up more than the total remaining size in the UDR. (The reason that this is not considered as a decoding error is to support thetrailing_optional
field option).
- Otherwise (if the field type supports it) the field size will be deduced directly from the type. This is supported by constructed types (sub-records) and the
asn_length
primitive type.
The core field data always has the full occupying size for constructed fields (record fields). For primitive fields the size is specified as follows:
For a BCD field, with
native_size
specified, this along with the alignment specification is used.
If
terminated_by
is used to find the occupying size, this terminator char (or nibble for BCD) is removed.
Any padding is removed (while considering the alignment specification). The padding is either specified with
padded_with
or withterminated_by
providing the occupying size is not calculated using the terminator (this case is present due to historical reasons and in current versionspadded_with
should be used instead). If the field is an ASCII field, space is used as default padding.
Field Options for Optional Fields
The following field options are used to specify when a field is present.
Field Option | Description |
---|---|
| The field is present if the |
| The field is present unless the end of the UDR data has been reached. This is a convenient option equivalent to |
Other Field Options
Field Option | Description |
---|---|
external_only | The field will not be automatically created in the |
udr_size and remaining_size
Fields may need to use the size of the containing record in expressions. This is done by using the udr_size
keyword.
Example - udr_size
external SimpleSequential { int recordType : static_size(1); ascii secretData : dynamic_size(udr_size-1); };
In the previous example, the size of SimpleSequential
is unknown at declaration time. However, when a size is provided (specified in a parent record type), the secretData
field will occupy this entire space minus one byte (which is used by the recordType
field in this example).
Note!
If the size is not supplied by a parent record, the record size calculation rules will result in an undefined size since the udr_size
value is unavailable before the size has been calculated. This would cause a decoding error.
The other special value that depends on the record size is remaining_size
, which is the size remaining until the end of the record. The previous example could have been written using remaining_size
instead of udr_size
, and is shown in the following example.
Example - remaining_size
external SimpleSequential { int recordType : static_size(1); ascii secretData : dynamic_size(remaining_size); };
Bit Blocks
Bit blocks are used when the data record contains fields that are not byte aligned. When declaring fields in bit blocks there are two ways to specify which bits to use for the field content. When using a bit_block
of a single byte, it is possible to specify the most and least significant bit of the field using msb
and lsb
, as previously described. The alternative is to use the bit_size
option to specify the number of bits spanned by the field.
You can also use the byte_alignment
field option if you need to specify from which byte a field begins. This field option can only be used for decoding. For further information on byte_alignment
, see the section above, Primitive Field Types.
The general syntax of the bit blocks is as follows:
bit_block : <size specification> [, present if(<cond>) ] { <bit_block contents> };
Example - bit_block with msb and lsb
bit_block : static_size(1) { int LACLength : msb(7), lsb(4); int OwnerIDLength : msb(3), lsb(0); };
Example - bit_block with bit_size
bit_block int hour : bit_size(5); int minute: bit_size(6); int second: bit_size(6); int eventId: bit_size(3); };
Example - bit_block with byte_alignment
This example shows how the byte_alignment
field option can be used in a bit_block
, in which the secondBit
field begins in the last byte in a bit_block
of five bytes:
external BitBlock_ByteAlignment { bit_block : static_size(5) { byte firstBit: bit_size(1); byte secondBit: bit_size(1), byte_alignment(4); }; };
Except for simple fields, a bit_block
can contain repeat_block
constructs in the contents part. For a description of repeat_block
see the section below, Repeat Blocks.
Repeat Blocks
A repeat_block
can be used to specify that a group of fields is to be repeated a specified number of times. Currently this construct can only be used inside bit_block
structures or another repeat_block
structure. However this is restricted to a maximum of two levels of repeat_block. See the example below.
You can also use the byte_alignment
field option if you need to specify from which byte a field begins. This field option can only be used for decoding. For further information on byte_alignment
, see the section above, Primitive Field Types.
The general syntax of the repeat blocks is as follows:
repeat_block ( <repeat count> ) { <repeat_block fields> };
Example - repeat_block
external BitBlockTest { bit_block : dynamic_size(remaining_size){ int string_count: bit_size(8); repeat_block(string_count) { int string_length: bit_size(8); repeat_block(string_length) { int character: bit_size(8); }; }; }; };
In the UDR Internal Format Browser, the structure of the UDR Type for this example appears as shown below:
Note!
It is not possible to encode to a structure containing a repeat_block
.
Constructed Types
A sequential field can be a type that is an instance of another external format.
Example - Constructed types
external MyParentFormat { int field1 : static_size(4); MyEnclosedFormat field1; };
Here MyEnclosedFormat
can be any external format.
set Construct
The set
construct is used for decoding formats containing optional blocks of additional data. The syntax of the set Construct is declared as follows:
Example - set Construct
external MyFormat: dynamic_size(recordSize) { int recordSize: static_size(4); set : dynamic_size( remaining_size ) { MyPackage1 package1: optional; MyPackage2 package2: optional; list<MyPackage3> package3; }; };
All the formats, MyPackage1-3
, must be declared with the identified_by
option. The optional packages may appear in any order in the input file, however it is confirmed they do not appear more than once. Currently all fields in a set
construct must be declared optional.
If the field type in the set is a list type, the set may contain multiple records of the list element type. The list type fields are not optional. Instead, when no matching records are found, the list is empty.
If a size is not specified on the set level, Ultra cannot validate that all the data in the UDR has been decoded. The user is therefore recommended to specify the size, unless the set size in advance is unknown (for instance if the record is terminated by a terminator package or the set size calculation is needed for the record size calculation). The dynamic_size(remaining_size)
specification used in the previous example is often correct.
switched_set Construct
The switched_set
construct can often be used instead of the set
construct. It has advantages (in performance and in ease of usage) especially when the separate sub-packages are simple. The syntax is however more complex compared to the basic set
construct. The syntax of the switched_set construct is declared as follows:
switched_set( <switch field> ) [: <size specification> ] { <prefix fields> <switch cases> [<default case>] };
The size specification is allowed to contain normal size options. The other parts of the declaration are the prefix fields, decoded for each package in the set and the prefix fields. All the prefixes must have static sizes. The switch field must be one of the prefix fields.The syntax of the switch case is declared as follows:
case( <case value> ) [: include_prefix] { <case fields> };
The case fields are normal field specifications with the additional possibility of declaring list fields for the case where a package can be present repeatedly. If include_prefix
is specified, then the case body will be decoded including the prefix fields. The syntax of the default case is declared as follows:
default [: include_prefix] { <case fields> };
The decoding of a switched_set
is performed according to the following steps:
Decode the prefix fields.
Decode the case matching the value of the switch field. If no case matches, decode the default case. If there is no default case, end the
switched_set
decoding.
Repeat steps 1-2 until the
switched_set
size (or the end of the UDR) has been reached.
Example - Format with a switched_set:
external SwitchedSetExample: terminated_by(0xA) { // Size is remaining_size -1 (minus the terminator linefeed) switched_set( packageId ): dynamic_size( remaining_size - 1 ) { ascii packageId: int(base10), static_size(1); ascii packageLength: static_size(1), int(base10), encode_value( case_size - 2 ); case(1) { list<ascii> list1: dynamic_size( packageLength ); }; case(2): include_prefix { ascii packageId_3: int(base10), static_size(1), encode_value(3), external_only; ascii packageLength_3: int(base10), static_size(1), encode_value(case_size - 2), external_only; ascii body_3: dynamic_size( packageLength_3 ); }; default: include_prefix { list<ascii> defaultContent: dynamic_size( packageLength + 2 ); }; }; };
Encoding Specifications and Expressions
To support encoding to binary formats, it is often necessary to explicitly specify which value to be encoded in the external fields. Normally the value is taken from the corresponding internal field, however there are cases when this is not desirable. For instance, if there is no mapped internal field (because the external_only
option has been used), or the value must be calculated from information about the encoding (for instance, udr_size
). This is done through the encode_value
option and there are several special constructs that may be used in the value expression (see the section above, Primitive Field Types).
udr_size
- evaluates to the encoded size of the UDR. That means this is not necessarily the same value as during decoding.
field_size(fieldName)
- evaluates to the encoded size of the named field.
field_present(fieldName)
- evaluates totrue
if the named field is present in the encoding. It is always true for non-optional external fields.
case_size
- this is only usable withinswitched_set
blocks and evaluates to the encoded size of the current case (including prefix fields).
If the size expressions are used, the field encoding has to be postponed until the size is known. To be able to do this, Ultra requires that any such fields are static_size
. An example of these concepts is presented next.
Example - Encoding specifications and expressions
external Ext: dynamic_size( udrSize ) { ascii udrSize: int(base10), static_size(3), align(right), padded_with("0"), encode_value( udr_size ); ascii fieldSize: int(base10), static_size(3), align(right), padded_with("0"), encode_value( field_present( strField ) ? field_size( strField ):0 ); ascii strField: dynamic_size( fieldSize ), present if( fieldSize > 0 ); };
When processing an encode_value
instruction, Ultra automatically decides how to convert the value depending on the result type of the expression. When deciding this, Ultra starts with the default internal type of the external field. If in this case, the type is called defaultType
and the expression type is encodeType
, the encoding rules are:
If the
defaultType
is assignable fromencodeType
, use the default mapping.
If the
defaultType
isstring
orbytearray
and theencodeType
is numeric, encode it as a simple ascii value (one byte).
If the
defaultType
isbytearray
and theencodeType
isstring
, do standard encoding (ISO-8859-1
) of the string.
If the
encodeType
isstring
and the external base type isascii
(for example usingint(base10)
), use direct string encoding.
If none of these rules are applicable, the format will not compile. To understand what this means, consider the following field definitions.
Example - Field definitions
ascii strField1: static_size(1), encode_value("10"); ascii strField2: static_size(1), encode_value(10); ascii intField1: static_size(1), int(base10), encode_value("10"); ascii intField2: static_size(1), int(base10), encode_value(10);
Expected encoded results for these fields:
Field | Expected encoded result |
---|---|
| Both |
|
|
|
|
|
|