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

net.codestory.http.injection.Singletons Maven / Gradle / Ivy

Go to download

Fluent-http is the simplest fastest full fledged web server we could come up with

There is a newer version: 2.105
Show newest version
/**
 * Copyright (C) 2013-2015 [email protected]
 *
 * 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 net.codestory.http.injection;

import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.util.HashMap;
import java.util.Map;

public class Singletons implements IocAdapter {
  private static final int MAX_DEPTH = 100;

  private final Map, Object> beansPerType;

  public Singletons(Object... beansToRegister) {
    this.beansPerType = new HashMap<>();

    register(Singletons.class, this);
    for (Object beanToRegister : beansToRegister) {
      Class type = beanToRegister.getClass();

      // Hack to support Mockito Spies
      if (type.getName().contains("EnhancerByMockito")) {
        type = type.getSuperclass();
      }

      register(type, beanToRegister);
    }
  }

  public  Singletons register(Class type, T singleton) {
    beansPerType.put(type, singleton);
    return this;
  }

  @SuppressWarnings("unchecked")
  @Override
  public synchronized  T get(Class type) {
    // Fast path
    Object singleton = beansPerType.get(type);
    if (singleton != null) {
      return (T) singleton;
    }

    // Slow path
    return doGget(type, 0);
  }

  @SuppressWarnings("unchecked")
  private  T doGget(Class type, int depth) {
    Object singleton = beansPerType.get(type);
    if (singleton != null) {
      return (T) singleton;
    }

    if (depth > MAX_DEPTH) {
      throw new IllegalStateException("Cycle in dependencies for " + type);
    }

    try {
      T instance = create(type, depth);
      beansPerType.put(type, instance);
      return instance;
    } catch (InvocationTargetException e) {
      throw new IllegalStateException("Unable to create instance of " + type + ". The constructor raised an exception", e.getCause());
    } catch (InstantiationException | IllegalAccessException | RuntimeException e) {
      throw new IllegalStateException("Unable to create instance of " + type, e);
    }
  }

  @SuppressWarnings("unchecked")
  private  T create(Class type, int depth) throws InstantiationException, IllegalAccessException, InvocationTargetException {
    Constructor constructor = getConstructor(type);
    Class[] parameterTypes = constructor.getParameterTypes();
    Object[] parameters = new Object[parameterTypes.length];
    for (int i = 0; i < parameterTypes.length; i++) {
      parameters[i] = doGget(parameterTypes[i], depth + 1);
    }

    return constructor.newInstance(parameters);
  }

  @SuppressWarnings("unchecked")
  private static  Constructor getConstructor(Class type) {
    try {
      return type.getDeclaredConstructor();
    } catch (NoSuchMethodException e) {
      Constructor[] constructors = type.getConstructors();
      if (constructors.length != 1) {
        throw new IllegalStateException("Class " + type + " should have a single public constructor");
      }

      return constructors[0];
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy