The serialization library for the Octopus Configuration Language (OCL).
See EBNF notation.
newline = "\n" | "\r\n"
name = { non_whitespace }
integer = { digit }
decimal = integer, ".", integer
string = double_quote, { not_a_double_quote }, double_quote
empty_array = "[", "]"
string_array = "[", { string }, "]"
decimal_array = "[", { decimal }, "]"
integer_array = "[", { integer }, "]"
literal = string | heredoc | decimal | integer | empty_array | string_array | decimal_array | integer_array
dictionary_key = string | { not_a_double_quote_or_whitespace }
dictionary_entry = dictionary_key, "=", literal
dictionary = "{", newline, [ dictionary_entry, newline ], "}", newline
label = string
attribute = name, "=", literal | dictionary
block = name, { label }, "{", newline, [ body, newline ], "}", newline
body = { block | attribute }
document = body
Names identify a block or attribute. A Name can consist of any non-whitespace character.
Names do not need to be unique. Attributes with the same name in the same block as another attribute or block is generally not supported by the target schema. Blocks with the same name are common as that is the way to define lists of complex types.
integers
and decimals
are supported.
Exponential syntax (i.e. 1e6
) is not supported
e.g.
int_attribute = 1
decimal_attribute = 1.3
String can be declared by placing it between two "
characters.
Special character escaping is currently not supported. Therefore the string cannot contain a "
.
Strings can also be declared by using the Heredoc syntax. <<
starts the heardoc block, followed by the "tag", which is one or more
non-whitespace characters. This tag, when it appears on a line by itself (other than whitespace) denotes the end of the block. All lines
between the start and end lines are taken verbatim as the string value.
Escaping of characters is not support and is not required.
e.g.
string_attribute = <<EOF
This
is
the "value"
EOF
represents the string
This
is
the "value"
The indentation if often important, and left justifying makes the file less readable. Therefore if the Heredoc block starts with <<-
instead of <<
,
the block can be indented. It works by finding the least indented non-whitespace-only line and unindenting by that number of characters. Tabs are treated
as a single character.
e.g.
string_attribute = <<-EOF
This
is
the "value"
EOF
represents the string
This
is
the "value"
Attributes are name value pairs.
The name, =
, and start of the value must be on the same line.
Hashes or dictionaries are not supported.
Valid:
int_attribute = 1
heredoc_attribute = <<EOF
Text
EOF
Invalid:
int_attribute =
1
int_attribute
= 1
heredoc_attribute =
<<EOF
Text
EOF
hash_attribute = {
child = 1
}
Blocks represent a collection of blocks and attributes. Blocks start with a name and can have zero or more labels.
The name, labels, and {
must be on the same line. The closing brace must be on a line by itself. The exception is empty
blocks where the closing brace can be on the same line as the opening
e.g. Valid:
inline_empty_block { }
empty_block {
}
block_with_children_and_labels "Label 1" "Label 2" {
child_block {}
child_attribute = 1
}
Invalid:
my_block
{
}
my block {
}