Language
Bloblang, or blobl for short, is a language designed for mapping data of a wide variety of forms. It’s a safe, fast, and powerful way to perform document mapping within Wombat. It also has a Go API for writing your own functions and methods as plugins.
Bloblang is available as a processor and it’s also possible to use blobl queries in function interpolations.
You can also execute Bloblang mappings on the command-line with the blobl
subcommand:
This document outlines the core features of the Bloblang language, but if you’re totally new to Bloblang then it’s worth following the walkthrough first.
Assignment
A Bloblang mapping expresses how to create a new document by extracting data from an existing input document. Assignments consist of a dot separated path segments on the left-hand side describing a field to be created within the new document, and a right-hand side query describing what the content of the new field should be.
The keyword root
on the left-hand side refers to the root of the new document, the keyword this
on the right-hand
side refers to the current context of the query, which is the read-only input document when querying from the root of a
mapping:
Since the document being created starts off empty it is sometimes useful to begin a mapping by copying the entire
contents of the input document, which can be expressed by assigning this
to root
.
If the new document root
is never assigned to or otherwise mutated then the original document remains unchanged.
Special Characters in Paths
Quotes can be used to describe sections of a field path that contain whitespace, dots or other special characters:
Non-structured Data
Bloblang is able to map data that is unstructured, whether it’s a log line or a binary blob, by referencing it with
the content
function, which returns the raw bytes of the input document:
And your newly mapped document can also be unstructured, simply assign a value type to the root
of your document:
And the resulting message payload will be the raw value you’ve assigned.
Deleting
It’s possible to selectively delete fields from an object by assigning the function deleted()
to the field path:
Variables
Another type of assignment is a let
statement, which creates a variable that can be referenced elsewhere within a
mapping. Variables are discarded at the end of the mapping and are mostly useful for query reuse. Variables are
referenced within queries with $
:
Metadata
Wombat messages contain metadata that is separate from the main payload, in Bloblang you can modify the metadata of the
resulting message with the meta
assignment keyword. Metadata values of the resulting message are referenced within
queries with the @
operator or the metadata()
function:
Coalesce
The pipe operator (|
) used within brackets allows you to coalesce multiple candidates for a path segment. The first
field that exists and has a non-null value will be selected:
Opening brackets on a field begins a query where the context of this
changes to value of the path it is opened upon,
therefore in the above example this
within the brackets refers to the contents of this.thing
.
Literals
Bloblang supports number, boolean, string, null, array and object literals:
The values within literal arrays and objects can be dynamic query expressions, as well as the keys of object literals.
Comments
You might’ve already spotted, comments are started with a hash (#
) and end with a line break:
Boolean Logic and Arithmetic
Bloblang supports a range of boolean operators !
, >
, >=
, ==
, <
, <=
, &&
, ||
and mathematical operators
+
, -
, *
, /
, %
:
For more information about these operators and how they work check out the arithmetic page.
Conditional Mapping
Use if
as either a statement or an expression in order to perform maps conditionally:
And add as many else if
queries as you like, followed by an optional final fallback else
:
Pattern Matching
A match
expression allows you to perform conditional mappings on a value, each case should be either a boolean
expression, a literal value to compare against the target value, or an underscore (_
) which captures values that have
not matched a prior case:
Within a match block the context of this
changes to the pattern matched expression, therefore this
within the match
expression above refers to this.doc
.
Match cases can specify a literal value for simple comparison:
The match expression can also be left unset which means the context remains unchanged, and the catch-all case can also be omitted:
If no case matches then the mapping is skipped entirely, hence we would end up with the original document in this case.
Functions
Functions can be placed anywhere and allow you to extract information from your environment, generate values, or access data from the underlying message being mapped:
Functions support both named and nameless style arguments:
You can find a full list of functions and their parameters in the functions page.
Methods
Methods are similar to functions but enact upon a target value, these provide most of the power in Bloblang as they allow you to augment query values and can be added to any expression (including other methods):
Methods also support both named and nameless style arguments:
You can find a full list of methods and their parameters in the methods page.
Maps
Defining named maps allows you to reuse common mappings on values with the apply
method:
Within a map the keyword root
refers to a newly created document that will replace the target of the map, and this
refers to the original value of the target. The argument of apply
is a string, which allows you to dynamically resolve
the mapping to apply.
Import Maps
It’s possible to import maps defined in a file with an import
statement:
Imports from a Bloblang mapping within a Wombat config are relative to the process running the config. Imports from an imported file are relative to the file that is importing it.
Filtering
By assigning the root of a mapped document to the deleted()
function you can delete a message entirely:
Error Handling
Functions and methods can fail under certain circumstances, such as when they receive types they aren’t able to act
upon. These failures, when not caught, will cause the entire mapping to fail. However, the method
catch
can be used in order to return a value when a failure occurs instead:
Since catch
is a method it can also be attached to bracketed map expressions:
And one of the more powerful features of Bloblang is that a single catch
method at the end of a chain of methods can
recover errors from any method in the chain:
However, the catch
method only acts on errors, sometimes it’s also useful to set a fall back value when a query
returns null
in which case the method or
can be used the same way:
Unit Testing
It’s possible to execute unit tests for your Bloblang mappings using the standard Wombat unit test capabilities outlined in this document.
Trouble Shooting
- I’m seeing
unable to reference message as structured (with 'this')
when I try to run mappings withwombat blobl
.
That particular error message means the mapping is failing to parse what’s being fed in as a JSON document. Make sure
that the data you are feeding in is valid JSON, and also that the documents do not contain line breaks as
wombat blobl
will parse each line individually.
Why? That’s a good question. Bloblang supports non-JSON formats too, so it can’t delimit documents with a streaming JSON
parser like tools such as jq
, so instead it uses line breaks to determine the boundaries of each message.