LICENSE CHANGED TO MIT
[nikiroo-utils.git] / src / jexer / net / TelnetSocket.java
CommitLineData
daa4106c 1/*
ea91242c
KL
2 * Jexer - Java Text User Interface
3 *
e16dda65 4 * The MIT License (MIT)
ea91242c 5 *
e16dda65 6 * Copyright (C) 2016 Kevin Lamonte
ea91242c 7 *
e16dda65
KL
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
ea91242c 14 *
e16dda65
KL
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
ea91242c 17 *
e16dda65
KL
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24 * DEALINGS IN THE SOFTWARE.
ea91242c
KL
25 *
26 * @author Kevin Lamonte [kevin.lamonte@gmail.com]
27 * @version 1
28 */
29package jexer.net;
30
31import java.io.InputStream;
32import java.io.IOException;
33import java.io.OutputStream;
34import java.net.Socket;
35
36/**
37 * This class provides a Socket that performs the telnet protocol to both
38 * establish an 8-bit clean no echo channel and expose window resize events
39 * to the Jexer ECMA48 backend.
40 */
41public final class TelnetSocket extends Socket {
42
ea91242c
KL
43 /**
44 * The telnet-aware socket InputStream.
45 */
46 private TelnetInputStream input;
47
48 /**
9b1afdde 49 * The telnet-aware socket OutputStream.
ea91242c 50 */
9b1afdde 51 private TelnetOutputStream output;
ea91242c
KL
52
53 // Telnet protocol special characters. Note package private access.
9b1afdde
KL
54 static final int TELNET_SE = 240;
55 static final int TELNET_NOP = 241;
56 static final int TELNET_DM = 242;
57 static final int TELNET_BRK = 243;
58 static final int TELNET_IP = 244;
59 static final int TELNET_AO = 245;
60 static final int TELNET_AYT = 246;
61 static final int TELNET_EC = 247;
62 static final int TELNET_EL = 248;
63 static final int TELNET_GA = 249;
64 static final int TELNET_SB = 250;
65 static final int TELNET_WILL = 251;
66 static final int TELNET_WONT = 252;
67 static final int TELNET_DO = 253;
68 static final int TELNET_DONT = 254;
69 static final int TELNET_IAC = 255;
70 static final int C_NUL = 0x00;
71 static final int C_LF = 0x0A;
72 static final int C_CR = 0x0D;
ea91242c 73
9b1afdde
KL
74 /**
75 * If true, this is a server socket (i.e. created by accept()).
76 */
77 boolean isServer = true;
78
79 /**
80 * If true, telnet ECHO mode is set such that local echo is off and
81 * remote echo is on. This is appropriate for server sockets.
82 */
83 boolean echoMode = false;
84
85 /**
86 * If true, telnet BINARY mode is enabled. We always want this to
87 * ensure a Unicode-safe stream.
88 */
89 boolean binaryMode = false;
90
91 /**
92 * If true, the SUPPRESS-GO-AHEAD option is enabled. We always want
93 * this.
94 */
95 boolean goAhead = true;
96
97 /**
98 * If true, request the client terminal type.
99 */
100 boolean doTermType = true;
101
102 /**
103 * If true, request the client terminal speed.
104 */
105 boolean doTermSpeed = true;
106
107 /**
108 * If true, request the Negotiate About Window Size option to
109 * determine the client text width/height.
110 */
111 boolean doNAWS = true;
112
113 /**
114 * If true, request the New Environment option to obtain the client
115 * LOGNAME, USER, and LANG variables.
116 */
117 boolean doEnvironment;
118
119 /**
120 * The terminal type reported by the client.
121 */
122 String terminalType = "";
ea91242c
KL
123
124 /**
9b1afdde 125 * The terminal speed reported by the client.
ea91242c 126 */
9b1afdde 127 String terminalSpeed = "";
ea91242c
KL
128
129 /**
130 * See if telnet server/client is in ASCII mode.
131 *
132 * @return if true, this connection is in ASCII mode
133 */
134 public boolean isAscii() {
9b1afdde 135 return (!binaryMode);
ea91242c
KL
136 }
137
138 /**
9b1afdde
KL
139 * Creates a Socket that knows the telnet protocol. Note package private
140 * access, this is only used by TelnetServerSocket.
ea91242c 141 *
9b1afdde 142 * @throws IOException if an I/O error occurs
ea91242c 143 */
9b1afdde 144 TelnetSocket() throws IOException {
ea91242c 145 super();
ea91242c
KL
146 }
147
148 // Socket interface -------------------------------------------------------
149
150 /**
151 * Returns an input stream for this socket.
152 *
153 * @return the input stream
9b1afdde 154 * @throws IOException if an I/O error occurs
ea91242c
KL
155 */
156 @Override
157 public InputStream getInputStream() throws IOException {
9b1afdde
KL
158 if (input == null) {
159 assert (output == null);
160 output = new TelnetOutputStream(this, super.getOutputStream());
161 input = new TelnetInputStream(this, super.getInputStream(), output);
162 input.telnetSendOptions();
163 }
ea91242c
KL
164 return input;
165 }
166
167 /**
168 * Returns an output stream for this socket.
169 *
170 * @return the output stream
9b1afdde 171 * @throws IOException if an I/O error occurs
ea91242c
KL
172 */
173 @Override
174 public OutputStream getOutputStream() throws IOException {
9b1afdde
KL
175 if (output == null) {
176 assert (input == null);
177 output = new TelnetOutputStream(this, super.getOutputStream());
178 input = new TelnetInputStream(this, super.getInputStream(), output);
179 input.telnetSendOptions();
180 }
ea91242c
KL
181 return output;
182 }
183
184}