Adding Comments
It is always a good idea to add comments to document your expression. Comments help anyone who needs to modify the expression in the future.
There are two ways to tell PhixFlow that a line is a comment, and can be ignored.
Notation | Use for |
---|---|
// | short comments up to 1 line |
/* <comment> */ | multi-line comments |
For some examples of using comments, plus other style tips for expressions, see Expression Style.
Literal Values and Data Types
Data Types
When writing expressions, it is important to consider the type of the result. For example, it is possible write an expression to return the integer 3 for a stream attribute with the type string. However, this has a mis-match between data types. When PhixFlow evaluates an expression that contains a data-type mismatch, processing stops and PhixFlow reports an error.
The full list of data types handled by PhixFlow is shown in the following table.
Data Type | Description | See |
---|---|---|
Array | A list values, e.g. [1,2,3] | Arrays and Record Sets |
Date | A date | Date Functions |
Datetime | A date and time | |
Float | A floating point number, e.g. 3.2 or 3.0 or 0.0 | |
Integer | An integer, e.g. 3 or 0 | |
Number | An integer or floating point number | |
String | A string value, e.g. "Hello" or the empty string "" | Text Expressions and Escape Characters |
Boolean | A logical value of either true or false. Any non-null, non-zero value is treated as true | |
Regular Expression | Special character sequences that match a string pattern |
Assigning a Literal Value
The most basic expression simply assigns a constant value to the field.
Expression | Assigns value | Data type |
---|---|---|
3 | 3 | integer |
3.2 | 3.2 | floating point |
"Hello" | "Hello" | string |
To assign a string, it must be enclosed in:
- either single quotes:
'Hello'
- or double quotes:
"Hello"
When working with strings, be aware that some characters have special meaning. You need to use an escape character for strings that include special characters; see Text Expressions and Escape Characters.
Referencing Attribute Names
Assigning Values From a Pipe
Stream attribute expressions are commonly used to fetch the value returned by a Pipe. This is simply done by suffixing the pipe name with the name of the attribute to be returned. For example:
in.accountRef
This expression causes PhixFlow to look at the pipe named "in" and return the value in the field called "accountRef".
This expression can return multiple values; see Arrays and Record Sets.
Calculating an Attribute Name Using a $-variable
In PhixFlow, you can create your own variables using a $ symbol, for example $variableName
; see Using Variables.
If the name of the attribute whose value you want has to be calculated based on other factors, you can assign the attribute name to a $-variable. You then use the variable instead of the attribute name itself. For example:
in.$attrName
Handling Invalid Characters in Attribute Names
There are two options for handling an attribute name that contains invalid characters.
- Either assign that name to a variable and use the variable instead of the actual attribute.
- Or enclose the name in quotes, for example:
in.'account-ref'
.
Numbers and Strings
Mathematical Operators (+, -, *, /)
Several values can be combined using the usual basic mathematical operators. For example when in.numProducts
has the value 9:
Expression | Result |
---|---|
in.numProducts + 3 | 12 |
in.numProducts - 3 | 6 |
in.numProducts * 3 | 27 |
in.numProducts / 3 | 3 |
The usual calculation precedences apply, so * and / operations are carried out before + and -. When the mathematical statements involve multiple calculations, use brackets ( ) to force the correct processing order.
Expression | Result |
---|---|
3 * 3 + 3 | 12 |
3 * (3 + 3) | 18 |
String Concatenation (+)
The + operator also serves as the string concatenation operator. This means you can use + to join strings together. For example if in.customerName
returns "Smith" and in.title
returns "Mr":
Expression | Result |
---|---|
"Hello" + " to " + "you" | "Hello to you" |
"Dear " + in.title+ " " in.customerName + "," + | "Dear Mr Smith," |
If you use +
to concatenate a string and a number (integer or floating point), then PhixFlow treats the number as if it is a string. For example:
Expression | Result |
---|---|
"Hello" + 3 | "Hello3" |
"4" + 3 | "43" |
Functions, Arguments and $-Variables
PhixFlow has a set of functions you can use in expressions. Functions have a set of comma-separated arguments, enclosed in backets, like this: name (arg1, arg2)
, where arg
is an argument. Each function has a help page explaining it's syntax and what PhixFlow expects for each argument ; see Functions.
$-Variables in the Do() Function
In expressions that have complex calculations, you may need a variable to hold the result of a calculation. You can then reference the variable later in the expression, or in other attribute expressions for the same stream.
The following expression uses do() function and $-variables for a simple calculation.
Expression | Result |
---|---|
| This expression
|
| A different expression
|
When to Use $-variables
$-variables are not really needed in simple calculations. They are useful:
- in forEach loops
- calculating attibute names from pipes; see Assigning Values From a Pipe.
- to store a value from a look-up pipe, when you need the value in multiple attributes
- In the first attribute, look-up the value.
- Use a $-variable to store the value that is returned by the look-up.
- When you need the value in another attribute, reference the $-variable instead of repeating the look-up.
- in complex expressions, to break up multiple consecutive functions into separate lines. In this case, use a $-variable to store the intermediate values; see Multiline Statements and $-variables.
True or False using the If() Function
It is common to want to evaluate whether or not data meets a condition. To do this use the if() function in an expression. This function has 3 arguments.
if( //argument 1 - the condition _out.AppleHarvestDate < _toDate('20210101'), //argument 2 - return this if true 1, //argument 3 - return this if false 0 )
In this expression, the first argument is the condition, which is also an expression. This selects records that have a date before 1st January 2021. The remaining arguments are simple integers. For records that:
- meet the condition, PhixFlow returns 1 to indicate true.
- do not meet the condition, PhixFlow returns 0 to indicate false.
Alternatively, the expression could return strings, which must be enclosed in quote marks.
if( _out.AppleHarvestDate < _toDate('20210101'), "true", "false" )
Multiline Statements
When you are working with more complex expression, you may have several different statements to evaluate first. To group statements together, use the do() function.
In multi-line statements, you usually need to assign the value of an expression to a $-variable, to use later in the expression. For example:
Expression | Result |
---|---|
do ( $name = in.customerName, $title = in.title, $salutation = "Dear", $result = $salutation + ' ' + $title + $name ) | "Dear Mr Smith" |
Statements in the do() function end in a comma, except the last one.
PhixFlow uses the value from the last statement to be evaluated. In simple expressions, such as the example above, the last statement to be evaluated is the last line of the expression. However, in Conditional Statements, the last statement evaluated is not always the last statement in the expression. For example:
Expression | Result |
---|---|
| 45 if the customer's name is "Smith" but otherwise the value 36. |
Expressions in Other Dynamic Fields
In some cases, a dynamic field is expecting a form of code other than an expression. For example a database collector has a dynamic field where you can enter SQL statements. If you want to include an expression in this type of field, it needs to be enclosed in curly brackets. For example, the following SQL statement includes the expression in.key
.
select * from mytable where mykey = {in.key}
See Also
- Expressions and Scripts topic page for links to more information.