/* * Copyright (c) 1998-2011 Caucho Technology -- all rights reserved * * This file is part of Resin(R) Open Source * * Each copy or derived work must preserve the copyright notice and this * notice unmodified. * * Resin Open Source is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Resin Open Source is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, or any warranty * of NON-INFRINGEMENT. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License * along with Resin Open Source; if not, write to the * * Free Software Foundation, Inc. * 59 Temple Place, Suite 330 * Boston, MA 02111-1307 USA * * @author Adam Megacz */ package com.caucho.xml.stream; import com.caucho.util.CharBuffer; import com.caucho.vfs.WriteStream; import java.io.IOException; public class Escapifier { public static String escape(String s) { if (s == null) return ""; CharBuffer cb = null; int len = s.length(); for (int i = 0; i < len; i++) { char c = s.charAt(i); if (c >= 32 && c <= 127 && c != '&' && c!='<' && c!='>' && c!='\"' || Character.isWhitespace(c)) { if (cb != null) cb.append(c); continue; } if (cb == null) { cb = new CharBuffer(); cb.append(s.substring(0, i)); } switch(c) { case '&': cb.append("&"); break; case '<': cb.append("<"); break; case '>': cb.append(">"); break; // case '\'': cb.append("'"); break; // TCK compliance case '\"': cb.append("""); break; default: cb.append("&#"+((int)(c & 0xffff))+";"); break; } } if (cb == null) return s; return cb.toString(); } public static void escape(String s, WriteStream ws) throws IOException { ws.print(escape(s)); } public static void escape(char []buffer, int offset, int len, WriteStream out) throws IOException { for (int i = 0; i < len; i++) { char ch = buffer[offset + i]; switch (ch) { case '&': out.print("&"); break; case '<': out.print("<"); break; case '>': out.print(">"); break; // case '\'': out.print("'"); break; // TCK compliance case '\"': out.print("""); break; case ' ': case '\t': case '\r': case '\n': out.print(ch); break; default: if (32 <= ch && ch <= 127) out.print(ch); else out.print("&#" + ((int) ch) + ";"); break; } } } }