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