f (f-correlative) Processing Code

The f-correlative is used in the conversion (attribute 7), correlative (attribute 8), and input-conversion (attribute 14) attributes of attribute-defining items to create and modify the associated attribute value using various mathematical and logical operations.

Syntax

f{;}element{;element...}

Parameter(s)

element

Elements in an f-correlative are operands and operators in reverse Polish notation separated by semicolons.

  • Operands: as each operand is encountered scanning from left to right, its value is pushed onto a stack. For example, a push-down stack is usually compared with the spring loaded mechanism that loads, stores, and dispenses saucers in a restaurant.

  • Operators: operate on the top entries in the stack. For example, the + addition operator, pops and adds the top two entries in the stack together and then pushes the result back onto the stack.

Reverse Polish Notation

Reverse Polish notation is a written syntax where the operators follow the operands. For example, to total one and two is written as:

1 2 +

This notation is used by Hewlett Packard calculators and the D3 f processing code. To total one and two in an f-correlative is written as:

f;’1’;’2’;+

This notation is easier for a programmer to program, but harder for a user to use. So the a processing code was created to support embedded operators, providing the syntax of:

a’1’+’2’

Operands and operators may appear in any order and after all the operand pushes and operator operations have been processed, and the right end of the f-correlative has been reached, what remains on the stack is the result.

Operands

ac{r}

Attribute value of the attribute whose attribute count is ac. The r option specifies that the first value or subvalue of an attribute is to be used repeatedly when using it against a MultiValue or a subvalue.

"string"

Immediate literal string.

cn

Numeric constant n.

d

System date in external format (dd mmm yyyy).

lpv

Last processing code value (result of the previous processing code).

nb

Break level number. The break level number has a value of 255 on the grand-total line and a value of 0 on detail lines. The lowest level control-break in the sentence has a value of 1.

nd

Pushes the number of detail lines since the last break-on on the stack. On a detail line, nd has a value of 1. On a grand-total line, nd equals the item counter (nd can be used to generate averages in conjunction with control-breaks).

ni

Pushes the current item counter (number of items listed or selected) on the stack.

ns

Pushes the current subMultiValue counter on the stack (for columnar listing only).

nv

Pushes the current MultiValue counter on the stack (for columnar listing only).

t

Pushes the current time (in 00:00:00 format) on the stack.

Operators

The stack number is used in the descriptions below to indicate the stack level where the data resides (level 1 being the top, 2 being the next level, and so on).

*{n}

Multiplies stack 1 by stack 2. If the optional n is used, the result is divided by 10 to the power of (n-1). (This is not available as an a-correlative operator. Use the division operator with the appropriate literal value, that is /"100".)

/

Divides stack 2 by stack 1, and returns quotient to stack 1. Results of division operations are rounded down.

r

This is the same as /, except the remainder of the division is returned to stack 1.

+

Adds the top two entries in the stack and returns the sum to stack 1.

-

Subtracts stack 1 from stack 2 and returns the result to stack 1.

:

Concatenates the string value in stack 1 to the end of the string value in stack 2 and returns the result to stack 1.

[]

Extracts a substring from string value in stack 3, using stack 2 as the starting character position, and stack 1 as the number of characters to extract. The result is placed in stack 1.

s

Adds MultiValues in stack 1 (if any) and returns the sum to stack 1.

_

Exchanges the top two positions in stack.

p

Pushes the top stack value back on the stack, resulting in the same value in stack 1 and stack 2.

(processing.code)

Operates on the top stack value and the result replaces the original top stack value. A standard processing code such as d (date), g (group), and so on, may be specified.

Relational Operators

Relational operators compare stack 1 to stack 2 entries. A 1 is returned to stack 1 if the condition evaluates to true. A 0 is returned to stack 1 if the condition is false.

=

True, if stack 1 equals stack 2.

<

True, if stack 1 is less than stack 2.

>

True, if stack 1 is greater than stack 2.

#

True, if stack 1 does not equal stack 2.

=>

True, if stack 1 is equal to or greater than stack 2.

=<

True, if stack 1 is equal to or less than stack 2.

Branching

It is possible to label stack entries and then use the branch option to access a particular stack entry.

j label

Branches to the label.

jf label

Branches to the specified label if the top stack entry is 0.

jt label

Branches to the specified label if the top stack entry is nonzero.

~label

A tilde followed by any ASCII character other than a semicolon, space, attribute mark, or value mark, which ends the label.

Conditionals

Conditionals are constructed using a syntax very similar to the FlashBASIC if...then...else construct and have the general form:

if condition then f.code {else f.code}{end}

if condition else f.code {end}

if condition then f.code {end}

If the condition evaluates to 0, it is considered false, and the else clause is taken (if present). If the evaluation is false, and the else clause is missing, a null is returned.

If the condition evaluates to nonzero, it is considered true, and the then clause is taken (if present). If the evaluation is true, and there is no then clause, a null is returned.

If end is not specified, the else is paired with the previous if. The end is used to close off the current if and associates the else with the previous if.

See Also

a (Algebraic) Processing Code, Conversion, Correlative, Correlative Processing Codes (ADI), Correlative Processing Codes (FDI), f (f-correlative) Processing Code, Reverse Polish Notation