Mercurial > 510Connectbot
annotate src/com/five_ten_sg/connectbot/service/TerminalMonitor.java @ 218:2bdc413623b2
test buffer changed when 5250 keyboard unlocks
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Tue, 08 Jul 2014 10:35:14 -0700 |
parents | 4ecd8a39afb3 |
children | 2dd627df4dfb |
rev | line source |
---|---|
0 | 1 package com.five_ten_sg.connectbot.service; |
2 | |
3 import android.content.ComponentName; | |
4 import android.content.Context; | |
5 import android.content.Intent; | |
6 import android.content.ServiceConnection; | |
155 | 7 import android.net.Uri; |
0 | 8 import android.os.IBinder; |
9 import android.util.Log; | |
10 import android.view.View; | |
11 import de.mud.terminal.vt320; | |
12 import java.io.IOException; | |
13 import java.io.InputStream; | |
14 import java.io.OutputStream; | |
15 import java.net.InetAddress; | |
16 import java.net.Socket; | |
17 import java.nio.charset.Charset; | |
18 import java.util.HashMap; | |
15
1588e359a972
queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
19 import java.util.concurrent.ArrayBlockingQueue; |
1588e359a972
queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
20 import java.util.concurrent.BlockingQueue; |
1588e359a972
queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
21 import java.util.concurrent.ConcurrentHashMap; |
0 | 22 |
174
b010f9dc801f
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
173
diff
changeset
|
23 import com.five_ten_sg.connectbot.ConsoleActivity; |
b010f9dc801f
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
173
diff
changeset
|
24 import com.five_ten_sg.connectbot.bean.HostBean; |
b010f9dc801f
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
173
diff
changeset
|
25 |
b010f9dc801f
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
173
diff
changeset
|
26 |
0 | 27 public class TerminalMonitor { |
28 public final static String TAG = "ConnectBot.TerminalMonitor"; | |
29 | |
172
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
30 public static final char MONITOR_CMD_INIT = 0; |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
31 public static final char MONITOR_CMD_ACTIVATE = 1; |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
32 public static final char MONITOR_CMD_KEYSTATE = 2; |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
33 public static final char MONITOR_CMD_CURSORMOVE = 3; |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
34 public static final char MONITOR_CMD_SCREENCHANGE = 4; |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
35 public static final char MONITOR_CMD_FIELDVALUE = 5; |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
36 public static final char MONITOR_CMD_SETFIELD = 5; |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
37 public static final char MONITOR_CMD_GETFIELD = 6; |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
38 public static final char MONITOR_CMD_SCREENWATCH = 7; |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
39 public static final char MONITOR_CMD_DEPRESS = 8; |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
40 public static final char MONITOR_CMD_SHOWURL = 9; |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
41 public static final char MONITOR_CMD_SWITCHSESSION = 10; |
205
f86f1e37b504
add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents:
176
diff
changeset
|
42 public static final char MONITOR_CMD_CURSORREQUEST = 11; |
0 | 43 |
44 private static final int MONITORPORT = 6000; | |
45 private static final String LOCALHOST = "127.0.0.1"; | |
46 | |
47 private Context parent = null; | |
48 private vt320 buffer = null; | |
49 private View view = null; | |
174
b010f9dc801f
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
173
diff
changeset
|
50 private HostBean host = null; |
0 | 51 private String init = null; |
52 private int start_line = 0; // monitor part of the screen for changes | |
53 private int end_line = 500; // "" | |
54 private int start_column = 0; // "" | |
55 private int end_column = 500; // "" | |
16
48a8daea9221
delay sending cursor move notifications until the host is quiet
Carl Byington <carl@five-ten-sg.com>
parents:
15
diff
changeset
|
56 private boolean modified = false; // used to delay screen change notifications |
48a8daea9221
delay sending cursor move notifications until the host is quiet
Carl Byington <carl@five-ten-sg.com>
parents:
15
diff
changeset
|
57 private int to_line = 0; // "" |
48a8daea9221
delay sending cursor move notifications until the host is quiet
Carl Byington <carl@five-ten-sg.com>
parents:
15
diff
changeset
|
58 private int to_column = 0; // "" |
113
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
59 private HashMap<Integer, Integer> keymap = null; // map MS VK_ keys to vt320 virtual keys |
0 | 60 private IBinder bound = null; |
61 private Socket monitor_socket = null; | |
62 private InputStream monitor_in = null; | |
63 private OutputStream monitor_out = null; | |
64 private MyReader monitor_reader = null; | |
15
1588e359a972
queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
65 private BlockingQueue<char[]> pending_commands = new ArrayBlockingQueue<char[]>(100); |
0 | 66 private MyServiceConnection monitor_connection = new MyServiceConnection(); |
67 | |
68 class MyReader extends Thread { | |
69 private InputStream monitor_in; | |
70 private byte[] b; | |
71 private boolean is_closing = false; | |
72 | |
73 public MyReader(InputStream monitor_in) { | |
74 this.monitor_in = monitor_in; | |
75 b = new byte[100]; | |
76 Log.i(TAG, "MyReader constructor"); | |
77 } | |
78 | |
79 public void closing() { | |
80 is_closing = true; | |
81 } | |
82 | |
83 private char[] forceRead(int len) throws IOException { | |
84 int len2 = len * 2; | |
85 int off = 0; | |
86 | |
87 if (b.length < len2) b = new byte[len2]; | |
88 | |
89 while (off < len2) { | |
90 int l = monitor_in.read(b, off, len2 - off); | |
91 | |
92 if (l < 0) throw new IOException("eof"); | |
93 | |
94 off += l; | |
95 } | |
96 | |
97 return bytesToChars(b, len2); | |
98 } | |
99 | |
100 public void run() { | |
101 while (true) { | |
102 try { | |
103 char[] len = forceRead(1); | |
104 char[] packet = forceRead(len[0]); | |
105 char cmd = packet[0]; | |
106 Log.i(TAG, String.format("received %d command", (int)cmd)); | |
107 | |
108 switch (cmd) { | |
109 case MONITOR_CMD_SETFIELD: | |
153
3ca280646f2d
allow zero length setfield
Carl Byington <carl@five-ten-sg.com>
parents:
148
diff
changeset
|
110 if (packet.length >= 3) |
0 | 111 setField(packet[1], packet[2], packet, 3); |
112
77ac18bc1b2f
cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents:
101
diff
changeset
|
112 |
0 | 113 break; |
114 | |
115 case MONITOR_CMD_GETFIELD: | |
116 if (packet.length == 4) | |
117 getField(packet[1], packet[2], packet[3]); | |
112
77ac18bc1b2f
cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents:
101
diff
changeset
|
118 |
0 | 119 break; |
120 | |
121 case MONITOR_CMD_SCREENWATCH: | |
122 if (packet.length == 4) | |
123 screenWatch(packet[1], packet[2], packet[3]); | |
112
77ac18bc1b2f
cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents:
101
diff
changeset
|
124 |
0 | 125 break; |
126 | |
127 case MONITOR_CMD_DEPRESS: | |
128 if (packet.length == 2) | |
129 depress(packet[1]); | |
112
77ac18bc1b2f
cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents:
101
diff
changeset
|
130 |
0 | 131 break; |
132 | |
155 | 133 case MONITOR_CMD_SHOWURL: |
134 if (packet.length > 1) | |
135 showUrl(packet, 1); | |
136 | |
137 break; | |
138 | |
173
5f26d0ba6abd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
172
diff
changeset
|
139 case MONITOR_CMD_SWITCHSESSION: |
172
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
140 if (packet.length == 1) |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
141 switchSession(); |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
142 |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
143 break; |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
144 |
205
f86f1e37b504
add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents:
176
diff
changeset
|
145 case MONITOR_CMD_CURSORREQUEST: |
f86f1e37b504
add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents:
176
diff
changeset
|
146 if (packet.length == 1) |
f86f1e37b504
add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents:
176
diff
changeset
|
147 cursorRequest(); |
f86f1e37b504
add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents:
176
diff
changeset
|
148 |
f86f1e37b504
add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents:
176
diff
changeset
|
149 break; |
f86f1e37b504
add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents:
176
diff
changeset
|
150 |
0 | 151 default: |
152 break; | |
153 } | |
154 } | |
155 catch (IOException e) { | |
156 if (!is_closing) Log.e(TAG, "exception in MyReader.run()", e); | |
157 | |
158 break; | |
159 } | |
160 } | |
161 } | |
162 } | |
163 | |
164 class MyServiceConnection implements ServiceConnection { | |
165 public void onServiceConnected(ComponentName className, IBinder service) { | |
166 bound = service; | |
167 Log.i(TAG, "bound to service"); | |
168 | |
169 try { | |
170 InetAddress serverAddr = InetAddress.getByName(LOCALHOST); | |
171 monitor_socket = new Socket(serverAddr, MONITORPORT); | |
172 monitor_in = monitor_socket.getInputStream(); | |
173 monitor_out = monitor_socket.getOutputStream(); | |
174 Log.i(TAG, "connected to monitor socket, send init " + init); | |
175 monitor_reader = new MyReader(monitor_in); | |
176 monitor_reader.start(); | |
177 String x = " " + init; | |
178 monitorWrite(MONITOR_CMD_INIT, x.toCharArray()); | |
15
1588e359a972
queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
179 char [] c; |
112
77ac18bc1b2f
cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents:
101
diff
changeset
|
180 |
15
1588e359a972
queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
181 while (true) { |
1588e359a972
queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
182 c = pending_commands.poll(); |
112
77ac18bc1b2f
cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents:
101
diff
changeset
|
183 |
15
1588e359a972
queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
184 if (c == null) break; |
112
77ac18bc1b2f
cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents:
101
diff
changeset
|
185 |
15
1588e359a972
queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
186 monitorWrite(c[1], c); |
1588e359a972
queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
187 } |
0 | 188 } |
189 catch (IOException e) { | |
190 Log.e(TAG, "exception in onServiceConnected()", e); | |
191 } | |
192 } | |
193 public void onServiceDisconnected(ComponentName classNam) { | |
194 bound = null; | |
195 Log.i(TAG, "unbound from service"); | |
196 } | |
197 }; | |
198 | |
199 | |
172
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
200 public TerminalMonitor(Context parent, vt320 buffer, View view, HostBean host, String init) { |
0 | 201 this.parent = parent; |
202 this.buffer = buffer; | |
203 this.view = view; | |
172
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
204 this.host = host; |
0 | 205 this.init = init; |
206 // setup the windows->android keymapping | |
19
b3d0d806cbe2
cleaner url for MS vk_ key documentation
Carl Byington <carl@five-ten-sg.com>
parents:
18
diff
changeset
|
207 // http://msdn.microsoft.com/en-us/library/windows/desktop/dd375731 |
112
77ac18bc1b2f
cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents:
101
diff
changeset
|
208 keymap = new HashMap<Integer, Integer>(); |
113
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
209 keymap.put(0x08, vt320.KEY_BACK_SPACE); // vk_back |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
210 keymap.put(0x09, vt320.KEY_TAB); // vk_tab |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
211 keymap.put(0x0d, vt320.KEY_ENTER); // vk_return |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
212 keymap.put(0x1b, vt320.KEY_ESCAPE); // vk_escape |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
213 keymap.put(0x21, vt320.KEY_PAGE_UP); // vk_prior |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
214 keymap.put(0x22, vt320.KEY_PAGE_DOWN); // vk_next |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
215 keymap.put(0x23, vt320.KEY_END); // vk_end |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
216 keymap.put(0x24, vt320.KEY_HOME); // vk_home |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
217 keymap.put(0x25, vt320.KEY_LEFT); // vk_left |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
218 keymap.put(0x26, vt320.KEY_UP); // vk_up |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
219 keymap.put(0x27, vt320.KEY_RIGHT); // vk_right |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
220 keymap.put(0x28, vt320.KEY_DOWN); // vk_down |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
221 keymap.put(0x2d, vt320.KEY_INSERT); // vk_insert |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
222 keymap.put(0x2e, vt320.KEY_DELETE); // vk_delete |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
223 keymap.put(0x70, vt320.KEY_F1); // vk_f1 |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
224 keymap.put(0x71, vt320.KEY_F2); // vk_f2 |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
225 keymap.put(0x72, vt320.KEY_F3); // vk_f3 |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
226 keymap.put(0x73, vt320.KEY_F4); // vk_f4 |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
227 keymap.put(0x74, vt320.KEY_F5); // vk_f5 |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
228 keymap.put(0x75, vt320.KEY_F6); // vk_f6 |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
229 keymap.put(0x76, vt320.KEY_F7); // vk_f7 |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
230 keymap.put(0x77, vt320.KEY_F8); // vk_f8 |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
231 keymap.put(0x78, vt320.KEY_F9); // vk_f9 |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
232 keymap.put(0x79, vt320.KEY_F10); // vk_f10 |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
233 keymap.put(0x7a, vt320.KEY_F11); // vk_f11 |
cb3b9b660b3d
depress() keys from the terminal monitor go straight thru buffer.keyPressed() rather than detour though the key listener
Carl Byington <carl@five-ten-sg.com>
parents:
112
diff
changeset
|
234 keymap.put(0x7b, vt320.KEY_F12); // vk_f12 |
176 | 235 keymap.put(0x7c, vt320.KEY_F13); // vk_f13 |
236 keymap.put(0x7d, vt320.KEY_F14); // vk_f14 | |
237 keymap.put(0x7e, vt320.KEY_F15); // vk_f15 | |
238 keymap.put(0x7f, vt320.KEY_F16); // vk_f16 | |
239 keymap.put(0x80, vt320.KEY_F17); // vk_f17 | |
240 keymap.put(0x81, vt320.KEY_F18); // vk_f18 | |
241 keymap.put(0x82, vt320.KEY_F19); // vk_f19 | |
242 keymap.put(0x83, vt320.KEY_F20); // vk_f20 | |
243 keymap.put(0x84, vt320.KEY_F21); // vk_f21 | |
244 keymap.put(0x85, vt320.KEY_F22); // vk_f22 | |
245 keymap.put(0x86, vt320.KEY_F23); // vk_f23 | |
246 keymap.put(0x87, vt320.KEY_F24); // vk_f24 | |
0 | 247 // bind to the monitor service |
248 Intent intent = new Intent("com.five_ten_sg.connectbot.monitor.MonitorService"); | |
249 parent.bindService(intent, monitor_connection, Context.BIND_AUTO_CREATE); | |
250 Log.i(TAG, "constructor"); | |
251 } | |
252 | |
253 | |
254 public void Disconnect() { | |
255 if (monitor_reader != null) monitor_reader.closing(); | |
256 | |
257 try { | |
258 if (monitor_out != null) monitor_out.close(); | |
259 | |
260 if (monitor_in != null) monitor_in.close(); | |
261 | |
262 if (monitor_socket != null) monitor_socket.close(); | |
263 | |
264 Log.i(TAG, "disconnected from monitor socket"); | |
265 } | |
266 catch (IOException e) { | |
267 Log.e(TAG, "exception in Disconnect() closing sockets", e); | |
268 } | |
269 | |
270 monitor_reader = null; | |
271 monitor_out = null; | |
272 monitor_in = null; | |
273 monitor_socket = null; | |
274 | |
275 if (bound != null) parent.unbindService(monitor_connection); | |
276 | |
277 monitor_connection = null; | |
278 } | |
279 | |
280 | |
281 public char[] bytesToChars(byte[] b, int len) { | |
282 char[] c = new char[len >> 1]; | |
283 int bp = 0; | |
284 | |
285 for (int i = 0; i < c.length; i++) { | |
286 byte b1 = b[bp++]; | |
287 byte b2 = b[bp++]; | |
288 c[i] = (char)(((b1 & 0x00FF) << 8) + (b2 & 0x00FF)); | |
289 } | |
290 | |
291 return c; | |
292 } | |
293 | |
294 | |
295 public byte[] charsToBytes(char[] c) { | |
296 byte[] b = new byte[c.length << 1]; | |
297 int bp = 0; | |
298 | |
299 for (int i = 0; i < c.length; i++) { | |
300 b[bp++] = (byte)((c[i] & 0xff00) >> 8); | |
301 b[bp++] = (byte)(c[i] & 0x00ff); | |
302 } | |
303 | |
304 return b; | |
305 } | |
306 | |
307 | |
308 public synchronized void monitorWrite(char cmd, char[] c) { | |
309 try { | |
310 if (monitor_out != null) { | |
311 c[0] = (char)(c.length - 1); // number of chars following | |
312 c[1] = cmd; | |
313 //Log.i(TAG, String.format("sending %d command", (int)cmd)); | |
314 monitor_out.write(charsToBytes(c)); | |
315 } | |
15
1588e359a972
queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
316 else { |
1588e359a972
queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
317 c[1] = cmd; |
1588e359a972
queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
318 pending_commands.put(c); |
1588e359a972
queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
319 } |
1588e359a972
queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
320 } |
1588e359a972
queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
321 catch (InterruptedException e) { |
1588e359a972
queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
322 Log.e(TAG, "exception in monitorWrite()", e); |
0 | 323 } |
324 catch (IOException e) { | |
325 Log.i(TAG, "exception in monitorWrite(), monitor died or closed the socket", e); | |
326 | |
327 try { | |
328 monitor_out.close(); | |
329 } | |
330 catch (IOException ee) { | |
331 Log.e(TAG, "exception in monitorWrite() closing output stream", ee); | |
332 } | |
333 | |
334 monitor_out = null; | |
335 } | |
336 }; | |
337 | |
338 public void sendScreen(char cmd) { | |
339 char lines = (char)(buffer.height & 0x0000ffff); | |
340 char columns = (char)(buffer.width & 0x0000ffff); | |
341 char[] arg = new char[4 + lines * columns]; | |
342 arg[2] = lines; | |
343 arg[3] = columns; | |
344 int base = 4; | |
112
77ac18bc1b2f
cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents:
101
diff
changeset
|
345 |
0 | 346 for (int i = 0; i < lines; i++) { |
347 System.arraycopy(buffer.charArray[buffer.screenBase + i], 0, arg, base, columns); | |
348 base += columns; | |
349 } | |
112
77ac18bc1b2f
cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents:
101
diff
changeset
|
350 |
0 | 351 monitorWrite(cmd, arg); |
352 } | |
353 | |
354 public synchronized void activate() { | |
355 sendScreen(MONITOR_CMD_ACTIVATE); | |
356 } | |
357 | |
148
69333ca1563c
add ptt button p2 preference
Carl Byington <carl@five-ten-sg.com>
parents:
147
diff
changeset
|
358 public synchronized void keyState(boolean down) { |
0 | 359 char[] arg = new char[3]; |
148
69333ca1563c
add ptt button p2 preference
Carl Byington <carl@five-ten-sg.com>
parents:
147
diff
changeset
|
360 arg[2] = (char)((down) ? 1 : 0); |
147
1350adb077b1
monitor key state tracking
Carl Byington <carl@five-ten-sg.com>
parents:
145
diff
changeset
|
361 monitorWrite(MONITOR_CMD_KEYSTATE, arg); |
0 | 362 } |
363 | |
364 public synchronized void cursorMove(int l, int c) { | |
17
02717d15de9b
delay sending cursor move notifications until the host is quiet
Carl Byington <carl@five-ten-sg.com>
parents:
16
diff
changeset
|
365 to_line = l; |
16
48a8daea9221
delay sending cursor move notifications until the host is quiet
Carl Byington <carl@five-ten-sg.com>
parents:
15
diff
changeset
|
366 to_column = c; |
48a8daea9221
delay sending cursor move notifications until the host is quiet
Carl Byington <carl@five-ten-sg.com>
parents:
15
diff
changeset
|
367 } |
48a8daea9221
delay sending cursor move notifications until the host is quiet
Carl Byington <carl@five-ten-sg.com>
parents:
15
diff
changeset
|
368 |
48a8daea9221
delay sending cursor move notifications until the host is quiet
Carl Byington <carl@five-ten-sg.com>
parents:
15
diff
changeset
|
369 public void cursorMoved() { |
0 | 370 char[] arg = new char[4]; |
18
49fc5fba28f3
delay sending cursor move notifications until the host is quiet
Carl Byington <carl@five-ten-sg.com>
parents:
17
diff
changeset
|
371 arg[2] = (char)(to_line & 0x0000ffff); |
49fc5fba28f3
delay sending cursor move notifications until the host is quiet
Carl Byington <carl@five-ten-sg.com>
parents:
17
diff
changeset
|
372 arg[3] = (char)(to_column & 0x0000ffff); |
0 | 373 monitorWrite(MONITOR_CMD_CURSORMOVE, arg); |
374 } | |
375 | |
376 public synchronized void testChanged() { | |
377 if (modified) { | |
378 modified = false; | |
379 sendScreen(MONITOR_CMD_SCREENCHANGE); | |
16
48a8daea9221
delay sending cursor move notifications until the host is quiet
Carl Byington <carl@five-ten-sg.com>
parents:
15
diff
changeset
|
380 cursorMoved(); |
48a8daea9221
delay sending cursor move notifications until the host is quiet
Carl Byington <carl@five-ten-sg.com>
parents:
15
diff
changeset
|
381 } |
0 | 382 } |
383 | |
384 public synchronized void screenChanged(int llow, int lhigh, int clow, int chigh) { | |
385 if ((start_line <= lhigh) && (llow <= end_line) && (start_column <= chigh) && (clow <= end_column)) { | |
386 modified = true; | |
387 } | |
388 } | |
389 | |
390 public synchronized void screenChanged(int l, int c) { | |
391 screenChanged(l, l, c, c); | |
392 } | |
393 | |
394 public synchronized void setField(int l, int c, char[] data, int offset) { | |
395 Log.i(TAG, "setField()"); | |
101 | 396 char[] da = new char[data.length - offset]; |
210
af235340fcde
use array copy rather than loops
Carl Byington <carl@five-ten-sg.com>
parents:
205
diff
changeset
|
397 System.arraycopy(data, offset, da, 0, data.length-offset); |
211
7e4352b53f24
unsigned short -1 is 65535
Carl Byington <carl@five-ten-sg.com>
parents:
210
diff
changeset
|
398 if (l > 60000) l = -1; |
7e4352b53f24
unsigned short -1 is 65535
Carl Byington <carl@five-ten-sg.com>
parents:
210
diff
changeset
|
399 if (c > 60000) c = -1; |
100 | 400 buffer.setField(l, c, da); |
0 | 401 } |
402 | |
155 | 403 public synchronized void showUrl(char [] data, int offset) { |
404 Log.i(TAG, "setField()"); | |
405 char[] da = new char[data.length - offset]; | |
210
af235340fcde
use array copy rather than loops
Carl Byington <carl@five-ten-sg.com>
parents:
205
diff
changeset
|
406 System.arraycopy(data, offset, da, 0, data.length-offset); |
155 | 407 String url = new String(da); |
408 Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); | |
409 parent.startActivity(intent); | |
410 } | |
411 | |
0 | 412 public synchronized void getField(int l, int c, int len) { |
413 Log.i(TAG, "getField()"); | |
414 char[] arg2 = new char[4 + len]; | |
415 arg2[2] = (char)(l & 0x0000ffff); | |
416 arg2[3] = (char)(c & 0x0000ffff); | |
417 int base = 4; | |
418 System.arraycopy(buffer.charArray[buffer.screenBase + l], c, arg2, base, len); | |
419 monitorWrite(MONITOR_CMD_FIELDVALUE, arg2); | |
420 } | |
421 | |
422 public synchronized void screenWatch(int l, int c, int len) { | |
423 Log.i(TAG, "screenWatch()"); | |
424 start_line = l; | |
425 end_line = l; | |
426 start_column = c; | |
427 end_column = c + len - 1; | |
428 } | |
429 | |
430 public synchronized void depress(int vk_key) { | |
431 Log.i(TAG, String.format("depress() %d", vk_key)); | |
432 Integer x = keymap.get(new Integer(vk_key)); | |
175
2a7199ad90be
send cursor movement caused by user keystrokes to the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
174
diff
changeset
|
433 if (x != null) buffer.keyDepressed(x, ' ', 0); |
0 | 434 } |
172
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
435 |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
436 public synchronized void switchSession() { |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
437 Log.i(TAG, "switchSession()"); |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
438 Intent intent = new Intent(parent, ConsoleActivity.class); |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
439 intent.setAction(Intent.ACTION_VIEW); |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
440 intent.setData(host.getUri()); |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
441 parent.startActivity(intent); |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
442 } |
cb9e359ea2bd
add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents:
155
diff
changeset
|
443 |
205
f86f1e37b504
add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents:
176
diff
changeset
|
444 |
f86f1e37b504
add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents:
176
diff
changeset
|
445 public synchronized void cursorRequest() { |
f86f1e37b504
add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents:
176
diff
changeset
|
446 Log.i(TAG, "cursorRequest()"); |
212
4ecd8a39afb3
cursor movement reporting changes
Carl Byington <carl@five-ten-sg.com>
parents:
211
diff
changeset
|
447 cursorMoved(); |
205
f86f1e37b504
add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents:
176
diff
changeset
|
448 } |
f86f1e37b504
add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents:
176
diff
changeset
|
449 |
0 | 450 } |