1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package info.mikethomas.jfold;
22
23 import info.mikethomas.jfold.util.Command;
24 import info.mikethomas.jfold.util.PyonParser;
25
26 import java.io.IOException;
27 import java.io.PrintStream;
28 import java.net.Socket;
29 import java.util.ArrayList;
30 import java.util.List;
31 import java.util.Scanner;
32
33 import lombok.extern.slf4j.XSlf4j;
34
35 import org.slf4j.profiler.Profiler;
36
37
38
39
40
41
42
43 @XSlf4j
44 public class SocketConnection {
45
46
47 public static final String CLRSCR = "\033[H\033[2J";
48
49 public static final String COMMAND_PROMPT = "> ";
50
51 public static final String ENCODING = "UTF-8";
52
53 public static final String WELCOME_MSG
54 = "Welcome to the FAHClient command server.";
55
56
57 private Socket socket;
58
59 private PrintStream out;
60
61 private Scanner in;
62
63
64
65
66
67
68
69
70 public SocketConnection(
71 final String address, final int port) throws IOException {
72 super();
73
74 if (address != null) {
75 socket = new Socket(address, port);
76
77 out = new PrintStream(socket.getOutputStream(), true, ENCODING);
78 in = new Scanner(socket.getInputStream(), ENCODING);
79 in.useDelimiter(COMMAND_PROMPT);
80
81 var welcome = in.nextLine();
82 log.info(welcome);
83 if (!(CLRSCR + WELCOME_MSG).equals(welcome)) {
84 throw new IOException(
85 "Unexpected welcome message, check client version");
86 }
87 }
88 }
89
90
91
92
93
94
95
96 protected String sendCommand(final Command command) {
97 return sendCommand(command, new ArrayList<>());
98 }
99
100
101
102
103
104
105
106
107 protected String sendCommand(final Command command,
108 final List<String> args) {
109 log.entry(command, args);
110
111 var profiler = new Profiler(command.toString());
112 profiler.setLogger(log);
113
114 var arguments = new StringBuilder();
115 args.forEach(arg -> arguments.append(" '").append(arg).append("'"));
116
117
118 profiler.start("Send Command");
119 out.println(command + arguments.toString());
120 log.info("Sent Command: {}{}", command, arguments);
121
122
123 var response = "";
124 switch (command.getResponseType()) {
125 case PYON:
126 case STRING:
127 profiler.start("Get Response");
128 response = in.next().replaceFirst(COMMAND_PROMPT, "");
129 if (response.startsWith(PyonParser.PYON_1)) {
130 profiler.start("Convert to JSON");
131 response = PyonParser.convert(response);
132 } else if (response.equals("\n")) {
133
134 switch (command) {
135 case SIMULATION_INFO:
136 response = "{}";
137 break;
138 case SLOT_INFO:
139 response = "[]";
140 break;
141 default:
142 break;
143 }
144 }
145
146 default:
147 log.info("Recieved Response: {}", response);
148 profiler.stop().log();
149 }
150 return log.exit(response);
151 }
152 }