/* * ============================================================================= * * Copyright (c) 2011-2016, The THYMELEAF team (http://www.thymeleaf.org) * * Licensed 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 org.thymeleaf.standard.processor; import org.thymeleaf.context.ITemplateContext; import org.thymeleaf.engine.AttributeName; import org.thymeleaf.engine.EngineEventUtils; import org.thymeleaf.model.IProcessableElementTag; import org.thymeleaf.processor.element.AbstractAttributeTagProcessor; import org.thymeleaf.processor.element.IElementTagStructureHandler; import org.thymeleaf.standard.expression.FragmentExpression; import org.thymeleaf.standard.expression.IStandardExpression; import org.thymeleaf.standard.expression.NoOpToken; import org.thymeleaf.standard.expression.StandardExpressionExecutionContext; import org.thymeleaf.templatemode.TemplateMode; /** * * @author Daniel Fernández * * @since 3.0.0 * */ public abstract class AbstractStandardExpressionAttributeTagProcessor extends AbstractAttributeTagProcessor { private final boolean removeIfNoop; protected AbstractStandardExpressionAttributeTagProcessor( final TemplateMode templateMode, final String dialectPrefix, final String attrName, final int precedence, final boolean removeAttribute) { super(templateMode, dialectPrefix, null, false, attrName, true, precedence, removeAttribute); this.removeIfNoop = !removeAttribute; } @Override protected final void doProcess( final ITemplateContext context, final IProcessableElementTag tag, final AttributeName attributeName, final String attributeValue, final IElementTagStructureHandler structureHandler) { final Object expressionResult; if (attributeValue != null) { final IStandardExpression expression = EngineEventUtils.computeAttributeExpression(context, tag, attributeName, attributeValue); if (expression != null && expression instanceof FragmentExpression) { // This is merely a FragmentExpression (not complex, not combined with anything), so we can apply a shortcut // so that we don't require a "null" result for this expression if the template does not exist. That will // save a call to resource.exists() which might be costly. final FragmentExpression.ExecutedFragmentExpression executedFragmentExpression = FragmentExpression.createExecutedFragmentExpression(context, (FragmentExpression) expression, StandardExpressionExecutionContext.NORMAL); expressionResult = FragmentExpression.resolveExecutedFragmentExpression(context, executedFragmentExpression, true); } else { expressionResult = expression.execute(context); } } else { expressionResult = null; } // If the result of this expression is NO-OP, there is nothing to execute if (expressionResult == NoOpToken.VALUE) { if (this.removeIfNoop) { structureHandler.removeAttribute(attributeName); } return; } doProcess( context, tag, attributeName, attributeValue, expressionResult, structureHandler); } protected abstract void doProcess( final ITemplateContext context, final IProcessableElementTag tag, final AttributeName attributeName, final String attributeValue, final Object expressionResult, final IElementTagStructureHandler structureHandler); }