Package com.erudika.para

Source Code of com.erudika.para.Para$InitializeListener

/*
* Copyright 2013-2014 Erudika. http://erudika.com
*
* 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.
*
* For issues and patches go to: https://github.com/erudika
*/
package com.erudika.para;

import com.erudika.para.cache.Cache;
import com.erudika.para.cache.CacheModule;
import com.erudika.para.email.EmailModule;
import com.erudika.para.i18n.I18nModule;
import com.erudika.para.persistence.DAO;
import com.erudika.para.persistence.PersistenceModule;
import com.erudika.para.queue.QueueModule;
import com.erudika.para.search.Search;
import com.erudika.para.search.SearchModule;
import com.erudika.para.storage.StorageModule;
import com.erudika.para.utils.Config;
import com.erudika.para.aop.AOPModule;
import com.google.inject.Guice;
import com.google.inject.Injector;
import com.google.inject.Module;
import com.google.inject.Stage;
import com.google.inject.util.Modules;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.EventListener;
import java.util.List;
import java.util.Map;
import java.util.ServiceLoader;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* This is the main utility class and entry point. Para modules are initialized and destroyed from here.
*
* @author Alex Bogdanovski [alex@erudika.com]
*/
public final class Para {

  private static final Logger logger = LoggerFactory.getLogger(Para.class);
  private static final List<DestroyListener> destroyListeners = new ArrayList<DestroyListener>();
  private static final List<InitializeListener> initListeners = new ArrayList<InitializeListener>();
  private static Injector injector;

  private Para() { }

  /**
   * Initializes the Para core modules and allows the user to override them. Call this method first.
   *
   * @param modules a list of modules that override the main modules
   */
  public static void initialize(Module... modules) {
    if (injector == null) {
      try {
        logger.info("--- Para.initialize() [{}] ---", Config.ENVIRONMENT);
        Stage stage = Config.IN_PRODUCTION ? Stage.PRODUCTION : Stage.DEVELOPMENT;
        List<Module> coreModules = getCoreModules();
        List<Module> externalModules = getExternalModules(modules);

        if (!externalModules.isEmpty()) {
          injector = Guice.createInjector(stage, Modules.override(coreModules).with(externalModules));
        } else {
          injector = Guice.createInjector(stage, coreModules);
        }

        for (InitializeListener initListener : initListeners) {
          initListener.onInitialize();
        }
      } catch (Exception e) {
        logger.error(null, e);
      }
    }
  }

  /**
   * Calls all registered listeners on exit. Call this method last.
   */
  public static void destroy() {
    try {
      logger.info("--- Para.destroy() ---");
      for (DestroyListener destroyListener : destroyListeners) {
        destroyListener.onDestroy();
      }
    } catch (Exception e) {
      logger.error(null, e);
    }
  }

  /**
   * Inject dependencies into a given object.
   *
   * @param obj the object we inject into
   */
  public static void injectInto(Object obj) {
    if (obj == null) {
      return;
    }
    if (injector == null) {
      handleNotInitializedError();
    }
    injector.injectMembers(obj);
  }

  /**
   * @return an instance of the core persistence class.
   * @see DAO
   */
  public static DAO getDAO() {
    if (injector == null) {
      handleNotInitializedError();
    }
    return injector.getInstance(DAO.class);
  }

  /**
   * @return an instance of the core search class.
   * @see Search
   */
  public static Search getSearch() {
    if (injector == null) {
      handleNotInitializedError();
    }
    return injector.getInstance(Search.class);
  }

  /**
   * @return an instance of the core cache class.
   * @see Cache
   */
  public static Cache getCache() {
    if (injector == null) {
      handleNotInitializedError();
    }
    return injector.getInstance(Cache.class);
  }

  /**
   * @return an instance of the configuration map.
   * @see Config
   */
  public static Map<String, String> getConfig() {
    return Config.getConfigMap();
  }

  /**
   * Registers a new initialization listener.
   *
   * @param il the listener
   */
  public static void addInitListener(InitializeListener il) {
    initListeners.add(il);
  }

  /**
   * Registers a new destruction listener.
   *
   * @param dl the listener
   */
  public static void addDestroyListener(DestroyListener dl) {
    destroyListeners.add(dl);
  }

  /**
   * This listener is exectuted when the Para runtime starts.
   */
  public interface InitializeListener extends EventListener {

    /**
     * Code to execute right after initialization.
     */
    void onInitialize();
  }

  /**
   * This listener is exectuted when the Para runtime stops.
   */
  public interface DestroyListener extends EventListener {

    /**
     * Code to execute on exit.
     */
    void onDestroy();
  }

  private static List<Module> getCoreModules() {
    List<Module> coreModules = new ArrayList<Module>();
    coreModules.add(new AOPModule());
    coreModules.add(new CacheModule());
    coreModules.add(new EmailModule());
    coreModules.add(new I18nModule());
    coreModules.add(new PersistenceModule());
    coreModules.add(new QueueModule());
    coreModules.add(new SearchModule());
    coreModules.add(new StorageModule());
    return coreModules;
  }

  private static List<Module> getExternalModules(Module... modules) {
    ServiceLoader<Module> moduleLoader = ServiceLoader.load(Module.class);
    List<Module> externalModules = new ArrayList<Module>();
    for (Module module : moduleLoader) {
      externalModules.add(module);
    }
    if (modules != null && modules.length > 0) {
      externalModules.addAll(Arrays.asList(modules));
    }
    return externalModules;
  }

  private static void handleNotInitializedError() {
    throw new IllegalStateException("Call Para.initialize() first!");
  }
}
TOP

Related Classes of com.erudika.para.Para$InitializeListener

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.