/*
 * Copyright 2002-2017 the original author or authors.
 *
 * 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.springframework.http.client;

import java.io.IOException;
import java.io.InputStream;
import java.util.Map;

import io.netty.buffer.ByteBufInputStream;
import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.http.FullHttpResponse;

import org.springframework.http.HttpHeaders;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;

ClientHttpResponse implementation based on Netty 4.
Author:Arjen Poutsma
Since:4.1.2
Deprecated:as of Spring 5.0, in favor of ReactorClientHttpConnector
/** * {@link ClientHttpResponse} implementation based on Netty 4. * * @author Arjen Poutsma * @since 4.1.2 * @deprecated as of Spring 5.0, in favor of * {@link org.springframework.http.client.reactive.ReactorClientHttpConnector} */
@Deprecated class Netty4ClientHttpResponse extends AbstractClientHttpResponse { private final ChannelHandlerContext context; private final FullHttpResponse nettyResponse; private final ByteBufInputStream body; @Nullable private volatile HttpHeaders headers; public Netty4ClientHttpResponse(ChannelHandlerContext context, FullHttpResponse nettyResponse) { Assert.notNull(context, "ChannelHandlerContext must not be null"); Assert.notNull(nettyResponse, "FullHttpResponse must not be null"); this.context = context; this.nettyResponse = nettyResponse; this.body = new ByteBufInputStream(this.nettyResponse.content()); this.nettyResponse.retain(); } @Override public int getRawStatusCode() throws IOException { return this.nettyResponse.getStatus().code(); } @Override public String getStatusText() throws IOException { return this.nettyResponse.getStatus().reasonPhrase(); } @Override public HttpHeaders getHeaders() { HttpHeaders headers = this.headers; if (headers == null) { headers = new HttpHeaders(); for (Map.Entry<String, String> entry : this.nettyResponse.headers()) { headers.add(entry.getKey(), entry.getValue()); } this.headers = headers; } return headers; } @Override public InputStream getBody() throws IOException { return this.body; } @Override public void close() { this.nettyResponse.release(); this.context.close(); } }