-
Notifications
You must be signed in to change notification settings - Fork 0
/
kilo.c
298 lines (247 loc) · 7.34 KB
/
kilo.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
/*** Includes ***/
#include <ctype.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <termios.h>
#include <unistd.h>
/*** Defines ***/
#define KILO_VERSION "0.0.1"
#define CTRL_KEY(k) ((k) & 0x1f)
enum editorKey {
ARROW_LEFT = 1000,
ARROW_RIGHT,
ARROW_UP,
ARROW_DOWN
};
/*** Data ***/
struct editorConfig {
int cx, cy;
int screenrows;
int screencols;
/* Original copy of terminal attributes */
struct termios orig_termios;
};
struct editorConfig E;
/*** Terminal ***/
void die(const char *s) {
/* Clean up terminal (clear & reposition) */
write(STDOUT_FILENO, "\x1b[2J", 4);
write(STDOUT_FILENO, "\x1b[H", 3);
/* Print error and exit */
perror(s);
exit(1);
}
void disableRawMode() {
/* Restore original terminal attributes on exit */
if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &E.orig_termios) == -1)
die("tcsetattr");
}
void enableRawMode() {
/* Read in terminal attributes */
if (tcgetattr(STDIN_FILENO, &E.orig_termios) == -1) die("tcgetattr");
/* Register restore function */
atexit(disableRawMode);
struct termios raw = E.orig_termios;
/* Disable flow control, CRNL & misc legacy (BRKINT, INPCK, ISTRIP) */
raw.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON);
/* Disable output processing */
raw.c_oflag &= ~(OPOST);
/* Set char size to 8 bits-per-byte */
raw.c_cflag |= (CS8);
/* Disable echo, SIGINT/SIGSTP & canonical mode */
raw.c_lflag &= ~(ECHO | ICANON | IEXTEN | ISIG);
/* Set timeouts for read() to prevent input blocking - fails on Win */
raw.c_cc[VMIN] = 0;
raw.c_cc[VTIME] = 1;
/* Set new terminal attributes - discarding unread input w/ TCSAFLUSH */
if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw) == -1) die("tcsetattr");
}
int editorReadKey() {
int nread;
char c;
/* Read and return a single key press from stdin */
while ((nread = read(STDIN_FILENO, &c, 1)) != 1) {
if (nread == -1 && errno != EAGAIN) die("read");
}
if (c == '\x1b') {
char seq[3];
if (read(STDIN_FILENO, &seq[0], 1) != 1) return '\x1b';
if (read(STDIN_FILENO, &seq[1], 1) != 1) return '\x1b';
if (seq[0] == '[') {
switch (seq[1]) {
case 'A': return ARROW_UP;
case 'B': return ARROW_DOWN;
case 'C': return ARROW_RIGHT;
case 'D': return ARROW_LEFT;
}
}
return '\x1b';
} else {
return c;
}
}
int getCursorPosition(int *rows, int *cols) {
char buf[32];
unsigned int i = 0;
/* Request cursor position */
if (write(STDOUT_FILENO, "\x1b[6n", 4) != 4) return -1;
/* Parse response until 'R' received */
while (i < sizeof(buf) - 1 ) {
if (read(STDIN_FILENO, &buf[i], 1) != 1) break;
if (buf[i] == 'R') break;
i++;
}
/* Set final byte to null */
buf[i] = '\0';
/* Check for escape sequence in response */
if (buf[0] != '\x1b' || buf[1] != '[') return -1;
/* Parse window size integers after escape sequence */
if (sscanf(&buf[2], "%d;%d", rows, cols) != 2) return -1;
return 0;
}
int getWindowSize(int *rows, int *cols) {
struct winsize ws;
/* Get window size from ioctl, checking for 0 error */
if (ioctl(STDERR_FILENO, TIOCGWINSZ, &ws) == -1 || ws.ws_col == 0) {
/* Fallback if ioctl doesn't return values for some systems */
/* Set cursor to bottom right corner and request cursor position */
if (write(STDOUT_FILENO, "\x1b[999C\x1b[999B", 12) != 12) return -1;
return getCursorPosition(rows, cols);
} else {
*cols = ws.ws_col;
*rows = ws.ws_row;
return 0;
}
}
/*** Append Buffer ***/
struct abuf {
char *b;
int len;
};
#define ABUF_INIT {NULL, 0}
void abAppend(struct abuf *ab, const char *s, int len) {
/* Get block of memory equivalent to existing string plus appended item */
char *new = realloc(ab->b, ab->len + len);
if (new == NULL) return;
/* Copy s to the end of new buffer */
memcpy(&new[ab->len], s, len);
/* Update pointers */
ab->b = new;
ab->len += len;
}
void abFree(struct abuf *ab) {
/* Free memory */
free(ab->b);
}
/*** Output ***/
void editorDrawRows(struct abuf *ab) {
int y;
/* Loop to draw row tildes */
for (y = 0; y < E.screenrows; y++) {
/* Print welcome message */
if (y == E.screenrows / 3) {
char welcome[80];
int welcomelen = snprintf(welcome, sizeof(welcome),
"KILO editor -- version %s", KILO_VERSION);
/* Truncate string if bigger than window width */
if (welcomelen > E.screencols) welcomelen = E.screencols;
/* Centre the string - div screen width by 2, sub half of string's length */
int padding = (E.screencols - welcomelen) / 2;
if (padding) {
/* First char should be a tilde */
abAppend(ab, "~", 1);
padding--;
}
while (padding--) abAppend(ab, " ", 1);
abAppend(ab, welcome, welcomelen);
} else {
abAppend(ab, "~", 1);
}
/* VT100 Clear line to right of cursor */
abAppend(ab, "\x1b[K", 3);
if (y < E.screenrows - 1) {
abAppend(ab, "\r\n", 2);
}
}
}
void editorRefreshScreen() {
struct abuf ab = ABUF_INIT;
/* Hide cursor to prevent flicker */
abAppend(&ab, "\x1b[?25l", 6);
/* VT100 Reset Cursor Position */
abAppend(&ab, "\x1b[H", 3);
/* Draw rows to buffer */
editorDrawRows(&ab);
/* Set cursor to E.cx, E.cy */
char buf[32];
snprintf(buf, sizeof(buf), "\x1b[%d;%dH", E.cy + 1, E.cx + 1);
abAppend(&ab, buf, strlen(buf));
/* Reset cursor location and show/hide status */
abAppend(&ab, "\x1b[?25h", 6);
/* Write buffer to screen then free its memory */
write(STDOUT_FILENO, ab.b, ab.len);
abFree(&ab);
}
/*** Input ***/
void editorMoveCursor(int key) {
switch (key) {
case ARROW_LEFT:
if (E.cx != 0) {
E.cx--;
}
break;
case ARROW_RIGHT:
if (E.cx != E.screencols -1) {
E.cx++;
}
break;
case ARROW_UP:
if (E.cy != 0) {
E.cy--;
}
break;
case ARROW_DOWN:
if (E.cy != E.screenrows - 1) {
E.cy++;
}
break;
}
}
void editorProcessKeypress() {
int c = editorReadKey();
/* Handle key */
switch (c) {
case CTRL_KEY('q'):
/* Clear screen, reset cursor */
write(STDOUT_FILENO, "\x1b[2J", 4);
write(STDOUT_FILENO, "\x1b[H", 3);
exit(0);
break;
case ARROW_UP:
case ARROW_DOWN:
case ARROW_LEFT:
case ARROW_RIGHT:
editorMoveCursor(c);
break;
}
}
/*** Init ***/
void initEditor() {
E.cx = 0;
E.cy = 0;
/* Get window size and store in global config */
if (getWindowSize(&E.screenrows, &E.screencols) == -1) die("getWindowSize");
}
int main() {
enableRawMode();
initEditor();
/* Read byte(s) from stdin into c */
while (1) {
editorRefreshScreen();
editorProcessKeypress();
}
return 0;
}