Mercurial > 510Connectbot
annotate src/org/tn5250j/framework/tn5250/tnvt.java @ 100:9204fe526e65
finish setField()
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Tue, 17 Jun 2014 15:57:18 -0700 |
parents | eda03b809f48 |
children | 1a34365fab9b |
rev | line source |
---|---|
3 | 1 /** |
2 * Title: tnvt.java | |
3 * Copyright: Copyright (c) 2001 Company: | |
4 * | |
5 * @author Kenneth J. Pouncey | |
6 * @version 0.5 | |
7 * | |
8 * Description: | |
9 * | |
10 * This program is free software; you can redistribute it and/or modify it under | |
11 * the terms of the GNU General Public License as published by the Free Software | |
12 * Foundation; either version 2, or (at your option) any later version. | |
13 * | |
14 * This program is distributed in the hope that it will be useful, but WITHOUT | |
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | |
16 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more | |
17 * details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License along with | |
20 * this software; see the file COPYING. If not, write to the Free Software | |
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
22 * | |
23 */ | |
24 package org.tn5250j.framework.tn5250; | |
25 | |
26 import static org.tn5250j.TN5250jConstants.AID_HELP; | |
27 import static org.tn5250j.TN5250jConstants.AID_PRINT; | |
28 import static org.tn5250j.TN5250jConstants.CMD_CLEAR_FORMAT_TABLE; | |
29 import static org.tn5250j.TN5250jConstants.CMD_CLEAR_UNIT; | |
30 import static org.tn5250j.TN5250jConstants.CMD_CLEAR_UNIT_ALTERNATE; | |
31 import static org.tn5250j.TN5250jConstants.CMD_READ_INPUT_FIELDS; | |
32 import static org.tn5250j.TN5250jConstants.CMD_READ_MDT_FIELDS; | |
33 import static org.tn5250j.TN5250jConstants.CMD_READ_MDT_IMMEDIATE_ALT; | |
34 import static org.tn5250j.TN5250jConstants.CMD_READ_SCREEN_IMMEDIATE; | |
35 import static org.tn5250j.TN5250jConstants.CMD_READ_SCREEN_TO_PRINT; | |
36 import static org.tn5250j.TN5250jConstants.CMD_RESTORE_SCREEN; | |
37 import static org.tn5250j.TN5250jConstants.CMD_ROLL; | |
38 import static org.tn5250j.TN5250jConstants.CMD_SAVE_SCREEN; | |
39 import static org.tn5250j.TN5250jConstants.CMD_WRITE_ERROR_CODE; | |
40 import static org.tn5250j.TN5250jConstants.CMD_WRITE_ERROR_CODE_TO_WINDOW; | |
41 import static org.tn5250j.TN5250jConstants.CMD_WRITE_STRUCTURED_FIELD; | |
42 import static org.tn5250j.TN5250jConstants.CMD_WRITE_TO_DISPLAY; | |
43 import static org.tn5250j.TN5250jConstants.NR_REQUEST_ERROR; | |
44 import static org.tn5250j.TN5250jConstants.PF1; | |
45 import static org.tn5250j.TN5250jConstants.PF10; | |
46 import static org.tn5250j.TN5250jConstants.PF11; | |
47 import static org.tn5250j.TN5250jConstants.PF12; | |
48 import static org.tn5250j.TN5250jConstants.PF13; | |
49 import static org.tn5250j.TN5250jConstants.PF14; | |
50 import static org.tn5250j.TN5250jConstants.PF15; | |
51 import static org.tn5250j.TN5250jConstants.PF16; | |
52 import static org.tn5250j.TN5250jConstants.PF17; | |
53 import static org.tn5250j.TN5250jConstants.PF18; | |
54 import static org.tn5250j.TN5250jConstants.PF19; | |
55 import static org.tn5250j.TN5250jConstants.PF2; | |
56 import static org.tn5250j.TN5250jConstants.PF20; | |
57 import static org.tn5250j.TN5250jConstants.PF21; | |
58 import static org.tn5250j.TN5250jConstants.PF22; | |
59 import static org.tn5250j.TN5250jConstants.PF23; | |
60 import static org.tn5250j.TN5250jConstants.PF24; | |
61 import static org.tn5250j.TN5250jConstants.PF3; | |
62 import static org.tn5250j.TN5250jConstants.PF4; | |
63 import static org.tn5250j.TN5250jConstants.PF5; | |
64 import static org.tn5250j.TN5250jConstants.PF6; | |
65 import static org.tn5250j.TN5250jConstants.PF7; | |
66 import static org.tn5250j.TN5250jConstants.PF8; | |
67 import static org.tn5250j.TN5250jConstants.PF9; | |
68 | |
69 import java.io.BufferedInputStream; | |
70 import java.io.BufferedOutputStream; | |
71 import java.io.ByteArrayOutputStream; | |
72 import java.io.IOException; | |
73 import java.io.InputStream; | |
74 import java.io.OutputStream; | |
75 import java.net.Socket; | |
76 import java.util.Arrays; | |
77 import java.util.Properties; | |
78 import java.util.concurrent.ArrayBlockingQueue; | |
79 import java.util.concurrent.BlockingQueue; | |
99
eda03b809f48
move blocking test from socket read to queue take
Carl Byington <carl@five-ten-sg.com>
parents:
91
diff
changeset
|
80 import java.util.concurrent.TimeUnit; |
3 | 81 import javax.net.ssl.SSLSocket; |
82 | |
71
7ae9b0c382ec
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
69
diff
changeset
|
83 import android.content.Intent; |
7ae9b0c382ec
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
69
diff
changeset
|
84 import android.net.Uri; |
7ae9b0c382ec
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
69
diff
changeset
|
85 import android.util.Log; |
7ae9b0c382ec
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
69
diff
changeset
|
86 |
24 | 87 import com.five_ten_sg.connectbot.R; |
8 | 88 import com.five_ten_sg.connectbot.service.TerminalBridge; |
89 import com.five_ten_sg.connectbot.service.TerminalManager; | |
71
7ae9b0c382ec
use 5250 encryption config entry
Carl Byington <carl@five-ten-sg.com>
parents:
69
diff
changeset
|
90 import de.mud.terminal.vt320; |
8 | 91 |
3 | 92 import org.tn5250j.TN5250jConstants; |
93 import org.tn5250j.encoding.CharMappings; | |
94 import org.tn5250j.encoding.ICodePage; | |
95 import org.tn5250j.framework.transport.SocketConnector; | |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
96 |
3 | 97 |
98 public final class tnvt implements Runnable { | |
26
9ae1c889a64c
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
25
diff
changeset
|
99 private static final String TAG = "tnvt"; |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
100 // negotiating commands |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
101 private static final byte IAC = (byte) -1; // 255 FF |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
102 private static final byte DONT = (byte) -2; //254 FE |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
103 private static final byte DO = (byte) -3; //253 FD |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
104 private static final byte WONT = (byte) -4; //252 FC |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
105 private static final byte WILL = (byte) -5; //251 FB |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
106 private static final byte SB = (byte) -6; //250 Sub Begin FA |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
107 private static final byte SE = (byte) -16; //240 Sub End F0 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
108 private static final byte EOR = (byte) -17; //239 End of Record EF |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
109 private static final byte TERMINAL_TYPE = (byte) 24; // 18 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
110 private static final byte OPT_END_OF_RECORD = (byte) 25; // 19 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
111 private static final byte TRANSMIT_BINARY = (byte) 0; // 0 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
112 private static final byte QUAL_IS = (byte) 0; // 0 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
113 private static final byte TIMING_MARK = (byte) 6; // 6 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
114 private static final byte NEW_ENVIRONMENT = (byte) 39; // 27 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
115 private static final byte IS = (byte) 0; // 0 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
116 private static final byte SEND = (byte) 1; // 1 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
117 private static final byte INFO = (byte) 2; // 2 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
118 private static final byte VAR = (byte) 0; // 0 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
119 private static final byte VALUE = (byte) 1; // 1 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
120 private static final byte NEGOTIATE_ESC = (byte) 2; // 2 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
121 private static final byte USERVAR = (byte) 3; // 3 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
122 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
123 // miscellaneous |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
124 private static final byte ESC = 0x04; // 04 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
125 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
126 private Socket sock; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
127 public BufferedInputStream bin; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
128 public BufferedOutputStream bout; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
129 private final BlockingQueue<Object> dsq = new ArrayBlockingQueue<Object>(25); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
130 private Stream5250 bk; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
131 private DataStreamProducer producer; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
132 protected Screen5250 screen52; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
133 private boolean waitingForInput; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
134 private boolean invited; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
135 private boolean negotiated = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
136 private Thread me; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
137 private Thread pthread; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
138 private int readType; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
139 private boolean enhanced = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
140 private boolean cursorOn = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
141 private String hostname = ""; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
142 private int port = 23; |
99
eda03b809f48
move blocking test from socket read to queue take
Carl Byington <carl@five-ten-sg.com>
parents:
91
diff
changeset
|
143 private vt320 buffer; |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
144 private boolean connected = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
145 private boolean support132 = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
146 private ByteArrayOutputStream baosp = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
147 private ByteArrayOutputStream baosrsp = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
148 private int devSeq = -1; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
149 private String devName; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
150 private String devNameUsed; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
151 private KbdTypesCodePages kbdTypesCodePage; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
152 // WVL - LDC : TR.000300 : Callback scenario from 5250 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
153 private boolean scan; // = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
154 private static int STRSCAN = 1; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
155 // WVL - LDC : 05/08/2005 : TFX.006253 - support STRPCCMD |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
156 private boolean strpccmd; // = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
157 private String user; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
158 private String password; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
159 private String library; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
160 private String initialMenu; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
161 private String program; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
162 private boolean keepTrucking = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
163 private boolean pendingUnlock = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
164 private boolean[] dataIncluded; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
165 protected ICodePage codePage; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
166 private boolean firstScreen; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
167 private String sslType; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
168 private WTDSFParser sfParser; |
8 | 169 private TerminalBridge bridge; |
170 private TerminalManager manager; | |
3 | 171 |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
172 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
173 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
174 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
175 * @param screen52 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
176 * @param enhanced |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
177 * @param support132 |
10 | 178 * @param bridge |
179 * @param manager | |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
180 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
181 public tnvt(Screen5250 screen52, boolean enhanced, boolean support132, TerminalBridge bridge, TerminalManager manager) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
182 this.screen52 = screen52; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
183 this.support132 = support132; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
184 this.enhanced = enhanced; |
8 | 185 this.bridge = bridge; |
186 this.manager = manager; | |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
187 setCodePage("37"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
188 dataIncluded = new boolean[24]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
189 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
190 if (System.getProperties().containsKey("SESSION_CONNECT_USER")) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
191 user = System.getProperties().getProperty("SESSION_CONNECT_USER"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
192 if (System.getProperties().containsKey("SESSION_CONNECT_PASSWORD")) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
193 password = System.getProperties().getProperty( |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
194 "SESSION_CONNECT_PASSWORD"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
195 if (System.getProperties().containsKey("SESSION_CONNECT_LIBRARY")) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
196 library = System.getProperties().getProperty( |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
197 "SESSION_CONNECT_LIBRARY"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
198 if (System.getProperties().containsKey("SESSION_CONNECT_MENU")) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
199 initialMenu = System.getProperties().getProperty( |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
200 "SESSION_CONNECT_MENU"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
201 if (System.getProperties().containsKey("SESSION_CONNECT_PROGRAM")) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
202 program = System.getProperties().getProperty( |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
203 "SESSION_CONNECT_PROGRAM"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
204 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
205 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
206 baosp = new ByteArrayOutputStream(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
207 baosrsp = new ByteArrayOutputStream(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
208 } |
3 | 209 |
10 | 210 public void showURL(String url) { |
211 if (url.indexOf("://") < 0) url = "http://" + url; | |
212 Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); | |
213 manager.startActivity(intent); | |
214 } | |
215 | |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
216 public String getHostName() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
217 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
218 return hostname; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
219 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
220 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
221 public void setDeviceName(String name) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
222 devName = name; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
223 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
224 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
225 public String getDeviceName() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
226 return devName; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
227 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
228 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
229 public String getAllocatedDeviceName() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
230 return devNameUsed; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
231 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
232 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
233 public boolean isConnected() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
234 return connected; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
235 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
236 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
237 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
238 * @return true when SSL is used and socket is connected. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
239 * @see {@link #isConnected()} |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
240 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
241 public boolean isSslSocket() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
242 if (this.connected && this.sock != null && this.sock instanceof SSLSocket) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
243 return true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
244 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
245 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
246 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
247 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
248 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
249 public final void setProxy(String proxyHost, String proxyPort) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
250 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
251 Properties systemProperties = System.getProperties(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
252 systemProperties.put("socksProxySet", "true"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
253 systemProperties.put("socksProxyHost", proxyHost); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
254 systemProperties.put("socksProxyPort", proxyPort); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
255 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
256 System.setProperties(systemProperties); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
257 Log.i(TAG," socks set "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
258 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
259 |
91
33eb63352be5
remove 5250 configuration
Carl Byington <carl@five-ten-sg.com>
parents:
71
diff
changeset
|
260 public final boolean connect(String hostname, int port, String encryption, String homeDirectory, vt320 buffer) { |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
261 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
262 this.hostname = hostname; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
263 this.port = port; |
99
eda03b809f48
move blocking test from socket read to queue take
Carl Byington <carl@five-ten-sg.com>
parents:
91
diff
changeset
|
264 this.buffer = buffer; |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
265 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
266 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
267 screen52.getOIA().setInputInhibited(ScreenOIA.INPUTINHIBITED_SYSTEM_WAIT, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
268 ScreenOIA.OIA_LEVEL_INPUT_INHIBITED,"X - Connecting"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
269 } catch (Exception exc) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
270 Log.w(TAG,"setStatus(ON) " + exc.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
271 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
272 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
273 SocketConnector sc = new SocketConnector(); |
91
33eb63352be5
remove 5250 configuration
Carl Byington <carl@five-ten-sg.com>
parents:
71
diff
changeset
|
274 sock = sc.createSocket(hostname, port, encryption, homeDirectory, bridge, manager); |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
275 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
276 if (sock == null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
277 Log.w(TAG,"I did not get a socket"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
278 disconnect(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
279 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
280 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
281 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
282 connected = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
283 // used for JDK1.3 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
284 sock.setKeepAlive(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
285 sock.setTcpNoDelay(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
286 sock.setSoLinger(false, 0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
287 InputStream in = sock.getInputStream(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
288 OutputStream out = sock.getOutputStream(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
289 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
290 bin = new BufferedInputStream(in, 8192); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
291 bout = new BufferedOutputStream(out); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
292 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
293 byte abyte0[]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
294 while (negotiate(abyte0 = readNegotiations())); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
295 negotiated = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
296 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
297 screen52.setCursorActive(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
298 } catch (Exception excc) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
299 Log.w(TAG,"setCursorOff " + excc.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
300 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
301 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
302 |
99
eda03b809f48
move blocking test from socket read to queue take
Carl Byington <carl@five-ten-sg.com>
parents:
91
diff
changeset
|
303 producer = new DataStreamProducer(this, bin, dsq, abyte0); |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
304 pthread = new Thread(producer); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
305 // pthread.setPriority(pthread.MIN_PRIORITY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
306 pthread.setPriority(Thread.NORM_PRIORITY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
307 // pthread.setPriority(Thread.NORM_PRIORITY / 2); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
308 pthread.start(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
309 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
310 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
311 screen52.getOIA().setInputInhibited(ScreenOIA.INPUTINHIBITED_NOTINHIBITED, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
312 ScreenOIA.OIA_LEVEL_INPUT_INHIBITED); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
313 } catch (Exception exc) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
314 Log.w(TAG,"setStatus(OFF) " + exc.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
315 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
316 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
317 keepTrucking = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
318 me = new Thread(this); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
319 me.start(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
320 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
321 } catch (Exception exception) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
322 if (exception.getMessage() == null) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
323 exception.printStackTrace(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
324 Log.w(TAG,"connect() " + exception.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
325 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
326 if (sock == null) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
327 Log.w(TAG,"I did not get a socket"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
328 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
329 disconnect(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
330 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
331 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
332 return true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
333 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
334 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
335 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
336 public final boolean disconnect() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
337 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
338 if (!connected) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
339 screen52.getOIA().setInputInhibited(ScreenOIA.INPUTINHIBITED_SYSTEM_WAIT, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
340 ScreenOIA.OIA_LEVEL_INPUT_INHIBITED,"X - Disconnected"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
341 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
342 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
343 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
344 if (me != null && me.isAlive()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
345 me.interrupt(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
346 keepTrucking = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
347 pthread.interrupt(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
348 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
349 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
350 screen52.getOIA().setInputInhibited(ScreenOIA.INPUTINHIBITED_SYSTEM_WAIT, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
351 ScreenOIA.OIA_LEVEL_INPUT_INHIBITED,"X - Disconnected"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
352 screen52.getOIA().setKeyBoardLocked(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
353 pendingUnlock = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
354 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
355 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
356 if (sock != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
357 Log.i(TAG,"Closing socket"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
358 sock.close(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
359 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
360 if (bin != null) bin.close(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
361 if (bout != null) bout.close(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
362 connected = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
363 firstScreen = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
364 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
365 // WVL - LDC : TR.000345 : properly disconnect and clear screen |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
366 // Is this the right place to set screen realestate on disconnect? |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
367 //controller.getScreen().clearAll(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
368 screen52.goto_XY(0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
369 screen52.setCursorActive(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
370 screen52.clearAll(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
371 screen52.restoreScreen(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
372 } catch (Exception exception) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
373 Log.w(TAG,exception.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
374 connected = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
375 devSeq = -1; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
376 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
377 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
378 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
379 devSeq = -1; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
380 return true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
381 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
382 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
383 private final ByteArrayOutputStream appendByteStream(byte abyte0[]) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
384 ByteArrayOutputStream bytearrayoutputstream = new ByteArrayOutputStream(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
385 for (int i = 0; i < abyte0.length; i++) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
386 bytearrayoutputstream.write(abyte0[i]); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
387 if (abyte0[i] == -1) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
388 bytearrayoutputstream.write(-1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
389 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
390 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
391 return bytearrayoutputstream; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
392 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
393 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
394 private final byte[] readNegotiations() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
395 int i = bin.read(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
396 if (i < 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
397 throw new IOException("Connection closed."); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
398 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
399 int j = bin.available(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
400 byte abyte0[] = new byte[j + 1]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
401 abyte0[0] = (byte) i; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
402 bin.read(abyte0, 1, j); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
403 return abyte0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
404 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
405 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
406 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
407 private final void writeByte(byte abyte0[]) throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
408 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
409 bout.write(abyte0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
410 bout.flush(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
411 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
412 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
413 // private final void writeByte(byte byte0) throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
414 // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
415 // bout.write(byte0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
416 // bout.flush(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
417 // } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
418 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
419 public final void sendHeartBeat() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
420 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
421 byte[] b = { (byte) 0xff, (byte) 0xf1 }; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
422 bout.write(b); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
423 bout.flush(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
424 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
425 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
426 private final void readImmediate(int readType) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
427 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
428 if (screen52.isStatusErrorCode()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
429 screen52.restoreErrorLine(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
430 screen52.setStatus(Screen5250.STATUS_ERROR_CODE, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
431 Screen5250.STATUS_VALUE_OFF, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
432 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
433 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
434 if (!enhanced) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
435 screen52.setCursorActive(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
436 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
437 // screen52.setStatus(Screen5250.STATUS_SYSTEM, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
438 // Screen5250.STATUS_VALUE_ON, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
439 screen52.getOIA().setInputInhibited(ScreenOIA.INPUTINHIBITED_SYSTEM_WAIT, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
440 ScreenOIA.OIA_LEVEL_INPUT_INHIBITED); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
441 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
442 screen52.getOIA().setKeyBoardLocked(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
443 pendingUnlock = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
444 invited = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
445 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
446 screen52.getScreenFields().readFormatTable(baosp, readType, codePage); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
447 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
448 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
449 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
450 writeGDS(0, 3, baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
451 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
452 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
453 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
454 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
455 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
456 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
457 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
458 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
459 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
460 public final boolean sendAidKey(int aid) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
461 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
462 if (screen52.isStatusErrorCode()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
463 screen52.restoreErrorLine(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
464 screen52.setStatus(Screen5250.STATUS_ERROR_CODE, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
465 Screen5250.STATUS_VALUE_OFF, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
466 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
467 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
468 if (!enhanced) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
469 screen52.setCursorActive(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
470 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
471 // screen52.setStatus(Screen5250.STATUS_SYSTEM, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
472 // Screen5250.STATUS_VALUE_ON, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
473 screen52.getOIA().setInputInhibited(ScreenOIA.INPUTINHIBITED_SYSTEM_WAIT, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
474 ScreenOIA.OIA_LEVEL_INPUT_INHIBITED); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
475 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
476 screen52.getOIA().setKeyBoardLocked(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
477 pendingUnlock = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
478 invited = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
479 baosp.write(screen52.getCurrentRow()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
480 baosp.write(screen52.getCurrentCol()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
481 baosp.write(aid); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
482 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
483 if (dataIncluded(aid)) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
484 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
485 screen52.getScreenFields().readFormatTable(baosp, readType, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
486 codePage); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
487 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
488 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
489 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
490 writeGDS(0, 3, baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
491 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
492 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
493 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
494 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
495 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
496 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
497 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
498 return true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
499 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
500 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
501 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
502 private boolean dataIncluded(int aid) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
503 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
504 switch (aid) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
505 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
506 case PF1: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
507 return !dataIncluded[0]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
508 case PF2: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
509 return !dataIncluded[1]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
510 case PF3: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
511 return !dataIncluded[2]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
512 case PF4: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
513 return !dataIncluded[3]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
514 case PF5: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
515 return !dataIncluded[4]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
516 case PF6: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
517 return !dataIncluded[5]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
518 case PF7: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
519 return !dataIncluded[6]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
520 case PF8: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
521 return !dataIncluded[7]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
522 case PF9: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
523 return !dataIncluded[8]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
524 case PF10: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
525 return !dataIncluded[9]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
526 case PF11: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
527 return !dataIncluded[10]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
528 case PF12: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
529 return !dataIncluded[11]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
530 case PF13: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
531 return !dataIncluded[12]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
532 case PF14: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
533 return !dataIncluded[13]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
534 case PF15: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
535 return !dataIncluded[14]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
536 case PF16: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
537 return !dataIncluded[15]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
538 case PF17: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
539 return !dataIncluded[16]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
540 case PF18: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
541 return !dataIncluded[17]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
542 case PF19: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
543 return !dataIncluded[18]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
544 case PF20: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
545 return !dataIncluded[19]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
546 case PF21: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
547 return !dataIncluded[20]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
548 case PF22: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
549 return !dataIncluded[21]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
550 case PF23: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
551 return !dataIncluded[22]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
552 case PF24: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
553 return !dataIncluded[23]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
554 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
555 default: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
556 return true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
557 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
558 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
559 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
560 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
561 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
562 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
563 * Help request - |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
564 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
565 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
566 * See notes inside method |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
567 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
568 public final void sendHelpRequest() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
569 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
570 // Client sends header 000D12A0000004000003####F3FFEF |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
571 // operation code 3 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
572 // row - first ## |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
573 // column - second ## |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
574 // F3 - Help Aid Key |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
575 // System.out.println("Help request sent"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
576 baosp.write(screen52.getCurrentRow()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
577 baosp.write(screen52.getCurrentCol()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
578 baosp.write(AID_HELP); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
579 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
580 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
581 writeGDS(0, 3, baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
582 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
583 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
584 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
585 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
586 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
587 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
588 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
589 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
590 * Attention Key - |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
591 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
592 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
593 * See notes inside method |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
594 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
595 public final void sendAttentionKey() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
596 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
597 // Client sends header 000A12A000004400000FFEF |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
598 // 0x40 -> 01000000 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
599 // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
600 // flags |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
601 // bit 0 - ERR |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
602 // bit 1 - ATN Attention |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
603 // bits 2-4 - reserved |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
604 // bit 5 - SRQ system request |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
605 // bit 6 - TRQ Test request key |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
606 // bit 7 - HLP |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
607 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
608 // System.out.println("Attention key sent"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
609 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
610 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
611 writeGDS(0x40, 0, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
612 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
613 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
614 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
615 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
616 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
617 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
618 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
619 * Opens a dialog and asks the user before sending a request |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
620 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
621 * @see {@link #systemRequest(String)} |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
622 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
623 public final void systemRequest() { |
23 | 624 String ask = manager.res.getString(R.string.prompt_sys_request); |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
625 String sysreq = bridge.promptHelper.requestStringPrompt(null, ask); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
626 systemRequest(sysreq); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
627 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
628 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
629 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
630 * @param sr - system request option |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
631 * @see {@link #systemRequest(String)} |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
632 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
633 public final void systemRequest(char sr) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
634 systemRequest(Character.toString(sr)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
635 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
636 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
637 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
638 * System request, taken from the rfc1205, 5250 Telnet interface section 4.3 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
639 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
640 * @param sr system request option (allowed to be null, but than nothing happens) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
641 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
642 public final void systemRequest(String sr) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
643 byte[] bytes = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
644 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
645 if ( (sr != null) && (sr.length() > 0)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
646 // XXX: Not sure, if this is a sufficient check for 'clear dataq' |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
647 if (sr.charAt(0) == '2') { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
648 dsq.clear(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
649 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
650 for (int i = 0, l = sr.length(); i < l; i++) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
651 baosp.write(codePage.uni2ebcdic(sr.charAt(i))); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
652 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
653 bytes = baosp.toByteArray(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
654 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
655 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
656 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
657 writeGDS(4, 0, bytes); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
658 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
659 Log.i(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
660 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
661 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
662 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
663 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
664 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
665 * Cancel Invite - taken from the rfc1205 - 5250 Telnet interface section |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
666 * 4.3 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
667 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
668 * See notes inside method |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
669 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
670 public final void cancelInvite() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
671 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
672 // screen52.setStatus(Screen5250.STATUS_SYSTEM, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
673 // Screen5250.STATUS_VALUE_ON, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
674 screen52.getOIA().setInputInhibited(ScreenOIA.INPUTINHIBITED_SYSTEM_WAIT, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
675 ScreenOIA.OIA_LEVEL_INPUT_INHIBITED); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
676 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
677 // from rfc1205 section 4.3 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
678 // Server: Sends header with the 000A12A0 00000400 000AFFEF |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
679 // Opcode = Cancel Invite. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
680 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
681 // Client: sends header with the 000A12A0 00000400 000AFFEF |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
682 // Opcode = Cancel Invite to |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
683 // indicate that the work station is |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
684 // no longer invited. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
685 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
686 writeGDS(0, 10, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
687 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
688 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
689 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
690 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
691 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
692 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
693 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
694 public final void hostPrint(int aid) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
695 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
696 if (screen52.isStatusErrorCode()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
697 screen52.restoreErrorLine(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
698 screen52.setStatus(Screen5250.STATUS_ERROR_CODE, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
699 Screen5250.STATUS_VALUE_OFF, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
700 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
701 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
702 screen52.setCursorActive(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
703 // screen52.setStatus(Screen5250.STATUS_SYSTEM, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
704 // Screen5250.STATUS_VALUE_ON, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
705 screen52.getOIA().setInputInhibited(ScreenOIA.INPUTINHIBITED_SYSTEM_WAIT, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
706 ScreenOIA.OIA_LEVEL_INPUT_INHIBITED); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
707 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
708 // From client access ip capture |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
709 // it seems to use an operation code of 3 and 4 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
710 // also note that the flag field that says reserved is being sent as |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
711 // well |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
712 // with a value of 0x80 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
713 // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
714 // I have tried with not setting these flags and sending with 3 or 1 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
715 // there is no effect and I still get a host print screen. Go figure |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
716 //0000: 000D 12A0 0000 0400 8003 1407 F6FFEF |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
717 //0000: 000D 12A0 0000 0400 8001 110E F6FFEF |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
718 // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
719 // Client sends header 000D12A0000004000003####F6FFEF |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
720 // operation code 3 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
721 // row - first ## |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
722 // column - second ## |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
723 // F6 - Print Aid Key |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
724 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
725 baosp.write(screen52.getCurrentRow()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
726 baosp.write(screen52.getCurrentCol()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
727 baosp.write(AID_PRINT); // aid key |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
728 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
729 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
730 writeGDS(0, 3, baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
731 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
732 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
733 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
734 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
735 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
736 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
737 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
738 public final void toggleDebug() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
739 producer.toggleDebug(codePage); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
740 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
741 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
742 // write gerneral data stream |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
743 private final void writeGDS(int flags, int opcode, byte abyte0[]) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
744 throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
745 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
746 // Added to fix for JDK 1.4 this was null coming from another method. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
747 // There was a weird keyRelease event coming from another panel when |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
748 // using a key instead of the mouse to select button. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
749 // The other method was fixed as well but this check should be here |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
750 // anyway. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
751 if (bout == null) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
752 return; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
753 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
754 int length; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
755 if (abyte0 != null) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
756 length = abyte0.length + 10; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
757 else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
758 length = 10; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
759 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
760 // refer to rfc1205 - 5250 Telnet interface |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
761 // Section 3. Data Stream Format |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
762 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
763 // Logical Record Length - 16 bits |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
764 baosrsp.write(length >> 8); // Length LL |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
765 baosrsp.write(length & 0xff); // LL |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
766 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
767 // Record Type - 16 bits |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
768 // It should always be set to '12A0'X to indicate the |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
769 // General Data Stream (GDS) record type. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
770 baosrsp.write(18); // 0x12 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
771 baosrsp.write(160); // 0xA0 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
772 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
773 // the next 16 bits are not used |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
774 baosrsp.write(0); // 0x00 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
775 baosrsp.write(0); // 0x00 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
776 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
777 // The second part is meant to be variable in length |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
778 // currently this portion is 4 octets long (1 byte or 8 bits for us ;-O) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
779 baosrsp.write(4); // 0x04 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
780 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
781 baosrsp.write(flags); // flags |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
782 // bit 0 - ERR |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
783 // bit 1 - ATN Attention |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
784 // bits 2-4 - reserved |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
785 // bit 5 - SRQ system request |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
786 // bit 6 - TRQ Test request key |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
787 // bit 7 - HLP |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
788 baosrsp.write(0); // reserved - set to 0x00 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
789 baosrsp.write(opcode); // opcode |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
790 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
791 if (abyte0 != null) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
792 baosrsp.write(abyte0, 0, abyte0.length); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
793 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
794 baosrsp = appendByteStream(baosrsp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
795 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
796 // make sure we indicate no more to be sent |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
797 baosrsp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
798 baosrsp.write(EOR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
799 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
800 baosrsp.writeTo(bout); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
801 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
802 // byte[] b = new byte[baosrsp.size()]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
803 // b = baosrsp.toByteArray(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
804 // dump(b); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
805 bout.flush(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
806 // baos = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
807 baosrsp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
808 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
809 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
810 protected final int getOpCode() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
811 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
812 return bk.getOpCode(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
813 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
814 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
815 // private final void sendNotify() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
816 // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
817 // writeGDS(0, 0, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
818 // } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
819 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
820 protected boolean[] getActiveAidKeys() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
821 boolean aids[] = new boolean[dataIncluded.length]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
822 System.arraycopy(dataIncluded,0,aids,0,dataIncluded.length); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
823 return aids; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
824 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
825 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
826 private final void setInvited() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
827 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
828 Log.d(TAG,"invited"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
829 if (!screen52.isStatusErrorCode()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
830 screen52.getOIA().setInputInhibited(ScreenOIA.INPUTINHIBITED_NOTINHIBITED, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
831 ScreenOIA.OIA_LEVEL_INPUT_INHIBITED); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
832 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
833 invited = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
834 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
835 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
836 // WVL - LDC : 05/08/2005 : TFX.006253 - Support STRPCCMD |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
837 private void strpccmd() |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
838 { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
839 try |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
840 { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
841 int str = 11; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
842 char c; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
843 ScreenPlanes planes = screen52.getPlanes(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
844 c = planes.getChar(str); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
845 boolean waitFor = !(c == 'a'); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
846 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
847 StringBuffer command = new StringBuffer(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
848 for (int i = str+1; i < 132; i++) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
849 { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
850 c = planes.getChar(i); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
851 if (Character.isISOControl(c)) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
852 c = ' '; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
853 command.append(c); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
854 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
855 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
856 String cmd = command.toString().trim(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
857 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
858 run(cmd, waitFor); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
859 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
860 finally |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
861 { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
862 strpccmd = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
863 screen52.sendKeys(TN5250jConstants.MNEMONIC_ENTER); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
864 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
865 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
866 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
867 // WVL - LDC : 05/08/2005 : TFX.006253 - Support STRPCCMD |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
868 private void run(String cmd, boolean waitFor) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
869 { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
870 try |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
871 { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
872 Log.d(TAG,"RUN cmd = " + cmd); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
873 Log.d(TAG,"RUN wait = " + waitFor); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
874 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
875 Runtime r = Runtime.getRuntime(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
876 Process p = r.exec(cmd); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
877 if (waitFor) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
878 { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
879 int result = p.waitFor(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
880 Log.d(TAG,"RUN result = " + result); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
881 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
882 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
883 catch (Throwable t) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
884 { |
27
b29b39f386a4
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
26
diff
changeset
|
885 Log.e(TAG,"exception",t); |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
886 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
887 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
888 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
889 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
890 // WVL - LDC : TR.000300 : Callback scenario from 5250 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
891 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
892 * Activate or deactivate the command scanning behaviour. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
893 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
894 * @param scan |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
895 * if true, scanning is enabled; disabled otherwise. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
896 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
897 * @see scan4Cmd() |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
898 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
899 public void setScanningEnabled(boolean scan) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
900 this.scan = scan; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
901 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
902 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
903 // WVL - LDC : TR.000300 : Callback scenario from 5250 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
904 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
905 * Checks whether command scanning is enabled. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
906 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
907 * @return true is command scanning is enabled; false otherwise. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
908 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
909 public boolean isScanningEnabled() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
910 return this.scan; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
911 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
912 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
913 // WVL - LDC : TR.000300 : Callback scenario from 5250 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
914 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
915 * When command scanning is activated, the terminal reads the first and |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
916 * second character in the datastream (the zero position allows to |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
917 * devisualize the scan stream). If the sequence <code>#!</code> is |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
918 * encountered and if this sequence is <strong>not </strong> followed by a |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
919 * blank character, the {@link parseCommand(ScreenChar[])}is called. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
920 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
921 private void scan() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
922 // System.out.println("Checking command : " + |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
923 // screen52.screen[1].getChar() + screen52.screen[2].getChar()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
924 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
925 // ScreenChar[] screen = screen52.screen; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
926 ScreenPlanes planes = screen52.getPlanes(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
927 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
928 if ((planes.getChar(STRSCAN) == '#') |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
929 && (planes.getChar(STRSCAN + 1) == '!') |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
930 && (planes.getChar(STRSCAN + 2) != ' ')) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
931 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
932 parseCommand(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
933 } catch (Throwable t) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
934 Log.i(TAG,"Exec cmd: " + t.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
935 t.printStackTrace(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
936 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
937 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
938 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
939 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
940 // WVL - LDC : TR.000300 : Callback scenario from 5250 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
941 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
942 * The screen is parsed starting from second position until a white space is |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
943 * encountered. When found the Session#execCommand(String, int) is |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
944 * called with the parsed string. The position immediately following the |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
945 * encountered white space, separating the command from the rest of the |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
946 * screen, is passed as starting index. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
947 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
948 * Note that the character at the starting position can potentially be a |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
949 * white space itself. The starting position in <code>execCommand</code> |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
950 * provided to make the scanning sequence more flexible. We'd like for |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
951 * example to embed also a <code>+</code> or <code>-</code> sign to |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
952 * indicate whether the tnvt should trigger a repaint or not. This would |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
953 * allow the flashing of command sequences without them becoming visible. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
954 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
955 * <ul> |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
956 * <li><strong>PRE </strong> The screen character at position |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
957 * <code>STRSCAN + 2</code> is not a white space.</li> |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
958 * </ul> |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
959 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
960 private void parseCommand() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
961 // Search for the command i.e. the first token in the stream |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
962 // after the #! sequence separated by a space from the rest |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
963 // of the screen. |
32
b086dd794dba
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
29
diff
changeset
|
964 char[] screen = screen52.getScreenAsChars(); |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
965 for (int s = STRSCAN + 2, i = s; i < screen.length; i++) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
966 if (screen[i] == ' ') { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
967 String command = new String(screen, s, i - s); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
968 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
969 // Skip all white spaces between the command and the rest of |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
970 // the screen. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
971 //for (; (i < screen.length) && (screen[i] == ' '); i++); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
972 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
973 String remainder = new String(screen, i + 1, screen.length |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
974 - (i + 1)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
975 //controller.fireScanned(command, remainder); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
976 Log.i(TAG,"trying to run " + command + " " + remainder); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
977 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
978 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
979 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
980 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
981 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
982 public void run() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
983 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
984 if (enhanced) sfParser = new WTDSFParser(this); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
985 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
986 bk = new Stream5250(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
987 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
988 while (keepTrucking) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
989 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
990 try { |
99
eda03b809f48
move blocking test from socket read to queue take
Carl Byington <carl@five-ten-sg.com>
parents:
91
diff
changeset
|
991 Object e = dsq.poll(0L, TimeUnit.SECONDS); |
eda03b809f48
move blocking test from socket read to queue take
Carl Byington <carl@five-ten-sg.com>
parents:
91
diff
changeset
|
992 if (e == null) { |
eda03b809f48
move blocking test from socket read to queue take
Carl Byington <carl@five-ten-sg.com>
parents:
91
diff
changeset
|
993 buffer.testChanged(); |
eda03b809f48
move blocking test from socket read to queue take
Carl Byington <carl@five-ten-sg.com>
parents:
91
diff
changeset
|
994 e = dsq.take(); |
eda03b809f48
move blocking test from socket read to queue take
Carl Byington <carl@five-ten-sg.com>
parents:
91
diff
changeset
|
995 }; |
eda03b809f48
move blocking test from socket read to queue take
Carl Byington <carl@five-ten-sg.com>
parents:
91
diff
changeset
|
996 bk.initialize((byte[])e); |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
997 } catch (InterruptedException ie) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
998 Log.w(TAG," vt thread interrupted and stopping "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
999 keepTrucking = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1000 continue; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1001 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1002 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1003 // lets play nicely with the others on the playground |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1004 // me.yield(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1005 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1006 Thread.yield(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1007 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1008 invited = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1009 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1010 screen52.setCursorActive(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1011 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1012 // System.out.println("operation code: " + bk.getOpCode()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1013 if (bk == null) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1014 continue; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1015 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1016 switch (bk.getOpCode()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1017 case 00: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1018 Log.d(TAG,"No operation"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1019 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1020 case 1: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1021 Log.d(TAG,"Invite Operation"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1022 parseIncoming(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1023 // screen52.setKeyboardLocked(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1024 pendingUnlock = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1025 cursorOn = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1026 setInvited(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1027 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1028 case 2: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1029 Log.d(TAG,"Output Only"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1030 parseIncoming(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1031 screen52.updateDirty(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1032 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1033 case 3: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1034 Log.d(TAG,"Put/Get Operation"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1035 parseIncoming(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1036 setInvited(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1037 if (!firstScreen) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1038 firstScreen = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1039 //controller.fireSessionChanged(TN5250jConstants.STATE_CONNECTED); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1040 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1041 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1042 case 4: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1043 Log.d(TAG,"Save Screen Operation"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1044 parseIncoming(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1045 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1046 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1047 case 5: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1048 Log.d(TAG,"Restore Screen Operation"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1049 parseIncoming(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1050 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1051 case 6: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1052 Log.d(TAG,"Read Immediate"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1053 sendAidKey(0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1054 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1055 case 7: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1056 Log.d(TAG,"Reserved"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1057 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1058 case 8: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1059 Log.d(TAG,"Read Screen Operation"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1060 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1061 readScreen(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1062 } catch (IOException ex) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1063 Log.w(TAG,ex.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1064 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1065 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1066 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1067 case 9: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1068 Log.d(TAG,"Reserved"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1069 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1070 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1071 case 10: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1072 Log.d(TAG,"Cancel Invite Operation"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1073 cancelInvite(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1074 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1075 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1076 case 11: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1077 Log.d(TAG,"Turn on message light"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1078 screen52.getOIA().setMessageLightOn(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1079 screen52.setCursorActive(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1080 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1081 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1082 case 12: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1083 Log.d(TAG,"Turn off Message light"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1084 screen52.getOIA().setMessageLightOff(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1085 screen52.setCursorActive(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1086 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1087 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1088 default: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1089 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1090 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1091 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1092 if (screen52.isUsingGuiInterface()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1093 screen52.drawFields(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1094 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1095 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1096 if (!strpccmd) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1097 screen52.updateDirty(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1098 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1099 strpccmd(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1100 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1101 } catch (Exception exd) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1102 Log.w(TAG," tnvt.run: " + exd.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1103 exd.printStackTrace(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1104 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1105 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1106 if (pendingUnlock && !screen52.isStatusErrorCode()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1107 screen52.getOIA().setKeyBoardLocked(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1108 pendingUnlock = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1109 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1110 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1111 if (cursorOn && !screen52.getOIA().isKeyBoardLocked()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1112 screen52.setCursorActive(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1113 cursorOn = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1114 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1115 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1116 // lets play nicely with the others on the playground |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1117 //me.yield(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1118 Thread.yield(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1119 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1120 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1121 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1122 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1123 public void dumpStuff() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1124 Log.d(TAG," Pending unlock " + pendingUnlock); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1125 Log.d(TAG," Status Error " + screen52.isStatusErrorCode()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1126 Log.d(TAG," Keyboard Locked " + screen52.getOIA().isKeyBoardLocked()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1127 Log.d(TAG," Cursor On " + cursorOn); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1128 Log.d(TAG," Cursor Active " + screen52.cursorActive); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1129 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1130 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1131 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1132 private final void readScreen() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1133 int rows = screen52.getRows(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1134 int cols = screen52.getColumns(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1135 byte abyte0[] = new byte[rows * cols]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1136 fillScreenArray(abyte0, rows, cols); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1137 writeGDS(0, 0, abyte0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1138 abyte0 = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1139 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1140 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1141 private final void fillScreenArray(byte[] sa, int rows, int cols) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1142 int la = 32; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1143 int sac = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1144 int len = rows * cols; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1145 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1146 ScreenPlanes planes = screen52.planes; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1147 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1148 for (int y = 0; y < len; y++) { // save the screen data |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1149 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1150 if (planes.isAttributePlace(y)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1151 la = planes.getCharAttr(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1152 sa[sac++] = (byte) la; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1153 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1154 if (planes.getCharAttr(y) != la) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1155 la = planes.getCharAttr(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1156 sac--; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1157 sa[sac++] = (byte) la; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1158 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1159 //LDC: Check to see if it is an displayable character. If not, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1160 // do not convert the character. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1161 // The characters on screen are in unicode |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1162 //sa[sac++] = |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1163 // (byte)codePage.uni2ebcdic(screen52.screen[y].getChar()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1164 char ch = planes.getChar(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1165 byte byteCh = (byte) ch; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1166 if (isDataUnicode(ch)) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1167 byteCh = codePage.uni2ebcdic(ch); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1168 sa[sac++] = byteCh; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1169 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1170 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1171 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1172 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1173 private final void fillRegenerationBuffer(ByteArrayOutputStream sc, int rows, int cols) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1174 throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1175 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1176 int la = 32; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1177 int sac = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1178 int len = rows * cols; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1179 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1180 ScreenPlanes planes = screen52.planes; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1181 byte[] sa = new byte[len]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1182 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1183 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1184 boolean guiExists = sfParser != null && sfParser.isGuisExists(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1185 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1186 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1187 for (int y = 0; y < len; y++) { // save the screen data |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1188 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1189 if (guiExists) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1190 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1191 byte[] guiSeg = sfParser.getSegmentAtPos(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1192 if (guiSeg != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1193 //Log.i(TAG," gui saved at " + y + " - " + screen52.getRow(y) + "," + |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1194 // screen52.getCol(y)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1195 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1196 byte[] gsa = new byte[sa.length + guiSeg.length + 2]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1197 System.arraycopy(sa,0,gsa,0,sa.length); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1198 System.arraycopy(guiSeg,0,gsa,sac+2,guiSeg.length); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1199 sa = new byte[gsa.length]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1200 System.arraycopy(gsa,0,sa,0,gsa.length); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1201 sa[sac++] = (byte)0x04; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1202 sa[sac++] = (byte)0x11; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1203 sac += guiSeg.length; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1204 //y--; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1205 // continue; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1206 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1207 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1208 if (planes.isAttributePlace(y)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1209 la = planes.getCharAttr(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1210 sa[sac++] = (byte) la; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1211 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1212 if (planes.getCharAttr(y) != la) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1213 la = planes.getCharAttr(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1214 sac--; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1215 sa[sac++] = (byte) la; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1216 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1217 //LDC: Check to see if it is an displayable character. If not, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1218 // do not convert the character. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1219 // The characters on screen are in unicode |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1220 //sa[sac++] = |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1221 // (byte)codePage.uni2ebcdic(screen52.screen[y].getChar()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1222 char ch = planes.getChar(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1223 byte byteCh = (byte) ch; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1224 if (isDataUnicode(ch)) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1225 byteCh = codePage.uni2ebcdic(ch); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1226 sa[sac++] = byteCh; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1227 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1228 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1229 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1230 catch(Exception exc) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1231 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1232 Log.i(TAG,exc.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1233 exc.printStackTrace(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1234 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1235 sc.write(sa); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1236 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1237 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1238 public final void saveScreen() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1239 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1240 ByteArrayOutputStream sc = new ByteArrayOutputStream(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1241 sc.write(4); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1242 sc.write(0x12); // 18 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1243 sc.write(0); // 18 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1244 sc.write(0); // 18 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1245 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1246 sc.write((byte) screen52.getRows()); // store the current size |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1247 sc.write((byte) screen52.getColumns()); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1248 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1249 int cp = screen52.getCurrentPos(); // save off current position |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1250 // fix below submitted by Mitch Blevins |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1251 //int cp = screen52.getScreenFields().getCurrentFieldPos(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1252 // save off current position |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1253 sc.write((byte) (cp >> 8 & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1254 sc.write((byte) (cp & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1255 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1256 sc.write((byte) (screen52.homePos >> 8 & 0xff)); // save home pos |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1257 sc.write((byte) (screen52.homePos & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1258 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1259 int rows = screen52.getRows(); // store the current size |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1260 int cols = screen52.getColumns(); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1261 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1262 // byte[] sa = new byte[rows * cols]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1263 fillRegenerationBuffer(sc,rows,cols); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1264 // fillScreenArray(sa, rows, cols); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1265 // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1266 // sc.write(sa); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1267 // sa = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1268 int sizeFields = screen52.getScreenFields().getSize(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1269 sc.write((byte) (sizeFields >> 8 & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1270 sc.write((byte) (sizeFields & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1271 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1272 if (sizeFields > 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1273 int x = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1274 int s = screen52.getScreenFields().getSize(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1275 ScreenField sf = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1276 while (x < s) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1277 sf = screen52.getScreenFields().getField(x); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1278 sc.write((byte) sf.getAttr()); // attribute |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1279 int sp = sf.startPos(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1280 sc.write((byte) (sp >> 8 & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1281 sc.write((byte) (sp & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1282 if (sf.mdt) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1283 sc.write((byte) 1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1284 else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1285 sc.write((byte) 0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1286 sc.write((byte) (sf.getLength() >> 8 & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1287 sc.write((byte) (sf.getLength() & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1288 sc.write((byte) sf.getFFW1() & 0xff); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1289 sc.write((byte) sf.getFFW2() & 0xff); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1290 sc.write((byte) sf.getFCW1() & 0xff); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1291 sc.write((byte) sf.getFCW2() & 0xff); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1292 Log.d(TAG,"Saved "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1293 Log.d(TAG,sf.toString()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1294 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1295 x++; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1296 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1297 sf = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1298 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1299 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1300 // The following two lines of code looks to have caused all sorts of |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1301 // problems so for now we have commented them out. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1302 // screen52.getScreenFields().setCurrentField(null); // set it to null |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1303 // for GC ? |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1304 // screen52.clearTable(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1305 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1306 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1307 writeGDS(0, 3, sc.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1308 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1309 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1310 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1311 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1312 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1313 sc = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1314 Log.d(TAG,"Save Screen end "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1315 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1316 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1317 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1318 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1319 * @throws IOException |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1320 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1321 public final void restoreScreen() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1322 int which = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1323 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1324 ScreenPlanes planes = screen52.planes; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1325 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1326 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1327 Log.d(TAG,"Restore "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1328 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1329 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1330 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1331 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1332 int rows = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1333 int cols = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1334 int pos = bk.getNextByte() << 8 & 0xff00; // current position |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1335 pos |= bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1336 int hPos = bk.getNextByte() << 8 & 0xff00; // home position |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1337 hPos |= bk.getNextByte() & 0xff; |
29
017eeed8332c
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
27
diff
changeset
|
1338 if ((rows != screen52.getRows()) || (cols != screen52.getColumns())) |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1339 screen52.setRowsCols(rows, cols); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1340 screen52.clearAll(); // initialize what we currenty have |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1341 if (sfParser != null && sfParser.isGuisExists()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1342 sfParser.clearGuiStructs(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1343 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1344 int b = 32; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1345 int la = 32; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1346 int len = rows * cols; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1347 for (int y = 0; y < len; y++) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1348 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1349 b = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1350 if (b == 0x04) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1351 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1352 Log.i(TAG," gui restored at " + y + " - " + screen52.getRow(y) + "," + |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1353 screen52.getCol(y)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1354 int command = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1355 byte[] seg = bk.getSegment(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1356 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1357 if (seg.length > 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1358 screen52.goto_XY(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1359 sfParser.parseWriteToDisplayStructuredField(seg); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1360 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1361 y--; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1362 // screen52.goto_XY(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1363 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1364 else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1365 // b = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1366 if (planes.isUseGui(y)) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1367 continue; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1368 if (isAttribute(b)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1369 planes.setScreenCharAndAttr(y, planes.getChar(y), b, true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1370 la = b; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1371 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1372 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1373 else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1374 //LDC - 12/02/2003 - Check to see if it is an displayable |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1375 // character. If not, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1376 // do not convert the character. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1377 // The characters on screen are in unicode |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1378 char ch = (char) b; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1379 if (isDataEBCDIC(b)) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1380 ch = codePage.ebcdic2uni(b); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1381 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1382 planes.setScreenCharAndAttr(y, ch, la, false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1383 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1384 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1385 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1386 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1387 int numFields = bk.getNextByte() << 8 & 0xff00; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1388 numFields |= bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1389 Log.d(TAG,"number of fields " + numFields); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1390 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1391 if (numFields > 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1392 int x = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1393 int attr = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1394 int fPos = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1395 int fLen = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1396 int ffw1 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1397 int ffw2 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1398 int fcw1 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1399 int fcw2 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1400 boolean mdt = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1401 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1402 ScreenField sf = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1403 while (x < numFields) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1404 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1405 attr = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1406 fPos = bk.getNextByte() << 8 & 0xff00; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1407 fPos |= bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1408 if (bk.getNextByte() == 1) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1409 mdt = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1410 else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1411 mdt = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1412 fLen = bk.getNextByte() << 8 & 0xff00; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1413 fLen |= bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1414 ffw1 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1415 ffw2 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1416 fcw1 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1417 fcw2 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1418 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1419 sf = screen52.getScreenFields().setField(attr, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1420 screen52.getRow(fPos), screen52.getCol(fPos), fLen, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1421 ffw1, ffw2, fcw1, fcw2); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1422 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1423 while (fLen-- > 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1424 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1425 // now we set the field plane attributes |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1426 planes.setScreenFieldAttr(fPos++,ffw1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1427 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1428 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1429 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1430 if (mdt) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1431 sf.setMDT(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1432 screen52.getScreenFields().setMasterMDT(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1433 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1434 Log.d(TAG,"/nRestored "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1435 Log.d(TAG,sf.toString()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1436 x++; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1437 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1438 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1439 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1440 // Redraw the gui fields if we are in gui mode |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1441 if (screen52.isUsingGuiInterface()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1442 screen52.drawFields(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1443 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1444 screen52.restoreScreen(); // display the screen |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1445 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1446 // The position was saved with currentPos which 1,1 offset of the |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1447 // screen position. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1448 // The setPendingInsert is the where the cursor position will be |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1449 // displayed after the restore. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1450 screen52.setPendingInsert(true, screen52.getRow(pos + cols), screen52 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1451 .getCol(pos + cols)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1452 // We need to offset the pos by -1 since the position is 1,1 based |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1453 // and the goto_XY is 0,0 based. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1454 screen52.goto_XY(pos - 1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1455 screen52.isInField(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1456 // // Redraw the gui fields if we are in gui mode |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1457 // if (screen52.isUsingGuiInterface()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1458 // screen52.drawFields(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1459 } catch (Exception e) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1460 Log.w(TAG,"error restoring screen " + which + " with " |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1461 + e.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1462 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1463 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1464 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1465 public final boolean waitingForInput() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1466 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1467 return waitingForInput; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1468 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1469 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1470 private void parseIncoming() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1471 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1472 boolean done = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1473 boolean error = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1474 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1475 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1476 while (bk.hasNext() && !done) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1477 byte b = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1478 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1479 switch (b) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1480 case 0: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1481 case 1: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1482 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1483 case CMD_SAVE_SCREEN: // 0x02 2 Save Screen |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1484 case 3: // 0x03 3 Save Partial Screen |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1485 Log.d(TAG,"save screen partial"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1486 saveScreen(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1487 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1488 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1489 case ESC: // ESCAPE |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1490 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1491 case 7: // audible bell |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1492 manager.playBeep(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1493 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1494 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1495 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1496 case CMD_WRITE_TO_DISPLAY: // 0x11 17 write to display |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1497 error = writeToDisplay(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1498 // WVL - LDC : TR.000300 : Callback scenario from 5250 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1499 // Only scan when WRITE_TO_DISPLAY operation (i.e. refill |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1500 // screen buffer) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1501 // has been issued! |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1502 if (scan) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1503 scan(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1504 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1505 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1506 case CMD_RESTORE_SCREEN: // 0x12 18 Restore Screen |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1507 case 13: // 0x13 19 Restore Partial Screen |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1508 Log.d(TAG,"restore screen partial"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1509 restoreScreen(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1510 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1511 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1512 case CMD_CLEAR_UNIT_ALTERNATE: // 0x20 32 clear unit alternate |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1513 int param = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1514 if (param != 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1515 Log.d(TAG," clear unit alternate error " |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1516 + Integer.toHexString(param)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1517 sendNegResponse(NR_REQUEST_ERROR, 03, 01, 05, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1518 " clear unit alternate not supported"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1519 done = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1520 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1521 if (screen52.getRows() != 27) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1522 screen52.setRowsCols(27, 132); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1523 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1524 screen52.clearAll(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1525 if (sfParser != null && sfParser.isGuisExists()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1526 sfParser.clearGuiStructs(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1527 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1528 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1529 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1530 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1531 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1532 case CMD_WRITE_ERROR_CODE: // 0x21 33 Write Error Code |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1533 writeErrorCode(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1534 error = writeToDisplay(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1535 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1536 case CMD_WRITE_ERROR_CODE_TO_WINDOW: // 0x22 34 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1537 // Write Error Code to window |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1538 writeErrorCodeToWindow(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1539 error = writeToDisplay(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1540 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1541 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1542 case CMD_READ_SCREEN_IMMEDIATE: // 0x62 98 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1543 case CMD_READ_SCREEN_TO_PRINT: // 0x66 102 read screen to print |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1544 readScreen(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1545 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1546 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1547 case CMD_CLEAR_UNIT: // 64 0x40 clear unit |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1548 if (screen52.getRows() != 24) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1549 screen52.setRowsCols(24, 80); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1550 screen52.clearAll(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1551 if (sfParser != null && sfParser.isGuisExists()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1552 sfParser.clearGuiStructs(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1553 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1554 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1555 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1556 case CMD_CLEAR_FORMAT_TABLE: // 80 0x50 Clear format table |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1557 screen52.clearTable(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1558 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1559 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1560 case CMD_READ_INPUT_FIELDS: //0x42 66 read input fields |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1561 case CMD_READ_MDT_FIELDS: // 0x52 82 read MDT Fields |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1562 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1563 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1564 readType = b; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1565 screen52.goHome(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1566 // do nothing with the cursor here it is taken care of |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1567 // in the main loop. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1568 //////////////// screen52.setCursorOn(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1569 waitingForInput = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1570 pendingUnlock = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1571 // screen52.setKeyboardLocked(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1572 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1573 case CMD_READ_MDT_IMMEDIATE_ALT: // 0x53 83 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1574 readType = b; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1575 // screen52.goHome(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1576 // waitingForInput = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1577 // screen52.setKeyboardLocked(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1578 readImmediate(readType); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1579 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1580 case CMD_WRITE_STRUCTURED_FIELD: // 243 0xF3 -13 Write |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1581 // structured field |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1582 writeStructuredField(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1583 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1584 case CMD_ROLL: // 0x23 35 Roll Not sure what it does right now |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1585 int updown = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1586 int topline = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1587 int bottomline = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1588 screen52.rollScreen(updown, topline, bottomline); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1589 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1590 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1591 default: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1592 done = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1593 sendNegResponse(NR_REQUEST_ERROR, 03, 01, 01, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1594 "parseIncoming"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1595 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1596 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1597 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1598 if (error) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1599 done = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1600 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1601 } catch (Exception exc) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1602 Log.w(TAG,"incoming " + exc.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1603 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1604 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1605 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1606 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1607 * This routine handles sending negative responses back to the host. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1608 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1609 * You can find a description of the types of responses to be sent back by |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1610 * looking at section 12.4 of the 5250 Functions Reference manual |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1611 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1612 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1613 * @param cat |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1614 * @param modifier |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1615 * @param uByte1 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1616 * @param uByte2 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1617 * @param from |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1618 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1619 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1620 protected void sendNegResponse(int cat, int modifier, int uByte1, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1621 int uByte2, String from) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1622 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1623 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1624 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1625 int os = bk.getByteOffset(-1) & 0xf0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1626 int cp = (bk.getCurrentPos() - 1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1627 Log.i(TAG,"invalid " + from + " command " + os |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1628 + " at pos " + cp); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1629 } catch (Exception e) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1630 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1631 Log.w(TAG,"Send Negative Response error " + e.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1632 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1633 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1634 baosp.write(cat); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1635 baosp.write(modifier); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1636 baosp.write(uByte1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1637 baosp.write(uByte2); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1638 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1639 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1640 writeGDS(128, 0, baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1641 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1642 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1643 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1644 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1645 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1646 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1647 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1648 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1649 public void sendNegResponse2(int ec) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1650 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1651 screen52.setPrehelpState(true, true, false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1652 baosp.write(0x00); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1653 baosp.write(ec); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1654 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1655 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1656 writeGDS(1, 0, baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1657 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1658 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1659 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1660 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1661 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1662 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1663 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1664 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1665 private boolean writeToDisplay(boolean controlsExist) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1666 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1667 boolean error = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1668 boolean done = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1669 int attr; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1670 byte control0 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1671 byte control1 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1672 int saRows = screen52.getRows(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1673 int saCols = screen52.getColumns(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1674 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1675 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1676 if (controlsExist) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1677 control0 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1678 control1 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1679 processCC0(control0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1680 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1681 while (bk.hasNext() && !done) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1682 // pos = bk.getCurrentPos(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1683 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1684 // int rowc = screen52.getCurrentRow(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1685 // int colc = screen52.getCurrentCol(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1686 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1687 byte bytebk = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1688 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1689 switch (bytebk) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1690 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1691 case 1: // SOH - Start of Header Order |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1692 Log.d(TAG,"SOH - Start of Header Order"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1693 error = processSOH(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1694 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1695 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1696 case 02: // RA - Repeat to address |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1697 Log.d(TAG,"RA - Repeat to address"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1698 int row = screen52.getCurrentRow(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1699 int col = screen52.getCurrentCol(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1700 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1701 int toRow = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1702 int toCol = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1703 if (toRow >= row) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1704 int repeat = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1705 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1706 // a little intelligence here I hope |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1707 if (row == 1 && col == 2 && toRow == screen52.getRows() |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1708 && toCol == screen52.getColumns()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1709 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1710 screen52.clearScreen(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1711 else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1712 if (repeat != 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1713 //LDC - 13/02/2003 - convert it to unicode |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1714 repeat = codePage.ebcdic2uni(repeat); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1715 //repeat = getASCIIChar(repeat); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1716 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1717 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1718 int times = ((toRow * screen52.getColumns()) + toCol) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1719 - ((row * screen52.getColumns()) + col); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1720 while (times-- >= 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1721 screen52.setChar(repeat); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1722 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1723 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1724 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1725 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1726 sendNegResponse(NR_REQUEST_ERROR, 0x05, 0x01, 0x23, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1727 " RA invalid"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1728 error = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1729 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1730 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1731 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1732 case 03: // EA - Erase to address |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1733 Log.d(TAG,"EA - Erase to address"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1734 int EArow = screen52.getCurrentRow(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1735 int EAcol = screen52.getCurrentCol(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1736 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1737 int toEARow = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1738 int toEACol = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1739 int EALength = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1740 while (--EALength > 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1741 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1742 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1743 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1744 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1745 char EAAttr = (char) 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1746 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1747 // a little intelligence here I hope |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1748 if (EArow == 1 && EAcol == 2 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1749 && toEARow == screen52.getRows() |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1750 && toEACol == screen52.getColumns()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1751 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1752 screen52.clearScreen(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1753 else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1754 int times = ((toEARow * screen52.getColumns()) + toEACol) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1755 - ((EArow * screen52.getColumns()) + EAcol); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1756 while (times-- >= 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1757 screen52.setChar(EAAttr); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1758 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1759 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1760 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1761 case 04: // Command - Escape |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1762 Log.d(TAG,"Command - Escape"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1763 done = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1764 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1765 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1766 case 16: // TD - Transparent Data |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1767 Log.d(TAG,"TD - Transparent Data"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1768 int j = (bk.getNextByte() & 0xff) << 8 | bk.getNextByte() |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1769 & 0xff; // length |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1770 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1771 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1772 case 17: // SBA - set buffer address order (row column) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1773 Log.d(TAG,"SBA - set buffer address order (row column)"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1774 int saRow = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1775 int saCol = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1776 // make sure it is in bounds |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1777 if (saRow >= 0 && saRow <= screen52.getRows() && saCol >= 0 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1778 && saCol <= screen52.getColumns()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1779 screen52.setCursor(saRow, saCol); // now set screen |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1780 // position for output |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1781 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1782 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1783 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1784 sendNegResponse(NR_REQUEST_ERROR, 0x05, 0x01, 0x22, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1785 "invalid row/col order" + " saRow = " + saRow |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1786 + " saRows = " + screen52.getRows() |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1787 + " saCol = " + saCol); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1788 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1789 error = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1790 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1791 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1792 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1793 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1794 case 18: // WEA - Extended Attribute |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1795 Log.d(TAG,"WEA - Extended Attribute"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1796 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1797 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1798 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1799 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1800 case 19: // IC - Insert Cursor |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1801 Log.d(TAG,"IC - Insert Cursor"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1802 int icX = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1803 int icY = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1804 if (icX >= 0 && icX <= saRows && icY >= 0 && icY <= saCols) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1805 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1806 Log.d(TAG," IC " + icX + " " + icY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1807 screen52.setPendingInsert(true, icX, icY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1808 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1809 sendNegResponse(NR_REQUEST_ERROR, 0x05, 0x01, 0x22, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1810 " IC/IM position invalid "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1811 error = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1812 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1813 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1814 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1815 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1816 case 20: // MC - Move Cursor |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1817 Log.d(TAG,"MC - Move Cursor"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1818 int imcX = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1819 int imcY = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1820 if (imcX >= 0 && imcX <= saRows && imcY >= 0 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1821 && imcY <= saCols) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1822 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1823 Log.d(TAG," MC " + imcX + " " + imcY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1824 screen52.setPendingInsert(false, imcX, imcY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1825 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1826 sendNegResponse(NR_REQUEST_ERROR, 0x05, 0x01, 0x22, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1827 " IC/IM position invalid "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1828 error = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1829 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1830 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1831 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1832 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1833 case 21: // WTDSF - Write To Display Structured Field order |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1834 Log.d(TAG,"WTDSF - Write To Display Structured Field order"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1835 byte[] seg = bk.getSegment(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1836 error = sfParser.parseWriteToDisplayStructuredField(seg); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1837 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1838 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1839 case 29: // SF - Start of Field |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1840 Log.d(TAG,"SF - Start of Field"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1841 int fcw1 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1842 int fcw2 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1843 int ffw1 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1844 int ffw0 = bk.getNextByte() & 0xff; // FFW |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1845 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1846 if ((ffw0 & 0x40) == 0x40) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1847 ffw1 = bk.getNextByte() & 0xff; // FFW 1 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1848 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1849 fcw1 = bk.getNextByte() & 0xff; // check for field |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1850 // control word |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1851 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1852 // check if the first fcw1 is an 0x81 if it is then get |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1853 // the next pair for checking |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1854 if (fcw1 == 0x81) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1855 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1856 fcw1 = bk.getNextByte() & 0xff; // check for field |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1857 // control word |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1858 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1859 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1860 if (!isAttribute(fcw1)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1861 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1862 fcw2 = bk.getNextByte() & 0xff; // FCW 2 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1863 attr = bk.getNextByte() & 0xff; // attribute field |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1864 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1865 while (!isAttribute(attr)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1866 Log.i(TAG,Integer.toHexString(fcw1) + " " |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1867 + Integer.toHexString(fcw2) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1868 + " "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1869 Log.i(TAG,Integer.toHexString(attr) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1870 + " " |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1871 + Integer.toHexString(bk |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1872 .getNextByte() & 0xff)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1873 attr = bk.getNextByte() & 0xff; // attribute field |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1874 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1875 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1876 attr = fcw1; // attribute of field |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1877 fcw1 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1878 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1879 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1880 attr = ffw0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1881 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1882 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1883 int fLength = (bk.getNextByte() & 0xff) << 8 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1884 | bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1885 screen52.addField(attr, fLength, ffw0, ffw1, fcw1, fcw2); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1886 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1887 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1888 // WVL - LDC : 05/08/2005 : TFX.006253 - Support STRPCCMD |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1889 case -128: //STRPCCMD |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1890 // if (screen52.getCurrentPos() == 82) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1891 Log.d(TAG,"STRPCCMD got a -128 command at " + screen52.getCurrentPos()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1892 StringBuffer value = new StringBuffer(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1893 int b; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1894 char c; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1895 int[] pco = new int[9]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1896 int[] pcoOk = {0xfc, 0xd7, 0xc3, 0xd6, 0x40, 0x83, 0x80, 0xa1, 0x80}; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1897 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1898 for (int i = 0; i < 9; i++) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1899 { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1900 b = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1901 pco[i] = ((b & 0xff)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1902 c = codePage.ebcdic2uni(b); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1903 value.append(c); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1904 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1905 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1906 // Check "PCO-String" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1907 if (Arrays.equals(pco, pcoOk)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1908 strpccmd = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1909 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1910 // we return in the stream to have all chars |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1911 // arrive at the screen for later processing |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1912 for (int i = 0; i < 9; i++) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1913 bk.setPrevByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1914 //} |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1915 // no break: so every chars arrives |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1916 // on the screen for later parsing |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1917 //break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1918 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1919 default: // all others must be output to screen |
100 | 1920 //Log.d(TAG,"all others must be output to screen"); |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1921 byte byte0 = bk.getByteOffset(-1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1922 if (isAttribute(byte0)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1923 screen52.setAttr(byte0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1924 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1925 if (!screen52.isStatusErrorCode()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1926 if (!isDataEBCDIC(byte0)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1927 // if (byte0 == 255) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1928 // sendNegResponse(NR_REQUEST_ERROR,0x05,0x01,0x42, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1929 // " Attempt to send FF to screen"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1930 // } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1931 // else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1932 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1933 screen52.setChar(byte0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1934 } else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1935 //LDC - 13/02/2003 - Convert it to unicode |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1936 //screen52.setChar(getASCIIChar(byte0)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1937 screen52.setChar(codePage.ebcdic2uni(byte0)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1938 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1939 if (byte0 == 0) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1940 screen52.setChar(byte0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1941 else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1942 //LDC - 13/02/2003 - Convert it to unicode |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1943 //screen52.setChar(getASCIIChar(byte0)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1944 screen52.setChar(codePage.ebcdic2uni(byte0)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1945 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1946 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1947 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1948 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1949 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1950 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1951 if (error) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1952 done = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1953 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1954 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1955 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1956 catch (Exception e) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1957 Log.w(TAG,"write to display " + e.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1958 e.printStackTrace(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1959 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1960 ; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1961 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1962 processCC1(control1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1963 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1964 return error; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1965 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1966 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1967 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1968 private boolean processSOH() throws Exception { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1969 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1970 int l = bk.getNextByte(); // length |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1971 Log.d(TAG," byte 0 " + l); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1972 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1973 if (l > 0 && l <= 7) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1974 bk.getNextByte(); // flag byte 2 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1975 bk.getNextByte(); // reserved |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1976 bk.getNextByte(); // resequence fields |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1977 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1978 screen52.clearTable(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1979 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1980 // well that is the first time I have seen this. This fixes a |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1981 // problem with S/36 command line. Finally got it. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1982 if (l <= 3) return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1983 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1984 screen52.setErrorLine(bk.getNextByte()); // error row |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1985 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1986 int byte1 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1987 if (l >= 5) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1988 byte1 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1989 dataIncluded[23] = (byte1 & 0x80) == 0x80; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1990 dataIncluded[22] = (byte1 & 0x40) == 0x40; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1991 dataIncluded[21] = (byte1 & 0x20) == 0x20; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1992 dataIncluded[20] = (byte1 & 0x10) == 0x10; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1993 dataIncluded[19] = (byte1 & 0x8) == 0x8; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1994 dataIncluded[18] = (byte1 & 0x4) == 0x4; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1995 dataIncluded[17] = (byte1 & 0x2) == 0x2; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1996 dataIncluded[16] = (byte1 & 0x1) == 0x1; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1997 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1998 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1999 if (l >= 6) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2000 byte1 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2001 dataIncluded[15] = (byte1 & 0x80) == 0x80; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2002 dataIncluded[14] = (byte1 & 0x40) == 0x40; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2003 dataIncluded[13] = (byte1 & 0x20) == 0x20; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2004 dataIncluded[12] = (byte1 & 0x10) == 0x10; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2005 dataIncluded[11] = (byte1 & 0x8) == 0x8; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2006 dataIncluded[10] = (byte1 & 0x4) == 0x4; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2007 dataIncluded[9] = (byte1 & 0x2) == 0x2; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2008 dataIncluded[8] = (byte1 & 0x1) == 0x1; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2009 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2010 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2011 if (l >= 7) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2012 byte1 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2013 dataIncluded[7] = (byte1 & 0x80) == 0x80; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2014 dataIncluded[6] = (byte1 & 0x40) == 0x40; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2015 dataIncluded[5] = (byte1 & 0x20) == 0x20; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2016 dataIncluded[4] = (byte1 & 0x10) == 0x10; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2017 dataIncluded[3] = (byte1 & 0x8) == 0x8; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2018 dataIncluded[2] = (byte1 & 0x4) == 0x4; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2019 dataIncluded[1] = (byte1 & 0x2) == 0x2; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2020 dataIncluded[0] = (byte1 & 0x1) == 0x1; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2021 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2022 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2023 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2024 sendNegResponse(NR_REQUEST_ERROR, 0x05, 0x01, 0x2B, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2025 "invalid SOH length"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2026 return true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2027 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2028 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2029 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2030 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2031 private void processCC0(byte byte0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2032 Log.d(TAG," Control byte0 " + Integer.toBinaryString(byte0 & 0xff)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2033 boolean lockKeyboard = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2034 boolean resetMDT = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2035 boolean resetMDTAll = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2036 boolean nullMDT = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2037 boolean nullAll = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2038 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2039 // Bits 3 to 6 are reserved and should be set to '0000' |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2040 // 0xE0 = '11100000' - only the first 3 bits are tested |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2041 if ((byte0 & 0xE0) == 0x00) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2042 lockKeyboard = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2043 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2044 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2045 // '00100000' = 0x20 /32 -- just lock keyboard |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2046 // '01000000' = 0x40 /64 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2047 // '01100000' = 0x60 /96 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2048 // '10000000' = 0x80 /128 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2049 // '10100000' = 0xA0 /160 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2050 // '11000000' = 0xC0 /192 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2051 // '11100000' = 0xE0 /224 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2052 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2053 switch (byte0 & 0xE0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2054 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2055 case 0x40: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2056 resetMDT = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2057 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2058 case 0x60: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2059 resetMDTAll = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2060 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2061 case 0x80: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2062 nullMDT = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2063 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2064 case 0xA0: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2065 resetMDT = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2066 nullAll = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2067 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2068 case 0xC0: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2069 resetMDT = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2070 nullMDT = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2071 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2072 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2073 case 0xE0: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2074 resetMDTAll = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2075 nullAll = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2076 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2077 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2078 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2079 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2080 if (lockKeyboard) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2081 screen52.getOIA().setKeyBoardLocked(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2082 pendingUnlock = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2083 } else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2084 pendingUnlock = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2085 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2086 if (resetMDT || resetMDTAll || nullMDT || nullAll) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2087 ScreenField sf; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2088 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2089 int f = screen52.getScreenFields().getSize(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2090 for (int x = 0; x < f; x++) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2091 sf = screen52.getScreenFields().getField(x); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2092 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2093 if (!sf.isBypassField()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2094 if ((nullMDT && sf.mdt) || nullAll) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2095 sf.setFieldChar((char) 0x0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2096 screen52.drawField(sf); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2097 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2098 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2099 if (resetMDTAll || (resetMDT && !sf.isBypassField())) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2100 sf.resetMDT(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2101 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2102 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2103 sf = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2104 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2105 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2106 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2107 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2108 private void processCC1(byte byte1) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2109 Log.d(TAG," Control byte1 " + Integer.toBinaryString(byte1 & 0xff)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2110 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2111 if ((byte1 & 0x04) == 0x04) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2112 manager.playBeep(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2113 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2114 if ((byte1 & 0x02) == 0x02) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2115 screen52.getOIA().setMessageLightOff(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2116 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2117 if ((byte1 & 0x01) == 0x01) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2118 screen52.getOIA().setMessageLightOn(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2119 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2120 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2121 if ((byte1 & 0x01) == 0x01 && (byte1 & 0x02) == 0x02) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2122 screen52.getOIA().setMessageLightOn(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2123 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2124 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2125 // reset blinking cursor seems to control whether to set or not set the |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2126 // the cursor position. No documentation for this just testing and |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2127 // looking at the bit settings of this field. This was a pain in the |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2128 // ass! |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2129 // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2130 // if it is off '0' then keep existing cursor positioning information |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2131 // if it is on '1' then reset the cursor positioning information |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2132 // *** Note *** unless we receive bit 4 on at the same time |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2133 // this seems to work so far |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2134 if ((byte1 & 0x20) == 0x20 && (byte1 & 0x08) == 0x00) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2135 screen52.setPendingInsert(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2136 Log.d(TAG," WTD position no move"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2137 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2138 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2139 screen52.setPendingInsert(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2140 Log.d(TAG," WTD position move to home" + screen52.homePos + " row " |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2141 + screen52.getRow(screen52.homePos) + " col " |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2142 + screen52.getCol(screen52.homePos)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2143 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2144 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2145 // in enhanced mode we sometimes only receive bit 6 turned on which |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2146 // is reset blinking cursor |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2147 if ((byte1 & 0x20) == 0x20 && enhanced) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2148 cursorOn = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2149 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2150 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2151 if (!screen52.isStatusErrorCode() && (byte1 & 0x08) == 0x08) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2152 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2153 // screen52.setStatus(screen52.STATUS_SYSTEM,screen52.STATUS_VALUE_OFF,null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2154 cursorOn = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2155 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2156 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2157 if ((byte1 & 0x20) == 0x20 && (byte1 & 0x08) == 0x00) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2158 screen52.setPendingInsert(false, 1, 1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2159 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2160 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2161 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2162 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2163 private boolean isAttribute(int byte0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2164 int byte1 = byte0 & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2165 return (byte1 & 0xe0) == 0x20; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2166 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2167 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2168 //LDC - 12/02/2003 - Function name changed from isData to isDataEBCDIC |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2169 private boolean isDataEBCDIC(int byte0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2170 int byte1 = byte0 & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2171 // here it should always be less than 255 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2172 if (byte1 >= 64 && byte1 < 255) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2173 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2174 return true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2175 else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2176 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2177 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2178 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2179 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2180 //LDC - 12/02/2003 - Test if the unicode character is a displayable |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2181 // character. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2182 // The first 32 characters are non displayable characters |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2183 // This is normally the inverse of isDataEBCDIC (That's why there is a |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2184 // check on 255 -> 0xFFFF |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2185 private boolean isDataUnicode(int byte0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2186 return (((byte0 < 0) || (byte0 >= 32)) && (byte0 != 0xFFFF)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2187 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2188 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2189 private void writeStructuredField() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2190 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2191 boolean done = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2192 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2193 int length = ((bk.getNextByte() & 0xff) << 8 | (bk.getNextByte() & 0xff)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2194 while (bk.hasNext() && !done) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2195 switch (bk.getNextByte()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2196 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2197 case -39: // SOH - Start of Header Order |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2198 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2199 switch (bk.getNextByte()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2200 case 112: // 5250 Query |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2201 bk.getNextByte(); // get null required field |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2202 sendQueryResponse(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2203 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2204 default: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2205 Log.d(TAG,"invalid structured field sub command " |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2206 + bk.getByteOffset(-1)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2207 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2208 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2209 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2210 default: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2211 Log.d(TAG,"invalid structured field command " |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2212 + bk.getByteOffset(-1)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2213 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2214 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2215 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2216 } catch (Exception e) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2217 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2218 ; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2219 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2220 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2221 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2222 private final void writeErrorCode() throws Exception { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2223 screen52.setCursor(screen52.getErrorLine(), 1); // Skip the control byte |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2224 screen52.setStatus(Screen5250.STATUS_ERROR_CODE, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2225 Screen5250.STATUS_VALUE_ON, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2226 screen52.saveErrorLine(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2227 cursorOn = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2228 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2229 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2230 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2231 private final void writeErrorCodeToWindow() throws Exception { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2232 int fromCol = bk.getNextByte() & 0xff; // from column |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2233 int toCol = bk.getNextByte() & 0xff; // to column |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2234 screen52.setCursor(screen52.getErrorLine(), fromCol); // Skip the control |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2235 // byte |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2236 screen52.setStatus(Screen5250.STATUS_ERROR_CODE, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2237 Screen5250.STATUS_VALUE_ON, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2238 screen52.saveErrorLine(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2239 cursorOn = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2240 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2241 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2242 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2243 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2244 * Method sendQueryResponse |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2245 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2246 * The query command is used to obtain information about the capabilities of |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2247 * the 5250 display. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2248 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2249 * The Query command must follow an Escape (0x04) and Write Structured Field |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2250 * command (0xF3). |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2251 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2252 * This section is modeled after the rfc1205 - 5250 Telnet Interface section |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2253 * 5.3 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2254 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2255 * @throws IOException |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2256 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2257 private final void sendQueryResponse() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2258 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2259 Log.i(TAG,"sending query response"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2260 byte abyte0[] = new byte[64]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2261 abyte0[0] = 0; // Cursor Row/column (set to zero) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2262 abyte0[1] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2263 abyte0[2] = -120; // X'88' inbound write structure Field aid |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2264 if (enhanced == true) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2265 abyte0[3] = 0; // 0x003D (61) length of query response |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2266 abyte0[4] = 64; // "" see note below ????????? |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2267 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2268 abyte0[3] = 0; // 0x003A (58) length of query response |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2269 abyte0[4] = 58; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2270 // the length between 58 and 64 seems to cause |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2271 // different formatting codes to be sent from |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2272 // the host ???????????????? why ??????? |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2273 // Well the why can be found in the manual if |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2274 // read a little more ;-) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2275 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2276 abyte0[5] = -39; // command class 0xD9 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2277 abyte0[6] = 112; // Command type query 0x70 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2278 abyte0[7] = -128; // 0x80 Flag byte |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2279 abyte0[8] = 6; // Controller Hardware Class |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2280 abyte0[9] = 0; // 0x0600 - Other WSF or another 5250 Emulator |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2281 abyte0[10] = 1; // Controller Code Level |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2282 abyte0[11] = 1; // Version 1 Rel 1.0 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2283 abyte0[12] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2284 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2285 abyte0[13] = 0; // 13 - 28 are reserved so set to 0x00 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2286 abyte0[14] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2287 abyte0[15] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2288 abyte0[16] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2289 abyte0[17] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2290 abyte0[18] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2291 abyte0[19] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2292 abyte0[20] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2293 abyte0[21] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2294 abyte0[22] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2295 abyte0[23] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2296 abyte0[24] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2297 abyte0[25] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2298 abyte0[26] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2299 abyte0[27] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2300 abyte0[28] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2301 abyte0[29] = 1; // Device type - 0x01 5250 Emulator |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2302 abyte0[30] = codePage.uni2ebcdic('5'); // Device type character |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2303 abyte0[31] = codePage.uni2ebcdic('2'); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2304 abyte0[32] = codePage.uni2ebcdic('5'); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2305 abyte0[33] = codePage.uni2ebcdic('1'); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2306 abyte0[34] = codePage.uni2ebcdic('0'); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2307 abyte0[35] = codePage.uni2ebcdic('1'); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2308 abyte0[36] = codePage.uni2ebcdic('1'); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2309 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2310 abyte0[37] = 2; // Keyboard Id - 0x02 Standard Keyboard |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2311 abyte0[38] = 0; // extended keyboard id |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2312 abyte0[39] = 0; // reserved |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2313 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2314 abyte0[40] = 0; // 40 - 43 Display Serial Number |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2315 abyte0[41] = 36; // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2316 abyte0[42] = 36; // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2317 abyte0[43] = 0; // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2318 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2319 abyte0[44] = 1; // Maximum number of display fields - 256 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2320 abyte0[45] = 0; // 0x0100 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2321 abyte0[46] = 0; // 46 -48 Reserved set to 0x00 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2322 abyte0[47] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2323 abyte0[48] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2324 abyte0[49] = 1; // 49 - 53 Controller Display Capability |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2325 abyte0[50] = 17; // see rfc - tired of typing :-) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2326 abyte0[51] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2327 abyte0[52] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2328 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2329 // 53 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2330 // Bit 0-2: B'000' - no graphics capability |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2331 // B'001' - 5292-2 style graphics |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2332 // Bit 3-7: B '00000' = reserved (it seems for Client access) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2333 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2334 if (enhanced == true) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2335 // abyte0[53] = 0x5E; // 0x5E turns on ehnhanced mode |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2336 // abyte0[53] = 0x27; // 0x5E turns on ehnhanced mode |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2337 abyte0[53] = 0x7; // 0x5E turns on ehnhanced mode |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2338 Log.i(TAG,"enhanced options"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2339 } else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2340 abyte0[53] = 0x0; // 0x0 is normal emulation |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2341 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2342 abyte0[54] = 24; // 54 - 60 Reserved set to 0x00 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2343 // 54 - I found out is used for enhanced user |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2344 // interface level 3. Bit 4 allows headers |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2345 // and footers for windows |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2346 abyte0[54] = 8; // 54 - 60 Reserved set to 0x00 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2347 // 54 - I found out is used for enhanced user |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2348 // interface level 3. Bit 4 allows headers |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2349 // and footers for windows |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2350 abyte0[55] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2351 abyte0[56] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2352 abyte0[57] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2353 abyte0[58] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2354 abyte0[59] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2355 abyte0[60] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2356 abyte0[61] = 0; // gridlines are not supported |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2357 abyte0[62] = 0; // gridlines are not supported |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2358 abyte0[63] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2359 writeGDS(0, 0, abyte0); // now tell them about us |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2360 abyte0 = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2361 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2362 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2363 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2364 protected final boolean negotiate(byte abyte0[]) throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2365 int i = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2366 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2367 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2368 // from server negotiations |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2369 if(abyte0[i] == IAC) { // -1 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2370 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2371 while(i < abyte0.length && abyte0[i++] == -1) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2372 // while(i < abyte0.length && (abyte0[i] == -1 || abyte0[i++] == 0x20)) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2373 switch(abyte0[i++]) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2374 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2375 // we will not worry about what it WONT do |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2376 case WONT: // -4 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2377 default: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2378 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2379 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2380 case DO: //-3 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2381 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2382 // not sure why but since moving to V5R2 we are receiving a |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2383 // DO with no option when connecting a second session with |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2384 // device name. Can not find the cause at all. If anybody |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2385 // is interested please debug this until then this works. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2386 if (i < abyte0.length) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2387 switch(abyte0[i]) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2388 case TERMINAL_TYPE: // 24 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2389 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2390 baosp.write(WILL); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2391 baosp.write(TERMINAL_TYPE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2392 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2393 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2394 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2395 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2396 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2397 case OPT_END_OF_RECORD: // 25 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2398 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2399 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2400 baosp.write(WILL); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2401 baosp.write(OPT_END_OF_RECORD); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2402 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2403 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2404 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2405 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2406 case TRANSMIT_BINARY: // 0 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2407 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2408 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2409 baosp.write(WILL); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2410 baosp.write(TRANSMIT_BINARY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2411 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2412 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2413 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2414 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2415 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2416 case TIMING_MARK: // 6 rfc860 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2417 // System.out.println("Timing Mark Received and notifying " + |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2418 // "the server that we will not do it"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2419 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2420 baosp.write(WONT); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2421 baosp.write(TIMING_MARK); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2422 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2423 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2424 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2425 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2426 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2427 case NEW_ENVIRONMENT: // 39 rfc1572, rfc4777 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2428 // allways send new environment vars ... |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2429 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2430 baosp.write(WILL); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2431 baosp.write(NEW_ENVIRONMENT); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2432 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2433 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2434 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2435 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2436 default: // every thing else we will not do at this time |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2437 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2438 baosp.write(WONT); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2439 baosp.write(abyte0[i]); // either |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2440 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2441 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2442 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2443 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2444 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2445 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2446 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2447 i++; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2448 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2449 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2450 case WILL: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2451 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2452 switch(abyte0[i]) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2453 case OPT_END_OF_RECORD: // 25 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2454 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2455 baosp.write(DO); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2456 baosp.write(OPT_END_OF_RECORD); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2457 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2458 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2459 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2460 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2461 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2462 case TRANSMIT_BINARY: // '\0' |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2463 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2464 baosp.write(DO); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2465 baosp.write(TRANSMIT_BINARY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2466 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2467 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2468 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2469 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2470 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2471 i++; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2472 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2473 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2474 case SB: // -6 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2475 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2476 if(abyte0[i] == NEW_ENVIRONMENT && abyte0[i + 1] == 1) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2477 negNewEnvironment(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2478 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2479 while (++i < abyte0.length && abyte0[i + 1] != IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2480 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2481 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2482 if(abyte0[i] == TERMINAL_TYPE && abyte0[i + 1] == 1) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2483 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2484 baosp.write(SB); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2485 baosp.write(TERMINAL_TYPE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2486 baosp.write(QUAL_IS); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2487 if(!support132) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2488 baosp.write("IBM-3179-2".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2489 else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2490 baosp.write("IBM-3477-FC".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2491 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2492 baosp.write(SE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2493 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2494 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2495 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2496 i++; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2497 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2498 i++; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2499 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2500 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2501 return true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2502 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2503 else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2504 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2505 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2506 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2507 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2508 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2509 * Negotiate new environment string for device name |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2510 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2511 * @throws IOException |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2512 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2513 private void negNewEnvironment() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2514 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2515 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2516 baosp.write(SB); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2517 baosp.write(NEW_ENVIRONMENT); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2518 baosp.write(IS); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2519 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2520 // http://tools.ietf.org/html/rfc4777 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2521 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2522 if (kbdTypesCodePage != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2523 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2524 baosp.write("KBDTYPE".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2525 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2526 baosp.write(kbdTypesCodePage.kbdType.getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2527 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2528 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2529 baosp.write("CODEPAGE".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2530 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2531 baosp.write(kbdTypesCodePage.codepage.getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2532 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2533 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2534 baosp.write("CHARSET".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2535 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2536 baosp.write(kbdTypesCodePage.charset.getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2537 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2538 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2539 if (devName != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2540 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2541 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2542 baosp.write("DEVNAME".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2543 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2544 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2545 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2546 baosp.write(negDeviceName().getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2547 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2548 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2549 if (user != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2550 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2551 baosp.write(VAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2552 baosp.write("USER".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2553 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2554 baosp.write(user.getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2555 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2556 if (password != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2557 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2558 baosp.write("IBMRSEED".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2559 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2560 baosp.write(NEGOTIATE_ESC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2561 baosp.write(0x0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2562 baosp.write(0x0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2563 baosp.write(0x0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2564 baosp.write(0x0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2565 baosp.write(0x0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2566 baosp.write(0x0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2567 baosp.write(0x0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2568 baosp.write(0x0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2569 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2570 baosp.write("IBMSUBSPW".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2571 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2572 baosp.write(password.getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2573 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2574 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2575 if (library != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2576 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2577 baosp.write("IBMCURLIB".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2578 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2579 baosp.write(library.getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2580 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2581 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2582 if (initialMenu != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2583 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2584 baosp.write("IBMIMENU".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2585 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2586 baosp.write(initialMenu.getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2587 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2588 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2589 if (program != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2590 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2591 baosp.write("IBMPROGRAM".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2592 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2593 baosp.write(program.getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2594 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2595 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2596 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2597 baosp.write(SE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2598 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2599 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2600 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2601 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2602 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2603 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2604 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2605 * This will negotiate a device name with controller. if the sequence is |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2606 * less than zero then it will send the device name as specified. On each |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2607 * unsuccessful attempt a sequential number is appended until we find one or |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2608 * the controller says no way. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2609 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2610 * @return String |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2611 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2612 private String negDeviceName() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2613 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2614 if (devSeq++ == -1) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2615 devNameUsed = devName; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2616 return devName; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2617 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2618 StringBuffer sb = new StringBuffer(devName + devSeq); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2619 int ei = 1; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2620 while (sb.length() > 10) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2621 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2622 sb.setLength(0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2623 sb.append(devName.substring(0, devName.length() - ei++)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2624 sb.append(devSeq); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2625 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2626 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2627 devNameUsed = sb.toString(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2628 return devNameUsed; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2629 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2630 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2631 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2632 public final void setCodePage(String cp) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2633 codePage = CharMappings.getCodePage(cp); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2634 cp = cp.toLowerCase(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2635 for (KbdTypesCodePages kbdtyp : KbdTypesCodePages.values()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2636 if (("cp"+kbdtyp.codepage).equals(cp) || kbdtyp.ccsid.equals(cp)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2637 kbdTypesCodePage = kbdtyp; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2638 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2639 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2640 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2641 Log.i(TAG,"Chose keyboard mapping " + kbdTypesCodePage.toString() + " for code page " + cp); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2642 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2643 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2644 public final ICodePage getCodePage() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2645 return codePage; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2646 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2647 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2648 public void signalBell() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2649 manager.playBeep(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2650 } |
3 | 2651 |
2652 } |