DELL
2024-02-21 4982b9614516dde101c3e44c60a612b3bfd8d6fe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
package org.openmuc.openiec61850.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 volatile boolean closed = false;
 
    private final Map<String, Action> 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) {
 
                if (closed) {
                    exit(1);
                    return;
                }
 
                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 (closed) {
                    exit(1);
                    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;
                }
 
                try {
                    actionListener.actionCalled(actionKey);
                } catch (ActionException e) {
                    System.err.println(e.getMessage() + "\n");
                }
 
            }
 
        } 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() {
        closed = true;
        try {
            reader.close();
        } catch (IOException e) {
        }
    }
 
}