SimpleStreamingAsyncClientHttpRequest.java 3.5 KB
Newer Older
A
Arjen Poutsma 已提交
1
/*
2
 * Copyright 2002-2015 the original author or authors.
A
Arjen Poutsma 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 *
 * 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.OutputStream;
import java.net.HttpURLConnection;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.concurrent.Callable;

A
Arjen Poutsma 已提交
26
import org.springframework.core.task.AsyncListenableTaskExecutor;
A
Arjen Poutsma 已提交
27 28 29
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.util.StreamUtils;
A
Arjen Poutsma 已提交
30
import org.springframework.util.concurrent.ListenableFuture;
A
Arjen Poutsma 已提交
31 32 33

/**
 * {@link org.springframework.http.client.ClientHttpRequest} implementation that uses
J
Juergen Hoeller 已提交
34
 * standard Java facilities to execute streaming requests. Created via the {@link
A
Arjen Poutsma 已提交
35 36 37 38
 * org.springframework.http.client.SimpleClientHttpRequestFactory}.
 *
 * @author Arjen Poutsma
 * @since 3.0
J
Juergen Hoeller 已提交
39
 * @see org.springframework.http.client.SimpleClientHttpRequestFactory#createRequest
A
Arjen Poutsma 已提交
40 41 42 43 44 45 46 47 48 49 50
 */
final class SimpleStreamingAsyncClientHttpRequest extends AbstractAsyncClientHttpRequest {

	private final HttpURLConnection connection;

	private final int chunkSize;

	private OutputStream body;

	private final boolean outputStreaming;

A
Arjen Poutsma 已提交
51
	private final AsyncListenableTaskExecutor taskExecutor;
A
Arjen Poutsma 已提交
52

J
Juergen Hoeller 已提交
53

A
Arjen Poutsma 已提交
54
	SimpleStreamingAsyncClientHttpRequest(HttpURLConnection connection, int chunkSize,
A
Arjen Poutsma 已提交
55
			boolean outputStreaming, AsyncListenableTaskExecutor taskExecutor) {
J
Juergen Hoeller 已提交
56

A
Arjen Poutsma 已提交
57 58 59 60 61 62
		this.connection = connection;
		this.chunkSize = chunkSize;
		this.outputStreaming = outputStreaming;
		this.taskExecutor = taskExecutor;
	}

J
Juergen Hoeller 已提交
63

A
Arjen Poutsma 已提交
64 65
	@Override
	public HttpMethod getMethod() {
66
		return HttpMethod.resolve(this.connection.getRequestMethod());
A
Arjen Poutsma 已提交
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
	}

	@Override
	public URI getURI() {
		try {
			return this.connection.getURL().toURI();
		}
		catch (URISyntaxException ex) {
			throw new IllegalStateException(
					"Could not get HttpURLConnection URI: " + ex.getMessage(), ex);
		}
	}

	@Override
	protected OutputStream getBodyInternal(HttpHeaders headers) throws IOException {
		if (this.body == null) {
			if (this.outputStreaming) {
				int contentLength = (int) headers.getContentLength();
				if (contentLength >= 0) {
					this.connection.setFixedLengthStreamingMode(contentLength);
				}
				else {
					this.connection.setChunkedStreamingMode(this.chunkSize);
				}
			}
92
			SimpleBufferingClientHttpRequest.addHeaders(this.connection, headers);
A
Arjen Poutsma 已提交
93 94 95 96 97 98 99
			this.connection.connect();
			this.body = this.connection.getOutputStream();
		}
		return StreamUtils.nonClosing(this.body);
	}

	@Override
J
Juergen Hoeller 已提交
100
	protected ListenableFuture<ClientHttpResponse> executeInternal(final HttpHeaders headers) throws IOException {
J
Juergen Hoeller 已提交
101
		return this.taskExecutor.submitListenable(new Callable<ClientHttpResponse>() {
A
Arjen Poutsma 已提交
102 103 104 105 106 107 108
			@Override
			public ClientHttpResponse call() throws Exception {
				try {
					if (body != null) {
						body.close();
					}
					else {
109
						SimpleBufferingClientHttpRequest.addHeaders(connection, headers);
A
Arjen Poutsma 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122
						connection.connect();
					}
				}
				catch (IOException ex) {
					// ignore
				}
				return new SimpleClientHttpResponse(connection);
			}
		});

	}

}