站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBoss RULES 4.0.0.11754MR2 manual 英文版使用指南文档

3.8. XML Rule Language - JBoss RULES 4.0.0.11754MR2 manual 英文版使用指南文档

3.8. XML Rule Language

As an option, Drools also supports a "native" rule language as an alternative to DRL. This allows you to capture and manage your rules as XML data. Just like the non-XML DRL format, the XML format is parsed into the internal "AST" representation - as fast as possible (using a SAX parser). There is no external transformation step required. All the features are available with XML that are available to DRL.

3.8.1. When to use XML

There are several scenarios that XML is desirable. However, we recommend that it is not a default choice, as XML is not readily human readable (unless you like headaches) and can create visually bloated rules.

If you do want to edit XML by hand, use a good schema aware editor that provides nice heirarchical views of the XML, ideally visually (commercial tools like XMLSpy, Oxygen etc are good, but cost money, but then so do headache tablets).

Other scenarious where you may want to use the XML format are if you have a tool that generates rules from some input (programmatically generated rules), or perhaps interchange from another rule language, or from another tool that emits XML (using XSLT you can easily transform between XML formats). Note you can always generate normal DRL as well.

Alternatively you may be embedding drools in a product that already uses XML for configuration, so you would like the rules to be in an XML format. You may be creating your own rule language on XML - note that you can always use the AST objects directly to create your own rule language as well (the options are many, due to the open architecture).

3.8.2. The XML format

A full W3C standards (XMLSchema) compliant XSD is provided that describes the XML language, which will not be repeated here verbatim. A summary of the language follows.

Example 3.32. Example

<?xml version="1.0" encoding="UTF-8"?>
<package name="com.sample"
         xmlns="http://drools.org/drools-3.0"
         xmlns:xs="http://www.w3.org/2001/XMLSchema-instance"
         xs:schemaLocation="http://drools.org/drools-3.0 drools-3.0.xsd">
         
<import name="java.util.HashMap" />
<import name="org.drools.*" />

<global identifier="x" type="com.sample.X" />
<global identifier="yada" type="com.sample.Yada" />

<function return-type="void" name="myFunc">
    <parameter identifier="foo" type="Bar" />
    <parameter identifier="bada" type="Bing" />
        
    <body>
        System.out.println("hello world");
    </body>
</function>

<rule name="my rule">
  <rule-attribute name="salience" value="10" />

  <lhs>
       <column object-type="Foo" />
  </lhs>

  <rhs>
    System.out.println( "hello" );    
</rhs>
</rule>
</package>

Referring to the above example: Notice the key parts, the declaration for the Drools 3, schema, imports, globals (application-data in drools 2), functions, and the rules. Most of the elements are self explanatory if you have some understanding of the Drools 3 features.

Imports: import the types you wish to use in the rule.

Globals: These are global objects that can be referred to in the rules.

Functions: this is a declaration of functions to be used in the rules. You have to specify return types, a unique name and parameters, in the body goes a snippet of code.

Rule: see below.

Example 3.33. Detail of rule element

<rule name="my rule">
 <lhs>

  <column object-type="Foo" />
  <column identifier="bar" object-type="Bar" />

  <column object-type="Foo">
    <literal field-name="field1" evaluator="==" value="value1" />
    <predicate field-name="field1" identifier="var1" expression="1==1" />
    <return-value field-name="field1" evaluator="==" expression="1==1" />
    <field-binding field-name="field1" identifier="var1" />
    <bound-variable field-name="field1" evaluator="==" identifier="var1" />
  </column>

  <not>
    <column object-type="Bar" />
  </not>

  <exists>
    <column object-type="Bar" />
  </exists>

  <and>
    <or>
      <column object-type="Bar" />
    </or>
    <column object-type="Yada" />
  </and>

  <or>
    <and>
      <column object-type="Foo" />
    </and>
    <column object-type="Zaa" />
  </or>

  <eval>
    1==1
  </eval>
 </lhs>

 <rhs>
   /* semantic actions here */
 </rhs>
</rule>

Referring to the above rule detail:

The rule has a LHS and RHS (conditions and consequence) sections. The RHS is simple, it is just a block of semantic code that will be executed when the rule is activated. The LHS is slightly more complicated, certainly more so then Drools 2.x.

A key element of the LHS is the Column element. This allows you to specify a type (class) and perhaps bind a variable to an instance of that class. Nested under the column object are constraints that have to be met. The Predicate and Return Value constraints allow java expressions to be embedded.

That leaves the conditional elements, not, exists, and, or etc. They work like their DRL counterparts. Elements that are nested under and an "and" element are logically "anded" together. Likewise with "or" (and you can nest things further). "Exists" and "Not" work around Columns, to check for the existence or non existance of a fact meeting its constraints.

The Eval element allows the execution of a valid snippet of java code - as long as it evaluates to a boolean (do not end it with a semi-colon, as it is just a fragment) - this can include calling a function. The Eval is less efficient then then columns, as the rule engine has to evaluate it each time, but it is a "catch all" feature for when you can express what you need to do with Column constraints.

3.8.3. Legacy Drools 2.x XML rule format

The Drools 2.x legacy XML format is somewhat different to the Drools 3 format that you can see above.

However, there are some similarities. Basically the imports, globals (which replace application-data in drools 2.x) work the same. Functions are also similar, except that they are specified one at a time (in Drools 2 they where specified in a single block).

Example 3.34. Drools 2.x xml

  <rule name="Goodbye Cruel World">
    <parameter identifier="goodbye">
      <class>String</class>
    </parameter>

    <java:condition>goodbye.equals("Goodbye")</java:condition>

    <java:consequence>
      goodbyeWorld( goodbye );
    </java:consequence>
  </rule>

3.8.3.1. Migrating to Drools 3

It is possible generally to migrate from drools 2 to drools 3 XML format, if you have existing rulebases you want to port to drools 3. This may be done with a stylesheet, possibly. Note that Drools 2.x DSLs will not be trivial to port to drools 3 XML. You would be best to look at the new DSL features in Drools 3 DRL.

Note that while "eval" allows you to more or less directly migrate your conditions from Drools 2.x to 3, it is far more powerful, and performant, to use constraints on columns where possible, as it utilises the full power of the engine.

Example 3.35. Drools 3 XML equivalent

<rule name="Goodbye Cruel World">
 <lhs>
   <column identifier='goodbye' object-type='String' >
   <eval>goodbye.equals("Goodbye")</eval>
 </lhs>
 <rhs>
   goodbyeWorld( goodbye );
 </rhs>
</rule>

3.8.4. Automatic transforming between formats (XML and DRL)

Drools comes with some utility classes to transform between formats. This works by parsing the rules from the source format into the AST, and then "dumping" out to the appropriate target format. This allows you, for example, to write rules in DRL, and when needed, export to XML if necessary at some point in the future.

The classes to look at if you need to do this are:

XmlDumper - for exporting XML.
DrlDumper - for exporting DRL.
DrlParser - reading DRL.
XmlPackageReader - reading XML.

Using combinations of the above, you can convert between any format (including round trip). Note that DSLs will not be preserved (from DRLs that are using a DSL) - but they will be able to be converted.

Feel free to make use of XSLT to provide all sorts of possibilities for XML, XSLT and its ilk are what make XML powerful.