blob: a0ad5e638f2fbb43bfa8a040edc40e29a403381d (
plain)
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
|
package bjc.utils.cli.fds;
import java.util.function.Consumer;
import bjc.utils.ioutils.Block;
/**
* Internal state for an FDS interface.
*
* @author bjculkin
*
* @param <S>
* The state type of the interface.
*/
public class FDSState<S> {
/**
* The input mode for the interface.
*
* @author bjculkin
*
*/
public static enum InputMode {
/**
* Normal mode.
*
* Reads only the first character in the block as a command.
*/
NORMAL,
/**
* Reads every character in the block as a command.
*/
CHORD,
/**
* Reads every character in the block, but after a terminal
* command, data will be read inline separated by spaces until a
* semicolon is read.
*
* The semicolon can be escaped with a backslash.
*/
INLINE,
/**
* Reads every character in the block, but after a terminal
* command, data will be read inline with each character being a
* separate item until a semicolon is read.
*
* The semicolon can be escaped with a backslash.
*/
}
/**
* The state of the interface
*/
public S state;
/**
* The input mode for the interface.
*/
public InputMode mode;
/**
* Function to add a command block to be processed.
*/
public Consumer<Block> enqueCommand;
/**
* Function to add a data block to be processed.
*/
public Consumer<Block> enqueData;
/**
* Create a new interface state.
*
* @param stat
* The initial state for the interface.
*
* @param inputMode
* The input mode for the interface.
*/
public FDSState(S stat, InputMode inputMode, Consumer<Block> comQueue, Consumer<Block> dataQueue) {
state = stat;
mode = inputMode;
enqueCommand = comQueue;
enqueData = dataQueue;
}
}
|