org.jpos.q2.CLICommandInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpos Show documentation
Show all versions of jpos Show documentation
jPOS is an ISO-8583 based financial transaction
library/framework that can be customized and
extended in order to implement financial interchanges.
/*
* jPOS Project [http://jpos.org]
* Copyright (C) 2000-2014 Alejandro P. Revilla
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package org.jpos.q2;
import java.io.IOException;
import java.io.PrintStream;
import java.util.ArrayList;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import jline.ConsoleReader;
import org.jpos.iso.ISOUtil;
import org.jpos.q2.CLI.Command;
public class CLICommandInterface
{
CLIContext ctx;
List prefixes = new ArrayList();
public List getPrefixes()
{
return prefixes;
}
public CLICommandInterface(CLIContext ctx)
{
this.ctx = ctx;
}
public void addPrefix(String prefix)
{
prefixes.add(prefix);
}
public void execCommand(String line) throws IOException
{
String args[] = parseCommand(line);
if (args.length == 0)
{
return;
}
String verbatimCmd=args[0];
String command = args[0].toUpperCase();
String className = command;
for (String prefix : prefixes)
{
if (!command.contains("."))
{
className = prefix + command;
}
try
{
Object cmd = getCommand(className);
if (cmd != null)
{
try
{
args[0] = ISOUtil.unPadLeft(line, ' '); // full line
if (cmd instanceof Command)
{
((Command) cmd).exec(new LegacyCommandAdapter(ctx), args);
}
else if (cmd instanceof CLICommand)
{
((CLICommand) cmd).exec(ctx, args);
}
return;
}
catch (Exception ex)
{
ctx.printThrowable(ex);
}
}
}
catch (ClassNotFoundException ex)
{
}
catch (Exception ex)
{
ctx.printThrowable(ex);
break;
}
}
ctx.println("Invalid command '" + verbatimCmd + "'");
}
private Object getCommand(String className) throws ClassNotFoundException, InstantiationException, IllegalAccessException
{
final ClassLoader cl = Thread.currentThread().getContextClassLoader();
return cl.loadClass(className).newInstance();
}
String[] parseCommand(String line) throws IOException
{
if (line == null)
{
return new String[0];
}
List matchList = new ArrayList();
Pattern regex = Pattern.compile("[^\\s\"']+|\"([^\"]*)\"|'([^']*)'");
Matcher regexMatcher = regex.matcher(line);
while (regexMatcher.find()) {
if (regexMatcher.group(1) != null) {
// Add double-quoted string without the quotes
matchList.add(regexMatcher.group(1));
} else if (regexMatcher.group(2) != null) {
// Add single-quoted string without the quotes
matchList.add(regexMatcher.group(2));
} else {
// Add unquoted word
matchList.add(regexMatcher.group());
}
}
String[] args = new String[matchList.size()];
matchList.toArray(args);
return args;
}
public static class LegacyCommandAdapter extends CLI
{
CLIContext ctx;
public LegacyCommandAdapter(CLIContext ctx) throws IOException
{
super(null, null, false);
this.ctx = ctx;
}
@Override
public void print(String s)
{
ctx.print(s);
}
@Override
public void println(String s)
{
ctx.println(s);
}
@Override
public boolean confirm(String prompt) throws IOException
{
return ctx.confirm(prompt);
}
@Override
public Q2 getQ2()
{
return ctx.getQ2();
}
@Override
public ConsoleReader getConsoleReader()
{
return ctx.getConsoleReader();
}
@Override
public PrintStream getOutputStream()
{
return ctx.getOutputStream();
}
}
}