This version is out of date, covering development from v5.0.0 to v5.12.2. It is maintained here only for inbound reference links from elsewhere.

Jump to the current version of aTbRef.

Tinderbox Icon

do(macro[,args])


Operator Type: 

Operator Scope of Action: 

Operator Purpose: 

Operator First Added: 

Operator Altered: 

 Function   [other Function type actions]

 Item   [operators of similar scope]

 Data manipulation   [other Data manipulation operators]

 Already in v5.0.0

 


The do() operator do lets rules and actions use macros. Action code macros cannot, generally, evaluate action (or export) code within the macro itself and so might best be thought of sections of boilerplate text with configurable text inputs.

do() always returns an output (string) and so will expect a left side attribute. To do something useful with the output consider wrapping the it in an eval() call. Assume macro "Hello world" has the code: "Hello $1!". Then:

$ReturnString = eval(do("Hello world","Nibbler")) 

would set a $ReturnString value of "Hello Nibbler!".

Alternatively, if the macro is written so the left side is included, action() can be used. Macro "Hello world2": $ReturnString = "Hello $1!"

action(do("Hello world2","Cubert")) 

would set a $ReturnString value of the current note to "Hello Cubert!". Notice how action() requires no left-side receiving attribute as there is no direct output. The assignment to $ReturnString occurs within the macro; the assigned attribute being whatever system/user attribute the user decides, it is not a fixed output assignment.

An offset within an action call is also possible. Macro "Hello world3": $ReturnString('$2') = "Here's $1!"

action(do("Hello world3","Calculon", "All My Circuits")) 

would set a $ReturnString("All My Circuits") to "Here's Calculon!".

Note that if an input is itself an expression, it may prove beneficial to evaluate it before insertion into the macro. Why? It may affect outcome if the context of the input evaluation and the output evaluation differ, e.g. where the reference 'this' might refer to a different note in each context.

do(macro[,arg1,arg2,arg3] )

The first argument is the name of the macro. Subsequent arguments are optional and are passed to the macro, which can refer to them as $1, $2, $3, and so forth.

After the macro is evaluated, its result string is returned and is parsed again as a rule, action, or expression. For example:

$Name|=do(computeName,$Name,$Name(parent)) 

sets name to the result of a macro called computeName. This if the macro code were:

$2: $1 

Then, if $Name were "mammal" and $Name(parent) were "horse", the result on the above call would be a new $Name of "mammal: horse"

do(Instructions); 

simply returns whatever text is stored in a macro called Instructions.

Macros cannot be used in agent queries (this was supported in early versions).

Macros called in action code via do() do not evaluate any embedded export codes - such behaviour is reserved for export use.


Possible relevant notes (via "Similar Notes" feature):


A Tinderbox Reference File : Actions & Rules : Operators : Action Operator Types : Data manipulation operators : do(macro[,args])