org.crsh.lang.impl.java.JavaCompiler 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.lang.impl.java;
import org.crsh.cli.descriptor.Format;
import org.crsh.cli.impl.descriptor.IntrospectionException;
import org.crsh.shell.ErrorKind;
import org.crsh.shell.impl.command.spi.CommandException;
import org.crsh.shell.impl.command.ShellSession;
import org.crsh.shell.impl.command.spi.Command;
import org.crsh.lang.spi.CommandResolution;
import java.io.IOException;
import java.util.Collections;
import java.util.List;
import java.util.Set;
/** @author Julien Viet */
public class JavaCompiler implements org.crsh.lang.spi.Compiler {
/** . */
private static final Set EXT = Collections.singleton("java");
/** . */
private final org.crsh.lang.impl.java.Compiler compiler;
/** . */
private final ClassLoader loader;
JavaCompiler(ClassLoader loader) {
this.compiler = new org.crsh.lang.impl.java.Compiler(loader);
this.loader = loader;
}
public Set getExtensions() {
return EXT;
}
public CommandResolution compileCommand(String name, byte[] source) throws CommandException, NullPointerException {
String script = new String(source);
List classFiles;
try {
classFiles = compiler.compile(name, script);
}
catch (IOException e) {
throw new CommandException(ErrorKind.INTERNAL, "Could not access command", e);
}
catch (CompilationFailureException e) {
throw new CommandException(ErrorKind.INTERNAL, "Could not compile command", e);
}
for (JavaClassFileObject classFile : classFiles) {
String className = classFile.getClassName();
String simpleName = className.substring(className.lastIndexOf('.') + 1);
if (simpleName.equals(name)) {
LoadingClassLoader loader = new LoadingClassLoader(this.loader, classFiles);
try {
Class> clazz = loader.loadClass(classFile.getClassName());
final ClassShellCommand command;
try {
command = new ClassShellCommand(clazz);
}
catch (IntrospectionException e) {
throw new CommandException(ErrorKind.INTERNAL, "Invalid cli annotations", e);
}
final String description = command.describe(name, Format.DESCRIBE);
return new CommandResolution() {
@Override
public String getDescription() {
return description;
}
@Override
public Command
© 2015 - 2024 Weber Informatics LLC | Privacy Policy