blob: f01c7241289174d80ffac82ffaa60d91af1827e4 [file] [log] [blame]
/*
* Copyright 2009-2010 by The Regents of the University of California
* 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 from
*
* 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 edu.uci.ics.hyracks.cli;
import java.io.IOException;
import jline.ConsoleReader;
public class CLI {
private static final String HYRACKS_PROMPT = "hyracks> ";
private static final String HYRAX_CONTINUE_PROMPT = "> ";
private final ConsoleReader reader;
private final Session session;
public CLI(String[] args) throws IOException {
reader = new ConsoleReader();
session = new Session();
}
public void run() throws IOException {
boolean eof = false;
while (true) {
String prompt = HYRACKS_PROMPT;
StringBuilder command = new StringBuilder();
while (true) {
String line = reader.readLine(prompt);
if (line == null) {
eof = true;
break;
}
prompt = HYRAX_CONTINUE_PROMPT;
line = line.trim();
command.append(line);
if ("".equals(line)) {
break;
}
if (line.endsWith(";")) {
break;
}
}
if (eof) {
break;
}
try {
CommandExecutor.execute(session, command.toString());
} catch (Exception e) {
e.printStackTrace();
}
}
}
}