Hide Forgot
Help Desk Ticket Reference: https://c.na7.visual.force.com/apex/Case_View?id=500A0000005eneY&sfdc.override=1 securitylevel_name: Public This is a request for an error/warning mechanism in the compiler task. This case presents itself when a person defines a package and makes a unintentional mistake by not defining all the files which are intended to be in the package to be part of the package. If familiarity with drools is low this issue can cause a lot of frustration from not being able to find the issue. If a package is composed of more than one rules source file (i.e a drl + xls + rf) there is an unreported error where the files do not all declare themselves to be of the same package. The compiler will only build the package to include some of the files. Given 3 files in the same directory to be compiled using the drools-ant task org.drools.contrib.DroolsCompilerAntTask process.rf [package rsarules.quote] start-process.drl [package rssrules.quote] quote.xls [package rsarules.quote] using <target name="buildPackage" > <compiler srcdir="${basedir}/src/test/resources/rules" tofile="${basedir}/src/test/resources/rsa.rules.pkg" classpathref="rsa.classpath" binformat="package" > <include name="*.xls"/> <include name="*.drl"/> <include name="*.rf"/> </compiler> </target> In the above example if start-process.drl was read first the resultant package would only contain the start-process.drl rule. If on the other hand the compiler was to read any of the other two files first the package created would not contain start-process.drl. In both cases the resultant rules application would not function as was intended. This is clearly an error but the compiler should flag this.
Link: Added: This issue is related to JBRULES-2840
In the case where rule resources in the srcdir are in multiple packages and you specify binformat="package", each package will be serialized independently to the destination file and thus override the previous serialized package. I added logging to the DroolsCompilerAntTask which you can invoke by adding: 1. verbose="true" attribute to the compiler task, for example: <compiler srcdir="${basedir}/src/test/resources/rules" tofile="${basedir}/src/test/resources/rsa.rules.pkg" classpathref="rsa.classpath" binformat="package" verbose="true"> 2. adding the ant recorder task to the target containing the compiler task, so for example: <target name="rules"> <record name="build.log"/> <compiler srcdir="${basedir}/src/test/resources/rules" verbose="true" ..../> ... </target> The log file will contain information about each package and its rules. Also it warns users when each individual package is serialized and that it can overwrite previous serialized packages. The sample output of the log file can look like: [compiler] ** Content of package: com.sample.other [compiler] Rule name: Your First Rule [compiler] ** Content of package: com.sample [compiler] Rule name: Your Second Rule [compiler] ** Serializing package [com.sample.other] to destination file. **** THIS WILL OVERRIDE ANY PREVIOUSLY SERIALIZAED PACKAGE **** [compiler] ** Serializing package [com.sample] to destination file. **** THIS WILL OVERRIDE ANY PREVIOUSLY SERIALIZAED PACKAGE ****