1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.gwe.app.client;
18
19 import java.io.IOException;
20
21 import jline.ConsoleReader;
22
23
24
25
26
27 public class GWEConsoleReader extends ConsoleReader {
28
29 private ProgressTracker tracker;
30
31 public GWEConsoleReader(ProgressTracker tracker) throws IOException {
32 this.tracker = tracker;
33 }
34
35 public String readMultiLines(String prompt, String escapeOK, String escapeCancel) throws IOException {
36 String multiLines = "";
37 boolean lastMultiLine = false;
38 while (!lastMultiLine) {
39 String line = readLine();
40 line = line.trim();
41 if (line.endsWith(escapeCancel)) return "";
42 if (line.endsWith(escapeOK)) {
43 line = line.substring(0, line.length() - escapeOK.length());
44 lastMultiLine = true;
45 }
46 multiLines += " " + line;
47 }
48 return multiLines;
49 }
50
51 public String readPasskey(String prompt, boolean passwordConfirmation) throws IOException {
52 boolean passwordCaptured = false;
53 String valueRead = null;
54 while (!passwordCaptured) {
55 valueRead = readLine(prompt, '*');
56 String confirmation = passwordConfirmation ? readLine("confirm " + prompt, '*') : valueRead;
57 passwordCaptured = confirmation.equals(valueRead);
58 if (!passwordCaptured)
59 tracker.trackProgress("Pass keys do not match!");
60 }
61 return valueRead;
62 }
63
64 public boolean readBoolean(String prompt) {
65 tracker.trackProgress(prompt + " (Y/N): ");
66
67 try {
68 int character = readCharacter(new char[] {'y', 'Y', 'n', 'N'});
69 return (character == 'y' || character == 'Y');
70 } catch (IOException e) {
71 return false;
72 }
73 }
74 }