1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
25
33
34
37
38
39
43
44
45
48
49
50
55
58
59
64
71
72
75
76
77
84
85
86
95
99
100
105
106
107
108
109
110
111
112
113
114
115
116
117
120
121
122
127
128
129
130
131
132
133
134
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
169
170
175
176
180
181
182
183
186
187
188
189
190
191
192
193
194
195
196
209
210
211
212
217
218
219
220
221
222
225
226
227
228
229
230
231
232
233
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
260
261
262
263
264
265
266
267
268
269
270
271
275
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
420
421
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
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
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
576
579
590
605
608
610
611
612
613
614
615
616
617
642
646
647
648
649
650
651
652
653
654
655
656
657
658
659
672
673
674
675
676
677
678
679
685
686
690
691
692
694
695
696
697
698
699
701
702
704
705
706
707
710
711
712
713
714
719
720
721
727
728
732
733
734
737
749
750
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
770
771
779
780
784
785
794
795
801
802
808
809
813
814
821
822
823
824
825
826
827
828
829
833
836
837
838
839
843
844
845
846
847
848
849
850
851
854
855
858
863
864
865
866
867
868
869
870
871
872
876
877
878
879
880
881
882
883
884
885
886
887
888
889
905
906
907
908
911
912
913
914
915
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
979
980
981
984
985
986
987
989
991
993
995
997
999
1000
1001
1002
1003
1004
1005
1006
1008
1010
1012
1014
1016
1018
1019
1020
1024
1025
1026
1027
1028
1029
1030
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1053
1054
1055
1056
1057
1061
1071
1072
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1097
1098
1104
1105
1106
1107
1108
1109
1110
1113
1114
1115
1116
1117
1123
1124
1125
1128
1129
1149
1150
1151
1152
1153
1154
1155
1156
1159
1165
1166
1170
1171
1176
1177
1181
1182
1183
1184
1185
1186
1187
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1224
1225
1226
1229
1230
1231
1232
1233
1234
1235
1238
1239
1240
1241
1242
1243
1244
1248
1249
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1270
1271
1272
1273
1274
1275
1276
1277
1281
1282
1283
1284
1285
1286
1287
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
1317
1318
1323
1324
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
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1400
1401
1407
1408
1409
1410
1411
1419
1420
1421
1422
1426
1427
1428
1429
1430
1431
1444
1445
1446
1447
1448
1449
1450
1451
1457
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1473
1474
1475
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1499
1502
1503
1506
1507
1508
1509
1510
1511
1512
1517
1518
1519
1520
1521
1522
1523
1524
1528
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1559
1560
1566
1567
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1609
1619
1620
1621
1622
1623
1624
1625
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1648
1657
1658
1661
1671
1672
1673
1674
1675
1676
1681
1698
1699
1704
1705
1706
1707
1708
1709
1710
1711
1714
1715
1716
1721
1722
1723
1724
1725
1726
1727
1728
1731
1732
1733
1734
1735
1736
1737
1738
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1769
1770
1774
1781
1789
1790
1791
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1807
1808
1809
1810
1811
1812
1813
1817
1818
1819
1820
1821
1822
1823
1829
1830
1835
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1867
1872
1873
1874
1878
1882
1883
1884
1886
1887
1897
1900
1910
1911
1916
1924
1929
1934
1935
1936
1937
1938
1941
1942
1943
1946
1947
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1975
1976
1977
1978
1979
1985
1986
1992
1995
1998
1999
2002
2003
2004
2005
2006
2008
2009
2010
2011
2012
2019
2020
2021
2022
2023
2024
2028
2029
2033
2038
2043
2048
2049
2050
2051
2052
2053
2054
2055
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2099
2102
2103
2104
2105
2106
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2142
2143
2144
2145
2146
2147
2148
2149
2150
2155
2158
2159
2160
2163
2164
2169
2170
2171
2172
2173
2174
2177
2178
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2222
2225
2228
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2274
2275
2276
2277
2278
2279
2280
2281
2282
2286
#ifndef STRINGBUF_H
#define STRINGBUF_H
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
/* ... */
typedef struct {
int remaining;
int last;
#ifdef USE_UTF8
int chars;
#endif
char *data;
...} stringbuf;
/* ... */
stringbuf *sb_alloc(void);
/* ... */
void sb_free(stringbuf *sb);
/* ... */
stringbuf *sb_copy(stringbuf *sb);
/* ... */
static inline int sb_len(stringbuf *sb) {
return sb->last;
}{ ... }
/* ... */
static inline int sb_chars(stringbuf *sb) {
#ifdef USE_UTF8
return sb->chars;
#else
return sb->last;
#endif
}{ ... }
/* ... */
void sb_append(stringbuf *sb, const char *str);
/* ... */
void sb_append_len(stringbuf *sb, const char *str, int len);
/* ... */
static inline char *sb_str(const stringbuf *sb)
{
return sb->data;
}{ ... }
/* ... */
void sb_insert(stringbuf *sb, int index, const char *str);
/* ... */
void sb_delete(stringbuf *sb, int index, int len);
/* ... */
void sb_clear(stringbuf *sb);
/* ... */
char *sb_to_string(stringbuf *sb);
#ifdef __cplusplus
}extern "C" { ... }
#endif
/* ... */
#endif
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <ctype.h>
#include <assert.h>
5 includes
#ifndef STRINGBUF_H
#include "stringbuf.h"
#endif
#ifdef USE_UTF8
#include "utf8.h"
#endif
#define SB_INCREMENT 200
stringbuf *sb_alloc(void)
{
stringbuf *sb = (stringbuf *)malloc(sizeof(*sb));
sb->remaining = 0;
sb->last = 0;
#ifdef USE_UTF8
sb->chars = 0;
#endif
sb->data = NULL;
return(sb);
}{ ... }
void sb_free(stringbuf *sb)
{
if (sb) {
free(sb->data);
}if (sb) { ... }
free(sb);
}{ ... }
void sb_realloc(stringbuf *sb, int newlen)
{
sb->data = (char *)realloc(sb->data, newlen);
sb->remaining = newlen - sb->last;
}{ ... }
void sb_append(stringbuf *sb, const char *str)
{
sb_append_len(sb, str, strlen(str));
}{ ... }
void sb_append_len(stringbuf *sb, const char *str, int len)
{
if (sb->remaining < len + 1) {
sb_realloc(sb, sb->last + len + 1 + SB_INCREMENT);
}if (sb->remaining < len + 1) { ... }
memcpy(sb->data + sb->last, str, len);
sb->data[sb->last + len] = 0;
sb->last += len;
sb->remaining -= len;
#ifdef USE_UTF8
sb->chars += utf8_strlen(str, len);
#endif
}{ ... }
char *sb_to_string(stringbuf *sb)
{
if (sb->data == NULL) {
return strdup("");
}if (sb->data == NULL) { ... }
else {
char *pt = sb->data;
free(sb);
return pt;
}else { ... }
}{ ... }
/* ... */
static void sb_insert_space(stringbuf *sb, int pos, int len)
{
assert(pos <= sb->last);
if (sb->remaining < len) {
sb_realloc(sb, sb->last + len + SB_INCREMENT);
}if (sb->remaining < len) { ... }
memmove(sb->data + pos + len, sb->data + pos, sb->last - pos);
sb->last += len;
sb->remaining -= len;
sb->data[sb->last] = 0;
}{ ... }
/* ... */
static void sb_delete_space(stringbuf *sb, int pos, int len)
{
assert(pos < sb->last);
assert(pos + len <= sb->last);
#ifdef USE_UTF8
sb->chars -= utf8_strlen(sb->data + pos, len);
#endif
memmove(sb->data + pos, sb->data + pos + len, sb->last - pos - len);
sb->last -= len;
sb->remaining += len;
sb->data[sb->last] = 0;
}{ ... }
void sb_insert(stringbuf *sb, int index, const char *str)
{
if (index >= sb->last) {
sb_append(sb, str);
}if (index >= sb->last) { ... }
else {
int len = strlen(str);
sb_insert_space(sb, index, len);
memcpy(sb->data + index, str, len);
#ifdef USE_UTF8
sb->chars += utf8_strlen(str, len);
#endif
}else { ... }
}{ ... }
/* ... */
void sb_delete(stringbuf *sb, int index, int len)
{
if (index < sb->last) {
char *pos = sb->data + index;
if (len < 0) {
len = sb->last;
}if (len < 0) { ... }
sb_delete_space(sb, pos - sb->data, len);
}if (index < sb->last) { ... }
}{ ... }
void sb_clear(stringbuf *sb)
{
if (sb->data) {
sb->data[0] = 0;
sb->last = 0;
#ifdef USE_UTF8
sb->chars = 0;
#endif
}if (sb->data) { ... }
}{ ... }
/* ... */
#ifdef _WIN32
#include <windows.h>
#include <fcntl.h>
#define USE_WINCONSOLE
#ifdef __MINGW32__
#define HAVE_UNISTD_H
#else
#define strdup _strdup
#define snprintf _snprintf
/* ... */#endif/* ... */
#else
#include <termios.h>
#include <sys/ioctl.h>
#include <poll.h>
#define USE_TERMIOS
#define HAVE_UNISTD_H
/* ... */#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#include <assert.h>
#include <errno.h>
#include <string.h>
#include <signal.h>
#include <stdlib.h>
#include <sys/types.h>
#include "linenoise.h"
10 includes#ifndef STRINGBUF_H
#include "stringbuf.h"
#endif
#include "utf8.h"
#define LINENOISE_DEFAULT_HISTORY_MAX_LEN 100
#define ctrl(C) ((C) - '@')
enum {
SPECIAL_NONE,
SPECIAL_UP = -20,
SPECIAL_DOWN = -21,
SPECIAL_LEFT = -22,
SPECIAL_RIGHT = -23,
SPECIAL_DELETE = -24,
SPECIAL_HOME = -25,
SPECIAL_END = -26,
SPECIAL_INSERT = -27,
SPECIAL_PAGE_UP = -28,
SPECIAL_PAGE_DOWN = -29,
CHAR_ESCAPE = 27,
CHAR_DELETE = 127,
...};
static int history_max_len = LINENOISE_DEFAULT_HISTORY_MAX_LEN;
static int history_len = 0;
static char **history = NULL;
struct current {
stringbuf *buf;
int pos;
int cols;
int nrows;
int rpos;
int colsright;
int colsleft;
const char *prompt;
stringbuf *capture;
stringbuf *output;
#if defined(USE_TERMIOS)
int fd;
#elif defined(USE_WINCONSOLE)
HANDLE outh;
HANDLE inh;
int rows;
int x;
int y;
#ifdef USE_UTF8
#define UBUF_MAX_CHARS 132
WORD ubuf[UBUF_MAX_CHARS + 1];
int ubuflen;
int ubufcols; /* ... */
#endif/* ... */
#endif
...};
static int fd_read(struct current *current);
static int getWindowSize(struct current *current);
static void cursorDown(struct current *current, int n);
static void cursorUp(struct current *current, int n);
static void eraseEol(struct current *current);
static void refreshLine(struct current *current);
static void refreshLineAlt(struct current *current, const char *prompt, const char *buf, int cursor_pos);
static void setCursorPos(struct current *current, int x);
static void setOutputHighlight(struct current *current, const int *props, int nprops);
static void set_current(struct current *current, const char *str);
void linenoiseHistoryFree(void) {
if (history) {
int j;
for (j = 0; j < history_len; j++)
free(history[j]);
free(history);
history = NULL;
history_len = 0;
}if (history) { ... }
}{ ... }
struct esc_parser {
enum {
EP_START,
EP_ESC,
EP_DIGITS,
EP_PROPS,
EP_END,
EP_ERROR,
...} state;
int props[5];
int maxprops;
int numprops;
int termchar;
int current;
...};
/* ... */
static void initParseEscapeSeq(struct esc_parser *parser, int termchar)
{
parser->state = EP_START;
parser->maxprops = sizeof(parser->props) / sizeof(*parser->props);
parser->numprops = 0;
parser->current = 0;
parser->termchar = termchar;
}{ ... }
/* ... */
static int parseEscapeSequence(struct esc_parser *parser, int ch)
{
switch (parser->state) {
case EP_START:
parser->state = (ch == '\x1b') ? EP_ESC : EP_ERROR;
break;case EP_START:
case EP_ESC:
parser->state = (ch == '[') ? EP_DIGITS : EP_ERROR;
break;case EP_ESC:
case EP_PROPS:
if (ch == ';') {
parser->state = EP_DIGITS;
donedigits:
if (parser->numprops + 1 < parser->maxprops) {
parser->props[parser->numprops++] = parser->current;
parser->current = 0;
}if (parser->numprops + 1 < parser->maxprops) { ... }
break;
}if (ch == ';') { ... }
case EP_PROPS:
case EP_DIGITS:
if (ch >= '0' && ch <= '9') {
parser->current = parser->current * 10 + (ch - '0');
parser->state = EP_PROPS;
break;
}if (ch >= '0' && ch <= '9') { ... }
if (parser->termchar != ch) {
if (parser->termchar != 0 || !((ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z'))) {
parser->state = EP_ERROR;
break;
}if (parser->termchar != 0 || !((ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z'))) { ... }
}if (parser->termchar != ch) { ... }
parser->state = EP_END;
goto donedigits;case EP_DIGITS:
case EP_END:
parser->state = EP_ERROR;
break;case EP_END:
case EP_ERROR:
break;case EP_ERROR:
}switch (parser->state) { ... }
return parser->state;
}{ ... }
#ifdef DEBUG_REFRESHLINE
#define DRL(ARGS...) fprintf(dfh, ARGS)
static FILE *dfh;
static void DRL_CHAR(int ch)
{
if (ch < ' ') {
DRL("^%c", ch + '@');
}if (ch < ' ') { ... }
else if (ch > 127) {
DRL("\\u%04x", ch);
}else if (ch > 127) { ... }
else {
DRL("%c", ch);
}else { ... }
}DRL_CHAR (int ch) { ... }
static void DRL_STR(const char *str)
{
while (*str) {
int ch;
int n = utf8_tounicode(str, &ch);
str += n;
DRL_CHAR(ch);
}while (*str) { ... }
}DRL_STR (const char *str) { ... }
/* ... */#else
#define DRL(ARGS...)
#define DRL_CHAR(ch)
#define DRL_STR(str)
/* ... */#endif
#if defined(USE_WINCONSOLE)
#include "linenoise-win32.c"
#endif
#if defined(USE_TERMIOS)
static void linenoiseAtExit(void);
static struct termios orig_termios;
static int rawmode = 0;
static int atexit_registered = 0;
static const char *unsupported_term[] = {"dumb","cons25","emacs",NULL};
static int isUnsupportedTerm(void) {
char *term = getenv("TERM");
if (term) {
int j;
for (j = 0; unsupported_term[j]; j++) {
if (strcmp(term, unsupported_term[j]) == 0) {
return 1;
}if (strcmp(term, unsupported_term[j]) == 0) { ... }
}for (j = 0; unsupported_term[j]; j++) { ... }
}if (term) { ... }
return 0;
}isUnsupportedTerm (void) { ... }
static int enableRawMode(struct current *current) {
struct termios raw;
current->fd = STDIN_FILENO;
current->cols = 0;
if (!isatty(current->fd) || isUnsupportedTerm() ||
tcgetattr(current->fd, &orig_termios) == -1) {
fatal:
errno = ENOTTY;
return -1;
}if (!isatty(current->fd) || isUnsupportedTerm() || tcgetattr(current->fd, &orig_termios) == -1) { ... }
if (!atexit_registered) {
atexit(linenoiseAtExit);
atexit_registered = 1;
}if (!atexit_registered) { ... }
raw = orig_termios;
/* ... */
raw.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON);
raw.c_cflag |= (CS8);
/* ... */
raw.c_lflag &= ~(ECHO | ICANON | IEXTEN | ISIG);
/* ... */
raw.c_cc[VMIN] = 1; raw.c_cc[VTIME] = 0;
if (tcsetattr(current->fd,TCSADRAIN,&raw) < 0) {
goto fatal;
}if (tcsetattr(current->fd,TCSADRAIN,&raw) < 0) { ... }
rawmode = 1;
return 0;
}enableRawMode (struct current *current) { ... }
static void disableRawMode(struct current *current) {
if (rawmode && tcsetattr(current->fd,TCSADRAIN,&orig_termios) != -1)
rawmode = 0;
}disableRawMode (struct current *current) { ... }
static void linenoiseAtExit(void) {
if (rawmode) {
tcsetattr(STDIN_FILENO, TCSADRAIN, &orig_termios);
}if (rawmode) { ... }
linenoiseHistoryFree();
}linenoiseAtExit (void) { ... }
/* ... */
#define IGNORE_RC(EXPR) if (EXPR) {}
/* ... */
static void outputChars(struct current *current, const char *buf, int len)
{
if (len < 0) {
len = strlen(buf);
}if (len < 0) { ... }
if (current->output) {
sb_append_len(current->output, buf, len);
}if (current->output) { ... }
else {
IGNORE_RC(write(current->fd, buf, len));
}else { ... }
}outputChars (struct current *current, const char *buf, int len) { ... }
/* ... */
static void outputFormatted(struct current *current, const char *format, ...)
{
va_list args;
char buf[64];
int n;
va_start(args, format);
n = vsnprintf(buf, sizeof(buf), format, args);
assert(n < (int)sizeof(buf));
va_end(args);
outputChars(current, buf, n);
}outputFormatted (struct current *current, const char *format, ...) { ... }
static void cursorToLeft(struct current *current)
{
outputChars(current, "\r", -1);
}cursorToLeft (struct current *current) { ... }
static void setOutputHighlight(struct current *current, const int *props, int nprops)
{
outputChars(current, "\x1b[", -1);
while (nprops--) {
outputFormatted(current, "%d%c", *props, (nprops == 0) ? 'm' : ';');
props++;
}while (nprops--) { ... }
}setOutputHighlight (struct current *current, const int *props, int nprops) { ... }
static void eraseEol(struct current *current)
{
outputChars(current, "\x1b[0K", -1);
}eraseEol (struct current *current) { ... }
static void setCursorPos(struct current *current, int x)
{
if (x == 0) {
cursorToLeft(current);
}if (x == 0) { ... }
else {
outputFormatted(current, "\r\x1b[%dC", x);
}else { ... }
}setCursorPos (struct current *current, int x) { ... }
static void cursorUp(struct current *current, int n)
{
if (n) {
outputFormatted(current, "\x1b[%dA", n);
}if (n) { ... }
}cursorUp (struct current *current, int n) { ... }
static void cursorDown(struct current *current, int n)
{
if (n) {
outputFormatted(current, "\x1b[%dB", n);
}if (n) { ... }
}cursorDown (struct current *current, int n) { ... }
void linenoiseClearScreen(void)
{
IGNORE_RC(write(STDOUT_FILENO, "\x1b[H\x1b[2J", 7));
}linenoiseClearScreen (void) { ... }
/* ... */
static int fd_read_char(int fd, int timeout)
{
struct pollfd p;
unsigned char c;
p.fd = fd;
p.events = POLLIN;
if (poll(&p, 1, timeout) == 0) {
return -1;
}if (poll(&p, 1, timeout) == 0) { ... }
if (read(fd, &c, 1) != 1) {
return -1;
}if (read(fd, &c, 1) != 1) { ... }
return c;
}fd_read_char (int fd, int timeout) { ... }
/* ... */
static int fd_read(struct current *current)
{
#ifdef USE_UTF8
char buf[MAX_UTF8_LEN];
int n;
int i;
int c;
if (read(current->fd, &buf[0], 1) != 1) {
return -1;
}if (read(current->fd, &buf[0], 1) != 1) { ... }
n = utf8_charlen(buf[0]);
if (n < 1) {
return -1;
}if (n < 1) { ... }
for (i = 1; i < n; i++) {
if (read(current->fd, &buf[i], 1) != 1) {
return -1;
}if (read(current->fd, &buf[i], 1) != 1) { ... }
}for (i = 1; i < n; i++) { ... }
utf8_tounicode(buf, &c);
return c;/* ... */
#else
return fd_read_char(current->fd, -1);
#endif
}fd_read (struct current *current) { ... }
/* ... */
static int queryCursor(struct current *current, int* cols)
{
struct esc_parser parser;
int ch;
assert(current->output == NULL);
outputChars(current, "\x1b[6n", -1);
initParseEscapeSeq(&parser, 'R');
while ((ch = fd_read_char(current->fd, 100)) > 0) {
switch (parseEscapeSequence(&parser, ch)) {
default:
continue;default
case EP_END:
if (parser.numprops == 2 && parser.props[1] < 1000) {
*cols = parser.props[1];
return 1;
}if (parser.numprops == 2 && parser.props[1] < 1000) { ... }
break;case EP_END:
case EP_ERROR:
break;case EP_ERROR:
}switch (parseEscapeSequence(&parser, ch)) { ... }
break;
}while ((ch = fd_read_char(current->fd, 100)) > 0) { ... }
return 0;
}queryCursor (struct current *current, int* cols) { ... }
/* ... */
static int getWindowSize(struct current *current)
{
struct winsize ws;
if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) == 0 && ws.ws_col != 0) {
current->cols = ws.ws_col;
return 0;
}if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) == 0 && ws.ws_col != 0) { ... }
/* ... */
if (current->cols == 0) {
int here;
current->cols = 80;
if (queryCursor (current, &here)) {
setCursorPos(current, 999);
/* ... */
if (queryCursor (current, ¤t->cols)) {
if (current->cols > here) {
setCursorPos(current, here);
}if (current->cols > here) { ... }
}if (queryCursor (current, ¤t->cols)) { ... }
}if (queryCursor (current, &here)) { ... }
}if (current->cols == 0) { ... }
return 0;
}getWindowSize (struct current *current) { ... }
/* ... */
static int check_special(int fd)
{
int c = fd_read_char(fd, 50);
int c2;
if (c < 0) {
return CHAR_ESCAPE;
}if (c < 0) { ... }
c2 = fd_read_char(fd, 50);
if (c2 < 0) {
return c2;
}if (c2 < 0) { ... }
if (c == '[' || c == 'O') {
switch (c2) {
case 'A':
return SPECIAL_UP;case 'A':
case 'B':
return SPECIAL_DOWN;case 'B':
case 'C':
return SPECIAL_RIGHT;case 'C':
case 'D':
return SPECIAL_LEFT;case 'D':
case 'F':
return SPECIAL_END;case 'F':
case 'H':
return SPECIAL_HOME;case 'H':
}switch (c2) { ... }
}if (c == '[' || c == 'O') { ... }
if (c == '[' && c2 >= '1' && c2 <= '8') {
c = fd_read_char(fd, 50);
if (c == '~') {
switch (c2) {
case '2':
return SPECIAL_INSERT;case '2':
case '3':
return SPECIAL_DELETE;case '3':
case '5':
return SPECIAL_PAGE_UP;case '5':
case '6':
return SPECIAL_PAGE_DOWN;case '6':
case '7':
return SPECIAL_HOME;case '7':
case '8':
return SPECIAL_END;case '8':
}switch (c2) { ... }
}if (c == '~') { ... }
while (c != -1 && c != '~') {
c = fd_read_char(fd, 50);
}while (c != -1 && c != '~') { ... }
}if (c == '[' && c2 >= '1' && c2 <= '8') { ... }
return SPECIAL_NONE;
}check_special (int fd) { ... }
/* ... */#endif
static void clearOutputHighlight(struct current *current)
{
int nohighlight = 0;
setOutputHighlight(current, &nohighlight, 1);
}{ ... }
static void outputControlChar(struct current *current, char ch)
{
int reverse = 7;
setOutputHighlight(current, &reverse, 1);
outputChars(current, "^", 1);
outputChars(current, &ch, 1);
clearOutputHighlight(current);
}{ ... }
#ifndef utf8_getchars
static int utf8_getchars(char *buf, int c)
{
#ifdef USE_UTF8
return utf8_fromunicode(buf, c);
#else
*buf = c;
return 1;/* ... */
#endif
}utf8_getchars (char *buf, int c) { ... }
/* ... */#endif
/* ... */
static int get_char(struct current *current, int pos)
{
if (pos >= 0 && pos < sb_chars(current->buf)) {
int c;
int i = utf8_index(sb_str(current->buf), pos);
(void)utf8_tounicode(sb_str(current->buf) + i, &c);
return c;
}if (pos >= 0 && pos < sb_chars(current->buf)) { ... }
return -1;
}{ ... }
static int char_display_width(int ch)
{
if (ch < ' ') {
return 2;
}if (ch < ' ') { ... }
else {
return utf8_width(ch);
}else { ... }
}{ ... }
#ifndef NO_COMPLETION
static linenoiseCompletionCallback *completionCallback = NULL;
static void *completionUserdata = NULL;
static int showhints = 1;
static linenoiseHintsCallback *hintsCallback = NULL;
static linenoiseFreeHintsCallback *freeHintsCallback = NULL;
static void *hintsUserdata = NULL;
static void beep() {
#ifdef USE_TERMIOS
fprintf(stderr, "\x7");
fflush(stderr);/* ... */
#endif
}{ ... }
static void freeCompletions(linenoiseCompletions *lc) {
size_t i;
for (i = 0; i < lc->len; i++)
free(lc->cvec[i]);
free(lc->cvec);
}{ ... }
static int completeLine(struct current *current) {
linenoiseCompletions lc = { 0, NULL };
int c = 0;
completionCallback(sb_str(current->buf),&lc,completionUserdata);
if (lc.len == 0) {
beep();
}if (lc.len == 0) { ... } else {
size_t stop = 0, i = 0;
while(!stop) {
if (i < lc.len) {
int chars = utf8_strlen(lc.cvec[i], -1);
refreshLineAlt(current, current->prompt, lc.cvec[i], chars);
}if (i < lc.len) { ... } else {
refreshLine(current);
}else { ... }
c = fd_read(current);
if (c == -1) {
break;
}if (c == -1) { ... }
switch(c) {
case '\t':
i = (i+1) % (lc.len+1);
if (i == lc.len) beep();
break;case '\t':
case CHAR_ESCAPE:
if (i < lc.len) {
refreshLine(current);
}if (i < lc.len) { ... }
stop = 1;
break;case CHAR_ESCAPE:
default:
if (i < lc.len) {
set_current(current,lc.cvec[i]);
}if (i < lc.len) { ... }
stop = 1;
break;default
}switch (c) { ... }
}while (!stop) { ... }
}else { ... }
freeCompletions(&lc);
return c;
}{ ... }
/* ... */
linenoiseCompletionCallback * linenoiseSetCompletionCallback(linenoiseCompletionCallback *fn, void *userdata) {
linenoiseCompletionCallback * old = completionCallback;
completionCallback = fn;
completionUserdata = userdata;
return old;
}{ ... }
void linenoiseAddCompletion(linenoiseCompletions *lc, const char *str) {
lc->cvec = (char **)realloc(lc->cvec,sizeof(char*)*(lc->len+1));
lc->cvec[lc->len++] = strdup(str);
}{ ... }
void linenoiseSetHintsCallback(linenoiseHintsCallback *callback, void *userdata)
{
hintsCallback = callback;
hintsUserdata = userdata;
}{ ... }
void linenoiseSetFreeHintsCallback(linenoiseFreeHintsCallback *callback)
{
freeHintsCallback = callback;
}{ ... }
/* ... */#endif
static const char *reduceSingleBuf(const char *buf, int availcols, int *cursor_pos)
{
/* ... */
int needcols = 0;
int pos = 0;
int new_cursor_pos = *cursor_pos;
const char *pt = buf;
DRL("reduceSingleBuf: availcols=%d, cursor_pos=%d\n", availcols, *cursor_pos);
while (*pt) {
int ch;
int n = utf8_tounicode(pt, &ch);
pt += n;
needcols += char_display_width(ch);
/* ... */
while (needcols >= availcols - 3) {
n = utf8_tounicode(buf, &ch);
buf += n;
needcols -= char_display_width(ch);
DRL_CHAR(ch);
new_cursor_pos--;
if (buf == pt) {
break;
}if (buf == pt) { ... }
}while (needcols >= availcols - 3) { ... }
if (pos++ == *cursor_pos) {
break;
}if (pos++ == *cursor_pos) { ... }
}while (*pt) { ... }
DRL("<snip>");
DRL_STR(buf);
DRL("\nafter reduce, needcols=%d, new_cursor_pos=%d\n", needcols, new_cursor_pos);
/* ... */
*cursor_pos = new_cursor_pos;
return buf;
}{ ... }
static int mlmode = 0;
void linenoiseSetMultiLine(int enableml)
{
mlmode = enableml;
}{ ... }
/* ... */
static int refreshShowHints(struct current *current, const char *buf, int availcols, int display)
{
int rc = 0;
if (showhints && hintsCallback && availcols > 0) {
int bold = 0;
int color = -1;
char *hint = hintsCallback(buf, &color, &bold, hintsUserdata);
if (hint) {
rc = 1;
if (display) {
const char *pt;
if (bold == 1 && color == -1) color = 37;
if (bold || color > 0) {
int props[3] = { bold, color, 49 };
setOutputHighlight(current, props, 3);
}if (bold || color > 0) { ... }
DRL("<hint bold=%d,color=%d>", bold, color);
pt = hint;
while (*pt) {
int ch;
int n = utf8_tounicode(pt, &ch);
int width = char_display_width(ch);
if (width >= availcols) {
DRL("<hinteol>");
break;
}if (width >= availcols) { ... }
DRL_CHAR(ch);
availcols -= width;
outputChars(current, pt, n);
pt += n;
}while (*pt) { ... }
if (bold || color > 0) {
clearOutputHighlight(current);
}if (bold || color > 0) { ... }
if (freeHintsCallback) freeHintsCallback(hint, hintsUserdata);
}if (display) { ... }
}if (hint) { ... }
}if (showhints && hintsCallback && availcols > 0) { ... }
return rc;
}{ ... }
#ifdef USE_TERMIOS
static void refreshStart(struct current *current)
{
assert(current->output == NULL);
current->output = sb_alloc();
}refreshStart (struct current *current) { ... }
static void refreshEnd(struct current *current)
{
IGNORE_RC(write(current->fd, sb_str(current->output), sb_len(current->output)));
sb_free(current->output);
current->output = NULL;
}refreshEnd (struct current *current) { ... }
static void refreshStartChars(struct current *current)
{
}refreshStartChars (struct current *current) { ... }
static void refreshNewline(struct current *current)
{
DRL("<nl>");
outputChars(current, "\n", 1);
}refreshNewline (struct current *current) { ... }
static void refreshEndChars(struct current *current)
{
}refreshEndChars (struct current *current) { ... }
/* ... */#endif
static void refreshLineAlt(struct current *current, const char *prompt, const char *buf, int cursor_pos)
{
int i;
const char *pt;
int displaycol;
int displayrow;
int visible;
int currentpos;
int notecursor;
int cursorcol = 0;
int cursorrow = 0;
int hint;
struct esc_parser parser;
#ifdef DEBUG_REFRESHLINE
dfh = fopen("linenoise.debuglog", "a");
#endif
getWindowSize(current);
refreshStart(current);
DRL("wincols=%d, cursor_pos=%d, nrows=%d, rpos=%d\n", current->cols, cursor_pos, current->nrows, current->rpos);
/* ... */
cursorDown(current, current->nrows - current->rpos - 1);
DRL("<cud=%d>", current->nrows - current->rpos - 1);
for (i = 0; i < current->nrows; i++) {
if (i) {
DRL("<cup>");
cursorUp(current, 1);
}if (i) { ... }
DRL("<clearline>");
cursorToLeft(current);
eraseEol(current);
}for (i = 0; i < current->nrows; i++) { ... }
DRL("\n");
pt = prompt;
displaycol = 0;
displayrow = 0;
visible = 1;
refreshStartChars(current);
while (*pt) {
int width;
int ch;
int n = utf8_tounicode(pt, &ch);
if (visible && ch == CHAR_ESCAPE) {
visible = 0;
initParseEscapeSeq(&parser, 'm');
DRL("<esc-seq-start>");
}if (visible && ch == CHAR_ESCAPE) { ... }
if (ch == '\n' || ch == '\r') {
refreshNewline(current);
displaycol = 0;
displayrow++;
}if (ch == '\n' || ch == '\r') { ... }
else {
width = visible * utf8_width(ch);
displaycol += width;
if (displaycol >= current->cols) {
/* ... */
refreshNewline(current);
displaycol = width;
displayrow++;
}if (displaycol >= current->cols) { ... }
DRL_CHAR(ch);
#ifdef USE_WINCONSOLE
if (visible) {
outputChars(current, pt, n);
}if (visible) { ... }
/* ... */#else
outputChars(current, pt, n);
#endif
}else { ... }
pt += n;
if (!visible) {
switch (parseEscapeSequence(&parser, ch)) {
case EP_END:
visible = 1;
setOutputHighlight(current, parser.props, parser.numprops);
DRL("<esc-seq-end,numprops=%d>", parser.numprops);
break;case EP_END:
case EP_ERROR:
DRL("<esc-seq-err>");
visible = 1;
break;case EP_ERROR:
}switch (parseEscapeSequence(&parser, ch)) { ... }
}if (!visible) { ... }
}while (*pt) { ... }
DRL("\nafter prompt: displaycol=%d, displayrow=%d\n", displaycol, displayrow);
if (mlmode == 0) {
/* ... */
pt = reduceSingleBuf(buf, current->cols - displaycol, &cursor_pos);
}if (mlmode == 0) { ... }
else {
pt = buf;
}else { ... }
currentpos = 0;
notecursor = -1;
while (*pt) {
int ch;
int n = utf8_tounicode(pt, &ch);
int width = char_display_width(ch);
if (currentpos == cursor_pos) {
notecursor = 1;
}if (currentpos == cursor_pos) { ... }
if (displaycol + width >= current->cols) {
if (mlmode == 0) {
DRL("<slmode>");
break;
}if (mlmode == 0) { ... }
refreshNewline(current);
displaycol = 0;
displayrow++;
}if (displaycol + width >= current->cols) { ... }
if (notecursor == 1) {
cursorcol = displaycol;
cursorrow = displayrow;
notecursor = 0;
DRL("<cursor>");
}if (notecursor == 1) { ... }
displaycol += width;
if (ch < ' ') {
outputControlChar(current, ch + '@');
}if (ch < ' ') { ... }
else {
outputChars(current, pt, n);
}else { ... }
DRL_CHAR(ch);
if (width != 1) {
DRL("<w=%d>", width);
}if (width != 1) { ... }
pt += n;
currentpos++;
}while (*pt) { ... }
if (notecursor) {
DRL("<cursor>");
cursorcol = displaycol;
cursorrow = displayrow;
}if (notecursor) { ... }
DRL("\nafter buf: displaycol=%d, displayrow=%d, cursorcol=%d, cursorrow=%d\n", displaycol, displayrow, cursorcol, cursorrow);
hint = refreshShowHints(current, buf, current->cols - displaycol, 1);
if (prompt == current->prompt && hint == 0) {
current->colsright = current->cols - displaycol;
current->colsleft = displaycol;
}if (prompt == current->prompt && hint == 0) { ... }
else {
current->colsright = 0;
current->colsleft = 0;
}else { ... }
DRL("\nafter hints: colsleft=%d, colsright=%d\n\n", current->colsleft, current->colsright);
refreshEndChars(current);
cursorUp(current, displayrow - cursorrow);
setCursorPos(current, cursorcol);
if (displayrow >= current->nrows) {
current->nrows = displayrow + 1;
}if (displayrow >= current->nrows) { ... }
current->rpos = cursorrow;
refreshEnd(current);
#ifdef DEBUG_REFRESHLINE
fclose(dfh);
#endif
}{ ... }
static void refreshLine(struct current *current)
{
refreshLineAlt(current, current->prompt, sb_str(current->buf), current->pos);
}{ ... }
static void set_current(struct current *current, const char *str)
{
sb_clear(current->buf);
sb_append(current->buf, str);
current->pos = sb_chars(current->buf);
}{ ... }
/* ... */
static int remove_char(struct current *current, int pos)
{
if (pos >= 0 && pos < sb_chars(current->buf)) {
int offset = utf8_index(sb_str(current->buf), pos);
int nbytes = utf8_index(sb_str(current->buf) + offset, 1);
int rc = 1;
/* ... */
if (current->output && current->pos == pos + 1 && current->pos == sb_chars(current->buf) && pos > 0) {
#ifdef USE_UTF8
char last = sb_str(current->buf)[offset];/* ... */
#else
char last = 0;
#endif
if (current->colsleft > 0 && (last & 0x80) == 0) {
current->colsleft--;
current->colsright++;
rc = 2;
}if (current->colsleft > 0 && (last & 0x80) == 0) { ... }
}if (current->output && current->pos == pos + 1 && current->pos == sb_chars(current->buf) && pos > 0) { ... }
sb_delete(current->buf, offset, nbytes);
if (current->pos > pos) {
current->pos--;
}if (current->pos > pos) { ... }
if (rc == 2) {
if (refreshShowHints(current, sb_str(current->buf), current->colsright, 0)) {
rc = 1;
}if (refreshShowHints(current, sb_str(current->buf), current->colsright, 0)) { ... }
else {
outputChars(current, "\b \b", 3);
}else { ... }
}if (rc == 2) { ... }
return rc;
return 1;
}if (pos >= 0 && pos < sb_chars(current->buf)) { ... }
return 0;
}{ ... }
/* ... */
static int insert_char(struct current *current, int pos, int ch)
{
if (pos >= 0 && pos <= sb_chars(current->buf)) {
char buf[MAX_UTF8_LEN + 1];
int offset = utf8_index(sb_str(current->buf), pos);
int n = utf8_getchars(buf, ch);
int rc = 1;
buf[n] = 0;
/* ... */
if (current->output && pos == current->pos && pos == sb_chars(current->buf)) {
int width = char_display_width(ch);
if (current->colsright > width) {
current->colsright -= width;
current->colsleft -= width;
rc = 2;
}if (current->colsright > width) { ... }
}if (current->output && pos == current->pos && pos == sb_chars(current->buf)) { ... }
sb_insert(current->buf, offset, buf);
if (current->pos >= pos) {
current->pos++;
}if (current->pos >= pos) { ... }
if (rc == 2) {
if (refreshShowHints(current, sb_str(current->buf), current->colsright, 0)) {
rc = 1;
}if (refreshShowHints(current, sb_str(current->buf), current->colsright, 0)) { ... }
else {
outputChars(current, buf, n);
}else { ... }
}if (rc == 2) { ... }
return rc;
}if (pos >= 0 && pos <= sb_chars(current->buf)) { ... }
return 0;
}{ ... }
/* ... */
static void capture_chars(struct current *current, int pos, int nchars)
{
if (pos >= 0 && (pos + nchars - 1) < sb_chars(current->buf)) {
int offset = utf8_index(sb_str(current->buf), pos);
int nbytes = utf8_index(sb_str(current->buf) + offset, nchars);
if (nbytes > 0) {
if (current->capture) {
sb_clear(current->capture);
}if (current->capture) { ... }
else {
current->capture = sb_alloc();
}else { ... }
sb_append_len(current->capture, sb_str(current->buf) + offset, nbytes);
}if (nbytes > 0) { ... }
}if (pos >= 0 && (pos + nchars - 1) < sb_chars(current->buf)) { ... }
}{ ... }
/* ... */
static int remove_chars(struct current *current, int pos, int n)
{
int removed = 0;
capture_chars(current, pos, n);
while (n-- && remove_char(current, pos)) {
removed++;
}while (n-- && remove_char(current, pos)) { ... }
return removed;
}{ ... }
/* ... */
static int insert_chars(struct current *current, int pos, const char *chars)
{
int inserted = 0;
while (*chars) {
int ch;
int n = utf8_tounicode(chars, &ch);
if (insert_char(current, pos, ch) == 0) {
break;
}if (insert_char(current, pos, ch) == 0) { ... }
inserted++;
pos++;
chars += n;
}while (*chars) { ... }
return inserted;
}{ ... }
/* ... */
static int reverseIncrementalSearch(struct current *current)
{
char rbuf[50];
char rprompt[80];
int rchars = 0;
int rlen = 0;
int searchpos = history_len - 1;
int c;
rbuf[0] = 0;
while (1) {
int n = 0;
const char *p = NULL;
int skipsame = 0;
int searchdir = -1;
snprintf(rprompt, sizeof(rprompt), "(reverse-i-search)'%s': ", rbuf);
refreshLineAlt(current, rprompt, sb_str(current->buf), current->pos);
c = fd_read(current);
if (c == ctrl('H') || c == CHAR_DELETE) {
if (rchars) {
int p = utf8_index(rbuf, --rchars);
rbuf[p] = 0;
rlen = strlen(rbuf);
}if (rchars) { ... }
continue;
}if (c == ctrl('H') || c == CHAR_DELETE) { ... }
#ifdef USE_TERMIOS
if (c == CHAR_ESCAPE) {
c = check_special(current->fd);
}if (c == CHAR_ESCAPE) { ... }
/* ... */#endif
if (c == ctrl('P') || c == SPECIAL_UP) {
if (searchpos > 0) {
searchpos--;
}if (searchpos > 0) { ... }
skipsame = 1;
}if (c == ctrl('P') || c == SPECIAL_UP) { ... }
else if (c == ctrl('N') || c == SPECIAL_DOWN) {
if (searchpos < history_len) {
searchpos++;
}if (searchpos < history_len) { ... }
searchdir = 1;
skipsame = 1;
}else if (c == ctrl('N') || c == SPECIAL_DOWN) { ... }
else if (c >= ' ') {
if (rlen >= (int)sizeof(rbuf) - MAX_UTF8_LEN) {
continue;
}if (rlen >= (int)sizeof(rbuf) - MAX_UTF8_LEN) { ... }
n = utf8_getchars(rbuf + rlen, c);
rlen += n;
rchars++;
rbuf[rlen] = 0;
searchpos = history_len - 1;
}else if (c >= ' ') { ... }
else {
break;
}else { ... }
for (; searchpos >= 0 && searchpos < history_len; searchpos += searchdir) {
p = strstr(history[searchpos], rbuf);
if (p) {
if (skipsame && strcmp(history[searchpos], sb_str(current->buf)) == 0) {
continue;
}if (skipsame && strcmp(history[searchpos], sb_str(current->buf)) == 0) { ... }
set_current(current,history[searchpos]);
current->pos = utf8_strlen(history[searchpos], p - history[searchpos]);
break;
}if (p) { ... }
}for (; searchpos >= 0 && searchpos < history_len; searchpos += searchdir) { ... }
if (!p && n) {
rchars--;
rlen -= n;
rbuf[rlen] = 0;
}if (!p && n) { ... }
}while (1) { ... }
if (c == ctrl('G') || c == ctrl('C')) {
set_current(current, "");
c = 0;
}if (c == ctrl('G') || c == ctrl('C')) { ... }
else if (c == ctrl('J')) {
c = 0;
}else if (c == ctrl('J')) { ... }
refreshLine(current);
return c;
}{ ... }
static int linenoiseEdit(struct current *current) {
int history_index = 0;
/* ... */
linenoiseHistoryAdd("");
set_current(current, "");
refreshLine(current);
while(1) {
int dir = -1;
int c = fd_read(current);
#ifndef NO_COMPLETION
/* ... */
if (c == '\t' && current->pos == sb_chars(current->buf) && completionCallback != NULL) {
c = completeLine(current);
}if (c == '\t' && current->pos == sb_chars(current->buf) && completionCallback != NULL) { ... }
/* ... */#endif
if (c == ctrl('R')) {
c = reverseIncrementalSearch(current);
}if (c == ctrl('R')) { ... }
#ifdef USE_TERMIOS
if (c == CHAR_ESCAPE) {
c = check_special(current->fd);
}if (c == CHAR_ESCAPE) { ... }
/* ... */#endif
if (c == -1) {
return sb_len(current->buf);
}if (c == -1) { ... }
switch(c) {
case SPECIAL_NONE:
break;case SPECIAL_NONE:
case '\r':
case '\n':
history_len--;
free(history[history_len]);
current->pos = sb_chars(current->buf);
if (mlmode || hintsCallback) {
showhints = 0;
refreshLine(current);
showhints = 1;
}if (mlmode || hintsCallback) { ... }
return sb_len(current->buf);case '\n':
case ctrl('C'):
errno = EAGAIN;
return -1;case ctrl('C'):
case ctrl('Z'):
#ifdef SIGTSTP
disableRawMode(current);
raise(SIGTSTP);
enableRawMode(current);
refreshLine(current);/* ... */
#endif
continue;case ctrl('Z'):
case CHAR_DELETE:
case ctrl('H'):
if (remove_char(current, current->pos - 1) == 1) {
refreshLine(current);
}if (remove_char(current, current->pos - 1) == 1) { ... }
break;case ctrl('H'):
case ctrl('D'):
if (sb_len(current->buf) == 0) {
history_len--;
free(history[history_len]);
return -1;
}if (sb_len(current->buf) == 0) { ... }
case ctrl('D'):
case SPECIAL_DELETE:
if (remove_char(current, current->pos) == 1) {
refreshLine(current);
}if (remove_char(current, current->pos) == 1) { ... }
break;case SPECIAL_DELETE:
case SPECIAL_INSERT:
/* ... */
break;case SPECIAL_INSERT:
case ctrl('W'):
{
int pos = current->pos;
while (pos > 0 && get_char(current, pos - 1) == ' ') {
pos--;
}while (pos > 0 && get_char(current, pos - 1) == ' ') { ... }
while (pos > 0 && get_char(current, pos - 1) != ' ') {
pos--;
}while (pos > 0 && get_char(current, pos - 1) != ' ') { ... }
if (remove_chars(current, pos, current->pos - pos)) {
refreshLine(current);
}if (remove_chars(current, pos, current->pos - pos)) { ... }
...}
break;case ctrl('W'):
case ctrl('T'):
if (current->pos > 0 && current->pos <= sb_chars(current->buf)) {
int fixer = (current->pos == sb_chars(current->buf));
c = get_char(current, current->pos - fixer);
remove_char(current, current->pos - fixer);
insert_char(current, current->pos - 1, c);
refreshLine(current);
}if (current->pos > 0 && current->pos <= sb_chars(current->buf)) { ... }
break;case ctrl('T'):
case ctrl('V'):
if (insert_char(current, current->pos, c)) {
refreshLine(current);
c = fd_read(current);
remove_char(current, current->pos - 1);
if (c > 0) {
insert_char(current, current->pos, c);
}if (c > 0) { ... }
refreshLine(current);
}if (insert_char(current, current->pos, c)) { ... }
break;case ctrl('V'):
case ctrl('B'):
case SPECIAL_LEFT:
if (current->pos > 0) {
current->pos--;
refreshLine(current);
}if (current->pos > 0) { ... }
break;case SPECIAL_LEFT:
case ctrl('F'):
case SPECIAL_RIGHT:
if (current->pos < sb_chars(current->buf)) {
current->pos++;
refreshLine(current);
}if (current->pos < sb_chars(current->buf)) { ... }
break;case SPECIAL_RIGHT:
case SPECIAL_PAGE_UP:
dir = history_len - history_index - 1;
goto history_navigation;case SPECIAL_PAGE_UP:
case SPECIAL_PAGE_DOWN:
dir = -history_index;
goto history_navigation;case SPECIAL_PAGE_DOWN:
case ctrl('P'):
case SPECIAL_UP:
dir = 1;
goto history_navigation;case SPECIAL_UP:
case ctrl('N'):
case SPECIAL_DOWN:
history_navigation:
if (history_len > 1) {
/* ... */
free(history[history_len - 1 - history_index]);
history[history_len - 1 - history_index] = strdup(sb_str(current->buf));
history_index += dir;
if (history_index < 0) {
history_index = 0;
break;
}if (history_index < 0) { ... } else if (history_index >= history_len) {
history_index = history_len - 1;
break;
}else if (history_index >= history_len) { ... }
set_current(current, history[history_len - 1 - history_index]);
refreshLine(current);
}if (history_len > 1) { ... }
break;case SPECIAL_DOWN:
case ctrl('A'):
case SPECIAL_HOME:
current->pos = 0;
refreshLine(current);
break;case SPECIAL_HOME:
case ctrl('E'):
case SPECIAL_END:
current->pos = sb_chars(current->buf);
refreshLine(current);
break;case SPECIAL_END:
case ctrl('U'):
if (remove_chars(current, 0, current->pos)) {
refreshLine(current);
}if (remove_chars(current, 0, current->pos)) { ... }
break;case ctrl('U'):
case ctrl('K'):
if (remove_chars(current, current->pos, sb_chars(current->buf) - current->pos)) {
refreshLine(current);
}if (remove_chars(current, current->pos, sb_chars(current->buf) - current->pos)) { ... }
break;case ctrl('K'):
case ctrl('Y'):
if (current->capture && insert_chars(current, current->pos, sb_str(current->capture))) {
refreshLine(current);
}if (current->capture && insert_chars(current, current->pos, sb_str(current->capture))) { ... }
break;case ctrl('Y'):
case ctrl('L'):
linenoiseClearScreen();
current->cols = 0;
current->rpos = 0;
refreshLine(current);
break;case ctrl('L'):
default:
if (c == '\t' || c >= ' ') {
if (insert_char(current, current->pos, c) == 1) {
refreshLine(current);
}if (insert_char(current, current->pos, c) == 1) { ... }
}if (c == '\t' || c >= ' ') { ... }
break;default
}switch (c) { ... }
}while (1) { ... }
return sb_len(current->buf);
}{ ... }
int linenoiseColumns(void)
{
struct current current;
current.output = NULL;
enableRawMode (¤t);
getWindowSize (¤t);
disableRawMode (¤t);
return current.cols;
}{ ... }
/* ... */
static stringbuf *sb_getline(FILE *fh)
{
stringbuf *sb = sb_alloc();
int c;
int n = 0;
while ((c = getc(fh)) != EOF) {
char ch;
n++;
if (c == '\r') {
continue;
}if (c == '\r') { ... }
if (c == '\n' || c == '\r') {
break;
}if (c == '\n' || c == '\r') { ... }
ch = c;
sb_append_len(sb, &ch, 1);
}while ((c = getc(fh)) != EOF) { ... }
if (n == 0) {
sb_free(sb);
return NULL;
}if (n == 0) { ... }
return sb;
}{ ... }
char *linenoise(const char *prompt)
{
int count;
struct current current;
stringbuf *sb;
memset(¤t, 0, sizeof(current));
if (enableRawMode(¤t) == -1) {
printf("%s", prompt);
fflush(stdout);
sb = sb_getline(stdin);
}if (enableRawMode(¤t) == -1) { ... }
else {
current.buf = sb_alloc();
current.pos = 0;
current.nrows = 1;
current.prompt = prompt;
count = linenoiseEdit(¤t);
disableRawMode(¤t);
printf("\n");
sb_free(current.capture);
if (count == -1) {
sb_free(current.buf);
return NULL;
}if (count == -1) { ... }
sb = current.buf;
}else { ... }
return sb ? sb_to_string(sb) : NULL;
}{ ... }
int linenoiseHistoryAddAllocated(char *line) {
if (history_max_len == 0) {
notinserted:
free(line);
return 0;
}if (history_max_len == 0) { ... }
if (history == NULL) {
history = (char **)calloc(sizeof(char*), history_max_len);
}if (history == NULL) { ... }
if (history_len > 0 && strcmp(line, history[history_len - 1]) == 0) {
goto notinserted;
}if (history_len > 0 && strcmp(line, history[history_len - 1]) == 0) { ... }
if (history_len == history_max_len) {
free(history[0]);
memmove(history,history+1,sizeof(char*)*(history_max_len-1));
history_len--;
}if (history_len == history_max_len) { ... }
history[history_len] = line;
history_len++;
return 1;
}{ ... }
int linenoiseHistoryAdd(const char *line) {
return linenoiseHistoryAddAllocated(strdup(line));
}{ ... }
int linenoiseHistoryGetMaxLen(void) {
return history_max_len;
}{ ... }
int linenoiseHistorySetMaxLen(int len) {
char **newHistory;
if (len < 1) return 0;
if (history) {
int tocopy = history_len;
newHistory = (char **)calloc(sizeof(char*), len);
if (len < tocopy) {
int j;
for (j = 0; j < tocopy-len; j++) free(history[j]);
tocopy = len;
}if (len < tocopy) { ... }
memcpy(newHistory,history+(history_len-tocopy), sizeof(char*)*tocopy);
free(history);
history = newHistory;
}if (history) { ... }
history_max_len = len;
if (history_len > history_max_len)
history_len = history_max_len;
return 1;
}{ ... }
/* ... */
int linenoiseHistorySave(const char *filename) {
FILE *fp = fopen(filename,"w");
int j;
if (fp == NULL) return -1;
for (j = 0; j < history_len; j++) {
const char *str = history[j];
while (*str) {
if (*str == '\\') {
fputs("\\\\", fp);
}if (*str == '\\') { ... }
else if (*str == '\n') {
fputs("\\n", fp);
}else if (*str == '\n') { ... }
else if (*str == '\r') {
fputs("\\r", fp);
}else if (*str == '\r') { ... }
else {
fputc(*str, fp);
}else { ... }
str++;
}while (*str) { ... }
fputc('\n', fp);
}for (j = 0; j < history_len; j++) { ... }
fclose(fp);
return 0;
}{ ... }
/* ... */
int linenoiseHistoryLoad(const char *filename) {
FILE *fp = fopen(filename,"r");
stringbuf *sb;
if (fp == NULL) return -1;
while ((sb = sb_getline(fp)) != NULL) {
char *buf = sb_to_string(sb);
char *dest = buf;
const char *src;
for (src = buf; *src; src++) {
char ch = *src;
if (ch == '\\') {
src++;
if (*src == 'n') {
ch = '\n';
}if (*src == 'n') { ... }
else if (*src == 'r') {
ch = '\r';
}else if (*src == 'r') { ... } else {
ch = *src;
}else { ... }
}if (ch == '\\') { ... }
*dest++ = ch;
}for (src = buf; *src; src++) { ... }
*dest = 0;
linenoiseHistoryAddAllocated(buf);
}while ((sb = sb_getline(fp)) != NULL) { ... }
fclose(fp);
return 0;
}{ ... }
/* ... */
char **linenoiseHistory(int *len) {
if (len) {
*len = history_len;
}if (len) { ... }
return history;
}{ ... }