If you want to build or contribute to a droolsjbpm project, read this document.
It will save you and us a lot of time by setting up your development environment correctly. It solves all known pitfalls that can disrupt your development. It also describes all guidelines, tips and tricks. If you want your pull requests (or patches) to be merged into master, please respect those guidelines.
At the moment of this implementation, there is no TCK or official reference implementation for DMN v1.1.
While this implementation strives to be as compliant as possible with the specification, there are some differences listed here. These differences fall into 2 categories: (a) fixes to bugs in the spec, and (b) extensions to the spec to better support use cases, without prejudice to strict models.
These lists are as comprehensive as possible, but the spec is an ambiguous document by itself and there might be other differences that were not found yet. Feel free to point them out if you find any.
-
Space Sensitivity: this implementation of the FEEL language is space insensitive. The goal is to avoid nondeterministic behavior based on the context and differences in behavior based on invisible characters (e.g., white spaces). This means that for this implementation, a variable named
first name
with one space is exactly the same asfirst name
with two spaces in it. -
List functions
or()
andand()
: the spec defines two list functions namedor()
andand()
, but according to the FEEL grammar, these are not valid function names, asand
andor
are reserved keywords. This implementation renamed these functions toany()
andall()
respectively, in antecipation for DMN 1.2.
-
Support for scientific and hexadecimal notations: this implementation supports scientific and hexadecimal notation for numbers. E.g.: 1.2e5 (scientific notation), 0xD5 (hexadecimal notation).
-
Support for expressions as end points in ranges: this implementation supports expressions as endpoints for ranges. E.g:
[date("2016-11-24")..date("2016-11-27")]
-
Support for additional types: the specification only defines the following as basic types of the language:
- number
- string
- boolean
- days and time duration
- years and month duration
- time
- date and time
For completeness and orthogonality, this implementation also supports the following types:
- context
- list
- range
- function
- unary test
- Support for unary tests: for completeness and orthogonality, unary tests are supported as first class citizens in the language. They are effectively functions with an implicit single parameter, and can be invoked in the same way as functions are. E.g.:
{
is minor : < 18,
Bob is minor : is minor( bob.age )
}
- Support for additional built-in functions: additional functions are supported out of the box:
now()
: returns the current date and timedecision table()
: returns a decision table function. Although the spec mentions a decision table function on page 114, it is not implementable as defined.
- Support for types with spaces on names: the DMN XML schema defines type refs as QNames,
but QNames do not allow spaces. It is then not possible to use types like FEEL
date and time
,days and time duration
oryears and months duration
. This implementation does parse such typerefs as strings and allows type names with spaces, but in order to comply with the XML schema, it also added the following aliases to such types that can be used instead:
"date and time" = "dateTime"
"days and time duration" = "duration" or "dayTimeDuration"
"years and months duration" = "duration" or "yearMonthDuration"
Please note that for the "duration" types, the user can simply use duration
and the engine will
infer the proper duration, either days and time duration
or years and months duration
.
- Lists support heterogeneous element types: at the moment, this implementation supports lists with heterogeneous element types. This is an experimental extension and does limit the functionality of some functions and filters. We will re-evaluate this decision in the future.