All Downloads are FREE. Search and download functionalities are using the official Maven repository.

freemarker.core.Macro Maven / Gradle / Ivy

Go to download

Google App Engine compliant variation of FreeMarker. FreeMarker is a "template engine"; a generic tool to generate text output based on templates.

There is a newer version: 2.3.33
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

package freemarker.core;

import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;

import freemarker.template.Configuration;
import freemarker.template.SimpleHash;
import freemarker.template.SimpleSequence;
import freemarker.template.TemplateException;
import freemarker.template.TemplateHashModelEx;
import freemarker.template.TemplateHashModelEx2;
import freemarker.template.TemplateModel;
import freemarker.template.TemplateModelException;
import freemarker.template.TemplateModelIterator;
import freemarker.template.TemplateScalarModel;
import freemarker.template.TemplateSequenceModel;
import freemarker.template._TemplateAPI;
import freemarker.template.utility.Constants;

/**
 * An element representing a macro or function declaration.
 * 
 * @deprecated Subject to be changed or renamed any time; no "stable" replacement exists yet.
 */
@Deprecated
public final class Macro extends TemplateElement implements TemplateModel {

    static final Macro DO_NOTHING_MACRO = new Macro(".pass", 
            Collections.EMPTY_MAP,
            null, false, false,
            TemplateElements.EMPTY);
    
    final static int TYPE_MACRO = 0;
    final static int TYPE_FUNCTION = 1;
    
    private final String name;
    private final String[] paramNames;
    private final Map paramNamesWithDefault;
    private final WithArgs withArgs;
    private boolean requireArgsSpecialVariable;
    private final String catchAllParamName;
    private final boolean function;
    private final Object namespaceLookupKey;

    /**
     * @param paramNamesWithDefault Maps the parameter names to its default value expression, or to {@code null} if
     *      there's no default value. As parameter order is significant; use {@link LinkedHashMap} or similar.
     *      This doesn't include the catch-all parameter (as that can be specified by name on the caller side).
     */
    Macro(String name,
            Map paramNamesWithDefault,
            String catchAllParamName, boolean function, boolean requireArgsSpecialVariable,
            TemplateElements children) {
        // Attention! Keep this constructor in sync with the other constructor!
        this.name = name;
        this.paramNamesWithDefault = paramNamesWithDefault;
        this.paramNames = paramNamesWithDefault.keySet().toArray(new String[0]);
        this.catchAllParamName = catchAllParamName;
        this.withArgs = null;
        this.requireArgsSpecialVariable = requireArgsSpecialVariable;
        this.function = function;
        this.setChildren(children);
        this.namespaceLookupKey = this;
        // Attention! Keep this constructor in sync with the other constructor!
    }

    /**
     * Copy-constructor with replacing {@link #withArgs} (with the quirk that the parent of the
     * child AST elements will stay the copied macro).
     *
     * @param withArgs Usually {@code null}; used by {@link BuiltInsForCallables.with_argsBI} to
     *      set arbitrary default value to parameters. Note that the defaults aren't
     *      {@link Expression}-s, but {@link TemplateModel}-s.
     */
    Macro(Macro that, WithArgs withArgs) {
        // Attention! Keep this constructor in sync with the other constructor!
        this.name = that.name;
        this.paramNamesWithDefault = that.paramNamesWithDefault;
        this.paramNames = that.paramNames;
        this.catchAllParamName = that.catchAllParamName;
        this.withArgs = withArgs; // Using the argument value here
        this.requireArgsSpecialVariable = that.requireArgsSpecialVariable;
        this.function = that.function;
        this.namespaceLookupKey = that.namespaceLookupKey;
        super.copyFieldsFrom(that);
        // Attention! Keep this constructor in sync with the other constructor!
    }

    boolean getRequireArgsSpecialVariable() {
        return requireArgsSpecialVariable;
    }

    public String getCatchAll() {
        return catchAllParamName;
    }

    /**
     * Returns a new copy of the array that stored the names of arguments declared in this macro or function.
     */
    public String[] getArgumentNames() {
        return paramNames.clone();
    }

    String[] getArgumentNamesNoCopy() {
        return paramNames;
    }

    /**
     * Returns if the macro or function has a parameter called as the argument.
     *
     * @since 2.3.30
     */
    public boolean hasArgNamed(String name) {
        return paramNamesWithDefault.containsKey(name);
    }
    
    public String getName() {
        return name;
    }

    /** The arguments added via {@code ?with_args}; maybe {@code null}. */
    public WithArgs getWithArgs() {
        return withArgs;
    }

    public Object getNamespaceLookupKey() {
        return namespaceLookupKey;
    }

    @Override
    TemplateElement[] accept(Environment env) {
        env.visitMacroDef(this);
        return null;
    }

    @Override
    protected String dump(boolean canonical) {
        StringBuilder sb = new StringBuilder();
        if (canonical) sb.append('<');
        sb.append(getNodeTypeSymbol());
        if (withArgs != null) {
            // As such a node won't be part of a template, this is probably never needed.
            sb.append('?')
                    .append(getTemplate().getActualNamingConvention() == Configuration.CAMEL_CASE_NAMING_CONVENTION
                            ? BuiltIn.BI_NAME_CAMEL_CASE_WITH_ARGS
                            : BuiltIn.BI_NAME_SNAKE_CASE_WITH_ARGS)
                    .append("(...)");
        }
        sb.append(' ');
        sb.append(_CoreStringUtils.toFTLTopLevelTragetIdentifier(name));
        if (function) sb.append('(');
        int argCnt = paramNames.length;
        for (int i = 0; i < argCnt; i++) {
            if (function) {
                if (i != 0) {
                    sb.append(", ");
                }
            } else {
                sb.append(' ');
            }

            String paramName = paramNames[i];
            sb.append(_CoreStringUtils.toFTLTopLevelIdentifierReference(paramName));

            Expression paramDefaultExp = paramNamesWithDefault.get(paramName);
            if (paramDefaultExp != null) {
                sb.append('=');
                if (function) {
                    sb.append(paramDefaultExp.getCanonicalForm());
                } else {
                    _MessageUtil.appendExpressionAsUntearable(sb, paramDefaultExp);
                }
            }
        }
        if (catchAllParamName != null) {
            if (function) {
                if (argCnt != 0) {
                    sb.append(", ");
                }
            } else {
                sb.append(' ');
            }
            sb.append(catchAllParamName);
            sb.append("...");
        }
        if (function) sb.append(')');
        if (canonical) {
            sb.append('>');
            sb.append(getChildrenCanonicalForm());
            sb.append("');
        }
        return sb.toString();
    }
    
    @Override
    String getNodeTypeSymbol() {
        return function ? "#function" : "#macro";
    }
    
    public boolean isFunction() {
        return function;
    }

    class Context implements LocalContext {
        final Environment.Namespace localVars; 
        final TemplateObject callPlace;
        final Environment.Namespace nestedContentNamespace;
        final List nestedContentParameterNames;
        final LocalContextStack prevLocalContextStack;
        final Context prevMacroContext;
        TemplateModel argsSpecialVariableValue;
        
        Context(Environment env, 
                TemplateObject callPlace,
                List nestedContentParameterNames) {
            this.localVars = env.new Namespace(); 
            this.callPlace = callPlace;
            this.nestedContentNamespace = env.getCurrentNamespace();
            this.nestedContentParameterNames = nestedContentParameterNames;
            this.prevLocalContextStack = env.getLocalContextStack();
            this.prevMacroContext = env.getCurrentMacroContext();
        }

        Macro getMacro() {
            return Macro.this;
        }

        /**
         * Set default parameters, check if all the required parameters are defined. Also sets the value of
         * {@code .args}, if that was requested.
         */
        void checkParamsSetAndApplyDefaults(Environment env) throws TemplateException {
            boolean resolvedADefaultValue, hasUnresolvedDefaultValue;
            Expression firstUnresolvedDefaultValueExpression;
            InvalidReferenceException firstInvalidReferenceExceptionForDefaultValue;

            final TemplateModel[] argsSpecVarDraft;
            if (Macro.this.requireArgsSpecialVariable) {
                argsSpecVarDraft = new TemplateModel[paramNames.length];
            } else {
                argsSpecVarDraft = null;
            }
            do { // Retried if there are unresolved defaults left
                firstUnresolvedDefaultValueExpression = null;
                firstInvalidReferenceExceptionForDefaultValue = null;
                resolvedADefaultValue = hasUnresolvedDefaultValue = false;
                for (int paramIndex = 0; paramIndex < paramNames.length; ++paramIndex) {
                    final String argName = paramNames[paramIndex];
                    final TemplateModel argValue = localVars.get(argName);
                    if (argValue == null) {
                        Expression defaultValueExp = paramNamesWithDefault.get(argName);
                        if (defaultValueExp != null) {
                            try {
                                TemplateModel defaultValue = defaultValueExp.eval(env);
                                if (defaultValue == null) {
                                    if (!hasUnresolvedDefaultValue) {
                                        firstUnresolvedDefaultValueExpression = defaultValueExp;
                                        hasUnresolvedDefaultValue = true;
                                    }
                                } else {
                                    localVars.put(argName, defaultValue);
                                    resolvedADefaultValue = true;

                                    if (argsSpecVarDraft != null) {
                                        argsSpecVarDraft[paramIndex] = defaultValue;
                                    }
                                }
                            } catch (InvalidReferenceException e) {
                                if (!hasUnresolvedDefaultValue) {
                                    hasUnresolvedDefaultValue = true;
                                    firstInvalidReferenceExceptionForDefaultValue = e;
                                }
                            }
                        } else if (!env.isClassicCompatible()) {
                            boolean argWasSpecified = localVars.containsKey(argName);
                            throw new _MiscTemplateException(env,
                                    new _ErrorDescriptionBuilder(
                                            "When calling ", (isFunction() ? "function" : "macro"), " ",
                                            new _DelayedJQuote(name), 
                                            ", required parameter ", new _DelayedJQuote(argName),
                                            " (parameter #", Integer.valueOf(paramIndex + 1), ") was ",
                                            (argWasSpecified
                                                    ? "specified, but had null/missing value."
                                                    : "not specified.") 
                                    ).tip(argWasSpecified
                                            ? new Object[] {
                                                    "If the parameter value expression on the caller side is known to "
                                                    + "be legally null/missing, you may want to specify a default "
                                                    + "value for it with the \"!\" operator, like "
                                                    + "paramValue!defaultValue." }
                                            : new Object[] { 
                                                    "If the omission was deliberate, you may consider making the "
                                                    + "parameter optional in the macro by specifying a default value "
                                                    + "for it, like ", "<#macro macroName paramName=defaultExpr>", ")" }
                                            ));
                        }
                    } else if (argsSpecVarDraft != null) {
                        // Minor performance problem here: If there are multiple iterations due to default value
                        // dependencies, this will set many parameters for multiple times.
                        argsSpecVarDraft[paramIndex] = argValue;
                    }
                }
            } while (hasUnresolvedDefaultValue && resolvedADefaultValue);
            if (hasUnresolvedDefaultValue) {
                if (firstInvalidReferenceExceptionForDefaultValue != null) {
                    throw firstInvalidReferenceExceptionForDefaultValue;
                } else if (!env.isClassicCompatible()) {
                    throw InvalidReferenceException.getInstance(firstUnresolvedDefaultValueExpression, env);
                }
            }
            
            if (argsSpecVarDraft != null) {
                final String catchAllParamName = getMacro().catchAllParamName;
                final TemplateModel catchAllArgValue = catchAllParamName != null
                        ? localVars.get(catchAllParamName) : null;

                if (getMacro().isFunction()) {
                    int lengthWithCatchAlls = argsSpecVarDraft.length;
                    if (catchAllArgValue != null) {
                        lengthWithCatchAlls += ((TemplateSequenceModel) catchAllArgValue).size();
                    }

                    SimpleSequence argsSpecVarValue = new SimpleSequence(
                            lengthWithCatchAlls, _TemplateAPI.SAFE_OBJECT_WRAPPER);
                    for (int paramIndex = 0; paramIndex < argsSpecVarDraft.length; paramIndex++) {
                        argsSpecVarValue.add(argsSpecVarDraft[paramIndex]);
                    }
                    if (catchAllParamName != null) {
                        TemplateSequenceModel catchAllSeq = (TemplateSequenceModel) catchAllArgValue;
                        int catchAllSize = catchAllSeq.size();
                        for (int j = 0; j < catchAllSize; j++) {
                            argsSpecVarValue.add(catchAllSeq.get(j));
                        }
                    }
                    assert argsSpecVarValue.size() == lengthWithCatchAlls;

                    this.argsSpecialVariableValue = argsSpecVarValue;
                } else { // #macro
                    int lengthWithCatchAlls = argsSpecVarDraft.length;
                    TemplateHashModelEx2 catchAllHash;
                    if (catchAllParamName != null) {
                        if (catchAllArgValue instanceof TemplateSequenceModel) {
                            if (((TemplateSequenceModel) catchAllArgValue).size() != 0) {
                                throw new _MiscTemplateException("The macro can only by called with named arguments, " +
                                        "because it uses both .", BuiltinVariable.ARGS, " and a non-empty catch-all " +
                                        "parameter.");
                            }
                            catchAllHash = Constants.EMPTY_HASH_EX2;
                        } else {
                            catchAllHash = (TemplateHashModelEx2) catchAllArgValue;
                        }
                        lengthWithCatchAlls += catchAllHash.size();
                    } else {
                        catchAllHash = null;
                    }

                    SimpleHash argsSpecVarValue = new SimpleHash(
                            new LinkedHashMap(lengthWithCatchAlls * 4 / 3, 1.0f),
                            _TemplateAPI.SAFE_OBJECT_WRAPPER, 0);
                    for (int paramIndex = 0; paramIndex < argsSpecVarDraft.length; paramIndex++) {
                        argsSpecVarValue.put(paramNames[paramIndex], argsSpecVarDraft[paramIndex]);
                    }
                    if (catchAllArgValue != null) {
                        for (TemplateHashModelEx2.KeyValuePairIterator iter = catchAllHash.keyValuePairIterator();
                                iter.hasNext(); ) {
                            TemplateHashModelEx2.KeyValuePair kvp = iter.next();
                            argsSpecVarValue.put(
                                    ((TemplateScalarModel) kvp.getKey()).getAsString(),
                                    kvp.getValue());
                        }
                    }
                    assert argsSpecVarValue.size() == lengthWithCatchAlls;

                    this.argsSpecialVariableValue = argsSpecVarValue;
                }
            } // if (argsSpecVarDraft != null)
        }

        @Override
        public TemplateModel getLocalVariable(String name) throws TemplateModelException {
             return localVars.get(name);
        }

        Environment.Namespace getLocals() {
            return localVars;
        }
        
        /**
         * Set a local variable in this macro 
         */
        void setLocalVar(String name, TemplateModel var) {
            localVars.put(name, var);
        }

        @Override
        public Collection getLocalVariableNames() throws TemplateModelException {
            HashSet result = new HashSet();
            for (TemplateModelIterator it = localVars.keys().iterator(); it.hasNext(); ) {
                result.add(((TemplateScalarModel) it.next()).getAsString());
            }
            return result;
        }

        TemplateModel getArgsSpecialVariableValue() {
            return argsSpecialVariableValue;
        }

        void setArgsSpecialVariableValue(TemplateModel argsSpecialVariableValue) {
            this.argsSpecialVariableValue = argsSpecialVariableValue;
        }
    }

    @Override
    int getParameterCount() {
        return 1/*name*/ + paramNames.length * 2/*name=default*/ + 1/*catchAll*/ + 1/*type*/;
    }

    @Override
    Object getParameterValue(int idx) {
        if (idx == 0) {
            return name;
        } else {
            final int argDescsEnd = paramNames.length * 2 + 1;
            if (idx < argDescsEnd) {
                String paramName = paramNames[(idx - 1) / 2];
                if (idx % 2 != 0) {
                    return paramName;
                } else {
                    return paramNamesWithDefault.get(paramName);
                }
            } else if (idx == argDescsEnd) {
                return catchAllParamName;
            } else if (idx == argDescsEnd + 1) {
                return Integer.valueOf(function ? TYPE_FUNCTION : TYPE_MACRO);
            } else {
                throw new IndexOutOfBoundsException();
            }
        }
    }

    @Override
    ParameterRole getParameterRole(int idx) {
        if (idx == 0) {
            return ParameterRole.ASSIGNMENT_TARGET;
        } else {
            final int argDescsEnd = paramNames.length * 2 + 1;
            if (idx < argDescsEnd) {
                if (idx % 2 != 0) {
                    return ParameterRole.PARAMETER_NAME;
                } else {
                    return ParameterRole.PARAMETER_DEFAULT;
                }
            } else if (idx == argDescsEnd) {
                return ParameterRole.CATCH_ALL_PARAMETER_NAME;
            } else if (idx == argDescsEnd + 1) {
                return ParameterRole.AST_NODE_SUBTYPE;
            } else {
                throw new IndexOutOfBoundsException();
            }
        }
    }

    @Override
    boolean isNestedBlockRepeater() {
        // Because of recursive calls
        return true;
    }

    static final class WithArgs {
        private final TemplateHashModelEx byName;
        private final TemplateSequenceModel byPosition;
        private final boolean orderLast;

        WithArgs(TemplateHashModelEx byName, boolean orderLast) {
            this.byName = byName;
            this.byPosition = null;
            this.orderLast = orderLast;
        }

        WithArgs(TemplateSequenceModel byPosition, boolean orderLast) {
            this.byName = null;
            this.byPosition = byPosition;
            this.orderLast = orderLast;
        }

        public TemplateHashModelEx getByName() {
            return byName;
        }

        public TemplateSequenceModel getByPosition() {
            return byPosition;
        }

        public boolean isOrderLast() {
            return orderLast;
        }
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy