CharacterType.FAINT));
chars.add(new TerminalCharacter('$', new TerminalColor(Color.GREEN, Color.DEFAULT),
CharacterType.UNDERLINE));
chars.add(new TerminalCharacter(' ', new TerminalColor(Color.DEFAULT, Color.DEFAULT)));
final Prompt prompt = new Prompt(chars);
//String prompt = ANSI.redText()+"[test@foo]"+ANSI.reset()+"$ ";
//a simple interruptHook
builder.interruptHook(new InterruptHook() {
@Override
public void handleInterrupt(Console console, Action action) {
if(action == Action.INTERRUPT) {
console.getShell().out().println("^C");
console.clearBufferAndDisplayPrompt();
}
else if(action == Action.IGNOREEOF) {
console.getShell().out().println("Use \"exit\" to leave the shell.");
console.clearBufferAndDisplayPrompt();
}
else {
console.getShell().out().println();
console.stop();
}
}
});
final Console exampleConsole = new Console(builder.create());
Completion completer = new Completion() {
@Override
public void complete(CompleteOperation co) {
// very simple completor
List<String> commands = new ArrayList<String>();
if(co.getBuffer().equals("fo") || co.getBuffer().equals("foo")) {
commands.add("foo");
commands.add("foobaa");
commands.add("foobar");
commands.add("foobaxxxxxx");
commands.add("foobbx");
commands.add("foobcx");
commands.add("foobdx");
}
if(co.getBuffer().equals("p")) {
commands.add("profile=foo");
co.setOffset(0);
}
/*
if(co.getBuffer().equals("p")) {
commands.add("profile=bar");
co.setOffset(0);
}
*/
if(co.getBuffer().equals("profile="))
commands.add("profile=foo");
if(co.getBuffer().equals("profile="))
commands.add("profile=bar");
if(co.getBuffer().equals("--")) {
commands.add("--help-");
}
if("--help-me".startsWith(co.getBuffer())) {
commands.add("--help-me");
}
if(co.getBuffer().equals("fooba")) {
commands.add("foobaa");
commands.add("foobar");
commands.add("foobaxxxxxx");
}
if(co.getBuffer().equals("foobar")) {
commands.add("foobar");
}
if(co.getBuffer().equals("bar")) {
commands.add("bar/");
}
if(co.getBuffer().equals("h")) {
commands.add("help.history");
commands.add("help");
co.setOffset(0);
}
if(co.getBuffer().equals("help")) {
commands.add("help.history");
commands.add("help");
}
if(co.getBuffer().equals("help.")) {
commands.add("help.history");
}
if(co.getBuffer().equals("deploy")) {
commands.add("deploy /home/blabla/foo/bar/alkdfe/en/to/tre");
}
if(co.getBuffer().equals("testing")) {
commands.add("testing YAY");
}
if(co.getBuffer().equals("val") ||
co.getBuffer().equals("value ")) {
commands.add("value 1");
commands.add("value 2");
commands.add("value 10");
commands.add("value 20");
}
if(co.getBuffer().equals("valu"))
commands.add("value 10");
co.setCompletionCandidates(commands);
}
};
exampleConsole.addCompletion(completer);
final ConsoleCallback consoleCallback = new AeshConsoleCallback() {
@Override
public int execute(ConsoleOperation output) throws InterruptedException {
try {
//To change body of implemented methods use File | Settings | File Templates.
exampleConsole.getShell().out().println("======>\"" + output.getBuffer());
if(masking) {
exampleConsole.getShell().out().print("got password: " + output.getBuffer() + ", stopping masking");
masking = false;
exampleConsole.setPrompt(prompt);
}
else if (output.getBuffer().equalsIgnoreCase("quit") || output.getBuffer().equalsIgnoreCase("exit") ||
output.getBuffer().equalsIgnoreCase("reset")) {
exampleConsole.stop();
}
else if(output.getBuffer().equalsIgnoreCase("password")) {
masking = true;
exampleConsole.setPrompt(new Prompt("password: ", (char) 0));
}
else if(output.getBuffer().startsWith("blah")) {
exampleConsole.getShell().err().println("blah. command not found.");
exampleConsole.getShell().out().print("BAH" + Config.getLineSeparator());
}
else if(output.getBuffer().equals("clear"))
exampleConsole.clear();
else if(output.getBuffer().startsWith("man")) {
//exampleConsole.attachProcess(test);
//man = new ExampleConsoleCommand(exampleConsole, output);
exampleConsole.getShell().out().println("trying to wait for input");
CommandOperation co = null;
try {
co = getInput();
}
catch (InterruptedException e) {
e.printStackTrace();
return -1;
}
exampleConsole.getShell().out().println("got: " + co.toString());
//exampleConsole.attachProcess(test);
}
else if(output.getBuffer().startsWith("login")) {
exampleConsole.setConsoleCallback(passwordCallback);
exampleConsole.setPrompt(new Prompt("Username: "));
}
return 0;
}
catch (IOException ioe) {
exampleConsole.getShell().out().println("Exception: "+ioe.getMessage());
return -1;
}
}
};
exampleConsole.setConsoleCallback(consoleCallback);
exampleConsole.start();
exampleConsole.setPrompt(prompt);
passwordCallback = new AeshConsoleCallback() {
private boolean hasUsername = false;
@Override
public int execute(ConsoleOperation output) throws InterruptedException {
if(hasUsername) {
password = output.getBuffer();
hasPassword = true;
exampleConsole.getShell().out().print("Username: " + username + ", password: " + password + Config.getLineSeparator());
exampleConsole.setPrompt(prompt);
exampleConsole.setConsoleCallback(consoleCallback);
}
else {
username = output.getBuffer();
exampleConsole.setPrompt( new Prompt("Password: ", (char) 0));
hasUsername = true;
}
return 0;
}
};
//show how we can change the prompt async
try {
Thread.sleep(4000);
exampleConsole.setPrompt(new Prompt(
new TerminalString("[FOO]» ", new TerminalColor( Color.RED, Color.DEFAULT), new TerminalTextStyle(CharacterType.BOLD))));
} catch (InterruptedException e) {
e.printStackTrace();
}