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
|
/*
* 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.File;
public class ConnectionSettings extends NativeComponent {
public final static char HOST_PORT_SEPARATOR = ':';
public final static String DEFAULT_HOST_NAME = "";
public final static int MINIMUM_PORT_NUMBER = 0;
public final static int MAXIMUM_PORT_NUMBER = 99;
public final static int DEFAULT_PORT_NUMBER = MINIMUM_PORT_NUMBER;
public final static String DEFAULT_SERVER_HOST =
DEFAULT_HOST_NAME + HOST_PORT_SEPARATOR + DEFAULT_PORT_NUMBER;
private String serverHost = null;
public static void checkHostSpecification (String specification) {
int index = specification.indexOf(HOST_PORT_SEPARATOR);
if (index == 0) {
return;
}
if (index < 0) {
specification = String.format(
"%s%c%s", specification, HOST_PORT_SEPARATOR, DEFAULT_PORT_NUMBER
);
} else {
String number = specification.substring(index+1);
if (number.isEmpty()) {
throw new IllegalArgumentException("missing port number");
}
try {
Parse.asInt(
"port number", number,
MINIMUM_PORT_NUMBER, MAXIMUM_PORT_NUMBER
);
} catch (SyntaxException exception) {
throw new IllegalArgumentException(exception.getMessage());
}
}
}
public final ConnectionSettings setServerHost (String specification) {
checkHostSpecification(specification);
serverHost = specification;
return this;
}
public final String getServerHost () {
return serverHost;
}
public final static char AUTHENTICATION_SCHEME_SEPARATOR = '+';
public final static char AUTHENTICATION_OPERAND_PREFIX = ':';
public final static String AUTHENTICATION_SCHEME_KEYFILE = "keyfile";
public final static String AUTHENTICATION_SCHEME_NONE = "none";
private native static String getKeyfileDirectory ();
public final static String AUTHENTICATION_KEYFILE_DIRECTORY = getKeyfileDirectory();
private native static String getKeyfileName ();
public final static String AUTHENTICATION_KEYFILE_NAME = getKeyfileName();
public final static String DEFAULT_AUTHENTICATION_SCHEME;
static {
StringBuilder builder = new StringBuilder();
{
File file = new File(
AUTHENTICATION_KEYFILE_DIRECTORY,
AUTHENTICATION_KEYFILE_NAME
);
if (file.isFile() && file.canRead()) {
builder.append(AUTHENTICATION_SCHEME_KEYFILE)
.append(AUTHENTICATION_OPERAND_PREFIX)
.append(file.getAbsolutePath());
}
}
if (builder.length() > 0) builder.append(AUTHENTICATION_SCHEME_SEPARATOR);
builder.append(AUTHENTICATION_SCHEME_NONE);
DEFAULT_AUTHENTICATION_SCHEME = builder.toString();
}
private String authenticationScheme = null;
public static void checkAuthenticationScheme (String scheme) {
}
public final ConnectionSettings setAuthenticationScheme (String scheme) {
checkAuthenticationScheme(scheme);
authenticationScheme = scheme;
return this;
}
public final String getAuthenticationScheme () {
return authenticationScheme;
}
public ConnectionSettings () {
setServerHost(DEFAULT_SERVER_HOST);
setAuthenticationScheme(DEFAULT_AUTHENTICATION_SCHEME);
}
@Override
public String toString () {
return String.format(
"Server:%s Scheme:%s", serverHost, authenticationScheme
);
}
}
|