Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing behavior of logback-access in the modern era #532

Merged
merged 2 commits into from
Aug 19, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
/**
* Logback: the reliable, generic, fast and flexible logging framework.
* Copyright (C) 1999-2015, QOS.ch. All rights reserved.
*
* This program and the accompanying materials are dual-licensed under
* either the terms of the Eclipse Public License v1.0 as published by
* the Eclipse Foundation
*
* or (per the licensee's choosing)
*
* under the terms of the GNU Lesser General Public License version 2.1
* as published by the Free Software Foundation.
*/
package ch.qos.logback.access.jetty;

import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;

import ch.qos.logback.access.spi.ServerAdapter;
import org.eclipse.jetty.http.HttpField;
import org.eclipse.jetty.server.Request;
import org.eclipse.jetty.server.Response;

/**
* A Jetty 9.4.x and 10.0.x specific implementation of the {@link ServerAdapter} interface.
*
* @author Sébastien Pennec
* @author Ceki Gulcu
* @author Joakim Erdfelt
*/
public class JettyModernServerAdapter extends JettyServerAdapter
{
public JettyModernServerAdapter(Request jettyRequest, Response jettyResponse) {
super(jettyRequest, jettyResponse);
}

@Override
public long getContentLength() {
return response.getHttpChannel().getBytesWritten();
}

@Override
public int getStatusCode() {
return response.getCommittedMetaData().getStatus();
}

@Override
public long getRequestTimestamp() {
return request.getTimeStamp();
}

@Override
public Map<String, String> buildResponseHeaderMap() {
Map<String, String> responseHeaderMap = new HashMap<String, String>();
Iterator<HttpField> httpFieldIter = response.getHttpFields().iterator();
while (httpFieldIter.hasNext()) {
HttpField httpField = httpFieldIter.next();
String key = httpField.getName();
String value = httpField.getValue();
responseHeaderMap.put(key, value);
}
return responseHeaderMap;
}

}
Loading