Package scala.tools.jline.console

Examples of scala.tools.jline.console.ConsoleReader


    public static void main(String[] args) throws IOException {
        Character mask = null;
        String trigger = null;
        boolean color = false;

        ConsoleReader reader = new ConsoleReader();
       
        reader.setBellEnabled(false);
        reader.setPrompt("prompt> ");

        if ((args == null) || (args.length == 0)) {
            usage();

            return;
        }

        List<Completer> completors = new LinkedList<Completer>();

        if (args.length > 0) {
            if (args[0].equals("none")) {
            }
            else if (args[0].equals("files")) {
                completors.add(new FileNameCompleter());
            }
            else if (args[0].equals("simple")) {
                completors.add(new StringsCompleter("foo", "bar", "baz"));
            }
            else if (args[0].equals("color")) {
                color = true;
                reader.setPrompt("\u001B[1mfoo\u001B[0m@bar\u001B[32m@baz\u001B[0m> ");
            }
            else {
                usage();

                return;
            }
        }

        if (args.length == 3) {
            mask = args[2].charAt(0);
            trigger = args[1];
        }

        for (Completer c : completors) {
            reader.addCompleter(c);
        }

        String line;
        PrintWriter out = new PrintWriter(
                reader.getTerminal().wrapOutIfNeeded(System.out));

        while ((line = reader.readLine()) != null) {
            if (color){
                out.println("\u001B[33m======>\u001B[0m\"" + line + "\"");
            } else {
                out.println("======>\"" + line + "\"");
            }
            out.flush();

            // If we input the special word then we will mask
            // the next line.
            if ((trigger != null) && (line.compareTo(trigger) == 0)) {
                line = reader.readLine("password> ", mask);
            }
            if (line.equalsIgnoreCase("quit") || line.equalsIgnoreCase("exit")) {
                break;
            }
        }
View Full Code Here

TOP

Related Classes of scala.tools.jline.console.ConsoleReader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.