blob: 69a77ce147c67738e102bced15ad61b5efd3678b [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.geronimo.gshell.io;
import jline.ConsoleReader;
import java.io.IOException;
import java.io.PrintWriter;
/**
* Helper to prompt a user for information.
*
* @version $Rev$ $Date$
*/
public class PromptReader
{
private char mask = '*';
private final ConsoleReader reader;
public PromptReader(final IO io) throws IOException {
assert io != null;
this.reader = new ConsoleReader(io.inputStream, new PrintWriter(io.outputStream, true), /*bindings*/ null, io.getTerminal());
}
public char getMask() {
return mask;
}
public void setMask(final char mask) {
this.mask = mask;
}
public String readLine(final String prompt, final Validator validator) throws IOException {
assert prompt != null;
// validator may be null
String value;
while (true) {
value = reader.readLine(prompt);
if (validator == null) {
break;
}
else if (validator.isValid(value)) {
break;
}
}
return value;
}
public String readLine(final String prompt) throws IOException {
return readLine(prompt, null);
}
public String readLine(final String prompt, final char mask, final Validator validator) throws IOException {
assert prompt != null;
// validator may be null
String value;
while (true) {
value = reader.readLine(prompt, mask);
if (validator == null) {
break;
}
else if (validator.isValid(value)) {
break;
}
}
return value;
}
public String readLine(final String prompt, final char mask) throws IOException {
return readLine(prompt, mask, null);
}
public String readPassword(final String prompt, final Validator validator) throws IOException {
assert prompt != null;
// validator may be null
String value;
while (true) {
value = reader.readLine(prompt, mask);
if (validator == null) {
break;
}
else if (validator.isValid(value)) {
break;
}
}
return value;
}
public String readPassword(final String prompt) throws IOException {
return readPassword(prompt, null);
}
//
// Validator
//
/**
* Allows caller to customize the validation behavior when prompting.
*/
public static interface Validator
{
/**
* Determin if the given value is valid. If the value is not valid then
* we will prompt the user again.
*/
boolean isValid(String value);
}
}