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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
|
/*
* libbrlapi - A library providing access to braille terminals for applications.
*
* Copyright (C) 2006-2025 by
* Samuel Thibault <Samuel.Thibault@ens-lyon.org>
* Sébastien Hinderer <Sebastien.Hinderer@ens-lyon.org>
*
* libbrlapi comes with ABSOLUTELY NO WARRANTY.
*
* This is free software, placed under the terms of the
* GNU Lesser General Public License, as published by the Free Software
* Foundation; either version 2.1 of the License, or (at your option) any
* later version. Please see the file LICENSE-LGPL for details.
*
* Web Page: http://brltty.app/
*
* This software is maintained by Dave Mielke <dave@mielke.cc>.
*/
package org.a11y.brlapi;
import java.io.InterruptedIOException;
public abstract class Client extends Program {
protected abstract void runClient (Connection connection)
throws ProgramException;
private final ConnectionSettings connectionSettings = new ConnectionSettings();
public final Client setServerHost (String host) throws SyntaxException {
try {
connectionSettings.setServerHost(host);
} catch (IllegalArgumentException exception) {
throw new SyntaxException(exception.getMessage());
}
return this;
}
public final Client setAuthenticationScheme (String scheme) throws SyntaxException {
try {
connectionSettings.setAuthenticationScheme(scheme);
} catch (IllegalArgumentException exception) {
throw new SyntaxException(exception.getMessage());
}
return this;
}
protected Client (String... arguments) {
super(arguments);
addOption("server",
(operands) -> {
setServerHost(operands[0]);
},
"host specification"
);
addOption("authentication",
(operands) -> {
setAuthenticationScheme(operands[0]);
},
"scheme"
);
}
@Override
protected void extendUsageSummary (StringBuilder usage) {
super.extendUsageSummary(usage);
usage.append('\n')
.append("The default server host is ")
.append(ConnectionSettings.DEFAULT_SERVER_HOST)
.append(". ")
.append("The format of a host specification is ")
.append(USAGE_OPTIONAL_BEGIN)
.append("host")
.append(USAGE_OPTIONAL_END)
.append(USAGE_OPTIONAL_BEGIN)
.append(ConnectionSettings.HOST_PORT_SEPARATOR).append("port")
.append(USAGE_OPTIONAL_END)
.append(". ")
.append("The host component may be either a host name or an IPV4 address")
.append(" - if not specified, a local socket is used. ")
.append("The port component must be an integer within the range ")
.append(ConnectionSettings.MINIMUM_PORT_NUMBER)
.append(" through ")
.append(ConnectionSettings.MAXIMUM_PORT_NUMBER)
.append(" - if not specified, ")
.append(ConnectionSettings.DEFAULT_PORT_NUMBER)
.append(" is assumed. ")
;
usage.append('\n')
.append("The default authentication scheme is ")
.append(ConnectionSettings.DEFAULT_AUTHENTICATION_SCHEME)
.append(". ")
.append("The format of a scheme specification is name")
.append(USAGE_OPTIONAL_BEGIN)
.append(ConnectionSettings.AUTHENTICATION_OPERAND_PREFIX).append("operand")
.append(USAGE_OPTIONAL_END)
.append(". ")
.append("More than one scheme, separated by ")
.append(ConnectionSettings.AUTHENTICATION_SCHEME_SEPARATOR)
.append(", may be specified. ")
.append("The following schemes are supported:")
.append("\n ").append(ConnectionSettings.AUTHENTICATION_SCHEME_KEYFILE)
.append(ConnectionSettings.AUTHENTICATION_OPERAND_PREFIX).append("path")
.append("\n ").append(ConnectionSettings.AUTHENTICATION_SCHEME_NONE)
;
}
protected interface ClientTask {
public void run (Connection connection) throws ProgramException;
}
private final Client connect (ClientTask task) throws ProgramException {
try {
Connection connection = new Connection(connectionSettings);
try {
task.run(connection);
} finally {
connection.close();
connection = null;
}
} catch (LostConnectionException exception) {
throw new ExternalException("connection lost");
} catch (APIError error) {
throw new ExternalException(("API error: " + error));
} catch (APIException exception) {
throw new ExternalException(("API exception: " + exception));
}
return this;
}
public final boolean pause (Connection connection, int milliseconds) {
try {
connection.pause(milliseconds);
return true;
} catch (InterruptedIOException exception) {
return false;
}
}
@Override
protected final void runProgram () throws ProgramException {
connect(
(connection) -> {
runClient(connection);
}
);
}
protected final Parameter getParameter (Connection connection, String name)
throws SemanticException
{
Parameter parameter = connection.getParameters().get(name);
if (parameter != null) return parameter;
throw new SemanticException("unknown parameter: %s", name);
}
protected interface TtyModeTask {
public void run (Connection connection) throws ProgramException;
}
protected final Client ttyMode (Connection connection, String driver, TtyModeTask task, int... path)
throws ProgramException
{
try {
connection.enterTtyModeWithPath(driver, path);
try {
task.run(connection);
} finally {
if (!connection.isUnusable()) connection.leaveTtyMode();
}
} catch (APIError error) {
throw new ProgramException(("tty mode error: " + error));
}
return this;
}
protected final Client ttyMode (Connection connection, boolean keys, TtyModeTask task, int... path)
throws ProgramException
{
return ttyMode(connection, (keys? connection.getDriverName(): null), task, path);
}
protected interface RawModeTask {
public void run (Connection connection) throws ProgramException;
}
protected final Client rawMode (Connection connection, String driver, RawModeTask task)
throws ProgramException
{
try {
connection.enterRawMode(driver);
try {
task.run(connection);
} finally {
if (!connection.isUnusable()) connection.leaveRawMode();
}
} catch (APIError error) {
throw new ProgramException(("raw mode error: " + error));
}
return this;
}
protected final Client rawMode (Connection connection, RawModeTask task)
throws ProgramException
{
return rawMode(connection, connection.getDriverName(), task);
}
}
|