Package org.springframework.http.client

Source Code of org.springframework.http.client.HttpComponentsAsyncClientHttpRequestFactory

/*
* Copyright 2002-2014 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.net.URI;

import org.apache.http.client.HttpClient;
import org.apache.http.client.config.RequestConfig;
import org.apache.http.client.methods.Configurable;
import org.apache.http.client.methods.HttpUriRequest;
import org.apache.http.client.protocol.HttpClientContext;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.nio.client.CloseableHttpAsyncClient;
import org.apache.http.impl.nio.client.HttpAsyncClients;
import org.apache.http.nio.client.HttpAsyncClient;
import org.apache.http.protocol.HttpContext;

import org.springframework.beans.factory.InitializingBean;
import org.springframework.http.HttpMethod;
import org.springframework.util.Assert;

/**
* Asynchronous extension of the {@link HttpComponentsClientHttpRequestFactory}. Uses
* <a href="http://hc.apache.org/httpcomponents-asyncclient-dev/">Apache HttpComponents
* HttpAsyncClient 4.0</a> to create requests.
*
* @author Arjen Poutsma
* @since 4.0
* @see HttpAsyncClient
*/
public class HttpComponentsAsyncClientHttpRequestFactory
    extends HttpComponentsClientHttpRequestFactory
    implements AsyncClientHttpRequestFactory, InitializingBean {

  private CloseableHttpAsyncClient httpAsyncClient;


  /**
   * Create a new instance of the {@code HttpComponentsAsyncClientHttpRequestFactory}
   * with a default {@link HttpAsyncClient} and {@link HttpClient}.
   */
  public HttpComponentsAsyncClientHttpRequestFactory() {
    this(HttpAsyncClients.createSystem());
  }

  /**
   * Create a new instance of the {@code HttpComponentsAsyncClientHttpRequestFactory}
   * with the given {@link HttpAsyncClient} instance and a default {@link HttpClient}.
   * @param httpAsyncClient the HttpAsyncClient instance to use for this request factory
   */
  public HttpComponentsAsyncClientHttpRequestFactory(CloseableHttpAsyncClient httpAsyncClient) {
    super();
    Assert.notNull(httpAsyncClient, "'httpAsyncClient' must not be null");
    this.httpAsyncClient = httpAsyncClient;
  }

  /**
   * Create a new instance of the {@code HttpComponentsAsyncClientHttpRequestFactory}
   * with the given {@link HttpClient} and {@link HttpAsyncClient} instances.
   * @param httpClient the HttpClient instance to use for this request factory
   * @param httpAsyncClient the HttpAsyncClient instance to use for this request factory
   */
  public HttpComponentsAsyncClientHttpRequestFactory(
      CloseableHttpClient httpClient, CloseableHttpAsyncClient httpAsyncClient) {

    super(httpClient);
    Assert.notNull(httpAsyncClient, "'httpAsyncClient' must not be null");
    this.httpAsyncClient = httpAsyncClient;
  }


  /**
   * Set the {@code HttpClient} used for
   * {@linkplain #createAsyncRequest(java.net.URI, org.springframework.http.HttpMethod) asynchronous execution}.
   */
  public void setHttpAsyncClient(CloseableHttpAsyncClient httpAsyncClient) {
    this.httpAsyncClient = httpAsyncClient;
  }

  /**
   * Return the {@code HttpClient} used for
   * {@linkplain #createAsyncRequest(URI, HttpMethod) asynchronous execution}.
   */
  public CloseableHttpAsyncClient getHttpAsyncClient() {
    return httpAsyncClient;
  }

  @Override
  public void afterPropertiesSet() {
    startAsyncClient();
  }

  private void startAsyncClient() {
        CloseableHttpAsyncClient asyncClient = getHttpAsyncClient();
    if (!asyncClient.isRunning()) {
      asyncClient.start();
    }
  }

  @Override
  public AsyncClientHttpRequest createAsyncRequest(URI uri, HttpMethod httpMethod) throws IOException {
    HttpAsyncClient asyncClient = getHttpAsyncClient();
    startAsyncClient();
    HttpUriRequest httpRequest = createHttpUriRequest(httpMethod, uri);
    postProcessHttpRequest(httpRequest);
        HttpContext context = createHttpContext(httpMethod, uri);
        if (context == null) {
            context = HttpClientContext.create();
        }
        // Request configuration not set in the context
        if (context.getAttribute(HttpClientContext.REQUEST_CONFIG) == null) {
            // Use request configuration given by the user, when available
            RequestConfig config = null;
            if (httpRequest instanceof Configurable) {
                config = ((Configurable) httpRequest).getConfig();
            }
            if (config == null) {
                config = RequestConfig.DEFAULT;
            }
            context.setAttribute(HttpClientContext.REQUEST_CONFIG, config);
        }
    return new HttpComponentsAsyncClientHttpRequest(asyncClient, httpRequest, context);
  }

  @Override
  public void destroy() throws Exception {
    try {
      super.destroy();
    }
    finally {
      getHttpAsyncClient().close();
    }
  }

}
TOP

Related Classes of org.springframework.http.client.HttpComponentsAsyncClientHttpRequestFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.