org.apache.catalina.valves.RequestDumperValve Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payara-micro Show documentation
Show all versions of payara-micro Show documentation
Micro Distribution of the Payara Project
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-2012 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 2004 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 org.apache.catalina.valves;
import org.apache.catalina.*;
import javax.servlet.ServletException;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.Enumeration;
import java.util.logging.Level;
/**
* Implementation of a Valve that logs interesting contents from the
* specified Request (before processing) and the corresponding Response
* (after processing). It is especially useful in debugging problems
* related to headers and cookies.
*
* This Valve may be attached to any Container, depending on the granularity
* of the logging you wish to perform.
*
* @author Craig R. McClanahan
* @version $Revision: 1.3 $ $Date: 2005/12/08 01:28:25 $
*/
public class RequestDumperValve extends ValveBase {
/**
* The descriptive information related to this implementation.
*/
private static final String info =
"org.apache.catalina.valves.RequestDumperValve/1.0";
// ------------------------------------------------------------- Properties
/**
* Return descriptive information about this Valve implementation.
*/
public String getInfo() {
return (info);
}
// --------------------------------------------------------- Public Methods
/**
* Log the interesting request parameters, invoke the next Valve in the
* sequence, and log the interesting response parameters.
*
* @param request The servlet request to be processed
* @param response The servlet response to be created
*
* @exception IOException if an input/output error occurs
* @exception ServletException if a servlet error occurs
*/
public int invoke(Request request, Response response)
throws IOException, ServletException {
// Skip logging for non-HTTP requests and responses
if (!(request instanceof HttpRequest) ||
!(response instanceof HttpResponse)) {
return INVOKE_NEXT;
}
HttpRequest hrequest = (HttpRequest) request;
HttpServletRequest hreq =
(HttpServletRequest) hrequest.getRequest();
// Log pre-service information
log("REQUEST URI =" + hreq.getRequestURI());
log(" authType=" + hreq.getAuthType());
log(" characterEncoding=" + hreq.getCharacterEncoding());
log(" contentLength=" + hreq.getContentLength());
log(" contentType=" + hreq.getContentType());
log(" contextPath=" + hreq.getContextPath());
Cookie cookies[] = hreq.getCookies();
if (cookies != null) {
for (int i = 0; i < cookies.length; i++)
log(" cookie=" + cookies[i].getName() + "=" +
cookies[i].getValue());
}
Enumeration hnames = hreq.getHeaderNames();
while (hnames.hasMoreElements()) {
String hname = hnames.nextElement();
Enumeration hvalues = hreq.getHeaders(hname);
while (hvalues.hasMoreElements()) {
String hvalue = hvalues.nextElement();
log(" header=" + hname + "=" + hvalue);
}
}
log(" locale=" + hreq.getLocale());
log(" method=" + hreq.getMethod());
Enumeration pnames = hreq.getParameterNames();
while (pnames.hasMoreElements()) {
String pname = pnames.nextElement();
String pvalues[] = hreq.getParameterValues(pname);
StringBuilder result = new StringBuilder(pname);
result.append('=');
for (int i = 0; i < pvalues.length; i++) {
if (i > 0)
result.append(", ");
result.append(pvalues[i]);
}
log(" parameter=" + result.toString());
}
log(" pathInfo=" + hreq.getPathInfo());
log(" protocol=" + hreq.getProtocol());
log(" queryString=" + hreq.getQueryString());
log(" remoteAddr=" + hreq.getRemoteAddr());
log(" remoteHost=" + hreq.getRemoteHost());
log(" remoteUser=" + hreq.getRemoteUser());
log("requestedSessionId=" + hreq.getRequestedSessionId());
log(" scheme=" + hreq.getScheme());
log(" serverName=" + hreq.getServerName());
log(" serverPort=" + hreq.getServerPort());
log(" servletPath=" + hreq.getServletPath());
log(" isSecure=" + hreq.isSecure());
log("---------------------------------------------------------------");
// Perform the request
return INVOKE_NEXT;
}
/**
* Log the interesting response parameters.
*/
public void postInvoke(Request request, Response response)
throws IOException, ServletException {
HttpRequest hrequest = (HttpRequest) request;
HttpResponse hresponse = (HttpResponse) response;
HttpServletRequest hreq =
(HttpServletRequest) hrequest.getRequest();
HttpServletResponse hres =
(HttpServletResponse) hresponse.getResponse();
// Log post-service information
log("---------------------------------------------------------------");
log(" authType=" + hreq.getAuthType());
log(" contentLength=" + hresponse.getContentLength());
log(" contentType=" + hresponse.getContentType());
Cookie[] rcookies = hreq.getCookies();
for (int i = 0; i < rcookies.length; i++) {
log(" cookie=" + rcookies[i].getName() + "=" +
rcookies[i].getValue() + "; domain=" +
rcookies[i].getDomain() + "; path=" + rcookies[i].getPath());
}
for (String rhname : hres.getHeaderNames()) {
for (String rhvalue : hres.getHeaders(rhname)) {
log(" header=" + rhname + "=" + rhvalue);
}
}
log(" message=" + hresponse.getMessage());
log(" remoteUser=" + hreq.getRemoteUser());
log(" status=" + hres.getStatus());
log("===============================================================");
}
/**
* Return a String rendering of this object.
*/
public String toString() {
StringBuilder sb = new StringBuilder("RequestDumperValve[");
if (container != null)
sb.append(container.getName());
sb.append("]");
return (sb.toString());
}
// ------------------------------------------------------ Protected Methods
/**
* Log a message on the Logger associated with our Container (if any).
*
* @param message Message to be logged
*/
protected void log(String message) {
Logger logger = container.getLogger();
if (logger != null) {
logger.log(this.toString() + ": " + message);
} else {
log.log(Level.INFO, this.toString() + ": " + message);
}
}
/**
* Log a message on the Logger associated with our Container (if any).
*
* @param message Message to be logged
* @param t Associated exception
*/
protected void log(String message, Throwable t) {
Logger logger = container.getLogger();
if (logger != null) {
logger.log(this.toString() + ": " + message, t,
Logger.WARNING);
} else {
log.log(Level.WARNING, this.toString() + ": " + message, t);
}
}
}