1 /**
2 * Logback: the reliable, generic, fast and flexible logging framework.
3 * Copyright (C) 1999-2015, 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.common.pattern;
15
16 import java.util.Enumeration;
17
18 import ch.qos.logback.access.common.PatternLayout;
19 import ch.qos.logback.access.common.spi.IAccessEvent;
20 import ch.qos.logback.core.CoreConstants;
21
22 /**
23 * This class is tied to the <code>fullRequest</code> conversion word.
24 * <p>
25 * It has been removed from the {@link PatternLayout}
26 * since it needs further testing before wide use.
27 * <p>
28 *
29 * @author Ceki Gülcü
30 * @author Sébastien Pennec
31 */
32 public class FullRequestConverter extends AccessConverter {
33
34 @Override
35 public String convert(IAccessEvent ae) {
36 StringBuilder buf = new StringBuilder();
37 buf.append(ae.getRequestURL());
38 buf.append(CoreConstants.LINE_SEPARATOR);
39
40 Enumeration<String> headerNames = ae.getRequestHeaderNames();
41 while (headerNames.hasMoreElements()) {
42 String name = headerNames.nextElement();
43 buf.append(name);
44 buf.append(": ");
45 buf.append(ae.getRequestHeader(name));
46 buf.append(CoreConstants.LINE_SEPARATOR);
47 }
48 buf.append(CoreConstants.LINE_SEPARATOR);
49 buf.append(ae.getRequestContent());
50 return buf.toString();
51 }
52
53 }