Package fmpp.tdd
Interface EvaluationEnvironment
- All Known Implementing Classes:
DataLoaderEvaluationEnvironment
public interface EvaluationEnvironment
Callbacks that let you control the behaviour of TDD expression evaluation.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe code of event that indicates that we have started to evaluate the parameter list in a function call.static final intThe code of event that indicates that we have started to evaluate the items in a hash.static final intThe code of event that indicates that we have started to evaluate the value in a key:value pair.static final intThe code of event that indicates that we have started to evaluate the items in a sequence.static final intThe code of event that indicates that we have finished to evaluate the parameter list in a function call.static final intThe code of event that indicates that we have finished to evaluate the items in a sequence.static final intThe code of event that indicates that we have finished to evaluate the value in a key:value pair.static final intThe code of event that indicates that we have finished to evaluate the items in a sequence.static final Objectstatic final Object -
Method Summary
Modifier and TypeMethodDescriptionevalFunctionCall(FunctionCall fc, Interpreter ip) Evaluates the function call.notify(int event, Interpreter ip, String name, Object extra) Notifies about an event during expression evaluation.
-
Field Details
-
EVENT_ENTER_HASH_KEY
static final int EVENT_ENTER_HASH_KEYThe code of event that indicates that we have started to evaluate the value in a key:value pair.- See Also:
-
EVENT_LEAVE_HASH_KEY
static final int EVENT_LEAVE_HASH_KEYThe code of event that indicates that we have finished to evaluate the value in a key:value pair.- See Also:
-
EVENT_ENTER_FUNCTION_PARAMS
static final int EVENT_ENTER_FUNCTION_PARAMSThe code of event that indicates that we have started to evaluate the parameter list in a function call.- See Also:
-
EVENT_LEAVE_FUNCTION_PARAMS
static final int EVENT_LEAVE_FUNCTION_PARAMSThe code of event that indicates that we have finished to evaluate the parameter list in a function call.- See Also:
-
EVENT_ENTER_SEQUENCE
static final int EVENT_ENTER_SEQUENCEThe code of event that indicates that we have started to evaluate the items in a sequence. This does not include function call parameter lists.- See Also:
-
EVENT_LEAVE_SEQUENCE
static final int EVENT_LEAVE_SEQUENCEThe code of event that indicates that we have finished to evaluate the items in a sequence.- See Also:
-
EVENT_ENTER_HASH
static final int EVENT_ENTER_HASHThe code of event that indicates that we have started to evaluate the items in a hash.- See Also:
-
EVENT_LEAVE_HASH
static final int EVENT_LEAVE_HASHThe code of event that indicates that we have finished to evaluate the items in a sequence.- See Also:
-
RETURN_SKIP
-
RETURN_FRAGMENT
-
-
Method Details
-
evalFunctionCall
Evaluates the function call. This method may simply returns its parameter, which means that the function was not resolved, and thus the function call will be availble for further interpretation in the result of the TDD expression evaluation.- Parameters:
fc- the function call to evaluate.- Returns:
- the return value of the function call. During the evaluation of
a TDD expression, function calls will be replaced with their return
values.
If the return value is a
FunctionCallobject, it will not be evaluated again. This way, the final result of a TDD expression evaluation can containFunctionCallobjects. - Throws:
Exception
-
notify
Notifies about an event during expression evaluation.- Parameters:
event- AnEVENT_...constant. Further events may will be added later, so the implementation must silently ignore events that it does not know. It is guaranteed that for eachEVENT_ENTER_...event there will be anEVENT_LEAVE_...event later, except ifnotifyContextChangehas thrown exception during handlingEVENT_ENTER_..., in which case it is guaranteed that there will be no correspondingEVENT_LEAVE_...event.ip- theInterpreterinstance that evaluates the text. The value returned byInterpreter.getPosition()will be the position in the text where the this even has been created:EVENT_ENTER_HASH_KEY: points the first character of the value of the key:value pair.EVENT_ENTER_SEQUENCE,EVENT_ENTER_HASH, andEVENT_ENTER_FUNCTION_PARAMS: points the first character after the [ and ( respectively.EVENT_LEAVE_SEQUENCE,EVENT_LEAVE_HASH, andEVENT_LEAVE_FUNCTION_PARAMS: points the terminating character, that is, the ] or ) or the character after the end of the string.
name- ForEVENT_ENTER_HASH_KEYandEVENT_ENTER_FUNCTION_PARAMS, the name of the hash key or function. It isnullotherwise.extra- Even specific extra information.- For
EVENT_ENTER_HASH,EVENT_LEAVE_HASH,EVENT_ENTER_SEQUENCE,EVENT_LEAVE_SEQUENCEit is theMaporListthat is being built by the hash or sequence. It's OK to modify thisMaporList. - For other events it's
value is currently
null.
- For
- Returns:
- return The allowed return values and their meaning depends on
the event. But return value
nullalways means "do nothing special". The currently defiend non-nullreturn values for the events:EVENT_ENTER_HASH_KEY:RETURN_SKIP: Skip the key:value pair. That is, the key:value pair will not be added to the map. The value expression will not be evaluated.RETURN_FRAGMENT: The value of the key:value pair will be theFragmentthat stores the value expression. The value expression will not be evaluated. However, if the value is implicit booleantrue, (i.e. you omit the value) thenRETURN_FRAGMENThas no effect.
EVENT_ENTER_HASHif the hash uses { and }):RETURN_FRAGMENT: The value of the hash will be theFragmentthat stores the hash expression. The hash expression will not be evaluated.
- Throws:
Exception
-