org.hyperic.sigar.util.Getline Maven / Gradle / Ivy
/*
* Copyright (c) 2006 Hyperic, Inc.
*
* Licensed 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.hyperic.sigar.util;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.EOFException;
import java.io.File;
/**
* This class provides Emacs style key bindings, history and tab completion
* for command shell applications.
*
* This class is a Java interface to the getline.c package:
* Copyright (C) 1991, 1992 by Chris Thewalt ([email protected])
*/
public class Getline {
private static final boolean isatty = isatty();
private static boolean useNative =
! "false".equals(System.getProperty("sigar.getline.native")) &&
isatty;
private BufferedReader in = null;
private String prompt = "> ";
public Getline() { }
public Getline(String prompt) {
this.prompt = prompt;
}
private native static boolean isatty();
public native static void setCompleter(GetlineCompleter completer);
public native void redraw();
public native void reset();
private native void histadd(String line);
private native void histinit(String file);
private native String getline(String prompt)
throws IOException, EOFException;
public static boolean isTTY() {
return isatty;
}
public String getLine()
throws IOException, EOFException {
return getLine(this.prompt, true);
}
public String getLine(String prompt)
throws IOException, EOFException {
return getLine(prompt, true);
}
public String getLine(String prompt, boolean addToHistory)
throws IOException, EOFException {
if (useNative) {
String line = getline(prompt);
if (addToHistory) {
addToHistory(line);
}
return line;
}
else {
if (this.in == null) {
this.in =
new BufferedReader(new InputStreamReader(System.in));
}
System.out.print(prompt);
return this.in.readLine();
}
}
public void initHistoryFile(File file)
throws IOException {
if (useNative) {
histinit(file.getCanonicalPath());
}
}
public void addToHistory(String line) {
if ((line == null) ||
(line.length() == 0))
{
return;
}
if (useNative) {
histadd(line);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy