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

org.crsh.shell.impl.command.CRaSH Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show 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.shell.impl.command;

import org.crsh.cli.descriptor.Format;
import org.crsh.command.BaseCommand;
import org.crsh.lang.java.ShellCommandImpl;
import org.crsh.shell.impl.command.spi.CommandCreationException;
import org.crsh.shell.impl.command.spi.ShellCommand;
import org.crsh.plugin.PluginContext;
import org.crsh.plugin.ResourceKind;
import org.crsh.shell.impl.command.spi.CommandManager;
import org.crsh.shell.impl.command.spi.CommandResolution;
import org.crsh.shell.impl.command.system.help;
import org.crsh.shell.impl.command.system.repl;
import org.crsh.util.TimestampedObject;
import org.crsh.vfs.Resource;

import java.security.Principal;
import java.util.HashMap;
import java.util.LinkedHashSet;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

public class CRaSH {

  /** . */
  private static final HashMap> systemCommands = new HashMap>();

  static {
    systemCommands.put("help", help.class);
    systemCommands.put("repl", repl.class);
  }

  /** . */
  final PluginContext context;

  /** . */
  final HashMap activeManagers;

  /** . */
  private final Map> commandCache = new ConcurrentHashMap>();

  /**
   * Create a new CRaSH.
   *
   * @param context the plugin context
   * @throws NullPointerException if the context argument is null
   */
  public CRaSH(PluginContext context) throws NullPointerException {

    //
    HashMap activeManagers = new HashMap();
    for (CommandManager manager : context.getPlugins(CommandManager.class)) {
      if (manager.isActive()) {
        for (String ext : manager.getExtensions()) {
          activeManagers.put(ext, manager);
        }
      }
    }


    this.context = context;
    this.activeManagers = activeManagers;
  }

  public CRaSHSession createSession(Principal user) {
    return new CRaSHSession(this, user);
  }

  /**
   * Returns the plugin context.
   *
   * @return the plugin context
   */
  public PluginContext getContext() {
    return context;
  }

  /**
   * Attempt to obtain a command description. Null is returned when such command does not exist.
   *
   * @param name the command name
   * @return a command description
   * @throws org.crsh.shell.impl.command.spi.CommandCreationException if an error occured preventing the command creation
   * @throws NullPointerException if the name argument is null
   */
  public String getCommandDescription(String name) throws CommandCreationException, NullPointerException {
    CommandResolution resolution = resolveCommand(name);
    return resolution != null ? resolution.getDescription() : null;
  }

  /**
   * Attempt to obtain a command instance. Null is returned when such command does not exist.
   *
   * @param name the command name
   * @return a command instance
   * @throws org.crsh.shell.impl.command.spi.CommandCreationException if an error occured preventing the command creation
   * @throws NullPointerException if the name argument is null
   */
  public ShellCommand getCommand(String name) throws CommandCreationException, NullPointerException {
    CommandResolution resolution = resolveCommand(name);
    return resolution != null ? resolution.getCommand() : null;
  }

  /**
   * Attempt to obtain a command instance. Null is returned when such command does not exist.
   *
   * @param name the command name
   * @return a command instance
   * @throws org.crsh.shell.impl.command.spi.CommandCreationException if an error occured preventing the command creation
   * @throws NullPointerException if the name argument is null
   */
  public CommandResolution resolveCommand(final String name) throws CommandCreationException, NullPointerException {
    if (name == null) {
      throw new NullPointerException("No null name accepted");
    }
    final Class systemCommand = systemCommands.get(name);
    if (systemCommand != null) {
      return createCommand(systemCommand);
    } else {
      for (CommandManager manager : activeManagers.values()) {
        if (manager.isActive()) {
          for (String ext : manager.getExtensions()) {
            Iterable resources = context.loadResources(name + "." + ext, ResourceKind.COMMAND);
            for (Resource resource : resources) {
              CommandResolution resolution = resolveCommand(manager, name, resource);
              if (resolution != null) {
                return resolution;
              }
            }
          }
        }
      }
      return null;
    }
  }

  public Iterable getCommandNames() {
    LinkedHashSet names = new LinkedHashSet(systemCommands.keySet());
    for (String resourceName : context.listResources(ResourceKind.COMMAND)) {
      int index = resourceName.indexOf('.');
      String name = resourceName.substring(0, index);
      String ext = resourceName.substring(index + 1);
      if (activeManagers.containsKey(ext)) {
        names.add(name);
      }
    }
    return names;
  }

  private CommandResolution resolveCommand(CommandManager manager, String name, Resource script) throws CommandCreationException {
    TimestampedObject ref = commandCache.get(name);
    if (ref != null) {
      if (script.getTimestamp() != ref.getTimestamp()) {
        ref = null;
      }
    }
    CommandResolution command;
    if (ref == null) {
      command = manager.resolveCommand(name, script.getContent());
      if (command != null) {
        commandCache.put(name, new TimestampedObject(script.getTimestamp(), command));
      }
    } else {
      command = ref.getObject();
    }
    return command;
  }

  private  CommandResolution createCommand(final Class commandClass) {
    return new CommandResolution() {
      final ShellCommandImpl shellCommand = new ShellCommandImpl(commandClass);
      @Override
      public String getDescription() {
        return shellCommand.describe(commandClass.getSimpleName(), Format.DESCRIBE);
      }
      @Override
      public ShellCommand getCommand() throws CommandCreationException {
        return shellCommand;
      }
    };
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy