annotate src/com/five_ten_sg/connectbot/service/TerminalMonitor.java @ 205:f86f1e37b504

add cursor request command to the TE
author Carl Byington <carl@five-ten-sg.com>
date Thu, 03 Jul 2014 08:46:25 -0700
parents 6e07ea418b90
children af235340fcde
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
1 package com.five_ten_sg.connectbot.service;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
2
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
3 import android.content.ComponentName;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
4 import android.content.Context;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
5 import android.content.Intent;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
6 import android.content.ServiceConnection;
155
156b53fc4815 add showurl command
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
7 import android.net.Uri;
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
8 import android.os.IBinder;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
9 import android.util.Log;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
10 import android.view.View;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
11 import de.mud.terminal.vt320;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
12 import java.io.IOException;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
13 import java.io.InputStream;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
14 import java.io.OutputStream;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
15 import java.net.InetAddress;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
16 import java.net.Socket;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
17 import java.nio.charset.Charset;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
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
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
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
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
27 public class TerminalMonitor {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
28 public final static String TAG = "ConnectBot.TerminalMonitor";
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
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
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
43
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
44 private static final int MONITORPORT = 6000;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
45 private static final String LOCALHOST = "127.0.0.1";
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
46
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
47 private Context parent = null;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
48 private vt320 buffer = null;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
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
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
51 private String init = null;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
52 private int start_line = 0; // monitor part of the screen for changes
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
53 private int end_line = 500; // ""
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
54 private int start_column = 0; // ""
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
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 boolean moved = false; // used to delay cursor moved notifications
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_line = 0; // ""
48a8daea9221 delay sending cursor move notifications until the host is quiet
Carl Byington <carl@five-ten-sg.com>
parents: 15
diff changeset
59 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
60 private HashMap<Integer, Integer> keymap = null; // map MS VK_ keys to vt320 virtual keys
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
61 private IBinder bound = null;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
62 private Socket monitor_socket = null;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
63 private InputStream monitor_in = null;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
64 private OutputStream monitor_out = null;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
65 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
66 private BlockingQueue<char[]> pending_commands = new ArrayBlockingQueue<char[]>(100);
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
67 private MyServiceConnection monitor_connection = new MyServiceConnection();
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
68
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
69 class MyReader extends Thread {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
70 private InputStream monitor_in;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
71 private byte[] b;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
72 private boolean is_closing = false;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
73
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
74 public MyReader(InputStream monitor_in) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
75 this.monitor_in = monitor_in;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
76 b = new byte[100];
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
77 Log.i(TAG, "MyReader constructor");
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
78 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
79
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
80 public void closing() {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
81 is_closing = true;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
82 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
83
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
84 private char[] forceRead(int len) throws IOException {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
85 int len2 = len * 2;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
86 int off = 0;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
87
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
88 if (b.length < len2) b = new byte[len2];
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
89
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
90 while (off < len2) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
91 int l = monitor_in.read(b, off, len2 - off);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
92
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
93 if (l < 0) throw new IOException("eof");
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
94
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
95 off += l;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
96 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
97
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
98 return bytesToChars(b, len2);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
99 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
100
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
101 public void run() {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
102 while (true) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
103 try {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
104 char[] len = forceRead(1);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
105 char[] packet = forceRead(len[0]);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
106 char cmd = packet[0];
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
107 Log.i(TAG, String.format("received %d command", (int)cmd));
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
108
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
109 switch (cmd) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
110 case MONITOR_CMD_SETFIELD:
153
3ca280646f2d allow zero length setfield
Carl Byington <carl@five-ten-sg.com>
parents: 148
diff changeset
111 if (packet.length >= 3)
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
112 setField(packet[1], packet[2], packet, 3);
112
77ac18bc1b2f cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents: 101
diff changeset
113
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
114 break;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
115
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
116 case MONITOR_CMD_GETFIELD:
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
117 if (packet.length == 4)
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
118 getField(packet[1], packet[2], packet[3]);
112
77ac18bc1b2f cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents: 101
diff changeset
119
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
120 break;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
121
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
122 case MONITOR_CMD_SCREENWATCH:
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
123 if (packet.length == 4)
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
124 screenWatch(packet[1], packet[2], packet[3]);
112
77ac18bc1b2f cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents: 101
diff changeset
125
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
126 break;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
127
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
128 case MONITOR_CMD_DEPRESS:
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
129 if (packet.length == 2)
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
130 depress(packet[1]);
112
77ac18bc1b2f cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents: 101
diff changeset
131
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
132 break;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
133
155
156b53fc4815 add showurl command
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
134 case MONITOR_CMD_SHOWURL:
156b53fc4815 add showurl command
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
135 if (packet.length > 1)
156b53fc4815 add showurl command
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
136 showUrl(packet, 1);
156b53fc4815 add showurl command
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
137
156b53fc4815 add showurl command
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
138 break;
156b53fc4815 add showurl command
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
139
173
5f26d0ba6abd add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
140 case MONITOR_CMD_SWITCHSESSION:
172
cb9e359ea2bd add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents: 155
diff changeset
141 if (packet.length == 1)
cb9e359ea2bd add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents: 155
diff changeset
142 switchSession();
cb9e359ea2bd add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents: 155
diff changeset
143
cb9e359ea2bd add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents: 155
diff changeset
144 break;
cb9e359ea2bd add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents: 155
diff changeset
145
205
f86f1e37b504 add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents: 176
diff changeset
146 case MONITOR_CMD_CURSORREQUEST:
f86f1e37b504 add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents: 176
diff changeset
147 if (packet.length == 1)
f86f1e37b504 add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents: 176
diff changeset
148 cursorRequest();
f86f1e37b504 add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents: 176
diff changeset
149
f86f1e37b504 add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents: 176
diff changeset
150 break;
f86f1e37b504 add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents: 176
diff changeset
151
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
152 default:
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
153 break;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
154 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
155 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
156 catch (IOException e) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
157 if (!is_closing) Log.e(TAG, "exception in MyReader.run()", e);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
158
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
159 break;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
160 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
161 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
162 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
163 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
164
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
165 class MyServiceConnection implements ServiceConnection {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
166 public void onServiceConnected(ComponentName className, IBinder service) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
167 bound = service;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
168 Log.i(TAG, "bound to service");
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
169
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
170 try {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
171 InetAddress serverAddr = InetAddress.getByName(LOCALHOST);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
172 monitor_socket = new Socket(serverAddr, MONITORPORT);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
173 monitor_in = monitor_socket.getInputStream();
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
174 monitor_out = monitor_socket.getOutputStream();
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
175 Log.i(TAG, "connected to monitor socket, send init " + init);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
176 monitor_reader = new MyReader(monitor_in);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
177 monitor_reader.start();
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
178 String x = " " + init;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
179 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
180 char [] c;
112
77ac18bc1b2f cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents: 101
diff changeset
181
15
1588e359a972 queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
182 while (true) {
1588e359a972 queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
183 c = pending_commands.poll();
112
77ac18bc1b2f cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents: 101
diff changeset
184
15
1588e359a972 queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
185 if (c == null) break;
112
77ac18bc1b2f cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents: 101
diff changeset
186
15
1588e359a972 queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
187 monitorWrite(c[1], c);
1588e359a972 queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
188 }
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
189 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
190 catch (IOException e) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
191 Log.e(TAG, "exception in onServiceConnected()", e);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
192 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
193 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
194 public void onServiceDisconnected(ComponentName classNam) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
195 bound = null;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
196 Log.i(TAG, "unbound from service");
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
197 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
198 };
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
199
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
200
172
cb9e359ea2bd add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents: 155
diff changeset
201 public TerminalMonitor(Context parent, vt320 buffer, View view, HostBean host, String init) {
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
202 this.parent = parent;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
203 this.buffer = buffer;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
204 this.view = view;
172
cb9e359ea2bd add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents: 155
diff changeset
205 this.host = host;
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
206 this.init = init;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
207 // 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
208 // 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
209 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
210 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
211 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
212 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
213 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
214 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
215 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
216 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
217 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
218 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
219 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
220 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
221 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
222 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
223 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
224 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
225 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
226 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
227 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
228 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
229 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
230 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
231 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
232 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
233 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
234 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
235 keymap.put(0x7b, vt320.KEY_F12); // vk_f12
176
6e07ea418b90 add f13 thru f24 keys
Carl Byington <carl@five-ten-sg.com>
parents: 175
diff changeset
236 keymap.put(0x7c, vt320.KEY_F13); // vk_f13
6e07ea418b90 add f13 thru f24 keys
Carl Byington <carl@five-ten-sg.com>
parents: 175
diff changeset
237 keymap.put(0x7d, vt320.KEY_F14); // vk_f14
6e07ea418b90 add f13 thru f24 keys
Carl Byington <carl@five-ten-sg.com>
parents: 175
diff changeset
238 keymap.put(0x7e, vt320.KEY_F15); // vk_f15
6e07ea418b90 add f13 thru f24 keys
Carl Byington <carl@five-ten-sg.com>
parents: 175
diff changeset
239 keymap.put(0x7f, vt320.KEY_F16); // vk_f16
6e07ea418b90 add f13 thru f24 keys
Carl Byington <carl@five-ten-sg.com>
parents: 175
diff changeset
240 keymap.put(0x80, vt320.KEY_F17); // vk_f17
6e07ea418b90 add f13 thru f24 keys
Carl Byington <carl@five-ten-sg.com>
parents: 175
diff changeset
241 keymap.put(0x81, vt320.KEY_F18); // vk_f18
6e07ea418b90 add f13 thru f24 keys
Carl Byington <carl@five-ten-sg.com>
parents: 175
diff changeset
242 keymap.put(0x82, vt320.KEY_F19); // vk_f19
6e07ea418b90 add f13 thru f24 keys
Carl Byington <carl@five-ten-sg.com>
parents: 175
diff changeset
243 keymap.put(0x83, vt320.KEY_F20); // vk_f20
6e07ea418b90 add f13 thru f24 keys
Carl Byington <carl@five-ten-sg.com>
parents: 175
diff changeset
244 keymap.put(0x84, vt320.KEY_F21); // vk_f21
6e07ea418b90 add f13 thru f24 keys
Carl Byington <carl@five-ten-sg.com>
parents: 175
diff changeset
245 keymap.put(0x85, vt320.KEY_F22); // vk_f22
6e07ea418b90 add f13 thru f24 keys
Carl Byington <carl@five-ten-sg.com>
parents: 175
diff changeset
246 keymap.put(0x86, vt320.KEY_F23); // vk_f23
6e07ea418b90 add f13 thru f24 keys
Carl Byington <carl@five-ten-sg.com>
parents: 175
diff changeset
247 keymap.put(0x87, vt320.KEY_F24); // vk_f24
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
248 // bind to the monitor service
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
249 Intent intent = new Intent("com.five_ten_sg.connectbot.monitor.MonitorService");
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
250 parent.bindService(intent, monitor_connection, Context.BIND_AUTO_CREATE);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
251 Log.i(TAG, "constructor");
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
252 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
253
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
254
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
255 public void Disconnect() {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
256 if (monitor_reader != null) monitor_reader.closing();
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
257
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
258 try {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
259 if (monitor_out != null) monitor_out.close();
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
260
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
261 if (monitor_in != null) monitor_in.close();
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
262
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
263 if (monitor_socket != null) monitor_socket.close();
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
264
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
265 Log.i(TAG, "disconnected from monitor socket");
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
266 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
267 catch (IOException e) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
268 Log.e(TAG, "exception in Disconnect() closing sockets", e);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
269 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
270
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
271 monitor_reader = null;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
272 monitor_out = null;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
273 monitor_in = null;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
274 monitor_socket = null;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
275
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
276 if (bound != null) parent.unbindService(monitor_connection);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
277
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
278 monitor_connection = null;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
279 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
280
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
281
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
282 public char[] bytesToChars(byte[] b, int len) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
283 char[] c = new char[len >> 1];
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
284 int bp = 0;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
285
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
286 for (int i = 0; i < c.length; i++) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
287 byte b1 = b[bp++];
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
288 byte b2 = b[bp++];
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
289 c[i] = (char)(((b1 & 0x00FF) << 8) + (b2 & 0x00FF));
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
290 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
291
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
292 return c;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
293 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
294
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
295
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
296 public byte[] charsToBytes(char[] c) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
297 byte[] b = new byte[c.length << 1];
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
298 int bp = 0;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
299
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
300 for (int i = 0; i < c.length; i++) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
301 b[bp++] = (byte)((c[i] & 0xff00) >> 8);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
302 b[bp++] = (byte)(c[i] & 0x00ff);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
303 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
304
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
305 return b;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
306 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
307
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
308
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
309 public synchronized void monitorWrite(char cmd, char[] c) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
310 try {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
311 if (monitor_out != null) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
312 c[0] = (char)(c.length - 1); // number of chars following
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
313 c[1] = cmd;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
314 //Log.i(TAG, String.format("sending %d command", (int)cmd));
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
315 monitor_out.write(charsToBytes(c));
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
316 }
15
1588e359a972 queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
317 else {
1588e359a972 queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
318 c[1] = cmd;
1588e359a972 queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
319 pending_commands.put(c);
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 }
1588e359a972 queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
322 catch (InterruptedException e) {
1588e359a972 queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
323 Log.e(TAG, "exception in monitorWrite()", e);
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
324 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
325 catch (IOException e) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
326 Log.i(TAG, "exception in monitorWrite(), monitor died or closed the socket", e);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
327
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
328 try {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
329 monitor_out.close();
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
330 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
331 catch (IOException ee) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
332 Log.e(TAG, "exception in monitorWrite() closing output stream", ee);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
333 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
334
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
335 monitor_out = null;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
336 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
337 };
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
338
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
339 public void sendScreen(char cmd) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
340 char lines = (char)(buffer.height & 0x0000ffff);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
341 char columns = (char)(buffer.width & 0x0000ffff);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
342 char[] arg = new char[4 + lines * columns];
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
343 arg[2] = lines;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
344 arg[3] = columns;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
345 int base = 4;
112
77ac18bc1b2f cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents: 101
diff changeset
346
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
347 for (int i = 0; i < lines; i++) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
348 System.arraycopy(buffer.charArray[buffer.screenBase + i], 0, arg, base, columns);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
349 base += columns;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
350 }
112
77ac18bc1b2f cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents: 101
diff changeset
351
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
352 monitorWrite(cmd, arg);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
353 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
354
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
355 public synchronized void activate() {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
356 sendScreen(MONITOR_CMD_ACTIVATE);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
357 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
358
148
69333ca1563c add ptt button p2 preference
Carl Byington <carl@five-ten-sg.com>
parents: 147
diff changeset
359 public synchronized void keyState(boolean down) {
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
360 char[] arg = new char[3];
148
69333ca1563c add ptt button p2 preference
Carl Byington <carl@five-ten-sg.com>
parents: 147
diff changeset
361 arg[2] = (char)((down) ? 1 : 0);
147
1350adb077b1 monitor key state tracking
Carl Byington <carl@five-ten-sg.com>
parents: 145
diff changeset
362 monitorWrite(MONITOR_CMD_KEYSTATE, arg);
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
363 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
364
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
365 public synchronized void cursorMove(int l, int c) {
16
48a8daea9221 delay sending cursor move notifications until the host is quiet
Carl Byington <carl@five-ten-sg.com>
parents: 15
diff changeset
366 moved = true;
17
02717d15de9b delay sending cursor move notifications until the host is quiet
Carl Byington <carl@five-ten-sg.com>
parents: 16
diff changeset
367 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
368 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
369 }
48a8daea9221 delay sending cursor move notifications until the host is quiet
Carl Byington <carl@five-ten-sg.com>
parents: 15
diff changeset
370
48a8daea9221 delay sending cursor move notifications until the host is quiet
Carl Byington <carl@five-ten-sg.com>
parents: 15
diff changeset
371 public void cursorMoved() {
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
372 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
373 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
374 arg[3] = (char)(to_column & 0x0000ffff);
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
375 monitorWrite(MONITOR_CMD_CURSORMOVE, arg);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
376 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
377
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
378 public synchronized void testChanged() {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
379 if (modified) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
380 modified = false;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
381 sendScreen(MONITOR_CMD_SCREENCHANGE);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
382 }
112
77ac18bc1b2f cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents: 101
diff changeset
383
16
48a8daea9221 delay sending cursor move notifications until the host is quiet
Carl Byington <carl@five-ten-sg.com>
parents: 15
diff changeset
384 if (moved) {
48a8daea9221 delay sending cursor move notifications until the host is quiet
Carl Byington <carl@five-ten-sg.com>
parents: 15
diff changeset
385 moved = false;
48a8daea9221 delay sending cursor move notifications until the host is quiet
Carl Byington <carl@five-ten-sg.com>
parents: 15
diff changeset
386 cursorMoved();
48a8daea9221 delay sending cursor move notifications until the host is quiet
Carl Byington <carl@five-ten-sg.com>
parents: 15
diff changeset
387 }
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
388 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
389
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
390 public synchronized void screenChanged(int llow, int lhigh, int clow, int chigh) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
391 if ((start_line <= lhigh) && (llow <= end_line) && (start_column <= chigh) && (clow <= end_column)) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
392 modified = true;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
393 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
394 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
395
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
396 public synchronized void screenChanged(int l, int c) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
397 screenChanged(l, l, c, c);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
398 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
399
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
400 public synchronized void setField(int l, int c, char[] data, int offset) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
401 Log.i(TAG, "setField()");
101
f0ec55006f31 finish setField()
Carl Byington <carl@five-ten-sg.com>
parents: 100
diff changeset
402 char[] da = new char[data.length - offset];
15
1588e359a972 queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
403 int i;
112
77ac18bc1b2f cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents: 101
diff changeset
404
77ac18bc1b2f cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents: 101
diff changeset
405 for (i = 0; i < da.length; i++) {
77ac18bc1b2f cleanup java formatting
Carl Byington <carl@five-ten-sg.com>
parents: 101
diff changeset
406 da[i] = data[i + offset];
15
1588e359a972 queue pending monitor commands until socket is open
Carl Byington <carl@five-ten-sg.com>
parents: 0
diff changeset
407 }
145
4dfa4dd791c1 testing setfield functions
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
408
100
9204fe526e65 finish setField()
Carl Byington <carl@five-ten-sg.com>
parents: 79
diff changeset
409 buffer.setField(l, c, da);
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
410 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
411
155
156b53fc4815 add showurl command
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
412 public synchronized void showUrl(char [] data, int offset) {
156b53fc4815 add showurl command
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
413 Log.i(TAG, "setField()");
156b53fc4815 add showurl command
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
414 char[] da = new char[data.length - offset];
156b53fc4815 add showurl command
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
415 int i;
156b53fc4815 add showurl command
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
416
156b53fc4815 add showurl command
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
417 for (i = 0; i < da.length; i++) {
156b53fc4815 add showurl command
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
418 da[i] = data[i + offset];
156b53fc4815 add showurl command
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
419 }
156b53fc4815 add showurl command
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
420 String url = new String(da);
156b53fc4815 add showurl command
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
421 Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
156b53fc4815 add showurl command
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
422 parent.startActivity(intent);
156b53fc4815 add showurl command
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
423 }
156b53fc4815 add showurl command
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
424
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
425 public synchronized void getField(int l, int c, int len) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
426 Log.i(TAG, "getField()");
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
427 char[] arg2 = new char[4 + len];
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
428 arg2[2] = (char)(l & 0x0000ffff);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
429 arg2[3] = (char)(c & 0x0000ffff);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
430 int base = 4;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
431 System.arraycopy(buffer.charArray[buffer.screenBase + l], c, arg2, base, len);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
432 monitorWrite(MONITOR_CMD_FIELDVALUE, arg2);
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
433 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
434
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
435 public synchronized void screenWatch(int l, int c, int len) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
436 Log.i(TAG, "screenWatch()");
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
437 start_line = l;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
438 end_line = l;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
439 start_column = c;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
440 end_column = c + len - 1;
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
441 }
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
442
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
443 public synchronized void depress(int vk_key) {
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
444 Log.i(TAG, String.format("depress() %d", vk_key));
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
445 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
446 if (x != null) buffer.keyDepressed(x, ' ', 0);
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
447 }
172
cb9e359ea2bd add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents: 155
diff changeset
448
cb9e359ea2bd add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents: 155
diff changeset
449 public synchronized void switchSession() {
cb9e359ea2bd add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents: 155
diff changeset
450 Log.i(TAG, "switchSession()");
cb9e359ea2bd add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents: 155
diff changeset
451 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
452 intent.setAction(Intent.ACTION_VIEW);
cb9e359ea2bd add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents: 155
diff changeset
453 intent.setData(host.getUri());
cb9e359ea2bd add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents: 155
diff changeset
454 parent.startActivity(intent);
cb9e359ea2bd add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents: 155
diff changeset
455 }
cb9e359ea2bd add switch session command from the monitor
Carl Byington <carl@five-ten-sg.com>
parents: 155
diff changeset
456
205
f86f1e37b504 add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents: 176
diff changeset
457
f86f1e37b504 add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents: 176
diff changeset
458 public synchronized void cursorRequest() {
f86f1e37b504 add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents: 176
diff changeset
459 Log.i(TAG, "cursorRequest()");
f86f1e37b504 add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents: 176
diff changeset
460 testChanged();
f86f1e37b504 add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents: 176
diff changeset
461 }
f86f1e37b504 add cursor request command to the TE
Carl Byington <carl@five-ten-sg.com>
parents: 176
diff changeset
462
0
0ce5cc452d02 initial version
Carl Byington <carl@five-ten-sg.com>
parents:
diff changeset
463 }