All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.faces.facelets.util.DevTools Maven / Gradle / Ivy

Go to download

This is the master POM file for Oracle's Implementation of the JSF 2.2 Specification.

There is a newer version: 2.2.20
Show newest version
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License.  You can
 * obtain a copy of the License at
 * https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
 * or packager/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at packager/legal/LICENSE.txt.
 *
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 *
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [year] [name of copyright owner]"
 *
 * Contributor(s):
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 *
 *
 * This file incorporates work covered by the following copyright and
 * permission notice:
 *
 * Copyright 2005-2007 The Apache Software Foundation
 *
 * 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 com.sun.faces.facelets.util;

import com.sun.faces.util.Util;

import javax.el.Expression;
import javax.faces.component.UIComponent;
import javax.faces.context.ExternalContext;
import javax.faces.context.FacesContext;
import javax.faces.context.Flash;
import javax.faces.el.MethodBinding;
import javax.faces.el.ValueBinding;
import java.beans.BeanInfo;
import java.beans.Introspector;
import java.beans.PropertyDescriptor;
import java.io.*;
import java.lang.reflect.Method;
import java.text.DateFormat;
import java.util.*;
import java.util.logging.Level;

/**
 * 

* Utility class for displaying Facelet error/debug information. *

* *

* The public static methods of this class are exposed as EL functions under * the namespace http://java.sun.com/mojarra/private/functions *

* * @see com.sun.faces.application.ApplicationAssociate#createCompiler(com.sun.faces.config.WebConfiguration) * */ public final class DevTools { private final static String TS = "<"; private static final String ERROR_TEMPLATE = "META-INF/facelet-dev-error.xml"; private static String[] ERROR_PARTS; private static final String DEBUG_TEMPLATE = "META-INF/facelet-dev-debug.xml"; private static String[] DEBUG_PARTS; // ------------------------------------------------------------ Constructors private DevTools() { throw new IllegalStateException(); } // ---------------------------------------------------------- Public Methods public static void debugHtml(Writer writer, FacesContext faces, Throwable e) throws IOException { init(); Date now = new Date(); for (String ERROR_PART : ERROR_PARTS) { if ("message".equals(ERROR_PART)) { writeMessage(writer, e); } else if ("trace".equals(ERROR_PART)) { writeException(writer, e); } else if ("now".equals(ERROR_PART)) { writer.write(DateFormat.getDateTimeInstance().format(now)); } else if ("tree".equals(ERROR_PART)) { writeComponent(writer, faces.getViewRoot()); } else if ("vars".equals(ERROR_PART)) { writeVariables(writer, faces); } else { writer.write(ERROR_PART); } } } public static void writeMessage(Writer writer, Throwable e) throws IOException { if (e != null) { String msg = e.getMessage(); if (msg != null) { writer.write(msg.replaceAll("<", TS)); } else { writer.write(e.getClass().getName()); } } } public static void writeException(Writer writer, Throwable e) throws IOException { if (e != null) { StringWriter str = new StringWriter(256); PrintWriter pstr = new PrintWriter(str); e.printStackTrace(pstr); pstr.close(); writer.write(str.toString().replaceAll("<", TS)); } } public static void debugHtml(Writer writer, FacesContext faces) throws IOException { // PENDING - this and debugHtml(Writer, FacesContext, Exception) should // be refactored to share code. init(); Date now = new Date(); for (String DEBUG_PART : DEBUG_PARTS) { if ("message".equals(DEBUG_PART)) { writer.write(faces.getViewRoot().getViewId()); } else if ("now".equals(DEBUG_PART)) { writer.write(DateFormat.getDateTimeInstance().format(now)); } else if ("tree".equals(DEBUG_PART)) { writeComponent(writer, faces.getViewRoot()); } else if ("vars".equals(DEBUG_PART)) { writeVariables(writer, faces); } else { writer.write(DEBUG_PART); } } } public static void writeVariables(Writer writer, FacesContext faces) throws IOException { ExternalContext ctx = faces.getExternalContext(); writeVariables(writer, ctx.getRequestParameterMap(), "Request Parameters"); if (faces.getViewRoot() != null) { Map viewMap = faces.getViewRoot().getViewMap(false); if (viewMap != null) { writeVariables(writer, viewMap, "View Attributes"); } else { writeVariables(writer, Collections.emptyMap(), "View Attributes"); } } else { writeVariables(writer, Collections.emptyMap(), "View Attributes"); } writeVariables(writer, ctx.getRequestMap(), "Request Attributes"); Flash flash = ctx.getFlash(); try { flash = ctx.getFlash(); } catch (UnsupportedOperationException uoe) { // ignore } if (flash != null) { writeVariables(writer, flash, "Flash Attributes"); } else { writeVariables(writer, Collections.emptyMap(), "Flash Attributes"); } if (ctx.getSession(false) != null) { writeVariables(writer, ctx.getSessionMap(), "Session Attributes"); } else { writeVariables(writer, Collections.emptyMap(), "Session Attributes"); } writeVariables(writer, ctx.getApplicationMap(), "Application Attributes"); } public static void writeComponent(Writer writer, UIComponent c) throws IOException { writer.write("
"); if (c == null) { return; } boolean hasChildren = c.getChildCount() > 0 || c.getFacets().size() > 0; writeStart(writer, c, hasChildren); writer.write("
"); if (hasChildren) { if (c.getFacets().size() > 0) { for (Map.Entry entry : c.getFacets().entrySet()) { writer.write( "
"); writer.write( ""); writer.write((String) entry.getKey()); writer.write(""); writeComponent(writer, (UIComponent) entry.getValue()); writer.write("
"); } } if (c.getChildCount() > 0) { for (UIComponent child : c.getChildren()) { writer.write( "
"); writeComponent(writer, child); writer.write("
"); } } writer.write("
"); writeEnd(writer, c); writer.write("
"); } writer.write("
"); } // --------------------------------------------------------- Private Methods private static void init() throws IOException { if (ERROR_PARTS == null) { ERROR_PARTS = splitTemplate(ERROR_TEMPLATE); } if (DEBUG_PARTS == null) { DEBUG_PARTS = splitTemplate(DEBUG_TEMPLATE); } } private static String[] splitTemplate(String rsc) throws IOException { ClassLoader loader = Util.getCurrentLoader(DevTools.class); InputStream is = loader.getResourceAsStream(rsc); if (is == null) { loader = DevTools.class.getClassLoader(); is = loader.getResourceAsStream(rsc); if (is == null) { throw new FileNotFoundException(rsc); } } ByteArrayOutputStream baos = new ByteArrayOutputStream(); byte[] buff = new byte[512]; int read; while ((read = is.read(buff)) != -1) { baos.write(buff, 0, read); } String str = baos.toString(); return str.split("@@"); } private static void writeVariables(Writer writer, Map vars, String caption) throws IOException { writer.write(""); boolean written = false; if (!vars.isEmpty()) { SortedMap map = new TreeMap(vars); for (Map.Entry entry : map.entrySet()) { String key = entry.getKey(); if (key.indexOf('.') == -1) { writer.write( ""); written = true; } } } if (!written) { writer.write(""); } writer.write("
"); writer.write(caption); writer.write("
NameValue
"); writer.write(key.replaceAll("<", TS)); writer.write(""); writer.write(entry.getValue() == null ? "null" : entry.getValue().toString() .replaceAll("<", TS)); writer.write("
None
"); } private static void writeEnd(Writer writer, UIComponent c) throws IOException { if (!isText(c)) { writer.write(TS); writer.write('/'); writer.write(getName(c)); writer.write('>'); } } private final static String[] IGNORE = new String[] { "parent", "rendererType" }; private static void writeAttributes(Writer writer, UIComponent c) { try { BeanInfo info = Introspector.getBeanInfo(c.getClass()); PropertyDescriptor[] pd = info.getPropertyDescriptors(); for (PropertyDescriptor aPd : pd) { if (aPd.getWriteMethod() != null && Arrays.binarySearch(IGNORE, aPd.getName()) < 0) { Method m = aPd.getReadMethod(); try { Object v = m.invoke(c); if (v != null) { if (v instanceof Collection || v instanceof Map || v instanceof Iterator) { continue; } writer.write(" "); writer.write(aPd.getName()); writer.write("=\""); String str; if (v instanceof Expression) { str = ((Expression) v).getExpressionString(); } else if (v instanceof ValueBinding) { str = ((ValueBinding) v).getExpressionString(); } else if (v instanceof MethodBinding) { str = ((MethodBinding) v).getExpressionString(); } else { str = v.toString(); } writer.write(str.replaceAll("<", TS)); writer.write("\""); } } catch (Exception e) { // do nothing } } } ValueBinding binding = c.getValueBinding("binding"); if (binding != null) { writer.write(" binding=\""); writer.write(binding.getExpressionString().replaceAll("<", TS)); writer.write("\""); } } catch (Exception e) { // do nothing } } private static void writeStart(Writer writer, UIComponent c, boolean children) throws IOException { if (isText(c)) { String str = c.toString().trim(); writer.write(str.replaceAll("<", TS)); } else { writer.write(TS); writer.write(getName(c)); writeAttributes(writer, c); if (children) { writer.write('>'); } else { writer.write("/>"); } } } private static String getName(UIComponent c) { String nm = c.getClass().getName(); return nm.substring(nm.lastIndexOf('.') + 1); } private static boolean isText(UIComponent c) { return (c.getClass().getName().startsWith("com.sun.faces.facelets.compiler")); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy