/*
 * [The "BSD license"]
 *  Copyright (c) 2011 Terence Parr
 *  All rights reserved.
 *
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions
 *  are met:
 *  1. Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *  2. Redistributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in the
 *     documentation and/or other materials provided with the distribution.
 *  3. The name of the author may not be used to endorse or promote products
 *     derived from this software without specific prior written permission.
 *
 *  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 *  IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 *  OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 *  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 *  NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 *  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
package org.stringtemplate.v4;

import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
import java.util.Locale;

This render knows to perform a few format operations on String objects:
  • upper: Convert to upper case.
  • lower: Convert to lower case.
  • cap: Convert first character to upper case.
  • url-encode:
  • xml-encode:
/** This render knows to perform a few format operations on {@link String} objects: * <ul> * <li>{@code upper}: Convert to upper case.</li> * <li>{@code lower}: Convert to lower case.</li> * <li>{@code cap}: Convert first character to upper case.</li> * <li>{@code url-encode}:</li> * <li>{@code xml-encode}:</li> * </ul> */
public class StringRenderer implements AttributeRenderer<Object> { // accepts Object for backward compatibility, // but fails when value is not a String at runtime @Override public String toString(Object value, String formatString, Locale locale) { return toString((String) value, formatString, locale); } // trim(s) and strlen(s) built-in funcs; these are format options public String toString(String value, String formatString, Locale locale) { if ( formatString==null ) return value; if ( formatString.equals("upper") ) return value.toUpperCase(locale); if ( formatString.equals("lower") ) return value.toLowerCase(locale); if ( formatString.equals("cap") ) { return (value.length() > 0) ? Character.toUpperCase(value.charAt(0))+value.substring(1) : value; } if ( formatString.equals("url-encode") ) { try { return URLEncoder.encode(value, "UTF-8"); } catch (UnsupportedEncodingException ex) { // UTF-8 is standard, should always be available } } if ( formatString.equals("xml-encode") ) { return escapeHTML(value); } return String.format(locale, formatString, value); } public static String escapeHTML(String s) { if ( s==null ) { return null; } StringBuilder buf = new StringBuilder( s.length() ); int len = s.length(); for (int i=0; i<len; i++) { char c = s.charAt(i); switch ( c ) { case '&' : buf.append("&amp;"); break; case '<' : buf.append("&lt;"); break; case '>' : buf.append("&gt;"); break; case '\r': case '\n': case '\t': buf.append(c); break; default: boolean control = c < ' '; // 32 boolean aboveASCII = c > 126; if ( control || aboveASCII ) { buf.append("&#"); buf.append((int)c); buf.append(";"); } else buf.append(c); } } return buf.toString(); } }