Package org.apache.velocity.context
Class ProxyVMContext
java.lang.Object
org.apache.velocity.context.ChainedInternalContextAdapter
org.apache.velocity.context.ProxyVMContext
- All Implemented Interfaces:
Context
,InternalContextAdapter
,InternalEventContext
,InternalHousekeepingContext
,InternalWrapperContext
Context for Velocity macro arguments.
This special context combines ideas of earlier VMContext and VMProxyArgs
by implementing routing functionality internally. This significantly
reduces memory allocation upon macro invocations.
Since the macro AST is now shared and RuntimeMacro directive is used,
the earlier implementation of precalculating VMProxyArgs would not work.
See Issue 607
for more info on this class.
- Since:
- 1.6
- Version:
- $Id$
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) Map
container for any local or constant macro arguments.private boolean
support for local context scope feature, where all references are localprivate RuntimeServices
needed for writing log entries.(package private) Map
container for our macro AST node arguments.Fields inherited from class org.apache.velocity.context.ChainedInternalContextAdapter
innerContext
-
Constructor Summary
ConstructorsConstructorDescriptionProxyVMContext
(InternalContextAdapter inner, RuntimeServices rsvc, boolean localContextScope) -
Method Summary
Modifier and TypeMethodDescriptionvoid
addVMProxyArg
(InternalContextAdapter context, String macroArgumentName, String literalMacroArgumentName, Node argumentValue) Used to put Velocity macro arguments into this context.void
addVMProxyArg
(InternalContextAdapter context, String macroArgumentName, String literalMacroArgumentName, Renderable argumentValue) Used to put Velocity macro bodyContext arguments into this context.boolean
containsKey
(Object key) Indicates whether the specified key is in the context.Implementation of the Context.get() method.Object[]
getKeys()
Get all the keys for the values in the context.private boolean
isConstant
(Node node) AST nodes that are considered constants can be directly saved into the context.Allows callers to explicitly put objects in the local context, no matter what the velocimacro.context.local setting says.Impl of the Context.put() method.protected Object
Internal put method to select between local and global scope.Removes the value associated with the specified key from the context.Methods inherited from class org.apache.velocity.context.ChainedInternalContextAdapter
attachEventCartridge, getBaseContext, getCurrentMacroCallDepth, getCurrentMacroName, getCurrentResource, getCurrentTemplateName, getEventCartridge, getInternalUserContext, getMacroLibraries, getMacroNameStack, getTemplateNameStack, icacheGet, icachePut, popCurrentMacroName, popCurrentTemplateName, pushCurrentMacroName, pushCurrentTemplateName, setCurrentResource, setMacroLibraries
-
Field Details
-
vmproxyhash
Map vmproxyhashcontainer for our macro AST node arguments. Size must be power of 2. -
localcontext
Map localcontextcontainer for any local or constant macro arguments. Size must be power of 2. -
localContextScope
private boolean localContextScopesupport for local context scope feature, where all references are local -
rsvc
needed for writing log entries.
-
-
Constructor Details
-
ProxyVMContext
public ProxyVMContext(InternalContextAdapter inner, RuntimeServices rsvc, boolean localContextScope) - Parameters:
inner
- Velocity context for processingrsvc
- RuntimeServices provides logging referencelocalContextScope
- if true, all references are set to be local
-
-
Method Details
-
addVMProxyArg
public void addVMProxyArg(InternalContextAdapter context, String macroArgumentName, String literalMacroArgumentName, Node argumentValue) throws MethodInvocationException Used to put Velocity macro arguments into this context.- Parameters:
context
- rendering contextmacroArgumentName
- name of the macro argument that we receivedliteralMacroArgumentName
- ".literal.$"+macroArgumentNameargumentValue
- actual value of the macro argument- Throws:
MethodInvocationException
-
addVMProxyArg
public void addVMProxyArg(InternalContextAdapter context, String macroArgumentName, String literalMacroArgumentName, Renderable argumentValue) throws MethodInvocationException Used to put Velocity macro bodyContext arguments into this context.- Parameters:
context
- rendering contextmacroArgumentName
- name of the macro argument that we receivedliteralMacroArgumentName
- ".literal.$"+macroArgumentNameargumentValue
- actual value of the macro body- Throws:
MethodInvocationException
-
isConstant
AST nodes that are considered constants can be directly saved into the context. Dynamic values are stored in another argument hashmap.- Parameters:
node
- macro argument as AST node- Returns:
- true if the node is a constant value
-
put
Impl of the Context.put() method.- Specified by:
put
in interfaceContext
- Overrides:
put
in classChainedInternalContextAdapter
- Parameters:
key
- name of item to setvalue
- object to set to key- Returns:
- old stored object
-
localPut
Allows callers to explicitly put objects in the local context, no matter what the velocimacro.context.local setting says. Needed e.g. for loop variables in foreach.- Specified by:
localPut
in interfaceInternalWrapperContext
- Overrides:
localPut
in classChainedInternalContextAdapter
- Parameters:
key
- name of item to set.value
- object to set to key.- Returns:
- old stored object
- See Also:
-
put
Internal put method to select between local and global scope.- Parameters:
key
- name of item to setvalue
- object to set to keyforceLocal
- True forces the object into the local scope.- Returns:
- old stored object
-
get
Implementation of the Context.get() method. First checks localcontext, then arguments, then global context.- Specified by:
get
in interfaceContext
- Overrides:
get
in classChainedInternalContextAdapter
- Parameters:
key
- name of item to get- Returns:
- stored object or null
-
containsKey
Description copied from interface:Context
Indicates whether the specified key is in the context.- Specified by:
containsKey
in interfaceContext
- Overrides:
containsKey
in classChainedInternalContextAdapter
- Parameters:
key
- The key to look for.- Returns:
- Whether the key is in the context.
- See Also:
-
getKeys
Description copied from interface:Context
Get all the keys for the values in the context.- Specified by:
getKeys
in interfaceContext
- Overrides:
getKeys
in classChainedInternalContextAdapter
- Returns:
- All the keys for the values in the context.
- See Also:
-
remove
Description copied from interface:Context
Removes the value associated with the specified key from the context.- Specified by:
remove
in interfaceContext
- Overrides:
remove
in classChainedInternalContextAdapter
- Parameters:
key
- The name of the value to remove.- Returns:
- The value that the key was mapped to, or
null
if unmapped. - See Also:
-