1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
|
.TH erl_eval 3 "stdlib 1.15.3" "Ericsson AB" "ERLANG MODULE DEFINITION"
.SH MODULE
erl_eval \- The Erlang Meta Interpreter
.SH DESCRIPTION
.LP
This module provides an interpreter for Erlang expressions\&. The expressions are in the abstract syntax as returned by \fIerl_parse\fR, the Erlang parser, or a call to \fIio:parse_erl_exprs/2\fR\&.
.SH EXPORTS
.LP
.B
exprs(Expressions, Bindings) -> {value, Value, NewBindings}
.br
.B
exprs(Expressions, Bindings, LocalFunctionHandler) -> {value, Value, NewBindings}
.br
.B
exprs(Expressions, Bindings, LocalFunctionHandler, NonlocalFunctionHandler) -> {value, Value, NewBindings}
.br
.RS
.TP
Types
Expressions = as returned by erl_parse or io:parse_erl_exprs/2
.br
Bindings = as returned by bindings/1
.br
LocalFunctionHandler = {value, Func} | {eval, Func} | none
.br
NonlocalFunctionHandler = {value, Func} | none
.br
.RE
.RS
.LP
Evaluates \fIExpressions\fR with the set of bindings \fIBindings\fR, where \fIExpressions\fR is a sequence of expressions (in abstract syntax) of a type which may be returned by \fIio:parse_erl_exprs/2\fR\&. See below for an explanation of how and when to use the arguments \fILocalFunctionHandler\fR and \fINonlocalFunctionHandler\fR\&.
.LP
Returns \fI{value, Value, NewBindings}\fR
.RE
.LP
.B
expr(Expression, Bindings) -> { value, Value, NewBindings }
.br
.B
expr(Expression, Bindings, LocalFunctionHandler) -> { value, Value, NewBindings }
.br
.B
expr(Expression, Bindings, LocalFunctionHandler, NonlocalFunctionHandler) -> { value, Value, NewBindings }
.br
.RS
.TP
Types
Expression = as returned by io:parse_erl_form/2, for example
.br
Bindings = as returned by bindings/1
.br
LocalFunctionHandler = {value, Func} | {eval, Func} | none
.br
NonlocalFunctionHandler = {value, Func} | none
.br
.RE
.RS
.LP
Evaluates \fIExpression\fR with the set of bindings \fIBindings\fR\&. \fIExpression\fR is an expression (in abstract syntax) of a type which may be returned by \fIio:parse_erl_form/2\fR\&. See below for an explanation of how and when to use the arguments \fILocalFunctionHandler\fR and \fINonlocalFunctionHandler\fR\&.
.LP
Returns \fI{value, Value, NewBindings}\fR\&.
.RE
.LP
.B
expr_list(ExpressionList, Bindings) -> {ValueList, NewBindings}
.br
.B
expr_list(ExpressionList, Bindings, LocalFunctionHandler) -> {ValueList, NewBindings}
.br
.B
expr_list(ExpressionList, Bindings, LocalFunctionHandler, NonlocalFunctionHandler) -> {ValueList, NewBindings}
.br
.RS
.LP
Evaluates a list of expressions in parallel, using the same initial bindings for each expression\&. Attempts are made to merge the bindings returned from each evaluation\&. This function is useful in the \fILocalFunctionHandler\fR\&. See below\&.
.LP
Returns \fI{ValueList, NewBindings}\fR\&.
.RE
.LP
.B
new_bindings() -> BindingStruct
.br
.RS
.LP
Returns an empty binding structure\&.
.RE
.LP
.B
bindings(BindingStruct) -> Bindings
.br
.RS
.LP
Returns the list of bindings contained in the binding structure\&.
.RE
.LP
.B
binding(Name, BindingStruct) -> Binding
.br
.RS
.LP
Returns the binding of \fIName\fR in \fIBindingStruct\fR\&.
.RE
.LP
.B
add_binding(Name, Value, Bindings) -> BindingStruct
.br
.RS
.LP
Adds the binding \fIName = Value\fR to \fIBindings\fR\&. Returns an updated binding structure\&.
.RE
.LP
.B
del_binding(Name, Bindings) -> BindingStruct
.br
.RS
.LP
Removes the binding of \fIName\fR in \fIBindings\fR\&. Returns an updated binding structure\&.
.RE
.SH LOCAL FUNCTION HANDLER
.LP
During evaluation of a function, no calls can be made to local functions\&. An undefined function error would be generated\&. However, the optional argument \fILocalFunctionHandler\fR may be used to define a function which is called when there is a call to a local function\&. The argument can have the following formats:
.RS 2
.TP 4
.B
\fI{value, Func}\fR:
This defines a local function handler which is called with:
.RS 4
.LP
.nf
Func(Name, Arguments)
.fi
.LP
.LP
\fIName\fR is the name of the local function (an atom) and \fIArguments\fR is a list of the \fIevaluated\fR arguments\&. The function handler returns the value of the local function\&. In this case, it is not possible to access the current bindings\&. To signal an error, the function handler just calls \fIexit/1\fR with a suitable exit value\&.
.RE
.TP 4
.B
\fI{eval, Func}\fR:
This defines a local function handler which is called with:
.RS 4
.LP
.nf
Func(Name, Arguments, Bindings)
.fi
.LP
.LP
\fIName\fR is the name of the local function (an atom), \fIArguments\fR is a list of the \fIunevaluated\fR arguments, and \fIBindings\fR are the current variable bindings\&. The function handler returns:
.LP
.nf
{value,Value,NewBindings}
.fi
.LP
.LP
\fIValue\fR is the value of the local function and \fINewBindings\fR are the updated variable bindings\&. In this case, the function handler must itself evaluate all the function arguments and manage the bindings\&. To signal an error, the function handler just calls \fIexit/1\fR with a suitable exit value\&.
.RE
.TP 4
.B
\fInone\fR:
There is no local function handler\&.
.RE
.SH NON-LOCAL FUNCTION HANDLER
.LP
The optional argument \fINonlocalFunctionHandler\fR may be used to define a function which is called in the following cases: a functional object (fun) is called; a built-in function is called; a function is called using the M:F syntax, where M and F are atoms or expressions; an operator Op/A is called (this is handled as a call to the function \fIerlang:Op/A\fR)\&. Exceptions are calls to \fIerlang:apply/2, 3\fR; neither of the function handlers will be called for such calls\&. The argument can have the following formats:
.RS 2
.TP 4
.B
\fI{value, Func}\fR:
This defines an nonlocal function handler which is called with:
.RS 4
.LP
.nf
Func(FuncSpec, Arguments)
.fi
.LP
.LP
\fIFuncSpec\fR is the name of the function on the form \fI{Module, Function}\fR or a fun, and \fIArguments\fR is a list of the \fIevaluated\fR arguments\&. The function handler returns the value of the function\&. To signal an error, the function handler just calls \fIexit/1\fR with a suitable exit value\&.
.RE
.TP 4
.B
\fInone\fR:
There is no nonlocal function handler\&.
.RE
.SS Note:
.LP
For calls such as \fIerlang:apply(Fun, Args)\fR or \fIerlang:apply(Module, Function, Args)\fR the call of the non-local function handler corresponding to the call to \fIerlang:apply/2, 3\fR itself--\fIFunc({erlang, apply}, [Fun, Args])\fR or \fIFunc({erlang, apply}, [Module, Function, Args])\fR--will never take place\&. The non-local function handler \fIwill\fR however be called with the evaluated arguments of the call to \fIerlang:apply/2, 3\fR: \fIFunc(Fun, Args)\fR or \fIFunc({Module, Function}, Args)\fR (assuming that \fI{Module, Function}\fR is not \fI{erlang, apply}\fR)\&.
.LP
The nonlocal function handler argument is probably not used as frequently as the local function handler argument\&. A possible use is to call \fIexit/1\fR on calls to functions that for some reason are not allowed to be called\&.
.SH BUGS
.LP
The evaluator is not complete\&. \fIreceive\fR cannot be handled properly\&.
.LP
Any undocumented functions in \fIerl_eval\fR should not be used\&.
|