public void execute(ConsoleReader consoleReader, ServerConnection connection, CommandArgs commandArgs) throws DeploymentException {
if (!(commandArgs instanceof InstallLibraryCommandArgs)) {
throw new DeploymentSyntaxException("CommandArgs has the type [" + commandArgs.getClass() + "]; expected [" + InstallLibraryCommandArgs.class + "]");
}
InstallLibraryCommandArgs installLibraryCommandArgs = (InstallLibraryCommandArgs)commandArgs;
if (installLibraryCommandArgs.getArgs().length == 0) {
throw new DeploymentException("Must specify a LibraryFile");
}
File libFile = new File(installLibraryCommandArgs.getArgs()[0]);
if(!libFile.exists() || !libFile.isFile() || !libFile.canRead()) {
throw new DeploymentException("File does not exist or not a normal file or not readable. "+libFile);
}
DeploymentManager dmgr = connection.getDeploymentManager();
if(dmgr instanceof GeronimoDeploymentManager) {
GeronimoDeploymentManager mgr = (GeronimoDeploymentManager) dmgr;
String groupId = installLibraryCommandArgs.getGroupId();
try {
Artifact artifact = mgr.installLibrary(libFile, groupId);
if(artifact != null) {
consoleReader.printString(DeployUtils.reformat("Installed "+artifact, 4, 72));
} else {
throw new DeploymentException("Unable to install library "+installLibraryCommandArgs.getArgs()[0]);
}
} catch (Exception e) {
throw new DeploymentException("Unable to install library "+installLibraryCommandArgs.getArgs()[0], e);
}
} else {
throw new DeploymentException("Cannot install library using " + dmgr.getClass().getName() + " deployment manager");
}
}