| <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang=""><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>ClassMapper.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Turbine</a> > <a href="index.source.html" class="el_package">org.apache.turbine.services.template.mapper</a> > <span class="el_source">ClassMapper.java</span></div><h1>ClassMapper.java</h1><pre class="source lang-java linenums">package org.apache.turbine.services.template.mapper; |
| |
| |
| /* |
| * 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. |
| */ |
| |
| |
| import java.util.ArrayList; |
| import java.util.Arrays; |
| import java.util.List; |
| |
| import org.apache.commons.lang3.StringUtils; |
| import org.apache.logging.log4j.LogManager; |
| import org.apache.logging.log4j.Logger; |
| import org.apache.turbine.modules.Assembler; |
| import org.apache.turbine.modules.Loader; |
| import org.apache.turbine.services.template.TemplateService; |
| import org.apache.turbine.util.TurbineException; |
| |
| /** |
| * This mapper tries to map Template names to class names. If no direct match |
| * is found, it tries matches "upwards" in the package hierarchy until either |
| * a match is found or the root is hit. Then it returns the name of the |
| * default class from the TemplateEngineService. |
| * |
| * 1. about.directions.Driving &lt;- direct matching the template to the class name |
| * 2. about.directions.Default &lt;- matching the package, class name is Default |
| * 3. about.Default &lt;- stepping up in the package hierarchy, looking for Default |
| * 4. Default &lt;- Class called "Default" without package |
| * 5. VelocityScreen &lt;- The class configured by the Service (VelocityService) to |
| * |
| * Please note, that no actual packages are searched. This is the scope of the |
| * TemplateEngine Loader which is passed at construction time. |
| * |
| * @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a> |
| * @version $Id$ |
| */ |
| |
| public class ClassMapper |
| extends BaseMapper |
| implements Mapper |
| { |
| /** The loader for actually trying out the package names */ |
| <span class="fc" id="L60"> private Loader<? extends Assembler> loader = null;</span> |
| |
| /** Logging */ |
| <span class="fc" id="L63"> private static final Logger log = LogManager.getLogger(ClassMapper.class);</span> |
| |
| /** |
| * Default C'tor. If you use this C'tor, you must use |
| * the bean setter to set the various properties needed for |
| * this mapper before first usage. |
| */ |
| public ClassMapper() |
| <span class="fc" id="L71"> {</span> |
| // empty |
| <span class="fc" id="L73"> }</span> |
| |
| /** |
| * Get the Loader value. |
| * @return the Loader value. |
| */ |
| public Loader<? extends Assembler> getLoader() |
| { |
| <span class="nc" id="L81"> return loader;</span> |
| } |
| |
| /** |
| * Set the Loader value. |
| * @param loader The new Loader value. |
| */ |
| public void setLoader(Loader<? extends Assembler> loader) |
| { |
| <span class="fc" id="L90"> this.loader = loader;</span> |
| <span class="fc" id="L91"> log.debug("Loader is {}", this.loader);</span> |
| <span class="fc" id="L92"> }</span> |
| |
| /** |
| * Strip off a possible extension, replace all "," with "." |
| * Look through the given package path until a match is found. |
| * |
| * @param template The template name. |
| * @return A class name for the given template. |
| */ |
| @Override |
| public String doMapping(String template) |
| { |
| <span class="nc" id="L104"> log.debug("doMapping({})", template);</span> |
| |
| // Copy our elements into an array |
| <span class="nc" id="L107"> List<String> components</span> |
| <span class="nc" id="L108"> = new ArrayList<>(Arrays.asList(StringUtils.split(</span> |
| template, |
| <span class="nc" id="L110"> String.valueOf(TemplateService.TEMPLATE_PARTS_SEPARATOR))));</span> |
| <span class="nc" id="L111"> int componentSize = components.size() - 1 ;</span> |
| |
| // This method never gets an empty string passed. |
| // So this is never < 0 |
| <span class="nc" id="L115"> String className = components.get(componentSize);</span> |
| <span class="nc" id="L116"> components.remove(componentSize--);</span> |
| |
| <span class="nc" id="L118"> log.debug("className is {}", className);</span> |
| |
| // Strip off a possible Extension |
| <span class="nc" id="L121"> int dotIndex = className.lastIndexOf(TemplateService.EXTENSION_SEPARATOR);</span> |
| <span class="nc bnc" id="L122" title="All 2 branches missed."> className = (dotIndex < 0) ? className : className.substring(0, dotIndex);</span> |
| |
| // This is an optimization. If the name we're looking for is |
| // already the default name for the template, don't do a "first run" |
| // which looks for an exact match. |
| <span class="nc bnc" id="L127" title="All 2 branches missed."> boolean firstRun = !className.equals(TemplateService.DEFAULT_NAME);</span> |
| |
| for(;;) |
| { |
| <span class="nc" id="L131"> String pkg = StringUtils.join(components.iterator(), String.valueOf(separator));</span> |
| <span class="nc" id="L132"> StringBuilder testName = new StringBuilder();</span> |
| |
| <span class="nc" id="L134"> log.debug("classPackage is now: {}", pkg);</span> |
| |
| <span class="nc bnc" id="L136" title="All 2 branches missed."> if (!components.isEmpty())</span> |
| { |
| <span class="nc" id="L138"> testName.append(pkg);</span> |
| <span class="nc" id="L139"> testName.append(separator);</span> |
| } |
| |
| <span class="nc bnc" id="L142" title="All 2 branches missed."> testName.append((firstRun)</span> |
| <span class="nc" id="L143"> ? className</span> |
| <span class="nc" id="L144"> : TemplateService.DEFAULT_NAME);</span> |
| |
| <span class="nc" id="L146"> log.debug("Looking for {}", testName);</span> |
| try |
| { |
| <span class="nc" id="L149"> loader.getAssembler(testName.toString());</span> |
| <span class="nc" id="L150"> log.debug("Found it, returning {}", testName);</span> |
| <span class="nc" id="L151"> return testName.toString();</span> |
| } |
| <span class="nc" id="L153"> catch (TurbineException e)</span> |
| { |
| <span class="nc" id="L155"> log.error("Turbine Exception Class mapping", e);</span> |
| } |
| <span class="nc" id="L157"> catch (Exception e)</span> |
| { |
| // Not found. Go on. |
| <span class="nc" id="L160"> }</span> |
| |
| <span class="nc bnc" id="L162" title="All 2 branches missed."> if (firstRun)</span> |
| { |
| <span class="nc" id="L164"> firstRun = false;</span> |
| } |
| else |
| { |
| <span class="nc bnc" id="L168" title="All 2 branches missed."> if (components.isEmpty())</span> |
| { |
| <span class="nc" id="L170"> break; // for(;;)</span> |
| } |
| <span class="nc" id="L172"> components.remove(componentSize--);</span> |
| } |
| <span class="nc" id="L174"> }</span> |
| |
| <span class="nc" id="L176"> log.debug("Returning default");</span> |
| <span class="nc" id="L177"> return getDefaultName(template);</span> |
| } |
| } |
| |
| |
| |
| |
| </pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.12.202403310830</span></div></body></html> |