Mercurial > 510Connectbot
annotate src/com/five_ten_sg/connectbot/transport/TN5250.java @ 82:d8da9f32074c
vt320 colors add one to indicate color is set rather than default
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Mon, 16 Jun 2014 09:55:39 -0700 |
parents | 7ae9b0c382ec |
children | 8f23b05a51f7 |
rev | line source |
---|---|
11 | 1 /* |
2 * 510ConnectBot | |
3 * Copyright 2014 Carl Byington | |
4 * | |
5 * Licensed under the Apache License, Version 2.0 (the "License"); | |
6 * you may not use this file except in compliance with the License. | |
7 * You may obtain a copy of the License at | |
8 * | |
9 * http://www.apache.org/licenses/LICENSE-2.0 | |
10 * | |
11 * Unless required by applicable law or agreed to in writing, software | |
12 * distributed under the License is distributed on an "AS IS" BASIS, | |
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
14 * See the License for the specific language governing permissions and | |
15 * limitations under the License. | |
16 */ | |
17 | |
18 package com.five_ten_sg.connectbot.transport; | |
19 | |
20 import java.io.IOException; | |
21 import java.io.InputStream; | |
22 import java.io.OutputStream; | |
23 import java.net.Socket; | |
24 import java.net.SocketException; | |
13 | 25 import java.net.UnknownHostException; |
54
a7e660661e08
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
53
diff
changeset
|
26 import java.util.HashMap; |
11 | 27 import java.util.List; |
28 import java.util.Map; | |
13 | 29 import java.util.regex.Matcher; |
30 import java.util.regex.Pattern; | |
11 | 31 |
12 | 32 import org.tn5250j.framework.tn5250.Screen5250; |
33 import org.tn5250j.framework.tn5250.tnvt; | |
34 | |
13 | 35 import com.five_ten_sg.connectbot.R; |
11 | 36 import com.five_ten_sg.connectbot.bean.HostBean; |
37 import com.five_ten_sg.connectbot.bean.PortForwardBean; | |
38 import com.five_ten_sg.connectbot.service.TerminalBridge; | |
29
017eeed8332c
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
23
diff
changeset
|
39 import com.five_ten_sg.connectbot.service.TerminalKeyListener; |
11 | 40 import com.five_ten_sg.connectbot.service.TerminalManager; |
41 import com.five_ten_sg.connectbot.util.HostDatabase; | |
50
2cd3d8091e37
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
49
diff
changeset
|
42 import com.five_ten_sg.connectbot.util.PreferenceConstants; |
11 | 43 import android.content.Context; |
44 import android.net.Uri; | |
13 | 45 import android.util.Log; |
53
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
46 import android.view.KeyCharacterMap; |
50
2cd3d8091e37
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
49
diff
changeset
|
47 import android.view.KeyEvent; |
2cd3d8091e37
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
49
diff
changeset
|
48 import android.view.View; |
29
017eeed8332c
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
23
diff
changeset
|
49 import de.mud.terminal.vt320; |
11 | 50 |
51 | |
52 /** | |
53 * @author Carl Byington | |
54 * | |
55 */ | |
56 public class TN5250 extends AbsTransport { | |
57 private static final String PROTOCOL = "tn5250"; | |
58 private static final String TAG = "ConnectBot.tn5250"; | |
59 private static final int DEFAULT_PORT = 23; | |
31
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
60 |
11 | 61 private Screen5250 screen52; |
31
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
62 private tnvt handler = null; |
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
63 private Socket socket; |
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
64 private boolean connected = false; |
11 | 65 |
12 | 66 static final Pattern hostmask; |
67 static { | |
68 hostmask = Pattern.compile("^([0-9a-z.-]+)(:(\\d+))?$", Pattern.CASE_INSENSITIVE); | |
69 } | |
70 | |
45
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
71 |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
72 class vt320x5250 extends vt320 { |
53
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
73 private HashMap<Integer, String> mnemonics; |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
74 |
54
a7e660661e08
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
53
diff
changeset
|
75 public vt320x5250() { |
a7e660661e08
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
53
diff
changeset
|
76 this(80,24); |
a7e660661e08
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
53
diff
changeset
|
77 } |
a7e660661e08
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
53
diff
changeset
|
78 |
53
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
79 public vt320x5250(int width, int height) { |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
80 super(width, height); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
81 mnemonics = new HashMap<Integer, String>(); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
82 mnemonics.put(KEY_PAUSE , "[attn]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
83 mnemonics.put(KEY_F1 , "[pf1]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
84 mnemonics.put(KEY_F2 , "[pf2]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
85 mnemonics.put(KEY_F3 , "[pf3]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
86 mnemonics.put(KEY_F4 , "[pf4]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
87 mnemonics.put(KEY_F5 , "[pf5]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
88 mnemonics.put(KEY_F6 , "[pf6]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
89 mnemonics.put(KEY_F7 , "[pf7]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
90 mnemonics.put(KEY_F8 , "[pf8]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
91 mnemonics.put(KEY_F9 , "[pf9]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
92 mnemonics.put(KEY_F10 , "[pf10]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
93 mnemonics.put(KEY_F11 , "[pf11]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
94 mnemonics.put(KEY_F12 , "[pf12]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
95 mnemonics.put(KEY_UP , "[up]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
96 mnemonics.put(KEY_DOWN , "[down]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
97 mnemonics.put(KEY_LEFT , "[left]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
98 mnemonics.put(KEY_RIGHT , "[right]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
99 mnemonics.put(KEY_PAGE_DOWN , "[pgdown]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
100 mnemonics.put(KEY_PAGE_UP , "[pgup]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
101 mnemonics.put(KEY_INSERT , "[insert]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
102 mnemonics.put(KEY_DELETE , "[delete]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
103 mnemonics.put(KEY_BACK_SPACE , "[backspace]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
104 mnemonics.put(KEY_HOME , "[home]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
105 mnemonics.put(KEY_END , "[end]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
106 mnemonics.put(KEY_NUM_LOCK , ""); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
107 mnemonics.put(KEY_CAPS_LOCK , ""); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
108 mnemonics.put(KEY_SHIFT , ""); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
109 mnemonics.put(KEY_CONTROL , ""); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
110 mnemonics.put(KEY_ALT , ""); |
57
e0c68988fe2e
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
54
diff
changeset
|
111 mnemonics.put(KEY_ENTER , "[enter]"); |
53
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
112 mnemonics.put(KEY_NUMPAD0 , "0"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
113 mnemonics.put(KEY_NUMPAD1 , "1"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
114 mnemonics.put(KEY_NUMPAD2 , "2"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
115 mnemonics.put(KEY_NUMPAD3 , "3"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
116 mnemonics.put(KEY_NUMPAD4 , "4"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
117 mnemonics.put(KEY_NUMPAD5 , "5"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
118 mnemonics.put(KEY_NUMPAD6 , "6"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
119 mnemonics.put(KEY_NUMPAD7 , "7"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
120 mnemonics.put(KEY_NUMPAD8 , "8"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
121 mnemonics.put(KEY_NUMPAD9 , "9"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
122 mnemonics.put(KEY_DECIMAL , "."); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
123 mnemonics.put(KEY_ADD , "+"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
124 mnemonics.put(KEY_ESCAPE , ""); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
125 mnemonics.put(KEY_TAB , "[tab]"); |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
126 } |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
127 |
45
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
128 @Override |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
129 public void debug(String s) { |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
130 Log.d(TAG, s); |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
131 } |
53
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
132 |
69
294435151b0c
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
68
diff
changeset
|
133 // monitor injecting a field |
294435151b0c
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
68
diff
changeset
|
134 @Override |
294435151b0c
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
68
diff
changeset
|
135 public void setField(int l, int c, char [] d) { |
294435151b0c
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
68
diff
changeset
|
136 screen52.setField(l, c, d); |
294435151b0c
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
68
diff
changeset
|
137 } |
294435151b0c
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
68
diff
changeset
|
138 |
294435151b0c
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
68
diff
changeset
|
139 // terminal key listener sending to local screen |
45
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
140 @Override |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
141 public void write(byte[] b) { |
69
294435151b0c
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
68
diff
changeset
|
142 if (bridge.monitor != null) bridge.monitor.hostData(b); |
49
8887bff45dee
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
47
diff
changeset
|
143 screen52.sendKeys(new String(b)); |
45
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
144 } |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
145 @Override |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
146 public void write(int b) { |
69
294435151b0c
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
68
diff
changeset
|
147 if (bridge.monitor != null) bridge.monitor.hostData(b); |
50
2cd3d8091e37
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
49
diff
changeset
|
148 screen52.sendKeys(new String(new byte[] {(byte)b})); |
45
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
149 } |
53
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
150 @Override |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
151 public void keyPressed(int keyCode, char keyChar, int modifiers) { |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
152 if (mnemonics.containsKey(keyCode)) { |
69
294435151b0c
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
68
diff
changeset
|
153 String s = mnemonics.get(keyCode); |
294435151b0c
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
68
diff
changeset
|
154 if (s != "") { |
71
7ae9b0c382ec
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
69
diff
changeset
|
155 if (bridge.monitor != null) bridge.monitor.hostData(s.getBytes()); |
69
294435151b0c
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
68
diff
changeset
|
156 screen52.sendKeys(s); |
294435151b0c
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
68
diff
changeset
|
157 } |
53
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
158 } |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
159 } |
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
160 // 5250 writing to the screen |
69
294435151b0c
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
68
diff
changeset
|
161 // test for changed screen contents |
294435151b0c
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
68
diff
changeset
|
162 @Override |
294435151b0c
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
68
diff
changeset
|
163 public void testChanged() { |
294435151b0c
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
68
diff
changeset
|
164 if (bridge.monitor != null) bridge.monitor.testChanged(); |
294435151b0c
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
68
diff
changeset
|
165 } |
45
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
166 @Override |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
167 public void putChar(int c, int l, char ch, int attributes) { |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
168 if (bridge.monitor != null) bridge.monitor.screenChanged(l, c); |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
169 super.putChar(c, l, ch, attributes); |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
170 } |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
171 @Override |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
172 public void setCursorPosition(int c, int l) { |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
173 if (bridge.monitor != null) bridge.monitor.cursorMove(l, c); |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
174 super.setCursorPosition(c, l); |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
175 } |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
176 }; |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
177 |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
178 |
11 | 179 public TN5250() { |
180 super(); | |
53
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
181 } |
11 | 182 |
183 | |
31
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
184 /** |
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
185 * @return protocol part of the URI |
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
186 */ |
11 | 187 public static String getProtocolName() { |
188 return PROTOCOL; | |
189 } | |
190 | |
31
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
191 |
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
192 /** |
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
193 * Encode the current transport into a URI that can be passed via intent calls. |
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
194 * @return URI to host |
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
195 */ |
12 | 196 public Uri getUri(String input) { |
197 Matcher matcher = hostmask.matcher(input); | |
198 | |
199 if (!matcher.matches()) | |
200 return null; | |
201 | |
202 StringBuilder sb = new StringBuilder(); | |
203 sb.append(PROTOCOL) | |
204 .append("://") | |
205 .append(matcher.group(1)); | |
206 String portString = matcher.group(3); | |
207 int port = DEFAULT_PORT; | |
208 | |
209 if (portString != null) { | |
210 try { | |
211 port = Integer.parseInt(portString); | |
212 | |
213 if (port < 1 || port > 65535) { | |
214 port = DEFAULT_PORT; | |
215 } | |
216 } | |
217 catch (NumberFormatException nfe) { | |
218 // Keep the default port | |
219 } | |
220 } | |
221 | |
222 if (port != DEFAULT_PORT) { | |
223 sb.append(':'); | |
224 sb.append(port); | |
225 } | |
226 | |
227 sb.append("/#") | |
228 .append(Uri.encode(input)); | |
229 Uri uri = Uri.parse(sb.toString()); | |
230 return uri; | |
11 | 231 } |
232 | |
31
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
233 |
11 | 234 /** |
235 * Causes transport to connect to the target host. After connecting but before a | |
236 * session is started, must call back to {@link TerminalBridge#onConnected()}. | |
237 * After that call a session may be opened. | |
238 */ | |
239 @Override | |
240 public void connect() { | |
30
d738f6b876fe
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
29
diff
changeset
|
241 screen52 = new Screen5250(); |
29
017eeed8332c
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
23
diff
changeset
|
242 handler = new tnvt(screen52, true, false, bridge, manager); |
68
cc7e3588a0f3
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
57
diff
changeset
|
243 String encryption = host.getEncryption5250(); |
cc7e3588a0f3
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
57
diff
changeset
|
244 if ((encryption == null) || (encryption.length() == 0)) encryption = "NONE"; |
cc7e3588a0f3
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
57
diff
changeset
|
245 handler.setSSLType(encryption); |
32
b086dd794dba
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
31
diff
changeset
|
246 screen52.setVT(handler); |
b086dd794dba
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
31
diff
changeset
|
247 screen52.setBuffer(buffer); |
69
294435151b0c
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
68
diff
changeset
|
248 connected = handler.connect(host.getHostname(), host.getPort(), buffer); |
29
017eeed8332c
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
23
diff
changeset
|
249 if (connected) bridge.onConnected(); |
11 | 250 } |
251 | |
252 | |
253 /** | |
254 * Checks if read() will block. If there are no bytes remaining in | |
255 * the underlying transport, return true. | |
256 */ | |
257 @Override | |
258 public boolean willBlock() { | |
29
017eeed8332c
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
23
diff
changeset
|
259 // we don't use a relay thread between the transport and the vt320 buffer |
017eeed8332c
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
23
diff
changeset
|
260 return true; |
11 | 261 } |
262 | |
31
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
263 |
11 | 264 /** |
265 * Reads from the transport. Transport must support reading into a byte array | |
266 * <code>buffer</code> at the start of <code>offset</code> and a maximum of | |
267 * <code>length</code> bytes. If the remote host disconnects, throw an | |
268 * {@link IOException}. | |
269 * @param buffer byte buffer to store read bytes into | |
270 * @param offset where to start writing in the buffer | |
271 * @param length maximum number of bytes to read | |
272 * @return number of bytes read | |
273 * @throws IOException when remote host disconnects | |
274 */ | |
275 public int read(byte[] buffer, int offset, int length) throws IOException { | |
29
017eeed8332c
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
23
diff
changeset
|
276 // we don't use a relay thread between the transport and the vt320 buffer |
11 | 277 return 0; |
278 } | |
279 | |
280 | |
281 /** | |
282 * Writes to the transport. If the host is not yet connected, simply return without | |
283 * doing anything. An {@link IOException} should be thrown if there is an error after | |
284 * connection. | |
285 * @param buffer bytes to write to transport | |
286 * @throws IOException when there is a problem writing after connection | |
287 */ | |
288 public void write(byte[] buffer) throws IOException { | |
289 } | |
290 | |
31
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
291 |
11 | 292 /** |
293 * Writes to the transport. See {@link #write(byte[])} for behavior details. | |
294 * @param c character to write to the transport | |
295 * @throws IOException when there is a problem writing after connection | |
296 */ | |
297 public void write(int c) throws IOException { | |
298 } | |
299 | |
31
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
300 |
11 | 301 /** |
302 * Flushes the write commands to the transport. | |
303 * @throws IOException when there is a problem writing after connection | |
304 */ | |
305 public void flush() throws IOException { | |
306 } | |
307 | |
31
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
308 |
11 | 309 /** |
32
b086dd794dba
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
31
diff
changeset
|
310 * Closes the connection to the terminal. |
11 | 311 */ |
312 public void close() { | |
13 | 313 handler.disconnect(); |
11 | 314 connected = false; |
32
b086dd794dba
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
31
diff
changeset
|
315 bridge.dispatchDisconnect(false); |
11 | 316 } |
317 | |
31
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
318 |
11 | 319 /** |
320 * Tells the transport what dimensions the display is currently | |
321 * @param columns columns of text | |
322 * @param rows rows of text | |
323 * @param width width in pixels | |
324 * @param height height in pixels | |
325 */ | |
326 @Override | |
327 public void setDimensions(int columns, int rows, int width, int height) { | |
328 // do nothing | |
329 } | |
330 | |
331 | |
332 @Override | |
45
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
333 public vt320 getTransportBuffer() { |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
334 buffer = new vt320x5250(); |
47
a3fd10a8c0de
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
46
diff
changeset
|
335 return setupTransportBuffer(); |
45
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
336 } |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
337 |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
338 |
80dcebe51af2
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
43
diff
changeset
|
339 @Override |
11 | 340 public int getDefaultPort() { |
341 return DEFAULT_PORT; | |
342 } | |
343 | |
31
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
344 |
11 | 345 @Override |
346 public boolean isConnected() { | |
347 return connected; | |
348 } | |
349 | |
31
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
350 |
11 | 351 @Override |
352 public boolean isSessionOpen() { | |
353 return connected; | |
354 } | |
355 | |
31
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
356 |
11 | 357 @Override |
358 public boolean isAuthenticated() { | |
359 return connected; | |
360 } | |
361 | |
362 | |
363 @Override | |
364 public String getDefaultNickname(String username, String hostname, int port) { | |
365 if (port == DEFAULT_PORT) { | |
366 return String.format("%s", hostname); | |
367 } | |
368 else { | |
369 return String.format("%s:%d", hostname, port); | |
370 } | |
371 } | |
372 | |
31
139394237973
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
30
diff
changeset
|
373 |
11 | 374 @Override |
375 public void getSelectionArgs(Uri uri, Map<String, String> selection) { | |
376 selection.put(HostDatabase.FIELD_HOST_PROTOCOL, PROTOCOL); | |
377 selection.put(HostDatabase.FIELD_HOST_NICKNAME, uri.getFragment()); | |
378 selection.put(HostDatabase.FIELD_HOST_HOSTNAME, uri.getHost()); | |
379 int port = uri.getPort(); | |
380 | |
381 if (port < 0) | |
382 port = DEFAULT_PORT; | |
383 | |
384 selection.put(HostDatabase.FIELD_HOST_PORT, Integer.toString(port)); | |
385 } | |
386 | |
387 | |
388 @Override | |
389 public HostBean createHost(Uri uri) { | |
390 HostBean host = new HostBean(); | |
391 host.setProtocol(PROTOCOL); | |
392 host.setHostname(uri.getHost()); | |
393 int port = uri.getPort(); | |
394 | |
395 if (port < 0) | |
396 port = DEFAULT_PORT; | |
397 | |
398 host.setPort(port); | |
399 String nickname = uri.getFragment(); | |
400 | |
401 if (nickname == null || nickname.length() == 0) { | |
402 host.setNickname(getDefaultNickname(host.getUsername(), | |
403 host.getHostname(), host.getPort())); | |
404 } | |
405 else { | |
406 host.setNickname(uri.getFragment()); | |
407 } | |
408 | |
409 return host; | |
410 } | |
411 | |
412 | |
12 | 413 public String getFormatHint(Context context) { |
11 | 414 return String.format("%s:%s", |
415 context.getString(R.string.format_hostname), | |
416 context.getString(R.string.format_port)); | |
417 } | |
418 | |
419 | |
420 @Override | |
421 public boolean usesNetwork() { | |
422 return true; | |
423 } | |
29
017eeed8332c
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
23
diff
changeset
|
424 |
017eeed8332c
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
23
diff
changeset
|
425 |
017eeed8332c
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
23
diff
changeset
|
426 @Override |
017eeed8332c
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
23
diff
changeset
|
427 public boolean needsRelay() { |
017eeed8332c
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
23
diff
changeset
|
428 // we don't use a relay thread between the transport and the vt320 buffer |
017eeed8332c
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
23
diff
changeset
|
429 return false; |
017eeed8332c
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
23
diff
changeset
|
430 } |
017eeed8332c
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
23
diff
changeset
|
431 |
43
6b0f1ece1d91
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
37
diff
changeset
|
432 public TerminalKeyListener getTerminalKeyListener() { |
53
e872762ec105
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
433 return new TerminalKeyListener(manager, bridge, buffer, host.getEncoding()); |
43
6b0f1ece1d91
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
37
diff
changeset
|
434 } |
6b0f1ece1d91
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
37
diff
changeset
|
435 |
11 | 436 } |