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

org.crsh.plugin.PluginManager Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2012 eXo Platform SAS.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */

package org.crsh.plugin;

import org.crsh.util.Utils;

import java.util.*;
import java.util.logging.Level;
import java.util.logging.Logger;

class PluginManager {

  /** . */
  private final Logger log = Logger.getLogger(PluginManager.class.getName());

  /** . */
  private final PluginContext context;

  /** . */
  private List> plugins;

  /** . */
  private PluginDiscovery discovery;

  PluginManager(PluginContext context, PluginDiscovery discovery) {
    this.context = context;
    this.plugins = null;
    this.discovery = discovery;
  }

  synchronized Iterable> getPlugins() {
    if (plugins == null) {
      List> plugins = Utils.list(discovery.getPlugins());
      for (CRaSHPlugin plugin : plugins) {
        plugin.context = context;
        plugin.status = CRaSHPlugin.CONSTRUCTED;
      }
      this.plugins = plugins;
    }
    return plugins;
  }

  synchronized  Iterable getPlugins(Class wantedType) {

    //
    Iterable> plugins = getPlugins();

    //
    List tmp = Collections.emptyList();

    //
    for (CRaSHPlugin plugin : plugins) {
      Class pluginType = plugin.getType();
      if (wantedType.isAssignableFrom(pluginType)) {

        switch (plugin.status) {
          default:
          case CRaSHPlugin.FAILED:
          case CRaSHPlugin.INITIALIZED:
            // Do nothing
            break;
          case CRaSHPlugin.CONSTRUCTED:
            int status = CRaSHPlugin.FAILED;
            try {
              plugin.status = CRaSHPlugin.INITIALIZING;
              plugin.init();
              log.log(Level.INFO, "Initialized plugin " + plugin);
              status = CRaSHPlugin.INITIALIZED;
            }
            catch (Exception e) {
              log.log(Level.SEVERE, "Could not initialize plugin " + plugin, e);
            } finally {
              plugin.status = status;
            }
            break;
          case CRaSHPlugin.INITIALIZING:
            throw new RuntimeException("Circular dependency");
        }

        //
        if (plugin.status == CRaSHPlugin.INITIALIZED) {
          if (tmp.isEmpty()) {
            tmp = new ArrayList();
          }
          T t = wantedType.cast(plugin.getImplementation());
          tmp.add(t);
        }
      }
    }

    //
    return tmp;
  }

  void shutdown() {
    if (plugins != null) {
      for (CRaSHPlugin plugin : plugins) {
        plugin.destroy();
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy