Mercurial > 510Connectbot
annotate src/org/tn5250j/framework/tn5250/tnvt.java @ 32:b086dd794dba tn5250
start tn5250 integration
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Tue, 10 Jun 2014 13:31:30 -0700 |
parents | 017eeed8332c |
children | 0395ca628303 |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
270 //// We will now see if there are any bypass signon parameters to be |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
271 //// processed. The system properties override these parameters so |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
272 //// have precidence if specified. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
273 //Properties props = controller.getConnectionProperties(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
274 //if (user == null && props.containsKey("SESSION_CONNECT_USER")) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
275 // user = props.getProperty("SESSION_CONNECT_USER"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
276 // Log.i(TAG," user -> " + user + " " + controller.getSessionName()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
277 // if (props.containsKey("SESSION_CONNECT_PASSWORD")) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
278 // password = props.getProperty("SESSION_CONNECT_PASSWORD"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
279 // if (props.containsKey("SESSION_CONNECT_LIBRARY")) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
280 // library = props.getProperty("SESSION_CONNECT_LIBRARY"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
281 // if (props.containsKey("SESSION_CONNECT_MENU")) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
282 // initialMenu = props.getProperty("SESSION_CONNECT_MENU"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
283 // if (props.containsKey("SESSION_CONNECT_PROGRAM")) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
284 // program = props.getProperty("SESSION_CONNECT_PROGRAM"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
285 //} |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
286 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
287 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
288 this.hostname = hostname; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
289 this.port = port; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
290 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
291 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
292 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
|
293 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
|
294 } catch (Exception exc) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
295 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
|
296 } |
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 // sock = new Socket(s, port); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
299 //smk - For SSL compability |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
300 SocketConnector sc = new SocketConnector(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
301 if (sslType != null) sc.setSSLType(sslType); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
302 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
|
303 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
304 if (sock == null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
305 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
|
306 disconnect(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
307 return false; |
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 connected = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
311 // used for JDK1.3 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
312 sock.setKeepAlive(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
313 sock.setTcpNoDelay(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
314 sock.setSoLinger(false, 0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
315 InputStream in = sock.getInputStream(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
316 OutputStream out = sock.getOutputStream(); |
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 bin = new BufferedInputStream(in, 8192); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
319 bout = new BufferedOutputStream(out); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
320 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
321 byte abyte0[]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
322 while (negotiate(abyte0 = readNegotiations())); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
323 negotiated = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
324 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
325 screen52.setCursorActive(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
326 } catch (Exception excc) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
327 Log.w(TAG,"setCursorOff " + excc.getMessage()); |
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 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
330 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
331 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
|
332 pthread = new Thread(producer); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
333 // pthread.setPriority(pthread.MIN_PRIORITY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
334 pthread.setPriority(Thread.NORM_PRIORITY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
335 // pthread.setPriority(Thread.NORM_PRIORITY / 2); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
336 pthread.start(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
337 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
338 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
339 screen52.getOIA().setInputInhibited(ScreenOIA.INPUTINHIBITED_NOTINHIBITED, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
340 ScreenOIA.OIA_LEVEL_INPUT_INHIBITED); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
341 } catch (Exception exc) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
342 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
|
343 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
344 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
345 keepTrucking = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
346 me = new Thread(this); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
347 me.start(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
348 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
349 } catch (Exception exception) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
350 if (exception.getMessage() == null) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
351 exception.printStackTrace(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
352 Log.w(TAG,"connect() " + exception.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
353 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
354 if (sock == null) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
355 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
|
356 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
357 disconnect(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
358 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
359 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
360 return true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
361 |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
364 public final boolean disconnect() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
365 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
366 // Added by LUC - LDC to fix a null pointer exception. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
367 if (!connected) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
368 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
|
369 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
|
370 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
371 } |
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 if (me != null && me.isAlive()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
374 me.interrupt(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
375 keepTrucking = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
376 pthread.interrupt(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
377 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
378 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
379 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
|
380 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
|
381 screen52.getOIA().setKeyBoardLocked(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
382 pendingUnlock = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
383 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
384 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
385 if (sock != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
386 Log.i(TAG,"Closing socket"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
387 sock.close(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
388 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
389 if (bin != null) bin.close(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
390 if (bout != null) bout.close(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
391 connected = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
392 firstScreen = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
393 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
394 // 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
|
395 // 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
|
396 //controller.getScreen().clearAll(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
397 screen52.goto_XY(0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
398 screen52.setCursorActive(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
399 screen52.clearAll(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
400 screen52.restoreScreen(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
401 } catch (Exception exception) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
402 Log.w(TAG,exception.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
403 connected = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
404 devSeq = -1; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
405 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
406 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
407 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
408 devSeq = -1; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
409 return true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
410 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
411 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
412 private final ByteArrayOutputStream appendByteStream(byte abyte0[]) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
413 ByteArrayOutputStream bytearrayoutputstream = new ByteArrayOutputStream(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
414 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
|
415 bytearrayoutputstream.write(abyte0[i]); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
416 if (abyte0[i] == -1) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
417 bytearrayoutputstream.write(-1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
418 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
419 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
420 return bytearrayoutputstream; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
421 } |
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 private final byte[] readNegotiations() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
424 int i = bin.read(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
425 if (i < 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
426 throw new IOException("Connection closed."); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
427 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
428 int j = bin.available(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
429 byte abyte0[] = new byte[j + 1]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
430 abyte0[0] = (byte) i; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
431 bin.read(abyte0, 1, j); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
432 return abyte0; |
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 } |
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 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
|
437 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
438 bout.write(abyte0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
439 bout.flush(); |
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 // 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
|
443 // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
444 // bout.write(byte0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
445 // bout.flush(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
446 // } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
447 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
448 public final void sendHeartBeat() throws IOException { |
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 byte[] b = { (byte) 0xff, (byte) 0xf1 }; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
451 bout.write(b); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
452 bout.flush(); |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
455 private final void readImmediate(int readType) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
456 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
457 if (screen52.isStatusErrorCode()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
458 screen52.restoreErrorLine(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
459 screen52.setStatus(Screen5250.STATUS_ERROR_CODE, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
460 Screen5250.STATUS_VALUE_OFF, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
461 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
462 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
463 if (!enhanced) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
464 screen52.setCursorActive(false); |
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 // screen52.setStatus(Screen5250.STATUS_SYSTEM, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
467 // Screen5250.STATUS_VALUE_ON, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
468 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
|
469 ScreenOIA.OIA_LEVEL_INPUT_INHIBITED); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
470 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
471 screen52.getOIA().setKeyBoardLocked(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
472 pendingUnlock = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
473 invited = false; |
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 screen52.getScreenFields().readFormatTable(baosp, readType, codePage); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
476 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
477 try { |
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 writeGDS(0, 3, baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
480 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
481 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
482 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
483 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
484 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
485 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
486 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
487 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
488 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
489 public final boolean sendAidKey(int 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 (screen52.isStatusErrorCode()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
492 screen52.restoreErrorLine(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
493 screen52.setStatus(Screen5250.STATUS_ERROR_CODE, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
494 Screen5250.STATUS_VALUE_OFF, null); |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
497 if (!enhanced) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
498 screen52.setCursorActive(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
499 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
500 // screen52.setStatus(Screen5250.STATUS_SYSTEM, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
501 // Screen5250.STATUS_VALUE_ON, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
502 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
|
503 ScreenOIA.OIA_LEVEL_INPUT_INHIBITED); |
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 screen52.getOIA().setKeyBoardLocked(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
506 pendingUnlock = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
507 invited = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
508 baosp.write(screen52.getCurrentRow()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
509 baosp.write(screen52.getCurrentCol()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
510 baosp.write(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 if (dataIncluded(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 screen52.getScreenFields().readFormatTable(baosp, readType, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
515 codePage); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
516 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
517 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
518 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
519 writeGDS(0, 3, baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
520 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
521 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
522 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
523 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
524 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
525 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
526 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
527 return true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
528 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
529 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
530 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
531 private boolean dataIncluded(int aid) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
532 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
533 switch (aid) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
534 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
535 case PF1: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
536 return !dataIncluded[0]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
537 case PF2: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
538 return !dataIncluded[1]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
539 case PF3: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
540 return !dataIncluded[2]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
541 case PF4: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
542 return !dataIncluded[3]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
543 case PF5: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
544 return !dataIncluded[4]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
545 case PF6: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
546 return !dataIncluded[5]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
547 case PF7: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
548 return !dataIncluded[6]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
549 case PF8: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
550 return !dataIncluded[7]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
551 case PF9: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
552 return !dataIncluded[8]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
553 case PF10: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
554 return !dataIncluded[9]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
555 case PF11: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
556 return !dataIncluded[10]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
557 case PF12: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
558 return !dataIncluded[11]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
559 case PF13: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
560 return !dataIncluded[12]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
561 case PF14: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
562 return !dataIncluded[13]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
563 case PF15: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
564 return !dataIncluded[14]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
565 case PF16: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
566 return !dataIncluded[15]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
567 case PF17: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
568 return !dataIncluded[16]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
569 case PF18: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
570 return !dataIncluded[17]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
571 case PF19: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
572 return !dataIncluded[18]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
573 case PF20: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
574 return !dataIncluded[19]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
575 case PF21: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
576 return !dataIncluded[20]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
577 case PF22: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
578 return !dataIncluded[21]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
579 case PF23: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
580 return !dataIncluded[22]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
581 case PF24: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
582 return !dataIncluded[23]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
583 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
584 default: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
585 return true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
586 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
587 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
588 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
589 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
590 |
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 * Help request - |
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 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
595 * See notes inside method |
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 public final void sendHelpRequest() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
598 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
599 // Client sends header 000D12A0000004000003####F3FFEF |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
600 // operation code 3 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
601 // row - first ## |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
602 // column - second ## |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
603 // F3 - Help Aid Key |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
604 // System.out.println("Help request sent"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
605 baosp.write(screen52.getCurrentRow()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
606 baosp.write(screen52.getCurrentCol()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
607 baosp.write(AID_HELP); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
608 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
609 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
610 writeGDS(0, 3, baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
611 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
612 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
613 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
614 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
615 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
616 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
617 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
618 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
619 * Attention Key - |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
620 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
621 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
622 * See notes inside method |
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 public final void sendAttentionKey() { |
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 // Client sends header 000A12A000004400000FFEF |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
627 // 0x40 -> 01000000 |
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 // flags |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
630 // bit 0 - ERR |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
631 // bit 1 - ATN Attention |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
632 // bits 2-4 - reserved |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
633 // bit 5 - SRQ system request |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
634 // bit 6 - TRQ Test request key |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
635 // bit 7 - HLP |
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 // System.out.println("Attention key sent"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
638 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
639 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
640 writeGDS(0x40, 0, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
641 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
642 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
643 Log.w(TAG,ioe.getMessage()); |
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 |
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 * 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
|
649 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
650 * @see {@link #systemRequest(String)} |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
651 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
652 public final void systemRequest() { |
23 | 653 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
|
654 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
|
655 systemRequest(sysreq); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
656 } |
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 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
659 * @param sr - system request option |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
660 * @see {@link #systemRequest(String)} |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
661 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
662 public final void systemRequest(char sr) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
663 systemRequest(Character.toString(sr)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
664 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
665 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
666 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
667 * 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
|
668 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
669 * @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
|
670 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
671 public final void systemRequest(String sr) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
672 byte[] bytes = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
673 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
674 if ( (sr != null) && (sr.length() > 0)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
675 // 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
|
676 if (sr.charAt(0) == '2') { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
677 dsq.clear(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
678 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
679 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
|
680 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
|
681 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
682 bytes = baosp.toByteArray(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
683 } |
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 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
686 writeGDS(4, 0, bytes); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
687 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
688 Log.i(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
689 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
690 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
691 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
692 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
693 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
694 * 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
|
695 * 4.3 |
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 * See notes inside method |
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 public final void cancelInvite() { |
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 // screen52.setStatus(Screen5250.STATUS_SYSTEM, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
702 // Screen5250.STATUS_VALUE_ON, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
703 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
|
704 ScreenOIA.OIA_LEVEL_INPUT_INHIBITED); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
705 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
706 // from rfc1205 section 4.3 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
707 // 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
|
708 // Opcode = Cancel Invite. |
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 // 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
|
711 // Opcode = Cancel Invite to |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
712 // indicate that the work station is |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
713 // no longer invited. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
714 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
715 writeGDS(0, 10, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
716 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
717 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
718 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
719 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
720 |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
723 public final void hostPrint(int aid) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
724 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
725 if (screen52.isStatusErrorCode()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
726 screen52.restoreErrorLine(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
727 screen52.setStatus(Screen5250.STATUS_ERROR_CODE, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
728 Screen5250.STATUS_VALUE_OFF, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
729 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
730 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
731 screen52.setCursorActive(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
732 // screen52.setStatus(Screen5250.STATUS_SYSTEM, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
733 // Screen5250.STATUS_VALUE_ON, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
734 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
|
735 ScreenOIA.OIA_LEVEL_INPUT_INHIBITED); |
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 // From client access ip capture |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
738 // 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
|
739 // 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
|
740 // well |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
741 // with a value of 0x80 |
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 // 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
|
744 // 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
|
745 //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
|
746 //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
|
747 // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
748 // Client sends header 000D12A0000004000003####F6FFEF |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
749 // operation code 3 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
750 // row - first ## |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
751 // column - second ## |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
752 // F6 - Print Aid Key |
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 baosp.write(screen52.getCurrentRow()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
755 baosp.write(screen52.getCurrentCol()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
756 baosp.write(AID_PRINT); // aid key |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
757 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
758 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
759 writeGDS(0, 3, baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
760 } catch (IOException ioe) { |
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 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
763 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
764 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
765 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
766 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
767 public final void toggleDebug() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
768 producer.toggleDebug(codePage); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
769 } |
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 // write gerneral data stream |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
772 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
|
773 throws IOException { |
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 // 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
|
776 // 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
|
777 // 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
|
778 // 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
|
779 // anyway. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
780 if (bout == null) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
781 return; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
782 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
783 int length; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
784 if (abyte0 != null) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
785 length = abyte0.length + 10; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
786 else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
787 length = 10; |
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 // refer to rfc1205 - 5250 Telnet interface |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
790 // Section 3. Data Stream Format |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
791 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
792 // Logical Record Length - 16 bits |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
793 baosrsp.write(length >> 8); // Length LL |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
794 baosrsp.write(length & 0xff); // LL |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
795 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
796 // Record Type - 16 bits |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
797 // 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
|
798 // General Data Stream (GDS) record type. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
799 baosrsp.write(18); // 0x12 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
800 baosrsp.write(160); // 0xA0 |
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 // 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
|
803 baosrsp.write(0); // 0x00 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
804 baosrsp.write(0); // 0x00 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
805 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
806 // 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
|
807 // 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
|
808 baosrsp.write(4); // 0x04 |
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 baosrsp.write(flags); // flags |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
811 // bit 0 - ERR |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
812 // bit 1 - ATN Attention |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
813 // bits 2-4 - reserved |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
814 // bit 5 - SRQ system request |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
815 // bit 6 - TRQ Test request key |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
816 // bit 7 - HLP |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
817 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
|
818 baosrsp.write(opcode); // opcode |
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 if (abyte0 != null) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
821 baosrsp.write(abyte0, 0, abyte0.length); |
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 baosrsp = appendByteStream(baosrsp.toByteArray()); |
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 // 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
|
826 baosrsp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
827 baosrsp.write(EOR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
828 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
829 baosrsp.writeTo(bout); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
830 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
831 // byte[] b = new byte[baosrsp.size()]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
832 // b = baosrsp.toByteArray(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
833 // dump(b); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
834 bout.flush(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
835 // baos = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
836 baosrsp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
837 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
838 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
839 protected final int getOpCode() { |
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 return bk.getOpCode(); |
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 // private final void sendNotify() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
845 // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
846 // writeGDS(0, 0, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
847 // } |
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 protected boolean[] getActiveAidKeys() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
850 boolean aids[] = new boolean[dataIncluded.length]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
851 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
|
852 return aids; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
853 } |
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 private final void setInvited() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
856 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
857 Log.d(TAG,"invited"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
858 if (!screen52.isStatusErrorCode()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
859 screen52.getOIA().setInputInhibited(ScreenOIA.INPUTINHIBITED_NOTINHIBITED, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
860 ScreenOIA.OIA_LEVEL_INPUT_INHIBITED); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
861 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
862 invited = true; |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
865 // 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
|
866 private void strpccmd() |
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 try |
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 int str = 11; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
871 char c; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
872 ScreenPlanes planes = screen52.getPlanes(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
873 c = planes.getChar(str); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
874 boolean waitFor = !(c == 'a'); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
875 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
876 StringBuffer command = new StringBuffer(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
877 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
|
878 { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
879 c = planes.getChar(i); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
880 if (Character.isISOControl(c)) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
881 c = ' '; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
882 command.append(c); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
883 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
884 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
885 String cmd = command.toString().trim(); |
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 run(cmd, waitFor); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
888 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
889 finally |
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 strpccmd = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
892 screen52.sendKeys(TN5250jConstants.MNEMONIC_ENTER); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
893 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
894 } |
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 // 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
|
897 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
|
898 { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
899 try |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
900 { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
901 Log.d(TAG,"RUN cmd = " + cmd); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
902 Log.d(TAG,"RUN wait = " + waitFor); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
903 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
904 Runtime r = Runtime.getRuntime(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
905 Process p = r.exec(cmd); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
906 if (waitFor) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
907 { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
908 int result = p.waitFor(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
909 Log.d(TAG,"RUN result = " + result); |
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 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
912 catch (Throwable t) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
913 { |
27
b29b39f386a4
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
26
diff
changeset
|
914 Log.e(TAG,"exception",t); |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
915 } |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
918 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
919 // 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
|
920 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
921 * 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
|
922 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
923 * @param scan |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
924 * 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
|
925 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
926 * @see scan4Cmd() |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
927 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
928 public void setScanningEnabled(boolean scan) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
929 this.scan = scan; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
930 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
931 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
932 // 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
|
933 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
934 * Checks whether command scanning is enabled. |
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 * @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
|
937 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
938 public boolean isScanningEnabled() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
939 return this.scan; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
940 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
941 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
942 // 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
|
943 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
944 * 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
|
945 * 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
|
946 * 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
|
947 * 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
|
948 * 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
|
949 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
950 private void scan() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
951 // System.out.println("Checking command : " + |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
952 // 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
|
953 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
954 // ScreenChar[] screen = screen52.screen; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
955 ScreenPlanes planes = screen52.getPlanes(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
956 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
957 if ((planes.getChar(STRSCAN) == '#') |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
958 && (planes.getChar(STRSCAN + 1) == '!') |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
959 && (planes.getChar(STRSCAN + 2) != ' ')) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
960 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
961 parseCommand(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
962 } catch (Throwable t) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
963 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
|
964 t.printStackTrace(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
965 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
966 } |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
969 // 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
|
970 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
971 * 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
|
972 * 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
|
973 * 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
|
974 * 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
|
975 * screen, is passed as starting index. |
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 * 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
|
978 * 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
|
979 * 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
|
980 * 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
|
981 * 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
|
982 * 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
|
983 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
984 * <ul> |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
985 * <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
|
986 * <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
|
987 * </ul> |
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 private void parseCommand() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
990 // 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
|
991 // 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
|
992 // of the screen. |
32
b086dd794dba
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
29
diff
changeset
|
993 char[] screen = screen52.getScreenAsChars(); |
25
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
994 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
|
995 if (screen[i] == ' ') { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
996 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
|
997 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
998 // 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
|
999 // the screen. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1000 //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
|
1001 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1002 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
|
1003 - (i + 1)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1004 //controller.fireScanned(command, remainder); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1005 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
|
1006 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1007 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1008 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1009 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1010 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1011 public void run() { |
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 if (enhanced) sfParser = new WTDSFParser(this); |
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 bk = new Stream5250(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1016 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1017 while (keepTrucking) { |
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 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1020 bk.initialize((byte[]) dsq.take()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1021 } catch (InterruptedException ie) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1022 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
|
1023 keepTrucking = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1024 continue; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1025 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1026 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1027 // 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
|
1028 // me.yield(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1029 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1030 Thread.yield(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1031 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1032 invited = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1033 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1034 screen52.setCursorActive(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1035 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1036 // 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
|
1037 if (bk == null) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1038 continue; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1039 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1040 switch (bk.getOpCode()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1041 case 00: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1042 Log.d(TAG,"No operation"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1043 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1044 case 1: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1045 Log.d(TAG,"Invite Operation"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1046 parseIncoming(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1047 // screen52.setKeyboardLocked(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1048 pendingUnlock = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1049 cursorOn = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1050 setInvited(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1051 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1052 case 2: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1053 Log.d(TAG,"Output Only"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1054 parseIncoming(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1055 screen52.updateDirty(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1056 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1057 case 3: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1058 Log.d(TAG,"Put/Get Operation"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1059 parseIncoming(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1060 setInvited(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1061 if (!firstScreen) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1062 firstScreen = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1063 //controller.fireSessionChanged(TN5250jConstants.STATE_CONNECTED); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1064 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1065 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1066 case 4: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1067 Log.d(TAG,"Save Screen Operation"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1068 parseIncoming(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1069 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1070 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1071 case 5: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1072 Log.d(TAG,"Restore Screen Operation"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1073 parseIncoming(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1074 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1075 case 6: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1076 Log.d(TAG,"Read Immediate"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1077 sendAidKey(0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1078 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1079 case 7: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1080 Log.d(TAG,"Reserved"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1081 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1082 case 8: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1083 Log.d(TAG,"Read Screen Operation"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1084 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1085 readScreen(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1086 } catch (IOException ex) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1087 Log.w(TAG,ex.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1088 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1089 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1090 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1091 case 9: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1092 Log.d(TAG,"Reserved"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1093 break; |
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 case 10: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1096 Log.d(TAG,"Cancel Invite Operation"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1097 cancelInvite(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1098 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1099 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1100 case 11: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1101 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
|
1102 screen52.getOIA().setMessageLightOn(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1103 screen52.setCursorActive(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1104 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1105 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1106 case 12: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1107 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
|
1108 screen52.getOIA().setMessageLightOff(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1109 screen52.setCursorActive(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1110 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1111 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1112 default: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1113 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1114 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1115 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1116 if (screen52.isUsingGuiInterface()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1117 screen52.drawFields(); |
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 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1120 if (!strpccmd) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1121 screen52.updateDirty(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1122 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1123 strpccmd(); |
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 } catch (Exception exd) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1126 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
|
1127 exd.printStackTrace(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1128 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1129 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1130 if (pendingUnlock && !screen52.isStatusErrorCode()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1131 screen52.getOIA().setKeyBoardLocked(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1132 pendingUnlock = false; |
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 if (cursorOn && !screen52.getOIA().isKeyBoardLocked()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1136 screen52.setCursorActive(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1137 cursorOn = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1138 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1139 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1140 // 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
|
1141 //me.yield(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1142 Thread.yield(); |
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 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1145 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1146 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1147 public void dumpStuff() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1148 Log.d(TAG," Pending unlock " + pendingUnlock); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1149 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
|
1150 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
|
1151 Log.d(TAG," Cursor On " + cursorOn); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1152 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
|
1153 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1154 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1155 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1156 private final void readScreen() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1157 int rows = screen52.getRows(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1158 int cols = screen52.getColumns(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1159 byte abyte0[] = new byte[rows * cols]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1160 fillScreenArray(abyte0, rows, cols); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1161 writeGDS(0, 0, abyte0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1162 abyte0 = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1163 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1164 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1165 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
|
1166 int la = 32; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1167 int sac = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1168 int len = rows * cols; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1169 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1170 ScreenPlanes planes = screen52.planes; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1171 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1172 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
|
1173 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1174 if (planes.isAttributePlace(y)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1175 la = planes.getCharAttr(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1176 sa[sac++] = (byte) la; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1177 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1178 if (planes.getCharAttr(y) != la) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1179 la = planes.getCharAttr(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1180 sac--; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1181 sa[sac++] = (byte) la; |
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 //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
|
1184 // do not convert the character. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1185 // 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
|
1186 //sa[sac++] = |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1187 // (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
|
1188 char ch = planes.getChar(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1189 byte byteCh = (byte) ch; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1190 if (isDataUnicode(ch)) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1191 byteCh = codePage.uni2ebcdic(ch); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1192 sa[sac++] = byteCh; |
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 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1195 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1196 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1197 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
|
1198 throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1199 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1200 int la = 32; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1201 int sac = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1202 int len = rows * cols; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1203 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1204 ScreenPlanes planes = screen52.planes; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1205 byte[] sa = new byte[len]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1206 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1207 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1208 boolean guiExists = sfParser != null && sfParser.isGuisExists(); |
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 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
|
1212 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1213 if (guiExists) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1214 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1215 byte[] guiSeg = sfParser.getSegmentAtPos(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1216 if (guiSeg != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1217 //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
|
1218 // screen52.getCol(y)); |
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 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
|
1221 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
|
1222 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
|
1223 sa = new byte[gsa.length]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1224 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
|
1225 sa[sac++] = (byte)0x04; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1226 sa[sac++] = (byte)0x11; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1227 sac += guiSeg.length; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1228 //y--; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1229 // continue; |
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 if (planes.isAttributePlace(y)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1233 la = planes.getCharAttr(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1234 sa[sac++] = (byte) la; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1235 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1236 if (planes.getCharAttr(y) != la) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1237 la = planes.getCharAttr(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1238 sac--; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1239 sa[sac++] = (byte) la; |
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 //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
|
1242 // do not convert the character. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1243 // 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
|
1244 //sa[sac++] = |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1245 // (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
|
1246 char ch = planes.getChar(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1247 byte byteCh = (byte) ch; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1248 if (isDataUnicode(ch)) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1249 byteCh = codePage.uni2ebcdic(ch); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1250 sa[sac++] = byteCh; |
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 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1253 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1254 catch(Exception exc) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1255 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1256 Log.i(TAG,exc.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1257 exc.printStackTrace(); |
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(sa); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1260 } |
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 public final void saveScreen() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1263 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1264 ByteArrayOutputStream sc = new ByteArrayOutputStream(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1265 sc.write(4); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1266 sc.write(0x12); // 18 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1267 sc.write(0); // 18 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1268 sc.write(0); // 18 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1269 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1270 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
|
1271 sc.write((byte) screen52.getColumns()); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1272 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1273 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
|
1274 // fix below submitted by Mitch Blevins |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1275 //int cp = screen52.getScreenFields().getCurrentFieldPos(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1276 // save off current position |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1277 sc.write((byte) (cp >> 8 & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1278 sc.write((byte) (cp & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1279 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1280 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
|
1281 sc.write((byte) (screen52.homePos & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1282 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1283 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
|
1284 int cols = screen52.getColumns(); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1285 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1286 // byte[] sa = new byte[rows * cols]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1287 fillRegenerationBuffer(sc,rows,cols); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1288 // fillScreenArray(sa, rows, cols); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1289 // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1290 // sc.write(sa); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1291 // sa = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1292 int sizeFields = screen52.getScreenFields().getSize(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1293 sc.write((byte) (sizeFields >> 8 & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1294 sc.write((byte) (sizeFields & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1295 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1296 if (sizeFields > 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1297 int x = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1298 int s = screen52.getScreenFields().getSize(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1299 ScreenField sf = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1300 while (x < s) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1301 sf = screen52.getScreenFields().getField(x); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1302 sc.write((byte) sf.getAttr()); // attribute |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1303 int sp = sf.startPos(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1304 sc.write((byte) (sp >> 8 & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1305 sc.write((byte) (sp & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1306 if (sf.mdt) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1307 sc.write((byte) 1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1308 else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1309 sc.write((byte) 0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1310 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
|
1311 sc.write((byte) (sf.getLength() & 0xff)); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1312 sc.write((byte) sf.getFFW1() & 0xff); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1313 sc.write((byte) sf.getFFW2() & 0xff); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1314 sc.write((byte) sf.getFCW1() & 0xff); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1315 sc.write((byte) sf.getFCW2() & 0xff); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1316 Log.d(TAG,"Saved "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1317 Log.d(TAG,sf.toString()); |
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 x++; |
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 sf = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1322 } |
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 // 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
|
1325 // 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
|
1326 // 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
|
1327 // for GC ? |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1328 // screen52.clearTable(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1329 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1330 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1331 writeGDS(0, 3, sc.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1332 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1333 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1334 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1335 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1336 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1337 sc = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1338 Log.d(TAG,"Save Screen end "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1339 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1340 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1341 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1342 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1343 * @throws IOException |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1344 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1345 public final void restoreScreen() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1346 int which = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1347 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1348 ScreenPlanes planes = screen52.planes; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1349 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1350 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1351 Log.d(TAG,"Restore "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1352 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1353 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1354 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1355 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1356 int rows = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1357 int cols = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1358 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
|
1359 pos |= bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1360 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
|
1361 hPos |= bk.getNextByte() & 0xff; |
29
017eeed8332c
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
27
diff
changeset
|
1362 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
|
1363 screen52.setRowsCols(rows, cols); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1364 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
|
1365 if (sfParser != null && sfParser.isGuisExists()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1366 sfParser.clearGuiStructs(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1367 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1368 int b = 32; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1369 int la = 32; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1370 int len = rows * cols; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1371 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
|
1372 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1373 b = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1374 if (b == 0x04) { |
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 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
|
1377 screen52.getCol(y)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1378 int command = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1379 byte[] seg = bk.getSegment(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1380 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1381 if (seg.length > 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1382 screen52.goto_XY(y); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1383 sfParser.parseWriteToDisplayStructuredField(seg); |
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 y--; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1386 // screen52.goto_XY(y); |
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 else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1389 // b = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1390 if (planes.isUseGui(y)) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1391 continue; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1392 if (isAttribute(b)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1393 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
|
1394 la = b; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1395 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1396 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1397 else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1398 //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
|
1399 // character. If not, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1400 // do not convert the character. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1401 // 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
|
1402 char ch = (char) b; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1403 if (isDataEBCDIC(b)) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1404 ch = codePage.ebcdic2uni(b); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1405 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1406 planes.setScreenCharAndAttr(y, ch, la, false); |
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 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1409 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1410 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1411 int numFields = bk.getNextByte() << 8 & 0xff00; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1412 numFields |= bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1413 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
|
1414 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1415 if (numFields > 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1416 int x = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1417 int attr = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1418 int fPos = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1419 int fLen = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1420 int ffw1 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1421 int ffw2 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1422 int fcw1 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1423 int fcw2 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1424 boolean mdt = false; |
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 ScreenField sf = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1427 while (x < numFields) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1428 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1429 attr = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1430 fPos = bk.getNextByte() << 8 & 0xff00; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1431 fPos |= bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1432 if (bk.getNextByte() == 1) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1433 mdt = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1434 else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1435 mdt = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1436 fLen = bk.getNextByte() << 8 & 0xff00; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1437 fLen |= bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1438 ffw1 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1439 ffw2 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1440 fcw1 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1441 fcw2 = bk.getNextByte(); |
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 sf = screen52.getScreenFields().setField(attr, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1444 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
|
1445 ffw1, ffw2, fcw1, fcw2); |
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 while (fLen-- > 0) { |
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 // 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
|
1450 planes.setScreenFieldAttr(fPos++,ffw1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1451 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1452 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1453 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1454 if (mdt) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1455 sf.setMDT(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1456 screen52.getScreenFields().setMasterMDT(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1457 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1458 Log.d(TAG,"/nRestored "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1459 Log.d(TAG,sf.toString()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1460 x++; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1461 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1462 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1463 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1464 // 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
|
1465 if (screen52.isUsingGuiInterface()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1466 screen52.drawFields(); |
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 screen52.restoreScreen(); // display the screen |
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 // 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
|
1471 // screen position. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1472 // 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
|
1473 // displayed after the restore. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1474 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
|
1475 .getCol(pos + cols)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1476 // 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
|
1477 // 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
|
1478 screen52.goto_XY(pos - 1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1479 screen52.isInField(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1480 // // 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
|
1481 // if (screen52.isUsingGuiInterface()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1482 // screen52.drawFields(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1483 } catch (Exception e) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1484 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
|
1485 + e.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1486 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1487 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1488 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1489 public final boolean waitingForInput() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1490 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1491 return waitingForInput; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1492 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1493 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1494 private void parseIncoming() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1495 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1496 boolean done = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1497 boolean error = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1498 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1499 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1500 while (bk.hasNext() && !done) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1501 byte b = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1502 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1503 switch (b) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1504 case 0: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1505 case 1: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1506 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1507 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
|
1508 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
|
1509 Log.d(TAG,"save screen partial"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1510 saveScreen(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1511 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1512 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1513 case ESC: // ESCAPE |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1514 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1515 case 7: // audible bell |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1516 manager.playBeep(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1517 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1518 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1519 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1520 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
|
1521 error = writeToDisplay(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1522 // 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
|
1523 // 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
|
1524 // screen buffer) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1525 // has been issued! |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1526 if (scan) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1527 scan(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1528 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1529 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1530 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
|
1531 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
|
1532 Log.d(TAG,"restore screen partial"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1533 restoreScreen(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1534 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1535 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1536 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
|
1537 int param = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1538 if (param != 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1539 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
|
1540 + Integer.toHexString(param)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1541 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
|
1542 " clear unit alternate not supported"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1543 done = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1544 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1545 if (screen52.getRows() != 27) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1546 screen52.setRowsCols(27, 132); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1547 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1548 screen52.clearAll(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1549 if (sfParser != null && sfParser.isGuisExists()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1550 sfParser.clearGuiStructs(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1551 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1552 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1553 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1554 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1555 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1556 case CMD_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
|
1557 writeErrorCode(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1558 error = writeToDisplay(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1559 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1560 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
|
1561 // Write Error Code to window |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1562 writeErrorCodeToWindow(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1563 error = writeToDisplay(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1564 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1565 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1566 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
|
1567 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
|
1568 readScreen(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1569 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1570 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1571 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
|
1572 if (screen52.getRows() != 24) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1573 screen52.setRowsCols(24, 80); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1574 screen52.clearAll(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1575 if (sfParser != null && sfParser.isGuisExists()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1576 sfParser.clearGuiStructs(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1577 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1578 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1579 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1580 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
|
1581 screen52.clearTable(); |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1584 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
|
1585 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
|
1586 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1587 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1588 readType = b; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1589 screen52.goHome(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1590 // 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
|
1591 // in the main loop. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1592 //////////////// screen52.setCursorOn(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1593 waitingForInput = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1594 pendingUnlock = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1595 // screen52.setKeyboardLocked(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1596 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1597 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
|
1598 readType = b; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1599 // screen52.goHome(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1600 // waitingForInput = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1601 // screen52.setKeyboardLocked(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1602 readImmediate(readType); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1603 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1604 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
|
1605 // structured field |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1606 writeStructuredField(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1607 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1608 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
|
1609 int updown = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1610 int topline = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1611 int bottomline = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1612 screen52.rollScreen(updown, topline, bottomline); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1613 break; |
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 default: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1616 done = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1617 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
|
1618 "parseIncoming"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1619 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1620 } |
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 if (error) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1623 done = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1624 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1625 } catch (Exception exc) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1626 Log.w(TAG,"incoming " + exc.getMessage()); |
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 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1629 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1630 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1631 * 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
|
1632 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1633 * 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
|
1634 * 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
|
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 * @param cat |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1638 * @param modifier |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1639 * @param uByte1 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1640 * @param uByte2 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1641 * @param from |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1642 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1643 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1644 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
|
1645 int uByte2, String from) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1646 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1647 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1648 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1649 int os = bk.getByteOffset(-1) & 0xf0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1650 int cp = (bk.getCurrentPos() - 1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1651 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
|
1652 + " at pos " + cp); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1653 } catch (Exception e) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1654 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1655 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
|
1656 } |
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 baosp.write(cat); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1659 baosp.write(modifier); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1660 baosp.write(uByte1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1661 baosp.write(uByte2); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1662 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1663 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1664 writeGDS(128, 0, baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1665 } catch (IOException ioe) { |
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 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1668 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1669 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1670 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1671 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1672 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1673 public void sendNegResponse2(int ec) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1674 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1675 screen52.setPrehelpState(true, true, false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1676 baosp.write(0x00); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1677 baosp.write(ec); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1678 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1679 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1680 writeGDS(1, 0, baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1681 } catch (IOException ioe) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1682 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1683 Log.w(TAG,ioe.getMessage()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1684 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1685 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1686 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1687 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1688 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1689 private boolean writeToDisplay(boolean controlsExist) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1690 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1691 boolean error = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1692 boolean done = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1693 int attr; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1694 byte control0 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1695 byte control1 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1696 int saRows = screen52.getRows(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1697 int saCols = screen52.getColumns(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1698 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1699 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1700 if (controlsExist) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1701 control0 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1702 control1 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1703 processCC0(control0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1704 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1705 while (bk.hasNext() && !done) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1706 // pos = bk.getCurrentPos(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1707 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1708 // int rowc = screen52.getCurrentRow(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1709 // int colc = screen52.getCurrentCol(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1710 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1711 byte bytebk = bk.getNextByte(); |
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 switch (bytebk) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1714 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1715 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
|
1716 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
|
1717 error = processSOH(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1718 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1719 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1720 case 02: // RA - Repeat to address |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1721 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
|
1722 int row = screen52.getCurrentRow(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1723 int col = screen52.getCurrentCol(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1724 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1725 int toRow = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1726 int toCol = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1727 if (toRow >= row) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1728 int repeat = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1729 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1730 // a little intelligence here I hope |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1731 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
|
1732 && toCol == screen52.getColumns()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1733 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1734 screen52.clearScreen(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1735 else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1736 if (repeat != 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1737 //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
|
1738 repeat = codePage.ebcdic2uni(repeat); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1739 //repeat = getASCIIChar(repeat); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1740 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1741 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1742 int times = ((toRow * screen52.getColumns()) + toCol) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1743 - ((row * screen52.getColumns()) + col); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1744 while (times-- >= 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1745 screen52.setChar(repeat); |
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 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1749 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1750 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
|
1751 " RA invalid"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1752 error = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1753 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1754 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1755 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1756 case 03: // EA - Erase to address |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1757 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
|
1758 int EArow = screen52.getCurrentRow(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1759 int EAcol = screen52.getCurrentCol(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1760 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1761 int toEARow = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1762 int toEACol = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1763 int EALength = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1764 while (--EALength > 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1765 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1766 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1767 |
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 char EAAttr = (char) 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1770 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1771 // a little intelligence here I hope |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1772 if (EArow == 1 && EAcol == 2 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1773 && toEARow == screen52.getRows() |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1774 && toEACol == screen52.getColumns()) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1775 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1776 screen52.clearScreen(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1777 else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1778 int times = ((toEARow * screen52.getColumns()) + toEACol) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1779 - ((EArow * screen52.getColumns()) + EAcol); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1780 while (times-- >= 0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1781 screen52.setChar(EAAttr); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1782 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1783 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1784 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1785 case 04: // Command - Escape |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1786 Log.d(TAG,"Command - Escape"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1787 done = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1788 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1789 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1790 case 16: // TD - Transparent Data |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1791 Log.d(TAG,"TD - Transparent Data"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1792 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
|
1793 & 0xff; // length |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1794 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1795 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1796 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
|
1797 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
|
1798 int saRow = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1799 int saCol = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1800 // make sure it is in bounds |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1801 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
|
1802 && saCol <= screen52.getColumns()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1803 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
|
1804 // position for output |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1805 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1806 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1807 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1808 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
|
1809 "invalid row/col order" + " saRow = " + saRow |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1810 + " saRows = " + screen52.getRows() |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1811 + " saCol = " + saCol); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1812 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1813 error = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1814 |
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 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1817 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1818 case 18: // WEA - Extended Attribute |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1819 Log.d(TAG,"WEA - Extended Attribute"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1820 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1821 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1822 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1823 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1824 case 19: // IC - Insert Cursor |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1825 Log.d(TAG,"IC - Insert Cursor"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1826 int icX = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1827 int icY = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1828 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
|
1829 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1830 Log.d(TAG," IC " + icX + " " + icY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1831 screen52.setPendingInsert(true, icX, icY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1832 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1833 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
|
1834 " IC/IM position invalid "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1835 error = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1836 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1837 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1838 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1839 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1840 case 20: // MC - Move Cursor |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1841 Log.d(TAG,"MC - Move Cursor"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1842 int imcX = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1843 int imcY = bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1844 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
|
1845 && imcY <= saCols) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1846 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1847 Log.d(TAG," MC " + imcX + " " + imcY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1848 screen52.setPendingInsert(false, imcX, imcY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1849 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1850 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
|
1851 " IC/IM position invalid "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1852 error = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1853 } |
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 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1856 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1857 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
|
1858 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
|
1859 byte[] seg = bk.getSegment(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1860 error = sfParser.parseWriteToDisplayStructuredField(seg); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1861 break; |
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 case 29: // SF - Start of Field |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1864 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
|
1865 int fcw1 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1866 int fcw2 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1867 int ffw1 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1868 int ffw0 = bk.getNextByte() & 0xff; // FFW |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1869 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1870 if ((ffw0 & 0x40) == 0x40) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1871 ffw1 = bk.getNextByte() & 0xff; // FFW 1 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1872 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1873 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
|
1874 // control word |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1875 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1876 // 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
|
1877 // the next pair for checking |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1878 if (fcw1 == 0x81) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1879 bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1880 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
|
1881 // control word |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1882 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1883 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1884 if (!isAttribute(fcw1)) { |
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 fcw2 = bk.getNextByte() & 0xff; // FCW 2 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1887 attr = bk.getNextByte() & 0xff; // attribute field |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1888 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1889 while (!isAttribute(attr)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1890 Log.i(TAG,Integer.toHexString(fcw1) + " " |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1891 + Integer.toHexString(fcw2) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1892 + " "); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1893 Log.i(TAG,Integer.toHexString(attr) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1894 + " " |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1895 + Integer.toHexString(bk |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1896 .getNextByte() & 0xff)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1897 attr = bk.getNextByte() & 0xff; // attribute field |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1898 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1899 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1900 attr = fcw1; // attribute of field |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1901 fcw1 = 0; |
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 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1904 attr = ffw0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1905 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1906 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1907 int fLength = (bk.getNextByte() & 0xff) << 8 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1908 | bk.getNextByte() & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1909 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
|
1910 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1911 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1912 // 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
|
1913 case -128: //STRPCCMD |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1914 // if (screen52.getCurrentPos() == 82) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1915 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
|
1916 StringBuffer value = new StringBuffer(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1917 int b; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1918 char c; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1919 int[] pco = new int[9]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1920 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
|
1921 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1922 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
|
1923 { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1924 b = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1925 pco[i] = ((b & 0xff)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1926 c = codePage.ebcdic2uni(b); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1927 value.append(c); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1928 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1929 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1930 // Check "PCO-String" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1931 if (Arrays.equals(pco, pcoOk)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1932 strpccmd = true; |
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 // 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
|
1935 // 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
|
1936 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
|
1937 bk.setPrevByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1938 //} |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1939 // no break: so every chars arrives |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1940 // on the screen for later parsing |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1941 //break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1942 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1943 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
|
1944 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
|
1945 byte byte0 = bk.getByteOffset(-1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1946 if (isAttribute(byte0)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1947 screen52.setAttr(byte0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1948 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1949 if (!screen52.isStatusErrorCode()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1950 if (!isDataEBCDIC(byte0)) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1951 // if (byte0 == 255) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1952 // 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
|
1953 // " Attempt to send FF to screen"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1954 // } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1955 // else |
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 screen52.setChar(byte0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1958 } else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1959 //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
|
1960 //screen52.setChar(getASCIIChar(byte0)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1961 screen52.setChar(codePage.ebcdic2uni(byte0)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1962 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1963 if (byte0 == 0) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1964 screen52.setChar(byte0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1965 else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1966 //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
|
1967 //screen52.setChar(getASCIIChar(byte0)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1968 screen52.setChar(codePage.ebcdic2uni(byte0)); |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1972 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1973 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1974 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1975 if (error) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1976 done = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1977 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1978 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1979 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1980 catch (Exception e) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1981 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
|
1982 e.printStackTrace(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1983 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1984 ; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1985 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1986 processCC1(control1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1987 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1988 return error; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1989 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1990 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1991 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1992 private boolean processSOH() throws Exception { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1993 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1994 int l = bk.getNextByte(); // length |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1995 Log.d(TAG," byte 0 " + l); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1996 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1997 if (l > 0 && l <= 7) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1998 bk.getNextByte(); // flag byte 2 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
1999 bk.getNextByte(); // reserved |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2000 bk.getNextByte(); // resequence fields |
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 screen52.clearTable(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2003 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2004 // 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
|
2005 // 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
|
2006 if (l <= 3) return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2007 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2008 screen52.setErrorLine(bk.getNextByte()); // error row |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2009 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2010 int byte1 = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2011 if (l >= 5) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2012 byte1 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2013 dataIncluded[23] = (byte1 & 0x80) == 0x80; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2014 dataIncluded[22] = (byte1 & 0x40) == 0x40; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2015 dataIncluded[21] = (byte1 & 0x20) == 0x20; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2016 dataIncluded[20] = (byte1 & 0x10) == 0x10; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2017 dataIncluded[19] = (byte1 & 0x8) == 0x8; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2018 dataIncluded[18] = (byte1 & 0x4) == 0x4; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2019 dataIncluded[17] = (byte1 & 0x2) == 0x2; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2020 dataIncluded[16] = (byte1 & 0x1) == 0x1; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2021 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2022 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2023 if (l >= 6) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2024 byte1 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2025 dataIncluded[15] = (byte1 & 0x80) == 0x80; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2026 dataIncluded[14] = (byte1 & 0x40) == 0x40; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2027 dataIncluded[13] = (byte1 & 0x20) == 0x20; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2028 dataIncluded[12] = (byte1 & 0x10) == 0x10; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2029 dataIncluded[11] = (byte1 & 0x8) == 0x8; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2030 dataIncluded[10] = (byte1 & 0x4) == 0x4; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2031 dataIncluded[9] = (byte1 & 0x2) == 0x2; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2032 dataIncluded[8] = (byte1 & 0x1) == 0x1; |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2035 if (l >= 7) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2036 byte1 = bk.getNextByte(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2037 dataIncluded[7] = (byte1 & 0x80) == 0x80; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2038 dataIncluded[6] = (byte1 & 0x40) == 0x40; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2039 dataIncluded[5] = (byte1 & 0x20) == 0x20; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2040 dataIncluded[4] = (byte1 & 0x10) == 0x10; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2041 dataIncluded[3] = (byte1 & 0x8) == 0x8; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2042 dataIncluded[2] = (byte1 & 0x4) == 0x4; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2043 dataIncluded[1] = (byte1 & 0x2) == 0x2; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2044 dataIncluded[0] = (byte1 & 0x1) == 0x1; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2045 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2046 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2047 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2048 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
|
2049 "invalid SOH length"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2050 return true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2051 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2052 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2053 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2054 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2055 private void processCC0(byte byte0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2056 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
|
2057 boolean lockKeyboard = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2058 boolean resetMDT = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2059 boolean resetMDTAll = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2060 boolean nullMDT = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2061 boolean nullAll = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2062 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2063 // 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
|
2064 // 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
|
2065 if ((byte0 & 0xE0) == 0x00) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2066 lockKeyboard = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2067 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2068 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2069 // '00100000' = 0x20 /32 -- just lock keyboard |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2070 // '01000000' = 0x40 /64 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2071 // '01100000' = 0x60 /96 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2072 // '10000000' = 0x80 /128 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2073 // '10100000' = 0xA0 /160 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2074 // '11000000' = 0xC0 /192 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2075 // '11100000' = 0xE0 /224 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2076 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2077 switch (byte0 & 0xE0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2078 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2079 case 0x40: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2080 resetMDT = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2081 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2082 case 0x60: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2083 resetMDTAll = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2084 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2085 case 0x80: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2086 nullMDT = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2087 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2088 case 0xA0: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2089 resetMDT = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2090 nullAll = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2091 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2092 case 0xC0: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2093 resetMDT = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2094 nullMDT = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2095 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2096 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2097 case 0xE0: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2098 resetMDTAll = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2099 nullAll = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2100 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2101 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2102 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2103 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2104 if (lockKeyboard) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2105 screen52.getOIA().setKeyBoardLocked(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2106 pendingUnlock = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2107 } else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2108 pendingUnlock = false; |
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 if (resetMDT || resetMDTAll || nullMDT || nullAll) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2111 ScreenField sf; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2112 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2113 int f = screen52.getScreenFields().getSize(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2114 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
|
2115 sf = screen52.getScreenFields().getField(x); |
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 (!sf.isBypassField()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2118 if ((nullMDT && sf.mdt) || nullAll) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2119 sf.setFieldChar((char) 0x0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2120 screen52.drawField(sf); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2121 } |
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 if (resetMDTAll || (resetMDT && !sf.isBypassField())) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2124 sf.resetMDT(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2125 |
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 sf = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2128 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2129 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2130 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2131 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2132 private void processCC1(byte byte1) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2133 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
|
2134 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2135 if ((byte1 & 0x04) == 0x04) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2136 manager.playBeep(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2137 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2138 if ((byte1 & 0x02) == 0x02) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2139 screen52.getOIA().setMessageLightOff(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2140 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2141 if ((byte1 & 0x01) == 0x01) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2142 screen52.getOIA().setMessageLightOn(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2143 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2144 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2145 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
|
2146 screen52.getOIA().setMessageLightOn(); |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2149 // 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
|
2150 // 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
|
2151 // 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
|
2152 // ass! |
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 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
|
2155 // 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
|
2156 // *** 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
|
2157 // this seems to work so far |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2158 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
|
2159 screen52.setPendingInsert(false); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2160 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
|
2161 } else { |
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 screen52.setPendingInsert(true); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2164 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
|
2165 + screen52.getRow(screen52.homePos) + " col " |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2166 + screen52.getCol(screen52.homePos)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2167 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2168 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2169 // 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
|
2170 // is reset blinking cursor |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2171 if ((byte1 & 0x20) == 0x20 && enhanced) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2172 cursorOn = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2173 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2174 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2175 if (!screen52.isStatusErrorCode() && (byte1 & 0x08) == 0x08) { |
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 // 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
|
2178 cursorOn = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2179 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2180 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2181 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
|
2182 screen52.setPendingInsert(false, 1, 1); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2183 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2184 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2185 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2186 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2187 private boolean isAttribute(int byte0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2188 int byte1 = byte0 & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2189 return (byte1 & 0xe0) == 0x20; |
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 //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
|
2193 private boolean isDataEBCDIC(int byte0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2194 int byte1 = byte0 & 0xff; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2195 // 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
|
2196 if (byte1 >= 64 && byte1 < 255) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2197 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2198 return true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2199 else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2200 return false; |
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 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2203 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2204 //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
|
2205 // character. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2206 // 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
|
2207 // 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
|
2208 // check on 255 -> 0xFFFF |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2209 private boolean isDataUnicode(int byte0) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2210 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
|
2211 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2212 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2213 private void writeStructuredField() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2214 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2215 boolean done = false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2216 try { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2217 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
|
2218 while (bk.hasNext() && !done) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2219 switch (bk.getNextByte()) { |
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 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
|
2222 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2223 switch (bk.getNextByte()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2224 case 112: // 5250 Query |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2225 bk.getNextByte(); // get null required field |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2226 sendQueryResponse(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2227 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2228 default: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2229 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
|
2230 + bk.getByteOffset(-1)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2231 break; |
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 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2234 default: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2235 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
|
2236 + bk.getByteOffset(-1)); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2237 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2238 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2239 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2240 } catch (Exception e) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2241 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2242 ; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2243 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2244 } |
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 private final void writeErrorCode() throws Exception { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2247 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
|
2248 screen52.setStatus(Screen5250.STATUS_ERROR_CODE, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2249 Screen5250.STATUS_VALUE_ON, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2250 screen52.saveErrorLine(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2251 cursorOn = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2252 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2253 } |
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 private final void writeErrorCodeToWindow() throws Exception { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2256 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
|
2257 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
|
2258 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
|
2259 // byte |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2260 screen52.setStatus(Screen5250.STATUS_ERROR_CODE, |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2261 Screen5250.STATUS_VALUE_ON, null); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2262 screen52.saveErrorLine(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2263 cursorOn = true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2264 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2265 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2266 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2267 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2268 * Method sendQueryResponse |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2269 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2270 * 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
|
2271 * the 5250 display. |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2272 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2273 * 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
|
2274 * command (0xF3). |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2275 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2276 * 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
|
2277 * 5.3 |
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 * @throws IOException |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2280 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2281 private final void sendQueryResponse() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2282 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2283 Log.i(TAG,"sending query response"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2284 byte abyte0[] = new byte[64]; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2285 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
|
2286 abyte0[1] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2287 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
|
2288 if (enhanced == true) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2289 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
|
2290 abyte0[4] = 64; // "" see note below ????????? |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2291 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2292 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
|
2293 abyte0[4] = 58; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2294 // 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
|
2295 // 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
|
2296 // the host ???????????????? why ??????? |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2297 // 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
|
2298 // read a little more ;-) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2299 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2300 abyte0[5] = -39; // command class 0xD9 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2301 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
|
2302 abyte0[7] = -128; // 0x80 Flag byte |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2303 abyte0[8] = 6; // Controller Hardware Class |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2304 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
|
2305 abyte0[10] = 1; // Controller Code Level |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2306 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
|
2307 abyte0[12] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2308 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2309 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
|
2310 abyte0[14] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2311 abyte0[15] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2312 abyte0[16] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2313 abyte0[17] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2314 abyte0[18] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2315 abyte0[19] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2316 abyte0[20] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2317 abyte0[21] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2318 abyte0[22] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2319 abyte0[23] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2320 abyte0[24] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2321 abyte0[25] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2322 abyte0[26] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2323 abyte0[27] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2324 abyte0[28] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2325 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
|
2326 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
|
2327 abyte0[31] = codePage.uni2ebcdic('2'); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2328 abyte0[32] = codePage.uni2ebcdic('5'); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2329 abyte0[33] = codePage.uni2ebcdic('1'); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2330 abyte0[34] = codePage.uni2ebcdic('0'); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2331 abyte0[35] = codePage.uni2ebcdic('1'); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2332 abyte0[36] = codePage.uni2ebcdic('1'); // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2333 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2334 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
|
2335 abyte0[38] = 0; // extended keyboard id |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2336 abyte0[39] = 0; // reserved |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2337 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2338 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
|
2339 abyte0[41] = 36; // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2340 abyte0[42] = 36; // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2341 abyte0[43] = 0; // |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2342 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2343 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
|
2344 abyte0[45] = 0; // 0x0100 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2345 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
|
2346 abyte0[47] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2347 abyte0[48] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2348 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
|
2349 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
|
2350 abyte0[51] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2351 abyte0[52] = 0; // "" |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2352 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2353 // 53 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2354 // 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
|
2355 // B'001' - 5292-2 style graphics |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2356 // 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
|
2357 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2358 if (enhanced == true) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2359 // 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
|
2360 // 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
|
2361 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
|
2362 Log.i(TAG,"enhanced options"); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2363 } else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2364 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
|
2365 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2366 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
|
2367 // 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
|
2368 // 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
|
2369 // and footers for windows |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2370 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
|
2371 // 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
|
2372 // 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
|
2373 // and footers for windows |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2374 abyte0[55] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2375 abyte0[56] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2376 abyte0[57] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2377 abyte0[58] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2378 abyte0[59] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2379 abyte0[60] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2380 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
|
2381 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
|
2382 abyte0[63] = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2383 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
|
2384 abyte0 = null; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2385 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2386 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2387 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2388 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
|
2389 int i = 0; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2390 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2391 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2392 // from server negotiations |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2393 if(abyte0[i] == IAC) { // -1 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2394 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2395 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
|
2396 // 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
|
2397 switch(abyte0[i++]) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2398 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2399 // 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
|
2400 case WONT: // -4 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2401 default: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2402 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2403 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2404 case DO: //-3 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2405 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2406 // 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
|
2407 // 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
|
2408 // 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
|
2409 // 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
|
2410 if (i < abyte0.length) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2411 switch(abyte0[i]) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2412 case TERMINAL_TYPE: // 24 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2413 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2414 baosp.write(WILL); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2415 baosp.write(TERMINAL_TYPE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2416 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2417 baosp.reset(); |
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 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2420 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2421 case OPT_END_OF_RECORD: // 25 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2422 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2423 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2424 baosp.write(WILL); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2425 baosp.write(OPT_END_OF_RECORD); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2426 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2427 baosp.reset(); |
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 TRANSMIT_BINARY: // 0 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2431 |
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(TRANSMIT_BINARY); |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2438 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2439 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2440 case TIMING_MARK: // 6 rfc860 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2441 // 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
|
2442 // "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
|
2443 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2444 baosp.write(WONT); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2445 baosp.write(TIMING_MARK); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2446 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2447 baosp.reset(); |
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 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2450 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2451 case NEW_ENVIRONMENT: // 39 rfc1572, rfc4777 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2452 // allways send new environment vars ... |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2453 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2454 baosp.write(WILL); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2455 baosp.write(NEW_ENVIRONMENT); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2456 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2457 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2458 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2459 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2460 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
|
2461 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2462 baosp.write(WONT); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2463 baosp.write(abyte0[i]); // either |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2464 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2465 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2466 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2467 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2468 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2469 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2470 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2471 i++; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2472 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2473 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2474 case WILL: |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2475 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2476 switch(abyte0[i]) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2477 case OPT_END_OF_RECORD: // 25 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2478 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2479 baosp.write(DO); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2480 baosp.write(OPT_END_OF_RECORD); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2481 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2482 baosp.reset(); |
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 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2485 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2486 case TRANSMIT_BINARY: // '\0' |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2487 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2488 baosp.write(DO); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2489 baosp.write(TRANSMIT_BINARY); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2490 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2491 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2492 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2493 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2494 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2495 i++; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2496 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2497 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2498 case SB: // -6 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2499 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2500 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
|
2501 negNewEnvironment(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2502 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2503 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
|
2504 } |
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 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
|
2507 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2508 baosp.write(SB); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2509 baosp.write(TERMINAL_TYPE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2510 baosp.write(QUAL_IS); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2511 if(!support132) |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2512 baosp.write("IBM-3179-2".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2513 else |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2514 baosp.write("IBM-3477-FC".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2515 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2516 baosp.write(SE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2517 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2518 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2519 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2520 i++; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2521 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2522 i++; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2523 break; |
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 return true; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2526 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2527 else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2528 return false; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2529 } |
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 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2532 /** |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2533 * 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
|
2534 * |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2535 * @throws IOException |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2536 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2537 private void negNewEnvironment() throws IOException { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2538 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2539 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2540 baosp.write(SB); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2541 baosp.write(NEW_ENVIRONMENT); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2542 baosp.write(IS); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2543 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2544 // http://tools.ietf.org/html/rfc4777 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2545 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2546 if (kbdTypesCodePage != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2547 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2548 baosp.write("KBDTYPE".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2549 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2550 baosp.write(kbdTypesCodePage.kbdType.getBytes()); |
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 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2553 baosp.write("CODEPAGE".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2554 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2555 baosp.write(kbdTypesCodePage.codepage.getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2556 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2557 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2558 baosp.write("CHARSET".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2559 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2560 baosp.write(kbdTypesCodePage.charset.getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2561 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2562 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2563 if (devName != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2564 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2565 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2566 baosp.write("DEVNAME".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2567 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2568 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2569 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2570 baosp.write(negDeviceName().getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2571 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2572 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2573 if (user != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2574 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2575 baosp.write(VAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2576 baosp.write("USER".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2577 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2578 baosp.write(user.getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2579 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2580 if (password != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2581 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2582 baosp.write("IBMRSEED".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2583 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2584 baosp.write(NEGOTIATE_ESC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2585 baosp.write(0x0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2586 baosp.write(0x0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2587 baosp.write(0x0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2588 baosp.write(0x0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2589 baosp.write(0x0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2590 baosp.write(0x0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2591 baosp.write(0x0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2592 baosp.write(0x0); |
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("IBMSUBSPW".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(password.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 if (library != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2600 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2601 baosp.write("IBMCURLIB".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2602 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2603 baosp.write(library.getBytes()); |
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 if (initialMenu != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2607 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2608 baosp.write("IBMIMENU".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2609 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2610 baosp.write(initialMenu.getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2611 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2612 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2613 if (program != null) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2614 baosp.write(USERVAR); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2615 baosp.write("IBMPROGRAM".getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2616 baosp.write(VALUE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2617 baosp.write(program.getBytes()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2618 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2619 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2620 baosp.write(IAC); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2621 baosp.write(SE); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2622 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2623 writeByte(baosp.toByteArray()); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2624 baosp.reset(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2625 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2626 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2627 |
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 * 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
|
2630 * 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
|
2631 * 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
|
2632 * the controller says no way. |
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 * @return String |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2635 */ |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2636 private String negDeviceName() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2637 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2638 if (devSeq++ == -1) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2639 devNameUsed = devName; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2640 return devName; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2641 } else { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2642 StringBuffer sb = new StringBuffer(devName + devSeq); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2643 int ei = 1; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2644 while (sb.length() > 10) { |
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 sb.setLength(0); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2647 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
|
2648 sb.append(devSeq); |
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 devNameUsed = sb.toString(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2652 return devNameUsed; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2653 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2654 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2655 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2656 public final void setCodePage(String cp) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2657 codePage = CharMappings.getCodePage(cp); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2658 cp = cp.toLowerCase(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2659 for (KbdTypesCodePages kbdtyp : KbdTypesCodePages.values()) { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2660 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
|
2661 kbdTypesCodePage = kbdtyp; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2662 break; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2663 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2664 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2665 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
|
2666 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2667 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2668 public final ICodePage getCodePage() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2669 return codePage; |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2670 } |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2671 |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2672 public void signalBell() { |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2673 manager.playBeep(); |
5949eb469a79
adding tn5250 files, native android logging
Carl Byington <carl@five-ten-sg.com>
parents:
24
diff
changeset
|
2674 } |
3 | 2675 |
2676 } |