org.asynchttpclient.netty.response.NettyResponseStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of async-http-client-netty3-provider Show documentation
Show all versions of async-http-client-netty3-provider Show documentation
The Async Http Client Netty 3 Provider.
/*
* Copyright (c) 2014 AsyncHttpClient Project. All rights reserved.
*
* This program is licensed to you under the Apache License Version 2.0,
* and you may not use this file except in compliance with the Apache License Version 2.0.
* You may obtain a copy of the Apache License Version 2.0 at
* http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the Apache License Version 2.0 is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
*/
package org.asynchttpclient.netty.response;
import java.net.SocketAddress;
import java.util.List;
import org.asynchttpclient.config.AsyncHttpClientConfig;
import org.asynchttpclient.response.HttpResponseBodyPart;
import org.asynchttpclient.response.HttpResponseHeaders;
import org.asynchttpclient.response.HttpResponseStatus;
import org.asynchttpclient.response.Response;
import org.asynchttpclient.uri.Uri;
import org.jboss.netty.channel.Channel;
import org.jboss.netty.handler.codec.http.HttpResponse;
/**
* A class that represent the HTTP response' status line (code + text)
*/
public class NettyResponseStatus extends HttpResponseStatus {
private final HttpResponse response;
private final SocketAddress remoteAddress;
private final SocketAddress localAddress;
public NettyResponseStatus(Uri uri, AsyncHttpClientConfig config, HttpResponse response, Channel channel) {
super(uri, config);
this.response = response;
if (channel != null) {
remoteAddress = channel.getRemoteAddress();
localAddress = channel.getLocalAddress();
} else {
remoteAddress = null;
localAddress = null;
}
}
/**
* Return the response status code
*
* @return the response status code
*/
public int getStatusCode() {
return response.getStatus().getCode();
}
/**
* Return the response status text
*
* @return the response status text
*/
public String getStatusText() {
return response.getStatus().getReasonPhrase();
}
@Override
public String getProtocolName() {
return response.getProtocolVersion().getProtocolName();
}
@Override
public int getProtocolMajorVersion() {
return response.getProtocolVersion().getMajorVersion();
}
@Override
public int getProtocolMinorVersion() {
return response.getProtocolVersion().getMinorVersion();
}
@Override
public String getProtocolText() {
return response.getProtocolVersion().getText();
}
@Override
public Response prepareResponse(HttpResponseHeaders headers, List bodyParts) {
return new NettyResponse(this, headers, bodyParts);
}
@Override
public SocketAddress getRemoteAddress() {
return remoteAddress;
}
@Override
public SocketAddress getLocalAddress() {
return localAddress;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy