/* * ============================================================================= * * 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.TemplateManager; import org.thymeleaf.engine.TemplateModel; import org.thymeleaf.model.IComment; import org.thymeleaf.processor.comment.AbstractCommentProcessor; import org.thymeleaf.processor.comment.ICommentStructureHandler; import org.thymeleaf.standard.util.StandardConditionalCommentUtils; import org.thymeleaf.templatemode.TemplateMode; import org.thymeleaf.util.FastStringWriter; /** * * @author Daniel Fernández * * @since 3.0.0 * */ public final class StandardConditionalCommentProcessor extends AbstractCommentProcessor { public static final int PRECEDENCE = 1100; public StandardConditionalCommentProcessor() { super(TemplateMode.HTML, PRECEDENCE); } @Override protected void doProcess( final ITemplateContext context, final IComment comment, final ICommentStructureHandler structureHandler) { final StandardConditionalCommentUtils.ConditionalCommentParsingResult parsingResult = StandardConditionalCommentUtils.parseConditionalComment(comment); if (parsingResult == null) { // This is NOT a Conditional Comment. Just return return; } final String commentStr = comment.getComment(); /* * Next, we need to get the content of the Conditional Comment and process it as a piece of markup. In fact, * we must process it as a template itself (a template fragment) so that all thymeleaf attributes and * structures inside this content execute correctly, including references to context variables. */ final TemplateManager templateManager = context.getConfiguration().getTemplateManager(); final String parsableContent = commentStr.substring(parsingResult.getContentOffset(), parsingResult.getContentOffset() + parsingResult.getContentLen()); final TemplateModel templateModel = templateManager.parseString( context.getTemplateData(), parsableContent, comment.getLine(), comment.getCol(), null, // No need to force template mode true); final FastStringWriter writer = new FastStringWriter(200); /* * Rebuild the conditional comment start expression */ writer.write("["); writer.write(commentStr, parsingResult.getStartExpressionOffset(), parsingResult.getStartExpressionLen()); writer.write("]>"); /* * Process the parsable content */ templateManager.process(templateModel, context, writer); /* * Rebuild the conditional comment end expression */ writer.write("<!["); writer.write(commentStr, parsingResult.getEndExpressionOffset(), parsingResult.getEndExpressionLen()); writer.write("]"); /* * Re-set the comment content, once processed */ structureHandler.setContent(writer.toString()); } }