The ShapeLogic logic system is not quite a language, but it has become more organized as of v. 0.8.
This is work in progress, but are actively updated now.
For a broader introduction to the logic system see Declarative logic.
There are currently 3 main places where logic expressions can be placed:
Found named values are set in a JEXL context and expressions can be evaluated here too.
They are sub class of the Parametric Rule Tasks. They come in 2 flavors now:
You can also do logical combinations of the filter tasks:
So if you have one class with a filter criteria that is filtering:
You can combine them with and and to get a filter that filters, T junctions in the upper half.
The rules for all the capital letters can be found in the class: LetterTaskFactory.java
So each line will be translated into one task / goal.
new NumericRule("A", POINT_COUNT, polygon, VAR_SIZE_START + POINT_COUNT_EX + VAR_SIZE_END,"==", 5.), new NumericRule("A", HOLE_COUNT, polygon, VAR + HOLE_COUNT_EX, "==", 1.), new NumericRule("A", T_JUNCTION_LEFT_POINT_COUNT, polygon, FILTER_START + T_JUNCTION_LEFT_POINT_COUNT_EX + FILTER_END,"==", 1.), new NumericRule("A", T_JUNCTION_RIGHT_POINT_COUNT, polygon, filter(T_JUNCTION_RIGHT_POINT_COUNT_EX),"==", 1.), new NumericRule("A", END_POINT_BOTTOM_POINT_COUNT, polygon, filter(END_POINT_BOTTOM_POINT_COUNT_EX), "==", 2.), new NumericRule("A", HORIZONTAL_LINE_COUNT, polygon, size(HORIZONTAL_LINE_COUNT_EX), "==", 1.), new NumericRule("A", VERTICAL_LINE_COUNT, polygon, size(VERTICAL_LINE_COUNT_EX), "==", 0.), new NumericRule("A", END_POINT_COUNT, polygon, VAR + END_POINT_COUNT_EX, "==", 2.), new NumericRule("A", SOFT_POINT_COUNT, polygon, size(SOFT_POINT_COUNT_ANN_EX), "==", 0.),
All rules work in a JEXL context.
Steps when running letter match:
new NumericRule("A", HOLE_COUNT, polygon, VAR + HOLE_COUNT_EX, "==", 1.),
This will be transformed into a task that:
It is using # as a place holder for the name of the variable from last field.
E.g. "ploygon.holeCount"
Takes the variable coming in from the third field and add that to the expression in HOLE_COUNT_EX.
Evaluate the expression that the string constant VERTICAL_LINE_COUNT_EX.
This will return a collection of lines.
Then does a size() call on that to see how many element there are in it.
When you need filter a collection with the criteria expression inside the filter.
And then see how many elements the filter returns.
So in this case you start with all the points in the polygon.
The string: END_POINT_BOTTOM_POINT_COUNT_EX has the value:
"PointOfTypeFilter(PointType.END_POINT) && PointBelowFilter(0.5)"
This is a composite criteria that checks that the point is an end point and that it is in the lower half of the bounding box for the polygon.
You can use the normal boolean operators in the filter expression: and, or, not.