ansi.c
45.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
/*
* "Software pw3270, desenvolvido com base nos códigos fontes do WC3270 e X3270
* (Paul Mattes Paul.Mattes@usa.net), de emulação de terminal 3270 para acesso a
* aplicativos mainframe. Registro no INPI sob o nome G3270. Registro no INPI sob o nome G3270.
*
* Copyright (C) <2008> <Banco do Brasil S.A.>
*
* Este programa é software livre. Você pode redistribuí-lo e/ou modificá-lo sob
* os termos da GPL v.2 - Licença Pública Geral GNU, conforme publicado pela
* Free Software Foundation.
*
* Este programa é distribuído na expectativa de ser útil, mas SEM QUALQUER
* GARANTIA; sem mesmo a garantia implícita de COMERCIALIZAÇÃO ou de ADEQUAÇÃO
* A QUALQUER PROPÓSITO EM PARTICULAR. Consulte a Licença Pública Geral GNU para
* obter mais detalhes.
*
* Você deve ter recebido uma cópia da Licença Pública Geral GNU junto com este
* programa; se não, escreva para a Free Software Foundation, Inc., 59 Temple
* Place, Suite 330, Boston, MA, 02111-1307, USA
*
* Este programa está nomeado como ansi.c e possui 1902 linhas de código.
*
* Contatos:
*
* perry.werneck@gmail.com (Alexandre Perry de Souza Werneck)
* erico.mendonca@gmail.com (Erico Mascarenhas Mendonça)
* licinio@bb.com.br (Licínio Luis Branco)
* kraucer@bb.com.br (Kraucer Fernandes Mazuco)
* macmiranda@bb.com.br (Marco Aurélio Caldas Miranda)
*
*/
/*
* ansi.c
* ANSI terminal emulation.
*/
#include "globals.h"
#if defined(X3270_ANSI) /*[*/
#if defined(X3270_DISPLAY) /*[*/
#include <X11/Shell.h>
#endif /*]*/
#include "appres.h"
#include "ctlr.h"
#if defined(X3270_DBCS) /*[*/
#include "3270ds.h"
#endif /*]*/
#include "ansic.h"
#include "ctlrc.h"
#include "hostc.h"
#include "screenc.h"
#include "scrollc.h"
#include "tablesc.h"
#include "telnetc.h"
#include "trace_dsc.h"
#include "utf8c.h"
#if defined(X3270_DBCS) /*[*/
#include "widec.h"
#endif /*]*/
#define MB_MAX 16
#define SC 1 /* save cursor position */
#define RC 2 /* restore cursor position */
#define NL 3 /* new line */
#define UP 4 /* cursor up */
#define E2 5 /* second level of ESC processing */
#define rS 6 /* reset */
#define IC 7 /* insert chars */
#define DN 8 /* cursor down */
#define RT 9 /* cursor right */
#define LT 10 /* cursor left */
#define CM 11 /* cursor motion */
#define ED 12 /* erase in display */
#define EL 13 /* erase in line */
#define IL 14 /* insert lines */
#define DL 15 /* delete lines */
#define DC 16 /* delete characters */
#define SG 17 /* set graphic rendition */
#define BL 18 /* ring bell */
#define NP 19 /* new page */
#define BS 20 /* backspace */
#define CR 21 /* carriage return */
#define LF 22 /* line feed */
#define HT 23 /* horizontal tab */
#define E1 24 /* first level of ESC processing */
#define Xx 25 /* undefined control character (nop) */
#define Pc 26 /* printing character */
#define Sc 27 /* semicolon (after ESC [) */
#define Dg 28 /* digit (after ESC [ or ESC [ ?) */
#define RI 29 /* reverse index */
#define DA 30 /* send device attributes */
#define SM 31 /* set mode */
#define RM 32 /* reset mode */
#define DO 33 /* return terminal ID (obsolete) */
#define SR 34 /* device status report */
#define CS 35 /* character set designate */
#define E3 36 /* third level of ESC processing */
#define DS 37 /* DEC private set */
#define DR 38 /* DEC private reset */
#define DV 39 /* DEC private save */
#define DT 40 /* DEC private restore */
#define SS 41 /* set scrolling region */
#define TM 42 /* text mode (ESC ]) */
#define T2 43 /* semicolon (after ESC ]) */
#define TX 44 /* text parameter (after ESC ] n ;) */
#define TB 45 /* text parameter done (ESC ] n ; xxx BEL) */
#define TS 46 /* tab set */
#define TC 47 /* tab clear */
#define C2 48 /* character set designate (finish) */
#define G0 49 /* select G0 character set */
#define G1 50 /* select G1 character set */
#define G2 51 /* select G2 character set */
#define G3 52 /* select G3 character set */
#define S2 53 /* select G2 for next character */
#define S3 54 /* select G3 for next character */
#define MB 55 /* process multi-byte character */
static enum state {
DATA = 0, ESC = 1, CSDES = 2,
N1 = 3, DECP = 4, TEXT = 5, TEXT2 = 6,
MBPEND = 7
} state = DATA;
static enum state ansi_data_mode(int, int);
static enum state dec_save_cursor(int, int);
static enum state dec_restore_cursor(int, int);
static enum state ansi_newline(int, int);
static enum state ansi_cursor_up(int, int);
static enum state ansi_esc2(int, int);
static enum state ansi_reset(int, int);
static enum state ansi_insert_chars(int, int);
static enum state ansi_cursor_down(int, int);
static enum state ansi_cursor_right(int, int);
static enum state ansi_cursor_left(int, int);
static enum state ansi_cursor_motion(int, int);
static enum state ansi_erase_in_display(int, int);
static enum state ansi_erase_in_line(int, int);
static enum state ansi_insert_lines(int, int);
static enum state ansi_delete_lines(int, int);
static enum state ansi_delete_chars(int, int);
static enum state ansi_sgr(int, int);
static enum state ansi_bell(int, int);
static enum state ansi_newpage(int, int);
static enum state ansi_backspace(int, int);
static enum state ansi_cr(int, int);
static enum state ansi_lf(int, int);
static enum state ansi_htab(int, int);
static enum state ansi_escape(int, int);
static enum state ansi_nop(int, int);
static enum state ansi_printing(int, int);
static enum state ansi_semicolon(int, int);
static enum state ansi_digit(int, int);
static enum state ansi_reverse_index(int, int);
static enum state ansi_send_attributes(int, int);
static enum state ansi_set_mode(int, int);
static enum state ansi_reset_mode(int, int);
static enum state dec_return_terminal_id(int, int);
static enum state ansi_status_report(int, int);
static enum state ansi_cs_designate(int, int);
static enum state ansi_esc3(int, int);
static enum state dec_set(int, int);
static enum state dec_reset(int, int);
static enum state dec_save(int, int);
static enum state dec_restore(int, int);
static enum state dec_scrolling_region(int, int);
static enum state xterm_text_mode(int, int);
static enum state xterm_text_semicolon(int, int);
static enum state xterm_text(int, int);
static enum state xterm_text_do(int, int);
static enum state ansi_htab_set(int, int);
static enum state ansi_htab_clear(int, int);
static enum state ansi_cs_designate2(int, int);
static enum state ansi_select_g0(int, int);
static enum state ansi_select_g1(int, int);
static enum state ansi_select_g2(int, int);
static enum state ansi_select_g3(int, int);
static enum state ansi_one_g2(int, int);
static enum state ansi_one_g3(int, int);
static enum state ansi_multibyte(int, int);
typedef enum state (*afn_t)(int, int);
static afn_t ansi_fn[] = {
/* 0 */ &ansi_data_mode,
/* 1 */ &dec_save_cursor,
/* 2 */ &dec_restore_cursor,
/* 3 */ &ansi_newline,
/* 4 */ &ansi_cursor_up,
/* 5 */ &ansi_esc2,
/* 6 */ &ansi_reset,
/* 7 */ &ansi_insert_chars,
/* 8 */ &ansi_cursor_down,
/* 9 */ &ansi_cursor_right,
/* 10 */ &ansi_cursor_left,
/* 11 */ &ansi_cursor_motion,
/* 12 */ &ansi_erase_in_display,
/* 13 */ &ansi_erase_in_line,
/* 14 */ &ansi_insert_lines,
/* 15 */ &ansi_delete_lines,
/* 16 */ &ansi_delete_chars,
/* 17 */ &ansi_sgr,
/* 18 */ &ansi_bell,
/* 19 */ &ansi_newpage,
/* 20 */ &ansi_backspace,
/* 21 */ &ansi_cr,
/* 22 */ &ansi_lf,
/* 23 */ &ansi_htab,
/* 24 */ &ansi_escape,
/* 25 */ &ansi_nop,
/* 26 */ &ansi_printing,
/* 27 */ &ansi_semicolon,
/* 28 */ &ansi_digit,
/* 29 */ &ansi_reverse_index,
/* 30 */ &ansi_send_attributes,
/* 31 */ &ansi_set_mode,
/* 32 */ &ansi_reset_mode,
/* 33 */ &dec_return_terminal_id,
/* 34 */ &ansi_status_report,
/* 35 */ &ansi_cs_designate,
/* 36 */ &ansi_esc3,
/* 37 */ &dec_set,
/* 38 */ &dec_reset,
/* 39 */ &dec_save,
/* 40 */ &dec_restore,
/* 41 */ &dec_scrolling_region,
/* 42 */ &xterm_text_mode,
/* 43 */ &xterm_text_semicolon,
/* 44 */ &xterm_text,
/* 45 */ &xterm_text_do,
/* 46 */ &ansi_htab_set,
/* 47 */ &ansi_htab_clear,
/* 48 */ &ansi_cs_designate2,
/* 49 */ &ansi_select_g0,
/* 50 */ &ansi_select_g1,
/* 51 */ &ansi_select_g2,
/* 52 */ &ansi_select_g3,
/* 53 */ &ansi_one_g2,
/* 54 */ &ansi_one_g3,
/* 55 */ &ansi_multibyte,
};
static unsigned char st[8][256] = {
/*
* State table for base processing (state == DATA)
*/
{
/* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
/* 00 */ Xx,Xx,Xx,Xx,Xx,Xx,Xx,BL,BS,HT,LF,LF,NP,CR,G1,G0,
/* 10 */ Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,E1,Xx,Xx,Xx,Xx,
/* 20 */ Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,
/* 30 */ Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,
/* 40 */ Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,
/* 50 */ Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,
/* 60 */ Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,
/* 70 */ Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Xx,
/* 80 */ Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,
/* 90 */ Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,Xx,
/* a0 */ Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,
/* b0 */ Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,
/* c0 */ Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,
/* d0 */ Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,
/* e0 */ Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,
/* f0 */ Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc,Pc
},
/*
* State table for ESC processing (state == ESC)
*/
{
/* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
/* 00 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 10 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 20 */ 0, 0, 0, 0, 0, 0, 0, 0,CS,CS,CS,CS, 0, 0, 0, 0,
/* 30 */ 0, 0, 0, 0, 0, 0, 0,SC,RC, 0, 0, 0, 0, 0, 0, 0,
/* 40 */ 0, 0, 0, 0, 0,NL, 0, 0,TS, 0, 0, 0, 0,RI,S2,S3,
/* 50 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,E2, 0,TM, 0, 0,
/* 60 */ 0, 0, 0,rS, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,G2,G3,
/* 70 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 80 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 90 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* a0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* b0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* c0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* d0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* e0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* f0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
/*
* State table for ESC ()*+ C processing (state == CSDES)
*/
{
/* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
/* 00 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 10 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 20 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 30 */ C2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 40 */ 0,C2,C2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 50 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 60 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 70 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 80 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 90 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* a0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* b0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* c0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* d0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* e0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* f0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
/*
* State table for ESC [ processing (state == N1)
*/
{
/* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
/* 00 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 10 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 20 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 30 */ Dg,Dg,Dg,Dg,Dg,Dg,Dg,Dg,Dg,Dg, 0,Sc, 0, 0, 0,E3,
/* 40 */ IC,UP,DN,RT,LT, 0, 0, 0,CM, 0,ED,EL,IL,DL, 0, 0,
/* 50 */ DC, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 60 */ 0, 0, 0,DA, 0, 0,CM,TC,SM, 0, 0, 0,RM,SG,SR, 0,
/* 70 */ 0, 0,SS, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 80 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 90 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* a0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* b0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* c0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* d0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* e0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* f0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
/*
* State table for ESC [ ? processing (state == DECP)
*/
{
/* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
/* 00 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 10 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 20 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 30 */ Dg,Dg,Dg,Dg,Dg,Dg,Dg,Dg,Dg,Dg, 0, 0, 0, 0, 0, 0,
/* 40 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 50 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 60 */ 0, 0, 0, 0, 0, 0, 0, 0,DS, 0, 0, 0,DR, 0, 0, 0,
/* 70 */ 0, 0,DT,DV, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 80 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 90 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* a0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* b0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* c0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* d0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* e0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* f0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
/*
* State table for ESC ] processing (state == TEXT)
*/
{
/* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
/* 00 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 10 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 20 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 30 */ Dg,Dg,Dg,Dg,Dg,Dg,Dg,Dg,Dg,Dg, 0,T2, 0, 0, 0, 0,
/* 40 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 50 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 60 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 70 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 80 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 90 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* a0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* b0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* c0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* d0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* e0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* f0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
},
/*
* State table for ESC ] n ; processing (state == TEXT2)
*/
{
/* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
/* 00 */ 0, 0, 0, 0, 0, 0, 0,TB, 0, 0, 0, 0, 0, 0, 0, 0,
/* 10 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 20 */ TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,
/* 30 */ TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,
/* 40 */ TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,
/* 50 */ TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,
/* 60 */ TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,
/* 70 */ TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,Xx,
/* 80 */ TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,
/* 90 */ TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,
/* a0 */ TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,
/* b0 */ TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,
/* c0 */ TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,
/* d0 */ TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,
/* e0 */ TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,
/* f0 */ TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX,TX
},
/*
* State table for multi-byte characters (state == MBPEND)
*/
{
/* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
/* 00 */ MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,
/* 10 */ MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,
/* 20 */ MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,
/* 30 */ MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,
/* 40 */ MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,
/* 50 */ MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,
/* 60 */ MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,
/* 70 */ MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,
/* 80 */ MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,
/* 90 */ MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,
/* a0 */ MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,
/* b0 */ MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,
/* c0 */ MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,
/* d0 */ MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,
/* e0 */ MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,
/* f0 */ MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB,MB
},
};
/* Character sets. */
#define CS_G0 0
#define CS_G1 1
#define CS_G2 2
#define CS_G3 3
/* Character set designations. */
#define CSD_LD 0
#define CSD_UK 1
#define CSD_US 2
static int saved_cursor = 0;
#define NN 20
static int n[NN], nx = 0;
#define NT 256
static char text[NT + 1];
static int tx = 0;
static int ansi_ch;
static unsigned char gr = 0;
static unsigned char saved_gr = 0;
static unsigned char fg = 0;
static unsigned char saved_fg = 0;
static unsigned char bg = 0;
static unsigned char saved_bg = 0;
static int cset = CS_G0;
static int saved_cset = CS_G0;
static int csd[4] = { CSD_US, CSD_US, CSD_US, CSD_US };
static int saved_csd[4] = { CSD_US, CSD_US, CSD_US, CSD_US };
static int once_cset = -1;
static int insert_mode = 0;
static int auto_newline_mode = 0;
static int appl_cursor = 0;
static int saved_appl_cursor = 0;
static int wraparound_mode = 1;
static int saved_wraparound_mode = 1;
static int rev_wraparound_mode = 0;
static int saved_rev_wraparound_mode = 0;
static int allow_wide_mode = 0;
static int saved_allow_wide_mode = 0;
static int wide_mode = 0;
static int saved_wide_mode = 0;
static Boolean saved_altbuffer = False;
static int scroll_top = -1;
static int scroll_bottom = -1;
static unsigned char *tabs = (unsigned char *) NULL;
static char gnnames[] = "()*+";
static char csnames[] = "0AB";
static int cs_to_change;
#if defined(X3270_DBCS) /*[*/
static unsigned char mb_pending = 0;
static char mb_buffer[MB_MAX];
static int dbcs_process(int ch, unsigned char ebc[]);
#endif /*]*/
static int pmi = 0;
static char pending_mbs[MB_MAX];
static Boolean held_wrap = False;
static void ansi_scroll(void);
static enum state
ansi_data_mode(int ig1 unused, int ig2 unused)
{
return DATA;
}
static enum state
dec_save_cursor(int ig1 unused, int ig2 unused)
{
int i;
saved_cursor = h3270.cursor_addr;
saved_cset = cset;
for (i = 0; i < 4; i++)
saved_csd[i] = csd[i];
saved_fg = fg;
saved_bg = bg;
saved_gr = gr;
return DATA;
}
static enum state
dec_restore_cursor(int ig1 unused, int ig2 unused)
{
int i;
cset = saved_cset;
for (i = 0; i < 4; i++)
csd[i] = saved_csd[i];
fg = saved_fg;
bg = saved_bg;
gr = saved_gr;
cursor_move(saved_cursor);
held_wrap = False;
return DATA;
}
static enum state
ansi_newline(int ig1 unused, int ig2 unused)
{
int nc;
cursor_move(h3270.cursor_addr - (h3270.cursor_addr % h3270.cols));
nc = h3270.cursor_addr + h3270.cols;
if (nc < scroll_bottom * h3270.cols)
cursor_move(nc);
else
ansi_scroll();
held_wrap = False;
return DATA;
}
static enum state
ansi_cursor_up(int nn, int ig2 unused)
{
int rr;
if (nn < 1)
nn = 1;
rr = h3270.cursor_addr / h3270.cols;
if (rr - nn < 0)
cursor_move(h3270.cursor_addr % h3270.cols);
else
cursor_move(h3270.cursor_addr - (nn * h3270.cols));
held_wrap = False;
return DATA;
}
static enum state
ansi_esc2(int ig1 unused, int ig2 unused)
{
register int i;
for (i = 0; i < NN; i++)
n[i] = 0;
nx = 0;
return N1;
}
static enum state
ansi_reset(int ig1 unused, int ig2 unused)
{
int i;
static Boolean first = True;
gr = 0;
saved_gr = 0;
fg = 0;
saved_fg = 0;
bg = 0;
saved_bg = 0;
cset = CS_G0;
saved_cset = CS_G0;
csd[0] = csd[1] = csd[2] = csd[3] = CSD_US;
saved_csd[0] = saved_csd[1] = saved_csd[2] = saved_csd[3] = CSD_US;
once_cset = -1;
saved_cursor = 0;
insert_mode = 0;
auto_newline_mode = 0;
appl_cursor = 0;
saved_appl_cursor = 0;
wraparound_mode = 1;
saved_wraparound_mode = 1;
rev_wraparound_mode = 0;
saved_rev_wraparound_mode = 0;
allow_wide_mode = 0;
saved_allow_wide_mode = 0;
wide_mode = 0;
allow_wide_mode = 0;
saved_altbuffer = False;
scroll_top = 1;
scroll_bottom = h3270.rows;
Replace(tabs, (unsigned char *)Malloc((h3270.cols+7)/8));
for (i = 0; i < (h3270.cols+7)/8; i++)
tabs[i] = 0x01;
held_wrap = False;
if (!first) {
ctlr_altbuffer(&h3270,True);
ctlr_aclear(0, h3270.rows * h3270.cols, 1);
ctlr_altbuffer(&h3270,False);
ctlr_clear(&h3270,False);
screen_80();
}
first = False;
pmi = 0;
return DATA;
}
static enum state
ansi_insert_chars(int nn, int ig2 unused)
{
int cc = h3270.cursor_addr % h3270.cols; /* current col */
int mc = h3270.cols - cc; /* max chars that can be inserted */
int ns; /* chars that are shifting */
if (nn < 1)
nn = 1;
if (nn > mc)
nn = mc;
/* Move the surviving chars right */
ns = mc - nn;
if (ns)
ctlr_bcopy(h3270.cursor_addr, h3270.cursor_addr + nn, ns, 1);
/* Clear the middle of the line */
ctlr_aclear(h3270.cursor_addr, nn, 1);
return DATA;
}
static enum state
ansi_cursor_down(int nn, int ig2 unused)
{
int rr;
if (nn < 1)
nn = 1;
rr = h3270.cursor_addr / h3270.cols;
if (rr + nn >= h3270.cols)
cursor_move((h3270.cols-1)*h3270.cols + (h3270.cursor_addr%h3270.cols));
else
cursor_move(h3270.cursor_addr + (nn * h3270.cols));
held_wrap = False;
return DATA;
}
static enum state
ansi_cursor_right(int nn, int ig2 unused)
{
int cc;
if (nn < 1)
nn = 1;
cc = h3270.cursor_addr % h3270.cols;
if (cc == h3270.cols-1)
return DATA;
if (cc + nn >= h3270.cols)
nn = h3270.cols - 1 - cc;
cursor_move(h3270.cursor_addr + nn);
held_wrap = False;
return DATA;
}
static enum state
ansi_cursor_left(int nn, int ig2 unused)
{
int cc;
if (held_wrap) {
held_wrap = False;
return DATA;
}
if (nn < 1)
nn = 1;
cc = h3270.cursor_addr % h3270.cols;
if (!cc)
return DATA;
if (nn > cc)
nn = cc;
cursor_move(h3270.cursor_addr - nn);
return DATA;
}
static enum state
ansi_cursor_motion(int n1, int n2)
{
if (n1 < 1) n1 = 1;
if (n1 > h3270.rows) n1 = h3270.rows;
if (n2 < 1) n2 = 1;
if (n2 > h3270.cols) n2 = h3270.cols;
cursor_move((n1 - 1) * h3270.cols + (n2 - 1));
held_wrap = False;
return DATA;
}
static enum state
ansi_erase_in_display(int nn, int ig2 unused)
{
switch (nn) {
case 0: /* below */
ctlr_aclear(h3270.cursor_addr, (h3270.rows * h3270.cols) - h3270.cursor_addr, 1);
break;
case 1: /* above */
ctlr_aclear(0, h3270.cursor_addr + 1, 1);
break;
case 2: /* all (without moving cursor) */
if (h3270.cursor_addr == 0 && !h3270.is_altbuffer)
scroll_save(h3270.rows, True);
ctlr_aclear(0, h3270.rows * h3270.cols, 1);
break;
}
return DATA;
}
static enum state
ansi_erase_in_line(int nn, int ig2 unused)
{
int nc = h3270.cursor_addr % h3270.cols;
switch (nn) {
case 0: /* to right */
ctlr_aclear(h3270.cursor_addr, h3270.cols - nc, 1);
break;
case 1: /* to left */
ctlr_aclear(h3270.cursor_addr - nc, nc+1, 1);
break;
case 2: /* all */
ctlr_aclear(h3270.cursor_addr - nc, h3270.cols, 1);
break;
}
return DATA;
}
static enum state
ansi_insert_lines(int nn, int ig2 unused)
{
int rr = h3270.cursor_addr / h3270.cols; /* current row */
int mr = scroll_bottom - rr; /* rows left at and below this one */
int ns; /* rows that are shifting */
/* If outside of the scrolling region, do nothing */
if (rr < scroll_top - 1 || rr >= scroll_bottom)
return DATA;
if (nn < 1)
nn = 1;
if (nn > mr)
nn = mr;
/* Move the victims down */
ns = mr - nn;
if (ns)
ctlr_bcopy(rr * h3270.cols, (rr + nn) * h3270.cols, ns * h3270.cols, 1);
/* Clear the middle of the screen */
ctlr_aclear(rr * h3270.cols, nn * h3270.cols, 1);
return DATA;
}
static enum state
ansi_delete_lines(int nn, int ig2 unused)
{
int rr = h3270.cursor_addr / h3270.cols; /* current row */
int mr = scroll_bottom - rr; /* max rows that can be deleted */
int ns; /* rows that are shifting */
/* If outside of the scrolling region, do nothing */
if (rr < scroll_top - 1 || rr >= scroll_bottom)
return DATA;
if (nn < 1)
nn = 1;
if (nn > mr)
nn = mr;
/* Move the surviving rows up */
ns = mr - nn;
if (ns)
ctlr_bcopy((rr + nn) * h3270.cols, rr * h3270.cols, ns * h3270.cols, 1);
/* Clear the rest of the screen */
ctlr_aclear((rr + ns) * h3270.cols, nn * h3270.cols, 1);
return DATA;
}
static enum state
ansi_delete_chars(int nn, int ig2 unused)
{
int cc = h3270.cursor_addr % h3270.cols; /* current col */
int mc = h3270.cols - cc; /* max chars that can be deleted */
int ns; /* chars that are shifting */
if (nn < 1)
nn = 1;
if (nn > mc)
nn = mc;
/* Move the surviving chars left */
ns = mc - nn;
if (ns)
ctlr_bcopy(h3270.cursor_addr + nn, h3270.cursor_addr, ns, 1);
/* Clear the end of the line */
ctlr_aclear(h3270.cursor_addr + ns, nn, 1);
return DATA;
}
static enum state
ansi_sgr(int ig1 unused, int ig2 unused)
{
int i;
for (i = 0; i <= nx && i < NN; i++)
switch (n[i]) {
case 0:
gr = 0;
fg = 0;
bg = 0;
break;
case 1:
gr |= GR_INTENSIFY;
break;
case 4:
gr |= GR_UNDERLINE;
break;
case 5:
gr |= GR_BLINK;
break;
case 7:
gr |= GR_REVERSE;
break;
case 30:
fg = 0xf0; /* black */
break;
case 31:
fg = 0xf2; /* red */
break;
case 32:
fg = 0xf4; /* green */
break;
case 33:
fg = 0xf6; /* yellow */
break;
case 34:
fg = 0xf1; /* blue */
break;
case 35:
fg = 0xf3; /* magenta */
break;
case 36:
#if defined(WC3270) /*[*/
fg = 0xf6; /* turquoise */
#else /*][*/
fg = 0xfd; /* cyan */
#endif /*]*/
break;
case 37:
#if defined(WC3270) /*[*/
fg = 0xf7; /* white */
#else /*][*/
fg = 0xff; /* white */
#endif /*]*/
break;
case 39:
fg = 0; /* default */
break;
case 40:
bg = 0xf0; /* black */
break;
case 41:
bg = 0xf2; /* red */
break;
case 42:
bg = 0xf4; /* green */
break;
case 43:
bg = 0xf6; /* yellow */
break;
case 44:
bg = 0xf1; /* blue */
break;
case 45:
bg = 0xf3; /* magenta */
break;
case 46:
#if defined(WC3270) /*[*/
bg = 0xf6; /* turquoise */
#else /*][*/
bg = 0xfd; /* cyan */
#endif /*]*/
break;
case 47:
#if defined(WC3270) /*[*/
bg = 0xf7; /* white */
#else /*][*/
bg = 0xff; /* white */
#endif /*]*/
break;
case 49:
bg = 0; /* default */
break;
}
return DATA;
}
static enum state
ansi_bell(int ig1 unused, int ig2 unused)
{
ring_bell();
return DATA;
}
static enum state
ansi_newpage(int ig1 unused, int ig2 unused)
{
ctlr_clear(&h3270,False);
return DATA;
}
static enum state
ansi_backspace(int ig1 unused, int ig2 unused)
{
if (held_wrap) {
held_wrap = False;
return DATA;
}
if (rev_wraparound_mode) {
if (h3270.cursor_addr > (scroll_top - 1) * h3270.cols)
cursor_move(h3270.cursor_addr - 1);
} else {
if (h3270.cursor_addr % h3270.cols)
cursor_move(h3270.cursor_addr - 1);
}
return DATA;
}
static enum state
ansi_cr(int ig1 unused, int ig2 unused)
{
if (h3270.cursor_addr % h3270.cols)
cursor_move(h3270.cursor_addr - (h3270.cursor_addr % h3270.cols));
if (auto_newline_mode)
(void) ansi_lf(0, 0);
held_wrap = False;
return DATA;
}
static enum state
ansi_lf(int ig1 unused, int ig2 unused)
{
int nc = h3270.cursor_addr + h3270.cols;
held_wrap = False;
/* If we're below the scrolling region, don't scroll. */
if ((h3270.cursor_addr / h3270.cols) >= scroll_bottom) {
if (nc < h3270.rows * h3270.cols)
cursor_move(nc);
return DATA;
}
if (nc < scroll_bottom * h3270.cols)
cursor_move(nc);
else
ansi_scroll();
return DATA;
}
static enum state
ansi_htab(int ig1 unused, int ig2 unused)
{
int col = h3270.cursor_addr % h3270.cols;
int i;
held_wrap = False;
if (col == h3270.cols-1)
return DATA;
for (i = col+1; i < h3270.cols-1; i++)
if (tabs[i/8] & 1<<(i%8))
break;
cursor_move(h3270.cursor_addr - col + i);
return DATA;
}
static enum state
ansi_escape(int ig1 unused, int ig2 unused)
{
return ESC;
}
static enum state
ansi_nop(int ig1 unused, int ig2 unused)
{
return DATA;
}
#define PWRAP { \
nc = h3270.cursor_addr + 1; \
if (nc < scroll_bottom * h3270.cols) \
cursor_move(nc); \
else { \
if (h3270.cursor_addr / h3270.cols >= scroll_bottom) \
cursor_move(h3270.cursor_addr / h3270.cols * h3270.cols); \
else { \
ansi_scroll(); \
cursor_move(nc - h3270.cols); \
} \
} \
}
static enum state
ansi_printing(int ig1 unused, int ig2 unused)
{
int nc;
unsigned char ebc_ch;
int default_cs = CS_BASE;
#if defined(X3270_DBCS) /*[*/
enum dbcs_state d;
Boolean preserve_right = False;
#endif /*]*/
if ((pmi == 0) && (ansi_ch & 0x80)) {
char mbs[2];
enum ulfail fail;
unsigned char ch;
mbs[0] = (char)ansi_ch;
mbs[1] = '\0';
ch = utf8_lookup(mbs, &fail, NULL);
if (ch == 0) {
switch (fail) {
case ULFAIL_NOUTF8:
/* Leave it alone. */
break;
case ULFAIL_INCOMPLETE:
/* Start munching multi-byte. */
pmi = 0;
pending_mbs[pmi++] = (char)ansi_ch;
return MBPEND;
case ULFAIL_INVALID:
/* Invalid multi-byte -> '?' */
ansi_ch = '?';
/* XXX: If DBCS, we should let
* ICU have a crack at it
*/
break;
}
}
}
pmi = 0;
if (held_wrap) {
PWRAP;
held_wrap = False;
}
if (insert_mode)
(void) ansi_insert_chars(1, 0);
switch (csd[(once_cset != -1) ? once_cset : cset]) {
case CSD_LD: /* line drawing "0" */
if (ansi_ch >= 0x5f && ansi_ch <= 0x7e)
ctlr_add(h3270.cursor_addr, (unsigned char)(ansi_ch - 0x5f),
CS_LINEDRAW);
else
ctlr_add(h3270.cursor_addr, asc2ebc[ansi_ch], CS_BASE);
break;
case CSD_UK: /* UK "A" */
if (ansi_ch == '#')
ctlr_add(h3270.cursor_addr, 0x1e, CS_LINEDRAW);
else
ctlr_add(h3270.cursor_addr, asc2ebc[ansi_ch], CS_BASE);
break;
case CSD_US: /* US "B" */
ebc_ch = asc2ebc[ansi_ch];
#if defined(X3270_DBCS) /*[*/
d = ctlr_dbcs_state(cursor_addr);
if (dbcs) {
if (mb_pending || (ansi_ch & 0x80)) {
int len;
unsigned char ebc[2];
len = dbcs_process(ansi_ch, ebc);
switch (len) {
default:
case 0:
/* Translation failed. */
return DATA;
case 1:
/* It was really SBCS. */
ebc_ch = ebc[0];
break;
case 2:
/* DBCS. */
if ((cursor_addr % COLS) == (COLS-1)) {
ebc_ch = EBC_space;
break;
}
ctlr_add(cursor_addr, ebc[0], CS_DBCS);
ctlr_add_gr(cursor_addr, gr);
ctlr_add_fg(cursor_addr, fg);
ctlr_add_bg(cursor_addr, bg);
if (wraparound_mode) {
if (!((cursor_addr + 1) % COLS)) {
held_wrap = True;
} else {
PWRAP;
}
} else {
if ((cursor_addr % COLS) != (COLS - 1))
cursor_move(cursor_addr + 1);
}
/*
* Set up the right-hand side to be
* stored below.
*/
ebc_ch = ebc[1];
default_cs = CS_DBCS;
preserve_right = True;
break;
}
} else if (ansi_ch & 0x80) {
(void) dbcs_process(ansi_ch, NULL);
ebc_ch = EBC_space;
}
}
/* Handle conflicts with existing DBCS characters. */
if (!preserve_right &&
(d == DBCS_RIGHT || d == DBCS_RIGHT_WRAP)) {
int xaddr;
xaddr = cursor_addr;
DEC_BA(xaddr);
ctlr_add(xaddr, EBC_space, CS_BASE);
ea_buf[xaddr].db = DBCS_NONE;
ea_buf[cursor_addr].db = DBCS_NONE;
}
if (d == DBCS_LEFT || d == DBCS_LEFT_WRAP) {
int xaddr;
xaddr = cursor_addr;
INC_BA(xaddr);
ctlr_add(xaddr, EBC_space, CS_BASE);
ea_buf[xaddr].db = DBCS_NONE;
ea_buf[cursor_addr].db = DBCS_NONE;
}
#endif /*]*/
ctlr_add(h3270.cursor_addr, ebc_ch, default_cs);
#if defined(X3270_DBCS) /*[*/
if (default_cs == CS_DBCS)
(void) ctlr_dbcs_postprocess();
#endif /*]*/
break;
}
once_cset = -1;
ctlr_add_gr(h3270.cursor_addr, gr);
ctlr_add_fg(h3270.cursor_addr, fg);
ctlr_add_bg(h3270.cursor_addr, bg);
if (wraparound_mode) {
/*
* There is a fascinating behavior of xterm which we will
* attempt to emulate here. When a character is printed in the
* last column, the cursor sticks there, rather than wrapping
* to the next line. Another printing character will put the
* cursor in column 2 of the next line. One cursor-left
* sequence won't budge it; two will. Saving and restoring
* the cursor won't move the cursor, but will cancel all of
* the above behaviors...
*
* In my opinion, very strange, but among other things, 'vi'
* depends on it!
*/
if (!((h3270.cursor_addr + 1) % h3270.cols)) {
held_wrap = True;
} else {
PWRAP;
}
} else {
if ((h3270.cursor_addr % h3270.cols) != (h3270.cols - 1))
cursor_move(h3270.cursor_addr + 1);
}
return DATA;
}
static enum state
ansi_multibyte(int ig1, int ig2)
{
char mbs[MB_MAX];
unsigned char ch;
enum ulfail fail;
afn_t fn;
if (pmi >= MB_MAX - 2) {
/* String too long. */
pmi = 0;
ansi_ch = '?';
return ansi_printing(ig1, ig2);
}
strncpy(mbs, pending_mbs, pmi);
mbs[pmi] = (char)ansi_ch;
mbs[pmi + 1] = '\0';
ch = utf8_lookup(mbs, &fail, NULL);
if (ch != 0) {
/* Success! */
ansi_ch = ch;
return ansi_printing(ig1, ig2);
}
if (fail == ULFAIL_INCOMPLETE) {
/* Go get more. */
pending_mbs[pmi++] = (char)ansi_ch;
return MBPEND;
}
/* Failure. */
/* Replace the sequence with '?'. */
ch = ansi_ch; /* save for later */
pmi = 0;
ansi_ch = '?';
(void) ansi_printing(ig1, ig2);
/* Reprocess whatever we choked on. */
ansi_ch = ch;
state = DATA;
fn = ansi_fn[st[(int)DATA][ansi_ch]];
return (*fn)(n[0], n[1]);
}
static enum state
ansi_semicolon(int ig1 unused, int ig2 unused)
{
if (nx >= NN)
return DATA;
nx++;
return state;
}
static enum state
ansi_digit(int ig1 unused, int ig2 unused)
{
n[nx] = (n[nx] * 10) + (ansi_ch - '0');
return state;
}
static enum state
ansi_reverse_index(int ig1 unused, int ig2 unused)
{
int rr = h3270.cursor_addr / h3270.cols; /* current row */
int np = (scroll_top - 1) - rr; /* number of rows in the scrolling
region, above this line */
int ns; /* number of rows to scroll */
int nn = 1; /* number of rows to index */
held_wrap = False;
/* If the cursor is above the scrolling region, do a simple margined
cursor up. */
if (np < 0) {
(void) ansi_cursor_up(nn, 0);
return DATA;
}
/* Split the number of lines to scroll into ns */
if (nn > np) {
ns = nn - np;
nn = np;
} else
ns = 0;
/* Move the cursor up without scrolling */
if (nn)
(void) ansi_cursor_up(nn, 0);
/* Insert lines at the top for backward scroll */
if (ns)
(void) ansi_insert_lines(ns, 0);
return DATA;
}
static enum state
ansi_send_attributes(int nn, int ig2 unused)
{
if (!nn)
net_sends("\033[?1;2c");
return DATA;
}
static enum state
dec_return_terminal_id(int ig1 unused, int ig2 unused)
{
return ansi_send_attributes(0, 0);
}
static enum state
ansi_set_mode(int nn, int ig2 unused)
{
switch (nn) {
case 4:
insert_mode = 1;
break;
case 20:
auto_newline_mode = 1;
break;
}
return DATA;
}
static enum state
ansi_reset_mode(int nn, int ig2 unused)
{
switch (nn) {
case 4:
insert_mode = 0;
break;
case 20:
auto_newline_mode = 0;
break;
}
return DATA;
}
static enum state
ansi_status_report(int nn, int ig2 unused)
{
static char cpr[11];
switch (nn) {
case 5:
net_sends("\033[0n");
break;
case 6:
(void) sprintf(cpr, "\033[%d;%dR",
(h3270.cursor_addr/h3270.cols) + 1, (h3270.cursor_addr%h3270.cols) + 1);
net_sends(cpr);
break;
}
return DATA;
}
static enum state
ansi_cs_designate(int ig1 unused, int ig2 unused)
{
cs_to_change = strchr(gnnames, ansi_ch) - gnnames;
return CSDES;
}
static enum state
ansi_cs_designate2(int ig1 unused, int ig2 unused)
{
csd[cs_to_change] = strchr(csnames, ansi_ch) - csnames;
return DATA;
}
static enum state
ansi_select_g0(int ig1 unused, int ig2 unused)
{
cset = CS_G0;
return DATA;
}
static enum state
ansi_select_g1(int ig1 unused, int ig2 unused)
{
cset = CS_G1;
return DATA;
}
static enum state
ansi_select_g2(int ig1 unused, int ig2 unused)
{
cset = CS_G2;
return DATA;
}
static enum state
ansi_select_g3(int ig1 unused, int ig2 unused)
{
cset = CS_G3;
return DATA;
}
static enum state
ansi_one_g2(int ig1 unused, int ig2 unused)
{
once_cset = CS_G2;
return DATA;
}
static enum state
ansi_one_g3(int ig1 unused, int ig2 unused)
{
once_cset = CS_G3;
return DATA;
}
static enum state
ansi_esc3(int ig1 unused, int ig2 unused)
{
return DECP;
}
static enum state
dec_set(int ig1 unused, int ig2 unused)
{
int i;
for (i = 0; i <= nx && i < NN; i++)
switch (n[i]) {
case 1: /* application cursor keys */
appl_cursor = 1;
break;
case 2: /* set G0-G3 */
csd[0] = csd[1] = csd[2] = csd[3] = CSD_US;
break;
case 3: /* 132-column mode */
if (allow_wide_mode) {
wide_mode = 1;
screen_132();
}
break;
case 7: /* wraparound mode */
wraparound_mode = 1;
break;
case 40: /* allow 80/132 switching */
allow_wide_mode = 1;
break;
case 45: /* reverse-wraparound mode */
rev_wraparound_mode = 1;
break;
case 47: /* alt buffer */
ctlr_altbuffer(&h3270,True);
break;
}
return DATA;
}
static enum state
dec_reset(int ig1 unused, int ig2 unused)
{
int i;
for (i = 0; i <= nx && i < NN; i++)
switch (n[i]) {
case 1: /* normal cursor keys */
appl_cursor = 0;
break;
case 3: /* 132-column mode */
if (allow_wide_mode) {
wide_mode = 0;
screen_80();
}
break;
case 7: /* no wraparound mode */
wraparound_mode = 0;
break;
case 40: /* allow 80/132 switching */
allow_wide_mode = 0;
break;
case 45: /* no reverse-wraparound mode */
rev_wraparound_mode = 0;
break;
case 47: /* alt buffer */
ctlr_altbuffer(&h3270,False);
break;
}
return DATA;
}
static enum state
dec_save(int ig1 unused, int ig2 unused)
{
int i;
for (i = 0; i <= nx && i < NN; i++)
switch (n[i]) {
case 1: /* application cursor keys */
saved_appl_cursor = appl_cursor;
break;
case 3: /* 132-column mode */
saved_wide_mode = wide_mode;
break;
case 7: /* wraparound mode */
saved_wraparound_mode = wraparound_mode;
break;
case 40: /* allow 80/132 switching */
saved_allow_wide_mode = allow_wide_mode;
break;
case 45: /* reverse-wraparound mode */
saved_rev_wraparound_mode = rev_wraparound_mode;
break;
case 47: /* alt buffer */
saved_altbuffer = h3270.is_altbuffer;
break;
}
return DATA;
}
static enum state
dec_restore(int ig1 unused, int ig2 unused)
{
int i;
for (i = 0; i <= nx && i < NN; i++)
switch (n[i]) {
case 1: /* application cursor keys */
appl_cursor = saved_appl_cursor;
break;
case 3: /* 132-column mode */
if (allow_wide_mode) {
wide_mode = saved_wide_mode;
if (wide_mode)
screen_132();
else
screen_80();
}
break;
case 7: /* wraparound mode */
wraparound_mode = saved_wraparound_mode;
break;
case 40: /* allow 80/132 switching */
allow_wide_mode = saved_allow_wide_mode;
break;
case 45: /* reverse-wraparound mode */
rev_wraparound_mode = saved_rev_wraparound_mode;
break;
case 47: /* alt buffer */
ctlr_altbuffer(&h3270,saved_altbuffer);
break;
}
return DATA;
}
static enum state
dec_scrolling_region(int top, int bottom)
{
if (top < 1)
top = 1;
if (bottom > h3270.rows)
bottom = h3270.rows;
if (top <= bottom && (top > 1 || bottom < h3270.rows)) {
scroll_top = top;
scroll_bottom = bottom;
cursor_move(0);
} else {
scroll_top = 1;
scroll_bottom = h3270.rows;
}
return DATA;
}
static enum state
xterm_text_mode(int ig1 unused, int ig2 unused)
{
nx = 0;
n[0] = 0;
return TEXT;
}
static enum state
xterm_text_semicolon(int ig1 unused, int ig2 unused)
{
tx = 0;
return TEXT2;
}
static enum state
xterm_text(int ig1 unused, int ig2 unused)
{
if (tx < NT)
text[tx++] = ansi_ch;
return state;
}
static enum state
xterm_text_do(int ig1 unused, int ig2 unused)
{
#if defined(X3270_DISPLAY) || defined(WC3270) /*[*/
text[tx] = '\0';
#endif /*]*/
#if defined(X3270_DISPLAY) /*[*/
switch (n[0]) {
case 0: /* icon name and window title */
XtVaSetValues(toplevel, XtNiconName, text, NULL);
XtVaSetValues(toplevel, XtNtitle, text, NULL);
break;
case 1: /* icon name */
XtVaSetValues(toplevel, XtNiconName, text, NULL);
break;
case 2: /* window_title */
XtVaSetValues(toplevel, XtNtitle, text, NULL);
break;
case 50: /* font */
screen_newfont(text, False, False);
break;
default:
break;
}
#endif /*]*/
#if defined(WC3270) /*[*/
switch (n[0]) {
case 0: /* icon name and window title */
case 2: /* window_title */
screen_title(text);
break;
default:
break;
}
#endif /*]*/
return DATA;
}
static enum state
ansi_htab_set(int ig1 unused, int ig2 unused)
{
register int col = h3270.cursor_addr % h3270.cols;
tabs[col/8] |= 1<<(col%8);
return DATA;
}
static enum state
ansi_htab_clear(int nn, int ig2 unused)
{
register int col, i;
switch (nn) {
case 0:
col = h3270.cursor_addr % h3270.cols;
tabs[col/8] &= ~(1<<(col%8));
break;
case 3:
for (i = 0; i < (h3270.cols+7)/8; i++)
tabs[i] = 0;
break;
}
return DATA;
}
/*
* Scroll the screen or the scrolling region.
*/
static void
ansi_scroll(void)
{
held_wrap = False;
/* Save the top line */
if (scroll_top == 1 && scroll_bottom == h3270.rows) {
if (!h3270.is_altbuffer)
scroll_save(1, False);
ctlr_scroll();
return;
}
/* Scroll all but the last line up */
if (scroll_bottom > scroll_top)
ctlr_bcopy(scroll_top * h3270.cols,
(scroll_top - 1) * h3270.cols,
(scroll_bottom - scroll_top) * h3270.cols,
1);
/* Clear the last line */
ctlr_aclear((scroll_bottom - 1) * h3270.cols, h3270.cols, 1);
}
/* Callback for when we enter ANSI mode. */
static void
ansi_in3270(H3270 *session, int in3270, void *dunno)
{
if (!in3270)
(void) ansi_reset(0, 0);
}
#if defined(X3270_DBCS) /*[*/
static void
trace_pending_mb(void)
{
int i;
for (i = 0; i < mb_pending; i++) {
trace_ds(" %02x", mb_buffer[i] & 0xff);
}
}
#endif /*]*/
/*
* External entry points
*/
void
ansi_init(void)
{
register_schange(ST_3270_MODE, ansi_in3270);
}
void
ansi_process(unsigned int c)
{
afn_t fn;
c &= 0xff;
ansi_ch = c;
scroll_to_bottom();
#if defined(X3270_TRACE) /*[*/
if (toggled(SCREEN_TRACE))
trace_char((char)c);
#endif /*]*/
fn = ansi_fn[st[(int)state][c]];
#if defined(X3270_DBCS) /*[*/
if (mb_pending && fn != &ansi_printing) {
trace_ds("Dropped incomplete multi-byte character");
trace_pending_mb();
trace_ds("\n");
mb_pending = 0;
}
#endif /*]*/
state = (*fn)(n[0], n[1]);
}
void
ansi_send_up(void)
{
if (appl_cursor)
net_sends("\033OA");
else
net_sends("\033[A");
}
void
ansi_send_down(void)
{
if (appl_cursor)
net_sends("\033OB");
else
net_sends("\033[B");
}
void
ansi_send_right(void)
{
if (appl_cursor)
net_sends("\033OC");
else
net_sends("\033[C");
}
void
ansi_send_left(void)
{
if (appl_cursor)
net_sends("\033OD");
else
net_sends("\033[D");
}
void
ansi_send_home(void)
{
net_sends("\033[H");
}
void
ansi_send_clear(void)
{
net_sends("\033[2K");
}
void
ansi_send_pf(int nn)
{
static char fn_buf[6];
static int code[] = {
/*
* F1 through F12 are VT220 codes. (Note the discontinuity --
* \E[16~ is missing)
*/
11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24,
/*
* F13 through F20 are defined for xterm.
*/
25, 26, 28, 29, 31, 32, 33, 34,
/*
* F21 through F24 are x3270 extensions.
*/
35, 36, 37, 38
};
if (nn < 1 || nn > sizeof(code)/sizeof(code[0]))
return;
(void) sprintf(fn_buf, "\033[%d~", code[nn-1]);
net_sends(fn_buf);
}
void
ansi_send_pa(int nn)
{
static char fn_buf[4];
static char code[4] = { 'P', 'Q', 'R', 'S' };
if (nn < 1 || nn > 4)
return;
(void) sprintf(fn_buf, "\033O%c", code[nn-1]);
net_sends(fn_buf);
}
void toggle_lineWrap(H3270 *session, struct toggle *t unused, LIB3270_TOGGLE_TYPE type unused)
{
if (toggled(LINE_WRAP))
wraparound_mode = 1;
else
wraparound_mode = 0;
}
#if defined(X3270_DBCS) /*[*/
/* Accumulate and process pending DBCS characters. */
static int
dbcs_process(int ch, unsigned char ebc[])
{
UChar Ubuf[2];
UErrorCode err = U_ZERO_ERROR;
/* See if we have too many. */
if (mb_pending >= MB_MAX) {
trace_ds("Multi-byte character ");
trace_pending_mb();
trace_ds(" too long, dropping\n");
mb_pending = 0;
return 0;
}
/* Store it and see if we're done. */
mb_buffer[mb_pending++] = ch & 0xff;
/* An interesting idea. */
if (mb_pending == 1)
return 0;
if (mb_to_unicode(mb_buffer, mb_pending, Ubuf, 2, &err) > 0) {
/* It translated! */
if (dbcs_map8(Ubuf[0], ebc)) {
mb_pending = 0;
return 1;
} else if (dbcs_map16(Ubuf[0], ebc)) {
mb_pending = 0;
return 2;
} else {
trace_ds("Can't map multi-byte character");
trace_pending_mb();
trace_ds(" -> U+%04x to SBCS or DBCS, dropping\n",
Ubuf[0] & 0xffff);
mb_pending = 0;
return 0;
}
}
/* It failed. See why. */
switch (err) {
case U_TRUNCATED_CHAR_FOUND:
/* 'Cause we're not finished. */
return 0;
case U_INVALID_CHAR_FOUND:
case U_ILLEGAL_CHAR_FOUND:
trace_ds("Invalid multi-byte character");
trace_pending_mb();
trace_ds(", dropping\n");
break;
default:
trace_ds("Unexpected ICU error %d translating multi-type "
"character", (int)err);
trace_pending_mb();
trace_ds(", dropping\n");
break;
}
mb_pending = 0;
return 0;
}
#endif /*]*/
#endif /*]*/