All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.asynchttpclient.extras.registry.AsyncHttpClientFactory Maven / Gradle / Ivy

There is a newer version: 2.12.4
Show newest version
/*
 * Copyright (c) 2015 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.extras.registry;

import org.asynchttpclient.AsyncHttpClient;
import org.asynchttpclient.AsyncHttpClientConfig;
import org.asynchttpclient.DefaultAsyncHttpClient;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.lang.reflect.Constructor;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;

import static org.asynchttpclient.Dsl.asyncHttpClient;

/**
 * The AsyncHttpClientFactory returns back an instance of AsyncHttpClient. The
 * actual instance is determined by the system property
 * 'org.async.http.client.impl'. If the system property doesn't exist then it
 * checks for a property file 'asynchttpclient.properties' and looks for a
 * property 'org.async.http.client.impl' in there. If it finds it then returns
 * an instance of that class. If there is an exception while reading the
 * properties file or system property it throws a RuntimeException
 * AsyncHttpClientImplException. If any of the constructors of the instance
 * throws an exception it thows a AsyncHttpClientImplException. By default if
 * neither the system property or the property file exists then it will return
 * the default instance of {@link DefaultAsyncHttpClient}
 */
public class AsyncHttpClientFactory {

  public static final Logger logger = LoggerFactory.getLogger(AsyncHttpClientFactory.class);
  private static Class asyncHttpClientImplClass = null;
  private static volatile boolean instantiated = false;
  private static Lock lock = new ReentrantLock();

  public static AsyncHttpClient getAsyncHttpClient() {

    try {
      if (attemptInstantiation())
        return asyncHttpClientImplClass.newInstance();
    } catch (InstantiationException e) {
      throw new AsyncHttpClientImplException("Unable to create the class specified by system property : "
              + AsyncImplHelper.ASYNC_HTTP_CLIENT_IMPL_SYSTEM_PROPERTY, e);
    } catch (IllegalAccessException e) {
      throw new AsyncHttpClientImplException("Unable to find the class specified by system property : "
              + AsyncImplHelper.ASYNC_HTTP_CLIENT_IMPL_SYSTEM_PROPERTY, e);
    }
    return asyncHttpClient();
  }

  public static AsyncHttpClient getAsyncHttpClient(AsyncHttpClientConfig config) {
    if (attemptInstantiation()) {
      try {
        Constructor constructor = asyncHttpClientImplClass.getConstructor(AsyncHttpClientConfig.class);
        return constructor.newInstance(config);
      } catch (Exception e) {
        throw new AsyncHttpClientImplException("Unable to find the instantiate the class specified by system property : "
                + AsyncImplHelper.ASYNC_HTTP_CLIENT_IMPL_SYSTEM_PROPERTY + "(AsyncHttpProvider) due to : " + e.getMessage(), e);
      }
    }
    return asyncHttpClient(config);
  }

  private static boolean attemptInstantiation() {
    if (!instantiated) {
      lock.lock();
      try {
        if (!instantiated) {
          asyncHttpClientImplClass = AsyncImplHelper.getAsyncImplClass(AsyncImplHelper.ASYNC_HTTP_CLIENT_IMPL_SYSTEM_PROPERTY);
          instantiated = true;
        }
      } finally {
        lock.unlock();
      }
    }
    return asyncHttpClientImplClass != null;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy