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
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
|
/*
* Copyright (C) 2012-2025 Robin Haberkorn
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <unistd.h>
#include <errno.h>
#ifdef HAVE_WINDOWS_H
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
/*
* Some macros in wincon.h interfere with our code.
*/
#undef MOUSE_MOVED
#endif
#ifdef EMSCRIPTEN
#include <emscripten.h>
#endif
#include <glib.h>
#include <glib/gprintf.h>
#include <glib/gstdio.h>
#include <curses.h>
#ifdef HAVE_TIGETSTR
#include <term.h>
/*
* Some macros in term.h interfere with our code.
*/
#undef lines
#undef buttons
#endif
#include <Scintilla.h>
#include <ScintillaCurses.h>
#include "sciteco.h"
#include "string-utils.h"
#include "cmdline.h"
#include "qreg.h"
#include "ring.h"
#include "error.h"
#include "view.h"
#include "memory.h"
#include "interface.h"
#include "curses-utils.h"
#include "curses-info-popup.h"
#include "curses-icons.h"
#if defined(__PDCURSES__) && defined(G_OS_WIN32) && \
!defined(PDCURSES_GUI)
#define PDCURSES_WINCON
#endif
/**
* Whether we're on EMCurses.
* Could be replaced with a configure-time check for
* PDC_emscripten_set_handler().
*/
#if defined(__PDCURSES__) && defined(EMSCRIPTEN)
#define EMCURSES
#endif
#ifdef NCURSES_VERSION
#ifdef G_OS_UNIX
/** Whether we're on ncurses/UNIX. */
#define NCURSES_UNIX
#elif defined(G_OS_WIN32)
/** Whether we're on ncurses/win32 console */
#define NCURSES_WIN32
#endif
#endif
#if defined(NCURSES_UNIX) || defined(NETBSD_CURSES)
/**
* Whether Curses works on a real or pseudo TTY
* (i.e. classic use with terminal emulators on Unix)
*/
#define CURSES_TTY
#endif
#ifdef G_OS_WIN32
/**
* This handler is the Windows-analogue of a signal
* handler. MinGW provides signal(), but it's not
* reliable.
* This may also be used to handle CTRL_CLOSE_EVENTs.
*
* NOTE: Unlike signal handlers, this is executed in a
* separate thread.
*/
static BOOL WINAPI
teco_console_ctrl_handler(DWORD type)
{
switch (type) {
case CTRL_C_EVENT:
teco_interrupted = TRUE;
return TRUE;
}
return FALSE;
}
#endif
static gint teco_xterm_version(void) G_GNUC_UNUSED;
#define UNNAMED_FILE "(Unnamed)"
/**
* Get bright variant of one of the 8 standard
* curses colors.
* On 8 color terminals, this returns the non-bright
* color - but you __may__ get a bright version using
* the A_BOLD attribute.
* NOTE: This references `COLORS` and is thus not a
* constant expression.
*/
#define COLOR_LIGHT(C) \
(COLORS < 16 ? (C) : (C) + 8)
/*
* The 8 bright colors (if terminal supports at
* least 16 colors), else they are identical to
* the non-bright colors (default curses colors).
*/
#define COLOR_LBLACK COLOR_LIGHT(COLOR_BLACK)
#define COLOR_LRED COLOR_LIGHT(COLOR_RED)
#define COLOR_LGREEN COLOR_LIGHT(COLOR_GREEN)
#define COLOR_LYELLOW COLOR_LIGHT(COLOR_YELLOW)
#define COLOR_LBLUE COLOR_LIGHT(COLOR_BLUE)
#define COLOR_LMAGENTA COLOR_LIGHT(COLOR_MAGENTA)
#define COLOR_LCYAN COLOR_LIGHT(COLOR_CYAN)
#define COLOR_LWHITE COLOR_LIGHT(COLOR_WHITE)
/**
* Returns the curses `COLOR_PAIR` for the given curses foreground and background `COLOR`s.
* This is used simply to enumerate every possible color combination.
* Note: only 256 combinations are possible due to curses portability.
* Note: This references the global curses variable `COLORS` and is not a constant expression.
* @param f The curses foreground `COLOR`.
* @param b The curses background `COLOR`.
* @return int number for defining a curses `COLOR_PAIR`.
*/
#define SCI_COLOR_PAIR(f, b) ((b) * ((COLORS < 16) ? 8 : 16) + (f) + 1)
/**
* Curses attribute for the color combination
* `f` (foreground) and `b` (background)
* according to the color pairs initialized by
* Scinterm.
* NOTE: This depends on the global variable
* `COLORS` and is thus not a constant expression.
*/
#define SCI_COLOR_ATTR(f, b) \
((attr_t)COLOR_PAIR(SCI_COLOR_PAIR(f, b)))
/**
* Translate a Scintilla-compatible RGB color value
* (0xBBGGRR) to a Curses color triple (0 to 1000
* for each component).
*/
static inline void
teco_rgb2curses_triple(guint32 rgb, gshort *r, gshort *g, gshort *b)
{
/* NOTE: We could also use 200/51 */
*r = ((rgb & 0x0000FF) >> 0)*1000/0xFF;
*g = ((rgb & 0x00FF00) >> 8)*1000/0xFF;
*b = ((rgb & 0xFF0000) >> 16)*1000/0xFF;
}
/**
* Convert a Scintilla-compatible RGB color value
* (0xBBGGRR) to a Curses color code (e.g. COLOR_BLACK).
* This does not work with arbitrary RGB values but
* only the 16 RGB color values defined by Scinterm
* corresponding to the 16 terminal colors.
* It is equivalent to Scinterm's internal `term_color`
* function.
*/
static gshort
teco_rgb2curses(guint32 rgb)
{
switch (rgb) {
case 0x000000: return COLOR_BLACK;
case 0x000080: return COLOR_RED;
case 0x008000: return COLOR_GREEN;
case 0x008080: return COLOR_YELLOW;
case 0x800000: return COLOR_BLUE;
case 0x800080: return COLOR_MAGENTA;
case 0x808000: return COLOR_CYAN;
case 0xC0C0C0: return COLOR_WHITE;
case 0x404040: return COLOR_LBLACK;
case 0x0000FF: return COLOR_LRED;
case 0x00FF00: return COLOR_LGREEN;
case 0x00FFFF: return COLOR_LYELLOW;
case 0xFF0000: return COLOR_LBLUE;
case 0xFF00FF: return COLOR_LMAGENTA;
case 0xFFFF00: return COLOR_LCYAN;
case 0xFFFFFF: return COLOR_LWHITE;
}
return COLOR_WHITE;
}
static gint
teco_xterm_version(void)
{
static gint xterm_patch = -2;
/*
* The XTerm patch level (version) is cached.
*/
if (G_LIKELY(xterm_patch != -2))
return xterm_patch;
xterm_patch = -1;
const gchar *term = g_getenv("TERM");
if (!term || !g_str_has_prefix(term, "xterm"))
/* no XTerm */
return -1;
/*
* Terminal might claim to be XTerm-compatible,
* but this only refers to the terminfo database.
* XTERM_VERSION however should be sufficient to tell
* whether we are running under a real XTerm.
*/
const gchar *xterm_version = g_getenv("XTERM_VERSION");
if (!xterm_version)
/* no XTerm */
return -1;
xterm_patch = 0;
xterm_version = strrchr(xterm_version, '(');
if (!xterm_version)
/* Invalid XTERM_VERSION, assume some XTerm */
return 0;
xterm_patch = atoi(xterm_version+1);
return xterm_patch;
}
/*
* NOTE: The teco_view_t pointer is reused to directly
* point to the Scintilla object.
* This saves one heap object per view.
*/
static void
teco_view_scintilla_notify(void *sci, int iMessage, SCNotification *notify, void *user_data)
{
teco_view_process_notify((teco_view_t *)sci, notify);
}
teco_view_t *
teco_view_new(void)
{
return (teco_view_t *)scintilla_new(teco_view_scintilla_notify, NULL);
}
static inline void
teco_view_noutrefresh(teco_view_t *ctx)
{
scintilla_noutrefresh(ctx);
}
static inline WINDOW *
teco_view_get_window(teco_view_t *ctx)
{
return scintilla_get_window(ctx);
}
sptr_t
teco_view_ssm(teco_view_t *ctx, unsigned int iMessage, uptr_t wParam, sptr_t lParam)
{
return scintilla_send_message(ctx, iMessage, wParam, lParam);
}
void
teco_view_free(teco_view_t *ctx)
{
scintilla_delete(ctx);
}
static struct {
/**
* Mapping of the first 16 curses color codes (that may or may not
* correspond with the standard terminal color codes) to
* Scintilla-compatible RGB values (red is LSB) to initialize after
* Curses startup.
* Negative values mean no color redefinition (keep the original
* palette entry).
*/
gint32 color_table[16];
/**
* Mapping of the first 16 curses color codes to their
* original values for restoring them on shutdown.
* Unfortunately, this may not be supported on all
* curses ports, so this array may be unused.
*/
struct {
gshort r, g, b;
} orig_color_table[16];
int stdout_orig, stderr_orig;
SCREEN *screen;
FILE *screen_tty;
WINDOW *info_window;
enum {
TECO_INFO_TYPE_BUFFER = 0,
TECO_INFO_TYPE_QREG
} info_type;
teco_string_t info_current;
gboolean info_dirty;
WINDOW *msg_window;
WINDOW *cmdline_window, *cmdline_pad;
guint cmdline_len, cmdline_rubout_len;
/**
* Pad used exclusively for wgetch() as it will not
* result in unwanted wrefresh().
*/
WINDOW *input_pad;
GQueue *input_queue;
teco_curses_info_popup_t popup;
gsize popup_prefix_len;
/**
* GError "thrown" by teco_interface_event_loop_iter().
* Having this in a variable avoids problems with EMScripten.
*/
GError *event_loop_error;
} teco_interface;
static void teco_interface_init_color_safe(guint color, guint32 rgb);
static void teco_interface_restore_colors(void);
static void teco_interface_init_screen(void);
static gboolean teco_interface_init_interactive(GError **error);
static void teco_interface_restore_batch(void);
static void teco_interface_init_clipboard(void);
static void teco_interface_resize_all_windows(void);
static void teco_interface_set_window_title(const gchar *title);
static void teco_interface_draw_info(void);
static void teco_interface_draw_cmdline(void);
void
teco_interface_init(void)
{
for (guint i = 0; i < G_N_ELEMENTS(teco_interface.color_table); i++)
teco_interface.color_table[i] = -1;
for (guint i = 0; i < G_N_ELEMENTS(teco_interface.orig_color_table); i++)
teco_interface.orig_color_table[i].r = -1;
teco_interface.stdout_orig = teco_interface.stderr_orig = -1;
teco_curses_info_popup_init(&teco_interface.popup);
/*
* Make sure we have a string for the info line
* even if teco_interface_info_update() is never called.
*/
teco_string_init(&teco_interface.info_current, PACKAGE_NAME, strlen(PACKAGE_NAME));
/*
* On all platforms except Curses/XTerm, it's
* safe to initialize the clipboards now.
*/
#ifndef CURSES_TTY
teco_interface_init_clipboard();
#endif
/*
* The default SIGINT signal handler seems to partially work
* as the console control handler.
* However, a second CTRL+C event (or raise(SIGINT)) would
* terminate the process.
*/
#ifdef G_OS_WIN32
SetConsoleCtrlHandler(teco_console_ctrl_handler, TRUE);
#endif
}
GOptionGroup *
teco_interface_get_options(void)
{
return NULL;
}
static void
teco_interface_init_color_safe(guint color, guint32 rgb)
{
#if defined(__PDCURSES__) && !defined(PDCURSES_GUI)
if (teco_interface.orig_color_table[color].r < 0) {
color_content((short)color,
&teco_interface.orig_color_table[color].r,
&teco_interface.orig_color_table[color].g,
&teco_interface.orig_color_table[color].b);
}
#endif
gshort r, g, b;
teco_rgb2curses_triple(rgb, &r, &g, &b);
init_color((short)color, r, g, b);
}
#if defined(__PDCURSES__) && !defined(PDCURSES_GUI)
/*
* On PDCurses/WinCon, color_content() will actually return
* the real console color palette - or at least the default
* palette when the console started.
*/
static void
teco_interface_restore_colors(void)
{
if (!can_change_color())
return;
for (guint i = 0; i < G_N_ELEMENTS(teco_interface.orig_color_table); i++) {
if (teco_interface.orig_color_table[i].r < 0)
continue;
init_color((short)i,
teco_interface.orig_color_table[i].r,
teco_interface.orig_color_table[i].g,
teco_interface.orig_color_table[i].b);
}
}
#elif defined(CURSES_TTY)
/*
* FIXME: On UNIX/ncurses teco_interface_init_color_safe() __may__
* change the terminal's palette permanently and there does not
* appear to be any portable way of restoring the original one.
* Curses has color_content(), but there is actually no terminal
* that allows querying the current palette and so color_content()
* will return bogus "default" values and only for the first 8 colors.
* It would do more damage to restore the palette returned by
* color_content() than it helps.
* xterm has the escape sequence "\e]104\a" which restores
* the palette from Xdefaults but not all terminal emulators
* claiming to be "xterm" via $TERM support this escape sequence.
* lxterminal for instance will print gibberish instead.
* So we try to look whether $XTERM_VERSION is set.
* There are hardly any other terminal emulators that support palette
* resets.
* The only emulator I'm aware of which can be identified reliably
* by $TERM supporting a palette reset is the Linux console
* (see console_codes(4)). The escape sequence "\e]R" is already
* part of its terminfo description (orig_colors capability)
* which is apparently sent by endwin(), so the palette is
* already properly restored on endwin().
* Welcome in Curses hell.
*/
static void
teco_interface_restore_colors(void)
{
if (teco_xterm_version() < 0)
return;
/*
* Looks like a real XTerm
*/
fputs("\e]104\a", teco_interface.screen_tty);
fflush(teco_interface.screen_tty);
}
#else /* (!__PDCURSES__ || PDCURSES_GUI) && !CURSES_TTY */
static void
teco_interface_restore_colors(void)
{
/*
* No way to restore the palette, or it's
* unnecessary (e.g. XCurses)
*/
}
#endif
void
teco_interface_init_color(guint color, guint32 rgb)
{
if (color >= G_N_ELEMENTS(teco_interface.color_table))
return;
#if defined(__PDCURSES__) && !defined(PDC_RGB)
/*
* PDCurses will usually number color codes differently
* (least significant bit is the blue component) while
* SciTECO macros will assume a standard terminal color
* code numbering with red as the LSB.
* Therefore we have to swap the bit order of the least
* significant 3 bits here.
*/
color = (color & ~0x5) |
((color & 0x1) << 2) | ((color & 0x4) >> 2);
#endif
if (teco_interface.cmdline_window) {
/* interactive mode */
if (!can_change_color())
return;
teco_interface_init_color_safe(color, rgb);
} else {
/*
* batch mode: store colors,
* they can only be initialized after start_color()
* which is called by Scinterm when interactive
* mode is initialized
*/
teco_interface.color_table[color] = (gint32)rgb;
}
}
#ifdef CURSES_TTY
static void
teco_interface_init_screen(void)
{
teco_interface.screen_tty = g_fopen("/dev/tty", "r+");
/* should never fail */
g_assert(teco_interface.screen_tty != NULL);
teco_interface.screen = newterm(NULL, teco_interface.screen_tty, teco_interface.screen_tty);
if (G_UNLIKELY(!teco_interface.screen)) {
g_fprintf(stderr, "Error initializing interactive mode. "
"$TERM may be incorrect.\n");
exit(EXIT_FAILURE);
}
/*
* If stdout or stderr would go to the terminal,
* redirect it. Otherwise, they are already redirected
* (e.g. to a file) and writing to them does not
* interrupt terminal interaction.
*/
if (isatty(1)) {
teco_interface.stdout_orig = dup(1);
g_assert(teco_interface.stdout_orig >= 0);
G_GNUC_UNUSED FILE *stdout_new = g_freopen("/dev/null", "a+", stdout);
g_assert(stdout_new != NULL);
}
if (isatty(2)) {
teco_interface.stderr_orig = dup(2);
g_assert(teco_interface.stderr_orig >= 0);
G_GNUC_UNUSED FILE *stderr_new = g_freopen("/dev/null", "a+", stderr);
g_assert(stderr_new != NULL);
}
}
#elif defined(XCURSES)
static void
teco_interface_init_screen(void)
{
const char *argv[] = {PACKAGE_NAME, NULL};
/*
* This sets the program name to "SciTECO"
* which may then also be used as the X11 class name
* for overwriting X11 resources in .Xdefaults
*
* FIXME: We could support passing in resource
* overrides via the SciTECO command line.
* But unfortunately, Xinitscr() is called too
* late to modify argc/argv for command-line parsing
* (and GOption needs to know about the additional
* possible arguments since they are not passed through
* transparently).
* Therefore this could only be supported by
* adding a special option like --resource KEY=VAL.
*/
Xinitscr(1, (char **)argv);
}
#else /* !CURSES_TTY && !XCURSES */
static void
teco_interface_init_screen(void)
{
initscr();
}
#endif
static gboolean
teco_interface_init_interactive(GError **error)
{
/*
* Curses accesses many environment variables
* internally. In order to be able to modify them in
* the SciTECO profile, we must update the process
* environment before initscr()/newterm().
* This is safe to do here since there are no threads.
*/
if (!teco_qreg_table_set_environ(&teco_qreg_table_globals, error))
return FALSE;
/*
* $TERM must be unset or "#win32con" for the win32
* driver to load.
* So we always ignore any $TERM changes by the user.
*/
#ifdef NCURSES_WIN32
g_setenv("TERM", "#win32con", TRUE);
#endif
#ifdef __PDCURSESMOD__
/*
* Necessary to enable window resizing in WinGUI port
*/
PDC_set_resize_limits(25, 0xFFFF, 80, 0xFFFF);
/*
* Disable all magic function keys.
*/
for (int i = 0; i < PDC_MAX_FUNCTION_KEYS; i++)
PDC_set_function_key(i, 0);
/*
* Register the special shutdown function with the
* CLOSE key, so closing the window behaves similar as on
* GTK+.
*/
PDC_set_function_key(FUNCTION_KEY_SHUT_DOWN, KEY_CLOSE);
#endif
teco_interface_init_screen();
/*
* On UNIX terminals, the escape key is usually
* delivered as the escape character even though function
* keys are delivered as escape sequences as well.
* That's why there has to be a timeout for detecting
* escape presses if function key handling is enabled.
* This timeout can be controlled using $ESCDELAY on
* ncurses but its default is much too long.
* We set it to 25ms as Vim does. In the very rare cases
* this won't suffice, $ESCDELAY can still be set explicitly.
*
* NOTE: The only terminal emulator I'm aware of that lets
* us send an escape sequence for the escape key is Mintty
* (see "\e[?7727h").
*
* NOTE: The delay is overwritten by initscr() on netbsd-curses.
*/
#ifdef CURSES_TTY
if (!g_getenv("ESCDELAY"))
set_escdelay(25);
#endif
/*
* Disables click-detection.
* If we'd want to discern PRESSED and CLICKED events,
* we'd have to emulate the same feature on GTK.
*/
#if NCURSES_MOUSE_VERSION >= 2
mouseinterval(0);
#endif
/*
* We always have a CTRL handler on Windows, but doing it
* here again, ensures that we have a higher precedence
* than the one installed by PDCurses.
*/
#ifdef G_OS_WIN32
SetConsoleCtrlHandler(teco_console_ctrl_handler, TRUE);
#endif
cbreak();
noecho();
/* Scintilla draws its own cursor */
curs_set(0);
/*
* This has also been observed to reduce flickering
* in teco_interface_refresh().
*/
leaveok(stdscr, TRUE);
teco_interface.info_window = newwin(1, 0, 0, 0);
teco_interface.msg_window = newwin(1, 0, LINES - 2, 0);
teco_interface.cmdline_window = newwin(0, 0, LINES - 1, 0);
teco_interface.input_pad = newpad(1, 1);
/*
* Controlling function key processing is important
* on Unix Curses, as ESCAPE is handled as the beginning
* of a escape sequence when terminal emulators are
* involved.
* Still, it's now enabled always since the ESCDELAY
* workaround works nicely.
* On some Curses variants (XCurses) keypad
* must always be TRUE so we receive KEY_RESIZE.
*/
keypad(teco_interface.input_pad, TRUE);
nodelay(teco_interface.input_pad, TRUE);
teco_interface.input_queue = g_queue_new();
/*
* Will also initialize Scinterm, Curses color pairs
* and resizes the current view.
*/
if (teco_interface_current_view)
teco_interface_show_view(teco_interface_current_view);
/*
* Only now it's safe to redefine the 16 default colors.
*/
if (can_change_color()) {
for (guint i = 0; i < G_N_ELEMENTS(teco_interface.color_table); i++) {
/*
* init_color() may still fail if COLORS < 16
*/
if (teco_interface.color_table[i] >= 0)
teco_interface_init_color_safe(i, (guint32)teco_interface.color_table[i]);
}
}
/*
* Only now (in interactive mode), it's safe to initialize
* the clipboard Q-Registers on ncurses with a compatible terminal
* emulator since clipboard operations will no longer interfer
* with stdout.
*/
#ifdef CURSES_TTY
teco_interface_init_clipboard();
#endif
return TRUE;
}
static void
teco_interface_restore_batch(void)
{
/*
* Set window title to a reasonable default,
* in case it is not reset immediately by the
* shell.
* FIXME: See teco_interface_set_window_title()
* why this is necessary.
*/
#if defined(CURSES_TTY) && defined(HAVE_TIGETSTR)
teco_interface_set_window_title(g_getenv("TERM") ? : "");
#endif
/*
* Restore ordinary terminal behaviour
* (i.e. return to batch mode)
*/
endwin();
teco_interface_restore_colors();
/*
* Restore stdout and stderr, so output goes to
* the terminal again in case we "muted" them.
*/
#ifdef CURSES_TTY
if (teco_interface.stdout_orig >= 0) {
G_GNUC_UNUSED int fd = dup2(teco_interface.stdout_orig, 1);
g_assert(fd == 1);
}
if (teco_interface.stderr_orig >= 0) {
G_GNUC_UNUSED int fd = dup2(teco_interface.stderr_orig, 2);
g_assert(fd == 2);
}
#endif
/*
* cmdline_window determines whether we're in batch mode.
*/
if (teco_interface.cmdline_window) {
delwin(teco_interface.cmdline_window);
teco_interface.cmdline_window = NULL;
}
}
static void
teco_interface_resize_all_windows(void)
{
int lines, cols; /* screen dimensions */
getmaxyx(stdscr, lines, cols);
wresize(teco_interface.info_window, 1, cols);
wresize(teco_view_get_window(teco_interface_current_view),
lines - 3, cols);
wresize(teco_interface.msg_window, 1, cols);
mvwin(teco_interface.msg_window, lines - 2, 0);
wresize(teco_interface.cmdline_window, 1, cols);
mvwin(teco_interface.cmdline_window, lines - 1, 0);
teco_interface_draw_info();
teco_interface_msg_clear(); /* FIXME: use saved message */
teco_interface_popup_clear();
teco_interface_draw_cmdline();
}
void
teco_interface_vmsg(teco_msg_t type, const gchar *fmt, va_list ap)
{
if (!teco_interface.cmdline_window) { /* batch mode */
teco_interface_stdio_vmsg(type, fmt, ap);
return;
}
/*
* On most platforms we can write to stdout/stderr
* even in interactive mode.
*/
#if defined(PDCURSES_GUI) || defined(CURSES_TTY) || defined(NCURSES_WIN32)
va_list aq;
va_copy(aq, ap);
teco_interface_stdio_vmsg(type, fmt, aq);
va_end(aq);
#endif
short fg, bg;
fg = teco_rgb2curses(teco_interface_ssm(SCI_STYLEGETBACK, STYLE_DEFAULT, 0));
switch (type) {
default:
case TECO_MSG_USER:
bg = teco_rgb2curses(teco_interface_ssm(SCI_STYLEGETFORE, STYLE_DEFAULT, 0));
break;
case TECO_MSG_INFO:
bg = COLOR_GREEN;
break;
case TECO_MSG_WARNING:
bg = COLOR_YELLOW;
break;
case TECO_MSG_ERROR:
bg = COLOR_RED;
beep();
break;
}
wmove(teco_interface.msg_window, 0, 0);
wbkgdset(teco_interface.msg_window, ' ' | SCI_COLOR_ATTR(fg, bg));
vw_printw(teco_interface.msg_window, fmt, ap);
wclrtoeol(teco_interface.msg_window);
}
void
teco_interface_msg_clear(void)
{
if (!teco_interface.cmdline_window) /* batch mode */
return;
short fg = teco_rgb2curses(teco_interface_ssm(SCI_STYLEGETBACK, STYLE_DEFAULT, 0));
short bg = teco_rgb2curses(teco_interface_ssm(SCI_STYLEGETFORE, STYLE_DEFAULT, 0));
wbkgdset(teco_interface.msg_window, ' ' | SCI_COLOR_ATTR(fg, bg));
werase(teco_interface.msg_window);
}
void
teco_interface_show_view(teco_view_t *view)
{
teco_interface_current_view = view;
if (!teco_interface.cmdline_window) /* batch mode */
return;
WINDOW *current_view_win = teco_view_get_window(teco_interface_current_view);
/*
* screen size might have changed since
* this view's WINDOW was last active
*/
int lines, cols; /* screen dimensions */
getmaxyx(stdscr, lines, cols);
wresize(current_view_win, lines - 3, cols);
/* Set up window position: never changes */
mvwin(current_view_win, 1, 0);
}
#if PDCURSES
static void
teco_interface_set_window_title(const gchar *title)
{
static gchar *last_title = NULL;
/*
* PDC_set_title() can result in flickering
* even when executed only once per pressed key,
* so we check whether it is really necessary to change
* the title.
* This is an issue at least with PDCurses/win32.
*/
if (!g_strcmp0(title, last_title))
return;
PDC_set_title(title);
g_free(last_title);
last_title = g_strdup(title);
}
#elif defined(CURSES_TTY) && defined(HAVE_TIGETSTR)
static void
teco_interface_set_window_title(const gchar *title)
{
if (!has_status_line || !to_status_line || !from_status_line)
return;
/*
* Modern terminal emulators map the window title to
* the historic status line.
* This feature is not standardized in ncurses,
* so we query the terminfo database.
* This feature may make problems with terminal emulators
* that do support a status line but do not map them
* to the window title. Some emulators (like xterm)
* support setting the window title via custom escape
* sequences and via the status line but their
* terminfo entry does not say so. (xterm can also
* save and restore window titles but there is not
* even a terminfo capability defined for this.)
* Taken the different emulator incompatibilites
* it may be best to make this configurable.
* Once we support configurable status lines,
* there could be a special status line that's sent
* to the terminal that may be set up in the profile
* depending on $TERM.
*
* NOTE: The terminfo manpage advises us to use putp()
* but on ncurses/UNIX (where terminfo is available),
* we do not let curses write to stdout.
* NOTE: This leaves the title set after we quit.
*/
fputs(to_status_line, teco_interface.screen_tty);
fputs(title, teco_interface.screen_tty);
fputs(from_status_line, teco_interface.screen_tty);
fflush(teco_interface.screen_tty);
}
#else /* !PDCURSES && (!CURSES_TTY || !HAVE_TIGETSTR) */
static void
teco_interface_set_window_title(const gchar *title)
{
/* no way to set window title */
}
#endif
static void
teco_interface_draw_info(void)
{
if (!teco_interface.info_window) /* batch mode */
return;
/*
* The info line is printed in reverse colors of
* the current buffer's STYLE_DEFAULT.
* The same style is used for MSG_USER messages.
*/
short fg = teco_rgb2curses(teco_interface_ssm(SCI_STYLEGETBACK, STYLE_DEFAULT, 0));
short bg = teco_rgb2curses(teco_interface_ssm(SCI_STYLEGETFORE, STYLE_DEFAULT, 0));
wmove(teco_interface.info_window, 0, 0);
wbkgdset(teco_interface.info_window, ' ' | SCI_COLOR_ATTR(fg, bg));
const gchar *info_type_str;
waddstr(teco_interface.info_window, PACKAGE_NAME " ");
switch (teco_interface.info_type) {
case TECO_INFO_TYPE_QREG:
info_type_str = PACKAGE_NAME " - <QRegister> ";
teco_curses_add_wc(teco_interface.info_window,
teco_ed & TECO_ED_ICONS ? TECO_CURSES_ICONS_QREG : '-');
waddstr(teco_interface.info_window, " <QRegister> ");
/* same formatting as in command lines */
teco_curses_format_str(teco_interface.info_window,
teco_interface.info_current.data,
teco_interface.info_current.len, -1);
break;
case TECO_INFO_TYPE_BUFFER:
info_type_str = PACKAGE_NAME " - <Buffer> ";
g_assert(!teco_string_contains(&teco_interface.info_current, '\0'));
teco_curses_add_wc(teco_interface.info_window,
teco_ed & TECO_ED_ICONS ? teco_curses_icons_lookup_file(teco_interface.info_current.data) : '-');
waddstr(teco_interface.info_window, " <Buffer> ");
teco_curses_format_filename(teco_interface.info_window,
teco_interface.info_current.data,
getmaxx(teco_interface.info_window) -
getcurx(teco_interface.info_window) - 1);
waddch(teco_interface.info_window, teco_interface.info_dirty ? '*' : ' ');
break;
default:
g_assert_not_reached();
}
wclrtoeol(teco_interface.info_window);
/*
* Make sure the title will consist only of printable characters.
*/
g_autofree gchar *info_current_printable;
info_current_printable = teco_string_echo(teco_interface.info_current.data,
teco_interface.info_current.len);
g_autofree gchar *title = g_strconcat(info_type_str, info_current_printable,
teco_interface.info_dirty ? "*" : "", NULL);
teco_interface_set_window_title(title);
}
void
teco_interface_info_update_qreg(const teco_qreg_t *reg)
{
teco_string_clear(&teco_interface.info_current);
teco_string_init(&teco_interface.info_current,
reg->head.name.data, reg->head.name.len);
teco_interface.info_dirty = FALSE;
teco_interface.info_type = TECO_INFO_TYPE_QREG;
/* NOTE: drawn in teco_interface_event_loop_iter() */
}
void
teco_interface_info_update_buffer(const teco_buffer_t *buffer)
{
const gchar *filename = buffer->filename ? : UNNAMED_FILE;
teco_string_clear(&teco_interface.info_current);
teco_string_init(&teco_interface.info_current, filename, strlen(filename));
teco_interface.info_dirty = buffer->dirty;
teco_interface.info_type = TECO_INFO_TYPE_BUFFER;
/* NOTE: drawn in teco_interface_event_loop_iter() */
}
void
teco_interface_cmdline_update(const teco_cmdline_t *cmdline)
{
/*
* Especially important on PDCurses, which can crash
* in newpad() when run with --fake-cmdline.
*/
if (!teco_interface.cmdline_window) /* batch mode */
return;
/*
* Replace entire pre-formatted command-line.
* We don't know if it is similar to the last one,
* so resizing makes no sense.
* We approximate the size of the new formatted command-line,
* wasting a few bytes for control characters and
* multi-byte Unicode sequences.
*/
if (teco_interface.cmdline_pad)
delwin(teco_interface.cmdline_pad);
int max_cols = 1;
for (guint i = 0; i < cmdline->str.len; i++)
max_cols += TECO_IS_CTL(cmdline->str.data[i]) ? 3 : 1;
teco_interface.cmdline_pad = newpad(1, max_cols);
short fg = teco_rgb2curses(teco_interface_ssm(SCI_STYLEGETFORE, STYLE_DEFAULT, 0));
short bg = teco_rgb2curses(teco_interface_ssm(SCI_STYLEGETBACK, STYLE_DEFAULT, 0));
wcolor_set(teco_interface.cmdline_pad, SCI_COLOR_PAIR(fg, bg), NULL);
/* format effective command line */
teco_interface.cmdline_len =
teco_curses_format_str(teco_interface.cmdline_pad,
cmdline->str.data, cmdline->effective_len, -1);
/*
* A_BOLD should result in either a bold font or a brighter
* color both on 8 and 16 color terminals.
* This is not quite color-scheme-agnostic, but works
* with both the `terminal` and `solarized` themes.
* This problem will be gone once we use a Scintilla view
* as command line, since we can then define a style
* for rubbed out parts of the command line which will
* be user-configurable.
*/
wattron(teco_interface.cmdline_pad, A_UNDERLINE | A_BOLD);
/*
* Format rubbed-out command line.
* NOTE: This formatting will never be truncated since we're
* writing into the pad which is large enough.
*/
teco_interface.cmdline_rubout_len =
teco_curses_format_str(teco_interface.cmdline_pad, cmdline->str.data + cmdline->effective_len,
cmdline->str.len - cmdline->effective_len, -1);
/*
* Highlight cursor after effective command line
* FIXME: This should use SCI_GETCARETFORE().
*/
if (teco_interface.cmdline_rubout_len) {
attr_t attr = 0;
short pair = 0;
wmove(teco_interface.cmdline_pad, 0, teco_interface.cmdline_len);
wattr_get(teco_interface.cmdline_pad, &attr, &pair, NULL);
wchgat(teco_interface.cmdline_pad, 1,
(attr & A_UNDERLINE) | A_REVERSE, pair, NULL);
} else {
teco_interface.cmdline_len++;
wattroff(teco_interface.cmdline_pad, A_UNDERLINE | A_BOLD);
waddch(teco_interface.cmdline_pad, ' ' | A_REVERSE);
}
teco_interface_draw_cmdline();
}
static void
teco_interface_draw_cmdline(void)
{
/* total width available for command line */
guint total_width = getmaxx(teco_interface.cmdline_window) - 1;
/* beginning of command line to show */
guint disp_offset = teco_interface.cmdline_len -
MIN(teco_interface.cmdline_len,
total_width/2 + teco_interface.cmdline_len % MAX(total_width/2, 1));
/*
* length of command line to show
*
* NOTE: we do not use getmaxx(cmdline_pad) here since it may be
* larger than the text the pad contains.
*/
guint disp_len = MIN(total_width, teco_interface.cmdline_len +
teco_interface.cmdline_rubout_len - disp_offset);
short fg = teco_rgb2curses(teco_interface_ssm(SCI_STYLEGETFORE, STYLE_DEFAULT, 0));
short bg = teco_rgb2curses(teco_interface_ssm(SCI_STYLEGETBACK, STYLE_DEFAULT, 0));
wbkgdset(teco_interface.cmdline_window, ' ' | SCI_COLOR_ATTR(fg, bg));
werase(teco_interface.cmdline_window);
mvwaddch(teco_interface.cmdline_window, 0, 0, '*' | A_BOLD);
copywin(teco_interface.cmdline_pad, teco_interface.cmdline_window,
0, disp_offset, 0, 1, 0, disp_len, FALSE);
}
#if PDCURSES
/*
* At least on PDCurses, a single clipboard
* can be supported. We register it as the
* default clipboard ("~") as we do not know whether
* it corresponds to the X11 PRIMARY, SECONDARY or
* CLIPBOARD selections.
*/
static void
teco_interface_init_clipboard(void)
{
char *contents;
long length;
/*
* Even on PDCurses, while the clipboard functions are
* available, the clipboard might not actually be supported.
* Since the existence of the QReg serves as an indication
* of clipboard support in SciTECO, we must first probe the
* usability of the clipboard.
* This could be done at compile time, but this way is more
* generic (albeit inefficient).
*/
int rc = PDC_getclipboard(&contents, &length);
if (rc == PDC_CLIP_ACCESS_ERROR)
return;
if (rc == PDC_CLIP_SUCCESS)
PDC_freeclipboard(contents);
teco_qreg_table_insert(&teco_qreg_table_globals, teco_qreg_clipboard_new(""));
}
gboolean
teco_interface_set_clipboard(const gchar *name, const gchar *str, gsize str_len, GError **error)
{
int rc = str ? PDC_setclipboard(str, str_len) : PDC_clearclipboard();
if (rc != PDC_CLIP_SUCCESS) {
g_set_error(error, TECO_ERROR, TECO_ERROR_CLIPBOARD,
"Error %d copying to clipboard", rc);
return FALSE;
}
return TRUE;
}
gboolean
teco_interface_get_clipboard(const gchar *name, gchar **str, gsize *len, GError **error)
{
char *contents;
long length = 0;
/*
* NOTE: It is undefined whether we can pass in NULL for length.
*/
int rc = PDC_getclipboard(&contents, &length);
*len = length;
if (rc == PDC_CLIP_EMPTY)
return TRUE;
if (rc != PDC_CLIP_SUCCESS) {
g_set_error(error, TECO_ERROR, TECO_ERROR_CLIPBOARD,
"Error %d retrieving clipboard", rc);
return FALSE;
}
/*
* PDCurses defines its own free function and there is no
* way to find out which allocator was used.
* We must therefore copy the memory to be on the safe side.
* At least, the result is guaranteed to be null-terminated
* and thus teco_string_t-compatible
* (PDCurses does not guarantee that either).
*/
if (str) {
g_assert(contents != NULL);
*str = memcpy(g_malloc(length + 1), contents, length);
(*str)[length] = '\0';
}
PDC_freeclipboard(contents);
return TRUE;
}
#elif defined(CURSES_TTY)
static void
teco_interface_init_clipboard(void)
{
/*
* At least on XTerm, there are escape sequences
* for modifying the clipboard (OSC-52).
* This is not standardized in terminfo, so we add special
* XTerm support here. Unfortunately, it is pretty hard to find out
* whether clipboard operations will actually work.
* XTerm must be at least at v203 and the corresponding window operations
* must be enabled.
* There is no way to find out if they are but we must
* not register the clipboard registers if they aren't.
* Still, XTerm clipboards are broken with Unicode characters.
* Also, there are other terminal emulators supporting OSC-52,
* so the XTerm version is only checked if the terminal identifies as XTerm.
* Also, a special clipboard ED flag must be set by the user.
*
* NOTE: Apparently there is also a terminfo entry Ms, but it's probably
* not worth using it since it won't always be set and even if set, does not
* tell you whether the terminal will actually answer to the escape sequence or not.
*/
if (!(teco_ed & TECO_ED_OSC52) ||
(teco_xterm_version() >= 0 && teco_xterm_version() < 203))
return;
teco_qreg_table_insert(&teco_qreg_table_globals, teco_qreg_clipboard_new(""));
teco_qreg_table_insert(&teco_qreg_table_globals, teco_qreg_clipboard_new("P"));
teco_qreg_table_insert(&teco_qreg_table_globals, teco_qreg_clipboard_new("S"));
teco_qreg_table_insert(&teco_qreg_table_globals, teco_qreg_clipboard_new("C"));
}
static inline gchar
get_selection_by_name(const gchar *name)
{
/*
* Only the first letter of name is significant.
* We allow to address the XTerm cut buffers as well
* (everything gets passed down), but currently we
* only register the three standard registers
* "~", "~P", "~S" and "~C".
*/
return g_ascii_tolower(*name) ? : 'c';
}
gboolean
teco_interface_set_clipboard(const gchar *name, const gchar *str, gsize str_len,
GError **error)
{
fputs("\e]52;", teco_interface.screen_tty);
fputc(get_selection_by_name(name), teco_interface.screen_tty);
fputc(';', teco_interface.screen_tty);
/*
* Enough space for 1024 Base64-encoded bytes.
*/
gchar buffer[(1024 / 3) * 4 + 4];
gsize out_len;
/* g_base64_encode_step() state: */
gint state = 0, save = 0;
while (str_len > 0) {
gsize step_len = MIN(1024, str_len);
/*
* This could be simplified using g_base64_encode().
* However, doing it step-wise avoids an allocation.
*/
out_len = g_base64_encode_step((const guchar *)str,
step_len, FALSE,
buffer, &state, &save);
fwrite(buffer, 1, out_len, teco_interface.screen_tty);
str_len -= step_len;
str += step_len;
}
out_len = g_base64_encode_close(FALSE, buffer, &state, &save);
fwrite(buffer, 1, out_len, teco_interface.screen_tty);
fputc('\a', teco_interface.screen_tty);
fflush(teco_interface.screen_tty);
return TRUE;
}
gboolean
teco_interface_get_clipboard(const gchar *name, gchar **str, gsize *len, GError **error)
{
gboolean ret = TRUE;
/*
* Query the clipboard -- XTerm will reply with the
* OSC-52 command that would set the current selection.
*/
fputs("\e]52;", teco_interface.screen_tty);
fputc(get_selection_by_name(name), teco_interface.screen_tty);
fputs(";?\a", teco_interface.screen_tty);
fflush(teco_interface.screen_tty);
/*
* It is very well possible that the XTerm clipboard
* is not working because it is disabled, so we
* must be prepared for timeouts when reading.
* That's why we're using the Curses API here, instead
* of accessing screen_tty directly. It gives us a relatively
* simple way to read with timeouts.
* We restore all changed Curses settings before returning
* to be on the safe side.
*/
halfdelay(1); /* 100ms timeout */
/* don't interpret escape sequences */
keypad(teco_interface.input_pad, FALSE);
/*
* Skip "\e]52;x;" (7 characters).
*/
for (gint i = 0; i < 7; i++) {
ret = wgetch(teco_interface.input_pad) != ERR;
if (!ret) {
/* timeout */
g_set_error_literal(error, TECO_ERROR, TECO_ERROR_CLIPBOARD,
"Timed out reading XTerm clipboard");
goto cleanup;
}
}
GString *str_base64 = g_string_new("");
/* g_base64_decode_step() state: */
gint state = 0;
guint save = 0;
for (;;) {
/*
* Space for storing one group of decoded Base64 characters
* and the OSC-52 response.
*/
gchar buffer[MAX(3, 7)];
gchar c = (gchar)wgetch(teco_interface.input_pad);
ret = c != ERR;
if (!ret) {
/* timeout */
g_string_free(str_base64, TRUE);
g_set_error_literal(error, TECO_ERROR, TECO_ERROR_CLIPBOARD,
"Timed out reading XTerm clipboard");
goto cleanup;
}
if (c == '\a')
break;
if (c == '\e') {
/* OSC escape sequence can also be terminated by "\e\\" */
c = (gchar)wgetch(teco_interface.input_pad);
break;
}
/*
* This could be simplified using sscanf() and
* g_base64_decode(), but we avoid one allocation
* to get the entire Base64 string.
* (Also to allow for timeouts, we should
* read character-wise using getch() anyway.)
*/
gsize out_len = g_base64_decode_step(&c, sizeof(c),
(guchar *)buffer,
&state, &save);
g_string_append_len(str_base64, buffer, out_len);
}
if (str)
*str = str_base64->str;
*len = str_base64->len;
g_string_free(str_base64, !str);
cleanup:
keypad(teco_interface.input_pad, TRUE);
nodelay(teco_interface.input_pad, TRUE);
return ret;
}
#else /* !PDCURSES && !CURSES_TTY */
static void
teco_interface_init_clipboard(void)
{
/*
* No native clipboard support, so no clipboard Q-Regs are
* registered.
*/
}
gboolean
teco_interface_set_clipboard(const gchar *name, const gchar *str, gsize str_len,
GError **error)
{
g_set_error_literal(error, TECO_ERROR, TECO_ERROR_FAILED,
"Setting clipboard unsupported");
return FALSE;
}
gboolean
teco_interface_get_clipboard(const gchar *name, gchar **str, gsize *len, GError **error)
{
g_set_error_literal(error, TECO_ERROR, TECO_ERROR_FAILED,
"Getting clipboard unsupported");
return FALSE;
}
#endif
void
teco_interface_popup_add(teco_popup_entry_type_t type, const gchar *name, gsize name_len,
gboolean highlight)
{
if (teco_interface.cmdline_window)
/* interactive mode */
teco_curses_info_popup_add(&teco_interface.popup, type, name, name_len, highlight);
}
void
teco_interface_popup_show(gsize prefix_len)
{
if (!teco_interface.cmdline_window)
/* batch mode */
return;
short fg = teco_rgb2curses(teco_interface_ssm(SCI_STYLEGETFORE, STYLE_CALLTIP, 0));
short bg = teco_rgb2curses(teco_interface_ssm(SCI_STYLEGETBACK, STYLE_CALLTIP, 0));
teco_interface.popup_prefix_len = prefix_len;
teco_curses_info_popup_show(&teco_interface.popup, SCI_COLOR_ATTR(fg, bg));
}
void
teco_interface_popup_scroll(void)
{
if (!teco_interface.cmdline_window)
/* batch mode */
return;
teco_curses_info_popup_scroll_page(&teco_interface.popup);
teco_interface_popup_show(teco_interface.popup_prefix_len);
}
gboolean
teco_interface_popup_is_shown(void)
{
return teco_curses_info_popup_is_shown(&teco_interface.popup);
}
void
teco_interface_popup_clear(void)
{
#ifdef __PDCURSES__
/*
* PDCurses will not redraw all windows that may be
* overlapped by the popup window correctly - at least
* not the info window.
* The Scintilla window is always touched by scintilla_noutrefresh().
* Actually we would expect this to be necessary on any curses,
* but ncurses doesn't require this.
*/
if (teco_curses_info_popup_is_shown(&teco_interface.popup)) {
touchwin(teco_interface.info_window);
touchwin(teco_interface.msg_window);
}
#endif
teco_curses_info_popup_clear(&teco_interface.popup);
teco_curses_info_popup_init(&teco_interface.popup);
}
#if defined(CURSES_TTY) || defined(PDCURSES_WINCON) || defined(NCURSES_WIN32)
/*
* For UNIX Curses we can rely on signal handlers to detect interruptions via CTRL+C.
* On Win32 console builds, there is teco_console_ctrl_handler().
*/
gboolean
teco_interface_is_interrupted(void)
{
return teco_interrupted != FALSE;
}
#else /* !CURSES_TTY && !PDCURSES_WINCON && !NCURSES_WIN32 */
/*
* This function is called repeatedly, so we can poll the keyboard input queue,
* filtering out CTRL+C.
* It's currently necessary as a fallback e.g. for PDCURSES_GUI or XCurses.
*
* NOTE: Theoretically, this can be optimized by doing wgetch() only every X
* microseconds like on Gtk+.
* But this turned out to slow things down, at least on PDCurses/WinGUI.
*/
gboolean
teco_interface_is_interrupted(void)
{
if (!teco_interface.input_pad)
/* batch mode */
return teco_interrupted != FALSE;
/*
* NOTE: wgetch() is configured to be nonblocking.
* We wgetch() on a dummy pad, so this does not call any
* wrefresh().
*/
gint key;
while ((key = wgetch(teco_interface.input_pad)) != ERR) {
if (G_UNLIKELY(key == TECO_CTL_KEY('C')))
return TRUE;
g_queue_push_tail(teco_interface.input_queue,
GINT_TO_POINTER(key));
}
return teco_interrupted != FALSE;
}
#endif
static void
teco_interface_refresh(void)
{
/*
* Info window is updated very often which is very
* costly, especially when using PDC_set_title(),
* so we redraw it here, where the overhead does
* not matter much.
*/
teco_interface_draw_info();
wnoutrefresh(teco_interface.info_window);
teco_view_noutrefresh(teco_interface_current_view);
wnoutrefresh(teco_interface.msg_window);
wnoutrefresh(teco_interface.cmdline_window);
teco_curses_info_popup_noutrefresh(&teco_interface.popup);
doupdate();
}
#if NCURSES_MOUSE_VERSION >= 2
#define BUTTON_NUM(X) \
(BUTTON##X##_PRESSED | BUTTON##X##_RELEASED | \
BUTTON##X##_CLICKED | BUTTON##X##_DOUBLE_CLICKED | BUTTON##X##_TRIPLE_CLICKED)
#define BUTTON_EVENT(X) \
(BUTTON1_##X | BUTTON2_##X | BUTTON3_##X | BUTTON4_##X | BUTTON5_##X)
static gboolean
teco_interface_getmouse(GError **error)
{
MEVENT event;
if (getmouse(&event) != OK)
return TRUE;
if (teco_curses_info_popup_is_shown(&teco_interface.popup) &&
wmouse_trafo(teco_interface.popup.window, &event.y, &event.x, FALSE)) {
/*
* NOTE: Not all curses variants report the RELEASED event,
* but may also return REPORT_MOUSE_POSITION.
* So we might react to all button presses as well.
*/
if (event.bstate & (BUTTON1_RELEASED | REPORT_MOUSE_POSITION)) {
teco_machine_t *machine = &teco_cmdline.machine.parent;
const teco_string_t *insert = teco_curses_info_popup_getentry(&teco_interface.popup, event.y, event.x);
if (insert && machine->current->insert_completion_cb) {
/* successfully clicked popup item */
const teco_string_t insert_suffix = {insert->data + teco_interface.popup_prefix_len,
insert->len - teco_interface.popup_prefix_len};
if (!machine->current->insert_completion_cb(machine, &insert_suffix, error))
return FALSE;
teco_interface_popup_clear();
teco_interface_msg_clear();
teco_interface_cmdline_update(&teco_cmdline);
}
return TRUE;
}
if (event.bstate & BUTTON_NUM(4))
teco_curses_info_popup_scroll(&teco_interface.popup, -1);
else if (event.bstate & BUTTON_NUM(5))
teco_curses_info_popup_scroll(&teco_interface.popup, +1);
short fg = teco_rgb2curses(teco_interface_ssm(SCI_STYLEGETFORE, STYLE_CALLTIP, 0));
short bg = teco_rgb2curses(teco_interface_ssm(SCI_STYLEGETBACK, STYLE_CALLTIP, 0));
teco_curses_info_popup_show(&teco_interface.popup, SCI_COLOR_ATTR(fg, bg));
return TRUE;
}
/*
* Return mouse coordinates relative to the view.
* They will be in characters, but that's what SCI_POSITIONFROMPOINT
* expects on Scinterm anyway.
*/
WINDOW *current = teco_view_get_window(teco_interface_current_view);
if (!wmouse_trafo(current, &event.y, &event.x, FALSE))
/* no event inside of current view */
return TRUE;
/*
* NOTE: There will only be one of the button bits
* set in bstate, so we don't loose information translating
* them to enums.
*
* At least on ncurses, we don't always get a RELEASED event.
* It instead sends only REPORT_MOUSE_POSITION,
* so make sure not to overwrite teco_mouse.button in this case.
*/
if (event.bstate & BUTTON_NUM(4))
/* scroll up - there will be no RELEASED event */
teco_mouse.type = TECO_MOUSE_SCROLLUP;
else if (event.bstate & BUTTON_NUM(5))
/* scroll down - there will be no RELEASED event */
teco_mouse.type = TECO_MOUSE_SCROLLDOWN;
else if (event.bstate & BUTTON_EVENT(RELEASED))
teco_mouse.type = TECO_MOUSE_RELEASED;
else if (event.bstate & BUTTON_EVENT(PRESSED))
teco_mouse.type = TECO_MOUSE_PRESSED;
else
/* can also be REPORT_MOUSE_POSITION */
teco_mouse.type = TECO_MOUSE_RELEASED;
teco_mouse.x = event.x;
teco_mouse.y = event.y;
if (event.bstate & BUTTON_NUM(1))
teco_mouse.button = 1;
else if (event.bstate & BUTTON_NUM(2))
teco_mouse.button = 2;
else if (event.bstate & BUTTON_NUM(3))
teco_mouse.button = 3;
else if (!(event.bstate & REPORT_MOUSE_POSITION))
teco_mouse.button = -1;
teco_mouse.mods = 0;
if (event.bstate & BUTTON_SHIFT)
teco_mouse.mods |= TECO_MOUSE_SHIFT;
if (event.bstate & BUTTON_CTRL)
teco_mouse.mods |= TECO_MOUSE_CTRL;
if (event.bstate & BUTTON_ALT)
teco_mouse.mods |= TECO_MOUSE_ALT;
return teco_cmdline_keymacro("MOUSE", -1, error);
}
#endif /* NCURSES_MOUSE_VERSION >= 2 */
static gint
teco_interface_blocking_getch(void)
{
#if NCURSES_MOUSE_VERSION >= 2
/*
* FIXME: REPORT_MOUSE_POSITION is necessary at least on
* ncurses, so that BUTTONX_RELEASED events are reported.
* It does NOT report every cursor movement, though.
* What does PDCurses do?
*/
mousemask(teco_ed & TECO_ED_MOUSEKEY
? ALL_MOUSE_EVENTS | REPORT_MOUSE_POSITION : 0, NULL);
#endif
/* no special <CTRL/C> handling */
raw();
nodelay(teco_interface.input_pad, FALSE);
/*
* Memory limiting is stopped temporarily, since it might otherwise
* constantly place 100% load on the CPU.
*/
teco_memory_stop_limiting();
gint key = wgetch(teco_interface.input_pad);
teco_memory_start_limiting();
/* allow asynchronous interruptions on <CTRL/C> */
teco_interrupted = FALSE;
nodelay(teco_interface.input_pad, TRUE);
#if defined(CURSES_TTY) || defined(PDCURSES_WINCON) || defined(NCURSES_WIN32)
noraw(); /* FIXME: necessary because of NCURSES_WIN32 bug */
cbreak();
#endif
return key;
}
/**
* One iteration of the event loop.
*
* This is a global function, so it may be used as an asynchronous Emscripten callback.
* While this function cannot directly throw GErrors,
* it can set teco_interface.event_loop_error.
*
* @fixme Thrown errors should be somehow caught when building for EMScripten as well.
* Perhaps in a goto-block.
*/
void
teco_interface_event_loop_iter(void)
{
static gchar keybuf[4];
static gint keybuf_i = 0;
GError **error = &teco_interface.event_loop_error;
gint key = g_queue_is_empty(teco_interface.input_queue)
? teco_interface_blocking_getch()
: GPOINTER_TO_INT(g_queue_pop_head(teco_interface.input_queue));
const teco_view_t *last_view = teco_interface_current_view;
sptr_t last_pos = teco_interface_ssm(SCI_GETCURRENTPOS, 0, 0);
switch (key) {
case ERR:
/* shouldn't really happen */
return;
#ifdef KEY_RESIZE
case KEY_RESIZE:
#ifdef __PDCURSES__
/* NOTE: No longer necessary since PDCursesMod v4.3.3. */
resize_term(0, 0);
#endif
teco_interface_resize_all_windows();
break;
#endif
case TECO_CTL_KEY('H'):
case 0x7F: /* ^? */
case KEY_BACKSPACE:
/*
* For historic reasons terminals can send
* ASCII 8 (^H) or 127 (^?) for backspace.
* Curses also defines KEY_BACKSPACE, probably
* for terminals that send an escape sequence for
* backspace.
* In SciTECO backspace is normalized to ^H.
*/
if (!teco_cmdline_keymacro_c(TECO_CTL_KEY('H'), error))
return;
break;
case KEY_ENTER:
case '\r':
case '\n':
if (!teco_cmdline_keymacro_c('\n', error))
return;
break;
/*
* Function key macros
*
* FIXME: Perhaps support everything returned by keyname()?
*/
#define FN(KEY) \
case KEY_##KEY: \
if (!teco_cmdline_keymacro(#KEY, -1, error)) \
return; \
break
#define FNS(KEY) FN(KEY); FN(S##KEY)
FN(DOWN); FN(UP); FNS(LEFT); FNS(RIGHT);
FNS(HOME);
case KEY_F(0)...KEY_F(63): {
gchar macro_name[3+1];
g_snprintf(macro_name, sizeof(macro_name),
"F%d", key - KEY_F0);
if (!teco_cmdline_keymacro(macro_name, -1, error))
return;
break;
}
FNS(DC);
FNS(IC);
FN(NPAGE); FN(PPAGE);
FNS(PRINT);
FN(A1); FN(A3); FN(B2); FN(C1); FN(C3);
FNS(END);
FNS(HELP);
FN(CLOSE);
#undef FNS
#undef FN
#if NCURSES_MOUSE_VERSION >= 2
case KEY_MOUSE:
/* ANY of the mouse events */
if (!teco_interface_getmouse(error))
return;
break;
#endif
/*
* Control keys and keys with printable representation
*/
default:
if (key > 0xFF)
/* unhandled function key */
return;
#ifdef __PDCURSES__
/*
* Especially PDCurses/WinGUI likes to report two keypresses,
* e.g. for CTRL+Shift+6 (CTRL+^).
* Make sure we don't filter out AltGr, which may be reported as CTRL+ALT.
*/
if ((PDC_get_key_modifiers() &
(PDC_KEY_MODIFIER_CONTROL | PDC_KEY_MODIFIER_ALT)) == PDC_KEY_MODIFIER_CONTROL &&
!TECO_IS_CTL(key))
return;
#endif
/*
* NOTE: There's also wget_wch(), but it requires
* a widechar version of Curses.
*/
keybuf[keybuf_i++] = key;
gsize len = keybuf_i;
gint32 cp = *keybuf ? g_utf8_get_char_validated(keybuf, len) : 0;
if (keybuf_i >= sizeof(keybuf) || cp != -2)
keybuf_i = 0;
if (cp < 0)
/* incomplete or invalid */
return;
switch (teco_cmdline_keymacro(keybuf, len, error)) {
case TECO_KEYMACRO_ERROR:
return;
case TECO_KEYMACRO_SUCCESS:
break;
case TECO_KEYMACRO_UNDEFINED:
if (!teco_cmdline_keypress(keybuf, len, error))
return;
}
}
/*
* Scintilla has been patched to avoid any automatic scrolling since that
* has been benchmarked to be a very costly operation.
* Instead we do it only once after every keypress.
*/
if (teco_interface_current_view != last_view ||
last_pos != teco_interface_ssm(SCI_GETCURRENTPOS, 0, 0))
teco_interface_ssm(SCI_SCROLLCARET, 0, 0);
teco_interface_refresh();
}
gboolean
teco_interface_event_loop(GError **error)
{
/*
* Initialize Curses for interactive mode
*/
if (!teco_interface_init_interactive(error))
return FALSE;
static const teco_cmdline_t empty_cmdline; // FIXME
teco_interface_cmdline_update(&empty_cmdline);
teco_interface_msg_clear();
teco_interface_ssm(SCI_SCROLLCARET, 0, 0);
teco_interface_refresh();
#ifdef EMCURSES
PDC_emscripten_set_handler(teco_interface_event_loop_iter, TRUE);
/*
* We must not block emscripten's main loop,
* instead event_loop_iter() is called asynchronously.
* We also must not exit the event_loop() method, since
* SciTECO would assume ordinary program termination.
* We also must not call exit() since that would run
* the global destructors.
* The following exits the main() function immediately
* while keeping the "runtime" alive.
*/
emscripten_exit_with_live_runtime();
#else
while (!teco_interface.event_loop_error)
teco_interface_event_loop_iter();
/*
* The error needs to be propagated only if this is
* NOT a SciTECO termination (e.g. EX$$)
*/
if (!g_error_matches(teco_interface.event_loop_error,
TECO_ERROR, TECO_ERROR_QUIT)) {
g_propagate_error(error, g_steal_pointer(&teco_interface.event_loop_error));
return FALSE;
}
g_clear_error(&teco_interface.event_loop_error);
teco_interface_restore_batch();
#endif
return TRUE;
}
void
teco_interface_cleanup(void)
{
if (teco_interface.event_loop_error)
g_error_free(teco_interface.event_loop_error);
if (teco_interface.info_window)
delwin(teco_interface.info_window);
teco_string_clear(&teco_interface.info_current);
if (teco_interface.input_queue)
g_queue_free(teco_interface.input_queue);
if (teco_interface.cmdline_window)
delwin(teco_interface.cmdline_window);
if (teco_interface.cmdline_pad)
delwin(teco_interface.cmdline_pad);
if (teco_interface.msg_window)
delwin(teco_interface.msg_window);
if (teco_interface.input_pad)
delwin(teco_interface.input_pad);
/*
* PDCurses/WinCon crashes if initscr() wasn't called.
* Others (XCurses) crash if we try to use isendwin() here.
* Perhaps Curses cleanup should be in restore_batch()
* instead.
*/
#ifndef XCURSES
if (teco_interface.info_window && !isendwin())
endwin();
#endif
if (teco_interface.screen)
delscreen(teco_interface.screen);
if (teco_interface.screen_tty)
fclose(teco_interface.screen_tty);
if (teco_interface.stderr_orig >= 0)
close(teco_interface.stderr_orig);
if (teco_interface.stdout_orig >= 0)
close(teco_interface.stdout_orig);
}
|