1 /**
2 * Logback: the reliable, generic, fast and flexible logging framework.
3 * Copyright (C) 1999-2011, QOS.ch. All rights reserved.
4 *
5 * This program and the accompanying materials are dual-licensed under
6 * either the terms of the Eclipse Public License v1.0 as published by
7 * the Eclipse Foundation
8 *
9 * or (per the licensee's choosing)
10 *
11 * under the terms of the GNU Lesser General Public License version 2.1
12 * as published by the Free Software Foundation.
13 */
14 package ch.qos.logback.access.pattern;
15
16 import java.util.Enumeration;
17
18 import ch.qos.logback.access.spi.IAccessEvent;
19 import ch.qos.logback.core.CoreConstants;
20
21 /**
22 * This class is tied to the <code>fullRequest</code> conversion word.
23 * <p>
24 * It has been removed from the {@link ch.qos.logback.access.PatternLayout} since
25 * it needs further testing before wide use.
26 * <p>
27 * @author Ceki Gülcü
28 * @author Sébastien Pennec
29 */
30 public class FullRequestConverter extends AccessConverter {
31
32 @Override
33 public String convert(IAccessEvent ae) {
34 StringBuffer buf = new StringBuffer();
35 buf.append(ae.getRequestURL());
36 buf.append(CoreConstants.LINE_SEPARATOR);
37
38 Enumeration headerNames = ae.getRequestHeaderNames();
39 while(headerNames.hasMoreElements()) {
40 String name = (String) headerNames.nextElement();
41 buf.append(name);
42 buf.append(": ");
43 buf.append(ae.getRequestHeader(name));
44 buf.append(CoreConstants.LINE_SEPARATOR);
45 }
46 buf.append(CoreConstants.LINE_SEPARATOR);
47 buf.append(ae.getRequestContent());
48 return buf.toString();
49 }
50
51 }