This help system corresponds to Part III of your Guide to RuleWorks book. It contains complete descriptions of all the constructs in the RuleWorks language. The descriptions include usage details, format, arguments, and examples.
Many constructs take arguments. When you specify argument values, separate them with any combination of spaces, tabs, and carriage returns.
You cannot use expressions that contain variables or function calls (except the COMPOUND function) as values for arguments to commands at the interpreter prompt. You can use them for values in source code only.
The RuleWorks API routines are described in Appendix A of your Guide to RuleWorks book.
+ A B C D E F G I L M N O P Q R S T W
+ (Addition) Operator
- (Negation and Subtraction) Operator
* (Multiplication) Operator
/ (Division) Operator
\ (Modulus) Operator
^ (Attribute) Operator
== (Identity) Predicate and Operator
<> (Nonidentity) Predicate and Operator
= (Equality) Predicate and Operator
-= (Inequality) Predicate and Operator
~= (Similarity) Predicate and Operator
-~= (Dissimilarity) Predicate and Operator
> (Greater-than) Predicate and Operator
>= (Greater-than-or-equal) Predicate and Operator
< (Less-than) Predicate and Operator
<= (Less-than-or-equal) Predicate and Operator
<=> (Same-type) Predicate and Operator
<-> (Different-type) Predicate and Operator
[+] (Containment) Predicate and Operator
[-] (Non-containment) Predicate and Operator
[=] (Length-equal) Predicate and Operator
[<>] (Length-not-equal) Predicate and Operator
[>] (Length-greater-than) Predicate and Operator
[>=] (Length-greater-than-or-equal) Predicate and Operator
[<] (Length-less-than) Predicate and Operator
[<=] (Length-less-than-or-equal) Predicate and Operator
{} (Conjunction) Operator
<< >> (Disjunction) Operator
@(At) Command
ACCEPT-ATOM Function
ACCEPTLINE-COMPOUND Function
ADDSTATE Action and Command
AFTER Action and Command
AND Operator
>BIND Action
CALL-INHERITED Action
CATCH Statement
CLOSEFILE Action and Command
COMPOUND Function
CONCAT Function
COPY Action and Command
CRLF Function
CS Command
DEBUG Action
DECLARATION-BLOCK Declaration
DEFAULT Action and Command
DISABLE Command
EBREAK Command
ENABLE Command
END-BLOCK Declaration
END-GROUP Declaration
ENTRY-BLOCK Declaration
EVERY Function
EXIT Command
EXTERNAL-ROUTINE Declaration
FLOAT Function
FOR-EACH Action
GENATOM Function
GENINT Function
GET Function
IF...THEN...ELSE... Action
INTEGER Function
IS-OPEN Function
LENGTH Function
MAKE Action and Command
MATCHES Command
MAX Function
MIN Function
MODIFY Action and Command
NEXT Command
NOT Operator
NTH Function
OBJECT-CLASS Declaration
ON-EMPTY Statement
ON-ENTRY Statement
ON-EVERY Statement
ON-EXIT Statement
OPENFILE Action and Command
OR Operator
POSITION Function
PPCLASS Command
PPWM Command
QUIT Action and Command
RBREAK Command
REMOVE Action and Command
REMOVE-EVERY Action and Command
RESTORESTATE Action and Command
RETURN Action and Command
RJUST Function
RULE Statement
RULE-BLOCK Declaration
RULE-GROUP Declaration
RUN Command
SAVESTATE Action and Command
Similarity Predicates and Operators
SPECIALIZE Action and Command
SUBCOMPOUND Function
SUBSYMBOL Function
SYMBOL Function
SYMBOL-LENGTH Function
TABTO Function
TRACE Action and Command
WBREAK Command
WHILE...DO... Action
WM Command
WMHISTORY Command
WRITE Action
Declarations must precede any executable program statements contained in the same block. Similarly, declaration blocks (if any) must be compiled before entry blocks and rule blocks (if any).
Names a group of object class, method, or external routine declarations so that they can be shared among multiple entry blocks or rule blocks.
Declaration blocks are optional; both object classes and external routines can be declared inside entry blocks or rule blocks. However, if a declaration is inside an entry block or rule block, that declaration is private and cannot be shared. Instances of objects declared privately are not visible to any other block.
All object classes that are related by inheritance must be contained in the same block. A subclass cannot inherit from a parent class declared in a different block. Similarly, methods must be declared in the same block as the class to which they are attached.
A declaration block must not contain any executable program statements (that is, rules, catchers, or ON- constructs). It must be entirely contained in a single source file. The block must be terminated with an END-BLOCK declaration.
(DECLARATION-BLOCK block-name )
block-name | A symbol that names the block. This name must be distinct from all other block names in your program. |
This example shows a block of two OBJECT-CLASS declarations:
(DECLARATION-BLOCK line-items) (OBJECT-CLASS item ^item-code ^item-name ^quantity ^price-per ^item-total) (OBJECT-CLASS shippable-item (INHERITS-FROM item) ^part-number) (END-BLOCK line-items) ; the block name is optional here, ; but is checked if supplied
Closes a block construct.
Each DECLARATION-BLOCK, ENTRY-BLOCK, and RULE-BLOCK declaration must end with an END-BLOCK. If you want, you can repeat the name of the block in the END-BLOCK declaration.
(END-BLOCK [block-name])
block-name | The symbol that names the block being terminated. This argument is optional, but if you provide it the compiler checks it. |
This example shows a simple DECLARATION-BLOCK with a matching END-BLOCK:
(DECLARATION-BLOCK line-items) (OBJECT-CLASS item ^item-code ^item-name ^quantity ^price-per ^item-total) (OBJECT-CLASS shippable-item (INHERITS-FROM item) ^part-number) (END-BLOCK line-items) ; the block name is optional here, ; but is checked if supplied
(DECLARATION-BLOCK line-items) (OBJECT-CLASS item ^item-code ^item-name ^quantity ^price-per ^item-total) (OBJECT-CLASS shippable-item (INHERITS-FROM item) ^part-number) (END-BLOCK line-items) ; the block name is optional here, ; but is checked if supplied
Closes a rule group. Each RULE-GROUP declaration must end with an END-GROUP. If you want, you can repeat the name of the group in the END-GROUP declaration.
(END-GROUP [ group-name ] )
group-name | The symbol that names the group being terminated. This argument is optional, but if you provide it the compiler checks it. |
This example shows ???:
(RULE-GROUP ???) (rule ???) (rule ???) (rule ???) (END-GROUP ???) ; the group name is optional here, ; but is checked if supplied
Defines an entry point that is visible to the system linker and is callable by RuleWorks and other languages.
At least one ENTRY-BLOCK declaration is required for each RuleWorks routine. To make a RuleWorks program that you can run, at least one entry block must be named MAIN (or |main|).
RuleWorks entry blocks can accept arguments and return a value. You declare arguments with an ACCEPTS clause and the return value with a RETURNS clause.
An entry block can contain object class, method, and external routine declarations, and executable program statements (that is, ON- constructs, rules, and catchers). It must be entirely contained in a single source file. However, an entry block can invoke rule blocks and declaration blocks that are contained in other files.
The entry block must close with an END-BLOCK declaration.
(ENTRY-BLOCK block-name | ||||||
[ (ACCEPTS { <f-param-name> [ [ [size] ] ] ext-type [passing-mech] }... ) ] | ||||||
[ (RETURNS { [ <f-param-name> ] ext-type [passing-mech]} ) ] | ||||||
[ (ACTIVATES RULE-BLOCK-name... ) ] | ||||||
[ (USES decl-block-name... ) ] | ||||||
|
block-name | A symbol that names the block. This name must be distinct from all routine names and other block names in your program and must conform to any restrictions imposed by your platform's linker. It must also satisfy the C language requirements for a function name. |
Naming an entry block MAIN (or |main|), with no ACCEPTS or RETURNS clause, generates a C-compliant "main function". RuleWorks automatically adds a return value of type LONG.
The RuleWorks compiler generates a warning if an entry block named MAIN violates the C language restrictions on passing parameters to the main function.
ACCEPTS
Defines the input argument list of the entry block. Note that the name and data type are required for each argument; the size (of an array) and passing mechanism are optional.
f-param-name | A RuleWorks variable name for the formal parameter. Variables bound to input arguments are are visible to the entry block's ON- constructs. They are not visible to rules unless you put them in working memory in your ON-ENTRY or ON-EVERY statement. |
[ [size] ] | If a parameter is an array, you can indicate its expected size with either an integer or a variable bound to a previous parameter. The size is optional; the brackets are not. |
ext-type | The external data type of the input argument. |
passing-mech | A keyword that names the passing mechanism. This argument is optional; the default mechanism is determined by the argument's external data type. |
RETURNS
Specifies the external data type and passing mechanism information for the entry block's return value, if any. This clause is optional, but if you provide one RuleWorks checks that you also provide at least one RETURN action.
f-param-name | A variable name for the return value. This argument is optional; you can use a name that makes your code easier to read. |
ext-type | The external data type of the return value |
passing-mech | Keywords that name the passing mechanism. This argument is optional; the default mechanism is determined by the value's external data type. |
ACTIVATES
Indicates which rule blocks are eligible to fire. This clause is optional.
RULE-BLOCK-name | A symbol that names a rule block. You can specify one or more rule blocks. |
All rule blocks activated by an entry block are enabled automatically when the entry block is called. They must all use the same conflict-resolution strategy as the entry block that invokes them.
USES
Indicates which declaration blocks are shared by the entry block. This clause is optional.
decl-block name | A symbol that names a declaration block. You can specify one or more declaration blocks. |
The declaration block(s) used by an entry block must be compiled before the entry block itself can be compiled.
STRATEGY
Specifies the conflict-resolution strategy (see Section 1.5). This clause is optional. If you do not declare a strategy, the default MEA is used.
LEX | The lexicographic-sort strategy. |
MEA | The means-ends analysis strategy. |
This example shows a simple counting program:
(ENTRY-BLOCK |main| (accepts <argc> long <argv> [<argc>] asciz) (returns long)) (OBJECT-CLASS iterator ^count) (OBJECT-CLASS limit ^value) (ON-ENTRY (write |argC is| <argc> |argV is| <argv> (crlf)) (bind <num-arg> (integer (nth <argv> 2))) (make limit ^value <num-arg>) (make iterator ^count 1)) (ON-EXIT (return 0))
(rule increment-rule (limit ^value <lim>) (iterator ^$id <It> ^count { <num> < <lim> }) --> (write <num> (crlf)) (modify <It> ^count (<num> + 1)))
(rule now-done (limit ^$id <Limit> ^value <lim>) (iterator ^$id <It> ^count <lim>) --> (write <lim> (crlf)) (remove <It>) (remove <Limit>))
(END-BLOCK |main|)
This example produces the following output, when compiled on a VMS system with DEBUG YES:
$count 5 argC is 2 argV is $1$dua0:[williams.ruleworks]count.exe;2 5 %RUL-I-EBREAK, EBREAK encountered on |main|~ON-ENTRY RuleWorks> run 1 2 3 4 5 %RUL-I-EBREAK, EBREAK encountered on |main|~ON-EXIT RuleWorks> run $
The RuleWorks operators that return either TRUE or FALSE are listed below:
A relational expression uses these operators to combine one or more value expressions. You must use relational expressions in IF...THEN...ELSE... and WHILE...DO... actions.
Declares a function or subroutine written in a language other than RuleWorks. Defines the data types and passing mechanisms of the arguments needed to call the external routine (see Section 7.1 for information on data types and passing mechanisms).
Other RuleWorks entry blocks must also be declared as external routines. However, an entry block can call itself recursively with no external routine declaration.
(EXTERNAL-ROUTINE routine-name
[ (ALIAS actual-routine-name ) ]
[ (ACCEPTS { [<f-param-name> [ [ [size] ] ] ] ext-type [passing-mech] }... ) ]
[ (RETURNS [ <f-param-name> [ [size] ] ] ext-type [passing-mech] ) ] )
routine-name | The name of the external routine. This must be a symbol that is different from all other routine names and all block names in the program. It must also be different from all RuleWorks actions, built-in functions and relational operators. These restrictions are enforced by the RuleWorks compiler. The routine name must also satisfy the C language requirements for a function name. |
ALIAS
Declares that the external routine's name is not the actual name against which it is to be linked. The most common use of this clause is to map a case-sensitive routine name to a RuleWorks symbol.
actual-routine-name | The real name of the external routine. |
ACCEPTS
Specifies the name, data type and passing mechanism of the arguments to be passed out to the external routine. The ACCEPTS clause is optional. If you declare any arguments you must also declare the data type of each argument; the name and passing mechanism are optional.
f-param-name | A formal parameter name for an argument to be passed out, for documentation purposes. |
[ [size] ] | If included, this
declares the argument to be an array. The size of the array is optional; the brackets are not. The size may be an integer or a variable previously bound to an integer in this ACCEPTS clause. |
ext-type | The name of the external data type>. |
passing-mech | Keywords that name the passing mechanism. |
RETURNS
Also an optional clause, this describes the external routine's return value:
f-param-name | A formal parameter name for the return value, for documentation purposes. |
[ size ] | If the return value is an array, you must declare its size. You can use a constant or a variable. |
ext-type | The name of the external data type. |
passing-mech | Keywords that name the passing mechanism. |
The following example declares a VMS routine that returns a random number:
(EXTERNAL-ROUTINE mth$random (ACCEPTS <seed> LONG BY REFERENCE) (RETURNS LONG BY VALUE))
The next example maps the case-sensitive name XtParent to the RuleWorks symbol XT_PARENT:
(EXTERNAL-ROUTINE xt_parent (ACCEPTS <param1> INTEGER) (RETURNS <param2> INTEGER) (ALIAS XtParent))
The last example declares the ULTRIX routine that returns an environment variable:
(EXTERNAL-ROUTINE getenv ; from the POSIX library (ACCEPTS <env-name> ASCIZ BY REFERENCE READ-ONLY) (RETURNS <env-value> ASCIZ BY REFERENCE))
C function names:
" < > [ ] % ^ -
If your C compiler is case-sensitive, you must quote (put vertical bars around) your block names.
Main functions must have either zero or two parameters. If two, the first must be a SHORT and the second an array of strings. The example in the ENTRY-BLOCK description shows how to use these two arguments.
The valid passing mechanisms are listed below:
The passing mechanism is optional. RuleWorks provides a default for each external data type.
The valid external data types are listed below with their default passing mechanism:
Name | Passing Mechanism | ||
BY VALUE | BY REFERENCE | ||
READ-ONLY | READ-WRITE | ||
BYTE | D | S | S |
SHORT | D | S | S |
LONG | D | S | S |
UNSIGNED-BYTE | D | S | S |
UNSIGNED-SHORT | D | S | S |
UNSIGNED-LONG | D | S | S |
SINGLE-FLOAT | D | S | S |
DOUBLE-FLOAT | D | S | S |
ASCIZ | --- | D | S |
ASCID | --- | D | S |
ATOM | D | S | S |
Arrays of any type must be passed BY-REFERENCE. The default is BY-REFERENCE READ-ONLY but BY-REFERENCE READ-WRITE is also supported.
Key< | |
D | Default: used if none declared |
S | Supported, but not the default |
--- | Not Supported |
The valid data types and their system-defined default values are shown below:
Name | Default Value |
INTEGER | 0 |
FLOAT | 0.0 |
SYMBOL | NIL |
OPAQUE | %x0 |
INSTANCE-ID | #0 |
ANY | NIL |
• ANY is the default when no data type is declared.
• INSTANCE-ID optionally restricts the value to a named object class when this format is used: INSTANCE-ID OF class-name
Declares an object class and the attributes associated with it.
All OBJECT-CLASS declarations must appear before any executable program statements. OBJECT-CLASS declarations can be contained in entry blocks, declaration blocks, or rule blocks.
(OBJECT-CLASS class-name
[ (INHERITS-FROM parent-class ) ]
{ ^attribute-name [data-type]
[ (DEFAULT value ) ]
}...
{ ^attribute-name COMPOUND
[data-type]
[ (DEFAULT value ) ]
[ (FILL value ) ]
}... )
This format shows one scalar and one compound attribute, for clarity only. RuleWorks does not require that you declare all scalar attributes first, nor that you have at least one scalar attribute. You can declare compound and scalar attributes in any order.
class-name | The only required argument,
this represents the name of the new object class.
It must be a symbol that is different from all other classes
in the block, and must not be a RuleWorks predicate. If the OBJECT-CLASS declaration is contained in an entry block, and the entry block uses declaration blocks, the class name must also be different from all the classes in the used blocks. A class name in an entry block may be the same as a class in a rule block, even if the entry block activates the rule block. |
attribute-name | Specifies the name of an attribute for the new objectclass. |
data-type | Specifies the data type of an attribute. This argument is optional, but if you do specify a data type RuleWorks enforces that domain restriction. |
INHERITS-FROM
Specifies a parent object class from which the class being declared is to acquire attribute names and characteristics. If present, this clause must precede any attribute names.
parent-class | The name of the parent
object class. The parent class must be previously declared in the same block. A subclass cannot inherit from a parent class declared in a different block. See Table 2-1 in Section 2.1 for restrictions on declaring attributes in a subclass of a parent class. |
Establishes the initial value for an attribute when an object of this object class is created. (The default value is ignored if another value is specified in the MAKE action.)
value | The default value must be the same attribute structure as the attribute. That is, scalar attributes must have a scalar default value; compound attributes must have a compound default value. Use the COMPOUND function to create the default value for a compound attribute. |
Declares the attribute to be compound rather than scalar. See Section 2.3.2 for details.
FILL
Defines an initial value for certain elements of a compound value. This filler value is used only when the length of the compound value is increased dynamically but no value is specified for those elements.
value | The scalar value to be used as a filler. See Section 2.3.4 for more information. |
This example declares class BOX that inherits from class PART and has two additional compound attributes:
(OBJECT-CLASS box (inherits-from part) ^card-in-slot compound ^card-in-slot-obj-id compound)
Names a collection of rules so that they can be shared among multiple entry blocks. Rule blocks may contain rules, catchers, and declarations, but no RETURN actions and no ON- constructs.
A rule block must be activated by a RuleWorks entry block. Rule blocks can use declaration blocks but they cannot activate other rule blocks.
The rules in a rule block cannot match objects of classes declared inside the entry block; they can match only objects of classes declared inside the rule block or in a declaration block used by the rule block. Likewise, rules in the entry block cannot match objects of classes declared inside the rule block.
Each rule block can have its own STRATEGY clause. However, all rule blocks activated by an entry block must have the same strategy as that entry block. It is a run-time warning to activate rule blocks that have different strategies.
The block must be closed with an END-BLOCK declaration.
(RULE-BLOCK block-name | ||||||
[ (USES decl-block-name... ) ] | ||||||
|
block-name | A symbol that names the block. This name must be distinct from all other block names in your program and must also be a valid C function name. |
USES
Indicates which declaration blocks are shared by the entry block. This clause is optional.
decl-block-name | A symbol that names a declaration block. You can specify one or more declaration blocks. |
STRATEGY
Specifies the conflict-resolution strategy (see Section 1.5). This clause is optional. If you do not declare a strategy, the default MEA is used.
LEX | The lexicographic-sort strategy. |
MEA | The means-ends analysis strategy. |
This example shows ???:
(RULE-BLOCK ???) (rule ???) (rule ???) (rule ???) (END-BLOCK ???) ; the block name is optional here, ; but is checked if supplied
Names a collection of rules inside a single entry block or rule block.
If you put each MEA group in a separate rule group, you can then enable TRACE for rule groups and see output for the MEA groups without seeing each individual rule.
Rule groups may contain rules and catchers, but no declarations, no methods, and no ON- constructs.
The rules in a rule group can match objects of classes declared in the containing block and objects of classes declared in a declaration block that is used by the containing block.
The group must be terminated with an END-GROUP declaration.
(RULE-GROUP group-name )
group-name | A symbol that names the group. This name must be distinct from the names of all other groups, rules, and catchers in the containing block. |
This example shows ???:
(RULE-GROUP ???) (rule ???) (rule ???) (rule ???) (END-GROUP ???) ; the group name is optional here, ; but is checked if supplied
The executable program statements are listed below:
CATCH Statement
RULE Statement
ON- constructs allow you to specify RHS actions that are executed at specified times in the execution of an entry block, without matching any WMOs. There are four ON- constructs in RuleWorks:
Creates a catcher, which is a list of actions that are executed after a specified number of recognize-act cycles have been executed. An AFTER action or command specifies the number of recognize-act cycles to be executed before the catcher is executed.
The AFTER and the CATCH must be contained in the same block. The recognize-act cycles count includes only rule firings in the entry block that contains or activates the AFTER and the CATCH.
(CATCH catcher-name action... )
catcher-name | A symbol that names the catcher being created. The symbol cannot be the name of another catcher, a rule, or a rule group that already exists in the entry block. |
action | Any RHS action. You can specify one or more actions. |
The following CATCH statement creates a catcher named TOOMANY-CYCLES, which displays a message after the number of recognize-act cycles specified in an AFTER action or command have been executed, and stops execution:
(catch too-many-cycles (write (crlf) |Program appears to be looping.|) (quit))
Defines a set of RHS actions that are executed by RuleWorks when it reaches the select phase of the recognize-act cycle and the conflict set is empty. After the ON-EMPTY actions are executed, the ON-EXIT actions fire (see Figure 5-1).
An ON-EMPTY statement must be contained in an ENTRY-BLOCK. You can use and change the input arguments of the entry block in the ON-EMPTY actions.
(ON-EMPTY action...)
action | Any RHS action. You can specify one or more. |
This example shows ???:
(ENTRY-BLOCK ???) (ON-EMPTY (???)) (END-BLOCK ???)
Defines a set of RHS actions that are executed immediately after an entry block is called and before any rules fire. After the ON-ENTRY actions are executed, the RuleWorks runtime proceeds to the match phase of the first recognize-act cycle.
An ON-ENTRY statement must be contained in an ENTRY-BLOCK. You can use and change the input arguments of the entry block in the ON-ENTRY actions.
(ON-ENTRY action...)
action | Any RHS action. You can specify one or more. |
This example shows ???:
(ENTRY-BLOCK ???)
(ON-ENTRY (???)) (END-BLOCK ???)
Defines a set of RHS actions that are executed by RuleWorks after the act phase of one recognize-act cycle and before the match phase of the next cycle.
If the last rule fired executes a RETURN or QUIT action, the ON-EVERY actions are not executed. When the conflict set is empty, the ON-EMPTY actions are executed but the ON-EVERY actions are not. (See Figure 5-1 for an illustration.)
An ON-EVERY statement must be contained in an ENTRY-BLOCK. You can use and change the input arguments of the entry block in the ON-EVERY actions.
(ON-EVERY action...)
action | Any RHS action. You can specify one or more. |
This example shows ???:
(ENTRY-BLOCK ???) (ON-EVERY (???)) (END-BLOCK ???)
Defines a set of RHS actions that are executed by RuleWorks just before control returns to the caller of the entry block.
The ON-EXIT actions are executed when the reason for control being returned is that the conflict set is empty or that a RETURN action was executed. The ON-EXIT actions are not executed after a QUIT action is executed. (See Figure 5-1 for an illustration.)
An ON-EXIT statement must be contained in an ENTRY-BLOCK. You can use and change the input arguments of the entry block in the ON-EXIT actions.
(ON-EXIT action...)
action | Any RHS action. You can specify one or more. |
This example shows ???:
(ENTRY-BLOCK ???) (ON-EXIT (???)) (END-BLOCK ???)
A synonym for "rule", the Production statement is provided for compatibility with DEC OPS5 Version 4 and other OPS systems. See RULE for details.
(P production-name
(condition-element)...
>-->
(action)... )
Executes right-hand-side actions when left-hand-side conditions are met and the rule has been selected from the conflict set.
(RULE rule-name
(condition-element) ...
-->
(action)... )
rule-name | A unique symbol that names the rule being created. The symbol cannot be the name of another rule, a RULE-GROUP, a method, or a catcher that already exists in the entry block. |
condition-element | A specified pattern
against which working memory objects can be matched. Condition elements can be negative, can contain conjunctions and disjunctions, and can bind variables that are used in other condition elements and in actions on the right-hand side. You can specify one or more condition elements. You cannot put a negative CE first. See Chapter 3 for information on CEs.< |
action | Any RHS action. You can specify one or more actions. See Chapter 4 for information on actions. |
The following rule, named CLOSE-INPUT-FILE:DO-IT, contains three CEs and three actions. The second CE binds an ID variable, <MY-INPUT-THING>, which is deleted by the REMOVE action. The third CE binds an attribute variable, <C>, which is used in the WRITE action:
(rule close-input-file:do-it (active-context ^name close-input-file) (input-thing ^$ID <my-input-thing> ^item END-OF-FILE) (input-count ^count <c>) --> (closefile infil) (remove <my-input-thing>) (write (crlf) |Read| (<c> - 1) |items from input.| (crlf)))
This branch of the RuleWorks Help System contains the predicates and operators that you can use in your source code. Note that you cannot type any arithmetic expressions as arguments to commands at the interpreter prompt.
+ (Addition) Operator
- (Negation and Subtraction) Operator
* (Multiplication) Operator
/ (Division) Operator
\ (Modulus) Operator
^ (Attribute) Operator
== (Identity) Predicate and Operator
<> (Nonidentity) Predicate and Operator
= (Equality) Predicate and Operator
-= (Inequality) Predicate and Operator
~= (Similarity) Predicate and Operator
-~= (Dissimilarity) Predicate and Operator
> (Greater-than) Predicate and Operator
>= (Greater-than-or-equal) Predicate and Operator
< (Less-than) Predicate and Operator
<= (Less-than-or-equal) Predicate and Operator
<=> (Same-type) Predicate and Operator
<-> (Different-type) Predicate and Operator
[+] (Containment) Predicate and Operator
[-] (Non-containment) Predicate and Operator
[=] (Length-equal) Predicate and Operator
[<>] (Length-not-equal) Predicate and Operator
[>] (Length-greater-than) Predicate and Operator
[>=] (Length-greater-than-or-equal) Predicate and Operator
[<] (Length-less-than) Predicate and Operator
[<=] (Length-less-than-or-equal) Predicate and Operator
{} (Conjunction) Operator
<< >> (Disjunction) Operator
AND Operator
NOT Operator
OR Operator
Scalar predicates are those that are valid for scalar attributes. Some scalar predicates, specifically, those whose attribute domain is ANY, are also valid for compound attributes.
Attribute Domain | Predicate | Value Domain | Test |
ANY | == | ANY | Identity: Same type as and equal to. This predicate is optional in LHS attribute-value tests. It is required in RHS relational expressions |
ANY | <> | ANY | Nonidentity; converse of identity |
ANY | = | ANY | Equality: Identical or equivalent numbers; identical symbols except for case; identical values of all other data types |
ANY | -= | ANY | Inequality; converse of equality |
ANY | ~= | ANY | Similarity: Equal or phonetically similar symbols; equal or approximately equal numbers; identical values of all other data types |
ANY | -~= | ANY | Dissimilarity; converse of similarity |
NUMBER | > | NUMBER | Greater than |
SYMBOL | > | SYMBOL | Lexicographically after |
NUMBER | >= | NUMBER | Greater than or equal |
SYMBOL | >= | SYMBOL | Lexicographically after or same |
NUMBER | < | NUMBER | Less than |
SYMBOL | < | SYMBOL | Lexicographically before |
NUMBER | <= | NUMBER | Less than or equal |
SYMBOL | <= | SYMBOL | Lexicographically before or same |
ANY | <=> | ANY | Same type |
ANY | <-> | ANY | Different type |
ATOM | [+] | COMPOUND | Containment; atom is contained by compound |
ATOM | [-] | COMPOUND | Non-containment; converse of containment |
Compound predicates are those that are valid only for compound attributes.
Compound predicates are those that are valid only for compound attributes.
Attribute Domain | Predicate | Value Domain | Test |
COMPOUND | [+] | ATOM | Containment; compound contains atom |
COMPOUND | [-] | ATOM | Non-containment; converse of containment |
COMPOUND | [=] | INTEGER | Length equal |
COMPOUND | [<>] | INTEGER | Length not equal |
COMPOUND | [>] | INTEGER | Length greater |
COMPOUND | [>=] | INTEGER | Length greater than or equal |
COMPOUND | [<] | INTEGER | Length less than |
COMPOUND | [<=] | INTEGER | Length less than or equal |
Some scalar predicates, specifically, those whose attribute domain is ANY, are also valid for compound attributes.
Performs arithmetic addition on numeric values.
numeric-expression + numeric-expression
numeric-expression | The numeric expressions to be added. These may be numeric constants, arithmetic expressions, variables bound to numeric values, or functions that return numeric values. |
The following action shows addition of a bound variable and a constant:
(modify <the-counter> ^count ( <c> + 1 ) )
Negates a condition element (see Section 3.5 for a discussion of negative CEs).
- condition-element
condition-element | The CE that is to be negated. |
Performs unary negation or arithmetic subtraction on numeric values.
- numeric-expression
numeric-expression - numeric-expression
numeric-expression | The numeric expressions to be subtracted. These arguments may be numeric constants, arithmetic expressions, variables bound to numeric values, or functions that return numeric values. |
The following two CEs test for the existence of one andonly one object of class MEMORY:
(memory ^$ID <the-mem>)
- (memory ^$ID <> <the-mem>)
The following action shows subtraction of a bound variable and a constant:
(write (crlf) |Read| ( <c> - 1 ) |items from input.| (crlf) )
Performs arithmetic multiplication on numeric values.
numeric-expression * numeric-expression
numeric-expression | The numeric expressions to be multiplied. These may be numeric constants, arithmetic expressions, variables bound to numeric values, or functions that return numeric values. |
If the KIWI.RUL program calculates sales tax, it can use the following action:
(modify <the-total> ^cost (<cost> + (<cost> * <tax>)))
Performs arithmetic division on numeric values.
numeric-expression / numeric-expression
numeric-expression | The numeric expressions to be divided.
These may be numeric constants, arithmetic expressions, variables bound
to numeric values, or functions that return numeric values. The second operand must not evaluate to zero, or a warning is generated and the result is zero. The result is an integer only when both operands are integers. |
The following action converts degrees fahrenheit to degrees celsius:
(bind <degrees-c> ((<degrees-f> - 32) * 5 / 9))
Note that the entire arithmetic expression must be enclosed in parentheses.
Performs the arithmetic modulus operation on integer values.
integer-expression \ integer-expression
integer-expression | The dividend and divisor for the modulus operation. These may be integers, arithmetic expressions that evaluate to integers, variables bound to integers, or functions that return integers. |
The following rule uses both division and modulus on integers:
(rule find-dozens (start ^$ID <start>) --> (write (crlf) |Enter an integer: | ) (bind <eggs> (accept-atom)) (write (crlf) |There are| (<eggs> / 12) |dozen in| <eggs>) (write (crlf) | and there are| (<eggs> \ 12) |left over|) (modify <start>))
This example produces the following output:
Enter an integer: 13
There are 1 dozen in 13
and there are 1 left over
Enter an integer: 39
There are 3 dozen in 39
and there are 3 left over
Enter an integer:
Specifies an attribute of an object. You must define all attributes in an OBJECT-CLASS declaration. For more information about attributes, see Section 2.3.
^attribute-name
attribute-name | The name of a declared attribute. In condition elements on the LHS, this argument must be a symbolic atom. In actions on the RHS, this argument can be a symbol or a variable that is bound to a declared attribute name. |
The following OBJECT-CLASS declaration defines the attribute ^ITEM for the class INPUT-THING:
(OBJECT-CLASS input-thing ^item)
The following CE matches objects of class INPUT-THING whose ^ITEM attribute has the value HOME-KIWI. It also uses the built-in attribute ^$ID to bind an object variable:
(input-thing ^item home-kiwi ^$ID <my-input-thing>)
Produces a match, or evaluates to true, when both its operands have the same type and the same value.
Two compound values are identical if they contain the same values in the same order.
In an attribute-value test on the LHS, the identity predicate is optional.
If the value following the identity predicate is an unbound variable, that variable is bound to the value of the specified attribute. The identity and [=] (length-equal) predicates are the only predicates that can precede the first occurrence of a variable, because they are the only ones that can either bind a variable or compare its value.
^attribute == value-expression
^attribute value-expression
In a relational expression on the RHS, the identity operator is required. There is no default or implied operator inside relational expressions.
value-expression == value-expression
attribute | An attribute of a WMO whose value is to be tested |
value-expression | Any RuleWorks expression, whose value is to be tested |
The following CE uses the implied identity predicate:
(active-context ^name verify-configuration)
The relational expression below, of necessity, uses the explicit identity predicate:
(if ((is-open infile) == nil) then (openfile infile orders.dat in))
Produces a match when the identity predicate fails to match; evaluates to true when the identity operator evaluates to false.
The following two CEs test for the existence of one and only one object of class MEMORY:
(memory ^$ID <the-mem>)
- (memory ^$ID <> <the-mem>)
Produces a match, or evaluates to true, when its operands are identical or have equal values.
The equality predicate and operator performs automatic type conversion between INTEGER and FLOAT values. For example, 2 is equal to 2.0, but 2 is not identical to 2.0.
The equality predicate and operator ignores case when comparing SYMBOL values. For example, |cat| is equal to CAT, but |cat| is not identical to CAT.
You cannot use the equality predicate with the binding instance of a variable. You must use the identity predicate.
^attribute = value-expression
value-expression = value-expression
attribute | An attribute of a WMO whose value is to be tested |
value-expression | Any RuleWorks expression, whose value is to be tested |
The following CE uses the less restrictive equality predicate:
(active-context ^name = verify-configuration)
Produces a match when the equality predicate fails to match; evaluates to true when the equality operator evaluates to false.
This attribute-value test is the converse of the previous example:
(active-context ^name -= verify-configuration)
Produces a match, or evaluates to true, when its arguments are either both numbers or are the same type, and are similar to each other.
You cannot use the similarity predicate with the binding instance of a variable.
^attribute ~= value-expression
value-expression ~= value-expression
attribute | An attribute of a WMO whose value is to be tested. |
value-expression | Any RuleWorks expression, whose value is to be tested. |
The first table shows the results of several similarity tests on numbers:
First Value | Second Value | Similar? |
4.0 | 4 | Yes |
4.5 | 4 | No |
9.9 | 10 | Yes |
-9.9 | -10 | Yes |
-9.9 | 10 | No |
The next table shows the SOUNDEX codes of several symbols. Note that the first three codes match exactly:
Symbol | SOUNDEX Code |
Steven | S315 |
Stephen | S315 |
Stefano | S315 |
Esteban | E2315 |
Estebão | E231 |
Etienne | E35 |
Similarity is defined according to these steps:
SOUNDEX values are calculated according to an algorithm similar to that published in The Art of Computer Programming, Volume 3, pages 391-392, by Donald Knuth. The English-language rules are as follows:
Code | Consonants |
1 | B, F, P, V |
2 | C, G, J, K, Q, S, X, Z |
3 | D, T |
4 | L |
5 | M, N |
6 | R |
^$ID == <the-id>
^$ID ~= <the-id>
The identity predicate is more efficient.
Produces a match, or evaluates to true, when the similarity predicate fails to match, or evaluates to false.
The table below shows the results of several dissimilarity tests:
First Value | Second Value | Dissimilar? |
4.0 | 4 | No |
4.5 | 4 | Yes |
9.9 | 10 | No |
-9.9 | -10 | No |
Produces a match, or evaluates to true, when its first operand is greater than its second. The operands must be either both numbers or both symbols.
See Appendix E for information on the collating sequences used by RuleWorks to compare symbolic values.
^attribute > value-expression
value-expression > value-expression
attribute | An attribute of a WMO whose value is to be tested. |
value-expression | Any RuleWorks expression that evaluates to a symbol or a number. |
The following table shows the results of several greaterthan tests:
First Value | Second Value | Match or True? |
4.0 | 3 | Yes |
4 | 5.0 | No |
aardwolf | aardvark | Yes |
|greater-than| | greater-than | No |
Produces a match, or evaluates to true, when its first operand is greater than or equal to its second. The operands must be either both numbers or both symbols.
See Appendix E for information on the collating sequences used by RuleWorks to compare symbolic values.
^attribute >= value-expression
value-expression >= value-expression
attribute | An attribute of a WMO whose value is to be tested. |
value-expression | Any RuleWorks expression that evaluates to a symbol or a number. |
The following table shows the results of several greaterthan-or-equal tests:
First Value | Second Value | Match or True? |
5.0 | 5 | Yes |
6 | 7.0 | No |
aardvark | Aardvark | Yes |
|greater-than| | greater-than | Yes |
The aardvarks match because they are equal, which is a case insensitive comparison, not because the first value is greater than the second.
Produces a match, or evaluates to true, when its first operand is less than its second. The operands must be either both numbers or both symbols.
See Appendix E for information on the collating sequences used by RuleWorks to compare symbolic values.
^attribute < value-expression
value-expression < value-expression
attribute | An attribute of a WMO whose value is to be tested. |
value-expression | Any RuleWorks expression that evaluates to a symbol or a number. |
The following table shows the results of several less-than tests:
First Value | Second Value | Match or True? |
2.0 | 3 | Yes |
5 | 6.0 | Yes |
zygosis | zygote | Yes |
zoology | Zoology | No |
Produces a match, or evaluates to true, when its first operand is less than or equal to its second. The operands must be either both numbers or both symbols.
See Appendix E for information on the collating sequences used by RuleWorks to compare symbolic values.
^attribute <= value-expression
value-expression <= value-expression
attribute | An attribute of a WMO whose value is to be tested. |
value-expression | Any RuleWorks expression that evaluates to a symbol or a number. |
The following table shows the results of several less-thanor-equal tests:
First Value | Second Value | Match or True? |
2.0 | 3 | Yes |
5 | 5.0 | Yes |
zygosis | zygote | Yes |
zoology | Zoology | Yes |
The symbols match because they are equal, which is a case insensitive comparison, not because the first value is less than the second.
Produces a match, or evaluates to true, when both its operands are the same type.
For example, if you specify this predicate with a symbol or a variable bound to a symbol, a match is produced when the atom in the WMO is a symbol.
The same-type predicate can be applied to scalar values only.
^attribute <=> value-expression
value-expression <=> value-expression
attribute | An attribute of a WMO whose value is to be tested. |
value-expression | Any RuleWorks expression, whose value is to be tested. |
The following CE matches an object of class INPUT-THING whose ^ITEM attribute has a symbolic value:
(input-thing ^item <=> symbol )
Produces a match when the same-type predicate fails to match; evaluates to true when the same-type operator evaluates to false.
This predicate can be applied to scalar values only.
This CE is the converse of the previous example:
(input-thing ^item <-> symbol)
Produces a match, or evaluates to true, when its scalar operand is an element of its compound operand. That is, you can test whether a compound contains a scalar value, or you can test whether a scalar value is contained in a compound.
By default, the containment predicate tests for identity; you can specify a different test with an optional scalar predicate. The scalar predicate must appear next to the scalar argument.
^compound-attr [+] [predicate] scalar-value
^scalar-attr [predicate] [+] compound-value
compound-value [+] [predicate] scalar-value
scalar-value [predicate] [+] compound-value
compound-attr | The compound attribute whose value is to be searched for a scalar value. |
predicate | A predicate that specifies the
comparison between elements of the compound value and the scalar value.
This argument is optional; if you do not specify a predicate, RuleWorks
uses the default identity predicate. You can use any scalar predicate except containment and non-containment. |
scalar-value | The scalar value for which a compound attribute is to be searched. |
scalar-attr | The scalar attribute for whose value a compound is to be searched. |
compound-value | The compound value which is to be searched for a scalar value. |
The following CE matches an object of class BOX whose ^CARD-IN-SLOT attribute contains at least one MEMORY element:
(box ^card-in-slot <cards> [+] memory)
The condition shown below is true when MEMORY is contained by <CARDS>:
(memory [+] <cards>)
The following attribute-value test uses the similarity predicate in conjunction with the containment predicate:
^list [+] ~= color
This test matches when the compound value of the ^LIST attribute contains an element similar to COLOR, such as COLOUR or COULEUR.
Produces a match when the containment predicate fails to match; evaluates to true when the containment operator evaluates to false.
The following two CEs match a WMO of class BOX whose ^CARDIN-SLOT-OBJ-ID attribute does not contain the object whose ID is bound to <THE-MEM>:
(memory ^$ID <the-mem>)
(box ^card-in-slot-obj-id [-] <the-mem>)
Produces a match, or evaluates to true, when the number of elements in its compound operand is identical to its numeric operand.
As with the identity predicate, the length-equal predicate can be used with the first appearance of a variable. This binds the variable to the actual number of elements in the compound attribute.
^compound-attr [=] integer-value
compound-value [=] integer-value
compound-attr | The compound attribute whose length is to be tested. |
integer-value | The integer value to which the length of a compound value is to be compared. This operand may be any expression that evaluates to an integer greater than or equal to zero. |
compound-value | The compound value whose length is to be tested. This operand may be any expression that evaluates to a compound value. |
The CE below matches an object of class BOX whose ^CARD-INSLOT attribute is empty:
(box ^card-in-slot [=] 0)
This CE shows the syntax for testing the compound and binding a variable:
(box ^card-in-slot {[=] 0 [=] <cards>})
Note that the predicate must be repeated inside the conjunction.
Produces a match when the length-equal predicate fails to match; evaluates to true when the length-equal operator evaluates to false.
The following CE matches an object of class BOX whose ^CARD-IN-SLOT attribute is not empty:
(box ^card-in-slot [<>] 0)
Produces a match, or evaluates to true, if the number of elements in its compound operand is greater than its integer operand.
^compound-attr [>] integer-value
compound-value [>] integer-value
compound-attr | The compound attribute whose length is to be tested. |
integer-value | The integer value to which the length of a compound value is to be compared. This operand may be any expression that evaluates to an integer greater than or equal to zero. |
compound-value | The compound value whose length is to be tested. This operand may be any expression that evaluates to a compound value. |
The following CE matches an object of class BOX whose ^CARD-IN-SLOT attribute has more than two elements:
(box ^card-in-slot [>] 2)
Produces a match, or evaluates to true, if the number of elements in its compound operand is greater than or equal to its integer operand.
^compound-attr [>=] integer-value
compound-value [>=] integer-value
compound-attr | The compound attribute whose length is to be tested. |
integer-value | The integer value to which the length of a compound value is to be compared. This operand may be any expression that evaluates to an integer greater than or equal to zero. |
compound-value | The compound value whose length is to be tested. This operand may be any expression that evaluates to a compound value. |
The following CE matches an object of class BOX whose ^CARD-IN-SLOT attribute has two or more elements:
(box ^card-in-slot [>=] 2 )
Produces a match, or evaluates to true, if the number of elements in its compound operand is less than its integer operand.
^compound-attr [<] integer-value
compound-value [<] integer-value
compound-attrn> | The compound attribute whose length is to be tested. |
integer-valuen> | The integer value to which the length of a compound value is to be compared. This operand may be any expression that evaluates to an integer greater than or equal to zero. |
compound-value | The compound value whose length is to be tested. This operand may be any expression that evaluates to a compound value. |
The following CE matches an object of class BOX whose ^CARD-IN-SLOT attribute has fewer than two elements:
(box ^card-in-slot [<] 2 )
Produces a match, or evaluates to true, if the number of elements in its compound operand is less than or equal to its integer operand.
^compound-attr [<=] integer-value
compound-value [<=] integer-value
compound-attr | The compound attribute whose length is to be tested. |
integer-value | The integer value to which the length of a compound value is to be compared. This operand may be any expression that evaluates to an integer greater than or equal to zero. |
compound-value | The compound value whose length is to be tested. This operand may be any expression that evaluates to a compound value. |
The following CE matches an object of class BOX whose ^CARD-IN-SLOT attribute has two or fewer elements:
(box ^card-in-slot [<=] 2 )
Specifies a conjunction.
A conjunction is similar to a logical AND. It is a left-hand-side pattern containing one or more conditional tests, all of which a single attribute in an object must satisfy. For more information about conjunctions, see Section 3.3.
{ conditional-test... }
conditional-test | One or more conditional tests that the value of an attribute in an object is to satisfy. |
The following CE matches teenagers by testing for age greater than or equal to 13 AND less than 20:
(person ^age { >= 13 < 20})
The next CE contains a conjunction of two tests on the length of the compound attribute ^CARD-IN-SLOT. The first binds the length to the variable <LEN>. The second tests that the length is less than 6:
(box ^$ID <the-box> ^card-in-slot { [=] <len> [<] 6})
You can use a conjunction when you want to bind as well as test an attribute. For example:
(hardware-option ^in-slot { <slot-num> <> NIL})
Specifies a disjunction of values, similar to a logical inclusive OR. An attribute that matches any one of the values satisfies the disjunction (see also Section 3.4).
<< value-expression... >>
value-expression | The value that an attribute value
in an object is to match. This argument can be a constant, a bound variable, an arithmetic expression, or a function call. It must have the same structure as the attribute, either scalar or compound. You can specify one or more values. |
A disjunction of values is implicitly preceded by the identity predicate (==). You cannot use any other predicate with a disjunction of values.
The following CE contains a disjunction of values:
(input-thing ^item << NIL EOF END-OF-FILE >>)
The next example shows the syntax for a compound attribute:
(object ^$id <object-1> ^integer-attr <i> ^symbol-attr <s> ^compound-attr <c>) (object ^$id {<object-2> <> <object-1>} ^compound-attr << <c> (compound a <s> c) (subcompound <c> 1 ((length <c>) - <i>)) >>)
Performs a logical conjunction on its two operands, that is, returns true only when both of its operands are true.
This is a relational operator only, not a match predicate. AND may be used only in relational expressions within IF...THEN...ELSE... or WHILE...DO... actions.
rel-expr AND rel-expr
rel-expr | The relational expressions to be combined. These arguments must evaluate to either true or false. |
The following code fragment shows the AND operator in a WHILE...DO... action:
(while ((<cards-dealt> < 5) AND (<dealing> == true)) do (deal-a-card))
Performs a logical negation on its operand, that is, returns true when the operand is false and false when the operand is true.
This is a relational operator, not a match predicate. NOT may be used only in relational expressions within IF...THEN...ELSE... or WHILE...DO... actions.
NOT relation
relation | The relational expression to be negated. This must evaluate to either true or false. |
The following code fragment shows the NOT operator in an IF...THEN...ELSE... action:
(if (not (<day> = work-day)) then (sleep-late) else (go-to-work))
Performs a logical inclusive disjunction on its two operands, that is, returns true when either one or both of its operands is true.
This is a relational operator, not a match predicate. OR may be used only in relational expressions within IF...THEN...ELSE... or WHILE...DO... actions.
relation OR relation
relation | The relational expressions to be combined. These operands must evaluate to either true or false. |
The following code fragment shows the OR operator in an IF...THEN...ELSE... action:
(if ((<weather> = sunny) or (<weather> = warm)) then (do_outdoor_chores) else (do_indoor_chores))
The RuleWorks RHS actions are listed below. Note that some actions are also valid as commands at the interpreter prompt; this is indicated in the title of each topic:
ADDSTATE Action and Command
AFTER Action and Command
BIND Action
CALL-INHERITED Action
CLOSEFILE Action and Command
COPY Action and Command
DEBUG Action
DEFAULT Action and Command
FOR-EACH Action
IF...THEN...ELSE... Action
MAKE Action and Command
MODIFY Action and Command
OPENFILE Action and Command
QUIT Action and Command
REMOVE Action and Command
REMOVE-EVERY Action and Command
RESTORESTATE Action and Command
RETURN Action and Command
SAVESTATE Action and Command
SPECIALIZE Action and Command
TRACE Action and Command
WHILE...DO... Action
WRITE Action
Additonal actions are listed under the RuleWorks interface to SQL.
Adds the objects in a file produced by the SAVESTATE action or command to working memory.
The added objects have new INSTANCE-IDs and new time-tags. Any attributes in the added objects that have INSTANCE-ID values that point to other added objects are automatically updated so that the references remain consistent.
The ADDSTATE action and command is scoped to the entry block; it creates visible objects only. Trying to add objects whose class declarations are not visible to the entry block causes a run-time warning, and the WMOs are not made.
(ADDSTATE filespec )
filespec | A file specification for a file previously produced by the SAVESTATE action or command. See Section C.1 for restrictions on file names. |
Suppose you use the SAVESTATE action or command to create the file CONFIG.DAT. The following action adds the objects in the file to working memory:
(addstate config.dat)
The equivalent command is:
RuleWorks> addstate config.dat
On ULTRIX and DEC OSF/1 systems, the command could be:
RuleWorks> addstate |config.dat|
Specifies the number of recognize-act cycles that must be executed before a specified catcher is executed (see also Section 5.2.2).
Only one catcher can be active. Thus, the AFTER action and command disables the current catcher, if any, before it enables the new one.
The rule-firing counter is local to the current invocation of the active entry block. Recognize-act cycles executed by an entry block called from the entry block that contains the AFTER and CATCH actions are not counted.
(AFTER cycles catcher-name )
cycles | A positive integer that specifies the number of recognizeact cycles that are to be executed before the specified catcher is executed. If this number of cycles is never reached, the catcher is not executed. |
catcher-name | A symbol that names a catcher. If the catcher executes another AFTER, the counter restarts. |
The following command specifies that the catcher named TOO-MANY-CYCLES is to be executed after 100 recognize-act cycles have been executed:
RuleWorks>
after 100 too-many-cycles
The equivalent action is:
(after 100 too-many-cycles)
Binds a variable to a value.
The scope of the variable binding depends on the construct that contains the BIND action. Variables bound in rules, catchers, and methods are local. Variables bound to the input arguments of an entry block, and variables bound in any ON- statement, are visible to all subsequent ONstatements.
(BIND variable value-expression )
variable | The variable to which a value is to be bound. |
value-expression | An expression that can evaluate to either a scalar or compound value. The action binds the specified variable to the value that results from the evaluation. |
The MAKE, COPY, MODIFY and SPECIALIZE actions return a value of type INSTANCE-ID. You can use them as the second argument to the BIND action, as well as anywhere else a value expression is permitted.
The following action binds the variable <NEW-OBJECT> to the INSTANCE-ID returned by a MAKE action. (See Example 3-3 for the complete program.)
(bind <new-object> (make example-object ^next <first-object> ^last <instance-id> ^value (<val> + 1)))
Used within a METHOD definition only, to invoke a method defined for a parent class. If there is no such method, the action does nothing.
(CALL-INHERITED arg-list )
arg-list | The arguments you supply to the CALL-INHERITED action must conform to the restrictions declared by the ACCEPTS clause of the method that is inherited. |
This example shows ???:
(method ???
(call-inherited ???))
Closes the open files associated with specified file identifiers and dissociates the identifiers from the files.
(CLOSEFILE file-id...)
file-id | The file identifier of the file to be
closed.
The file must have been opened and associated with the identifier
in a previous OPENFILE action or command. You can specify one or more file identifiers. |
The following command closes the open files associated with the file identifiers INFIL and OUTFIL:
RuleWorks>
closefile infil outfil
The equivalent action is:
(closefile infil outfil)
Makes a new object from an existing object. The existing object remains unchanged as a result of this operation. If you specify one or more attributes and values in the COPY, the new object is created with the new values you supply. In any case, the new object has a new ID and a new time-tag. For more information about objects, see Section 2.2.
Note that the first argument to the COPY action must be a variable, while the first argument to the COPY command must be a constant.
You can also use COPY as a function with the BIND action.
(COPY ID-variable [ {^attribute value-expression}... ] )
COPY instance-id [ {^attribute value}...]
ID-variable | A variable bound to a value of type INSTANCE-ID, indicating the object to be duplicated. The object must be visible to the active entry block. This argument can be used only in source code. |
instance-id | A constant of type INSTANCE-ID, indicating the object to be duplicated. The object must be visible to the active entry block. This argument can be used only at the command interpreter level. |
attribute | An optional argument, this represents an attribute whose value is to be changed during the copy operation. You must specify a value with each attribute; you can specify any number of attribute-value pairs. |
value-expression | Any scalar or compound value (if you specify a compound attribute) is a valid argument to the COPY action, including function calls and arithmetic expressions. |
value | A scalar or compound value (if you specify a compound attribute). You cannot use expressions or call functions (except the COMPOUND function) in an argument to the COPY command. |
The COPY action returns the INSTANCE-ID atom that identifies the new WMO.
This example shows a rule from the sample program, KIWI.OPS, rewritten to use a COPY action:
(rule verify-configuration:kiwindows-needs-2-memory-cards-found-one (active-context ^name verify-configuration) (kiwindows) (memory ^$ID <mem-id>) - (memory ^$ID <> <mem-id>) --> (make error ^severity warning ^message |Insufficient memory|) (write (crlf) |Caution: KiWindows requires two memory cards,| (crlf) | but you have only one memory card.| (crlf) | Fixup: adding another memory card to your order.| (crlf)) (copy <mem-id>))
The following example shows the equivalent COPY command and its results:
RuleWorks> ppwm memory #31 [CONVERT-SINGLE-ITEM-INPUT-THING-TO-PARTS:MEMORY] (MEMORY) RuleWorks> copy #31 RuleWorks> ppwm memory #31 [CONVERT-SINGLE-ITEM-INPUT-THING-TO-PARTS:MEMORY] (MEMORY) #32 [|main|] (MEMORY)
Pauses execution after the current rule or ON- construct and invokes the RuleWorks command interpreter.
This action is effective only when contained in an entry or rule block that was compiled with the DEBUG qualifier set to YES or MAYBE (see Chapter 9 for more information on compiling RuleWorks programs). If the block was compiled with DEBUG NO, the DEBUG action is a no-op.
(DEBUG)
None.
RuleWorks debugging commands are allowed after the DEBUG action, and will be executed by the command interpreter. For example:
(ON-ENTRY (make agenda ^tasks (compound start work stop)) (debug) (watch rules) (make control ^name print-err-messages))
Sets the default input source for the ACCEPT-ATOM and ACCEPTLINE-COMPOUND functions, or the default output destination for the WRITE action or trace output. If you do not use the DEFAULT command or action to specify otherwise, RuleWorks reads input from the keyboard and sends output to the screen (see Section C.2 for platform-specific details.)
(DEFAULT file-id io-type )
file-id | The source from which input is to be read
or the destination to which output is to be written.
The value can be either a file identifier or the symbol NIL.
If you specify a file identifier, DEFAULT sets
the source or destination to the open file associated with that name.
If you specify NIL, the input is read from the keyboard or output is
sent to the screen. Use the OPENFILE action or command to open a file for access in a specified mode and create a file identifier. |
io-type | A keyword that specifies whether the default is to be set for input, debugging output, or program output. |
The following commands open a file for input, associate it with the file identifier INFIL, and set it to be the default source the ACCEPT-ATOM and ACCEPTLINE-COMPOUND functions:
RuleWorks> openfile infil order.dat in RuleWorks> default infil accept
The equivalent actions are:
(openfile infil order.dat in) (default infil accept)
The valid keywords for the DEFAULT action are shown below:
I/O Type | Mode | Description |
ACCEPT | IN | Input read by the ACCEPT-ATOM and ACCEPTLINE-COMPOUND functions. |
TRACE | OUT APPEND |
Output generated by the TRACE debugging command. |
WRITE | OUT APPEND |
Output produced by the WRITE action. |
Allows iteration over each element in a compound value. The index variable is bound and the specified RHS actions are executed once for each iteration.
(FOR-EACH <element> IN compound-value RHS-action... )
<element> | The index variable that is bound to each element of the compound value. |
compound-value | The compound value to be acted upon. This argument may be a bound compound variable or an expression that returns a compound value. |
RHS-action | Any valid RHS action. You can specify any number of actions. |
This example uses the FOR-EACH action to print out the names of all the cards in a Kiwi-9200 computer card cage. Note that this also shows how to bind an index variable.
(rule print-out-cage:do-it (active-context ^name print-out-cage) (box ^cards-in-slot <cards> ) --> (write (crlf) |The card cage will contain: |) (bind <slot-counter> 1) (for-each <card> in <cards> (write (crlf) (tabto 20) |Slot number| <slot-counter> |contains a| <card>) (bind <slot-counter> ( <slot-counter> + 1))))
Executes one or more RHS actions when a relational expression is true, or executes one or more different RHS actions when the expression is false. In other words, provides a branch in the flow of control.
(IF ( rel-expr ) THEN RHS-action... [ ELSE RHS-action... ] )
rel-expr | >A relational expression that determines
which RHS actions are to be executed.
This argument must evaluate to either true or false. It may not contain
any SQL actions. Note that RuleWorks does not have Boolean values. Therefore, this argument must be a comparison of two expressions. It must not be a single value. For example, RuleWorks does not allow (IF (TRUE) THEN...). |
RHS-action | >Any RuleWorks action. You can specify any number of actions. |
THEN | Specifies the actions that are to be executed when the relational expression is true. This clause is required. |
ELSE | Specifies the actions that are to be executed when the relational expression is false. This clause is optional. |
This example shows ???:
(IF (???)
THEN (???)
ELSE (???))
Creates a working-memory object of the specified class, with the specified attribute values (if any). RuleWorks uses the default values for attributes you do not specify (see Section 2.3.3).
When you create WMOs at the command interpreter prompt, the first argument to the MAKE command must be a constant. In contrast, when you create WMOs in source code, the first argument to the MAKE action can be a variable or a call to the GET function.
You can also use MAKE as a function with the BIND action.
(MAKE class-name [ { ^attribute value-expression }... ] )
MAKE class-name [ { ^attribute value }... ]
class-name | A symbol or variable that names the class of the object to be created; it must be visible to the active entry block. |
attribute | A symbol that names an attribute declared in the specified class. This argument is optional, but if you specify any attributes, you must specify a value with each attribute. |
value-expression | Any scalar or compound expression (if you specify a compound attribute) is a valid argument to the MAKE action, including function calls and arithmetic expressions. |
value | A scalar or compound value (if you specify a compound attribute). You cannot use expressions or call functions (except the COMPOUND function) in an argument to the MAKE command. |
The MAKE action returns the INSTANCE-ID atom that identifies the new WMO.
The following rule uses the MAKE action to create an object of class ACTIVE-CONTEXT, with a bound variable as the value of the ^NAME attribute:
(rule make-context-active (context ^name <context-name> ^$ID <context-id>) --> (make active-context ^name <context-name>) (remove <context-id>))
The following MAKE command creates an object of class BOX with one element each in the compound attributes ^CARD-INSLOT and ^CARD-IN-SLOT-OBJ-ID:
RuleWorks>(make box ^card-in-slot (compound memory) RuleWorks>^card-in-slot-obj-id (compound #32))
The MAKE command below uses the bracket notation to index a compound attribute:
RuleWorks>make box ^card-in-slot[3] keyboard ^card-in-slot-obj-id[3] #49
Changes one or more values in an existing working-memory object.
The object must be visible to the active entry block. The object's time-tag is updated but its INSTANCE-ID remains the same. (For more information about objects, see Section 2.2.)
When you change WMOs at the command interpreter prompt, the first argument to the MODIFY command must be a constant. In contrast, when you change WMOs in a rule, the first argument to the MODIFY action can be a variable or a call to the GET function.
You can also use MODIFY as a function with the BIND action.
(MODIFY ID-variable {^attribute value-expression} ... )
MODIFY instance-id {^attribute value} ...
ID-variable | An expression of type INSTANCE-ID, indicating the object to be modified. This argument can be used in rules only. |
instance-id | A constant of type INSTANCE-ID, indicating the object to be modified. This argument can be used only at the command interpreter level. |
attribute | An attribute name that specifies which value in the object is to be changed. You must specify a value with each attribute. |
value-expression | Any scalar or compound value (if you specify a compound attribute) is a valid argument to the MODIFY action, including function calls and arithmetic expressions. |
value | A scalar atom or a compound value containing constants (if you specify a compound attribute). You cannot use expressions or call functions (except COMPOUND) in an argument to any command. |
The MODIFY action returns the INSTANCE-ID atom that identifies the changed WMO.
The following action changes one attribute of a SOFTWAREOPTION object:
(modify <the-software> ^media-type FD-35)
The equivalent command is shown below:
RuleWorks> wm #29 #29 [EXPAND-PART-SKELETONS:KIWICALC] (KIWICALC ^NAME KIWICALC ^PART-NUM BER S-CA-9200 ^PRINTNAME KiwiCalc Spreadsheet Software ^PRICE 29.95 ^IS-EX PANDED YES) RuleWorks> modify #29 ^media-type fd-35 RuleWorks> wm #29 #29 [||] (KIWICALC ^MEDIA-TYPE FD-35 ^NAME KIWICALC ^PART-NUMBER S-CA -9200 ^PRINTNAME KiwiCalc Spreadsheet Software ^PRICE 29.95 ^IS-EXPANDED YES)
See Section 4.3 for examples of modifying compound attributes.
Opens a file for access in a specified mode and associates it with a file identifier.
(OPENFILE file-id filespec mode )
file-id | A symbol that represents the file identifier with which the specified file is to be associated. |
filespec | The file specification for the file to be opened. If you are opening a file for input, the file must already exist. (See Section C.1 for platform-specific information on file names.) |
mode | A keyword that indicates whether the specified file is to be opened for input or output. |
The following action opens the file ORDER.DAT for input and associates it with the file identifier INFIL:
(OPENFILE INFIL ORDER.DAT IN)
The equivalent command is:
RuleWorks>
openfile infil order.dat
The following table shows the keywords for the OPENFILE action:
Mode | Effect |
IN | The action opens an existing file for reading only. |
OUT | The action creates a new file and opens it for writing only. |
APPEND | The action opens an existing file for writing and sets the file pointer to the end |
Terminates execution of the current image and returns control to the operating system. If there are other actions in the rule, they are not executed. The ON-EXIT actions are not executed after a QUIT action. You can return a value with QUIT. Valid arguments for QUIT include $FAILURE and $SUCCESS, as well as any integer. RuleWorks substitutes either 0 or 1, as appropriate for the operating system, for $FAILURE and $SUCCESS.
Entering QUIT at the command interpreter is equivalent to pressing Ctrl/Z on VMS systems, Ctrl/D on UNIX systems.
(QUIT [value-expr] )
QUIT [return-value]
value-expr | The value returned by RuleWorks. This argument is optional; it can be an expression that evaluates to a scalar value, $FAILURE, or $SUCCESS. This argument can be used in rules only. |
return-value | The value returned by RuleWorks. This argument is optional; it can be a constant, $FAILURE, or $SUCCESS. You cannot use expressions or function calls (except to COMPOUND) as arguments to any command. |
The following command exits from the command interpreter and returns control to the operating system:
RuleWorks>
quit
$
The following example uses the QUIT action to terminate execution with a return value indicating success.
(rule success (context ^$ID <context> ^task complete) --> (remove <context>) (quit $success))
When this rule fires, the QUIT action causes the run-time system to stop executing recognize-act cycles immediately. The compiler provides a warning when any actions follow RETURN or QUIT actions.
The entry block's ON-EVERY and ON-EXIT statements are not executed after a QUIT action.
Deletes one or more objects from working memory.
The object must be visible to the active entry block. Once an object has been removed, it can no longer be accessed. However, variables bound to the values of attributes of that object can still be used.
When you delete WMOs at the command interpreter prompt, the first argument to the REMOVE command must be a constant. In contrast, when you delete WMOs in a rule, the first argument to the REMOVE action can be a variable or a call to the GET function.
(REMOVE ID-expr ... )
ID-expr | A RuleWorks expression that evaluates to a value of type INSTANCE-ID, indicating the object to be deleted. You can specify one or more IDs. This argument can be used in rules only. |
instance-id | A constant of type INSTANCE-ID, indicating the object to be deleted. This argument can be used only at the command interpreter level. |
* | You can specify an asterisk (*) to delete all visible objects. Objects whose class declarations are neither contained in nor used by the active entry block remain in working memory. |
The following command deletes all visible objects:
RuleWorks>
remove *
The following command deletes the objects whose identifiers are #3 and #4:
RuleWorks>
remove #3 #4
Consider the following rule:
(rule make-context-active (context ^name <context-name> ^$ID <context-id>) --> (make active-context ^name <context-name>) (remove <context-id>))
The REMOVE action deletes the object bound to the variable <CONTEXT-ID>.
Deletes all the working memory objects that are instances of the specified class or its subclasses.
The class must be visible to the active entry block. Once an object has been removed, it can no longer be accessed. However, variables bound to values of attributes of that object can still be used.
(REMOVE-EVERY class-name ... )
class-name | An expression that evaluates to a symbol
names an object class.
The declaration of this class must be contained in or used by the active
entry block. You can also use the symbol $ROOT, to remove all visible objects. |
The following example removes working-memory objects when the conflict set is empty:
(ON-EMPTY (write |Sorry... Program error. No satified rules".| (crlf)) (remove-every control-context) (remove-every local) (remove-every input-thing) (remove-every error) (remove-every part) (remove-every input-count) (remove-every total-cost) (quit 0))
Clears and then restores working memory, the conflict set, the GENATOM counter, and the INSTANCE-ID generator to the state recorded in a file produced by the SAVESTATE action or command.
The working memory objects contained in the SAVESTATE file must be visible to the active entry block. A run-time warning is generated if the files contains any objects whose class declarations are neither private to nor shared by the active entry block.
RESTORESTATE clears all working memory objects before loading the new state; therefore, variable bindings are lost.
After a RESTORESTATE action, the GENATOM and GENINT functions produce atoms that are different from any that were recorded in the saved file. They may repeat atoms that were generated before the RESTORESTATE action was executed.
(RESTORESTATE filespec )
filespec
The file specification for a file previously produced by the SAVESTATE action or command. The action uses the contents of the file to restore the state of working memory and the conflict set. See Section C.1 for restrictions on file names.
The following action clears and then restores the contents of working memory and the conflict set to the same state recorded in the file CONFIG.DAT:
(restorestate config.dat)
Stops the firing of rules in the current entry block, executes the ON-EXIT actions (if any), and passes control back to the caller of the entry block. The RETURN action is executed immediately, so any actions that follow it are not executed and a warning is generated.
This action has one optional argument, the value to be returned. Your RETURN action(s) should match the RETURNS clause of your ENTRY-BLOCK declaration. For example, if your entry block has no RETURNS clause, a RETURN action with an argument generates a compiler warning. Similarly, if your entry block declares a symbolic return value, a RETURN action with a numeric argument generates a run-time warning.
RETURN actions are valid in entry blocks and in METHOD definitions, but not in rule blocks. When you use a RETURN action in a METHOD definition, the action returns from the method function, not from the active entry block.
Executing more than one RETURN action generates a warning. If a value is being returned from the entry block, the value of the last RETURN action executed is used.
When you execute a RETURN command at the RuleWorks interpreter prompt, and the return is to a RuleWorks entry block, no action of the caller is executed before the prompt reappears. This allows you to see working memory in exactly the state the callee left it.
(RETURN [value-expr] )
RETURN [value]
value-expr | The value returned by the entry block. This argument is optional; it can be any expression that evaluates to the structure (scalar or compound) and domain (integer, symbol, and so on) specified in the ENTRY-BLOCK declaration. |
value | The value returned by the entry block. This argument is optional; it may be a constant or a call to the COMPOUND function. You cannot use any other functions or expressions at the command line. |
This example shows a simple rule that returns a value:
(rule when-done-return-number-filled (task ^name last-step) - (order ^status unfilled) (totals ^filled-orders <count>) --> (return <count>)
Copies to a file the state of working memory, the conflict set, the GENATOM and GENINT counter, and the INSTANCE-ID generator. You can later use the ADDSTATE or RESTORESTATE action or command to add to or overwrite the current memory with the contents of the file.
Only objects that are visible to the active entry block are saved.
(SAVESTATE filespec )
filespec
The file specification for the file to which the state of working memory and the conflict set is to be copied. See Section C.1 for restrictions on file names.
The following action copies the state of working memory and the conflict set to the file CONFIG.DAT:
(savestate config.dat)
The equivalent command is:
RuleWorks>
savestate config.dat
Converts an instance of a parent class to an instance of a descendent class. The converted object's INSTANCE-ID does not change as a result of this action. You can also set or change any attributes belonging to the descendent class.
When you convert WMOs at the command interpreter prompt, the first argument to the SPECIALIZE command must be a constant. In contrast, when you convert WMOs in a rule, the first argument to the SPECIALIZE action can be a variable or a call to the GET function.
(SPECIALIZE ID-variable new-class-name-expr [ {attribute-name-expr value-expr}...] )
SPECIALIZE instance-id new-class-name [ {attribute-name value}...]
ID-variable | An expression of type INSTANCE-ID, indicating the object to be specialized. This argument can be used in rules only. |
new-class-name-expr | An expression that evaluates to a symbol that names an object class that inherits from the current class of the object being specialized. |
attribute-name-expr | A symbol or bound variable that
evaluates to an attribute declared in or inherited by the new class.
This argument is optional; if you do specify an attribute, you must also
specify a value for it. You can specify any number of attribute-value pairs. |
value-expr | Any valid RuleWorks expression that evaluates to the same structure (scalar or compound) as the attribute. |
instance-id | A constant of type INSTANCE-ID, indicating the object to be specialized. The object must be visible to be active entry block. This argument can be used only at the command interpreter level. |
new-class-name | A symbol that names an object class that inherits from the current class of the object being specialized. |
attribute-name | A symbol that names an
attribute declared in or inherited by the new class.
This argument is optional; if you do specify an attribute, you must also
specify a value for it. You can specify any number of attribute-value pairs. |
value | A value that has the same structure (scalar or compound) as the attribute. |
The SPECIALIZE action returns the INSTANCE-ID atom that identifies the converted object.
The following rule shows one possible use of the SPECIALIZE action:
(RULE animal-now-identified-as-a-zebra ; if current class is the generic class ANIMAL (animal ^$ID <My-animal> ^$OBJECT-CLASS animal ^name <n>) (identification ^name <n> ^is-a zebra) --> (SPECIALIZE <My-animal> zebra ; new class is ZEBRA ^inter-breeds-with (compound horse donkey)))
Displays or changes the run-time system's trace setting, which controls the amount of information the system displays while executing a program.
This action is effective only when contained in an entry or rule block that was compiled with the DEBUG qualifier set to YES or MAYBE (see Chapter 9 for more information on compiling RuleWorks programs). If the block was compiled with DEBUG NO, the TRACE action is a no-op.
trace-name | The name of a trace setting. You can supply one or more names. |
* | All trace settings. |
The following command displays the current trace level:
RuleWorks>trace ENTRY-BLOCK RULE-GROUP RULE WM
The following commands change and redisplay the trace setting:
RuleWorks>trace off rb rule RuleWorks>trace ENTRY-BLOCK WM
For examples of trace output, see Section 11.2.7.
Valid settings for the TRACE command are shown below:
Name | Information Displayed |
Entry blocks being entered or exited | |
RULE | Global and local rule firing counts and instantiation executed |
Rule group name added to RULE trace information | |
WM | Objects being created, changed, or deleted from working memory |
CS | Instantiations into and out of the conflict set |
Repeatedly executes one or more RHS actions as long as a relational expression remains true. In other words, provides a loop in the flow of control.
(WHILE ( rel-expr ) DO RHS-action ... )
rel-expr | A relational expression that determines
whether RHS actions are to be executed.
This argument must evaluate to either true or false.
It may not contain any SQL functions. Note that RuleWorks does not have Boolean values. Therefore, this argument must be a comparison of two expressions. It must not be a single value. For example, RuleWorks does not allow (WHILE (TRUE) DO...). |
RHS-action | Any RuleWorks action. You can specify any number of actions. |
DO | Specifies the actions that are to be executed as long as the relational expression remains true. This clause is required. |
(WHILE (<sun-shines> = true) DO (make_hay))
Sends output from a program to the terminal or a file.
By default, the WRITE action sends output to the terminal. To send output to a file, you can do one of the following:
• Specify the WRITE action with a file identifier
• Change the default destination for the WRITE action, using the DEFAULT action or command
(WRITE [file-id] RHS-expression )
file-id | The file identifier of the destination file for the WRITE action's output. This argument is optional. If you do not specify the argument or if the name you specify is not associated with an open output file, the output is sent to the current default for the WRITE action (set with the DEFAULT action or command). |
RHS-expression | A right-hand-side expression that
represents the output.
The action evaluates the expression and sends the output to the
destination or file-id. Use the following functions to format the output: If you do not use these functions, the WRITE action displays its output on the current output line with one space between values. For information about using these functions, see Sections 4.5.4.1 through 4.5.4.3. |
The following WRITE action is from the rule OUTPUT-HARDWARE-OPTIONS:WITH-SLOT:
(write (crlf) <num> (tabto 12) <pname> (tabto 50) |in Slot:| <slot-num> (tabto 65) (rjust 10) <price>) )
This action produces the following output:
FD-35 3.5" Floppy Disk Drive in Slot: 4 99.95 KB-9200 108-Key Keyboard with Mouse Port in Slot: 3 99.95 MS-9200 Kiwi-9200 Memory card in Slot: 2 129.95 MS-9200 Kiwi-9200 Memory card in Slot: 1 129.95
The RuleWorks interface to SQL consists of the following actions:
SQL-ATTACH Action
SQL-COMMIT Action
SQL-DELETE Action
SQL-DETACH Action
SQL-FETCH-EACH Action
SQL-FETCH-AS-OBJECT Action
SQL-INSERT Action
SQL-INSERT-FROM-OBJECT Action
SQL-ROLLBACK Action
SQL-START Action
SQL-UPDATE Action
SQL-UPDATE-FROM-OBJECT Action
Specifies the database of interest by executing a DECLARE SCHEMA statement. You can specify the source of the schema either by providing the database filespec itself or by providing a pathname to the CDD schema definition.
Note that the actual attachment to the database usually does not occur until the first executable SQL statement after this action is processed.
SQL-ATTACH database-spec [DBKEY-scope]
database-spec | This argument must be either FILENAME
db-filespec or PATHNAME db-pathname.
The keyword FILENAME may be omitted; the keyword PATHNAME is required.
A logical name may be used for all or part of the database filespec or for the CDD pathname. |
DBKEY-scope | A keyword that specifies the duration of validity of database key values, either TRANSACTION or ATTACH. ATTACH scoping means that a database key value is valid for the entire time your program is attached to a given database, rather than just for the duration of a single transaction. TRANSACTION scoping is the default |
The following example uses the FILENAME method. MY_DB is a logical name pointing to the complete filespec for the database.
(SQL-ATTACH FILENAME MY_DB)
The next example shows the same attachment except that the scope or duration of DBKEY validity is the total time your program is attached to the database, rather than the duration of the transaction as in the previous example (by default).
(SQL-ATTACH FILENAME MY_DB ATTACH )
Completes the current SQL transaction and makes permanent any changes made to the database during the transaction. This action executes a COMMIT statement.
SQL-COMMIT
None.
Deletes all or selected records from a specified database table, by executing a DELETE FROM statement. This action does not remove any RuleWorks objects; it is up to you to use REMOVE actions to do that.
The SQL-DELETE action can be executed only within the context of a READ WRITE transaction, which you must explicitly start with an SQL-START action.
SQL-DELETE table-name [WHERE-clause]
table-name | Specifies the database table from which rows are to be deleted. |
WHERE-clause | Optionally specifies which records are to be deleted within the target table. If the where-clause is omitted, the default is to delete all records in the table specified in the first argument. |
The first example deletes all records in table W1:
(SQL-DELETE W1)
The next example deletes only those records in table W1 that satisfy the WHERE clause:
(SQL-DELETE W1 |WHERE fld1 = 10 AND fld2 = 'some text'| )
The records deleted are those with field fld1 equal to the value 10, and field fld2 equal to the string 'some text'. All other records in W1 are unaffected.
Detaches your program from any database previously attached by an SQL-ATTACH action. This action executes a FINISH statement and a COMMIT statement on the current transaction, if any.
SQL-DETACH
None.
For each selected database record, binds field value(s) to specified RuleWorks variable(s) and then performs one or more RHS actions. This action executes a SELECT statement.
You can create or change instances of any OBJECT-CLASS in the RHS actions performed by the SQL-FETCH-EACH action. The OBJECT-CLASS does not have to match the database table name, nor do the attribute names have to match the database field names.
SQL-FETCH-EACH <var>... (select-expr) (RHS-action)...
<var> | One or more RuleWorks variables to which database field values are to be bound. These variables must not be bound prior to the SQL-FETCH-EACH action. They can be used only in the RHS actions provided as the third argument. |
select-expr | An SQL select expression that limits the fetch to specific database table(s) and record(s) and specifies which database fields are to be fetched. This expression can include variables bound prior to the SQL-FETCH-EACH action (either on the LHS or RHS), but cannot include variables specified in the first argument. |
RHS-action | One or more RuleWorks
RHS actions to be performed for each database
record fetched.
Note that these actions may not include any other SQL interface actions.
These actions can use both variables bound prior to the SQL-FETCH-EACH action and variables specified in the first argument. If these actions bind any variables, those bindings are maintained after the SQL-FETCH-EACH action is executed. |
The first example fetches records from database table tbl_ 1, and binds the values of fields fld1 and fld2 to the RuleWorks variables <v1> and <v2>. These variables are then used in two MAKE actions, creating new instances of classes W1 and W2. The actions are repeated for each database record that satisfies the FROM and WHERE clauses of the select expression.
SQL-FETCH-EACH <v1> <v2> (SELECT fld1, fld2 FROM tbl_1 WHERE fld3 = 1) (MAKE w1 ^a1 <v2> ^a2 tbl_1 ) (MAKE w2 ^a3 <v1> ^a4 (<v1> + <v2>)))
The above example uses symbols in the select expression.
The following example uses RuleWorks variables that are (presumably) bound earlier in the rule that contains this SQL-FETCH-EACH action. The optional vertical bars (|) around the constant parts of the select expression allow the compiler to generate more efficient code.
(SQL-FETCH-EACH <v1> <v2> SELECT * FROM| <table-name> |WHERE fld3 = |<val>) (MAKE w1 ^a1 <v2> ^a2 tbl_1 ) (MAKE w2 ^a3 <v1> ^a4 (<v1> + <v2>)))
In this example, all the fields in the database record are selected, because of the wildcard (*). However, only the first two fetched are used. Any extra field values are ignored.
Makes WMOs from selected database records by executing a SELECT statement.
This action creates instances of a single OBJECT-CLASS only, even if it is retrieving data from multiple tables (for example, a join between source tables). The OBJECT-CLASS matches the (first) table name specified in the FROM clause of the select expression. SQL-FETCH-AS-OBJECT creates one new object from each database record selected.
The database field names and the attribute names of the OBJECT-CLASS must match. Any selected fields that do not have a corresponding attribute are ignored. Any attributes that do not have a corresponding field are set to their DEFAULT values (if one was declared) or NIL. Attributes that correspond to fields whose value is "missing" are also set to NIL.
You can use the SQL-FETCH-AS-OBJECT action as the value argument to a BIND action. The variable argument of the BIND action is bound to a compound value that contains the INSTANCE-IDs of all the fetched WMOs.
SQL-FETCH-AS-OBJECT select-expr
select-expr | An SQL select expression that restricts the fetch to specific database records and specifies which database fields are to be fetched. The database table specified in the select expression is used as the object class name for the objects created by the SQL-FETCH-AS-OBJECT operation. |
When used as an the second argument to the BIND action, the SQL-FETCH-AS-OBJECT action returns a compound value that contains the INSTANCE-IDs of all the objects created.
In the first example, selected records from table W1 are fetched and used to create objects. Only records with field fld1 having a value less than field fld2 are fetched. (This is a numeric comparison; the last two examples use character string fields.)
(SQL-FETCH-AS-OBJECT SELECT * FROM W1 WHERE fld1 < fld2 )
Any objects created by this action are instances of OBJECT-CLASS W1, as specified in the FROM clause. All record fields are used and mapped into object attributes, as requested by the use of an asterisk (*) in the select expression.
The next example refines the first by fetching fields fld1, fld2, and fld3 only. Again, as in the previous example, only records with field fld1 value less than that of fld2 are fetched.
(SQL-FETCH-AS-OBJECT SELECT fld1, fld2, fld3 FROM W1 WHERE fld1 < fld2 )
This example illustrates the DISTINCT qualifier, which restricts the new W1 objects to unique combinations of fld1 and fld2 values. Without the DISTINCT qualifier this action can yield multiple duplicate objects, depending on the database contents:
(SQL-FETCH-AS-OBJECT SELECT DISTINCT fld1, fld2 FROM W1 WHERE fld1 < fld2 )
This example fetches the DBKEY for each database record, along with the fld1 and fld2 values. The OBJECT-CLASS declaration for W1 in this case must include a DBKEY attribute, so that the action has a place to put the DBKEY value.
(SQL-FETCH-AS-OBJECT SELECT fld1, fld2, DBKEY FROM W1 WHERE fld1 < fld2 )
(SQL-FETCH-AS-OBJECT SELECT W1.*, DBKEY FROM W1 WHERE fld1 < fld2 )
The action above shows how to select all fields and capture the DBKEY values. The required syntax is not the SELECT *, DBKEY that you might expect.
This example uses string field comparisons in the select expression. Only those records that have fld1 equal to the string 'ABC' and fld2 equal to the string bound to the RuleWorks variable <var> are selected and fetched. Note that RuleWorks automatically converts the symbol 'abc' to the string 'ABC'.
(SQL-FETCH-AS-OBJECT SELECT * FROM W1 WHERE fld1 = 'abc' AND fld2 = '<var>' )
This example shows the previous SQL-FETCH-AS-OBJECT action used as an argument to the BIND action:
(bind <x>
(SQL-FETCH-AS-OBJECT SELECT * FROM W1 WHERE fld1 = 'abc' AND fld2 = '<var>'))
Stores new records in the specified database table by executing an INSERT statement. The fields to be set, and their new values, are provided in the second argument.
This action can be executed only within the context of a READ WRITE transaction, which you must explicitly start with an SQL-START action.
SQL-INSERT table-name SQL-expr
table-name | Specifies the database table into which the new records are to be inserted. |
SQL-expr | An SQL expression that specifies the target fields and their values. |
In this example a new record is created in database table tbl_1, with its field fld2 set to 123 and its field fld5 set to the string 'test'. The SQL expression is enclosed in vertical bars because it includes parentheses:
(SQL-INSERT tbl_1 |(fld2, fld5) VALUES (123, 'test')| )
The next example is similar to the previous one, except that one of the field names is defined at run-time by the RuleWorks variable <v1>, and the value for field fld5 is given by the RuleWorks variable <v2>:
(SQL-INSERT tbl_1 |(| <v1> |, fld5) VALUES (456,| '<v2>' |)| )
Since fld5 is a character (string) field, the value substituted for <v2> must be enclosed in single quotes. Note that both unquoted and quoted variables must be preceded and followed by whitespace, as in this example.
Also, parentheses that are passed to SQL must be enclosed in vertical bars.
Stores the contents of a specified object in a new database record by executing an INSERT statement. The record is inserted into the database table that has the same name as the object's OBJECT-CLASS. The values of the object's ^$ID and ^$INSTANCE-OF attributes are not written to the database, even if the database explicitly provides fields with those names.
This action can be executed only within the context of a READ WRITE transaction, which you must explicitly start with a SQL-START action.
SQL-INSERT-FROM-OBJECT <ID-variable>
<ID-variable> | A variable of type INSTANCE-ID that specifies the object to be stored. |
In this example the object identified by the <W> object identifier is inserted into the database, into the table having the same name as the <W> object's OBJECT-CLASS. After the SQL-INSERT-FROM-OBJECT, you are free to remove the <W> object or leave it in working memory.
(SQL-INSERT-FROM-OBJECT <W> )
Undoes any changes to the database made during the current transaction and completes the transaction. This action executes a ROLLBACK statement.
SQL-ROLLBACK
None.
Executes a SET TRANSACTION statement to start a transaction with the specified options. These options can include a READ ONLY versus a READ WRITE transaction, and whether to retain any locks obtained on records during the course of the transaction.
You end the transaction started by this action with an SQL-COMMIT, SQL-DETACH, or SQL-ROLLBACK action.
SQL-START [txn-options]
txn-options | Optional list of desired SQL transaction options. If this argument is not provided, a READ ONLY transaction is the default. |
The first example starts a READ ONLY transaction by default, because it has no transaction options:
(SQL-START)
The following example shows an update transaction whose options request that any records accessed during the transaction have locks retained on them, so that the records may be updated again (in protected write mode):
(SQL-START |READ WRITE RESERVING W1 FOR PROTECTED WRITE| )
The vertical bars in this example are not required, but they do make the action more efficient.
Modifies the contents of selected database records, where the fields to be modified and their new values are specified in the second argument.
This action can be executed only within the context of a READ WRITE transaction, which must be explicitly started by an SQL-START action.
SQL-UPDATE table-name SET-clause [WHERE-clause]
table-name | Specifies database table to be modified. |
SET-clause | An SQL expression to define which fields are to be updated within the target table, and the new values for these fields. |
WHERE-clause | An optional select expression that specifies which database records are updated. If it is omitted, the default action is to update all records in the specified table. |
The first example sets the numeric fld1 field value in all W1 table records, if any, to zero, and sets the char field fld2 to 'SOME TEXT'.
(SQL-UPDATE W1 SET fld1 = 0, fld2 = 'some text' )
The second example modifies any and all records in the W1 table whose previous field a1 value was the old value <val> (bound in LHS of the rule) and field whose field a2 value was <val2>. These records have a1 set to <new-val> (bound on the RHS of the rule).
(rule sql-update-example (W1 ^$ID <W1> ^a1 { < 10 <val> } ^a2 <val2> ) --> (bind <new-val> (<val> + 10)) (modify <W1> ^a1 <new-val>) (SQL-UPDATE W1 SET a1 = <new-val> WHERE a1 = <val>, a2 = <val2> ))
Uses the attribute values of an object to modify corresponding data fields in one or more existing database records. The values of the object's ^$ID and ^$INSTANCE-OF attributes are not written to the database, even if the database explicitly provides fields with those names.
This action can only be executed within the context of a READ WRITE transaction, which you must explicitly start with an SQL-START action.
SQL-UPDATE-FROM-OBJECT <ID-variable> [WHERE-clause]
<ID-variable> | A variable of type INSTANCE-ID that specifies the object to be used. The OBJECT-CLASS name of the associated object specifies the database table that is modified. |
WHERE-clause | Optionally identifies which database records are to be modified using the object attribute values. If it is omitted, the default action is to update all records. |
The first example uses the attribute values in the object whose INSTANCE-ID is bound to <W> to modify database records whose field fld1 is equal to the value bound to the RuleWorks variable <var1> and whose character field fld2 is equal to the value bound to <var2>. This WHERE clause may or may or not be sufficiently restrictive to make the SQL-UPDATE-FROM-OBJECT action modify only one database record:
(SQL-UPDATE-FROM-OBJECT <W> WHERE fld1 = <var1> AND fld2 = '<var2>' )
The database table containing the record(s) to be modified is the table with the same name as the OBJECT-CLASS of the object identified by the $ID variable <W1>. Note that the white space around the quoted variable ('<var2>' in this example) is required.
The next example modifies any and all records in the W1table whose previous field a1 value was the old value <val> (bound in LHS of the rule) and whose field a2 value was <val2>. These records have field a1 set to the newly-computed value of the ^A1 attribute (the object was modified just before the SQL-UPDATE-FROM-OBJECT action).
(rule sql-update-from-object-example (W1 ^$ID <W1> ^a1 { < 10 <val> } ^a2 <val2> ) --> (modify <W1> ^a1 (<val> + 10)) (SQL-UPDATE-FROM-OBJECT <W1> WHERE a1 = <val> AND a2 = <val2> ) )
The built-in functions of RuleWorks are listed below. Note that some functions are valid on the LHS of a rule but some are not; this is indicated in the description of each function:
Reads an atom from the keyboard or a file. Ignores values after a semicolon (;) until the end of the line.
By default, the ACCEPT-ATOM function reads input from the keyboard. If you want the function to read input from a file, call the function with the file identifier of an open input file, or change the default for input.
(ACCEPT-ATOM [ file-id ] )
file-id | The file identifier of the file from which
input is to be read.
The file must have been opened and associated with the identifier in a
previous OPENFILE action or command. This argument is optional. If you do not specify a file identifier, input is read from the current default for the ACCEPT-ATOM function (set with the DEFAULT action or command). |
The first atom read from the input source.
If the argument you specify is not associated with an open file, the run-time system issues a warning and the function returns the symbol NIL.
When the function reads past the end of a file, it returns the symbol END-OF-FILE.
The following MAKE action uses the ACCEPT-ATOM function to create a WMO that contains an atom read from the file associated with the file identifier INFIL:
(make input-thing ^item (accept-atom infil))
Reads a line of input from the keyboard or a file and returns a compound value that contains the values read. Ignores values after a semicolon (;) until the end of the line.
If some of the atoms in the current line have already been read, the input line is defined as all the remaining atoms on the current line. If all the atoms on the current line have been read, the input line is the next. If the input line contains no atoms, the function returns the specified default compound value.
By default, the ACCEPTLINE-COMPOUND function reads input from the keyboard. If you want the function to read input from a file, call the function with the file identifier of an open input file, or change the default for input.
(ACCEPTLINE-COMPOUND [ file-id [ default-compound-value ]] )
file-id | The file identifier of the
file from which input is to be read.
The file must have been opened and associated with the identifier in a
previous OPENFILE action or command. This argument is optional. If you do not specify a file identifier, input is read from the current default for the ACCEPTLINE-COMPOUND function (set with the DEFAULT action or command). |
default-compound-value | The compound value to be
returned when the function reads a blank line.
This argument may be a bound compound variable or a function call that
returns a compound value. If you want to specify a default compound value, you must also specify a file identifier. If you want to specify a default compound value when reading from the default input source, use the symbol NIL for the file identifier. |
A compound value that contains all the atoms on the current input line. If the input line contains no atoms, the function returns the specified default compound value.
If the first argument you specify is not associated with an open file, the run-time system issues a warning and the function returns the empty compound value.
When the function reads past the end of a file, it returns a compound value that contains the single element END-OF-FILE.
The following actions read a line of input as a compound variable, and write it one element at a time:
(bind <my-compound> (acceptline-compound)) (for-each <x> in <my-compound> (write (crlf) <x>))
Creates a new compound value from an arbitrary number of elements. If no elements are specified, the function returns the empty list.
COMPOUND is a stateless function and can be used on either the LHS or RHS.
(COMPOUND [ element ]... )
element | Any valid scalar or compound value expression. |
A compound value that contains all the elements of the specified arguments.
The following rule pushes a new value onto a stack by creating a new compound value from the new scalar value plus the current compound value.
(rule push-stack (agenda ^$ID <Agenda-object> ^tasks <task-list>) --> (modify <Agenda-object> ^tasks (compound new-task <task-list>)))
RuleWorks does not support multilevel lists; the value returned above is a compound value whose elements are all scalar, not a compound value with one scalar element and a nested compound value.
COMPOUND is the only function you can use in commands to the RuleWorks interpreter:
RuleWorks> make box ^card-in-slot (compound memory keyboard) |
Concatenates (splices) the print forms of its arguments.
(CONCAT [ value-expr ]... )
value-expr | A RuleWorks expression that evaluates to
a value to be concatenated.
You can specify any number of values. If you specify a compound value, RuleWorks treats each element as a separate argument. |
A single scalar symbolic atom whose print name is the result of splicing together all of its arguments without inserting any spaces.
If the result is too big to fit in a single atom, the function truncates it at the maximum symbol size (see Section 2.4.1) and issues a warning.
The following table shows three calls to the CONCAT function and their results:
Function Call | Print Form of Return Value |
(CONCAT a b c) | ABC |
(CONCAT A |b| c) | AbC |
(bind <x> |Fast|) | |
(bind <y> |program!|) | |
(CONCAT <x> | | <y> | Fast program! |
Causes the WRITE action to move to the next line. Valid inside a WRITE action only.
(CRLF)
None.
The following WRITE action:
(write (crlf) |Caution: You need to buy the base CPU unit.| (crlf) | Fixup: adding a CPU BOX to your order.| (crlf))
produces the following output:
Caution: You need to buy the base CPU unit. Fixup: adding a CPU BOX to your order.
Finds all instances of a specified class, including descendents of that class.
(EVERY class-name )
class-name | A symbolic atom that names an object class visible to the active entry block. |
A compound value whose elements are the INSTANCE-IDs of all WMOs that belong to class-name. If class-name has children, instances of those children are included in the returned compound. The INSTANCE-IDs are returned in no particular order.
If the specified class is not visible, returns the empty list ((COMPOUND)).
The following uses the value returned by the EVERY function in a FOR-EACH action:
(bind <dogs> (every dog)) (for-each <dog> in <dogs> (wash-pet <dog>) (pet-to-vet <dog>) (pet-gets-treat <dog>))
(Wash-pet, pet-to-vet, and pet-gets-treat are hypothetical methods. Their definitions are left as an exercise for the reader.)
Converts a numeric value into a floating-point number. FLOAT is a stateless function and can be used on either the LHS or RHS.
(FLOAT numeric-expr )
numeric-expr | An expression that evaluates to an INTEGER or FLOAT. If supplied with a SYMBOL, the FLOAT function converts the first whitespace delimited token, if possible. If not, or if the argument is an OPAQUE or INSTANCE-ID, the function issues a warning message and returns the floating-point number zero. |
The floating-point number that corresponds to the specified value.
The following table shows several calls to the FLOAT function and their results:
Function Call | Return Value | Warning Message? |
(FLOAT 3) | 3.0 | No |
(FLOAT 3.2) | 3.2 | No |
(FLOAT |3.2|) | 3.2 | No |
(FLOAT |76 trombones|) | 76.0 | No |
(FLOAT 2+2) | 0.0 | Yes |
(FLOAT #32) | 0.0 | Yes |
Returns a system-generated atom, with an optional prefix. The GENATOM counter is reset by the RESTORESTATE action and command. The GENATOM counter is global, so that all entry blocks called in a program generate unique atoms.
(GENATOM [ prefix ])
prefix | A RuleWorks expression whose print form is the first part of the return value. The default prefix is G:. |
A symbol that consists of the prefix you specify (if any) with an integer appended to it. Each time the run-time system starts executing a program, the first call to the GENATOM function generates the atom prefix1. The second atom the function generates is prefix2, the third atom is prefix3, and so on.
The following BIND action binds the variable <TRANSACTIONID> to the atom produced by the GENATOM function:
(bind <transaction-id> (genatom trans-))
Returns a system-generated integer.
The GENINT counter is reset by the RESTORESTATE action and command. The GENINT counter is global, so that all entry blocks called in a program generate monotonically increasing integers. This lets you sort according to creation time.
(GENINT)
Each time the run-time system starts executing a program, the first call to the GENINT function generates the integer 1. The second call returns 2, the third 3, and so on.
The following BIND action binds the variable <TRANSACTIONID> to the atom produced by the GENINT function:
(bind <transaction-id> (genint))
Given a variable bound to an object identifier and an attribute name, returns the value of that attribute of that object. The variable can be bound on either the LHS or the RHS, but GET is allowed on the RHS only.
The GET function lets you access attribute values on the RHS that you did not bind to variables on the LHS. You can bind the identifier of the object on the LHS, and then use the GET function to return the value of any attribute in that object. You do not need to bind each attribute value separately, only the INSTANCE-ID.
(GET object-id ^attribute-name )
object-id | A variable bound to, or an
expression that evaluates to, an INSTANCE-ID value.
Variables can be bound on either the LHS or the RHS of the rule.
The class of the object must be visible to the active entry block. The RuleWorks compiler issues a warning if it is unable to verify that this argument is an INSTANCE-ID. |
attribute-name | A symbolic expression that names an attribute in the specified object. It is a run-time warning to use an attribute that is not declared for the specified class. |
The value of the specified attribute in the specified instance; or NIL if the arguments are not correct.
The following example shows one use of the GET function:
(OBJECT-CLASS fruit ^fruit-name ^color) (rule make-a-similar-one (fruit ^$ID <The-fruit> ^fruit-name apple) --> (MAKE fruit ^fruit-name apple ^color (GET <The-fruit> ^color)))
Converts a numeric atom into an integer. INTEGER is a stateless function and can be used on either the LHS or RHS.
(INTEGER numeric-expr)
numeric-expr | An expression that evaluates to an INTEGER or FLOAT. If supplied with a SYMBOL, the INTEGER function converts the first whitespace delimited token, if possible. If not, or if the argument is an OPAQUE or INSTANCE-ID, the function issues a warning message and returns the integer zero. |
The nearest integer (by rounding) that corresponds to the specified value.
The following table shows several calls to the INTEGER function and their results:
Function Call | Return Value | Warning Message? |
(INTEGER 3) | 3 | No |
(INTEGER 3.5) | 4 | No |
(INTEGER 3.5e4) | 35000 | No |
(INTEGER |3.2|) | 3 | No |
(INTEGER |110 cornets|) | 110 | No |
(INTEGER 2+2) | 0 | Yes |
(INTEGER #12) | 0 | Yes |
Tests whether a file has already been opened. IS-OPEN is valid on the RHS only.
(IS-OPEN file-id)
file-id | A symbolic atom that was associated with a filespec in an OPENFILE action. (See Section 4.5 for more information on input and output.) |
The mode (IN or OUT) if the file is open; NIL if it is not. If the file is open in mode APPEND, the function returns OUT.
The following IF...THEN...ELSE... action uses the IS-OPEN function in its relational expression:
(if ((is-open infil) <> nil) then (closefile infil))
Returns the number of elements in a compound value. LENGTH is a stateless function and can be used on either the LHS or RHS.
(See also the SYMBOL-LENGTH function, which returns the number of characters in a symbol.)
(LENGTH compound-val)
compound-val | The compound value to be counted. This argument can be a bound compound variable or a function that returns a compound value. |
An integer that specifies the number of elements in the compound value.
The following condition element shows the LENGTH function used on the LHS:
(box ^card-in-slot <cards> ^max-cards <= (length <cards>))
The following action shows the LENGTH function used on the RHS:
(write |The card cage contains| (length <cards> ) |cards.|)
Given one or more arguments, returns the largest. The elements of compound values are added to the argument list as if they were separate scalar values.
(MAX value...)
value | Any RuleWorks expression. The first value determines the valid data type; using mixed types causes a warning message. You may specify any number of values, either compound or scalar. |
The greatest of the arguments.
The following table shows several calls to the MAX function and their results:
Function Call | Return Value | Warning Message? |
(MAX 3 2.0 1) | 3 | No |
(MAX 3.2 10) | 10 | No |
(MAX -3.2 -10) | -3.2 | No |
(MAX boy (COMPOUND man woman) girl) | WOMAN | No |
(MAX 3.2 cat 10) | 10 | Yes |
Note that RuleWorks issues a warning when it finds a value of an invalid data type, but it does process the rest of the argument list. (See Appendix E for the collating sequences for symbols.)
Given one or more arguments, returns the smallest. The elements of compound values are added to the argument list as if they were separate scalar values.
(MIN value...)
value | Any RuleWorks expression. The first value determines the valid data type; using mixed types causes a warning message. You may specify any number of values, either compound or scalar. |
The smallest of the arguments.
The following table shows several calls to the MIN function and their results:
Function Call | Return Value | Warning Message? |
(MIN 3 1.0 2) | 1 | No |
(MIN 3.2 10) | 3.2 | No |
(MIN -3.2 -10) | -10 | No |
(MIN boy (COMPOUND man woman) girl) | BOY | No |
(MIN 10 cat 3.2) | 3.2 | Yes |
Note that RuleWorks issues a warning when it finds a value of an invalid data type, but it does process the rest of the argument list.
Accesses the value at the specified index into a compound value. NTH is a stateless function and can be used on either the LHS or RHS.
(NTH compound-value index)
compound-value | The compound value that is to be searched. This argument may be a bound compound variable or a function that returns a compound value. |
index | An integer expression (anything that evaluates to an integer) that specifies the location of the desired value. The index of the first element is 1, not 0. |
The element value at the specified location in a compound value. If the location does not exist, the function returns NIL.
The following action prints the first element of a bound compound variable:
(write (crlf) |Slot 1 contains| (NTH <cards> 1) )
Scans the specified compound variable for the specified scalar value. POSITION is a stateless function and can be used on either the LHS or RHS.
By default, POSITION tests for identity; you can specify a different predicate. The function always stops at the first occurrence of the predicate evaluating to true.
(POSITION compound-var [predicate] scalar-value)
compound-var | A compound variable bound to the compound value that is to be scanned. |
predicate | A predicate that specifies the
comparison between elements of the compound value and the scalar value.
This argument is optional; if you do not specify a predicate, RuleWorks
uses the default identity predicate. You can use any scalar predicate except containment and non-containment. |
scalar-value | A scalar constant or a bound variable. |
The integer index of the first element in compound-var that satisfies the comparison specified by the predicate with the scalar-value; or zero if no element of compound-var satisfies the comparison.
Given the following object:
#28 (BOX ^CARD-IN-SLOT (COMPOUND MEMORY MEMORY KEYBOARD FD-35) ^CARD-IN-SLOT-OBJ-ID (COMPOUND #31 #39 #37 #45) ^NAME BOX ^PART-NUMBER KI-9200 ^PRINTNAME Kiwi-9200 CPU Base Unit ^PRICE 999.95 ^IS-EXPANDED YES)
And assuming <CARDS> is bound to ^CARD-IN-SLOT, the following function call returns the value 1:
(POSITION <CARDS> MEMORY)
The following attribute-value tests use the containment and similarity predicates in conjunction with the POSITION function to test two consequtive elements of a compound value:
^list {[+] ~= color <list>}
^list [(position <list> ~= color) + 1] <> blue
Causes the WRITE action to right-justify output in a field of a specified width. This function is useful for writing a column of numbers with decimal positions aligned.
The RJUST function is valid only inside the WRITE action.
Calls to the RJUST function can follow calls to the CRLF and TABTO functions but must directly precede the value being written.
(RJUST width)
width | An integer expression (anything that evaluates to an integer) that indicates the width of the field in which output is to be placed. If the output being written requires more character positions than you specify for the field, the WRITE action behaves as if the RJUST function had not been specified. That is, the action inserts one space and then writes the output. |
The following WRITE action writes a vertical list of numbers right-justified in a column 10 characters wide:
(WRITE (CRLF) (RJUST 10) |10.06| (CRLF) (RJUST 10) |2.45| (CRLF) (RJUST 10) |56.00| (CRLF) (RJUST 10) |250.00|)
The output is:
10.06 2.45 56.00 250.00
Creates a new compound value that is a subrange of an existing compound value. SUBCOMPOUND is a stateless function and can be used on the LHS or RHS.
(SUBCOMPOUND compound-val index-1 index-2)
compound-val | The compound value from which a subrange is returned. This argument can be a bound compound variable or a function that returns a compound value. |
index-1 index-2 | The positions of the first and
last elements in the subrange, respectively.
These arguments can be either of the following:
|
Note that $LAST may not be used as part of an expression; it must stand alone.
A compound value that contains the specified subrange of the input compound value. If the subrange is specified incorrectly or does not exist, the function returns the "empty list", (COMPOUND).
The following rule uses the SUBCOMPOUND function to remove the first element of a compound value:
(rule pop-stack (agenda ^$ID <my-agenda> ^tasks <tasks> ) --> (modify <my-agenda> ^tasks (SUBCOMPOUND <tasks> 2 $LAST)))
Creates a new symbol value that is a fragment of an existing symbol value. SUBSYMBOL is a stateless function and can be used on either the LHS or RHS.
(SUBSYMBOL symbol-val index-1 index-2 )
symbol-val | The symbol value from which a fragment is returned. This argument can be a bound symbol variable or a function that returns a symbol value. |
index-1 index-2 | The positions of the first and last
characters in the return value, respectively.
These arguments can be either of the following:
|
A symbol that contains the specified fragment of the input symbol. If the fragment is specified incorrectly or does not exist, the function returns the empty symbol value, ||.
The following rule uses the SUBSYMBOL function to do what???
(rule ??? (???) --> (modify ??? (SUBSYMBOL <???> ? $LAST)))
Converts any value into a symbol. SYMBOL is a stateless function and can be used on either the LHS or RHS.
(SYMBOL value-expr )
value-expr | An expression that evaluates to the value to be converted. |
The symbolic atom that corresponds to the specified value. In other words, the atom of type SYMBOL whose print form is identical to the print form of the argument.
The print form of a compound value includes a space between the elements, but does not include the function name COMPOUND or its parentheses. If the compound is too long to fit in a symbol, it is truncated.
NYD
Returns the number of characters in a symbol. SYMBOL-LENGTH is a stateless function and can be used on either the LHS or RHS.
(See also the LENGTH function, which returns the number of elements in a compound value.)
(SYMBOL-LENGTH symbol-val )
symbol-val | The symbolic value to be measured. This argument can be a bound symbolic variable or a function that returns a symbolic value. |
An integer that specifies the number of characters in the symbol.
The following shows ???:
TBD
Causes the WRITE action to start writing output in a specified column.
The TABTO function is valid only inside the WRITE action.
(TABTO column)
column | An integer expression that indicates the
column in which to start writing output. If you specify a column that is to the left of the last column in which output is written, the WRITE action writes the output on a new line, starting at the specified column. |
The following WRITE action displays the headers of three columns:
(WRITE (CRLF) (TABTO 10) NUMBER (TABTO 25) AMOUNT (TABTO 40) DATE)
The output is:
nbsp; NUMBER AMOUNT DATE
The RuleWorks commands that are valid only at the interpreter prompt are listed below:
For additional commands that are also valid in source code, see Actions.
Opens a file containing RuleWorks commands and executes the commands.
The file must contain only RuleWorks commands. If the file cannot be opened, the run-time system displays the following message:
%RUL-W-CANTOPEN, @ -- Unable to open file filespec for reading
@ filespec
filespec | The file specification for a file containing RuleWorks commands to be executed. The restrictions on file specifications vary according to operating system; see Appendix F for details. |
The first command illustrates a simple file specification:
RuleWorks>
@ init-mem.wm
The command below shows a file specification that includes a pathname, and must be quoted:
RuleWorks>
@ |C:\SMITH\WORK\INIT%MEM.COM|
Displays the active contents of the conflict set, that is, instantiations of rules contained in or activated by the active entry block.
The command displays instantiations in the following format:
rule-name #instance-id-1 time-tag-1 #instance-id-2 timetag-2 ...
where #instance-id-1 is the INSTANCE-ID of an object that matches the first CE on the left-hand side and time-tag-1 is its time-tag, #instance-id-2 matches the second CE, and so on.
None.
The following command displays the contents of the conflict set:
RuleWorks> cs POP-ACTIVE-CONTEXT #35 40 VERIFY-CONFIGURATION:APPLICATION-NEEDS-KIWOS #35 40 #32 37 VERIFY-CONFIGURATION:APPLICATION-NEEDS-KIWOS #35 40 #29 34 VERIFY-CONFIGURATION:NEED-DISK #35 40 VERIFY-CONFIGURATION:NEED-OUTPUT #35 40 MAKE-CONTEXT-ACTIVE #6 6 MAKE-CONTEXT-ACTIVE #5 5 MAKE-CONTEXT-ACTIVE #4 4 MAKE-CONTEXT-ACTIVE #3 3
Revokes a run-time feature that you had previously set with an ENABLE command. To disable a feature, specify the appropriate keyword.
DISABLE feature
feature | A keyword that specifies the feature to be disabled. |
The following command disables the WMHISTORY command:
RuleWorks>
disable wmh
The table below describes the features that you can enable and disable:
Keyword | Feature |
BLOCK-NAMES | Block names displayed with rule names |
WARNING | Run-time warning and error messages |
WMHISTORY | WMHISTORY command |
Controls breakpoints on entry blocks.
When used with no arguments, the command displays a numbered list of the entry blocks that have breakpoints set. When used with the ON and OFF keywords, respectively, EBREAK sets and clears breakpoints for entry blocks. Breakpoints are set or cleared on both the ON-ENTRY and ON-EXIT clauses by a single command.
When the run-time system encounters a breakpoint on an entry block, it finishes the ON-ENTRY or ON-EXIT construct (if any), displays messages in the following format, and invokes the command interpreter:
%RUL-I-BREAKNOTED, Execution paused by break
EBREAK entering ENTRY-BLOCK-name
or
EBREAK exiting ENTRY-BLOCK-name
The block name is always displayed in EBREAK messages, whether BLOCK-NAMES are enabled or disabled.
EBREAK | [ |
| ] |
ON | Sets a new breakpoint on an entry block. |
OFF | Clears the existing breakpoint on an entry block. |
ENTRY-BLOCK-name | The name of an entry block. You can specify one or more entry block names. |
number | An integer displayed with the list of entry blocks when you give an EBREAK command with no argument. This argument is valid with the OFF keyword only. |
* | All entry blocks. |
The first command displays the names of the entry blocks for which breakpoints are set:
RuleWorks>ebreak 1 ??? 2 ??? 3 ???
The next command clears one of the breakpoints displayed above:
RuleWorks>
ebreak off 2
The following dialog shows what happens when the breakpoint is reached:
RuleWorks>run EBREAK entering |main| %RUL-I-BREAKNOTED, Execution paused by break
Enables the run-time feature specified by a keyword argument. The default state for all features is disabled.
Giving an ENABLE command with no argument results in a display of the features that are currently enabled. You can revoke a feature you have enabled by using the DISABLE command.
ENABLE feature
feature | A keyword that specifies the feature to be enabled. |
The following command enables run-time messages:
RuleWorks>
enable war
An obsolescent synonym for the QUIT command.
The following command exits from the command interpreter and returns control to the operating system:
RuleWorks>
exit
System>
Displays the INSTANCE-IDs of the objects that match CEs in the specified rule(s).
The command lists the objects that match the first CE, then the second CE, then the first two CEs, and so on. The class name of each CE is shown as part of the heading. The output is in the following format:
>>> rule-name <<<
*** matches for (class-name-1) ***
#instance-id
...
*** matches for (class-name-2) ***
#instance-id
...
*** matches for 1 2 ***
#instance-id #instance-id
...
*** complete instantiations ***
#instance-id time-tag #instance-id time-tag ...
...
For more information about displaying match information, see Section 11.2.8.
MATCHES rule-name ...
rule-name | The name of a rule for which match information is to be displayed. You can specify the name of one or more rules. |
The following command displays match information of a rule that is not eligible for the conflict set:
RuleWorks>matches foo >>> foo <<< to be specified
Note that there is no instantiation displayed after the last heading.
The next command displays the matches of a rule that is eligible for the conflict set:
RuleWorks>matches bar >>> bar <<< to be specified
(The third CE in this rule is negative, so no matches for 3, with a match for 1 and 2, means the rule can fire.)
Displays the instantiation that the run-time system will select from the conflict set for the act phase of the next recognize-act cycle.
The NEXT command displays the instantiation in the same format as the CS command, with the addition of the rule-firing counts:
n (m): rule-name #instance-id-1 time-tag-1 #instance-id-2 time-tag-2...
where n is the global count and m is the local (to the block invocation) count.
None.
The following command shows that the next instantiation the run-time system will select from the conflict set is the rule MODIFY-SOFTWARE-MEDIA:35-CHEAPEST acting on objects #38, #32, and #45:
RuleWorks>next 15 (15): MODIFY-SOFTWARE-MEDIA:35-CHEAPEST #38 71 #32 58 #45 70
Displays the parents and attributes of the specified object class. The attributes are listed under the name of the object class that declared them, with their shape, domain restriction, and default and fill values (if any).
Alternatively, displays the hierarchy of classes defined in the active block.
OBJECT-CLASS | The name of an object class that is visible to the active entry block. |
This argument is optional. If you supply no argument, PPCLASS displays the class structure of the active block.
This example shows the PPCLASS output for the class BOX from the sample program, KIWI:
RuleWorks>ppclass box PART ^PART-NUMBER ^NAME symbol ^PRICE float ^IS-EXPANDED symbol (default NO) BOX ^CARD-IN-SLOT compound symbol ^CARD-IN-SLOT-OBJ-ID compound instance-id
Displays all objects, or all instances of a specified class, or only those instances that match a specified object pattern. Object patterns are similar to CEs and can include attributes specified with values, tests, disjunctions, and conjunctions. Unlike CEs, object patterns cannot include variables or function calls.
The PPWM command displays the following information about an object:
• Its INSTANCE-ID
• The name of the construct that last modified the object (for example, a rule or ON- construct). If you last modified the object at the interpreter prompt, the construct name is the symbol RUL.
• Its class name, its attributes, and the attributes' values
If you do not specify a pattern, the command displays all the visible WMOs.
Scalar attributes whose value is NIL, and compound attributes whose value is (COMPOUND), are not displayed unless you have declared a DEFAULT value for the attribute.
The system displays this information in the following format:
#instance-id [[block-name~ ]rule-name] (class-name attribute-1 value-1 attribute-2 value-2 ... )
PPWM [class-name] | [ | ^attribute |
{ | value predicate value << value... >> {test ...} |
} | ] | ... |
class-name | A symbol that names an object class that is visible to the active entry block. If you specify a class that has inheriting subclasses, objects of those subclasses are also displayed. |
attribute | An attribute that describes a
characteristic of the objects to be displayed and contains the
corresponding value.
If you specify any attributes, you must also specify at least one value
for each attribute. If you specify a compound attribute, you can index it with a left bracket, an integer constant, and a right bracket ([index]). |
predicate | Any of the scalar or compound predicates, depending on the structure of the attribute. |
value | This argument must be a scalar atom. Compound values, created with the COMPOUND function, are not allowed. |
test | A value, a predicate followed by a value, or a disjunction of values. |
The following commands illustrate the syntax for compound attributes:
RuleWorks>ppwm box ^card-in-slot[3] keyboard #28 [CHOOSE-SLOTS:PLACE-NONMEMORY] (BOX ^CARD-IN-SLOT (COMPOUND MEMORY MEMORY KEYBOARD) ^CARD-IN-SLOT-OBJ-ID (COMPOUND #31 #39 #37) ^PART-NUMBER KI-9200 ^NAME Kiwi-9200 CPU Base Unit ^PRICE 999.95 ^IS-EXPANDED YES) RuleWorks>ppwm box ^card-in-slot [+] memory #28 [CHOOSE-SLOTS:PLACE-NONMEMORY] (BOX ^CARD-IN-SLOT (COMPOUND MEMORY MEMORY KEYBOARD) ^CARD-IN-SLOT-OBJ-ID (COMPOUND #31 #39 #37) ^PART-NUMBER KI-9200 ^NAME Kiwi-9200 CPU Base Unit ^PRICE 999.95 ^IS-EXPANDED YES)
Controls breakpoints on rules and rule groups.
When used with no arguments, the command displays a numbered list of the rules and groups that have breakpoints set. When used with the ON and OFF keywords, respectively, RBREAK sets and clears breakpoints for rules and groups. Breakpoints for rule groups are set or cleared for all rules in the group by a single command.
When the run-time system encounters a breakpoint on a rule, it finishes the current recognize-act cycle, displays a message in the following format, and invokes the command interpreter:
%RUL-I-RBREAK, RBREAK encountered on rule[group] name
%RUL-I-BREAKNOTED, Execution paused by break.
RBREAK | [ |
|
] |
The keywords and arguments are optional. If you do not specify the name of a rule, the command displays the names of the rules and groups for which breakpoints are set.
ON | Sets a new breakpoint on a rule or group. |
OFF | Clears the existing breakpoint on a rule or group. |
rule-name | A symbol that names a rule. You can specify one or more. |
RULE-GROUP-name | A symbol that names a rule group. You can specify one or more. |
number | An integer corresponding to a rule or rule group name that currently has a breakpoint set. You get a list of integers and names when you give the RBREAK command with no arguments. |
* | All rules and groups that have breaks set. |
This command displays the names of the rules for which breakpoints are set:
RuleWorks> rbreak 1 VERIFY-CONFIGURATION:MOUSE-PORT 2 POP-ACTIVE-CONTEXT
The next commands delete one breakpoint and sets another:
RuleWorks>
rbreak off 2
RuleWorks>
rbreak on choose-slots:place-nonmemory
The following command redisplays the names of the rules for which breakpoints are set:
RuleWorks> rbreak
1 VERIFY-CONFIGURATION:MOUSE-PORT
2 CHOOSE-SLOTS:PLACE-NONMEMORY
The following dialog shows what happens when the breakpoint is reached:
RuleWorks> run
%RUL-I-RBREAK, RBREAK encountered on rule CHOOSE-SLOTS:PLACE-NONMEMORY
%RUL-I-BREAKNOTED, Execution paused by break
RuleWorks> next
CHOOSE-SLOTS:PLACE-NONMEMORY #47 62 #28 65 #37 56
Causes the run-time system to execute recognize-act cycles. You can optionally specify the number of recognize-act cycles the system executes.
RuleWorks entry blocks start running by default. Use the DEBUG action and compiler switch to pause execution and invoke the RuleWorks command interpreter.
RUN [integer]
integer | The number of recognize-act cycles the run-time system is to execute. |
This argument is optional. If you do not specify an integer, the run-time system executes recognizeact cycles until no rules are satisfied or until a RETURN or QUIT action, or a breakpoint interrupts execution.
If the program halts, the run-time system does not execute the number of recognize-act cycles indicated by the integer.
The following command starts executing recognize-act cycles:
RuleWorks>
run
The following command executes four recognize-act cycles:
RuleWorks>
run 4
Controls breakpoints on WMOs that match a specified pattern.
When used with no arguments, the command displays a numbered list of the object patterns that have breakpoints set. When used with the ON and OFF keywords, respectively, WBREAK sets and clears breakpoints for object patterns.
Any rule that makes, copies, modifies, specializes, or removes an object that matches a pattern triggers the breakpoint on that pattern. When the run-time system encounters a breakpoint on an object pattern, it completes the current recognize-act cycle, displays messages in the format below, and invokes the command interpreter:
%RUL-I-WBREAK, WBREAK encountered on class-name #instanceid
%RUL-I-BREAKNOTED, Execution paused by break
WBREAK | [ |
|
] |
ON | Sets a new breakpoint on an object pattern. |
OFF | Clears the existing breakpoint on an object pattern. |
object-pattern | An expression, similar to a CE, that
defines which objects cause a break. The object pattern must include the name of an object class that is visible to the active entry block, and may include any number of attribute-value tests. If the class name in the object pattern has inheriting subclasses, objects of those subclasses also match the pattern. |
number | An integer corresponding to an object pattern that currently has a breakpoint set. You get a list of integers and their patterns when you give the WBREAK command with no arguments. |
* | You can use an asterisk (star) with the OFF keyword to mean clear all breakpoints on WMOs. |
RuleWorks>
wbreak on control-context
RuleWorks>
run
%RUL-I-WBREAK, WBREAK encountered on ACTIVE-CONTEXT #2
=>WM: #2 [MAKE-CONTEXT-ACTIVE] (ACTIVE-CONTEXT ^NAME TASKS-TO-DO)
<=WM: #1 [|main|ON-ENTRY] (CONTEXT ^NAME TASKS-TO-DO)
%RUL-I-BREAKNOTED, Execution paused by break
RuleWorks>
Displays the objects whose INSTANCE-IDs you specify. The output includes the following information about each object:
• Its INSTANCE-ID
• The name of the construct that last modified the object (for example, a rule or ON- construct). If you last modified the object at the interpreter prompt, the construct name is the symbol RUL.
• Its attributes' names and their values
Scalar attributes whose value is NIL, and compound attributes whose value is (COMPOUND), are not displayed unless you have declared a DEFAULT value for the attribute.
The system displays this information in the following format:
#instance-id [block-name ~rule-name] (class-name attribute-1 value-1 attribute-2 value-2 ) ...
WM [ instance-id ] ...
instance-id | An INSTANCE-ID atom that identifies an object that the command is to display. You can specify one or more INSTANCE-IDs. |
The argument is optional. If you do not specify any INSTANCE-IDs, the command displays all the visible WMOs.
The following command displays all visible objects:
RuleWorks> wm
???
The following command displays the objects whose identifiers are #3 and #4:
RuleWorks> wm #3 #4
???
???
Displays the history of a specified object, that is, which rules set the attribute values. You must specify the INSTANCE-ID of the desired object; you may also specify a particular attribute.
When the WMHISTORY command displays an entire object, the output includes the following information:
• INSTANCE-ID
• Name of the rule that last modified the object
• Object class name
• Name of the rule that originally created the object
• Name and value of each attribute
• Name of the rule that set the current value of each attribute
Scalar attributes whose value is NIL, and compound attributes whose value is (COMPOUND), are not displayed unless you have declared a DEFAULT value for the attribute.
The system displays this information in the following format:
#instance-id [rule-name-0] (class-name [rule-name] {^attr1 value-1 [rule-name-1] } ... )
When the WMHISTORY command displays a single attribute, the output includes the following information:
• INSTANCE-ID
• Name of the rule that last modified the object
• Name and value of the specified attribute
• Name of the rule that set the current value of the specified attribute
The system displays this information in the following format:
#instance-id [rule-name-0] ^attribute value [rule-name-n]
By default, WMHISTORY is disabled. You must turn it on with the ENABLE command before you can use it.
WMHISTORY instance-id [^attribute]
instance-id | The INSTANCE-ID of the object to be displayed. |
attribute | An attribute that describes a characteristic of the object to be displayed. This argument is optional. You can use at most one attribute name in a WMHISTORY command. |
This example shows the history of an entire object:
RuleWorks>
enable wmhistory
RuleWorks>
run
.
.
.
RuleWorks>
wmh #28
#28 [CHOOSE-SLOTS:PLACE-NONMEMORY] (BOX [CONVERT-PACKAGES-TO-PARTS:HOME-KIW I] ^CARD-IN-SLOT (COMPOUND MEMORY MEMORY KEYBOARD FD-35) [CHOOSE-SLOTS:PLACE-NONMEMORY] ^CARD-IN-SLOT-OBJ-ID (COMPOUND #31 #39 #37 #45) [CHOOSE-SLOTS:PLAC E-NONMEMORY] ^NAME BOX [EXPAND-PART-SKELETONS:BOX] ^PART-NUMBER KI-9200 [EXPAND-PART-SKELETONS:BOX] ^PRINTNAME Kiwi-9200 CPU Base Unit [EXPAND-PART-SKEL ETONS:BOX] ^PRICE 999.95 [EXPAND-PART-SKELETONS:BOX] ^IS-EXPANDED YES [EXPAND-PART-SKELETONS:BOX])
This example shows the history of an attribute:
RuleWorks>
wmh #28 ^card-in-slot