#include #include #include #include #include #include #include #include #include #include #include "vip.h" #include "term.h" #include "bar.h" #include "editor.h" #include "row.h" #define CTRL_KEY(k) ((k) & 0x1f) enum editorKey { BACKSPACE = 127, ARROW_LEFT = 1000, ARROW_RIGHT, ARROW_UP, ARROW_DOWN, DEL_KEY, HOME_KEY, END_KEY, PAGE_UP, PAGE_DOWN }; editor vip; int read_key() { int nread; char c; 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] == '[') { if (seq[1] >= '0' && seq[1] <= '9') { if (read(STDIN_FILENO, &seq[2], 1) != 1) return '\x1b'; if (seq[2] == '~') { switch (seq[1]) { case '1': return HOME_KEY; case '3': return DEL_KEY; case '4': return END_KEY; case '5': return PAGE_UP; case '6': return PAGE_DOWN; case '7': return HOME_KEY; case '8': return END_KEY; } } } else { switch (seq[1]) { case 'A': return ARROW_UP; case 'B': return ARROW_DOWN; case 'C': return ARROW_RIGHT; case 'D': return ARROW_LEFT; case 'F': return END_KEY; case 'H': return HOME_KEY; } } } else if (seq[0] == 'O') { switch (seq[1]) { case 'F': return END_KEY; case 'H': return HOME_KEY; } } return '\x1b'; } else { return c; } } void open_editor(char *filename) { free(vip.filename); vip.filename = strdup(filename); FILE *fp = fopen(filename, "r"); if (!fp) { die("fopen"); } char *line = NULL; size_t linecap = 0; ssize_t len; while ((len = getline(&line, &linecap, fp)) != -1) { /* remove new line and carriage return at end of line */ while (len > 0 && (line[len - 1] == '\n' || line[len - 1] == '\r')) { len--; } insert_row(vip.rows, line, len); } free(line); fclose(fp); /* reset dirtiness as nothing is modified yet */ vip.dirty = 0; } void save_file() { if (vip.filename == NULL) { vip.filename = prompt_editor("Save as: %s (ESC to cancel)"); if (vip.filename == NULL) { set_status_bar_message("Save aborted"); return; } } int len; char *buf = rows_to_str(&len); int fd = open(vip.filename, O_RDWR | O_CREAT, 0644); if (fd != -1) { if (ftruncate(fd, len) != -1) { if (write(fd, buf, len) == len) { close(fd); free(buf); vip.dirty = 0; set_status_bar_message("\"%s\" %dL, %dB written", vip.filename, vip.rows, len); return; } } close(fd); } free(buf); set_status_bar_message("Error saving: %s", strerror(errno)); } void abAppend(struct abuf *ab, const char *s, int len) { char *new = realloc(ab->b, ab->len + len); if (new == NULL) return; memcpy(&new[ab->len], s, len); ab->b = new; ab->len += len; } void abFree(struct abuf *ab) { free(ab->b); } void scroll() { vip.rx = 0; if (vip.cy < vip.rows) { vip.rx = row_cx_to_rx(&vip.row[vip.cy], vip.cx); } if (vip.cy < vip.rowoff) { vip.rowoff = vip.cy; } if (vip.cy >= vip.rowoff + vip.screenrows) { vip.rowoff = vip.cy - vip.screenrows + 1; } if (vip.rx < vip.coloff) { vip.coloff = vip.rx; } if (vip.rx >= vip.coloff + vip.screencols) { vip.coloff = vip.rx - vip.screencols + 1; } } void draw_rows(struct abuf *ab) { for (int y = 0; y < vip.screenrows; y++) { int filerow = y + vip.rowoff; if (filerow >= vip.rows) { if (vip.rows == 0 && y == vip.screenrows / 3) { char welcome[11]; int welcomelen = snprintf(welcome, sizeof(welcome), "VIP v%s", VERSION); if (welcomelen > vip.screencols) welcomelen = vip.screencols; int padding = (vip.screencols - welcomelen) / 2; if (padding) { abAppend(ab, "~", 1); padding--; } while (padding--) abAppend(ab, " ", 1); abAppend(ab, welcome, welcomelen); } else { abAppend(ab, "~", 1); } } else { int len = vip.row[filerow].render_size - vip.coloff; if (len < 0) len = 0; if (len > vip.screencols) len = vip.screencols; abAppend(ab, &vip.row[filerow].render[vip.coloff], len); } abAppend(ab, "\x1b[K", 3); abAppend(ab, "\r\n", 2); } } void refresh_screen() { scroll(); struct abuf ab = ABUF_INIT; abAppend(&ab, "\x1b[?25l", 6); abAppend(&ab, "\x1b[H", 3); draw_rows(&ab); draw_status_bar(&ab); draw_message_bar(&ab); char buf[32]; snprintf(buf, sizeof(buf), "\x1b[%d;%dH", (vip.cy - vip.rowoff) + 1, (vip.rx - vip.coloff) + 1); abAppend(&ab, buf, strlen(buf)); abAppend(&ab, "\x1b[?25h", 6); write(STDOUT_FILENO, ab.b, ab.len); abFree(&ab); } char *prompt_editor(char *prompt) { size_t bufsize = 128; char *buf = malloc(bufsize); size_t buflen = 0; buf[0] = '\0'; while (1) { set_status_bar_message(prompt, buf); refresh_screen(); int c = read_key(); if (c == DEL_KEY || c == CTRL_KEY('h') || c == BACKSPACE) { if (buflen != 0) { buf[--buflen] = '\0'; } } else if (c == '\x1b') { set_status_bar_message(""); free(buf); return NULL; } else if (c == '\r') { if (buflen != 0) { set_status_bar_message(""); return buf; } } else if (!iscntrl(c) && c < 128) { if (buflen == bufsize - 1) { bufsize *= 2; buf = realloc(buf, bufsize); } buf[buflen++] = c; buf[buflen] = '\0'; } } } void move_cursor(int key) { row *row = (vip.cy >= vip.rows) ? NULL : &vip.row[vip.cy]; switch (key) { case ARROW_LEFT: if (vip.cx != 0) { vip.cx--; } break; case ARROW_RIGHT: if (row && vip.cx < row->size) { vip.cx++; } break; case ARROW_UP: if (vip.cy != 0) { vip.cy--; } break; case ARROW_DOWN: if (vip.cy < vip.rows) { vip.cy++; } break; } row = (vip.cy >= vip.rows) ? NULL : &vip.row[vip.cy]; int rowlen = row ? row->size : 0; if (vip.cx > rowlen) { vip.cx = rowlen; } } void process_key() { int c = read_key(); switch (c) { case '\r': insert_new_line(); break; case HOME_KEY: vip.cx = 0; break; case END_KEY: if (vip.cy < vip.rows) { vip.cx = vip.row[vip.cy].size; } break; case BACKSPACE: case CTRL_KEY('h'): case DEL_KEY: /* PASSTHROUGH */ if (vip.mode == INSERT) { if (c == DEL_KEY) move_cursor(ARROW_RIGHT); del_char(); } break; case PAGE_UP: case PAGE_DOWN: { if (c == PAGE_UP) { vip.cy = vip.rowoff; } else if (c == PAGE_DOWN) { vip.cy = vip.rowoff + vip.screenrows - 1; if (vip.cy > vip.rows) vip.cy = vip.rows; } int times = vip.screenrows; while (times--) move_cursor(c == PAGE_UP ? ARROW_UP : ARROW_DOWN); } break; case ARROW_UP: case ARROW_DOWN: case ARROW_LEFT: case ARROW_RIGHT: if (vip.mode == INSERT) { move_cursor(c); } break; case CTRL_KEY('l'): case '\x1b': if (vip.mode == INSERT) { vip.mode = NORMAL; move_cursor(ARROW_LEFT); } break; case 'i': if (vip.mode == NORMAL) { vip.mode = INSERT; } break; case ':': /* PASSTHROUGH */ if (vip.mode == NORMAL) { char *cmd = prompt_editor(":%s"); switch (cmd[0]) { case 'q': if (cmd[1] == '!') { write(STDOUT_FILENO, "\x1b[2J", 4); write(STDOUT_FILENO, "\x1b[H", 3); exit(0); break; } else { if (vip.dirty) { set_status_bar_message("No write since last change for buffer \"%s\"", vip.filename); return; } write(STDOUT_FILENO, "\x1b[2J", 4); write(STDOUT_FILENO, "\x1b[H", 3); exit(0); break; } case 'w': save_file(); } } case 'k': /* PASSTHROUGH */ if (vip.mode != INSERT) { move_cursor(ARROW_UP); break; } case 'j': /* PASSTHROUGH */ if (vip.mode != INSERT) { move_cursor(ARROW_DOWN); break; } case 'l': /* PASSTHROUGH */ if (vip.mode != INSERT) { move_cursor(ARROW_RIGHT); break; } case 'h': /* PASSTHROUGH */ if (vip.mode != INSERT) { move_cursor(ARROW_LEFT); break; } case 'o': /* PASSTHROUGH */ if (vip.mode == NORMAL) { shift_new_line(); vip.mode = INSERT; break; } default: if (vip.mode == INSERT) { insert_char(c); } break; } } void init_editor() { vip.cx = 0; vip.cy = 0; vip.rx = 0; vip.rowoff = 0; vip.coloff = 0; vip.rows = 0; vip.row = NULL; vip.dirty = 0; vip.mode = NORMAL; vip.filename = NULL; vip.statusmsg[0] = '\0'; vip.statusmsg_time = 0; if (get_window_size(&vip.screenrows, &vip.screencols) == -1) { die("get_window_size"); } vip.screenrows -= 2; } int main(int argc, char **argv) { setup_term(); init_editor(); if (argc >= 2) { open_editor(argv[1]); } set_status_bar_message(":w - Save, :q - Quit"); while (1) { refresh_screen(); process_key(); } return 0; }