-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathread-line.c
645 lines (559 loc) · 15.3 KB
/
read-line.c
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
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <regex.h>
#include <dirent.h>
#include <stdbool.h>
#define MAX_BUFFER_LINE 2048
#define MAX_HISTORY_NO 256
#define MAX_DIR 128
extern void tty_raw_mode(void);
// Buffer where line is stored
int line_length;
char line_buffer[MAX_BUFFER_LINE];
int cursor_index;
// Simple history array
// This history does not change.
// Yours have to be updated.
int history_index = 0;
int history_no = 0;
char * history [MAX_HISTORY_NO];
int history_length = sizeof(history)/sizeof(char *);
int maxEntries = 20;
int nEntries = 0;
void read_line_print_usage()
{
char * usage = "\n"
" ctrl-? Print usage\n"
" Backspace Deletes last character\n"
" up arrow See last command in the history\n";
write(1, usage, strlen(usage));
}
void insertArray(char ***array, char *insert) {
if(nEntries == maxEntries) {
maxEntries *= 2;
*array = (char **) realloc(*array, maxEntries * sizeof(char *));
}
array[0][nEntries] = insert;
nEntries++;
return;
}
/*
* Input a line with some basic editing.
*/
char * read_line() {
// Set terminal in raw mode
tty_raw_mode();
line_length = 0;
cursor_index = 0;
// Read one line until enter is typed
while (1) {
// Read one character in raw mode
char ch;
read(0, &ch, 1);
if(ch == 9) {
// Get the last word to complete if there is multiple words
char *s = strrchr(line_buffer, ' ');
char *reg;
// If there are is only one word or no words
if(s == NULL) {
reg = (char *)malloc(2*strlen(line_buffer) + 10);
char *a = line_buffer;
char *r = reg;
*r = '^';
r++;
while(*a != '\0') {
if(*a == '*') {
*r = '.';
r++;
*r = '*';
r++;
} else if(*a == '?') {
*r = '.';
r++;
} else if(*a == '.') {
*r = '\\';
r++;
*r = '.';
r++;
} else {
*r = *a;
r++;
}
a++;
}
*r = '.';
r++;
*r = '*';
r++;
*r = '$';
r++;
*r = '\0';
} else {
// If there are multiple words
s++;
reg = (char *)malloc(2*strlen(line_buffer) + 10);
char *a = s;
if(strrchr(s, '/') != NULL) {
a = strrchr(s, '/');
a++;
}
char *r = reg;
*r = '^';
r++;
while(*a != '\0') {
if(*a == '*') {
*r = '.';
r++;
*r = '*';
r++;
} else if(*a == '?') {
*r = '.';
r++;
} else if(*a == '.') {
*r = '\\';
r++;
*r = '.';
r++;
} else {
*r = *a;
r++;
}
a++;
}
*r = '.';
r++;
*r = '*';
r++;
*r = '$';
r++;
*r = '\0';
}
//Compile regex
regex_t re;
regmatch_t pmatch[1];
if(regcomp(&re, reg, 0) != 0) {
perror("regex compile");
}
free(reg);
reg = NULL;
char d[MAX_DIR];
//Open directory
if(s == NULL) {
d[0] = '.';
d[1] = '\0';
} else if(strrchr(s, '/') != NULL) {
char *temp = strrchr(s, '/');
strncpy(d, s, temp - s);
d[temp-s+1] = '\0';
} else {
d[0] = '.';
d[1] = '\0';
}
DIR *dir = opendir(d);
if(dir == NULL) {
regfree(&re);
closedir(dir);
perror("opendir");
}
//Array to store matches
char **matches = (char **) malloc(maxEntries * sizeof(char *));
//Search current directory
struct dirent *ent;
while((ent = readdir(dir)) != NULL) {
if(regexec(&re, ent->d_name, sizeof(pmatch)/sizeof(pmatch[0]), pmatch, 0) == 0) {
insertArray(&matches, ent->d_name);
}
}
if(nEntries == 0) {
//If matches are zero do nothing
continue;
} else if(nEntries == 1) {
//If there is one match then autocomplete it fully
char *temp;
if(s == NULL) {
temp = &matches[0][line_length];
} else {
temp = &matches[0][strlen(s)];
}
for(int i = 0; i < strlen(temp); i++) {
write(1,&temp[i],1);
// add char to buffer
line_buffer[line_length] = temp[i];
line_length++;
cursor_index++;
}
} else {
//If there are multiple matches then autocomplete to the last common character
char temp;
int j;
if(s == NULL) {
j = strlen(line_buffer);
} else {
if(strrchr(s, '/') != NULL) {
char *temp1 = strrchr(s, '/');
j = strlen(s) - (temp1-s) - 1;
} else {
j = strlen(s);
}
}
int x = j;
int x1 = 0;
int x2 = 0;
bool b = true;
while(b) {
for(int i = 0; i < nEntries; i++) {
if(i == 0) {
temp = matches[i][j];
}
if(matches[i][j] == '\0' || matches[i][j] != temp) {
x1 = i;
x2 = j;
b = false;
break;
}
}
if(b) {
j++;
}
}
if(x == j) {
printf("\n");
for(int i = 0; i < nEntries-1; i++) {
printf("%s\t", matches[i]);
}
printf("%s\n", matches[nEntries-1]);
printf("%s %s", getenv("PROMPT"), line_buffer);
fflush(stdout);
free(matches);
matches = NULL;
regfree(&re);
closedir(dir);
maxEntries = 20;
nEntries = 0;
continue;
} else {
for(int i = x; i < j; i++) {
write(1,&matches[x1][i],1);
// add char to buffer
line_buffer[line_length]=matches[x1][i];
line_length++;
cursor_index++;
}
}
}
free(matches);
matches = NULL;
regfree(&re);
closedir(dir);
maxEntries = 20;
nEntries = 0;
} else if(ch == 4) {
if (cursor_index == 0 && line_length == 1) {
char bp = 8;
line_length--;
line_buffer[0] = '\0';
ch = ' ';
write(1,&ch,1);
write(1, &bp, 1);
} else if(cursor_index != line_length) {
char temp = ' ';
char bp = 8;
char temp_buffer[MAX_BUFFER_LINE];
for(int i = 0; i < cursor_index; i++) {
temp_buffer[i] = line_buffer[i];
}
for(int i = cursor_index; i < line_length - 1; i++) {
temp_buffer[i] = line_buffer[i+1];
}
temp_buffer[line_length] = '\0';
strncpy(line_buffer, temp_buffer, line_length);
line_length--;
for(int i = cursor_index; i < line_length; i++) {
write(1, &temp, 1);
}
for(int i = line_length; i > 0; i--) {
ch = ' ';
write(1,&ch,1);
write(1, &bp, 1);
write(1, &bp, 1);
}
for(int i = 0; i < line_length; i++) {
write(1, &temp_buffer[i], 1);
}
for(int i = line_length-1; i>= cursor_index; i--) {
write(1, &bp, 1);
}
} else {
continue;
}
} else if(ch == 1) {
while(cursor_index > 0) {
cursor_index--;
ch = 8;
write(1,&ch,1);
}
} else if(ch == 5) {
while(cursor_index < line_length) {
cursor_index++;
write(1,&line_buffer[cursor_index-1],1);
}
} else if(ch == 127 || ch == 8) {
// <backspace> was typed. Remove previous character read.
if(cursor_index - 1 >= 0) {
if (cursor_index != line_length) {
char temp = ' ';
char bp = 8;
char temp_buffer[MAX_BUFFER_LINE];
for(int i = 0; i < cursor_index-1; i++) {
temp_buffer[i] = line_buffer[i];
}
for(int i = cursor_index; i < line_length; i++) {
temp_buffer[i-1] = line_buffer[i];
}
temp_buffer[line_length-1] = '\0';
strncpy(line_buffer, temp_buffer, line_length);
line_length--;
cursor_index--;
for(int i = cursor_index; i < line_length; i++) {
write(1, &temp, 1);
}
for(int i = line_length; i >= 0; i--) {
write(1, &bp, 1);
ch = ' ';
write(1,&ch,1);
write(1, &bp, 1);
}
for(int i = 0; i < line_length; i++) {
write(1, &temp_buffer[i], 1);
}
for(int i = line_length-1; i>= cursor_index; i--) {
write(1, &bp, 1);
}
} else {
// Go back one character
ch = 8;
write(1,&ch,1);
// Write a space to erase the last character read
ch = ' ';
write(1,&ch,1);
// Go back one character
ch = 8;
write(1,&ch,1);
line_buffer[line_length-1] = '\0';
line_length--;
cursor_index--;
}
}
} else if (ch>=32) {
// It is a printable character
// Do echo
// If max number of character reached return
if (line_length==MAX_BUFFER_LINE-2) break;
if(cursor_index != line_length) {
char temp = ' ';
char bp = 8;
char temp_buffer[MAX_BUFFER_LINE];
for(int i = 0; i < cursor_index; i++) {
temp_buffer[i] = line_buffer[i];
}
temp_buffer[cursor_index] = ch;
for(int i = cursor_index+1; i < line_length+1; i++) {
temp_buffer[i] = line_buffer[i-1];
}
temp_buffer[line_length+1] = '\0';
strncpy(line_buffer, temp_buffer, line_length+1);
line_length++;
cursor_index++;
for(int i = cursor_index; i < line_length+2; i++) {
write(1, &temp, 1);
}
for(int i = line_length; i >= 0; i--) {
write(1, &bp, 1);
ch = ' ';
write(1,&ch,1);
write(1, &bp, 1);
}
for(int i = 0; i < line_length; i++) {
write(1, &temp_buffer[i], 1);
}
for(int i = line_length-1; i>= cursor_index; i--) {
write(1, &bp, 1);
}
} else {
write(1,&ch,1);
// add char to buffer
line_buffer[line_length]=ch;
line_length++;
cursor_index++;
}
} else if (ch==10) {
// <Enter> was typed. Return line
history_index = history_no;
// Print newline
write(1,&ch,1);
break;
} else if (ch == 31) {
// ctrl-?
read_line_print_usage();
line_buffer[0]=0;
line_length = 0;
cursor_index = 0;
break;
} else if (ch==27) {
// Escape sequence. Read two chars more
//
// HINT: Use the program "keyboard-example" to
// see the ascii code for the different chars typed.
//
char ch1;
char ch2;
read(0, &ch1, 1);
read(0, &ch2, 1);
if (ch1==91 && ch2==65) {
if(history_index != 0) {
// Up arrow. Print next line in history.
char temp = ' ';
char bp = 8;
for(int i = cursor_index; i < line_length; i++) {
write(1, &temp, 1);
}
for(int i = line_length; i > 0; i--) {
write(1, &bp, 1);
ch = ' ';
write(1,&ch,1);
write(1, &bp, 1);
}
cursor_index = 0;
line_length = 0;
history_index--;
// Copy line from history
strcpy(line_buffer, history[history_index]);
line_length = strlen(line_buffer);
cursor_index = strlen(line_buffer);
// echo line
write(1, line_buffer, line_length);
}
} else if (ch1 == 91 && ch2 == 66) {
//Down Key
if(history_index != history_no) {
if(history_index == history_no - 1) {
char temp = ' ';
char bp = 8;
for(int i = cursor_index; i < line_length; i++) {
write(1, &temp, 1);
}
for(int i = line_length; i > 0; i--) {
write(1, &bp, 1);
ch = ' ';
write(1,&ch,1);
write(1, &bp, 1);
}
cursor_index = 0;
line_length = 0;
history_index++;
} else {
// Up arrow. Print next line in history.
char temp = ' ';
char bp = 8;
for(int i = cursor_index; i < line_length; i++) {
write(1, &temp, 1);
}
for(int i = line_length; i > 0; i--) {
write(1, &bp, 1);
ch = ' ';
write(1,&ch,1);
write(1, &bp, 1);
}
cursor_index = 0;
line_length = 0;
history_index++;
// Copy line from history
strcpy(line_buffer, history[history_index]);
line_length = strlen(line_buffer);
cursor_index = strlen(line_buffer);
// echo line
write(1, line_buffer, line_length);
}
}
} else if (ch1 == 91 && ch2 == 68) {
//Left Key
if(cursor_index - 1 >= 0) {
cursor_index--;
ch = 8;
write(1,&ch,1);
}
} else if (ch1 == 91 && ch2 == 67) {
//Right Key
if(cursor_index + 1 <= line_length) {
cursor_index++;
write(1,&line_buffer[cursor_index-1],1);
}
} else if (ch1==91 && ch2 == 51) {
char temp;
read(0, &temp, 1);
//Delete Key
if (cursor_index == 0 && line_length == 1) {
char bp = 8;
line_length--;
line_buffer[0] = '\0';
ch = ' ';
write(1,&ch,1);
write(1, &bp, 1);
} else if(cursor_index != line_length) {
char temp = ' ';
char bp = 8;
char temp_buffer[MAX_BUFFER_LINE];
for(int i = 0; i < cursor_index; i++) {
temp_buffer[i] = line_buffer[i];
}
for(int i = cursor_index; i < line_length - 1; i++) {
temp_buffer[i] = line_buffer[i+1];
}
temp_buffer[line_length] = '\0';
strncpy(line_buffer, temp_buffer, line_length);
line_length--;
for(int i = cursor_index; i < line_length; i++) {
write(1, &temp, 1);
}
for(int i = line_length; i > 0; i--) {
ch = ' ';
write(1,&ch,1);
write(1, &bp, 1);
write(1, &bp, 1);
}
for(int i = 0; i < line_length; i++) {
write(1, &temp_buffer[i], 1);
}
for(int i = line_length-1; i>= cursor_index; i--) {
write(1, &bp, 1);
}
} else {
continue;
}
}
}
}
// Add eol and null char at the end of string
line_buffer[line_length] = 10;
line_length++;
line_buffer[line_length] = 0;
return line_buffer;
}
void setNextCommand(char *command) {
if(command[0] == '\0') {
return;
}
if(history_no == MAX_HISTORY_NO) {
for(int i = 0; i < MAX_HISTORY_NO; i++) {
free(history[i]);
history[i] = NULL;
}
history_no = 0;
history_index = 0;
}
history[history_no] = command;
history_no++;
history_index = history_no;
}