org.openmuc.jdlms.internal.cli.ActionProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdlms Show documentation
Show all versions of jdlms Show documentation
jDLMS is a library implementing the DLMS/COSEM (IEC 62056) communication standard.
/*
* Copyright 2012-16 Fraunhofer ISE
*
* This file is part of jDLMS.
* For more information visit http://www.openmuc.org
*
* jDLMS is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* jDLMS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with jDLMS. If not, see .
*
*/
package org.openmuc.jdlms.internal.cli;
import static java.lang.System.exit;
import static java.lang.System.out;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.LinkedHashMap;
import java.util.Map;
public class ActionProcessor {
private static final String SEPARATOR_LINE = "------------------------------------------------------";
private final BufferedReader reader;
private final ActionListener actionListener;
private final Map actionMap = new LinkedHashMap<>();
private final Action helpAction = new Action("h", "print help message");
private final Action quitAction = new Action("q", "quit the application");
public ActionProcessor(ActionListener actionListener) {
reader = new BufferedReader(new InputStreamReader(System.in));
this.actionListener = actionListener;
}
public void addAction(Action action) {
actionMap.put(action.getKey(), action);
}
public BufferedReader getReader() {
return reader;
}
public void start() {
actionMap.put(helpAction.getKey(), helpAction);
actionMap.put(quitAction.getKey(), quitAction);
printHelp();
try {
String actionKey;
while (true) {
System.out.println("\n** Enter action key: ");
try {
actionKey = reader.readLine();
} catch (IOException e) {
System.err.printf("%s. Application is being shut down.\n", e.getMessage());
exit(2);
return;
}
if (actionMap.get(actionKey) == null) {
System.err.println("Illegal action key.\n");
printHelp();
continue;
}
if (actionKey.equals(helpAction.getKey())) {
printHelp();
continue;
}
if (actionKey.equals(quitAction.getKey())) {
actionListener.quit();
return;
}
actionListener.actionCalled(actionKey);
}
} catch (Exception e) {
e.printStackTrace();
actionListener.quit();
} finally {
close();
}
}
private void printHelp() {
final String message = " %s - %s\n";
out.flush();
out.println();
out.println(SEPARATOR_LINE);
for (Action action : actionMap.values()) {
out.printf(message, action.getKey(), action.getDescription());
}
out.println(SEPARATOR_LINE);
}
public void close() {
try {
reader.close();
} catch (IOException e) {
}
}
}