Mercurial > 510Connectbot
annotate src/org/tn5250j/framework/tn5250/tnvt.java @ 42:7ac846a07ed4 tn5250
start tn5250 integration
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 11 Jun 2014 09:14:31 -0700 |
parents | 0395ca628303 |
children | 294435151b0c |
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; | |
80 | |
81 import javax.net.ssl.SSLSocket; | |
82 | |
24 | 83 import com.five_ten_sg.connectbot.R; |
8 | 84 import com.five_ten_sg.connectbot.service.TerminalBridge; |
85 import com.five_ten_sg.connectbot.service.TerminalManager; | |
13 | 86 import android.content.Intent; |
87 import android.net.Uri; | |
8 | 88 |
3 | 89 import org.tn5250j.TN5250jConstants; |
90 import org.tn5250j.encoding.CharMappings; | |
91 import org.tn5250j.encoding.ICodePage; | |
92 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
|
93 import android.util.Log; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
94 |
3 | 95 |
96 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
|
97 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
|
98 // negotiating commands |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
99 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
|
100 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
|
101 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
|
102 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
|
103 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
|
104 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
|
105 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
|
106 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
|
107 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
|
108 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
|
109 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
|
110 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
|
111 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
|
112 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
|
113 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
|
114 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
|
115 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
|
116 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
|
117 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
|
118 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
|
119 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
|
120 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
121 // miscellaneous |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
122 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
|
123 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
124 private Socket sock; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
125 public BufferedInputStream bin; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
126 public BufferedOutputStream bout; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
127 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
|
128 private Stream5250 bk; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
129 private DataStreamProducer producer; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
130 protected Screen5250 screen52; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
131 private boolean waitingForInput; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
132 private boolean invited; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
133 private boolean negotiated = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
134 private Thread me; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
135 private Thread pthread; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
136 private int readType; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
137 private boolean enhanced = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
138 private boolean cursorOn = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
139 private String hostname = ""; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
140 private int port = 23; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
141 private boolean connected = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
142 private boolean support132 = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
143 private ByteArrayOutputStream baosp = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
144 private ByteArrayOutputStream baosrsp = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
145 private int devSeq = -1; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
146 private String devName; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
147 private String devNameUsed; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
148 private KbdTypesCodePages kbdTypesCodePage; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
149 // 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
|
150 private boolean scan; // = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
151 private static int STRSCAN = 1; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
152 // 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
|
153 private boolean strpccmd; // = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
154 private String user; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
155 private String password; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
156 private String library; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
157 private String initialMenu; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
158 private String program; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
159 private boolean keepTrucking = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
160 private boolean pendingUnlock = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
161 private boolean[] dataIncluded; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
162 protected ICodePage codePage; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
163 private boolean firstScreen; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
164 private String sslType; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
165 private WTDSFParser sfParser; |
8 | 166 private TerminalBridge bridge; |
167 private TerminalManager manager; | |
3 | 168 |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
169 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
170 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
171 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
172 * @param screen52 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
173 * @param enhanced |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
174 * @param support132 |
10 | 175 * @param bridge |
176 * @param manager | |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
177 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
178 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
|
179 this.screen52 = screen52; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
180 this.support132 = support132; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
181 this.enhanced = enhanced; |
8 | 182 this.bridge = bridge; |
183 this.manager = manager; | |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
184 setCodePage("37"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
185 dataIncluded = new boolean[24]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
186 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
187 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
|
188 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
|
189 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
|
190 password = System.getProperties().getProperty( |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
191 "SESSION_CONNECT_PASSWORD"); |
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_LIBRARY")) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
193 library = System.getProperties().getProperty( |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
194 "SESSION_CONNECT_LIBRARY"); |
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_MENU")) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
196 initialMenu = System.getProperties().getProperty( |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
197 "SESSION_CONNECT_MENU"); |
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_PROGRAM")) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
199 program = System.getProperties().getProperty( |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
200 "SESSION_CONNECT_PROGRAM"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
201 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
202 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
203 baosp = new ByteArrayOutputStream(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
204 baosrsp = new ByteArrayOutputStream(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
205 } |
3 | 206 |
10 | 207 public void showURL(String url) { |
208 if (url.indexOf("://") < 0) url = "http://" + url; | |
209 Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); | |
210 manager.startActivity(intent); | |
211 } | |
212 | |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
213 public String getHostName() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
214 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
215 return hostname; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
216 } |
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 public void setSSLType(String type) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
219 sslType = type; |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
222 public void setDeviceName(String name) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
223 devName = name; |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
226 public String getDeviceName() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
227 return devName; |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
230 public String getAllocatedDeviceName() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
231 return devNameUsed; |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
234 public boolean isConnected() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
235 return connected; |
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 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
239 * @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
|
240 * @see {@link #isConnected()} |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
241 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
242 public boolean isSslSocket() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
243 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
|
244 return true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
245 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
246 return false; |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
250 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
|
251 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
252 Properties systemProperties = System.getProperties(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
253 systemProperties.put("socksProxySet", "true"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
254 systemProperties.put("socksProxyHost", proxyHost); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
255 systemProperties.put("socksProxyPort", proxyPort); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
256 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
257 System.setProperties(systemProperties); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
258 Log.i(TAG," socks set "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
259 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
260 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
261 public final boolean connect() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
262 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
263 return connect(hostname, port); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
264 |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
267 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
268 public final boolean connect(String hostname, int port) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
269 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
270 this.hostname = hostname; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
271 this.port = port; |
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 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
274 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
|
275 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
|
276 } catch (Exception exc) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
277 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
|
278 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
279 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
280 SocketConnector sc = new SocketConnector(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
281 if (sslType != null) sc.setSSLType(sslType); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
282 sock = sc.createSocket(hostname, port, bridge, manager); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
283 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
284 if (sock == null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
285 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
|
286 disconnect(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
287 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
288 } |
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 connected = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
291 // used for JDK1.3 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
292 sock.setKeepAlive(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
293 sock.setTcpNoDelay(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
294 sock.setSoLinger(false, 0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
295 InputStream in = sock.getInputStream(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
296 OutputStream out = sock.getOutputStream(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
297 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
298 bin = new BufferedInputStream(in, 8192); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
299 bout = new BufferedOutputStream(out); |
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 byte abyte0[]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
302 while (negotiate(abyte0 = readNegotiations())); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
303 negotiated = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
304 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
305 screen52.setCursorActive(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
306 } catch (Exception excc) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
307 Log.w(TAG,"setCursorOff " + excc.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
308 |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
311 producer = new DataStreamProducer(this, bin, dsq, abyte0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
312 pthread = new Thread(producer); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
313 // pthread.setPriority(pthread.MIN_PRIORITY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
314 pthread.setPriority(Thread.NORM_PRIORITY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
315 // pthread.setPriority(Thread.NORM_PRIORITY / 2); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
316 pthread.start(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
317 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
318 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
319 screen52.getOIA().setInputInhibited(ScreenOIA.INPUTINHIBITED_NOTINHIBITED, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
320 ScreenOIA.OIA_LEVEL_INPUT_INHIBITED); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
321 } catch (Exception exc) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
322 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
|
323 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
324 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
325 keepTrucking = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
326 me = new Thread(this); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
327 me.start(); |
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 } catch (Exception exception) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
330 if (exception.getMessage() == null) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
331 exception.printStackTrace(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
332 Log.w(TAG,"connect() " + exception.getMessage()); |
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 if (sock == null) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
335 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
|
336 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
337 disconnect(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
338 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
339 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
340 return true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
341 |
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 public final boolean disconnect() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
345 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
346 if (!connected) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
347 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
|
348 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
|
349 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
350 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
351 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
352 if (me != null && me.isAlive()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
353 me.interrupt(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
354 keepTrucking = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
355 pthread.interrupt(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
356 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
357 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
358 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
|
359 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
|
360 screen52.getOIA().setKeyBoardLocked(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
361 pendingUnlock = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
362 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
363 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
364 if (sock != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
365 Log.i(TAG,"Closing socket"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
366 sock.close(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
367 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
368 if (bin != null) bin.close(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
369 if (bout != null) bout.close(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
370 connected = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
371 firstScreen = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
372 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
373 // 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
|
374 // 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
|
375 //controller.getScreen().clearAll(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
376 screen52.goto_XY(0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
377 screen52.setCursorActive(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
378 screen52.clearAll(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
379 screen52.restoreScreen(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
380 } catch (Exception exception) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
381 Log.w(TAG,exception.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
382 connected = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
383 devSeq = -1; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
384 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
385 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
386 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
387 devSeq = -1; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
388 return true; |
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 private final ByteArrayOutputStream appendByteStream(byte abyte0[]) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
392 ByteArrayOutputStream bytearrayoutputstream = new ByteArrayOutputStream(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
393 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
|
394 bytearrayoutputstream.write(abyte0[i]); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
395 if (abyte0[i] == -1) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
396 bytearrayoutputstream.write(-1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
397 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
398 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
399 return bytearrayoutputstream; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
400 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
401 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
402 private final byte[] readNegotiations() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
403 int i = bin.read(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
404 if (i < 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
405 throw new IOException("Connection closed."); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
406 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
407 int j = bin.available(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
408 byte abyte0[] = new byte[j + 1]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
409 abyte0[0] = (byte) i; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
410 bin.read(abyte0, 1, j); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
411 return abyte0; |
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 } |
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 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
|
416 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
417 bout.write(abyte0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
418 bout.flush(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
419 } |
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 // 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
|
422 // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
423 // bout.write(byte0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
424 // bout.flush(); |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
427 public final void sendHeartBeat() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
428 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
429 byte[] b = { (byte) 0xff, (byte) 0xf1 }; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
430 bout.write(b); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
431 bout.flush(); |
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 private final void readImmediate(int readType) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
435 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
436 if (screen52.isStatusErrorCode()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
437 screen52.restoreErrorLine(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
438 screen52.setStatus(Screen5250.STATUS_ERROR_CODE, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
439 Screen5250.STATUS_VALUE_OFF, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
440 } |
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 if (!enhanced) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
443 screen52.setCursorActive(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
444 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
445 // screen52.setStatus(Screen5250.STATUS_SYSTEM, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
446 // Screen5250.STATUS_VALUE_ON, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
447 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
|
448 ScreenOIA.OIA_LEVEL_INPUT_INHIBITED); |
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 screen52.getOIA().setKeyBoardLocked(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
451 pendingUnlock = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
452 invited = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
453 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
454 screen52.getScreenFields().readFormatTable(baosp, readType, codePage); |
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 try { |
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 writeGDS(0, 3, baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
459 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
460 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
461 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
462 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
463 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
464 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
465 |
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 public final boolean sendAidKey(int aid) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
469 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
470 if (screen52.isStatusErrorCode()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
471 screen52.restoreErrorLine(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
472 screen52.setStatus(Screen5250.STATUS_ERROR_CODE, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
473 Screen5250.STATUS_VALUE_OFF, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
474 } |
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 if (!enhanced) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
477 screen52.setCursorActive(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
478 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
479 // screen52.setStatus(Screen5250.STATUS_SYSTEM, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
480 // Screen5250.STATUS_VALUE_ON, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
481 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
|
482 ScreenOIA.OIA_LEVEL_INPUT_INHIBITED); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
483 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
484 screen52.getOIA().setKeyBoardLocked(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
485 pendingUnlock = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
486 invited = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
487 baosp.write(screen52.getCurrentRow()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
488 baosp.write(screen52.getCurrentCol()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
489 baosp.write(aid); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
490 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
491 if (dataIncluded(aid)) |
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 screen52.getScreenFields().readFormatTable(baosp, readType, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
494 codePage); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
495 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
496 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
497 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
498 writeGDS(0, 3, baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
499 } catch (IOException ioe) { |
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 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
502 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
503 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
504 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
505 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
506 return true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
507 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
508 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
509 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
510 private boolean dataIncluded(int aid) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
511 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
512 switch (aid) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
513 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
514 case PF1: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
515 return !dataIncluded[0]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
516 case PF2: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
517 return !dataIncluded[1]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
518 case PF3: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
519 return !dataIncluded[2]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
520 case PF4: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
521 return !dataIncluded[3]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
522 case PF5: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
523 return !dataIncluded[4]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
524 case PF6: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
525 return !dataIncluded[5]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
526 case PF7: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
527 return !dataIncluded[6]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
528 case PF8: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
529 return !dataIncluded[7]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
530 case PF9: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
531 return !dataIncluded[8]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
532 case PF10: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
533 return !dataIncluded[9]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
534 case PF11: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
535 return !dataIncluded[10]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
536 case PF12: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
537 return !dataIncluded[11]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
538 case PF13: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
539 return !dataIncluded[12]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
540 case PF14: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
541 return !dataIncluded[13]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
542 case PF15: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
543 return !dataIncluded[14]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
544 case PF16: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
545 return !dataIncluded[15]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
546 case PF17: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
547 return !dataIncluded[16]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
548 case PF18: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
549 return !dataIncluded[17]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
550 case PF19: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
551 return !dataIncluded[18]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
552 case PF20: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
553 return !dataIncluded[19]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
554 case PF21: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
555 return !dataIncluded[20]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
556 case PF22: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
557 return !dataIncluded[21]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
558 case PF23: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
559 return !dataIncluded[22]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
560 case PF24: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
561 return !dataIncluded[23]; |
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 default: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
564 return true; |
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 } |
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 } |
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 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
571 * Help request - |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
572 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
573 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
574 * See notes inside method |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
575 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
576 public final void sendHelpRequest() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
577 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
578 // Client sends header 000D12A0000004000003####F3FFEF |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
579 // operation code 3 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
580 // row - first ## |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
581 // column - second ## |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
582 // F3 - Help Aid Key |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
583 // System.out.println("Help request sent"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
584 baosp.write(screen52.getCurrentRow()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
585 baosp.write(screen52.getCurrentCol()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
586 baosp.write(AID_HELP); |
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 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
589 writeGDS(0, 3, baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
590 } catch (IOException ioe) { |
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 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
593 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
594 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
595 } |
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 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
598 * Attention Key - |
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 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
601 * See notes inside method |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
602 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
603 public final void sendAttentionKey() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
604 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
605 // Client sends header 000A12A000004400000FFEF |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
606 // 0x40 -> 01000000 |
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 // flags |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
609 // bit 0 - ERR |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
610 // bit 1 - ATN Attention |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
611 // bits 2-4 - reserved |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
612 // bit 5 - SRQ system request |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
613 // bit 6 - TRQ Test request key |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
614 // bit 7 - HLP |
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 // System.out.println("Attention key sent"); |
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 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
619 writeGDS(0x40, 0, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
620 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
621 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
622 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
623 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
624 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
625 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
626 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
627 * 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
|
628 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
629 * @see {@link #systemRequest(String)} |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
630 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
631 public final void systemRequest() { |
23 | 632 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
|
633 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
|
634 systemRequest(sysreq); |
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 * @param sr - system request option |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
639 * @see {@link #systemRequest(String)} |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
640 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
641 public final void systemRequest(char sr) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
642 systemRequest(Character.toString(sr)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
643 } |
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 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
646 * 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
|
647 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
648 * @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
|
649 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
650 public final void systemRequest(String sr) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
651 byte[] bytes = null; |
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 if ( (sr != null) && (sr.length() > 0)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
654 // 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
|
655 if (sr.charAt(0) == '2') { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
656 dsq.clear(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
657 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
658 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
|
659 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
|
660 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
661 bytes = baosp.toByteArray(); |
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 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
665 writeGDS(4, 0, bytes); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
666 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
667 Log.i(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
668 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
669 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
670 } |
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 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
673 * 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
|
674 * 4.3 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
675 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
676 * See notes inside method |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
677 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
678 public final void cancelInvite() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
679 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
680 // screen52.setStatus(Screen5250.STATUS_SYSTEM, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
681 // Screen5250.STATUS_VALUE_ON, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
682 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
|
683 ScreenOIA.OIA_LEVEL_INPUT_INHIBITED); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
684 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
685 // from rfc1205 section 4.3 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
686 // 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
|
687 // Opcode = Cancel Invite. |
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 // 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
|
690 // Opcode = Cancel Invite to |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
691 // indicate that the work station is |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
692 // no longer invited. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
693 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
694 writeGDS(0, 10, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
695 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
696 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
697 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
698 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
699 |
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 public final void hostPrint(int aid) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
703 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
704 if (screen52.isStatusErrorCode()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
705 screen52.restoreErrorLine(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
706 screen52.setStatus(Screen5250.STATUS_ERROR_CODE, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
707 Screen5250.STATUS_VALUE_OFF, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
708 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
709 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
710 screen52.setCursorActive(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
711 // screen52.setStatus(Screen5250.STATUS_SYSTEM, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
712 // Screen5250.STATUS_VALUE_ON, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
713 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
|
714 ScreenOIA.OIA_LEVEL_INPUT_INHIBITED); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
715 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
716 // From client access ip capture |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
717 // 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
|
718 // 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
|
719 // well |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
720 // with a value of 0x80 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
721 // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
722 // 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
|
723 // 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
|
724 //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
|
725 //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
|
726 // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
727 // Client sends header 000D12A0000004000003####F6FFEF |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
728 // operation code 3 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
729 // row - first ## |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
730 // column - second ## |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
731 // F6 - Print Aid Key |
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 baosp.write(screen52.getCurrentRow()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
734 baosp.write(screen52.getCurrentCol()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
735 baosp.write(AID_PRINT); // aid key |
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 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
738 writeGDS(0, 3, baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
739 } catch (IOException ioe) { |
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 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
742 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
743 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
744 } |
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 public final void toggleDebug() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
747 producer.toggleDebug(codePage); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
748 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
749 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
750 // write gerneral data stream |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
751 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
|
752 throws IOException { |
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 // 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
|
755 // 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
|
756 // 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
|
757 // 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
|
758 // anyway. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
759 if (bout == null) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
760 return; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
761 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
762 int length; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
763 if (abyte0 != null) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
764 length = abyte0.length + 10; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
765 else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
766 length = 10; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
767 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
768 // refer to rfc1205 - 5250 Telnet interface |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
769 // Section 3. Data Stream Format |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
770 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
771 // Logical Record Length - 16 bits |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
772 baosrsp.write(length >> 8); // Length LL |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
773 baosrsp.write(length & 0xff); // LL |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
774 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
775 // Record Type - 16 bits |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
776 // 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
|
777 // General Data Stream (GDS) record type. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
778 baosrsp.write(18); // 0x12 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
779 baosrsp.write(160); // 0xA0 |
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 // 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
|
782 baosrsp.write(0); // 0x00 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
783 baosrsp.write(0); // 0x00 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
784 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
785 // 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
|
786 // 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
|
787 baosrsp.write(4); // 0x04 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
788 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
789 baosrsp.write(flags); // flags |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
790 // bit 0 - ERR |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
791 // bit 1 - ATN Attention |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
792 // bits 2-4 - reserved |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
793 // bit 5 - SRQ system request |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
794 // bit 6 - TRQ Test request key |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
795 // bit 7 - HLP |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
796 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
|
797 baosrsp.write(opcode); // opcode |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
798 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
799 if (abyte0 != null) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
800 baosrsp.write(abyte0, 0, abyte0.length); |
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 baosrsp = appendByteStream(baosrsp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
803 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
804 // 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
|
805 baosrsp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
806 baosrsp.write(EOR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
807 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
808 baosrsp.writeTo(bout); |
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 // byte[] b = new byte[baosrsp.size()]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
811 // b = baosrsp.toByteArray(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
812 // dump(b); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
813 bout.flush(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
814 // baos = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
815 baosrsp.reset(); |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
818 protected final int getOpCode() { |
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 return bk.getOpCode(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
821 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
822 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
823 // private final void sendNotify() throws IOException { |
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 // writeGDS(0, 0, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
826 // } |
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 protected boolean[] getActiveAidKeys() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
829 boolean aids[] = new boolean[dataIncluded.length]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
830 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
|
831 return aids; |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
834 private final void setInvited() { |
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 Log.d(TAG,"invited"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
837 if (!screen52.isStatusErrorCode()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
838 screen52.getOIA().setInputInhibited(ScreenOIA.INPUTINHIBITED_NOTINHIBITED, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
839 ScreenOIA.OIA_LEVEL_INPUT_INHIBITED); |
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 invited = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
842 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
843 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
844 // 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
|
845 private void strpccmd() |
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 try |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
848 { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
849 int str = 11; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
850 char c; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
851 ScreenPlanes planes = screen52.getPlanes(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
852 c = planes.getChar(str); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
853 boolean waitFor = !(c == 'a'); |
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 StringBuffer command = new StringBuffer(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
856 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
|
857 { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
858 c = planes.getChar(i); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
859 if (Character.isISOControl(c)) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
860 c = ' '; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
861 command.append(c); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
862 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
863 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
864 String cmd = command.toString().trim(); |
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 run(cmd, waitFor); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
867 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
868 finally |
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 strpccmd = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
871 screen52.sendKeys(TN5250jConstants.MNEMONIC_ENTER); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
872 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
873 } |
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 // 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
|
876 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
|
877 { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
878 try |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
879 { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
880 Log.d(TAG,"RUN cmd = " + cmd); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
881 Log.d(TAG,"RUN wait = " + waitFor); |
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 Runtime r = Runtime.getRuntime(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
884 Process p = r.exec(cmd); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
885 if (waitFor) |
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 int result = p.waitFor(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
888 Log.d(TAG,"RUN result = " + result); |
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 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
891 catch (Throwable t) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
892 { |
27
b29b39f386a4
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
26
diff
changeset
|
893 Log.e(TAG,"exception",t); |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
894 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
895 } |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
898 // 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
|
899 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
900 * 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
|
901 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
902 * @param scan |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
903 * 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
|
904 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
905 * @see scan4Cmd() |
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 public void setScanningEnabled(boolean scan) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
908 this.scan = scan; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
909 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
910 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
911 // 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
|
912 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
913 * Checks whether command scanning is enabled. |
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 * @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
|
916 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
917 public boolean isScanningEnabled() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
918 return this.scan; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
919 } |
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 // 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
|
922 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
923 * 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
|
924 * 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
|
925 * 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
|
926 * 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
|
927 * 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
|
928 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
929 private void scan() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
930 // System.out.println("Checking command : " + |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
931 // 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
|
932 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
933 // ScreenChar[] screen = screen52.screen; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
934 ScreenPlanes planes = screen52.getPlanes(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
935 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
936 if ((planes.getChar(STRSCAN) == '#') |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
937 && (planes.getChar(STRSCAN + 1) == '!') |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
938 && (planes.getChar(STRSCAN + 2) != ' ')) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
939 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
940 parseCommand(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
941 } catch (Throwable t) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
942 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
|
943 t.printStackTrace(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
944 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
945 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
946 } |
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 // 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
|
949 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
950 * 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
|
951 * 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
|
952 * 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
|
953 * 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
|
954 * screen, is passed as starting index. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
955 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
956 * 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
|
957 * 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
|
958 * 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
|
959 * 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
|
960 * 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
|
961 * 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
|
962 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
963 * <ul> |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
964 * <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
|
965 * <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
|
966 * </ul> |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
967 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
968 private void parseCommand() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
969 // 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
|
970 // 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
|
971 // of the screen. |
32
b086dd794dba
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
29
diff
changeset
|
972 char[] screen = screen52.getScreenAsChars(); |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
973 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
|
974 if (screen[i] == ' ') { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
975 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
|
976 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
977 // 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
|
978 // the screen. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
979 //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
|
980 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
981 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
|
982 - (i + 1)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
983 //controller.fireScanned(command, remainder); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
984 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
|
985 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
986 } |
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 } |
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 public void run() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
991 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
992 if (enhanced) sfParser = new WTDSFParser(this); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
993 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
994 bk = new Stream5250(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
995 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
996 while (keepTrucking) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
997 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
998 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
999 bk.initialize((byte[]) dsq.take()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1000 } catch (InterruptedException ie) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1001 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
|
1002 keepTrucking = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1003 continue; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1004 } |
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 // 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
|
1007 // me.yield(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1008 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1009 Thread.yield(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1010 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1011 invited = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1012 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1013 screen52.setCursorActive(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1014 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1015 // 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
|
1016 if (bk == null) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1017 continue; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1018 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1019 switch (bk.getOpCode()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1020 case 00: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1021 Log.d(TAG,"No operation"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1022 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1023 case 1: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1024 Log.d(TAG,"Invite Operation"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1025 parseIncoming(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1026 // screen52.setKeyboardLocked(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1027 pendingUnlock = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1028 cursorOn = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1029 setInvited(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1030 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1031 case 2: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1032 Log.d(TAG,"Output Only"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1033 parseIncoming(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1034 screen52.updateDirty(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1035 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1036 case 3: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1037 Log.d(TAG,"Put/Get Operation"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1038 parseIncoming(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1039 setInvited(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1040 if (!firstScreen) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1041 firstScreen = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1042 //controller.fireSessionChanged(TN5250jConstants.STATE_CONNECTED); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1043 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1044 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1045 case 4: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1046 Log.d(TAG,"Save Screen Operation"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1047 parseIncoming(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1048 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1049 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1050 case 5: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1051 Log.d(TAG,"Restore Screen Operation"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1052 parseIncoming(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1053 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1054 case 6: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1055 Log.d(TAG,"Read Immediate"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1056 sendAidKey(0); |
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 7: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1059 Log.d(TAG,"Reserved"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1060 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1061 case 8: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1062 Log.d(TAG,"Read Screen Operation"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1063 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1064 readScreen(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1065 } catch (IOException ex) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1066 Log.w(TAG,ex.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1067 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1068 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1069 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1070 case 9: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1071 Log.d(TAG,"Reserved"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1072 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1073 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1074 case 10: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1075 Log.d(TAG,"Cancel Invite Operation"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1076 cancelInvite(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1077 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1078 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1079 case 11: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1080 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
|
1081 screen52.getOIA().setMessageLightOn(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1082 screen52.setCursorActive(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1083 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1084 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1085 case 12: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1086 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
|
1087 screen52.getOIA().setMessageLightOff(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1088 screen52.setCursorActive(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1089 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1090 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1091 default: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1092 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1093 } |
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 if (screen52.isUsingGuiInterface()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1096 screen52.drawFields(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1097 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1098 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1099 if (!strpccmd) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1100 screen52.updateDirty(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1101 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1102 strpccmd(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1103 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1104 } catch (Exception exd) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1105 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
|
1106 exd.printStackTrace(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1107 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1108 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1109 if (pendingUnlock && !screen52.isStatusErrorCode()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1110 screen52.getOIA().setKeyBoardLocked(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1111 pendingUnlock = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1112 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1113 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1114 if (cursorOn && !screen52.getOIA().isKeyBoardLocked()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1115 screen52.setCursorActive(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1116 cursorOn = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1117 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1118 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1119 // 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
|
1120 //me.yield(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1121 Thread.yield(); |
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 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1124 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1125 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1126 public void dumpStuff() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1127 Log.d(TAG," Pending unlock " + pendingUnlock); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1128 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
|
1129 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
|
1130 Log.d(TAG," Cursor On " + cursorOn); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1131 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
|
1132 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1133 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1134 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1135 private final void readScreen() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1136 int rows = screen52.getRows(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1137 int cols = screen52.getColumns(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1138 byte abyte0[] = new byte[rows * cols]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1139 fillScreenArray(abyte0, rows, cols); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1140 writeGDS(0, 0, abyte0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1141 abyte0 = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1142 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1143 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1144 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
|
1145 int la = 32; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1146 int sac = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1147 int len = rows * cols; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1148 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1149 ScreenPlanes planes = screen52.planes; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1150 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1151 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
|
1152 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1153 if (planes.isAttributePlace(y)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1154 la = planes.getCharAttr(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1155 sa[sac++] = (byte) la; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1156 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1157 if (planes.getCharAttr(y) != la) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1158 la = planes.getCharAttr(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1159 sac--; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1160 sa[sac++] = (byte) la; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1161 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1162 //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
|
1163 // do not convert the character. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1164 // 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
|
1165 //sa[sac++] = |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1166 // (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
|
1167 char ch = planes.getChar(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1168 byte byteCh = (byte) ch; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1169 if (isDataUnicode(ch)) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1170 byteCh = codePage.uni2ebcdic(ch); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1171 sa[sac++] = byteCh; |
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 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1174 } |
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 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
|
1177 throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1178 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1179 int la = 32; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1180 int sac = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1181 int len = rows * cols; |
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 ScreenPlanes planes = screen52.planes; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1184 byte[] sa = new byte[len]; |
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 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1187 boolean guiExists = sfParser != null && sfParser.isGuisExists(); |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1190 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
|
1191 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1192 if (guiExists) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1193 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1194 byte[] guiSeg = sfParser.getSegmentAtPos(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1195 if (guiSeg != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1196 //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
|
1197 // screen52.getCol(y)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1198 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1199 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
|
1200 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
|
1201 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
|
1202 sa = new byte[gsa.length]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1203 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
|
1204 sa[sac++] = (byte)0x04; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1205 sa[sac++] = (byte)0x11; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1206 sac += guiSeg.length; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1207 //y--; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1208 // continue; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1209 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1210 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1211 if (planes.isAttributePlace(y)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1212 la = planes.getCharAttr(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1213 sa[sac++] = (byte) la; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1214 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1215 if (planes.getCharAttr(y) != la) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1216 la = planes.getCharAttr(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1217 sac--; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1218 sa[sac++] = (byte) la; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1219 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1220 //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
|
1221 // do not convert the character. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1222 // 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
|
1223 //sa[sac++] = |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1224 // (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
|
1225 char ch = planes.getChar(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1226 byte byteCh = (byte) ch; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1227 if (isDataUnicode(ch)) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1228 byteCh = codePage.uni2ebcdic(ch); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1229 sa[sac++] = byteCh; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1230 } |
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 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1233 catch(Exception exc) { |
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 Log.i(TAG,exc.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1236 exc.printStackTrace(); |
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 sc.write(sa); |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1241 public final void saveScreen() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1242 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1243 ByteArrayOutputStream sc = new ByteArrayOutputStream(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1244 sc.write(4); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1245 sc.write(0x12); // 18 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1246 sc.write(0); // 18 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1247 sc.write(0); // 18 |
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 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
|
1250 sc.write((byte) screen52.getColumns()); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1251 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1252 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
|
1253 // fix below submitted by Mitch Blevins |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1254 //int cp = screen52.getScreenFields().getCurrentFieldPos(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1255 // save off current position |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1256 sc.write((byte) (cp >> 8 & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1257 sc.write((byte) (cp & 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 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
|
1260 sc.write((byte) (screen52.homePos & 0xff)); // "" |
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 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
|
1263 int cols = screen52.getColumns(); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1264 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1265 // byte[] sa = new byte[rows * cols]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1266 fillRegenerationBuffer(sc,rows,cols); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1267 // fillScreenArray(sa, rows, cols); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1268 // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1269 // sc.write(sa); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1270 // sa = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1271 int sizeFields = screen52.getScreenFields().getSize(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1272 sc.write((byte) (sizeFields >> 8 & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1273 sc.write((byte) (sizeFields & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1274 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1275 if (sizeFields > 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1276 int x = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1277 int s = screen52.getScreenFields().getSize(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1278 ScreenField sf = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1279 while (x < s) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1280 sf = screen52.getScreenFields().getField(x); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1281 sc.write((byte) sf.getAttr()); // attribute |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1282 int sp = sf.startPos(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1283 sc.write((byte) (sp >> 8 & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1284 sc.write((byte) (sp & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1285 if (sf.mdt) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1286 sc.write((byte) 1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1287 else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1288 sc.write((byte) 0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1289 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
|
1290 sc.write((byte) (sf.getLength() & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1291 sc.write((byte) sf.getFFW1() & 0xff); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1292 sc.write((byte) sf.getFFW2() & 0xff); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1293 sc.write((byte) sf.getFCW1() & 0xff); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1294 sc.write((byte) sf.getFCW2() & 0xff); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1295 Log.d(TAG,"Saved "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1296 Log.d(TAG,sf.toString()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1297 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1298 x++; |
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 sf = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1301 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1302 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1303 // 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
|
1304 // 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
|
1305 // 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
|
1306 // for GC ? |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1307 // screen52.clearTable(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1308 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1309 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1310 writeGDS(0, 3, sc.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1311 } catch (IOException ioe) { |
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 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1314 } |
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 sc = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1317 Log.d(TAG,"Save Screen end "); |
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 |
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 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1322 * @throws IOException |
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 public final void restoreScreen() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1325 int which = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1326 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1327 ScreenPlanes planes = screen52.planes; |
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 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1330 Log.d(TAG,"Restore "); |
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 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1333 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1334 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1335 int rows = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1336 int cols = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1337 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
|
1338 pos |= bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1339 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
|
1340 hPos |= bk.getNextByte() & 0xff; |
29
017eeed8332c
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
27
diff
changeset
|
1341 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
|
1342 screen52.setRowsCols(rows, cols); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1343 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
|
1344 if (sfParser != null && sfParser.isGuisExists()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1345 sfParser.clearGuiStructs(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1346 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1347 int b = 32; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1348 int la = 32; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1349 int len = rows * cols; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1350 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
|
1351 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1352 b = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1353 if (b == 0x04) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1354 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1355 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
|
1356 screen52.getCol(y)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1357 int command = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1358 byte[] seg = bk.getSegment(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1359 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1360 if (seg.length > 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1361 screen52.goto_XY(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1362 sfParser.parseWriteToDisplayStructuredField(seg); |
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 y--; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1365 // screen52.goto_XY(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1366 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1367 else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1368 // b = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1369 if (planes.isUseGui(y)) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1370 continue; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1371 if (isAttribute(b)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1372 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
|
1373 la = b; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1374 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1375 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1376 else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1377 //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
|
1378 // character. If not, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1379 // do not convert the character. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1380 // 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
|
1381 char ch = (char) b; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1382 if (isDataEBCDIC(b)) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1383 ch = codePage.ebcdic2uni(b); |
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 planes.setScreenCharAndAttr(y, ch, la, false); |
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 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1388 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1389 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1390 int numFields = bk.getNextByte() << 8 & 0xff00; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1391 numFields |= bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1392 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
|
1393 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1394 if (numFields > 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1395 int x = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1396 int attr = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1397 int fPos = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1398 int fLen = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1399 int ffw1 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1400 int ffw2 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1401 int fcw1 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1402 int fcw2 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1403 boolean mdt = false; |
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 ScreenField sf = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1406 while (x < numFields) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1407 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1408 attr = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1409 fPos = bk.getNextByte() << 8 & 0xff00; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1410 fPos |= bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1411 if (bk.getNextByte() == 1) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1412 mdt = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1413 else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1414 mdt = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1415 fLen = bk.getNextByte() << 8 & 0xff00; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1416 fLen |= bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1417 ffw1 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1418 ffw2 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1419 fcw1 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1420 fcw2 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1421 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1422 sf = screen52.getScreenFields().setField(attr, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1423 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
|
1424 ffw1, ffw2, fcw1, fcw2); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1425 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1426 while (fLen-- > 0) { |
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 // 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
|
1429 planes.setScreenFieldAttr(fPos++,ffw1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1430 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1431 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1432 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1433 if (mdt) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1434 sf.setMDT(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1435 screen52.getScreenFields().setMasterMDT(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1436 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1437 Log.d(TAG,"/nRestored "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1438 Log.d(TAG,sf.toString()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1439 x++; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1440 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1441 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1442 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1443 // 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
|
1444 if (screen52.isUsingGuiInterface()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1445 screen52.drawFields(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1446 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1447 screen52.restoreScreen(); // display the screen |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1448 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1449 // 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
|
1450 // screen position. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1451 // 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
|
1452 // displayed after the restore. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1453 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
|
1454 .getCol(pos + cols)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1455 // 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
|
1456 // 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
|
1457 screen52.goto_XY(pos - 1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1458 screen52.isInField(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1459 // // 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
|
1460 // if (screen52.isUsingGuiInterface()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1461 // screen52.drawFields(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1462 } catch (Exception e) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1463 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
|
1464 + e.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1465 } |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1468 public final boolean waitingForInput() { |
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 return waitingForInput; |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1473 private void parseIncoming() { |
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 boolean done = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1476 boolean error = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1477 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1478 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1479 while (bk.hasNext() && !done) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1480 byte b = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1481 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1482 switch (b) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1483 case 0: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1484 case 1: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1485 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1486 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
|
1487 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
|
1488 Log.d(TAG,"save screen partial"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1489 saveScreen(); |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1492 case ESC: // ESCAPE |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1493 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1494 case 7: // audible bell |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1495 manager.playBeep(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1496 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1497 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1498 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1499 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
|
1500 error = writeToDisplay(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1501 // 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
|
1502 // 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
|
1503 // screen buffer) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1504 // has been issued! |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1505 if (scan) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1506 scan(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1507 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1508 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1509 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
|
1510 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
|
1511 Log.d(TAG,"restore screen partial"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1512 restoreScreen(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1513 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1514 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1515 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
|
1516 int param = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1517 if (param != 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1518 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
|
1519 + Integer.toHexString(param)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1520 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
|
1521 " clear unit alternate not supported"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1522 done = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1523 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1524 if (screen52.getRows() != 27) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1525 screen52.setRowsCols(27, 132); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1526 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1527 screen52.clearAll(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1528 if (sfParser != null && sfParser.isGuisExists()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1529 sfParser.clearGuiStructs(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1530 |
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 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1533 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1534 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1535 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
|
1536 writeErrorCode(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1537 error = writeToDisplay(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1538 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1539 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
|
1540 // Write Error Code to window |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1541 writeErrorCodeToWindow(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1542 error = writeToDisplay(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1543 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1544 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1545 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
|
1546 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
|
1547 readScreen(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1548 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1549 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1550 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
|
1551 if (screen52.getRows() != 24) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1552 screen52.setRowsCols(24, 80); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1553 screen52.clearAll(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1554 if (sfParser != null && sfParser.isGuisExists()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1555 sfParser.clearGuiStructs(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1556 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1557 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1558 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1559 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
|
1560 screen52.clearTable(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1561 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1562 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1563 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
|
1564 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
|
1565 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1566 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1567 readType = b; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1568 screen52.goHome(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1569 // 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
|
1570 // in the main loop. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1571 //////////////// screen52.setCursorOn(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1572 waitingForInput = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1573 pendingUnlock = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1574 // screen52.setKeyboardLocked(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1575 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1576 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
|
1577 readType = b; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1578 // screen52.goHome(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1579 // waitingForInput = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1580 // screen52.setKeyboardLocked(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1581 readImmediate(readType); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1582 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1583 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
|
1584 // structured field |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1585 writeStructuredField(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1586 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1587 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
|
1588 int updown = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1589 int topline = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1590 int bottomline = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1591 screen52.rollScreen(updown, topline, bottomline); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1592 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1593 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1594 default: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1595 done = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1596 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
|
1597 "parseIncoming"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1598 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1599 } |
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 if (error) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1602 done = true; |
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 } catch (Exception exc) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1605 Log.w(TAG,"incoming " + exc.getMessage()); |
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 } |
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 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1610 * 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
|
1611 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1612 * 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
|
1613 * 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
|
1614 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1615 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1616 * @param cat |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1617 * @param modifier |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1618 * @param uByte1 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1619 * @param uByte2 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1620 * @param from |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1621 * |
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 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
|
1624 int uByte2, String from) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1625 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1626 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1627 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1628 int os = bk.getByteOffset(-1) & 0xf0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1629 int cp = (bk.getCurrentPos() - 1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1630 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
|
1631 + " at pos " + cp); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1632 } catch (Exception e) { |
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 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
|
1635 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1636 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1637 baosp.write(cat); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1638 baosp.write(modifier); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1639 baosp.write(uByte1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1640 baosp.write(uByte2); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1641 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1642 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1643 writeGDS(128, 0, baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1644 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1645 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1646 Log.w(TAG,ioe.getMessage()); |
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 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1649 |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1652 public void sendNegResponse2(int ec) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1653 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1654 screen52.setPrehelpState(true, true, false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1655 baosp.write(0x00); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1656 baosp.write(ec); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1657 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1658 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1659 writeGDS(1, 0, baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1660 } catch (IOException ioe) { |
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 Log.w(TAG,ioe.getMessage()); |
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 baosp.reset(); |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1668 private boolean writeToDisplay(boolean controlsExist) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1669 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1670 boolean error = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1671 boolean done = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1672 int attr; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1673 byte control0 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1674 byte control1 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1675 int saRows = screen52.getRows(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1676 int saCols = screen52.getColumns(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1677 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1678 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1679 if (controlsExist) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1680 control0 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1681 control1 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1682 processCC0(control0); |
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 while (bk.hasNext() && !done) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1685 // pos = bk.getCurrentPos(); |
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 // int rowc = screen52.getCurrentRow(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1688 // int colc = screen52.getCurrentCol(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1689 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1690 byte bytebk = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1691 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1692 switch (bytebk) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1693 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1694 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
|
1695 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
|
1696 error = processSOH(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1697 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1698 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1699 case 02: // RA - Repeat to address |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1700 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
|
1701 int row = screen52.getCurrentRow(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1702 int col = screen52.getCurrentCol(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1703 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1704 int toRow = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1705 int toCol = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1706 if (toRow >= row) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1707 int repeat = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1708 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1709 // a little intelligence here I hope |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1710 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
|
1711 && toCol == screen52.getColumns()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1712 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1713 screen52.clearScreen(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1714 else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1715 if (repeat != 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1716 //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
|
1717 repeat = codePage.ebcdic2uni(repeat); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1718 //repeat = getASCIIChar(repeat); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1719 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1720 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1721 int times = ((toRow * screen52.getColumns()) + toCol) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1722 - ((row * screen52.getColumns()) + col); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1723 while (times-- >= 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1724 screen52.setChar(repeat); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1725 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1726 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1727 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1728 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1729 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
|
1730 " RA invalid"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1731 error = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1732 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1733 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1734 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1735 case 03: // EA - Erase to address |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1736 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
|
1737 int EArow = screen52.getCurrentRow(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1738 int EAcol = screen52.getCurrentCol(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1739 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1740 int toEARow = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1741 int toEACol = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1742 int EALength = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1743 while (--EALength > 0) { |
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 bk.getNextByte(); |
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 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1748 char EAAttr = (char) 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1749 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1750 // a little intelligence here I hope |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1751 if (EArow == 1 && EAcol == 2 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1752 && toEARow == screen52.getRows() |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1753 && toEACol == screen52.getColumns()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1754 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1755 screen52.clearScreen(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1756 else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1757 int times = ((toEARow * screen52.getColumns()) + toEACol) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1758 - ((EArow * screen52.getColumns()) + EAcol); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1759 while (times-- >= 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1760 screen52.setChar(EAAttr); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1761 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1762 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1763 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1764 case 04: // Command - Escape |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1765 Log.d(TAG,"Command - Escape"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1766 done = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1767 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1768 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1769 case 16: // TD - Transparent Data |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1770 Log.d(TAG,"TD - Transparent Data"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1771 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
|
1772 & 0xff; // length |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1773 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1774 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1775 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
|
1776 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
|
1777 int saRow = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1778 int saCol = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1779 // make sure it is in bounds |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1780 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
|
1781 && saCol <= screen52.getColumns()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1782 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
|
1783 // position for output |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1784 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1785 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1786 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1787 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
|
1788 "invalid row/col order" + " saRow = " + saRow |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1789 + " saRows = " + screen52.getRows() |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1790 + " saCol = " + saCol); |
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 error = true; |
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 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1795 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1796 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1797 case 18: // WEA - Extended Attribute |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1798 Log.d(TAG,"WEA - Extended Attribute"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1799 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1800 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1801 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1802 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1803 case 19: // IC - Insert Cursor |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1804 Log.d(TAG,"IC - Insert Cursor"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1805 int icX = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1806 int icY = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1807 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
|
1808 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1809 Log.d(TAG," IC " + icX + " " + icY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1810 screen52.setPendingInsert(true, icX, icY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1811 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1812 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
|
1813 " IC/IM position invalid "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1814 error = true; |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1817 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1818 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1819 case 20: // MC - Move Cursor |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1820 Log.d(TAG,"MC - Move Cursor"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1821 int imcX = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1822 int imcY = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1823 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
|
1824 && imcY <= saCols) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1825 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1826 Log.d(TAG," MC " + imcX + " " + imcY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1827 screen52.setPendingInsert(false, imcX, imcY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1828 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1829 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
|
1830 " IC/IM position invalid "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1831 error = true; |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1834 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1835 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1836 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
|
1837 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
|
1838 byte[] seg = bk.getSegment(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1839 error = sfParser.parseWriteToDisplayStructuredField(seg); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1840 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1841 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1842 case 29: // SF - Start of Field |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1843 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
|
1844 int fcw1 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1845 int fcw2 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1846 int ffw1 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1847 int ffw0 = bk.getNextByte() & 0xff; // FFW |
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 if ((ffw0 & 0x40) == 0x40) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1850 ffw1 = bk.getNextByte() & 0xff; // FFW 1 |
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 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
|
1853 // control word |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1854 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1855 // 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
|
1856 // the next pair for checking |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1857 if (fcw1 == 0x81) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1858 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1859 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
|
1860 // control word |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1863 if (!isAttribute(fcw1)) { |
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 fcw2 = bk.getNextByte() & 0xff; // FCW 2 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1866 attr = bk.getNextByte() & 0xff; // attribute field |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1867 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1868 while (!isAttribute(attr)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1869 Log.i(TAG,Integer.toHexString(fcw1) + " " |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1870 + Integer.toHexString(fcw2) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1871 + " "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1872 Log.i(TAG,Integer.toHexString(attr) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1873 + " " |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1874 + Integer.toHexString(bk |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1875 .getNextByte() & 0xff)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1876 attr = bk.getNextByte() & 0xff; // attribute field |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1877 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1878 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1879 attr = fcw1; // attribute of field |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1880 fcw1 = 0; |
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 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1883 attr = ffw0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1884 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1885 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1886 int fLength = (bk.getNextByte() & 0xff) << 8 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1887 | bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1888 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
|
1889 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1890 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1891 // 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
|
1892 case -128: //STRPCCMD |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1893 // if (screen52.getCurrentPos() == 82) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1894 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
|
1895 StringBuffer value = new StringBuffer(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1896 int b; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1897 char c; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1898 int[] pco = new int[9]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1899 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
|
1900 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1901 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
|
1902 { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1903 b = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1904 pco[i] = ((b & 0xff)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1905 c = codePage.ebcdic2uni(b); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1906 value.append(c); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1907 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1908 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1909 // Check "PCO-String" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1910 if (Arrays.equals(pco, pcoOk)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1911 strpccmd = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1912 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1913 // 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
|
1914 // 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
|
1915 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
|
1916 bk.setPrevByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1917 //} |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1918 // no break: so every chars arrives |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1919 // on the screen for later parsing |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1920 //break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1921 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1922 default: // all others must be output to screen |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1923 Log.d(TAG,"all others must be output to screen"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1924 byte byte0 = bk.getByteOffset(-1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1925 if (isAttribute(byte0)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1926 screen52.setAttr(byte0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1927 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1928 if (!screen52.isStatusErrorCode()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1929 if (!isDataEBCDIC(byte0)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1930 // if (byte0 == 255) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1931 // 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
|
1932 // " Attempt to send FF to screen"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1933 // } |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1936 screen52.setChar(byte0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1937 } else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1938 //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
|
1939 //screen52.setChar(getASCIIChar(byte0)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1940 screen52.setChar(codePage.ebcdic2uni(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 if (byte0 == 0) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1943 screen52.setChar(byte0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1944 else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1945 //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
|
1946 //screen52.setChar(getASCIIChar(byte0)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1947 screen52.setChar(codePage.ebcdic2uni(byte0)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1948 } |
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 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1952 } |
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 if (error) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1955 done = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1956 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1957 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1958 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1959 catch (Exception e) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1960 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
|
1961 e.printStackTrace(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1962 } |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1965 processCC1(control1); |
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 return error; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1968 |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1971 private boolean processSOH() throws Exception { |
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 int l = bk.getNextByte(); // length |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1974 Log.d(TAG," byte 0 " + l); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1975 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1976 if (l > 0 && l <= 7) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1977 bk.getNextByte(); // flag byte 2 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1978 bk.getNextByte(); // reserved |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1979 bk.getNextByte(); // resequence fields |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1980 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1981 screen52.clearTable(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1982 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1983 // 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
|
1984 // 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
|
1985 if (l <= 3) return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1986 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1987 screen52.setErrorLine(bk.getNextByte()); // error row |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1988 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1989 int byte1 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1990 if (l >= 5) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1991 byte1 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1992 dataIncluded[23] = (byte1 & 0x80) == 0x80; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1993 dataIncluded[22] = (byte1 & 0x40) == 0x40; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1994 dataIncluded[21] = (byte1 & 0x20) == 0x20; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1995 dataIncluded[20] = (byte1 & 0x10) == 0x10; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1996 dataIncluded[19] = (byte1 & 0x8) == 0x8; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1997 dataIncluded[18] = (byte1 & 0x4) == 0x4; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1998 dataIncluded[17] = (byte1 & 0x2) == 0x2; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1999 dataIncluded[16] = (byte1 & 0x1) == 0x1; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2000 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2001 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2002 if (l >= 6) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2003 byte1 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2004 dataIncluded[15] = (byte1 & 0x80) == 0x80; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2005 dataIncluded[14] = (byte1 & 0x40) == 0x40; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2006 dataIncluded[13] = (byte1 & 0x20) == 0x20; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2007 dataIncluded[12] = (byte1 & 0x10) == 0x10; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2008 dataIncluded[11] = (byte1 & 0x8) == 0x8; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2009 dataIncluded[10] = (byte1 & 0x4) == 0x4; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2010 dataIncluded[9] = (byte1 & 0x2) == 0x2; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2011 dataIncluded[8] = (byte1 & 0x1) == 0x1; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2012 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2013 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2014 if (l >= 7) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2015 byte1 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2016 dataIncluded[7] = (byte1 & 0x80) == 0x80; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2017 dataIncluded[6] = (byte1 & 0x40) == 0x40; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2018 dataIncluded[5] = (byte1 & 0x20) == 0x20; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2019 dataIncluded[4] = (byte1 & 0x10) == 0x10; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2020 dataIncluded[3] = (byte1 & 0x8) == 0x8; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2021 dataIncluded[2] = (byte1 & 0x4) == 0x4; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2022 dataIncluded[1] = (byte1 & 0x2) == 0x2; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2023 dataIncluded[0] = (byte1 & 0x1) == 0x1; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2024 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2025 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2026 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2027 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
|
2028 "invalid SOH length"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2029 return true; |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2032 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2033 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2034 private void processCC0(byte byte0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2035 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
|
2036 boolean lockKeyboard = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2037 boolean resetMDT = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2038 boolean resetMDTAll = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2039 boolean nullMDT = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2040 boolean nullAll = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2041 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2042 // 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
|
2043 // 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
|
2044 if ((byte0 & 0xE0) == 0x00) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2045 lockKeyboard = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2046 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2047 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2048 // '00100000' = 0x20 /32 -- just lock keyboard |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2049 // '01000000' = 0x40 /64 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2050 // '01100000' = 0x60 /96 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2051 // '10000000' = 0x80 /128 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2052 // '10100000' = 0xA0 /160 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2053 // '11000000' = 0xC0 /192 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2054 // '11100000' = 0xE0 /224 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2055 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2056 switch (byte0 & 0xE0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2057 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2058 case 0x40: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2059 resetMDT = 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 0x60: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2062 resetMDTAll = 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 0x80: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2065 nullMDT = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2066 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2067 case 0xA0: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2068 resetMDT = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2069 nullAll = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2070 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2071 case 0xC0: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2072 resetMDT = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2073 nullMDT = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2074 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2075 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2076 case 0xE0: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2077 resetMDTAll = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2078 nullAll = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2079 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2080 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2081 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2082 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2083 if (lockKeyboard) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2084 screen52.getOIA().setKeyBoardLocked(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2085 pendingUnlock = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2086 } else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2087 pendingUnlock = false; |
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 if (resetMDT || resetMDTAll || nullMDT || nullAll) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2090 ScreenField sf; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2091 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2092 int f = screen52.getScreenFields().getSize(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2093 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
|
2094 sf = screen52.getScreenFields().getField(x); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2095 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2096 if (!sf.isBypassField()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2097 if ((nullMDT && sf.mdt) || nullAll) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2098 sf.setFieldChar((char) 0x0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2099 screen52.drawField(sf); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2100 } |
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 if (resetMDTAll || (resetMDT && !sf.isBypassField())) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2103 sf.resetMDT(); |
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 sf = null; |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2109 } |
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 private void processCC1(byte byte1) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2112 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
|
2113 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2114 if ((byte1 & 0x04) == 0x04) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2115 manager.playBeep(); |
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 & 0x02) == 0x02) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2118 screen52.getOIA().setMessageLightOff(); |
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 if ((byte1 & 0x01) == 0x01) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2121 screen52.getOIA().setMessageLightOn(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2122 } |
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 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
|
2125 screen52.getOIA().setMessageLightOn(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2126 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2127 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2128 // 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
|
2129 // 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
|
2130 // 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
|
2131 // ass! |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2132 // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2133 // 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
|
2134 // 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
|
2135 // *** 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
|
2136 // this seems to work so far |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2137 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
|
2138 screen52.setPendingInsert(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2139 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
|
2140 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2141 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2142 screen52.setPendingInsert(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2143 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
|
2144 + screen52.getRow(screen52.homePos) + " col " |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2145 + screen52.getCol(screen52.homePos)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2146 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2147 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2148 // 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
|
2149 // is reset blinking cursor |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2150 if ((byte1 & 0x20) == 0x20 && enhanced) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2151 cursorOn = true; |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2154 if (!screen52.isStatusErrorCode() && (byte1 & 0x08) == 0x08) { |
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 // 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
|
2157 cursorOn = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2158 } |
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 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
|
2161 screen52.setPendingInsert(false, 1, 1); |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2164 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2165 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2166 private boolean isAttribute(int byte0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2167 int byte1 = byte0 & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2168 return (byte1 & 0xe0) == 0x20; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2169 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2170 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2171 //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
|
2172 private boolean isDataEBCDIC(int byte0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2173 int byte1 = byte0 & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2174 // 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
|
2175 if (byte1 >= 64 && byte1 < 255) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2176 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2177 return true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2178 else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2179 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2180 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2181 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2182 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2183 //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
|
2184 // character. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2185 // 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
|
2186 // 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
|
2187 // check on 255 -> 0xFFFF |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2188 private boolean isDataUnicode(int byte0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2189 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
|
2190 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2191 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2192 private void writeStructuredField() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2193 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2194 boolean done = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2195 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2196 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
|
2197 while (bk.hasNext() && !done) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2198 switch (bk.getNextByte()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2199 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2200 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
|
2201 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2202 switch (bk.getNextByte()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2203 case 112: // 5250 Query |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2204 bk.getNextByte(); // get null required field |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2205 sendQueryResponse(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2206 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2207 default: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2208 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
|
2209 + bk.getByteOffset(-1)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2210 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2211 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2212 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2213 default: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2214 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
|
2215 + bk.getByteOffset(-1)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2216 break; |
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 } catch (Exception e) { |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2223 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2224 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2225 private final void writeErrorCode() throws Exception { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2226 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
|
2227 screen52.setStatus(Screen5250.STATUS_ERROR_CODE, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2228 Screen5250.STATUS_VALUE_ON, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2229 screen52.saveErrorLine(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2230 cursorOn = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2231 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2232 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2233 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2234 private final void writeErrorCodeToWindow() throws Exception { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2235 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
|
2236 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
|
2237 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
|
2238 // byte |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2239 screen52.setStatus(Screen5250.STATUS_ERROR_CODE, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2240 Screen5250.STATUS_VALUE_ON, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2241 screen52.saveErrorLine(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2242 cursorOn = true; |
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 } |
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 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2247 * Method sendQueryResponse |
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 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
|
2250 * the 5250 display. |
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 * 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
|
2253 * command (0xF3). |
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 * 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
|
2256 * 5.3 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2257 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2258 * @throws IOException |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2259 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2260 private final void sendQueryResponse() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2261 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2262 Log.i(TAG,"sending query response"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2263 byte abyte0[] = new byte[64]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2264 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
|
2265 abyte0[1] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2266 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
|
2267 if (enhanced == true) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2268 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
|
2269 abyte0[4] = 64; // "" see note below ????????? |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2270 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2271 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
|
2272 abyte0[4] = 58; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2273 // 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
|
2274 // 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
|
2275 // the host ???????????????? why ??????? |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2276 // 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
|
2277 // read a little more ;-) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2278 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2279 abyte0[5] = -39; // command class 0xD9 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2280 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
|
2281 abyte0[7] = -128; // 0x80 Flag byte |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2282 abyte0[8] = 6; // Controller Hardware Class |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2283 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
|
2284 abyte0[10] = 1; // Controller Code Level |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2285 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
|
2286 abyte0[12] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2287 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2288 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
|
2289 abyte0[14] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2290 abyte0[15] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2291 abyte0[16] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2292 abyte0[17] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2293 abyte0[18] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2294 abyte0[19] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2295 abyte0[20] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2296 abyte0[21] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2297 abyte0[22] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2298 abyte0[23] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2299 abyte0[24] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2300 abyte0[25] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2301 abyte0[26] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2302 abyte0[27] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2303 abyte0[28] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2304 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
|
2305 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
|
2306 abyte0[31] = codePage.uni2ebcdic('2'); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2307 abyte0[32] = codePage.uni2ebcdic('5'); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2308 abyte0[33] = codePage.uni2ebcdic('1'); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2309 abyte0[34] = codePage.uni2ebcdic('0'); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2310 abyte0[35] = codePage.uni2ebcdic('1'); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2311 abyte0[36] = codePage.uni2ebcdic('1'); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2312 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2313 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
|
2314 abyte0[38] = 0; // extended keyboard id |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2315 abyte0[39] = 0; // reserved |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2316 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2317 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
|
2318 abyte0[41] = 36; // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2319 abyte0[42] = 36; // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2320 abyte0[43] = 0; // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2321 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2322 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
|
2323 abyte0[45] = 0; // 0x0100 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2324 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
|
2325 abyte0[47] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2326 abyte0[48] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2327 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
|
2328 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
|
2329 abyte0[51] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2330 abyte0[52] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2331 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2332 // 53 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2333 // 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
|
2334 // B'001' - 5292-2 style graphics |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2335 // 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
|
2336 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2337 if (enhanced == true) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2338 // 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
|
2339 // 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
|
2340 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
|
2341 Log.i(TAG,"enhanced options"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2342 } else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2343 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
|
2344 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2345 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
|
2346 // 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
|
2347 // 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
|
2348 // and footers for windows |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2349 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
|
2350 // 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
|
2351 // 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
|
2352 // and footers for windows |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2353 abyte0[55] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2354 abyte0[56] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2355 abyte0[57] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2356 abyte0[58] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2357 abyte0[59] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2358 abyte0[60] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2359 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
|
2360 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
|
2361 abyte0[63] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2362 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
|
2363 abyte0 = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2364 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2365 } |
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 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
|
2368 int i = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2369 |
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 // from server negotiations |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2372 if(abyte0[i] == IAC) { // -1 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2373 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2374 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
|
2375 // 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
|
2376 switch(abyte0[i++]) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2377 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2378 // 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
|
2379 case WONT: // -4 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2380 default: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2381 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2382 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2383 case DO: //-3 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2384 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2385 // 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
|
2386 // 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
|
2387 // 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
|
2388 // 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
|
2389 if (i < abyte0.length) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2390 switch(abyte0[i]) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2391 case TERMINAL_TYPE: // 24 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2392 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2393 baosp.write(WILL); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2394 baosp.write(TERMINAL_TYPE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2395 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2396 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2397 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2398 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2399 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2400 case OPT_END_OF_RECORD: // 25 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2401 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2402 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2403 baosp.write(WILL); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2404 baosp.write(OPT_END_OF_RECORD); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2405 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2406 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2407 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2408 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2409 case TRANSMIT_BINARY: // 0 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2410 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2411 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2412 baosp.write(WILL); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2413 baosp.write(TRANSMIT_BINARY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2414 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2415 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2416 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2417 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2418 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2419 case TIMING_MARK: // 6 rfc860 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2420 // 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
|
2421 // "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
|
2422 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2423 baosp.write(WONT); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2424 baosp.write(TIMING_MARK); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2425 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2426 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2427 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2428 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2429 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2430 case NEW_ENVIRONMENT: // 39 rfc1572, rfc4777 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2431 // allways send new environment vars ... |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2432 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2433 baosp.write(WILL); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2434 baosp.write(NEW_ENVIRONMENT); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2435 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2436 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2437 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2438 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2439 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
|
2440 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2441 baosp.write(WONT); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2442 baosp.write(abyte0[i]); // either |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2443 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2444 baosp.reset(); |
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 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2447 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2448 } |
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 i++; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2451 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2452 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2453 case WILL: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2454 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2455 switch(abyte0[i]) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2456 case OPT_END_OF_RECORD: // 25 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2457 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2458 baosp.write(DO); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2459 baosp.write(OPT_END_OF_RECORD); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2460 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2461 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2462 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2463 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2464 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2465 case TRANSMIT_BINARY: // '\0' |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2466 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2467 baosp.write(DO); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2468 baosp.write(TRANSMIT_BINARY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2469 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2470 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2471 |
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 i++; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2475 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2476 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2477 case SB: // -6 |
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 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
|
2480 negNewEnvironment(); |
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 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
|
2483 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2484 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2485 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
|
2486 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2487 baosp.write(SB); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2488 baosp.write(TERMINAL_TYPE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2489 baosp.write(QUAL_IS); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2490 if(!support132) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2491 baosp.write("IBM-3179-2".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2492 else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2493 baosp.write("IBM-3477-FC".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2494 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2495 baosp.write(SE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2496 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2497 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2498 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2499 i++; |
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 i++; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2502 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2503 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2504 return true; |
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 else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2507 return false; |
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 } |
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 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2512 * 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
|
2513 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2514 * @throws IOException |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2515 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2516 private void negNewEnvironment() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2517 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2518 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2519 baosp.write(SB); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2520 baosp.write(NEW_ENVIRONMENT); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2521 baosp.write(IS); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2522 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2523 // http://tools.ietf.org/html/rfc4777 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2524 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2525 if (kbdTypesCodePage != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2526 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2527 baosp.write("KBDTYPE".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2528 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2529 baosp.write(kbdTypesCodePage.kbdType.getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2530 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2531 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2532 baosp.write("CODEPAGE".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2533 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2534 baosp.write(kbdTypesCodePage.codepage.getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2535 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2536 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2537 baosp.write("CHARSET".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2538 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2539 baosp.write(kbdTypesCodePage.charset.getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2540 } |
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 if (devName != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2543 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2544 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2545 baosp.write("DEVNAME".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2546 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2547 baosp.write(VALUE); |
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 baosp.write(negDeviceName().getBytes()); |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2552 if (user != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2553 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2554 baosp.write(VAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2555 baosp.write("USER".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2556 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2557 baosp.write(user.getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2558 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2559 if (password != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2560 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2561 baosp.write("IBMRSEED".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2562 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2563 baosp.write(NEGOTIATE_ESC); |
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(0x0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2570 baosp.write(0x0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2571 baosp.write(0x0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2572 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2573 baosp.write("IBMSUBSPW".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2574 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2575 baosp.write(password.getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2576 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2577 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2578 if (library != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2579 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2580 baosp.write("IBMCURLIB".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2581 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2582 baosp.write(library.getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2583 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2584 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2585 if (initialMenu != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2586 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2587 baosp.write("IBMIMENU".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2588 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2589 baosp.write(initialMenu.getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2590 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2591 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2592 if (program != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2593 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2594 baosp.write("IBMPROGRAM".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2595 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2596 baosp.write(program.getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2597 } |
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 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2600 baosp.write(SE); |
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 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2603 baosp.reset(); |
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 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2606 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2607 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2608 * 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
|
2609 * 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
|
2610 * 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
|
2611 * the controller says no way. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2612 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2613 * @return String |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2614 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2615 private String negDeviceName() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2616 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2617 if (devSeq++ == -1) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2618 devNameUsed = devName; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2619 return devName; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2620 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2621 StringBuffer sb = new StringBuffer(devName + devSeq); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2622 int ei = 1; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2623 while (sb.length() > 10) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2624 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2625 sb.setLength(0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2626 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
|
2627 sb.append(devSeq); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2628 |
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 devNameUsed = sb.toString(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2631 return devNameUsed; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2632 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2633 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2634 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2635 public final void setCodePage(String cp) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2636 codePage = CharMappings.getCodePage(cp); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2637 cp = cp.toLowerCase(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2638 for (KbdTypesCodePages kbdtyp : KbdTypesCodePages.values()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2639 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
|
2640 kbdTypesCodePage = kbdtyp; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2641 break; |
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 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
|
2645 } |
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 public final ICodePage getCodePage() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2648 return codePage; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2649 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2650 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2651 public void signalBell() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2652 manager.playBeep(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2653 } |
3 | 2654 |
2655 } |