Rob Landley | e5e1a10 | 2006-06-21 01:15:36 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 2 | /* |
| 3 | * tiny vi.c: A small 'vi' clone |
| 4 | * Copyright (C) 2000, 2001 Sterling Huxley <sterling@europa.com> |
| 5 | * |
Paul Fox | dbf935d | 2006-03-27 20:29:33 +0000 | [diff] [blame] | 6 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 9 | /* |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 10 | * Things To Do: |
| 11 | * EXINIT |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 12 | * $HOME/.exrc and ./.exrc |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 13 | * add magic to search /foo.*bar |
| 14 | * add :help command |
| 15 | * :map macros |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 16 | * if mark[] values were line numbers rather than pointers |
| 17 | * it would be easier to change the mark when add/delete lines |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 18 | * More intelligence in refresh() |
| 19 | * ":r !cmd" and "!cmd" to filter text through an external command |
| 20 | * A true "undo" facility |
| 21 | * An "ex" line oriented mode- maybe using "cmdedit" |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 22 | */ |
| 23 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 24 | #include "libbb.h" |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 25 | |
Paul Fox | 35e9c5d | 2008-03-06 16:26:12 +0000 | [diff] [blame] | 26 | /* the CRASHME code is unmaintained, and doesn't currently build */ |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 27 | #define ENABLE_FEATURE_VI_CRASHME 0 |
| 28 | |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 29 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 30 | #if ENABLE_LOCALE_SUPPORT |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 31 | |
| 32 | #if ENABLE_FEATURE_VI_8BIT |
| 33 | #define Isprint(c) isprint(c) |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 34 | #else |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 35 | #define Isprint(c) (isprint(c) && (unsigned char)(c) < 0x7f) |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 36 | #endif |
| 37 | |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 38 | #else |
| 39 | |
| 40 | /* 0x9b is Meta-ESC */ |
| 41 | #if ENABLE_FEATURE_VI_8BIT |
| 42 | #define Isprint(c) ((unsigned char)(c) >= ' ' && (c) != 0x7f && (unsigned char)(c) != 0x9b) |
| 43 | #else |
| 44 | #define Isprint(c) ((unsigned char)(c) >= ' ' && (unsigned char)(c) < 0x7f) |
| 45 | #endif |
| 46 | |
| 47 | #endif |
| 48 | |
| 49 | |
Denis Vlasenko | e8a0788 | 2007-06-10 15:08:44 +0000 | [diff] [blame] | 50 | enum { |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 51 | MAX_TABSTOP = 32, // sanity limit |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 52 | // User input len. Need not be extra big. |
| 53 | // Lines in file being edited *can* be bigger than this. |
| 54 | MAX_INPUT_LEN = 128, |
| 55 | // Sanity limits. We have only one buffer of this size. |
| 56 | MAX_SCR_COLS = CONFIG_FEATURE_VI_MAX_LEN, |
| 57 | MAX_SCR_ROWS = CONFIG_FEATURE_VI_MAX_LEN, |
Denis Vlasenko | e8a0788 | 2007-06-10 15:08:44 +0000 | [diff] [blame] | 58 | }; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 59 | |
| 60 | // Misc. non-Ascii keys that report an escape sequence |
Denis Vlasenko | 2a51af2 | 2007-03-21 22:31:24 +0000 | [diff] [blame] | 61 | #define VI_K_UP (char)128 // cursor key Up |
| 62 | #define VI_K_DOWN (char)129 // cursor key Down |
| 63 | #define VI_K_RIGHT (char)130 // Cursor Key Right |
| 64 | #define VI_K_LEFT (char)131 // cursor key Left |
| 65 | #define VI_K_HOME (char)132 // Cursor Key Home |
| 66 | #define VI_K_END (char)133 // Cursor Key End |
| 67 | #define VI_K_INSERT (char)134 // Cursor Key Insert |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 68 | #define VI_K_DELETE (char)135 // Cursor Key Insert |
| 69 | #define VI_K_PAGEUP (char)136 // Cursor Key Page Up |
| 70 | #define VI_K_PAGEDOWN (char)137 // Cursor Key Page Down |
| 71 | #define VI_K_FUN1 (char)138 // Function Key F1 |
| 72 | #define VI_K_FUN2 (char)139 // Function Key F2 |
| 73 | #define VI_K_FUN3 (char)140 // Function Key F3 |
| 74 | #define VI_K_FUN4 (char)141 // Function Key F4 |
| 75 | #define VI_K_FUN5 (char)142 // Function Key F5 |
| 76 | #define VI_K_FUN6 (char)143 // Function Key F6 |
| 77 | #define VI_K_FUN7 (char)144 // Function Key F7 |
| 78 | #define VI_K_FUN8 (char)145 // Function Key F8 |
| 79 | #define VI_K_FUN9 (char)146 // Function Key F9 |
| 80 | #define VI_K_FUN10 (char)147 // Function Key F10 |
| 81 | #define VI_K_FUN11 (char)148 // Function Key F11 |
| 82 | #define VI_K_FUN12 (char)149 // Function Key F12 |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 83 | |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 84 | /* vt102 typical ESC sequence */ |
| 85 | /* terminal standout start/normal ESC sequence */ |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 86 | static const char SOs[] ALIGN1 = "\033[7m"; |
| 87 | static const char SOn[] ALIGN1 = "\033[0m"; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 88 | /* terminal bell sequence */ |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 89 | static const char bell[] ALIGN1 = "\007"; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 90 | /* Clear-end-of-line and Clear-end-of-screen ESC sequence */ |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 91 | static const char Ceol[] ALIGN1 = "\033[0K"; |
| 92 | static const char Ceos[] ALIGN1 = "\033[0J"; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 93 | /* Cursor motion arbitrary destination ESC sequence */ |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 94 | static const char CMrc[] ALIGN1 = "\033[%d;%dH"; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 95 | /* Cursor motion up and down ESC sequence */ |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 96 | static const char CMup[] ALIGN1 = "\033[A"; |
| 97 | static const char CMdown[] ALIGN1 = "\n"; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 98 | |
Denis Vlasenko | ded6ad3 | 2008-10-14 12:26:30 +0000 | [diff] [blame] | 99 | #if ENABLE_FEATURE_VI_DOT_CMD || ENABLE_FEATURE_VI_YANKMARK |
| 100 | // cmds modifying text[] |
| 101 | // vda: removed "aAiIs" as they switch us into insert mode |
| 102 | // and remembering input for replay after them makes no sense |
| 103 | static const char modifying_cmds[] = "cCdDJoOpPrRxX<>~"; |
| 104 | #endif |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 105 | |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 106 | enum { |
| 107 | YANKONLY = FALSE, |
| 108 | YANKDEL = TRUE, |
| 109 | FORWARD = 1, // code depends on "1" for array index |
| 110 | BACK = -1, // code depends on "-1" for array index |
| 111 | LIMITED = 0, // how much of text[] in char_search |
| 112 | FULL = 1, // how much of text[] in char_search |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 113 | |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 114 | S_BEFORE_WS = 1, // used in skip_thing() for moving "dot" |
| 115 | S_TO_WS = 2, // used in skip_thing() for moving "dot" |
| 116 | S_OVER_WS = 3, // used in skip_thing() for moving "dot" |
| 117 | S_END_PUNCT = 4, // used in skip_thing() for moving "dot" |
Denis Vlasenko | 8e858e2 | 2007-03-07 09:35:43 +0000 | [diff] [blame] | 118 | S_END_ALNUM = 5, // used in skip_thing() for moving "dot" |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 119 | }; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 120 | |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 121 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 122 | /* vi.c expects chars to be unsigned. */ |
| 123 | /* busybox build system provides that, but it's better */ |
| 124 | /* to audit and fix the source */ |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 125 | |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 126 | struct globals { |
| 127 | /* many references - keep near the top of globals */ |
| 128 | char *text, *end; // pointers to the user data in memory |
| 129 | char *dot; // where all the action takes place |
| 130 | int text_size; // size of the allocated buffer |
| 131 | |
| 132 | /* the rest */ |
| 133 | smallint vi_setops; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 134 | #define VI_AUTOINDENT 1 |
| 135 | #define VI_SHOWMATCH 2 |
| 136 | #define VI_IGNORECASE 4 |
| 137 | #define VI_ERR_METHOD 8 |
| 138 | #define autoindent (vi_setops & VI_AUTOINDENT) |
| 139 | #define showmatch (vi_setops & VI_SHOWMATCH ) |
| 140 | #define ignorecase (vi_setops & VI_IGNORECASE) |
| 141 | /* indicate error with beep or flash */ |
| 142 | #define err_method (vi_setops & VI_ERR_METHOD) |
| 143 | |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 144 | #if ENABLE_FEATURE_VI_READONLY |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 145 | smallint readonly_mode; |
Denis Vlasenko | 6a2f7f4 | 2007-08-16 10:35:17 +0000 | [diff] [blame] | 146 | #define SET_READONLY_FILE(flags) ((flags) |= 0x01) |
| 147 | #define SET_READONLY_MODE(flags) ((flags) |= 0x02) |
| 148 | #define UNSET_READONLY_FILE(flags) ((flags) &= 0xfe) |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 149 | #else |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 150 | #define SET_READONLY_FILE(flags) ((void)0) |
| 151 | #define SET_READONLY_MODE(flags) ((void)0) |
| 152 | #define UNSET_READONLY_FILE(flags) ((void)0) |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 153 | #endif |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 154 | |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 155 | smallint editing; // >0 while we are editing a file |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 156 | // [code audit says "can be 0, 1 or 2 only"] |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 157 | smallint cmd_mode; // 0=command 1=insert 2=replace |
| 158 | int file_modified; // buffer contents changed (counter, not flag!) |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 159 | int last_file_modified; // = -1; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 160 | int fn_start; // index of first cmd line file name |
| 161 | int save_argc; // how many file names on cmd line |
| 162 | int cmdcnt; // repetition count |
| 163 | unsigned rows, columns; // the terminal screen is this size |
| 164 | int crow, ccol; // cursor is on Crow x Ccol |
| 165 | int offset; // chars scrolled off the screen to the left |
| 166 | int have_status_msg; // is default edit status needed? |
| 167 | // [don't make smallint!] |
| 168 | int last_status_cksum; // hash of current status line |
| 169 | char *current_filename; |
| 170 | char *screenbegin; // index into text[], of top line on the screen |
| 171 | char *screen; // pointer to the virtual screen buffer |
| 172 | int screensize; // and its size |
| 173 | int tabstop; |
| 174 | char erase_char; // the users erase character |
| 175 | char last_input_char; // last char read from user |
| 176 | char last_forward_char; // last char searched for with 'f' |
| 177 | |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 178 | #if ENABLE_FEATURE_VI_DOT_CMD |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 179 | smallint adding2q; // are we currently adding user input to q |
| 180 | int lmc_len; // length of last_modifying_cmd |
| 181 | char *ioq, *ioq_start; // pointer to string for get_one_char to "read" |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 182 | #endif |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 183 | #if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 184 | int last_row; // where the cursor was last moved to |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 185 | #endif |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 186 | #if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 187 | int my_pid; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 188 | #endif |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 189 | #if ENABLE_FEATURE_VI_SEARCH |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 190 | char *last_search_pattern; // last pattern from a '/' or '?' search |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 191 | #endif |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 192 | int chars_to_parse; |
| 193 | /* former statics */ |
| 194 | #if ENABLE_FEATURE_VI_YANKMARK |
| 195 | char *edit_file__cur_line; |
| 196 | #endif |
| 197 | int refresh__old_offset; |
| 198 | int format_edit_status__tot; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 199 | |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 200 | /* a few references only */ |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 201 | #if ENABLE_FEATURE_VI_YANKMARK |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 202 | int YDreg, Ureg; // default delete register and orig line for "U" |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 203 | char *reg[28]; // named register a-z, "D", and "U" 0-25,26,27 |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 204 | char *mark[28]; // user marks points somewhere in text[]- a-z and previous context '' |
| 205 | char *context_start, *context_end; |
| 206 | #endif |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 207 | #if ENABLE_FEATURE_VI_USE_SIGNALS |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 208 | sigjmp_buf restart; // catch_sig() |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 209 | #endif |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 210 | struct termios term_orig, term_vi; // remember what the cooked mode was |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 211 | #if ENABLE_FEATURE_VI_COLON |
| 212 | char *initial_cmds[3]; // currently 2 entries, NULL terminated |
| 213 | #endif |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 214 | // Should be just enough to hold a key sequence, |
Denis Vlasenko | 25497c1 | 2008-10-14 10:25:05 +0000 | [diff] [blame] | 215 | // but CRASHME mode uses it as generated command buffer too |
| 216 | #if ENABLE_FEATURE_VI_CRASHME |
Denis Vlasenko | 1dfeeeb | 2008-10-18 19:04:37 +0000 | [diff] [blame] | 217 | char readbuffer[128]; |
Denis Vlasenko | 25497c1 | 2008-10-14 10:25:05 +0000 | [diff] [blame] | 218 | #else |
Denis Vlasenko | 1dfeeeb | 2008-10-18 19:04:37 +0000 | [diff] [blame] | 219 | char readbuffer[8]; |
Denis Vlasenko | 25497c1 | 2008-10-14 10:25:05 +0000 | [diff] [blame] | 220 | #endif |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 221 | #define STATUS_BUFFER_LEN 200 |
| 222 | char status_buffer[STATUS_BUFFER_LEN]; // messages to the user |
| 223 | #if ENABLE_FEATURE_VI_DOT_CMD |
| 224 | char last_modifying_cmd[MAX_INPUT_LEN]; // last modifying cmd for "." |
| 225 | #endif |
| 226 | char get_input_line__buf[MAX_INPUT_LEN]; /* former static */ |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 227 | |
| 228 | char scr_out_buf[MAX_SCR_COLS + MAX_TABSTOP * 2]; |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 229 | }; |
| 230 | #define G (*ptr_to_globals) |
| 231 | #define text (G.text ) |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 232 | #define text_size (G.text_size ) |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 233 | #define end (G.end ) |
| 234 | #define dot (G.dot ) |
| 235 | #define reg (G.reg ) |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 236 | |
| 237 | #define vi_setops (G.vi_setops ) |
| 238 | #define editing (G.editing ) |
| 239 | #define cmd_mode (G.cmd_mode ) |
| 240 | #define file_modified (G.file_modified ) |
| 241 | #define last_file_modified (G.last_file_modified ) |
| 242 | #define fn_start (G.fn_start ) |
| 243 | #define save_argc (G.save_argc ) |
| 244 | #define cmdcnt (G.cmdcnt ) |
| 245 | #define rows (G.rows ) |
| 246 | #define columns (G.columns ) |
| 247 | #define crow (G.crow ) |
| 248 | #define ccol (G.ccol ) |
| 249 | #define offset (G.offset ) |
| 250 | #define status_buffer (G.status_buffer ) |
| 251 | #define have_status_msg (G.have_status_msg ) |
| 252 | #define last_status_cksum (G.last_status_cksum ) |
| 253 | #define current_filename (G.current_filename ) |
| 254 | #define screen (G.screen ) |
| 255 | #define screensize (G.screensize ) |
| 256 | #define screenbegin (G.screenbegin ) |
| 257 | #define tabstop (G.tabstop ) |
| 258 | #define erase_char (G.erase_char ) |
| 259 | #define last_input_char (G.last_input_char ) |
| 260 | #define last_forward_char (G.last_forward_char ) |
Denis Vlasenko | 2a210e5 | 2008-06-22 13:20:42 +0000 | [diff] [blame] | 261 | #if ENABLE_FEATURE_VI_READONLY |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 262 | #define readonly_mode (G.readonly_mode ) |
Denis Vlasenko | 2a210e5 | 2008-06-22 13:20:42 +0000 | [diff] [blame] | 263 | #else |
| 264 | #define readonly_mode 0 |
| 265 | #endif |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 266 | #define adding2q (G.adding2q ) |
| 267 | #define lmc_len (G.lmc_len ) |
| 268 | #define ioq (G.ioq ) |
| 269 | #define ioq_start (G.ioq_start ) |
| 270 | #define last_row (G.last_row ) |
| 271 | #define my_pid (G.my_pid ) |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 272 | #define last_search_pattern (G.last_search_pattern) |
| 273 | #define chars_to_parse (G.chars_to_parse ) |
Denis Vlasenko | 2a210e5 | 2008-06-22 13:20:42 +0000 | [diff] [blame] | 274 | |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 275 | #define edit_file__cur_line (G.edit_file__cur_line) |
| 276 | #define refresh__old_offset (G.refresh__old_offset) |
| 277 | #define format_edit_status__tot (G.format_edit_status__tot) |
| 278 | |
Denis Vlasenko | 0b3b41b | 2007-05-30 02:01:40 +0000 | [diff] [blame] | 279 | #define YDreg (G.YDreg ) |
| 280 | #define Ureg (G.Ureg ) |
| 281 | #define mark (G.mark ) |
| 282 | #define context_start (G.context_start ) |
| 283 | #define context_end (G.context_end ) |
| 284 | #define restart (G.restart ) |
| 285 | #define term_orig (G.term_orig ) |
| 286 | #define term_vi (G.term_vi ) |
| 287 | #define initial_cmds (G.initial_cmds ) |
Denis Vlasenko | a96425f | 2007-12-09 04:13:43 +0000 | [diff] [blame] | 288 | #define readbuffer (G.readbuffer ) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 289 | #define scr_out_buf (G.scr_out_buf ) |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 290 | #define last_modifying_cmd (G.last_modifying_cmd ) |
| 291 | #define get_input_line__buf (G.get_input_line__buf) |
| 292 | |
Denis Vlasenko | a96425f | 2007-12-09 04:13:43 +0000 | [diff] [blame] | 293 | #define INIT_G() do { \ |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 294 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 295 | last_file_modified = -1; \ |
Denis Vlasenko | a96425f | 2007-12-09 04:13:43 +0000 | [diff] [blame] | 296 | } while (0) |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 297 | |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 298 | |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 299 | static int init_text_buffer(char *); // init from file or create new |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 300 | static void edit_file(char *); // edit one file |
| 301 | static void do_cmd(char); // execute a command |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 302 | static int next_tabstop(int); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 303 | static void sync_cursor(char *, int *, int *); // synchronize the screen cursor to dot |
| 304 | static char *begin_line(char *); // return pointer to cur line B-o-l |
| 305 | static char *end_line(char *); // return pointer to cur line E-o-l |
| 306 | static char *prev_line(char *); // return pointer to prev line B-o-l |
| 307 | static char *next_line(char *); // return pointer to next line B-o-l |
| 308 | static char *end_screen(void); // get pointer to last char on screen |
| 309 | static int count_lines(char *, char *); // count line from start to stop |
| 310 | static char *find_line(int); // find begining of line #li |
| 311 | static char *move_to_col(char *, int); // move "p" to column l |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 312 | static void dot_left(void); // move dot left- dont leave line |
| 313 | static void dot_right(void); // move dot right- dont leave line |
| 314 | static void dot_begin(void); // move dot to B-o-l |
| 315 | static void dot_end(void); // move dot to E-o-l |
| 316 | static void dot_next(void); // move dot to next line B-o-l |
| 317 | static void dot_prev(void); // move dot to prev line B-o-l |
| 318 | static void dot_scroll(int, int); // move the screen up or down |
| 319 | static void dot_skip_over_ws(void); // move dot pat WS |
| 320 | static void dot_delete(void); // delete the char at 'dot' |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 321 | static char *bound_dot(char *); // make sure text[0] <= P < "end" |
| 322 | static char *new_screen(int, int); // malloc virtual screen memory |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 323 | static char *char_insert(char *, char); // insert the char c at 'p' |
| 324 | static char *stupid_insert(char *, char); // stupidly insert the char c at 'p' |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 325 | static int find_range(char **, char **, char); // return pointers for an object |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 326 | static int st_test(char *, int, int, char *); // helper for skip_thing() |
| 327 | static char *skip_thing(char *, int, int, int); // skip some object |
| 328 | static char *find_pair(char *, char); // find matching pair () [] {} |
| 329 | static char *text_hole_delete(char *, char *); // at "p", delete a 'size' byte hole |
| 330 | static char *text_hole_make(char *, int); // at "p", make a 'size' byte hole |
| 331 | static char *yank_delete(char *, char *, int, int); // yank text[] into register then delete |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 332 | static void show_help(void); // display some help info |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 333 | static void rawmode(void); // set "raw" mode on tty |
| 334 | static void cookmode(void); // return to "cooked" mode on tty |
Denis Vlasenko | 87f3b26 | 2007-09-07 13:43:28 +0000 | [diff] [blame] | 335 | // sleep for 'h' 1/100 seconds, return 1/0 if stdin is (ready for read)/(not ready) |
| 336 | static int mysleep(int); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 337 | static char readit(void); // read (maybe cursor) key from stdin |
| 338 | static char get_one_char(void); // read 1 char from stdin |
| 339 | static int file_size(const char *); // what is the byte size of "fn" |
Denis Vlasenko | 59a1f30 | 2007-07-14 22:43:10 +0000 | [diff] [blame] | 340 | #if ENABLE_FEATURE_VI_READONLY |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 341 | static int file_insert(const char *, char *, int); |
Denis Vlasenko | 59a1f30 | 2007-07-14 22:43:10 +0000 | [diff] [blame] | 342 | #else |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 343 | static int file_insert(const char *, char *); |
Denis Vlasenko | 59a1f30 | 2007-07-14 22:43:10 +0000 | [diff] [blame] | 344 | #endif |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 345 | static int file_write(char *, char *, char *); |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 346 | #if !ENABLE_FEATURE_VI_OPTIMIZE_CURSOR |
| 347 | #define place_cursor(a, b, optimize) place_cursor(a, b) |
| 348 | #endif |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 349 | static void place_cursor(int, int, int); |
Eric Andersen | bff7a60 | 2001-11-17 07:15:43 +0000 | [diff] [blame] | 350 | static void screen_erase(void); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 351 | static void clear_to_eol(void); |
| 352 | static void clear_to_eos(void); |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 353 | static void go_bottom_and_clear_to_eol(void); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 354 | static void standout_start(void); // send "start reverse video" sequence |
| 355 | static void standout_end(void); // send "end reverse video" sequence |
| 356 | static void flash(int); // flash the terminal screen |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 357 | static void show_status_line(void); // put a message on the bottom line |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 358 | static void status_line(const char *, ...); // print to status buf |
| 359 | static void status_line_bold(const char *, ...); |
| 360 | static void not_implemented(const char *); // display "Not implemented" message |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 361 | static int format_edit_status(void); // format file status on status line |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 362 | static void redraw(int); // force a full screen refresh |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 363 | static char* format_line(char* /*, int*/); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 364 | static void refresh(int); // update the terminal from screen[] |
| 365 | |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 366 | static void Indicate_Error(void); // use flash or beep to indicate error |
| 367 | #define indicate_error(c) Indicate_Error() |
Paul Fox | 90372ed | 2005-10-09 14:26:26 +0000 | [diff] [blame] | 368 | static void Hit_Return(void); |
| 369 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 370 | #if ENABLE_FEATURE_VI_SEARCH |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 371 | static char *char_search(char *, const char *, int, int); // search for pattern starting at p |
| 372 | static int mycmp(const char *, const char *, int); // string cmp based in "ignorecase" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 373 | #endif |
| 374 | #if ENABLE_FEATURE_VI_COLON |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 375 | static char *get_one_address(char *, int *); // get colon addr, if present |
| 376 | static char *get_address(char *, int *, int *); // get two colon addrs, if present |
| 377 | static void colon(char *); // execute the "colon" mode cmds |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 378 | #endif |
| 379 | #if ENABLE_FEATURE_VI_USE_SIGNALS |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 380 | static void winch_sig(int); // catch window size changes |
| 381 | static void suspend_sig(int); // catch ctrl-Z |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 382 | static void catch_sig(int); // catch ctrl-C and alarm time-outs |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 383 | #endif |
| 384 | #if ENABLE_FEATURE_VI_DOT_CMD |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 385 | static void start_new_cmd_q(char); // new queue for command |
Eric Andersen | bff7a60 | 2001-11-17 07:15:43 +0000 | [diff] [blame] | 386 | static void end_cmd_q(void); // stop saving input chars |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 387 | #else |
| 388 | #define end_cmd_q() ((void)0) |
| 389 | #endif |
| 390 | #if ENABLE_FEATURE_VI_SETOPTS |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 391 | static void showmatching(char *); // show the matching pair () [] {} |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 392 | #endif |
| 393 | #if ENABLE_FEATURE_VI_YANKMARK || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) || ENABLE_FEATURE_VI_CRASHME |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 394 | static char *string_insert(char *, char *); // insert the string at 'p' |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 395 | #endif |
| 396 | #if ENABLE_FEATURE_VI_YANKMARK |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 397 | static char *text_yank(char *, char *, int); // save copy of "p" into a register |
| 398 | static char what_reg(void); // what is letter of current YDreg |
| 399 | static void check_context(char); // remember context for '' command |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 400 | #endif |
| 401 | #if ENABLE_FEATURE_VI_CRASHME |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 402 | static void crash_dummy(); |
| 403 | static void crash_test(); |
| 404 | static int crashme = 0; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 405 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 406 | |
| 407 | |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 408 | static void write1(const char *out) |
| 409 | { |
| 410 | fputs(out, stdout); |
| 411 | } |
| 412 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 413 | int vi_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Rob Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 414 | int vi_main(int argc, char **argv) |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 415 | { |
Eric Andersen | d402edf | 2001-04-04 19:29:48 +0000 | [diff] [blame] | 416 | int c; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 417 | |
| 418 | INIT_G(); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 419 | |
Denis Vlasenko | cd5c786 | 2007-05-17 16:37:22 +0000 | [diff] [blame] | 420 | #if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 421 | my_pid = getpid(); |
| 422 | #endif |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 423 | #if ENABLE_FEATURE_VI_CRASHME |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 424 | srand((long) my_pid); |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 425 | #endif |
Denis Vlasenko | 2414a96 | 2007-07-18 22:03:40 +0000 | [diff] [blame] | 426 | #ifdef NO_SUCH_APPLET_YET |
| 427 | /* If we aren't "vi", we are "view" */ |
| 428 | if (ENABLE_FEATURE_VI_READONLY && applet_name[2]) { |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 429 | SET_READONLY_MODE(readonly_mode); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 430 | } |
Denis Vlasenko | 2414a96 | 2007-07-18 22:03:40 +0000 | [diff] [blame] | 431 | #endif |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 432 | |
Bernhard Reutner-Fischer | 73f56bb | 2007-09-22 21:18:46 +0000 | [diff] [blame] | 433 | vi_setops = VI_AUTOINDENT | VI_SHOWMATCH | VI_IGNORECASE; |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 434 | // 1- process $HOME/.exrc file (not inplemented yet) |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 435 | // 2- process EXINIT variable from environment |
| 436 | // 3- process command line args |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 437 | #if ENABLE_FEATURE_VI_COLON |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 438 | { |
| 439 | char *p = getenv("EXINIT"); |
| 440 | if (p && *p) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 441 | initial_cmds[0] = xstrndup(p, MAX_INPUT_LEN); |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 442 | } |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 443 | #endif |
Paul Fox | 35e9c5d | 2008-03-06 16:26:12 +0000 | [diff] [blame] | 444 | while ((c = getopt(argc, argv, "hCRH" USE_FEATURE_VI_COLON("c:"))) != -1) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 445 | switch (c) { |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 446 | #if ENABLE_FEATURE_VI_CRASHME |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 447 | case 'C': |
| 448 | crashme = 1; |
| 449 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 450 | #endif |
| 451 | #if ENABLE_FEATURE_VI_READONLY |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 452 | case 'R': // Read-only flag |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 453 | SET_READONLY_MODE(readonly_mode); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 454 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 455 | #endif |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 456 | #if ENABLE_FEATURE_VI_COLON |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 457 | case 'c': // cmd line vi command |
| 458 | if (*optarg) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 459 | initial_cmds[initial_cmds[0] != 0] = xstrndup(optarg, MAX_INPUT_LEN); |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 460 | break; |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 461 | #endif |
Paul Fox | 35e9c5d | 2008-03-06 16:26:12 +0000 | [diff] [blame] | 462 | case 'H': |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 463 | show_help(); |
Paul Fox | 35e9c5d | 2008-03-06 16:26:12 +0000 | [diff] [blame] | 464 | /* fall through */ |
Paul Fox | 35e9c5d | 2008-03-06 16:26:12 +0000 | [diff] [blame] | 465 | default: |
Denis Vlasenko | c693840 | 2008-03-24 02:18:03 +0000 | [diff] [blame] | 466 | bb_show_usage(); |
Eric Andersen | dd8500b | 2001-07-02 18:06:14 +0000 | [diff] [blame] | 467 | return 1; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 468 | } |
| 469 | } |
| 470 | |
| 471 | // The argv array can be used by the ":next" and ":rewind" commands |
| 472 | // save optind. |
| 473 | fn_start = optind; // remember first file name for :next and :rew |
| 474 | save_argc = argc; |
| 475 | |
| 476 | //----- This is the main file handling loop -------------- |
| 477 | if (optind >= argc) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 478 | edit_file(0); |
| 479 | } else { |
| 480 | for (; optind < argc; optind++) { |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 481 | edit_file(argv[optind]); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 482 | } |
| 483 | } |
| 484 | //----------------------------------------------------------- |
| 485 | |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 486 | return 0; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 487 | } |
| 488 | |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 489 | /* read text from file or create an empty buf */ |
| 490 | /* will also update current_filename */ |
| 491 | static int init_text_buffer(char *fn) |
| 492 | { |
| 493 | int rc; |
| 494 | int size = file_size(fn); // file size. -1 means does not exist. |
| 495 | |
| 496 | /* allocate/reallocate text buffer */ |
| 497 | free(text); |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 498 | text_size = size + 10240; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 499 | screenbegin = dot = end = text = xzalloc(text_size); |
Denis Vlasenko | 2f6ae43 | 2007-07-19 22:50:47 +0000 | [diff] [blame] | 500 | |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 501 | if (fn != current_filename) { |
| 502 | free(current_filename); |
| 503 | current_filename = xstrdup(fn); |
| 504 | } |
| 505 | if (size < 0) { |
| 506 | // file dont exist. Start empty buf with dummy line |
| 507 | char_insert(text, '\n'); |
| 508 | rc = 0; |
| 509 | } else { |
| 510 | rc = file_insert(fn, text |
| 511 | USE_FEATURE_VI_READONLY(, 1)); |
| 512 | } |
| 513 | file_modified = 0; |
| 514 | last_file_modified = -1; |
| 515 | #if ENABLE_FEATURE_VI_YANKMARK |
| 516 | /* init the marks. */ |
| 517 | memset(mark, 0, sizeof(mark)); |
| 518 | #endif |
| 519 | return rc; |
Denis Vlasenko | 2f6ae43 | 2007-07-19 22:50:47 +0000 | [diff] [blame] | 520 | } |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 521 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 522 | static void edit_file(char *fn) |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 523 | { |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 524 | #if ENABLE_FEATURE_VI_YANKMARK |
| 525 | #define cur_line edit_file__cur_line |
| 526 | #endif |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 527 | char c; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 528 | int size; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 529 | #if ENABLE_FEATURE_VI_USE_SIGNALS |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 530 | int sig; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 531 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 532 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 533 | editing = 1; // 0 = exit, 1 = one file, 2 = multiple files |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 534 | rawmode(); |
| 535 | rows = 24; |
| 536 | columns = 80; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 537 | size = 0; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 538 | if (ENABLE_FEATURE_VI_WIN_RESIZE) { |
Rob Landley | e5e1a10 | 2006-06-21 01:15:36 +0000 | [diff] [blame] | 539 | get_terminal_width_height(0, &columns, &rows); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 540 | if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS; |
| 541 | if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS; |
| 542 | } |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 543 | new_screen(rows, columns); // get memory for virtual screen |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 544 | init_text_buffer(fn); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 545 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 546 | #if ENABLE_FEATURE_VI_YANKMARK |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 547 | YDreg = 26; // default Yank/Delete reg |
| 548 | Ureg = 27; // hold orig line for "U" cmd |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 549 | mark[26] = mark[27] = text; // init "previous context" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 550 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 551 | |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 552 | last_forward_char = last_input_char = '\0'; |
| 553 | crow = 0; |
| 554 | ccol = 0; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 555 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 556 | #if ENABLE_FEATURE_VI_USE_SIGNALS |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 557 | catch_sig(0); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 558 | signal(SIGWINCH, winch_sig); |
| 559 | signal(SIGTSTP, suspend_sig); |
Paul Fox | 2724fa9 | 2008-03-17 15:28:07 +0000 | [diff] [blame] | 560 | sig = sigsetjmp(restart, 1); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 561 | if (sig != 0) { |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 562 | screenbegin = dot = text; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 563 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 564 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 565 | |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 566 | cmd_mode = 0; // 0=command 1=insert 2='R'eplace |
| 567 | cmdcnt = 0; |
| 568 | tabstop = 8; |
| 569 | offset = 0; // no horizontal offset |
| 570 | c = '\0'; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 571 | #if ENABLE_FEATURE_VI_DOT_CMD |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 572 | free(ioq_start); |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 573 | ioq = ioq_start = NULL; |
| 574 | lmc_len = 0; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 575 | adding2q = 0; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 576 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 577 | |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 578 | #if ENABLE_FEATURE_VI_COLON |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 579 | { |
| 580 | char *p, *q; |
| 581 | int n = 0; |
| 582 | |
| 583 | while ((p = initial_cmds[n])) { |
| 584 | do { |
| 585 | q = p; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 586 | p = strchr(q, '\n'); |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 587 | if (p) |
Denis Vlasenko | 51742f4 | 2007-04-12 00:32:05 +0000 | [diff] [blame] | 588 | while (*p == '\n') |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 589 | *p++ = '\0'; |
| 590 | if (*q) |
| 591 | colon(q); |
| 592 | } while (p); |
| 593 | free(initial_cmds[n]); |
| 594 | initial_cmds[n] = NULL; |
| 595 | n++; |
| 596 | } |
| 597 | } |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 598 | #endif |
Paul Fox | 35e9c5d | 2008-03-06 16:26:12 +0000 | [diff] [blame] | 599 | redraw(FALSE); // dont force every col re-draw |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 600 | //------This is the main Vi cmd handling loop ----------------------- |
| 601 | while (editing > 0) { |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 602 | #if ENABLE_FEATURE_VI_CRASHME |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 603 | if (crashme > 0) { |
| 604 | if ((end - text) > 1) { |
| 605 | crash_dummy(); // generate a random command |
| 606 | } else { |
| 607 | crashme = 0; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 608 | dot = string_insert(text, "\n\n##### Ran out of text to work on. #####\n\n"); // insert the string |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 609 | refresh(FALSE); |
| 610 | } |
| 611 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 612 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 613 | last_input_char = c = get_one_char(); // get a cmd from user |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 614 | #if ENABLE_FEATURE_VI_YANKMARK |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 615 | // save a copy of the current line- for the 'U" command |
| 616 | if (begin_line(dot) != cur_line) { |
| 617 | cur_line = begin_line(dot); |
| 618 | text_yank(begin_line(dot), end_line(dot), Ureg); |
| 619 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 620 | #endif |
| 621 | #if ENABLE_FEATURE_VI_DOT_CMD |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 622 | // These are commands that change text[]. |
| 623 | // Remember the input for the "." command |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 624 | if (!adding2q && ioq_start == NULL |
Denis Vlasenko | ded6ad3 | 2008-10-14 12:26:30 +0000 | [diff] [blame] | 625 | && cmd_mode == 0 /* command mode */ |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 626 | && c != '\0' && strchr(modifying_cmds, c) |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 627 | ) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 628 | start_new_cmd_q(c); |
| 629 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 630 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 631 | do_cmd(c); // execute the user command |
Denis Vlasenko | 8ef801b | 2008-10-16 09:46:07 +0000 | [diff] [blame] | 632 | |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 633 | // poll to see if there is input already waiting. if we are |
| 634 | // not able to display output fast enough to keep up, skip |
| 635 | // the display update until we catch up with input. |
Denis Vlasenko | 8ef801b | 2008-10-16 09:46:07 +0000 | [diff] [blame] | 636 | if (!chars_to_parse && mysleep(0) == 0) { |
| 637 | // no input pending - so update output |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 638 | refresh(FALSE); |
| 639 | show_status_line(); |
| 640 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 641 | #if ENABLE_FEATURE_VI_CRASHME |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 642 | if (crashme > 0) |
| 643 | crash_test(); // test editor variables |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 644 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 645 | } |
| 646 | //------------------------------------------------------------------- |
| 647 | |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 648 | go_bottom_and_clear_to_eol(); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 649 | cookmode(); |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 650 | #undef cur_line |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 651 | } |
| 652 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 653 | //----- The Colon commands ------------------------------------- |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 654 | #if ENABLE_FEATURE_VI_COLON |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 655 | static char *get_one_address(char *p, int *addr) // get colon addr, if present |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 656 | { |
| 657 | int st; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 658 | char *q; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 659 | USE_FEATURE_VI_YANKMARK(char c;) |
| 660 | USE_FEATURE_VI_SEARCH(char *pat;) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 661 | |
| 662 | *addr = -1; // assume no addr |
| 663 | if (*p == '.') { // the current line |
| 664 | p++; |
| 665 | q = begin_line(dot); |
| 666 | *addr = count_lines(text, q); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 667 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 668 | #if ENABLE_FEATURE_VI_YANKMARK |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 669 | else if (*p == '\'') { // is this a mark addr |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 670 | p++; |
| 671 | c = tolower(*p); |
| 672 | p++; |
| 673 | if (c >= 'a' && c <= 'z') { |
| 674 | // we have a mark |
| 675 | c = c - 'a'; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 676 | q = mark[(unsigned char) c]; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 677 | if (q != NULL) { // is mark valid |
| 678 | *addr = count_lines(text, q); // count lines |
| 679 | } |
| 680 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 681 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 682 | #endif |
| 683 | #if ENABLE_FEATURE_VI_SEARCH |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 684 | else if (*p == '/') { // a search pattern |
| 685 | q = strchrnul(++p, '/'); |
| 686 | pat = xstrndup(p, q - p); // save copy of pattern |
| 687 | p = q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 688 | if (*p == '/') |
| 689 | p++; |
| 690 | q = char_search(dot, pat, FORWARD, FULL); |
| 691 | if (q != NULL) { |
| 692 | *addr = count_lines(text, q); |
| 693 | } |
| 694 | free(pat); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 695 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 696 | #endif |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 697 | else if (*p == '$') { // the last line in file |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 698 | p++; |
| 699 | q = begin_line(end - 1); |
| 700 | *addr = count_lines(text, q); |
| 701 | } else if (isdigit(*p)) { // specific line number |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 702 | sscanf(p, "%d%n", addr, &st); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 703 | p += st; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 704 | } else { |
| 705 | // unrecognised address - assume -1 |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 706 | *addr = -1; |
| 707 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 708 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 709 | } |
| 710 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 711 | static char *get_address(char *p, int *b, int *e) // get two colon addrs, if present |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 712 | { |
| 713 | //----- get the address' i.e., 1,3 'a,'b ----- |
| 714 | // get FIRST addr, if present |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 715 | while (isblank(*p)) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 716 | p++; // skip over leading spaces |
| 717 | if (*p == '%') { // alias for 1,$ |
| 718 | p++; |
| 719 | *b = 1; |
| 720 | *e = count_lines(text, end-1); |
| 721 | goto ga0; |
| 722 | } |
| 723 | p = get_one_address(p, b); |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 724 | while (isblank(*p)) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 725 | p++; |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 726 | if (*p == ',') { // is there a address separator |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 727 | p++; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 728 | while (isblank(*p)) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 729 | p++; |
| 730 | // get SECOND addr, if present |
| 731 | p = get_one_address(p, e); |
| 732 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 733 | ga0: |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 734 | while (isblank(*p)) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 735 | p++; // skip over trailing spaces |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 736 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 737 | } |
| 738 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 739 | #if ENABLE_FEATURE_VI_SET && ENABLE_FEATURE_VI_SETOPTS |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 740 | static void setops(const char *args, const char *opname, int flg_no, |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 741 | const char *short_opname, int opt) |
| 742 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 743 | const char *a = args + flg_no; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 744 | int l = strlen(opname) - 1; /* opname have + ' ' */ |
| 745 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 746 | if (strncasecmp(a, opname, l) == 0 |
| 747 | || strncasecmp(a, short_opname, 2) == 0 |
| 748 | ) { |
| 749 | if (flg_no) |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 750 | vi_setops &= ~opt; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 751 | else |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 752 | vi_setops |= opt; |
| 753 | } |
| 754 | } |
| 755 | #endif |
| 756 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 757 | // buf must be no longer than MAX_INPUT_LEN! |
| 758 | static void colon(char *buf) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 759 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 760 | char c, *orig_buf, *buf1, *q, *r; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 761 | char *fn, cmd[MAX_INPUT_LEN], args[MAX_INPUT_LEN]; |
Bernhard Reutner-Fischer | d591a36 | 2006-08-20 17:35:13 +0000 | [diff] [blame] | 762 | int i, l, li, ch, b, e; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 763 | int useforce, forced = FALSE; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 764 | |
| 765 | // :3154 // if (-e line 3154) goto it else stay put |
| 766 | // :4,33w! foo // write a portion of buffer to file "foo" |
| 767 | // :w // write all of buffer to current file |
| 768 | // :q // quit |
| 769 | // :q! // quit- dont care about modified file |
| 770 | // :'a,'z!sort -u // filter block through sort |
| 771 | // :'f // goto mark "f" |
| 772 | // :'fl // list literal the mark "f" line |
| 773 | // :.r bar // read file "bar" into buffer before dot |
| 774 | // :/123/,/abc/d // delete lines from "123" line to "abc" line |
| 775 | // :/xyz/ // goto the "xyz" line |
| 776 | // :s/find/replace/ // substitute pattern "find" with "replace" |
| 777 | // :!<cmd> // run <cmd> then return |
| 778 | // |
Eric Andersen | 165e8cb | 2004-07-20 06:44:46 +0000 | [diff] [blame] | 779 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 780 | if (!buf[0]) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 781 | goto vc1; |
| 782 | if (*buf == ':') |
| 783 | buf++; // move past the ':' |
| 784 | |
Bernhard Reutner-Fischer | d591a36 | 2006-08-20 17:35:13 +0000 | [diff] [blame] | 785 | li = ch = i = 0; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 786 | b = e = -1; |
| 787 | q = text; // assume 1,$ for the range |
| 788 | r = end - 1; |
| 789 | li = count_lines(text, end - 1); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 790 | fn = current_filename; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 791 | |
| 792 | // look for optional address(es) :. :1 :1,9 :'q,'a :% |
| 793 | buf = get_address(buf, &b, &e); |
| 794 | |
| 795 | // remember orig command line |
| 796 | orig_buf = buf; |
| 797 | |
| 798 | // get the COMMAND into cmd[] |
| 799 | buf1 = cmd; |
| 800 | while (*buf != '\0') { |
| 801 | if (isspace(*buf)) |
| 802 | break; |
| 803 | *buf1++ = *buf++; |
| 804 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 805 | *buf1 = '\0'; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 806 | // get any ARGuments |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 807 | while (isblank(*buf)) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 808 | buf++; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 809 | strcpy(args, buf); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 810 | useforce = FALSE; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 811 | buf1 = last_char_is(cmd, '!'); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 812 | if (buf1) { |
| 813 | useforce = TRUE; |
| 814 | *buf1 = '\0'; // get rid of ! |
| 815 | } |
| 816 | if (b >= 0) { |
| 817 | // if there is only one addr, then the addr |
| 818 | // is the line number of the single line the |
| 819 | // user wants. So, reset the end |
| 820 | // pointer to point at end of the "b" line |
| 821 | q = find_line(b); // what line is #b |
| 822 | r = end_line(q); |
| 823 | li = 1; |
| 824 | } |
| 825 | if (e >= 0) { |
| 826 | // we were given two addrs. change the |
| 827 | // end pointer to the addr given by user. |
| 828 | r = find_line(e); // what line is #e |
| 829 | r = end_line(r); |
| 830 | li = e - b + 1; |
| 831 | } |
| 832 | // ------------ now look for the command ------------ |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 833 | i = strlen(cmd); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 834 | if (i == 0) { // :123CR goto line #123 |
| 835 | if (b >= 0) { |
| 836 | dot = find_line(b); // what line is #b |
| 837 | dot_skip_over_ws(); |
| 838 | } |
Denis Vlasenko | 249fabf | 2006-12-19 00:29:22 +0000 | [diff] [blame] | 839 | } |
| 840 | #if ENABLE_FEATURE_ALLOW_EXEC |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 841 | else if (strncmp(cmd, "!", 1) == 0) { // run a cmd |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 842 | int retcode; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 843 | // :!ls run the <cmd> |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 844 | go_bottom_and_clear_to_eol(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 845 | cookmode(); |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 846 | retcode = system(orig_buf + 1); // run the cmd |
| 847 | if (retcode) |
| 848 | printf("\nshell returned %i\n\n", retcode); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 849 | rawmode(); |
| 850 | Hit_Return(); // let user see results |
Denis Vlasenko | 249fabf | 2006-12-19 00:29:22 +0000 | [diff] [blame] | 851 | } |
| 852 | #endif |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 853 | else if (strncmp(cmd, "=", i) == 0) { // where is the address |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 854 | if (b < 0) { // no addr given- use defaults |
| 855 | b = e = count_lines(text, dot); |
| 856 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 857 | status_line("%d", b); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 858 | } else if (strncasecmp(cmd, "delete", i) == 0) { // delete lines |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 859 | if (b < 0) { // no addr given- use defaults |
| 860 | q = begin_line(dot); // assume .,. for the range |
| 861 | r = end_line(dot); |
| 862 | } |
| 863 | dot = yank_delete(q, r, 1, YANKDEL); // save, then delete lines |
| 864 | dot_skip_over_ws(); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 865 | } else if (strncasecmp(cmd, "edit", i) == 0) { // Edit a file |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 866 | // don't edit, if the current file has been modified |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 867 | if (file_modified && !useforce) { |
| 868 | status_line_bold("No write since last change (:edit! overrides)"); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 869 | goto vc1; |
| 870 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 871 | if (args[0]) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 872 | // the user supplied a file name |
Denis Vlasenko | e8a0788 | 2007-06-10 15:08:44 +0000 | [diff] [blame] | 873 | fn = args; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 874 | } else if (current_filename && current_filename[0]) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 875 | // no user supplied name- use the current filename |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 876 | // fn = current_filename; was set by default |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 877 | } else { |
| 878 | // no user file name, no current name- punt |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 879 | status_line_bold("No current filename"); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 880 | goto vc1; |
| 881 | } |
| 882 | |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 883 | if (init_text_buffer(fn) < 0) |
| 884 | goto vc1; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 885 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 886 | #if ENABLE_FEATURE_VI_YANKMARK |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 887 | if (Ureg >= 0 && Ureg < 28 && reg[Ureg] != 0) { |
| 888 | free(reg[Ureg]); // free orig line reg- for 'U' |
| 889 | reg[Ureg]= 0; |
| 890 | } |
| 891 | if (YDreg >= 0 && YDreg < 28 && reg[YDreg] != 0) { |
| 892 | free(reg[YDreg]); // free default yank/delete register |
| 893 | reg[YDreg]= 0; |
| 894 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 895 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 896 | // how many lines in text[]? |
| 897 | li = count_lines(text, end - 1); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 898 | status_line("\"%s\"%s" |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 899 | USE_FEATURE_VI_READONLY("%s") |
| 900 | " %dL, %dC", current_filename, |
| 901 | (file_size(fn) < 0 ? " [New file]" : ""), |
| 902 | USE_FEATURE_VI_READONLY( |
| 903 | ((readonly_mode) ? " [Readonly]" : ""), |
| 904 | ) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 905 | li, ch); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 906 | } else if (strncasecmp(cmd, "file", i) == 0) { // what File is this |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 907 | if (b != -1 || e != -1) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 908 | not_implemented("No address allowed on this command"); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 909 | goto vc1; |
| 910 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 911 | if (args[0]) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 912 | // user wants a new filename |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 913 | free(current_filename); |
| 914 | current_filename = xstrdup(args); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 915 | } else { |
| 916 | // user wants file status info |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 917 | last_status_cksum = 0; // force status update |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 918 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 919 | } else if (strncasecmp(cmd, "features", i) == 0) { // what features are available |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 920 | // print out values of all features |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 921 | go_bottom_and_clear_to_eol(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 922 | cookmode(); |
| 923 | show_help(); |
| 924 | rawmode(); |
| 925 | Hit_Return(); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 926 | } else if (strncasecmp(cmd, "list", i) == 0) { // literal print line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 927 | if (b < 0) { // no addr given- use defaults |
| 928 | q = begin_line(dot); // assume .,. for the range |
| 929 | r = end_line(dot); |
| 930 | } |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 931 | go_bottom_and_clear_to_eol(); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 932 | puts("\r"); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 933 | for (; q <= r; q++) { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 934 | int c_is_no_print; |
| 935 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 936 | c = *q; |
Denis Vlasenko | 2a51af2 | 2007-03-21 22:31:24 +0000 | [diff] [blame] | 937 | c_is_no_print = (c & 0x80) && !Isprint(c); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 938 | if (c_is_no_print) { |
| 939 | c = '.'; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 940 | standout_start(); |
Denis Vlasenko | d3c042f | 2007-12-30 01:59:53 +0000 | [diff] [blame] | 941 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 942 | if (c == '\n') { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 943 | write1("$\r"); |
| 944 | } else if (c < ' ' || c == 127) { |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 945 | bb_putchar('^'); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 946 | if (c == 127) |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 947 | c = '?'; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 948 | else |
| 949 | c += '@'; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 950 | } |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 951 | bb_putchar(c); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 952 | if (c_is_no_print) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 953 | standout_end(); |
| 954 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 955 | #if ENABLE_FEATURE_VI_SET |
| 956 | vc2: |
| 957 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 958 | Hit_Return(); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 959 | } else if (strncasecmp(cmd, "quit", i) == 0 // Quit |
| 960 | || strncasecmp(cmd, "next", i) == 0 // edit next file |
| 961 | ) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 962 | if (useforce) { |
| 963 | // force end of argv list |
| 964 | if (*cmd == 'q') { |
| 965 | optind = save_argc; |
| 966 | } |
| 967 | editing = 0; |
| 968 | goto vc1; |
| 969 | } |
| 970 | // don't exit if the file been modified |
| 971 | if (file_modified) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 972 | status_line_bold("No write since last change (:%s! overrides)", |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 973 | (*cmd == 'q' ? "quit" : "next")); |
| 974 | goto vc1; |
| 975 | } |
| 976 | // are there other file to edit |
| 977 | if (*cmd == 'q' && optind < save_argc - 1) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 978 | status_line_bold("%d more file to edit", (save_argc - optind - 1)); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 979 | goto vc1; |
| 980 | } |
| 981 | if (*cmd == 'n' && optind >= save_argc - 1) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 982 | status_line_bold("No more files to edit"); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 983 | goto vc1; |
| 984 | } |
| 985 | editing = 0; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 986 | } else if (strncasecmp(cmd, "read", i) == 0) { // read file into text[] |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 987 | fn = args; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 988 | if (!fn[0]) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 989 | status_line_bold("No filename given"); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 990 | goto vc1; |
| 991 | } |
| 992 | if (b < 0) { // no addr given- use defaults |
| 993 | q = begin_line(dot); // assume "dot" |
| 994 | } |
| 995 | // read after current line- unless user said ":0r foo" |
| 996 | if (b != 0) |
| 997 | q = next_line(q); |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 998 | ch = file_insert(fn, q USE_FEATURE_VI_READONLY(, 0)); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 999 | if (ch < 0) |
| 1000 | goto vc1; // nothing was inserted |
| 1001 | // how many lines in text[]? |
| 1002 | li = count_lines(q, q + ch - 1); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1003 | status_line("\"%s\"" |
Denis Vlasenko | 59a1f30 | 2007-07-14 22:43:10 +0000 | [diff] [blame] | 1004 | USE_FEATURE_VI_READONLY("%s") |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1005 | " %dL, %dC", fn, |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1006 | USE_FEATURE_VI_READONLY((readonly_mode ? " [Readonly]" : ""),) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1007 | li, ch); |
| 1008 | if (ch > 0) { |
| 1009 | // if the insert is before "dot" then we need to update |
| 1010 | if (q <= dot) |
| 1011 | dot += ch; |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 1012 | file_modified++; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1013 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1014 | } else if (strncasecmp(cmd, "rewind", i) == 0) { // rewind cmd line args |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1015 | if (file_modified && !useforce) { |
| 1016 | status_line_bold("No write since last change (:rewind! overrides)"); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1017 | } else { |
| 1018 | // reset the filenames to edit |
| 1019 | optind = fn_start - 1; |
| 1020 | editing = 0; |
| 1021 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1022 | #if ENABLE_FEATURE_VI_SET |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 1023 | } else if (strncasecmp(cmd, "set", i) == 0) { // set or clear features |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 1024 | #if ENABLE_FEATURE_VI_SETOPTS |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 1025 | char *argp; |
Denis Vlasenko | 58875ae | 2007-03-22 22:22:10 +0000 | [diff] [blame] | 1026 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1027 | i = 0; // offset into args |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 1028 | // only blank is regarded as args delmiter. What about tab '\t' ? |
| 1029 | if (!args[0] || strcasecmp(args, "all") == 0) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1030 | // print out values of all options |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 1031 | go_bottom_and_clear_to_eol(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1032 | printf("----------------------------------------\r\n"); |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1033 | #if ENABLE_FEATURE_VI_SETOPTS |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1034 | if (!autoindent) |
| 1035 | printf("no"); |
| 1036 | printf("autoindent "); |
| 1037 | if (!err_method) |
| 1038 | printf("no"); |
| 1039 | printf("flash "); |
| 1040 | if (!ignorecase) |
| 1041 | printf("no"); |
| 1042 | printf("ignorecase "); |
| 1043 | if (!showmatch) |
| 1044 | printf("no"); |
| 1045 | printf("showmatch "); |
| 1046 | printf("tabstop=%d ", tabstop); |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1047 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1048 | printf("\r\n"); |
| 1049 | goto vc2; |
| 1050 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1051 | #if ENABLE_FEATURE_VI_SETOPTS |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1052 | argp = args; |
Denis Vlasenko | ba2fb71 | 2007-04-01 09:39:03 +0000 | [diff] [blame] | 1053 | while (*argp) { |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 1054 | if (strncasecmp(argp, "no", 2) == 0) |
| 1055 | i = 2; // ":set noautoindent" |
| 1056 | setops(argp, "autoindent ", i, "ai", VI_AUTOINDENT); |
| 1057 | setops(argp, "flash ", i, "fl", VI_ERR_METHOD); |
| 1058 | setops(argp, "ignorecase ", i, "ic", VI_IGNORECASE); |
| 1059 | setops(argp, "showmatch ", i, "ic", VI_SHOWMATCH); |
| 1060 | /* tabstopXXXX */ |
| 1061 | if (strncasecmp(argp + i, "tabstop=%d ", 7) == 0) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1062 | sscanf(strchr(argp + i, '='), "tabstop=%d" + 7, &ch); |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 1063 | if (ch > 0 && ch <= MAX_TABSTOP) |
Denis Vlasenko | f923413 | 2007-03-21 00:03:42 +0000 | [diff] [blame] | 1064 | tabstop = ch; |
| 1065 | } |
| 1066 | while (*argp && *argp != ' ') |
| 1067 | argp++; // skip to arg delimiter (i.e. blank) |
| 1068 | while (*argp && *argp == ' ') |
| 1069 | argp++; // skip all delimiting blanks |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1070 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1071 | #endif /* FEATURE_VI_SETOPTS */ |
| 1072 | #endif /* FEATURE_VI_SET */ |
| 1073 | #if ENABLE_FEATURE_VI_SEARCH |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1074 | } else if (strncasecmp(cmd, "s", 1) == 0) { // substitute a pattern with a replacement pattern |
| 1075 | char *ls, *F, *R; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1076 | int gflag; |
| 1077 | |
| 1078 | // F points to the "find" pattern |
| 1079 | // R points to the "replace" pattern |
| 1080 | // replace the cmd line delimiters "/" with NULLs |
| 1081 | gflag = 0; // global replace flag |
| 1082 | c = orig_buf[1]; // what is the delimiter |
| 1083 | F = orig_buf + 2; // start of "find" |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1084 | R = strchr(F, c); // middle delimiter |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1085 | if (!R) goto colon_s_fail; |
| 1086 | *R++ = '\0'; // terminate "find" |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1087 | buf1 = strchr(R, c); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1088 | if (!buf1) goto colon_s_fail; |
| 1089 | *buf1++ = '\0'; // terminate "replace" |
| 1090 | if (*buf1 == 'g') { // :s/foo/bar/g |
| 1091 | buf1++; |
| 1092 | gflag++; // turn on gflag |
| 1093 | } |
| 1094 | q = begin_line(q); |
| 1095 | if (b < 0) { // maybe :s/foo/bar/ |
| 1096 | q = begin_line(dot); // start with cur line |
| 1097 | b = count_lines(text, q); // cur line number |
| 1098 | } |
| 1099 | if (e < 0) |
| 1100 | e = b; // maybe :.s/foo/bar/ |
| 1101 | for (i = b; i <= e; i++) { // so, :20,23 s \0 find \0 replace \0 |
| 1102 | ls = q; // orig line start |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1103 | vc4: |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1104 | buf1 = char_search(q, F, FORWARD, LIMITED); // search cur line only for "find" |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1105 | if (buf1) { |
| 1106 | // we found the "find" pattern - delete it |
| 1107 | text_hole_delete(buf1, buf1 + strlen(F) - 1); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1108 | // inset the "replace" patern |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1109 | string_insert(buf1, R); // insert the string |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1110 | // check for "global" :s/foo/bar/g |
| 1111 | if (gflag == 1) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1112 | if ((buf1 + strlen(R)) < end_line(ls)) { |
| 1113 | q = buf1 + strlen(R); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1114 | goto vc4; // don't let q move past cur line |
| 1115 | } |
| 1116 | } |
| 1117 | } |
| 1118 | q = next_line(ls); |
| 1119 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1120 | #endif /* FEATURE_VI_SEARCH */ |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1121 | } else if (strncasecmp(cmd, "version", i) == 0) { // show software version |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1122 | status_line(BB_VER " " BB_BT); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1123 | } else if (strncasecmp(cmd, "write", i) == 0 // write text to file |
| 1124 | || strncasecmp(cmd, "wq", i) == 0 |
| 1125 | || strncasecmp(cmd, "wn", i) == 0 |
| 1126 | || strncasecmp(cmd, "x", i) == 0 |
| 1127 | ) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1128 | // is there a file name to write to? |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1129 | if (args[0]) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1130 | fn = args; |
| 1131 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1132 | #if ENABLE_FEATURE_VI_READONLY |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1133 | if (readonly_mode && !useforce) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1134 | status_line_bold("\"%s\" File is read only", fn); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1135 | goto vc3; |
| 1136 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1137 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1138 | // how many lines in text[]? |
| 1139 | li = count_lines(q, r); |
| 1140 | ch = r - q + 1; |
| 1141 | // see if file exists- if not, its just a new file request |
| 1142 | if (useforce) { |
| 1143 | // if "fn" is not write-able, chmod u+w |
| 1144 | // sprintf(syscmd, "chmod u+w %s", fn); |
| 1145 | // system(syscmd); |
| 1146 | forced = TRUE; |
| 1147 | } |
| 1148 | l = file_write(fn, q, r); |
| 1149 | if (useforce && forced) { |
| 1150 | // chmod u-w |
| 1151 | // sprintf(syscmd, "chmod u-w %s", fn); |
| 1152 | // system(syscmd); |
| 1153 | forced = FALSE; |
| 1154 | } |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 1155 | if (l < 0) { |
| 1156 | if (l == -1) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1157 | status_line_bold("\"%s\" %s", fn, strerror(errno)); |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 1158 | } else { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1159 | status_line("\"%s\" %dL, %dC", fn, li, l); |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 1160 | if (q == text && r == end - 1 && l == ch) { |
| 1161 | file_modified = 0; |
| 1162 | last_file_modified = -1; |
| 1163 | } |
Paul Fox | 9360f42 | 2006-03-27 21:51:16 +0000 | [diff] [blame] | 1164 | if ((cmd[0] == 'x' || cmd[1] == 'q' || cmd[1] == 'n' || |
| 1165 | cmd[0] == 'X' || cmd[1] == 'Q' || cmd[1] == 'N') |
| 1166 | && l == ch) { |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 1167 | editing = 0; |
| 1168 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1169 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1170 | #if ENABLE_FEATURE_VI_READONLY |
| 1171 | vc3:; |
| 1172 | #endif |
| 1173 | #if ENABLE_FEATURE_VI_YANKMARK |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1174 | } else if (strncasecmp(cmd, "yank", i) == 0) { // yank lines |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1175 | if (b < 0) { // no addr given- use defaults |
| 1176 | q = begin_line(dot); // assume .,. for the range |
| 1177 | r = end_line(dot); |
| 1178 | } |
| 1179 | text_yank(q, r, YDreg); |
| 1180 | li = count_lines(q, r); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1181 | status_line("Yank %d lines (%d chars) into [%c]", |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1182 | li, strlen(reg[YDreg]), what_reg()); |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1183 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1184 | } else { |
| 1185 | // cmd unknown |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1186 | not_implemented(cmd); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1187 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1188 | vc1: |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1189 | dot = bound_dot(dot); // make sure "dot" is valid |
| 1190 | return; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1191 | #if ENABLE_FEATURE_VI_SEARCH |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1192 | colon_s_fail: |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1193 | status_line(":s expression missing delimiters"); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1194 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1195 | } |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 1196 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1197 | #endif /* FEATURE_VI_COLON */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1198 | |
| 1199 | static void Hit_Return(void) |
| 1200 | { |
| 1201 | char c; |
| 1202 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1203 | standout_start(); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 1204 | write1("[Hit return to continue]"); |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1205 | standout_end(); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1206 | while ((c = get_one_char()) != '\n' && c != '\r') |
| 1207 | continue; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1208 | redraw(TRUE); // force redraw all |
| 1209 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1210 | |
Denis Vlasenko | 91afdf8 | 2007-07-17 23:22:49 +0000 | [diff] [blame] | 1211 | static int next_tabstop(int col) |
| 1212 | { |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1213 | return col + ((tabstop - 1) - (col % tabstop)); |
| 1214 | } |
| 1215 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1216 | //----- Synchronize the cursor to Dot -------------------------- |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1217 | static void sync_cursor(char *d, int *row, int *col) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1218 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1219 | char *beg_cur; // begin and end of "d" line |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1220 | char *tp; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1221 | int cnt, ro, co; |
| 1222 | |
| 1223 | beg_cur = begin_line(d); // first char of cur line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1224 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1225 | if (beg_cur < screenbegin) { |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1226 | // "d" is before top line on screen |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1227 | // how many lines do we have to move |
| 1228 | cnt = count_lines(beg_cur, screenbegin); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1229 | sc1: |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1230 | screenbegin = beg_cur; |
| 1231 | if (cnt > (rows - 1) / 2) { |
| 1232 | // we moved too many lines. put "dot" in middle of screen |
| 1233 | for (cnt = 0; cnt < (rows - 1) / 2; cnt++) { |
| 1234 | screenbegin = prev_line(screenbegin); |
| 1235 | } |
| 1236 | } |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1237 | } else { |
| 1238 | char *end_scr; // begin and end of screen |
| 1239 | end_scr = end_screen(); // last char of screen |
| 1240 | if (beg_cur > end_scr) { |
| 1241 | // "d" is after bottom line on screen |
| 1242 | // how many lines do we have to move |
| 1243 | cnt = count_lines(end_scr, beg_cur); |
| 1244 | if (cnt > (rows - 1) / 2) |
| 1245 | goto sc1; // too many lines |
| 1246 | for (ro = 0; ro < cnt - 1; ro++) { |
| 1247 | // move screen begin the same amount |
| 1248 | screenbegin = next_line(screenbegin); |
| 1249 | // now, move the end of screen |
| 1250 | end_scr = next_line(end_scr); |
| 1251 | end_scr = end_line(end_scr); |
| 1252 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1253 | } |
| 1254 | } |
| 1255 | // "d" is on screen- find out which row |
| 1256 | tp = screenbegin; |
| 1257 | for (ro = 0; ro < rows - 1; ro++) { // drive "ro" to correct row |
| 1258 | if (tp == beg_cur) |
| 1259 | break; |
| 1260 | tp = next_line(tp); |
| 1261 | } |
| 1262 | |
| 1263 | // find out what col "d" is on |
| 1264 | co = 0; |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1265 | while (tp < d) { // drive "co" to correct column |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1266 | if (*tp == '\n') //vda || *tp == '\0') |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1267 | break; |
| 1268 | if (*tp == '\t') { |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1269 | // handle tabs like real vi |
| 1270 | if (d == tp && cmd_mode) { |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1271 | break; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1272 | } |
Denis Vlasenko | e3eae0d | 2008-06-22 16:38:53 +0000 | [diff] [blame] | 1273 | co = next_tabstop(co); |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1274 | } else if ((unsigned char)*tp < ' ' || *tp == 0x7f) { |
| 1275 | co++; // display as ^X, use 2 columns |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1276 | } |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1277 | co++; |
| 1278 | tp++; |
| 1279 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1280 | |
| 1281 | // "co" is the column where "dot" is. |
| 1282 | // The screen has "columns" columns. |
| 1283 | // The currently displayed columns are 0+offset -- columns+ofset |
| 1284 | // |-------------------------------------------------------------| |
| 1285 | // ^ ^ ^ |
| 1286 | // offset | |------- columns ----------------| |
| 1287 | // |
| 1288 | // If "co" is already in this range then we do not have to adjust offset |
| 1289 | // but, we do have to subtract the "offset" bias from "co". |
| 1290 | // If "co" is outside this range then we have to change "offset". |
| 1291 | // If the first char of a line is a tab the cursor will try to stay |
| 1292 | // in column 7, but we have to set offset to 0. |
| 1293 | |
| 1294 | if (co < 0 + offset) { |
| 1295 | offset = co; |
| 1296 | } |
| 1297 | if (co >= columns + offset) { |
| 1298 | offset = co - columns + 1; |
| 1299 | } |
| 1300 | // if the first char of the line is a tab, and "dot" is sitting on it |
| 1301 | // force offset to 0. |
| 1302 | if (d == beg_cur && *d == '\t') { |
| 1303 | offset = 0; |
| 1304 | } |
| 1305 | co -= offset; |
| 1306 | |
| 1307 | *row = ro; |
| 1308 | *col = co; |
| 1309 | } |
| 1310 | |
| 1311 | //----- Text Movement Routines --------------------------------- |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1312 | static char *begin_line(char *p) // return pointer to first char cur line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1313 | { |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1314 | if (p > text) { |
| 1315 | p = memrchr(text, '\n', p - text); |
| 1316 | if (!p) |
| 1317 | return text; |
| 1318 | return p + 1; |
| 1319 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1320 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1321 | } |
| 1322 | |
Denis Vlasenko | e3eae0d | 2008-06-22 16:38:53 +0000 | [diff] [blame] | 1323 | static char *end_line(char *p) // return pointer to NL of cur line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1324 | { |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1325 | if (p < end - 1) { |
| 1326 | p = memchr(p, '\n', end - p - 1); |
| 1327 | if (!p) |
| 1328 | return end - 1; |
| 1329 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1330 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1331 | } |
| 1332 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1333 | static char *dollar_line(char *p) // return pointer to just before NL line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1334 | { |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1335 | p = end_line(p); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1336 | // Try to stay off of the Newline |
| 1337 | if (*p == '\n' && (p - begin_line(p)) > 0) |
| 1338 | p--; |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1339 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1340 | } |
| 1341 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1342 | static char *prev_line(char *p) // return pointer first char prev line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1343 | { |
| 1344 | p = begin_line(p); // goto begining of cur line |
Denis Vlasenko | e3eae0d | 2008-06-22 16:38:53 +0000 | [diff] [blame] | 1345 | if (p > text && p[-1] == '\n') |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1346 | p--; // step to prev line |
| 1347 | p = begin_line(p); // goto begining of prev line |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1348 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1349 | } |
| 1350 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1351 | static char *next_line(char *p) // return pointer first char next line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1352 | { |
| 1353 | p = end_line(p); |
Denis Vlasenko | e3eae0d | 2008-06-22 16:38:53 +0000 | [diff] [blame] | 1354 | if (p < end - 1 && *p == '\n') |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1355 | p++; // step to next line |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1356 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1357 | } |
| 1358 | |
| 1359 | //----- Text Information Routines ------------------------------ |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1360 | static char *end_screen(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1361 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1362 | char *q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1363 | int cnt; |
| 1364 | |
| 1365 | // find new bottom line |
| 1366 | q = screenbegin; |
| 1367 | for (cnt = 0; cnt < rows - 2; cnt++) |
| 1368 | q = next_line(q); |
| 1369 | q = end_line(q); |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1370 | return q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1371 | } |
| 1372 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1373 | // count line from start to stop |
| 1374 | static int count_lines(char *start, char *stop) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1375 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1376 | char *q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1377 | int cnt; |
| 1378 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1379 | if (stop < start) { // start and stop are backwards- reverse them |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1380 | q = start; |
| 1381 | start = stop; |
| 1382 | stop = q; |
| 1383 | } |
| 1384 | cnt = 0; |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1385 | stop = end_line(stop); |
| 1386 | while (start <= stop && start <= end - 1) { |
| 1387 | start = end_line(start); |
| 1388 | if (*start == '\n') |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1389 | cnt++; |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1390 | start++; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1391 | } |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 1392 | return cnt; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1393 | } |
| 1394 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1395 | static char *find_line(int li) // find begining of line #li |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1396 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1397 | char *q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1398 | |
| 1399 | for (q = text; li > 1; li--) { |
| 1400 | q = next_line(q); |
| 1401 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1402 | return q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1403 | } |
| 1404 | |
| 1405 | //----- Dot Movement Routines ---------------------------------- |
| 1406 | static void dot_left(void) |
| 1407 | { |
| 1408 | if (dot > text && dot[-1] != '\n') |
| 1409 | dot--; |
| 1410 | } |
| 1411 | |
| 1412 | static void dot_right(void) |
| 1413 | { |
| 1414 | if (dot < end - 1 && *dot != '\n') |
| 1415 | dot++; |
| 1416 | } |
| 1417 | |
| 1418 | static void dot_begin(void) |
| 1419 | { |
| 1420 | dot = begin_line(dot); // return pointer to first char cur line |
| 1421 | } |
| 1422 | |
| 1423 | static void dot_end(void) |
| 1424 | { |
| 1425 | dot = end_line(dot); // return pointer to last char cur line |
| 1426 | } |
| 1427 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1428 | static char *move_to_col(char *p, int l) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1429 | { |
| 1430 | int co; |
| 1431 | |
| 1432 | p = begin_line(p); |
| 1433 | co = 0; |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1434 | while (co < l && p < end) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1435 | if (*p == '\n') //vda || *p == '\0') |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1436 | break; |
| 1437 | if (*p == '\t') { |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1438 | co = next_tabstop(co); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 1439 | } else if (*p < ' ' || *p == 127) { |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1440 | co++; // display as ^X, use 2 columns |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1441 | } |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 1442 | co++; |
| 1443 | p++; |
| 1444 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1445 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1446 | } |
| 1447 | |
| 1448 | static void dot_next(void) |
| 1449 | { |
| 1450 | dot = next_line(dot); |
| 1451 | } |
| 1452 | |
| 1453 | static void dot_prev(void) |
| 1454 | { |
| 1455 | dot = prev_line(dot); |
| 1456 | } |
| 1457 | |
| 1458 | static void dot_scroll(int cnt, int dir) |
| 1459 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1460 | char *q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1461 | |
| 1462 | for (; cnt > 0; cnt--) { |
| 1463 | if (dir < 0) { |
| 1464 | // scroll Backwards |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1465 | // ctrl-Y scroll up one line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1466 | screenbegin = prev_line(screenbegin); |
| 1467 | } else { |
| 1468 | // scroll Forwards |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1469 | // ctrl-E scroll down one line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1470 | screenbegin = next_line(screenbegin); |
| 1471 | } |
| 1472 | } |
| 1473 | // make sure "dot" stays on the screen so we dont scroll off |
| 1474 | if (dot < screenbegin) |
| 1475 | dot = screenbegin; |
| 1476 | q = end_screen(); // find new bottom line |
| 1477 | if (dot > q) |
| 1478 | dot = begin_line(q); // is dot is below bottom line? |
| 1479 | dot_skip_over_ws(); |
| 1480 | } |
| 1481 | |
| 1482 | static void dot_skip_over_ws(void) |
| 1483 | { |
| 1484 | // skip WS |
| 1485 | while (isspace(*dot) && *dot != '\n' && dot < end - 1) |
| 1486 | dot++; |
| 1487 | } |
| 1488 | |
| 1489 | static void dot_delete(void) // delete the char at 'dot' |
| 1490 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1491 | text_hole_delete(dot, dot); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1492 | } |
| 1493 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1494 | static char *bound_dot(char *p) // make sure text[0] <= P < "end" |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1495 | { |
| 1496 | if (p >= end && end > text) { |
| 1497 | p = end - 1; |
| 1498 | indicate_error('1'); |
| 1499 | } |
| 1500 | if (p < text) { |
| 1501 | p = text; |
| 1502 | indicate_error('2'); |
| 1503 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1504 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1505 | } |
| 1506 | |
| 1507 | //----- Helper Utility Routines -------------------------------- |
| 1508 | |
| 1509 | //---------------------------------------------------------------- |
| 1510 | //----- Char Routines -------------------------------------------- |
| 1511 | /* Chars that are part of a word- |
| 1512 | * 0123456789_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz |
| 1513 | * Chars that are Not part of a word (stoppers) |
| 1514 | * !"#$%&'()*+,-./:;<=>?@[\]^`{|}~ |
| 1515 | * Chars that are WhiteSpace |
| 1516 | * TAB NEWLINE VT FF RETURN SPACE |
| 1517 | * DO NOT COUNT NEWLINE AS WHITESPACE |
| 1518 | */ |
| 1519 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1520 | static char *new_screen(int ro, int co) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1521 | { |
| 1522 | int li; |
| 1523 | |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 1524 | free(screen); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1525 | screensize = ro * co + 8; |
Denis Vlasenko | b95636c | 2006-12-19 23:36:04 +0000 | [diff] [blame] | 1526 | screen = xmalloc(screensize); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1527 | // initialize the new screen. assume this will be a empty file. |
| 1528 | screen_erase(); |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 1529 | // non-existent text[] lines start with a tilde (~). |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1530 | for (li = 1; li < ro - 1; li++) { |
| 1531 | screen[(li * co) + 0] = '~'; |
| 1532 | } |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 1533 | return screen; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1534 | } |
| 1535 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1536 | #if ENABLE_FEATURE_VI_SEARCH |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1537 | static int mycmp(const char *s1, const char *s2, int len) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1538 | { |
| 1539 | int i; |
| 1540 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1541 | i = strncmp(s1, s2, len); |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1542 | if (ENABLE_FEATURE_VI_SETOPTS && ignorecase) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1543 | i = strncasecmp(s1, s2, len); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1544 | } |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 1545 | return i; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1546 | } |
| 1547 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1548 | // search for pattern starting at p |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1549 | static char *char_search(char *p, const char *pat, int dir, int range) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1550 | { |
| 1551 | #ifndef REGEX_SEARCH |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1552 | char *start, *stop; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1553 | int len; |
| 1554 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1555 | len = strlen(pat); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1556 | if (dir == FORWARD) { |
| 1557 | stop = end - 1; // assume range is p - end-1 |
| 1558 | if (range == LIMITED) |
| 1559 | stop = next_line(p); // range is to next line |
| 1560 | for (start = p; start < stop; start++) { |
| 1561 | if (mycmp(start, pat, len) == 0) { |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 1562 | return start; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1563 | } |
| 1564 | } |
| 1565 | } else if (dir == BACK) { |
| 1566 | stop = text; // assume range is text - p |
| 1567 | if (range == LIMITED) |
| 1568 | stop = prev_line(p); // range is to prev line |
| 1569 | for (start = p - len; start >= stop; start--) { |
| 1570 | if (mycmp(start, pat, len) == 0) { |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 1571 | return start; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1572 | } |
| 1573 | } |
| 1574 | } |
| 1575 | // pattern not found |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 1576 | return NULL; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1577 | #else /* REGEX_SEARCH */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1578 | char *q; |
| 1579 | struct re_pattern_buffer preg; |
| 1580 | int i; |
| 1581 | int size, range; |
| 1582 | |
| 1583 | re_syntax_options = RE_SYNTAX_POSIX_EXTENDED; |
| 1584 | preg.translate = 0; |
| 1585 | preg.fastmap = 0; |
| 1586 | preg.buffer = 0; |
| 1587 | preg.allocated = 0; |
| 1588 | |
| 1589 | // assume a LIMITED forward search |
| 1590 | q = next_line(p); |
| 1591 | q = end_line(q); |
| 1592 | q = end - 1; |
| 1593 | if (dir == BACK) { |
| 1594 | q = prev_line(p); |
| 1595 | q = text; |
| 1596 | } |
| 1597 | // count the number of chars to search over, forward or backward |
| 1598 | size = q - p; |
| 1599 | if (size < 0) |
| 1600 | size = p - q; |
| 1601 | // RANGE could be negative if we are searching backwards |
| 1602 | range = q - p; |
| 1603 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1604 | q = re_compile_pattern(pat, strlen(pat), &preg); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1605 | if (q != 0) { |
| 1606 | // The pattern was not compiled |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 1607 | status_line_bold("bad search pattern: \"%s\": %s", pat, q); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1608 | i = 0; // return p if pattern not compiled |
| 1609 | goto cs1; |
| 1610 | } |
| 1611 | |
| 1612 | q = p; |
| 1613 | if (range < 0) { |
| 1614 | q = p - size; |
| 1615 | if (q < text) |
| 1616 | q = text; |
| 1617 | } |
| 1618 | // search for the compiled pattern, preg, in p[] |
| 1619 | // range < 0- search backward |
| 1620 | // range > 0- search forward |
| 1621 | // 0 < start < size |
| 1622 | // re_search() < 0 not found or error |
| 1623 | // re_search() > 0 index of found pattern |
| 1624 | // struct pattern char int int int struct reg |
| 1625 | // re_search (*pattern_buffer, *string, size, start, range, *regs) |
| 1626 | i = re_search(&preg, q, size, 0, range, 0); |
| 1627 | if (i == -1) { |
| 1628 | p = 0; |
| 1629 | i = 0; // return NULL if pattern not found |
| 1630 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1631 | cs1: |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1632 | if (dir == FORWARD) { |
| 1633 | p = p + i; |
| 1634 | } else { |
| 1635 | p = p - i; |
| 1636 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1637 | return p; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1638 | #endif /* REGEX_SEARCH */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1639 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1640 | #endif /* FEATURE_VI_SEARCH */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1641 | |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1642 | static char *char_insert(char *p, char c) // insert the char c at 'p' |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1643 | { |
| 1644 | if (c == 22) { // Is this an ctrl-V? |
| 1645 | p = stupid_insert(p, '^'); // use ^ to indicate literal next |
| 1646 | p--; // backup onto ^ |
| 1647 | refresh(FALSE); // show the ^ |
| 1648 | c = get_one_char(); |
| 1649 | *p = c; |
| 1650 | p++; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 1651 | file_modified++; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1652 | } else if (c == 27) { // Is this an ESC? |
| 1653 | cmd_mode = 0; |
| 1654 | cmdcnt = 0; |
| 1655 | end_cmd_q(); // stop adding to q |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 1656 | last_status_cksum = 0; // force status update |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 1657 | if ((p[-1] != '\n') && (dot > text)) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1658 | p--; |
| 1659 | } |
Paul Fox | d13b90b | 2005-07-18 22:17:25 +0000 | [diff] [blame] | 1660 | } else if (c == erase_char || c == 8 || c == 127) { // Is this a BS |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1661 | // 123456789 |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 1662 | if ((p[-1] != '\n') && (dot>text)) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1663 | p--; |
| 1664 | p = text_hole_delete(p, p); // shrink buffer 1 char |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1665 | } |
| 1666 | } else { |
| 1667 | // insert a char into text[] |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1668 | char *sp; // "save p" |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1669 | |
| 1670 | if (c == 13) |
| 1671 | c = '\n'; // translate \r to \n |
| 1672 | sp = p; // remember addr of insert |
| 1673 | p = stupid_insert(p, c); // insert the char |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1674 | #if ENABLE_FEATURE_VI_SETOPTS |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1675 | if (showmatch && strchr(")]}", *sp) != NULL) { |
| 1676 | showmatching(sp); |
| 1677 | } |
| 1678 | if (autoindent && c == '\n') { // auto indent the new line |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1679 | char *q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1680 | |
| 1681 | q = prev_line(p); // use prev line as templet |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 1682 | for (; isblank(*q); q++) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1683 | p = stupid_insert(p, *q); // insert the char |
| 1684 | } |
| 1685 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1686 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1687 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1688 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1689 | } |
| 1690 | |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1691 | static char *stupid_insert(char *p, char c) // stupidly insert the char c at 'p' |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1692 | { |
| 1693 | p = text_hole_make(p, 1); |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 1694 | *p = c; |
| 1695 | //file_modified++; - done by text_hole_make() |
| 1696 | return p + 1; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1697 | } |
| 1698 | |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1699 | static int find_range(char **start, char **stop, char c) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1700 | { |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 1701 | char *save_dot, *p, *q, *t; |
| 1702 | int cnt, multiline = 0; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1703 | |
| 1704 | save_dot = dot; |
| 1705 | p = q = dot; |
| 1706 | |
| 1707 | if (strchr("cdy><", c)) { |
| 1708 | // these cmds operate on whole lines |
| 1709 | p = q = begin_line(p); |
| 1710 | for (cnt = 1; cnt < cmdcnt; cnt++) { |
| 1711 | q = next_line(q); |
| 1712 | } |
| 1713 | q = end_line(q); |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 1714 | } else if (strchr("^%$0bBeEfth\b\177", c)) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1715 | // These cmds operate on char positions |
| 1716 | do_cmd(c); // execute movement cmd |
| 1717 | q = dot; |
| 1718 | } else if (strchr("wW", c)) { |
| 1719 | do_cmd(c); // execute movement cmd |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 1720 | // if we are at the next word's first char |
| 1721 | // step back one char |
| 1722 | // but check the possibilities when it is true |
Eric Andersen | 5cc90ea | 2004-02-06 10:36:08 +0000 | [diff] [blame] | 1723 | if (dot > text && ((isspace(dot[-1]) && !isspace(dot[0])) |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 1724 | || (ispunct(dot[-1]) && !ispunct(dot[0])) |
| 1725 | || (isalnum(dot[-1]) && !isalnum(dot[0])))) |
| 1726 | dot--; // move back off of next word |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1727 | if (dot > text && *dot == '\n') |
| 1728 | dot--; // stay off NL |
| 1729 | q = dot; |
| 1730 | } else if (strchr("H-k{", c)) { |
| 1731 | // these operate on multi-lines backwards |
| 1732 | q = end_line(dot); // find NL |
| 1733 | do_cmd(c); // execute movement cmd |
| 1734 | dot_begin(); |
| 1735 | p = dot; |
| 1736 | } else if (strchr("L+j}\r\n", c)) { |
| 1737 | // these operate on multi-lines forwards |
| 1738 | p = begin_line(dot); |
| 1739 | do_cmd(c); // execute movement cmd |
| 1740 | dot_end(); // find NL |
| 1741 | q = dot; |
| 1742 | } else { |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 1743 | // nothing -- this causes any other values of c to |
| 1744 | // represent the one-character range under the |
| 1745 | // cursor. this is correct for ' ' and 'l', but |
| 1746 | // perhaps no others. |
| 1747 | // |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1748 | } |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 1749 | if (q < p) { |
| 1750 | t = q; |
| 1751 | q = p; |
| 1752 | p = t; |
| 1753 | } |
| 1754 | |
Denis Vlasenko | 42cc304 | 2008-03-24 02:05:58 +0000 | [diff] [blame] | 1755 | // backward char movements don't include start position |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 1756 | if (q > p && strchr("^0bBh\b\177", c)) q--; |
| 1757 | |
| 1758 | multiline = 0; |
| 1759 | for (t = p; t <= q; t++) { |
| 1760 | if (*t == '\n') { |
| 1761 | multiline = 1; |
| 1762 | break; |
| 1763 | } |
| 1764 | } |
| 1765 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1766 | *start = p; |
| 1767 | *stop = q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1768 | dot = save_dot; |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 1769 | return multiline; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1770 | } |
| 1771 | |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1772 | static int st_test(char *p, int type, int dir, char *tested) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1773 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1774 | char c, c0, ci; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1775 | int test, inc; |
| 1776 | |
| 1777 | inc = dir; |
| 1778 | c = c0 = p[0]; |
| 1779 | ci = p[inc]; |
| 1780 | test = 0; |
| 1781 | |
| 1782 | if (type == S_BEFORE_WS) { |
| 1783 | c = ci; |
| 1784 | test = ((!isspace(c)) || c == '\n'); |
| 1785 | } |
| 1786 | if (type == S_TO_WS) { |
| 1787 | c = c0; |
| 1788 | test = ((!isspace(c)) || c == '\n'); |
| 1789 | } |
| 1790 | if (type == S_OVER_WS) { |
| 1791 | c = c0; |
| 1792 | test = ((isspace(c))); |
| 1793 | } |
| 1794 | if (type == S_END_PUNCT) { |
| 1795 | c = ci; |
| 1796 | test = ((ispunct(c))); |
| 1797 | } |
| 1798 | if (type == S_END_ALNUM) { |
| 1799 | c = ci; |
| 1800 | test = ((isalnum(c)) || c == '_'); |
| 1801 | } |
| 1802 | *tested = c; |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 1803 | return test; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1804 | } |
| 1805 | |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1806 | static char *skip_thing(char *p, int linecnt, int dir, int type) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1807 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1808 | char c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1809 | |
| 1810 | while (st_test(p, type, dir, &c)) { |
| 1811 | // make sure we limit search to correct number of lines |
| 1812 | if (c == '\n' && --linecnt < 1) |
| 1813 | break; |
| 1814 | if (dir >= 0 && p >= end - 1) |
| 1815 | break; |
| 1816 | if (dir < 0 && p <= text) |
| 1817 | break; |
| 1818 | p += dir; // move to next char |
| 1819 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1820 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1821 | } |
| 1822 | |
| 1823 | // find matching char of pair () [] {} |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1824 | static char *find_pair(char *p, const char c) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1825 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1826 | char match, *q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1827 | int dir, level; |
| 1828 | |
| 1829 | match = ')'; |
| 1830 | level = 1; |
| 1831 | dir = 1; // assume forward |
| 1832 | switch (c) { |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 1833 | case '(': match = ')'; break; |
| 1834 | case '[': match = ']'; break; |
| 1835 | case '{': match = '}'; break; |
| 1836 | case ')': match = '('; dir = -1; break; |
| 1837 | case ']': match = '['; dir = -1; break; |
| 1838 | case '}': match = '{'; dir = -1; break; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1839 | } |
| 1840 | for (q = p + dir; text <= q && q < end; q += dir) { |
| 1841 | // look for match, count levels of pairs (( )) |
| 1842 | if (*q == c) |
| 1843 | level++; // increase pair levels |
| 1844 | if (*q == match) |
| 1845 | level--; // reduce pair level |
| 1846 | if (level == 0) |
| 1847 | break; // found matching pair |
| 1848 | } |
| 1849 | if (level != 0) |
| 1850 | q = NULL; // indicate no match |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1851 | return q; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1852 | } |
| 1853 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1854 | #if ENABLE_FEATURE_VI_SETOPTS |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1855 | // show the matching char of a pair, () [] {} |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 1856 | static void showmatching(char *p) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1857 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1858 | char *q, *save_dot; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1859 | |
| 1860 | // we found half of a pair |
| 1861 | q = find_pair(p, *p); // get loc of matching char |
| 1862 | if (q == NULL) { |
| 1863 | indicate_error('3'); // no matching char |
| 1864 | } else { |
| 1865 | // "q" now points to matching pair |
| 1866 | save_dot = dot; // remember where we are |
| 1867 | dot = q; // go to new loc |
| 1868 | refresh(FALSE); // let the user see it |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1869 | mysleep(40); // give user some time |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1870 | dot = save_dot; // go back to old loc |
| 1871 | refresh(FALSE); |
| 1872 | } |
| 1873 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1874 | #endif /* FEATURE_VI_SETOPTS */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1875 | |
| 1876 | // open a hole in text[] |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1877 | static char *text_hole_make(char *p, int size) // at "p", make a 'size' byte hole |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1878 | { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1879 | if (size <= 0) |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 1880 | return p; |
| 1881 | end += size; // adjust the new END |
| 1882 | if (end >= (text + text_size)) { |
| 1883 | char *new_text; |
| 1884 | text_size += end - (text + text_size) + 10240; |
| 1885 | new_text = xrealloc(text, text_size); |
| 1886 | screenbegin = new_text + (screenbegin - text); |
| 1887 | dot = new_text + (dot - text); |
| 1888 | end = new_text + (end - text); |
| 1889 | p = new_text + (p - text); |
| 1890 | text = new_text; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1891 | } |
Denis Vlasenko | d699544 | 2008-06-27 04:06:13 +0000 | [diff] [blame] | 1892 | memmove(p + size, p, end - size - p); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1893 | memset(p, ' ', size); // clear new hole |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 1894 | file_modified++; |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1895 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1896 | } |
| 1897 | |
| 1898 | // close a hole in text[] |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1899 | static char *text_hole_delete(char *p, char *q) // delete "p" through "q", inclusive |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1900 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1901 | char *src, *dest; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1902 | int cnt, hole_size; |
| 1903 | |
| 1904 | // move forwards, from beginning |
| 1905 | // assume p <= q |
| 1906 | src = q + 1; |
| 1907 | dest = p; |
| 1908 | if (q < p) { // they are backward- swap them |
| 1909 | src = p + 1; |
| 1910 | dest = q; |
| 1911 | } |
| 1912 | hole_size = q - p + 1; |
| 1913 | cnt = end - src; |
| 1914 | if (src < text || src > end) |
| 1915 | goto thd0; |
| 1916 | if (dest < text || dest >= end) |
| 1917 | goto thd0; |
| 1918 | if (src >= end) |
| 1919 | goto thd_atend; // just delete the end of the buffer |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 1920 | memmove(dest, src, cnt); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1921 | thd_atend: |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1922 | end = end - hole_size; // adjust the new END |
| 1923 | if (dest >= end) |
| 1924 | dest = end - 1; // make sure dest in below end-1 |
| 1925 | if (end <= text) |
| 1926 | dest = end = text; // keep pointers valid |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 1927 | file_modified++; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1928 | thd0: |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 1929 | return dest; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1930 | } |
| 1931 | |
| 1932 | // copy text into register, then delete text. |
| 1933 | // if dist <= 0, do not include, or go past, a NewLine |
| 1934 | // |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 1935 | static char *yank_delete(char *start, char *stop, int dist, int yf) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1936 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 1937 | char *p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1938 | |
| 1939 | // make sure start <= stop |
| 1940 | if (start > stop) { |
| 1941 | // they are backwards, reverse them |
| 1942 | p = start; |
| 1943 | start = stop; |
| 1944 | stop = p; |
| 1945 | } |
| 1946 | if (dist <= 0) { |
Denis Vlasenko | e1a0d48 | 2006-10-20 13:28:22 +0000 | [diff] [blame] | 1947 | // we cannot cross NL boundaries |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1948 | p = start; |
| 1949 | if (*p == '\n') |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1950 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1951 | // dont go past a NewLine |
| 1952 | for (; p + 1 <= stop; p++) { |
| 1953 | if (p[1] == '\n') { |
| 1954 | stop = p; // "stop" just before NewLine |
| 1955 | break; |
| 1956 | } |
| 1957 | } |
| 1958 | } |
| 1959 | p = start; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1960 | #if ENABLE_FEATURE_VI_YANKMARK |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1961 | text_yank(start, stop, YDreg); |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1962 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1963 | if (yf == YANKDEL) { |
| 1964 | p = text_hole_delete(start, stop); |
| 1965 | } // delete lines |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 1966 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1967 | } |
| 1968 | |
| 1969 | static void show_help(void) |
| 1970 | { |
| 1971 | puts("These features are available:" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1972 | #if ENABLE_FEATURE_VI_SEARCH |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1973 | "\n\tPattern searches with / and ?" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1974 | #endif |
| 1975 | #if ENABLE_FEATURE_VI_DOT_CMD |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1976 | "\n\tLast command repeat with \'.\'" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1977 | #endif |
| 1978 | #if ENABLE_FEATURE_VI_YANKMARK |
Bernhard Reutner-Fischer | d24d5c8 | 2007-10-01 18:04:42 +0000 | [diff] [blame] | 1979 | "\n\tLine marking with 'x" |
| 1980 | "\n\tNamed buffers with \"x" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1981 | #endif |
| 1982 | #if ENABLE_FEATURE_VI_READONLY |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1983 | "\n\tReadonly if vi is called as \"view\"" |
| 1984 | "\n\tReadonly with -R command line arg" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1985 | #endif |
| 1986 | #if ENABLE_FEATURE_VI_SET |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1987 | "\n\tSome colon mode commands with \':\'" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1988 | #endif |
| 1989 | #if ENABLE_FEATURE_VI_SETOPTS |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1990 | "\n\tSettable options with \":set\"" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1991 | #endif |
| 1992 | #if ENABLE_FEATURE_VI_USE_SIGNALS |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1993 | "\n\tSignal catching- ^C" |
| 1994 | "\n\tJob suspend and resume with ^Z" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1995 | #endif |
| 1996 | #if ENABLE_FEATURE_VI_WIN_RESIZE |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1997 | "\n\tAdapt to window re-sizes" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 1998 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 1999 | ); |
| 2000 | } |
| 2001 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2002 | #if ENABLE_FEATURE_VI_DOT_CMD |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2003 | static void start_new_cmd_q(char c) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2004 | { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2005 | // get buffer for new cmd |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2006 | // if there is a current cmd count put it in the buffer first |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 2007 | if (cmdcnt > 0) { |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 2008 | lmc_len = sprintf(last_modifying_cmd, "%d%c", cmdcnt, c); |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 2009 | } else { // just save char c onto queue |
Paul Fox | d957b95 | 2005-11-28 18:07:53 +0000 | [diff] [blame] | 2010 | last_modifying_cmd[0] = c; |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 2011 | lmc_len = 1; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2012 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2013 | adding2q = 1; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2014 | } |
| 2015 | |
| 2016 | static void end_cmd_q(void) |
| 2017 | { |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2018 | #if ENABLE_FEATURE_VI_YANKMARK |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2019 | YDreg = 26; // go back to default Yank/Delete reg |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2020 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2021 | adding2q = 0; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2022 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2023 | #endif /* FEATURE_VI_DOT_CMD */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2024 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2025 | #if ENABLE_FEATURE_VI_YANKMARK \ |
| 2026 | || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) \ |
| 2027 | || ENABLE_FEATURE_VI_CRASHME |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 2028 | static char *string_insert(char *p, char *s) // insert the string at 'p' |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2029 | { |
| 2030 | int cnt, i; |
| 2031 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2032 | i = strlen(s); |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 2033 | text_hole_make(p, i); |
| 2034 | strncpy(p, s, i); |
| 2035 | for (cnt = 0; *s != '\0'; s++) { |
| 2036 | if (*s == '\n') |
| 2037 | cnt++; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2038 | } |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 2039 | #if ENABLE_FEATURE_VI_YANKMARK |
| 2040 | status_line("Put %d lines (%d chars) from [%c]", cnt, i, what_reg()); |
| 2041 | #endif |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 2042 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2043 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2044 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2045 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2046 | #if ENABLE_FEATURE_VI_YANKMARK |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 2047 | static char *text_yank(char *p, char *q, int dest) // copy text into a register |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2048 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2049 | char *t; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2050 | int cnt; |
| 2051 | |
| 2052 | if (q < p) { // they are backwards- reverse them |
| 2053 | t = q; |
| 2054 | q = p; |
| 2055 | p = t; |
| 2056 | } |
| 2057 | cnt = q - p + 1; |
| 2058 | t = reg[dest]; |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 2059 | free(t); // if already a yank register, free it |
Denis Vlasenko | b95636c | 2006-12-19 23:36:04 +0000 | [diff] [blame] | 2060 | t = xmalloc(cnt + 1); // get a new register |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2061 | memset(t, '\0', cnt + 1); // clear new text[] |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2062 | strncpy(t, p, cnt); // copy text[] into bufer |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2063 | reg[dest] = t; |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 2064 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2065 | } |
| 2066 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2067 | static char what_reg(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2068 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2069 | char c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2070 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2071 | c = 'D'; // default to D-reg |
| 2072 | if (0 <= YDreg && YDreg <= 25) |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2073 | c = 'a' + (char) YDreg; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2074 | if (YDreg == 26) |
| 2075 | c = 'D'; |
| 2076 | if (YDreg == 27) |
| 2077 | c = 'U'; |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 2078 | return c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2079 | } |
| 2080 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2081 | static void check_context(char cmd) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2082 | { |
| 2083 | // A context is defined to be "modifying text" |
| 2084 | // Any modifying command establishes a new context. |
| 2085 | |
| 2086 | if (dot < context_start || dot > context_end) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2087 | if (strchr(modifying_cmds, cmd) != NULL) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2088 | // we are trying to modify text[]- make this the current context |
| 2089 | mark[27] = mark[26]; // move cur to prev |
| 2090 | mark[26] = dot; // move local to cur |
| 2091 | context_start = prev_line(prev_line(dot)); |
| 2092 | context_end = next_line(next_line(dot)); |
| 2093 | //loiter= start_loiter= now; |
| 2094 | } |
| 2095 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2096 | } |
| 2097 | |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 2098 | static char *swap_context(char *p) // goto new context for '' command make this the current context |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2099 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2100 | char *tmp; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2101 | |
| 2102 | // the current context is in mark[26] |
| 2103 | // the previous context is in mark[27] |
| 2104 | // only swap context if other context is valid |
| 2105 | if (text <= mark[27] && mark[27] <= end - 1) { |
| 2106 | tmp = mark[27]; |
| 2107 | mark[27] = mark[26]; |
| 2108 | mark[26] = tmp; |
| 2109 | p = mark[26]; // where we are going- previous context |
| 2110 | context_start = prev_line(prev_line(prev_line(p))); |
| 2111 | context_end = next_line(next_line(next_line(p))); |
| 2112 | } |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 2113 | return p; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2114 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2115 | #endif /* FEATURE_VI_YANKMARK */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2116 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2117 | //----- Set terminal attributes -------------------------------- |
| 2118 | static void rawmode(void) |
| 2119 | { |
| 2120 | tcgetattr(0, &term_orig); |
| 2121 | term_vi = term_orig; |
| 2122 | term_vi.c_lflag &= (~ICANON & ~ECHO); // leave ISIG ON- allow intr's |
| 2123 | term_vi.c_iflag &= (~IXON & ~ICRNL); |
| 2124 | term_vi.c_oflag &= (~ONLCR); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2125 | term_vi.c_cc[VMIN] = 1; |
| 2126 | term_vi.c_cc[VTIME] = 0; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2127 | erase_char = term_vi.c_cc[VERASE]; |
| 2128 | tcsetattr(0, TCSANOW, &term_vi); |
| 2129 | } |
| 2130 | |
| 2131 | static void cookmode(void) |
| 2132 | { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2133 | fflush(stdout); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2134 | tcsetattr(0, TCSANOW, &term_orig); |
| 2135 | } |
| 2136 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2137 | //----- Come here when we get a window resize signal --------- |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2138 | #if ENABLE_FEATURE_VI_USE_SIGNALS |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 2139 | static void winch_sig(int sig UNUSED_PARAM) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2140 | { |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 2141 | // FIXME: do it in main loop!!! |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2142 | signal(SIGWINCH, winch_sig); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2143 | if (ENABLE_FEATURE_VI_WIN_RESIZE) { |
Denis Vlasenko | 621204b | 2006-10-27 09:03:24 +0000 | [diff] [blame] | 2144 | get_terminal_width_height(0, &columns, &rows); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2145 | if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS; |
| 2146 | if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS; |
| 2147 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2148 | new_screen(rows, columns); // get memory for virtual screen |
| 2149 | redraw(TRUE); // re-draw the screen |
| 2150 | } |
| 2151 | |
| 2152 | //----- Come here when we get a continue signal ------------------- |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 2153 | static void cont_sig(int sig UNUSED_PARAM) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2154 | { |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 2155 | rawmode(); // terminal to "raw" |
| 2156 | last_status_cksum = 0; // force status update |
| 2157 | redraw(TRUE); // re-draw the screen |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2158 | |
| 2159 | signal(SIGTSTP, suspend_sig); |
| 2160 | signal(SIGCONT, SIG_DFL); |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 2161 | kill(my_pid, SIGCONT); // huh? why? we are already "continued"... |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2162 | } |
| 2163 | |
| 2164 | //----- Come here when we get a Suspend signal ------------------- |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 2165 | static void suspend_sig(int sig UNUSED_PARAM) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2166 | { |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 2167 | go_bottom_and_clear_to_eol(); |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 2168 | cookmode(); // terminal to "cooked" |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2169 | |
| 2170 | signal(SIGCONT, cont_sig); |
| 2171 | signal(SIGTSTP, SIG_DFL); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2172 | kill(my_pid, SIGTSTP); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2173 | } |
| 2174 | |
| 2175 | //----- Come here when we get a signal --------------------------- |
| 2176 | static void catch_sig(int sig) |
| 2177 | { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2178 | signal(SIGINT, catch_sig); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2179 | if (sig) |
Paul Fox | 2724fa9 | 2008-03-17 15:28:07 +0000 | [diff] [blame] | 2180 | siglongjmp(restart, sig); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2181 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2182 | #endif /* FEATURE_VI_USE_SIGNALS */ |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2183 | |
| 2184 | static int mysleep(int hund) // sleep for 'h' 1/100 seconds |
| 2185 | { |
Denis Vlasenko | 87f3b26 | 2007-09-07 13:43:28 +0000 | [diff] [blame] | 2186 | struct pollfd pfd[1]; |
Denis Vlasenko | cd5c786 | 2007-05-17 16:37:22 +0000 | [diff] [blame] | 2187 | |
Denis Vlasenko | 87f3b26 | 2007-09-07 13:43:28 +0000 | [diff] [blame] | 2188 | pfd[0].fd = 0; |
| 2189 | pfd[0].events = POLLIN; |
Denis Vlasenko | 5d61e71 | 2007-09-27 10:09:59 +0000 | [diff] [blame] | 2190 | return safe_poll(pfd, 1, hund*10) > 0; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2191 | } |
| 2192 | |
| 2193 | //----- IO Routines -------------------------------------------- |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2194 | static char readit(void) // read (maybe cursor) key from stdin |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2195 | { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2196 | char c; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2197 | int n; |
Rob Landley | 988dd55 | 2008-10-14 01:42:33 +0000 | [diff] [blame] | 2198 | |
| 2199 | // Known escape sequences for cursor and function keys. |
| 2200 | static const struct esc_cmds { |
Denis Vlasenko | 4f95e5a | 2007-10-11 10:10:15 +0000 | [diff] [blame] | 2201 | const char seq[4]; |
Denis Vlasenko | ded6ad3 | 2008-10-14 12:26:30 +0000 | [diff] [blame] | 2202 | char val; //TODO: int? Need to make it at least 8-bit clean! |
Rob Landley | 988dd55 | 2008-10-14 01:42:33 +0000 | [diff] [blame] | 2203 | } esccmds[] = { |
Denis Vlasenko | ded6ad3 | 2008-10-14 12:26:30 +0000 | [diff] [blame] | 2204 | {"OA" , VI_K_UP }, // Cursor Key Up |
| 2205 | {"OB" , VI_K_DOWN }, // Cursor Key Down |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2206 | {"OC" , VI_K_RIGHT }, // Cursor Key Right |
Denis Vlasenko | ded6ad3 | 2008-10-14 12:26:30 +0000 | [diff] [blame] | 2207 | {"OD" , VI_K_LEFT }, // Cursor Key Left |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2208 | {"OH" , VI_K_HOME }, // Cursor Key Home |
| 2209 | {"OF" , VI_K_END }, // Cursor Key End |
Rob Landley | 988dd55 | 2008-10-14 01:42:33 +0000 | [diff] [blame] | 2210 | {"OP" , VI_K_FUN1 }, // Function Key F1 |
| 2211 | {"OQ" , VI_K_FUN2 }, // Function Key F2 |
| 2212 | {"OR" , VI_K_FUN3 }, // Function Key F3 |
| 2213 | {"OS" , VI_K_FUN4 }, // Function Key F4 |
| 2214 | |
Denis Vlasenko | ded6ad3 | 2008-10-14 12:26:30 +0000 | [diff] [blame] | 2215 | {"[A" , VI_K_UP }, // Cursor Key Up |
| 2216 | {"[B" , VI_K_DOWN }, // Cursor Key Down |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2217 | {"[C" , VI_K_RIGHT }, // Cursor Key Right |
Denis Vlasenko | ded6ad3 | 2008-10-14 12:26:30 +0000 | [diff] [blame] | 2218 | {"[D" , VI_K_LEFT }, // Cursor Key Left |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2219 | {"[H" , VI_K_HOME }, // Cursor Key Home |
| 2220 | {"[F" , VI_K_END }, // Cursor Key End |
| 2221 | {"[1~" , VI_K_HOME }, // Cursor Key Home |
| 2222 | {"[2~" , VI_K_INSERT }, // Cursor Key Insert |
| 2223 | {"[3~" , VI_K_DELETE }, // Cursor Key Delete |
| 2224 | {"[4~" , VI_K_END }, // Cursor Key End |
| 2225 | {"[5~" , VI_K_PAGEUP }, // Cursor Key Page Up |
| 2226 | {"[6~" , VI_K_PAGEDOWN}, // Cursor Key Page Down |
Denis Vlasenko | 4f95e5a | 2007-10-11 10:10:15 +0000 | [diff] [blame] | 2227 | // careful: these have no terminating NUL! |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2228 | {"[11~", VI_K_FUN1 }, // Function Key F1 |
| 2229 | {"[12~", VI_K_FUN2 }, // Function Key F2 |
| 2230 | {"[13~", VI_K_FUN3 }, // Function Key F3 |
| 2231 | {"[14~", VI_K_FUN4 }, // Function Key F4 |
| 2232 | {"[15~", VI_K_FUN5 }, // Function Key F5 |
| 2233 | {"[17~", VI_K_FUN6 }, // Function Key F6 |
| 2234 | {"[18~", VI_K_FUN7 }, // Function Key F7 |
| 2235 | {"[19~", VI_K_FUN8 }, // Function Key F8 |
| 2236 | {"[20~", VI_K_FUN9 }, // Function Key F9 |
| 2237 | {"[21~", VI_K_FUN10 }, // Function Key F10 |
| 2238 | {"[23~", VI_K_FUN11 }, // Function Key F11 |
| 2239 | {"[24~", VI_K_FUN12 }, // Function Key F12 |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2240 | }; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2241 | |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2242 | fflush(stdout); |
Rob Landley | 988dd55 | 2008-10-14 01:42:33 +0000 | [diff] [blame] | 2243 | |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2244 | n = chars_to_parse; |
Denis Vlasenko | 5373fbc | 2008-10-14 10:09:56 +0000 | [diff] [blame] | 2245 | if (n == 0) { |
Rob Landley | 4bdeaaf | 2008-10-19 04:21:21 +0000 | [diff] [blame^] | 2246 | // If no data, block waiting for input. (If we read more than the |
| 2247 | // minimal ESC sequence size, the "n=0" below would instead have to |
| 2248 | // figure out how much to keep, resulting in larger code.) |
Denis Vlasenko | 8ef801b | 2008-10-16 09:46:07 +0000 | [diff] [blame] | 2249 | n = safe_read(0, readbuffer, 3); |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 2250 | if (n <= 0) { |
Denis Vlasenko | 5373fbc | 2008-10-14 10:09:56 +0000 | [diff] [blame] | 2251 | error: |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 2252 | go_bottom_and_clear_to_eol(); |
Denis Vlasenko | 30cfdf9 | 2008-09-21 15:29:29 +0000 | [diff] [blame] | 2253 | cookmode(); // terminal to "cooked" |
| 2254 | bb_error_msg_and_die("can't read user input"); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2255 | } |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2256 | } |
Rob Landley | 988dd55 | 2008-10-14 01:42:33 +0000 | [diff] [blame] | 2257 | |
| 2258 | // Grab character to return from buffer |
Denis Vlasenko | 5373fbc | 2008-10-14 10:09:56 +0000 | [diff] [blame] | 2259 | c = readbuffer[0]; |
| 2260 | // Returning NUL from this routine would be bad. |
| 2261 | if (c == '\0') |
| 2262 | c = ' '; |
Rob Landley | 988dd55 | 2008-10-14 01:42:33 +0000 | [diff] [blame] | 2263 | n--; |
Denis Vlasenko | 5373fbc | 2008-10-14 10:09:56 +0000 | [diff] [blame] | 2264 | if (n) memmove(readbuffer, readbuffer + 1, n); |
Rob Landley | 988dd55 | 2008-10-14 01:42:33 +0000 | [diff] [blame] | 2265 | |
| 2266 | // If it's an escape sequence, loop through known matches. |
| 2267 | if (c == 27) { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2268 | const struct esc_cmds *eindex; |
Denis Vlasenko | 8ef801b | 2008-10-16 09:46:07 +0000 | [diff] [blame] | 2269 | struct pollfd pfd; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2270 | |
Denis Vlasenko | 8ef801b | 2008-10-16 09:46:07 +0000 | [diff] [blame] | 2271 | pfd.fd = STDIN_FILENO; |
| 2272 | pfd.events = POLLIN; |
Rob Landley | 4bdeaaf | 2008-10-19 04:21:21 +0000 | [diff] [blame^] | 2273 | for (eindex = esccmds; eindex < esccmds + ARRAY_SIZE(esccmds); eindex++) |
| 2274 | { |
Denis Vlasenko | 8ef801b | 2008-10-16 09:46:07 +0000 | [diff] [blame] | 2275 | // n - position in sequence we did not read yet |
| 2276 | int i = 0; // position in sequence to compare |
Rob Landley | 988dd55 | 2008-10-14 01:42:33 +0000 | [diff] [blame] | 2277 | |
Denis Vlasenko | 8ef801b | 2008-10-16 09:46:07 +0000 | [diff] [blame] | 2278 | // Loop through chars in this sequence |
Rob Landley | 988dd55 | 2008-10-14 01:42:33 +0000 | [diff] [blame] | 2279 | for (;;) { |
Denis Vlasenko | 8ef801b | 2008-10-16 09:46:07 +0000 | [diff] [blame] | 2280 | // So far escape sequence matches up to [i-1] |
Rob Landley | 988dd55 | 2008-10-14 01:42:33 +0000 | [diff] [blame] | 2281 | if (n <= i) { |
Denis Vlasenko | 5373fbc | 2008-10-14 10:09:56 +0000 | [diff] [blame] | 2282 | // Need more chars, read another one if it wouldn't block. |
| 2283 | // (Note that escape sequences come in as a unit, |
| 2284 | // so if we would block it's not really an escape sequence.) |
Denis Vlasenko | 8ef801b | 2008-10-16 09:46:07 +0000 | [diff] [blame] | 2285 | |
| 2286 | // Timeout is needed to reconnect escape sequences |
| 2287 | // split up by transmission over a serial console. |
Rob Landley | 4bdeaaf | 2008-10-19 04:21:21 +0000 | [diff] [blame^] | 2288 | |
Denis Vlasenko | 8ef801b | 2008-10-16 09:46:07 +0000 | [diff] [blame] | 2289 | if (safe_poll(&pfd, 1, 50)) { |
Denis Vlasenko | 5373fbc | 2008-10-14 10:09:56 +0000 | [diff] [blame] | 2290 | if (safe_read(0, readbuffer + n, 1) <= 0) |
| 2291 | goto error; |
| 2292 | n++; |
| 2293 | } else { |
| 2294 | // No more data! |
| 2295 | // Array is sorted from shortest to longest, |
| 2296 | // we can't match anything later in array, |
| 2297 | // break out of both loops. |
| 2298 | goto loop_out; |
| 2299 | } |
Rob Landley | 988dd55 | 2008-10-14 01:42:33 +0000 | [diff] [blame] | 2300 | } |
Denis Vlasenko | 5373fbc | 2008-10-14 10:09:56 +0000 | [diff] [blame] | 2301 | if (readbuffer[i] != eindex->seq[i]) |
| 2302 | break; // try next seq |
Denis Vlasenko | 8ef801b | 2008-10-16 09:46:07 +0000 | [diff] [blame] | 2303 | i++; |
| 2304 | if (i == 4 || !eindex->seq[i]) { // entire seq matched |
Rob Landley | 988dd55 | 2008-10-14 01:42:33 +0000 | [diff] [blame] | 2305 | c = eindex->val; |
| 2306 | n = 0; |
Denis Vlasenko | 8ef801b | 2008-10-16 09:46:07 +0000 | [diff] [blame] | 2307 | // n -= i; memmove(...); |
| 2308 | // would be more correct, |
| 2309 | // but we never read ahead that much, |
| 2310 | // and n == i here. |
Rob Landley | 988dd55 | 2008-10-14 01:42:33 +0000 | [diff] [blame] | 2311 | goto loop_out; |
| 2312 | } |
| 2313 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2314 | } |
Denis Vlasenko | 5373fbc | 2008-10-14 10:09:56 +0000 | [diff] [blame] | 2315 | // We did not find matching sequence, it was a bare ESC. |
| 2316 | // We possibly read and stored more input in readbuffer by now. |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2317 | } |
Denis Vlasenko | 8ef801b | 2008-10-16 09:46:07 +0000 | [diff] [blame] | 2318 | loop_out: |
Rob Landley | 988dd55 | 2008-10-14 01:42:33 +0000 | [diff] [blame] | 2319 | |
| 2320 | chars_to_parse = n; |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 2321 | return c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2322 | } |
| 2323 | |
| 2324 | //----- IO Routines -------------------------------------------- |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2325 | static char get_one_char(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2326 | { |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2327 | char c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2328 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2329 | #if ENABLE_FEATURE_VI_DOT_CMD |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2330 | if (!adding2q) { |
| 2331 | // we are not adding to the q. |
| 2332 | // but, we may be reading from a q |
| 2333 | if (ioq == 0) { |
| 2334 | // there is no current q, read from STDIN |
| 2335 | c = readit(); // get the users input |
| 2336 | } else { |
| 2337 | // there is a queue to get chars from first |
| 2338 | c = *ioq++; |
| 2339 | if (c == '\0') { |
| 2340 | // the end of the q, read from STDIN |
| 2341 | free(ioq_start); |
| 2342 | ioq_start = ioq = 0; |
| 2343 | c = readit(); // get the users input |
| 2344 | } |
| 2345 | } |
| 2346 | } else { |
| 2347 | // adding STDIN chars to q |
| 2348 | c = readit(); // get the users input |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2349 | if (lmc_len >= MAX_INPUT_LEN - 1) { |
| 2350 | status_line_bold("last_modifying_cmd overrun"); |
| 2351 | } else { |
| 2352 | // add new char to q |
| 2353 | last_modifying_cmd[lmc_len++] = c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2354 | } |
| 2355 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2356 | #else |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2357 | c = readit(); // get the users input |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2358 | #endif /* FEATURE_VI_DOT_CMD */ |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2359 | return c; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2360 | } |
| 2361 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2362 | // Get input line (uses "status line" area) |
| 2363 | static char *get_input_line(const char *prompt) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2364 | { |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2365 | // char [MAX_INPUT_LEN] |
| 2366 | #define buf get_input_line__buf |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2367 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2368 | char c; |
| 2369 | int i; |
| 2370 | |
| 2371 | strcpy(buf, prompt); |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2372 | last_status_cksum = 0; // force status update |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 2373 | go_bottom_and_clear_to_eol(); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2374 | write1(prompt); // write out the :, /, or ? prompt |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2375 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2376 | i = strlen(buf); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2377 | while (i < MAX_INPUT_LEN) { |
| 2378 | c = get_one_char(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2379 | if (c == '\n' || c == '\r' || c == 27) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2380 | break; // this is end of input |
Paul Fox | f2de0b7 | 2005-09-13 22:20:37 +0000 | [diff] [blame] | 2381 | if (c == erase_char || c == 8 || c == 127) { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 2382 | // user wants to erase prev char |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2383 | buf[--i] = '\0'; |
| 2384 | write1("\b \b"); // erase char on screen |
| 2385 | if (i <= 0) // user backs up before b-o-l, exit |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2386 | break; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2387 | } else { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2388 | buf[i] = c; |
| 2389 | buf[++i] = '\0'; |
| 2390 | bb_putchar(c); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2391 | } |
| 2392 | } |
| 2393 | refresh(FALSE); |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2394 | return buf; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2395 | #undef buf |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2396 | } |
| 2397 | |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2398 | static int file_size(const char *fn) // what is the byte size of "fn" |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2399 | { |
| 2400 | struct stat st_buf; |
Denis Vlasenko | 59a1f30 | 2007-07-14 22:43:10 +0000 | [diff] [blame] | 2401 | int cnt; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2402 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2403 | cnt = -1; |
Denis Vlasenko | 59a1f30 | 2007-07-14 22:43:10 +0000 | [diff] [blame] | 2404 | if (fn && fn[0] && stat(fn, &st_buf) == 0) // see if file exists |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2405 | cnt = (int) st_buf.st_size; |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 2406 | return cnt; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2407 | } |
| 2408 | |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 2409 | static int file_insert(const char *fn, char *p |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2410 | USE_FEATURE_VI_READONLY(, int update_ro_status)) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2411 | { |
Denis Vlasenko | 59a1f30 | 2007-07-14 22:43:10 +0000 | [diff] [blame] | 2412 | int cnt = -1; |
| 2413 | int fd, size; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2414 | struct stat statbuf; |
| 2415 | |
| 2416 | /* Validate file */ |
| 2417 | if (stat(fn, &statbuf) < 0) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2418 | status_line_bold("\"%s\" %s", fn, strerror(errno)); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2419 | goto fi0; |
| 2420 | } |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 2421 | if (!S_ISREG(statbuf.st_mode)) { |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2422 | // This is not a regular file |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2423 | status_line_bold("\"%s\" Not a regular file", fn); |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2424 | goto fi0; |
| 2425 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2426 | if (p < text || p > end) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2427 | status_line_bold("Trying to insert file outside of memory"); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2428 | goto fi0; |
| 2429 | } |
| 2430 | |
Denis Vlasenko | 59a1f30 | 2007-07-14 22:43:10 +0000 | [diff] [blame] | 2431 | // read file to buffer |
| 2432 | fd = open(fn, O_RDONLY); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2433 | if (fd < 0) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2434 | status_line_bold("\"%s\" %s", fn, strerror(errno)); |
Denis Vlasenko | 59a1f30 | 2007-07-14 22:43:10 +0000 | [diff] [blame] | 2435 | goto fi0; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2436 | } |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2437 | size = statbuf.st_size; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2438 | p = text_hole_make(p, size); |
Denis Vlasenko | 4f95e5a | 2007-10-11 10:10:15 +0000 | [diff] [blame] | 2439 | cnt = safe_read(fd, p, size); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2440 | if (cnt < 0) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2441 | status_line_bold("\"%s\" %s", fn, strerror(errno)); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2442 | p = text_hole_delete(p, p + size - 1); // un-do buffer insert |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2443 | } else if (cnt < size) { |
| 2444 | // There was a partial read, shrink unused space text[] |
| 2445 | p = text_hole_delete(p + cnt, p + (size - cnt) - 1); // un-do buffer insert |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2446 | status_line_bold("cannot read all of file \"%s\"", fn); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2447 | } |
| 2448 | if (cnt >= size) |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2449 | file_modified++; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2450 | close(fd); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2451 | fi0: |
Denis Vlasenko | 856be77 | 2007-08-17 08:29:48 +0000 | [diff] [blame] | 2452 | #if ENABLE_FEATURE_VI_READONLY |
| 2453 | if (update_ro_status |
| 2454 | && ((access(fn, W_OK) < 0) || |
| 2455 | /* root will always have access() |
| 2456 | * so we check fileperms too */ |
| 2457 | !(statbuf.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH)) |
| 2458 | ) |
| 2459 | ) { |
Denis Vlasenko | 2f6ae43 | 2007-07-19 22:50:47 +0000 | [diff] [blame] | 2460 | SET_READONLY_FILE(readonly_mode); |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2461 | } |
Denis Vlasenko | 856be77 | 2007-08-17 08:29:48 +0000 | [diff] [blame] | 2462 | #endif |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 2463 | return cnt; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2464 | } |
| 2465 | |
Denis Vlasenko | 3387538 | 2008-06-21 20:31:50 +0000 | [diff] [blame] | 2466 | static int file_write(char *fn, char *first, char *last) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2467 | { |
| 2468 | int fd, cnt, charcnt; |
| 2469 | |
| 2470 | if (fn == 0) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2471 | status_line_bold("No current filename"); |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 2472 | return -2; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2473 | } |
| 2474 | charcnt = 0; |
Denis Vlasenko | 8abae88 | 2008-05-03 11:35:59 +0000 | [diff] [blame] | 2475 | /* By popular request we do not open file with O_TRUNC, |
| 2476 | * but instead ftruncate() it _after_ successful write. |
| 2477 | * Might reduce amount of data lost on power fail etc. |
| 2478 | */ |
| 2479 | fd = open(fn, (O_WRONLY | O_CREAT), 0666); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2480 | if (fd < 0) |
Denis Vlasenko | 079f8af | 2006-11-27 16:49:31 +0000 | [diff] [blame] | 2481 | return -1; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2482 | cnt = last - first + 1; |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2483 | charcnt = full_write(fd, first, cnt); |
Denis Vlasenko | 8abae88 | 2008-05-03 11:35:59 +0000 | [diff] [blame] | 2484 | ftruncate(fd, charcnt); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2485 | if (charcnt == cnt) { |
| 2486 | // good write |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2487 | //file_modified = FALSE; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2488 | } else { |
| 2489 | charcnt = 0; |
| 2490 | } |
| 2491 | close(fd); |
Denis Vlasenko | d9e15f2 | 2006-11-27 16:49:55 +0000 | [diff] [blame] | 2492 | return charcnt; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2493 | } |
| 2494 | |
| 2495 | //----- Terminal Drawing --------------------------------------- |
| 2496 | // The terminal is made up of 'rows' line of 'columns' columns. |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 2497 | // classically this would be 24 x 80. |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2498 | // screen coordinates |
| 2499 | // 0,0 ... 0,79 |
| 2500 | // 1,0 ... 1,79 |
| 2501 | // . ... . |
| 2502 | // . ... . |
| 2503 | // 22,0 ... 22,79 |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2504 | // 23,0 ... 23,79 <- status line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2505 | |
| 2506 | //----- Move the cursor to row x col (count from 0, not 1) ------- |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2507 | static void place_cursor(int row, int col, int optimize) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2508 | { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2509 | char cm1[sizeof(CMrc) + sizeof(int)*3 * 2]; |
Denis Vlasenko | 7b54dc7 | 2008-07-17 21:32:32 +0000 | [diff] [blame] | 2510 | #if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR |
| 2511 | enum { |
| 2512 | SZ_UP = sizeof(CMup), |
| 2513 | SZ_DN = sizeof(CMdown), |
| 2514 | SEQ_SIZE = SZ_UP > SZ_DN ? SZ_UP : SZ_DN, |
| 2515 | }; |
| 2516 | char cm2[SEQ_SIZE * 5 + 32]; // bigger than worst case size |
| 2517 | #endif |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2518 | char *cm; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2519 | |
| 2520 | if (row < 0) row = 0; |
| 2521 | if (row >= rows) row = rows - 1; |
| 2522 | if (col < 0) col = 0; |
| 2523 | if (col >= columns) col = columns - 1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2524 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2525 | //----- 1. Try the standard terminal ESC sequence |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2526 | sprintf(cm1, CMrc, row + 1, col + 1); |
| 2527 | cm = cm1; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2528 | |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2529 | #if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2530 | if (optimize && col < 16) { |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2531 | char *screenp; |
| 2532 | int Rrow = last_row; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2533 | int diff = Rrow - row; |
| 2534 | |
| 2535 | if (diff < -5 || diff > 5) |
| 2536 | goto skip; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2537 | |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2538 | //----- find the minimum # of chars to move cursor ------------- |
| 2539 | //----- 2. Try moving with discreet chars (Newline, [back]space, ...) |
| 2540 | cm2[0] = '\0'; |
| 2541 | |
| 2542 | // move to the correct row |
| 2543 | while (row < Rrow) { |
| 2544 | // the cursor has to move up |
| 2545 | strcat(cm2, CMup); |
| 2546 | Rrow--; |
| 2547 | } |
| 2548 | while (row > Rrow) { |
| 2549 | // the cursor has to move down |
| 2550 | strcat(cm2, CMdown); |
| 2551 | Rrow++; |
| 2552 | } |
| 2553 | |
| 2554 | // now move to the correct column |
| 2555 | strcat(cm2, "\r"); // start at col 0 |
| 2556 | // just send out orignal source char to get to correct place |
| 2557 | screenp = &screen[row * columns]; // start of screen line |
| 2558 | strncat(cm2, screenp, col); |
| 2559 | |
| 2560 | // pick the shortest cursor motion to send out |
| 2561 | if (strlen(cm2) < strlen(cm)) { |
| 2562 | cm = cm2; |
| 2563 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2564 | skip: ; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2565 | } |
Denis Vlasenko | 4baed3a | 2007-12-22 17:31:29 +0000 | [diff] [blame] | 2566 | last_row = row; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2567 | #endif /* FEATURE_VI_OPTIMIZE_CURSOR */ |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2568 | write1(cm); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2569 | } |
| 2570 | |
| 2571 | //----- Erase from cursor to end of line ----------------------- |
Mike Frysinger | 4e5936e | 2005-04-16 04:30:38 +0000 | [diff] [blame] | 2572 | static void clear_to_eol(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2573 | { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2574 | write1(Ceol); // Erase from cursor to end of line |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2575 | } |
| 2576 | |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 2577 | static void go_bottom_and_clear_to_eol(void) |
| 2578 | { |
| 2579 | place_cursor(rows - 1, 0, FALSE); // go to bottom of screen |
| 2580 | clear_to_eol(); // erase to end of line |
| 2581 | } |
| 2582 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2583 | //----- Erase from cursor to end of screen ----------------------- |
Mike Frysinger | 4e5936e | 2005-04-16 04:30:38 +0000 | [diff] [blame] | 2584 | static void clear_to_eos(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2585 | { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2586 | write1(Ceos); // Erase from cursor to end of screen |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2587 | } |
| 2588 | |
| 2589 | //----- Start standout mode ------------------------------------ |
Mike Frysinger | 4e5936e | 2005-04-16 04:30:38 +0000 | [diff] [blame] | 2590 | static void standout_start(void) // send "start reverse video" sequence |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2591 | { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2592 | write1(SOs); // Start reverse video mode |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2593 | } |
| 2594 | |
| 2595 | //----- End standout mode -------------------------------------- |
Mike Frysinger | 4e5936e | 2005-04-16 04:30:38 +0000 | [diff] [blame] | 2596 | static void standout_end(void) // send "end reverse video" sequence |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2597 | { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2598 | write1(SOn); // End reverse video mode |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2599 | } |
| 2600 | |
| 2601 | //----- Flash the screen -------------------------------------- |
| 2602 | static void flash(int h) |
| 2603 | { |
| 2604 | standout_start(); // send "start reverse video" sequence |
| 2605 | redraw(TRUE); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2606 | mysleep(h); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2607 | standout_end(); // send "end reverse video" sequence |
| 2608 | redraw(TRUE); |
| 2609 | } |
| 2610 | |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2611 | static void Indicate_Error(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2612 | { |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2613 | #if ENABLE_FEATURE_VI_CRASHME |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2614 | if (crashme > 0) |
| 2615 | return; // generate a random command |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2616 | #endif |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 2617 | if (!err_method) { |
| 2618 | write1(bell); // send out a bell character |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2619 | } else { |
| 2620 | flash(10); |
| 2621 | } |
| 2622 | } |
| 2623 | |
| 2624 | //----- Screen[] Routines -------------------------------------- |
| 2625 | //----- Erase the Screen[] memory ------------------------------ |
Mike Frysinger | 4e5936e | 2005-04-16 04:30:38 +0000 | [diff] [blame] | 2626 | static void screen_erase(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2627 | { |
| 2628 | memset(screen, ' ', screensize); // clear new screen |
| 2629 | } |
| 2630 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2631 | static int bufsum(char *buf, int count) |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2632 | { |
| 2633 | int sum = 0; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2634 | char *e = buf + count; |
| 2635 | |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2636 | while (buf < e) |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2637 | sum += (unsigned char) *buf++; |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2638 | return sum; |
| 2639 | } |
| 2640 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2641 | //----- Draw the status line at bottom of the screen ------------- |
| 2642 | static void show_status_line(void) |
| 2643 | { |
Paul Fox | c350485 | 2005-09-16 12:48:18 +0000 | [diff] [blame] | 2644 | int cnt = 0, cksum = 0; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2645 | |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2646 | // either we already have an error or status message, or we |
| 2647 | // create one. |
| 2648 | if (!have_status_msg) { |
| 2649 | cnt = format_edit_status(); |
| 2650 | cksum = bufsum(status_buffer, cnt); |
| 2651 | } |
| 2652 | if (have_status_msg || ((cnt > 0 && last_status_cksum != cksum))) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2653 | last_status_cksum = cksum; // remember if we have seen this line |
Denis Vlasenko | 267e16c | 2008-10-14 10:34:41 +0000 | [diff] [blame] | 2654 | go_bottom_and_clear_to_eol(); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2655 | write1(status_buffer); |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2656 | if (have_status_msg) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2657 | if (((int)strlen(status_buffer) - (have_status_msg - 1)) > |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2658 | (columns - 1) ) { |
| 2659 | have_status_msg = 0; |
| 2660 | Hit_Return(); |
| 2661 | } |
| 2662 | have_status_msg = 0; |
| 2663 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2664 | place_cursor(crow, ccol, FALSE); // put cursor back in correct place |
| 2665 | } |
Eric Andersen | a9eb33d | 2004-08-19 19:15:06 +0000 | [diff] [blame] | 2666 | fflush(stdout); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2667 | } |
| 2668 | |
| 2669 | //----- format the status buffer, the bottom line of screen ------ |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2670 | // format status buffer, with STANDOUT mode |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2671 | static void status_line_bold(const char *format, ...) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2672 | { |
| 2673 | va_list args; |
| 2674 | |
| 2675 | va_start(args, format); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2676 | strcpy(status_buffer, SOs); // Terminal standout mode on |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2677 | vsprintf(status_buffer + sizeof(SOs)-1, format, args); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2678 | strcat(status_buffer, SOn); // Terminal standout mode off |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2679 | va_end(args); |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2680 | |
| 2681 | have_status_msg = 1 + sizeof(SOs) + sizeof(SOn) - 2; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2682 | } |
| 2683 | |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2684 | // format status buffer |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2685 | static void status_line(const char *format, ...) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2686 | { |
| 2687 | va_list args; |
| 2688 | |
| 2689 | va_start(args, format); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2690 | vsprintf(status_buffer, format, args); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2691 | va_end(args); |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2692 | |
| 2693 | have_status_msg = 1; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2694 | } |
| 2695 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2696 | // copy s to buf, convert unprintable |
| 2697 | static void print_literal(char *buf, const char *s) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2698 | { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2699 | unsigned char c; |
| 2700 | char b[2]; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2701 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2702 | b[1] = '\0'; |
| 2703 | buf[0] = '\0'; |
| 2704 | if (!s[0]) |
| 2705 | s = "(NULL)"; |
| 2706 | for (; *s; s++) { |
| 2707 | int c_is_no_print; |
| 2708 | |
| 2709 | c = *s; |
| 2710 | c_is_no_print = (c & 0x80) && !Isprint(c); |
| 2711 | if (c_is_no_print) { |
| 2712 | strcat(buf, SOn); |
| 2713 | c = '.'; |
| 2714 | } |
| 2715 | if (c < ' ' || c == 127) { |
| 2716 | strcat(buf, "^"); |
| 2717 | if (c == 127) |
| 2718 | c = '?'; |
| 2719 | else |
| 2720 | c += '@'; |
| 2721 | } |
| 2722 | b[0] = c; |
| 2723 | strcat(buf, b); |
| 2724 | if (c_is_no_print) |
| 2725 | strcat(buf, SOs); |
| 2726 | if (*s == '\n') |
| 2727 | strcat(buf, "$"); |
| 2728 | if (strlen(buf) > MAX_INPUT_LEN - 10) // paranoia |
| 2729 | break; |
| 2730 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2731 | } |
| 2732 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2733 | static void not_implemented(const char *s) |
| 2734 | { |
| 2735 | char buf[MAX_INPUT_LEN]; |
| 2736 | |
| 2737 | print_literal(buf, s); |
| 2738 | status_line_bold("\'%s\' is not implemented", buf); |
| 2739 | } |
| 2740 | |
| 2741 | // show file status on status line |
| 2742 | static int format_edit_status(void) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2743 | { |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 2744 | static const char cmd_mode_indicator[] ALIGN1 = "-IR-"; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2745 | |
| 2746 | #define tot format_edit_status__tot |
| 2747 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2748 | int cur, percent, ret, trunc_at; |
| 2749 | |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2750 | // file_modified is now a counter rather than a flag. this |
| 2751 | // helps reduce the amount of line counting we need to do. |
| 2752 | // (this will cause a mis-reporting of modified status |
| 2753 | // once every MAXINT editing operations.) |
| 2754 | |
| 2755 | // it would be nice to do a similar optimization here -- if |
| 2756 | // we haven't done a motion that could have changed which line |
| 2757 | // we're on, then we shouldn't have to do this count_lines() |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2758 | cur = count_lines(text, dot); |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2759 | |
| 2760 | // reduce counting -- the total lines can't have |
| 2761 | // changed if we haven't done any edits. |
| 2762 | if (file_modified != last_file_modified) { |
| 2763 | tot = cur + count_lines(dot, end - 1) - 1; |
| 2764 | last_file_modified = file_modified; |
| 2765 | } |
| 2766 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2767 | // current line percent |
| 2768 | // ------------- ~~ ---------- |
| 2769 | // total lines 100 |
| 2770 | if (tot > 0) { |
| 2771 | percent = (100 * cur) / tot; |
| 2772 | } else { |
| 2773 | cur = tot = 0; |
| 2774 | percent = 100; |
| 2775 | } |
Eric Andersen | 0ef24c6 | 2005-07-18 10:32:59 +0000 | [diff] [blame] | 2776 | |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2777 | trunc_at = columns < STATUS_BUFFER_LEN-1 ? |
| 2778 | columns : STATUS_BUFFER_LEN-1; |
| 2779 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2780 | ret = snprintf(status_buffer, trunc_at+1, |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2781 | #if ENABLE_FEATURE_VI_READONLY |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2782 | "%c %s%s%s %d/%d %d%%", |
| 2783 | #else |
| 2784 | "%c %s%s %d/%d %d%%", |
| 2785 | #endif |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2786 | cmd_mode_indicator[cmd_mode & 3], |
| 2787 | (current_filename != NULL ? current_filename : "No file"), |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 2788 | #if ENABLE_FEATURE_VI_READONLY |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2789 | (readonly_mode ? " [Readonly]" : ""), |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2790 | #endif |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 2791 | (file_modified ? " [Modified]" : ""), |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2792 | cur, tot, percent); |
| 2793 | |
| 2794 | if (ret >= 0 && ret < trunc_at) |
| 2795 | return ret; /* it all fit */ |
| 2796 | |
| 2797 | return trunc_at; /* had to truncate */ |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2798 | #undef tot |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2799 | } |
| 2800 | |
| 2801 | //----- Force refresh of all Lines ----------------------------- |
| 2802 | static void redraw(int full_screen) |
| 2803 | { |
| 2804 | place_cursor(0, 0, FALSE); // put cursor in correct place |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2805 | clear_to_eos(); // tell terminal to erase display |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2806 | screen_erase(); // erase the internal screen buffer |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2807 | last_status_cksum = 0; // force status update |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2808 | refresh(full_screen); // this will redraw the entire display |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 2809 | show_status_line(); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2810 | } |
| 2811 | |
| 2812 | //----- Format a text[] line into a buffer --------------------- |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 2813 | static char* format_line(char *src /*, int li*/) |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2814 | { |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 2815 | unsigned char c; |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2816 | int co; |
| 2817 | int ofs = offset; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2818 | char *dest = scr_out_buf; // [MAX_SCR_COLS + MAX_TABSTOP * 2] |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2819 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2820 | c = '~'; // char in col 0 in non-existent lines is '~' |
Denis Vlasenko | 4baed3a | 2007-12-22 17:31:29 +0000 | [diff] [blame] | 2821 | co = 0; |
| 2822 | while (co < columns + tabstop) { |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 2823 | // have we gone past the end? |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2824 | if (src < end) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2825 | c = *src++; |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2826 | if (c == '\n') |
| 2827 | break; |
| 2828 | if ((c & 0x80) && !Isprint(c)) { |
| 2829 | c = '.'; |
| 2830 | } |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 2831 | if (c < ' ' || c == 0x7f) { |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2832 | if (c == '\t') { |
| 2833 | c = ' '; |
| 2834 | // co % 8 != 7 |
| 2835 | while ((co % tabstop) != (tabstop - 1)) { |
| 2836 | dest[co++] = c; |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2837 | } |
| 2838 | } else { |
| 2839 | dest[co++] = '^'; |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2840 | if (c == 0x7f) |
| 2841 | c = '?'; |
| 2842 | else |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2843 | c += '@'; // Ctrl-X -> 'X' |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2844 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2845 | } |
| 2846 | } |
Denis Vlasenko | 4baed3a | 2007-12-22 17:31:29 +0000 | [diff] [blame] | 2847 | dest[co++] = c; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2848 | // discard scrolled-off-to-the-left portion, |
| 2849 | // in tabstop-sized pieces |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2850 | if (ofs >= tabstop && co >= tabstop) { |
Denis Vlasenko | 4baed3a | 2007-12-22 17:31:29 +0000 | [diff] [blame] | 2851 | memmove(dest, dest + tabstop, co); |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2852 | co -= tabstop; |
| 2853 | ofs -= tabstop; |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2854 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2855 | if (src >= end) |
| 2856 | break; |
| 2857 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2858 | // check "short line, gigantic offset" case |
| 2859 | if (co < ofs) |
Denis Vlasenko | 4baed3a | 2007-12-22 17:31:29 +0000 | [diff] [blame] | 2860 | ofs = co; |
| 2861 | // discard last scrolled off part |
| 2862 | co -= ofs; |
| 2863 | dest += ofs; |
| 2864 | // fill the rest with spaces |
| 2865 | if (co < columns) |
| 2866 | memset(&dest[co], ' ', columns - co); |
| 2867 | return dest; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2868 | } |
| 2869 | |
| 2870 | //----- Refresh the changed screen lines ----------------------- |
| 2871 | // Copy the source line from text[] into the buffer and note |
| 2872 | // if the current screenline is different from the new buffer. |
| 2873 | // If they differ then that line needs redrawing on the terminal. |
| 2874 | // |
| 2875 | static void refresh(int full_screen) |
| 2876 | { |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2877 | #define old_offset refresh__old_offset |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2878 | |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2879 | int li, changed; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2880 | char *tp, *sp; // pointer into text[] and screen[] |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2881 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2882 | if (ENABLE_FEATURE_VI_WIN_RESIZE) { |
Denis Vlasenko | 5599502 | 2008-05-18 22:28:26 +0000 | [diff] [blame] | 2883 | unsigned c = columns, r = rows; |
Rob Landley | e5e1a10 | 2006-06-21 01:15:36 +0000 | [diff] [blame] | 2884 | get_terminal_width_height(0, &columns, &rows); |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2885 | if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS; |
| 2886 | if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS; |
| 2887 | full_screen |= (c - columns) | (r - rows); |
| 2888 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2889 | sync_cursor(dot, &crow, &ccol); // where cursor will be (on "dot") |
| 2890 | tp = screenbegin; // index into text[] of top line |
| 2891 | |
| 2892 | // compare text[] to screen[] and mark screen[] lines that need updating |
| 2893 | for (li = 0; li < rows - 1; li++) { |
| 2894 | int cs, ce; // column start & end |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 2895 | char *out_buf; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2896 | // format current text line |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 2897 | out_buf = format_line(tp /*, li*/); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2898 | |
| 2899 | // skip to the end of the current text[] line |
Denis Vlasenko | f882f08 | 2007-12-23 02:36:51 +0000 | [diff] [blame] | 2900 | if (tp < end) { |
| 2901 | char *t = memchr(tp, '\n', end - tp); |
| 2902 | if (!t) t = end - 1; |
| 2903 | tp = t + 1; |
| 2904 | } |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2905 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2906 | // see if there are any changes between vitual screen and out_buf |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2907 | changed = FALSE; // assume no change |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2908 | cs = 0; |
| 2909 | ce = columns - 1; |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2910 | sp = &screen[li * columns]; // start of screen line |
| 2911 | if (full_screen) { |
| 2912 | // force re-draw of every single column from 0 - columns-1 |
| 2913 | goto re0; |
| 2914 | } |
| 2915 | // compare newly formatted buffer with virtual screen |
| 2916 | // look forward for first difference between buf and screen |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2917 | for (; cs <= ce; cs++) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2918 | if (out_buf[cs] != sp[cs]) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2919 | changed = TRUE; // mark for redraw |
| 2920 | break; |
| 2921 | } |
| 2922 | } |
| 2923 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2924 | // look backward for last difference between out_buf and screen |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2925 | for (; ce >= cs; ce--) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2926 | if (out_buf[ce] != sp[ce]) { |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2927 | changed = TRUE; // mark for redraw |
| 2928 | break; |
| 2929 | } |
| 2930 | } |
| 2931 | // now, cs is index of first diff, and ce is index of last diff |
| 2932 | |
| 2933 | // if horz offset has changed, force a redraw |
| 2934 | if (offset != old_offset) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2935 | re0: |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2936 | changed = TRUE; |
| 2937 | } |
| 2938 | |
| 2939 | // make a sanity check of columns indexes |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2940 | if (cs < 0) cs = 0; |
| 2941 | if (ce > columns - 1) ce = columns - 1; |
| 2942 | if (cs > ce) { cs = 0; ce = columns - 1; } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2943 | // is there a change between vitual screen and out_buf |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2944 | if (changed) { |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2945 | // copy changed part of buffer to virtual screen |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2946 | memcpy(sp+cs, out_buf+cs, ce-cs+1); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2947 | |
| 2948 | // move cursor to column of first change |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2949 | //if (offset != old_offset) { |
| 2950 | // // place_cursor is still too stupid |
| 2951 | // // to handle offsets correctly |
| 2952 | // place_cursor(li, cs, FALSE); |
| 2953 | //} else { |
| 2954 | place_cursor(li, cs, TRUE); |
| 2955 | //} |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2956 | |
| 2957 | // write line out to terminal |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2958 | fwrite(&sp[cs], ce - cs + 1, 1, stdout); |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2959 | } |
| 2960 | } |
| 2961 | |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2962 | place_cursor(crow, ccol, TRUE); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 2963 | |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 2964 | old_offset = offset; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 2965 | #undef old_offset |
Aaron Lehmann | 6fdacc7 | 2002-08-21 13:02:24 +0000 | [diff] [blame] | 2966 | } |
| 2967 | |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 2968 | //--------------------------------------------------------------------- |
| 2969 | //----- the Ascii Chart ----------------------------------------------- |
| 2970 | // |
| 2971 | // 00 nul 01 soh 02 stx 03 etx 04 eot 05 enq 06 ack 07 bel |
| 2972 | // 08 bs 09 ht 0a nl 0b vt 0c np 0d cr 0e so 0f si |
| 2973 | // 10 dle 11 dc1 12 dc2 13 dc3 14 dc4 15 nak 16 syn 17 etb |
| 2974 | // 18 can 19 em 1a sub 1b esc 1c fs 1d gs 1e rs 1f us |
| 2975 | // 20 sp 21 ! 22 " 23 # 24 $ 25 % 26 & 27 ' |
| 2976 | // 28 ( 29 ) 2a * 2b + 2c , 2d - 2e . 2f / |
| 2977 | // 30 0 31 1 32 2 33 3 34 4 35 5 36 6 37 7 |
| 2978 | // 38 8 39 9 3a : 3b ; 3c < 3d = 3e > 3f ? |
| 2979 | // 40 @ 41 A 42 B 43 C 44 D 45 E 46 F 47 G |
| 2980 | // 48 H 49 I 4a J 4b K 4c L 4d M 4e N 4f O |
| 2981 | // 50 P 51 Q 52 R 53 S 54 T 55 U 56 V 57 W |
| 2982 | // 58 X 59 Y 5a Z 5b [ 5c \ 5d ] 5e ^ 5f _ |
| 2983 | // 60 ` 61 a 62 b 63 c 64 d 65 e 66 f 67 g |
| 2984 | // 68 h 69 i 6a j 6b k 6c l 6d m 6e n 6f o |
| 2985 | // 70 p 71 q 72 r 73 s 74 t 75 u 76 v 77 w |
| 2986 | // 78 x 79 y 7a z 7b { 7c | 7d } 7e ~ 7f del |
| 2987 | //--------------------------------------------------------------------- |
| 2988 | |
| 2989 | //----- Execute a Vi Command ----------------------------------- |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 2990 | static void do_cmd(char c) |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 2991 | { |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 2992 | const char *msg = msg; // for compiler |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 2993 | char c1, *p, *q, *save_dot; |
| 2994 | char buf[12]; |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 2995 | int dir = dir; // for compiler |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 2996 | int cnt, i, j; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 2997 | |
Denis Vlasenko | e3cbfb9 | 2007-12-22 17:00:11 +0000 | [diff] [blame] | 2998 | // c1 = c; // quiet the compiler |
| 2999 | // cnt = yf = 0; // quiet the compiler |
| 3000 | // msg = p = q = save_dot = buf; // quiet the compiler |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3001 | memset(buf, '\0', 12); |
Eric Andersen | bff7a60 | 2001-11-17 07:15:43 +0000 | [diff] [blame] | 3002 | |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3003 | show_status_line(); |
| 3004 | |
Eric Andersen | bff7a60 | 2001-11-17 07:15:43 +0000 | [diff] [blame] | 3005 | /* if this is a cursor key, skip these checks */ |
| 3006 | switch (c) { |
| 3007 | case VI_K_UP: |
| 3008 | case VI_K_DOWN: |
| 3009 | case VI_K_LEFT: |
| 3010 | case VI_K_RIGHT: |
| 3011 | case VI_K_HOME: |
| 3012 | case VI_K_END: |
| 3013 | case VI_K_PAGEUP: |
| 3014 | case VI_K_PAGEDOWN: |
Denis Vlasenko | ded6ad3 | 2008-10-14 12:26:30 +0000 | [diff] [blame] | 3015 | case VI_K_DELETE: |
Eric Andersen | bff7a60 | 2001-11-17 07:15:43 +0000 | [diff] [blame] | 3016 | goto key_cmd_mode; |
| 3017 | } |
| 3018 | |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3019 | if (cmd_mode == 2) { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3020 | // flip-flop Insert/Replace mode |
Denis Vlasenko | 2a51af2 | 2007-03-21 22:31:24 +0000 | [diff] [blame] | 3021 | if (c == VI_K_INSERT) |
| 3022 | goto dc_i; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3023 | // we are 'R'eplacing the current *dot with new char |
| 3024 | if (*dot == '\n') { |
| 3025 | // don't Replace past E-o-l |
| 3026 | cmd_mode = 1; // convert to insert |
| 3027 | } else { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3028 | if (1 <= c || Isprint(c)) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3029 | if (c != 27) |
| 3030 | dot = yank_delete(dot, dot, 0, YANKDEL); // delete char |
| 3031 | dot = char_insert(dot, c); // insert new char |
| 3032 | } |
| 3033 | goto dc1; |
| 3034 | } |
| 3035 | } |
| 3036 | if (cmd_mode == 1) { |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 3037 | // hitting "Insert" twice means "R" replace mode |
| 3038 | if (c == VI_K_INSERT) goto dc5; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3039 | // insert the char c at "dot" |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3040 | if (1 <= c || Isprint(c)) { |
| 3041 | dot = char_insert(dot, c); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3042 | } |
| 3043 | goto dc1; |
| 3044 | } |
| 3045 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3046 | key_cmd_mode: |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3047 | switch (c) { |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3048 | //case 0x01: // soh |
| 3049 | //case 0x09: // ht |
| 3050 | //case 0x0b: // vt |
| 3051 | //case 0x0e: // so |
| 3052 | //case 0x0f: // si |
| 3053 | //case 0x10: // dle |
| 3054 | //case 0x11: // dc1 |
| 3055 | //case 0x13: // dc3 |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3056 | #if ENABLE_FEATURE_VI_CRASHME |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 3057 | case 0x14: // dc4 ctrl-T |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3058 | crashme = (crashme == 0) ? 1 : 0; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3059 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3060 | #endif |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3061 | //case 0x16: // syn |
| 3062 | //case 0x17: // etb |
| 3063 | //case 0x18: // can |
| 3064 | //case 0x1c: // fs |
| 3065 | //case 0x1d: // gs |
| 3066 | //case 0x1e: // rs |
| 3067 | //case 0x1f: // us |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3068 | //case '!': // !- |
| 3069 | //case '#': // #- |
| 3070 | //case '&': // &- |
| 3071 | //case '(': // (- |
| 3072 | //case ')': // )- |
| 3073 | //case '*': // *- |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3074 | //case '=': // =- |
| 3075 | //case '@': // @- |
| 3076 | //case 'F': // F- |
| 3077 | //case 'K': // K- |
| 3078 | //case 'Q': // Q- |
| 3079 | //case 'S': // S- |
| 3080 | //case 'T': // T- |
| 3081 | //case 'V': // V- |
| 3082 | //case '[': // [- |
| 3083 | //case '\\': // \- |
| 3084 | //case ']': // ]- |
| 3085 | //case '_': // _- |
| 3086 | //case '`': // `- |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 3087 | //case 'u': // u- FIXME- there is no undo |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3088 | //case 'v': // v- |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3089 | default: // unrecognised command |
| 3090 | buf[0] = c; |
| 3091 | buf[1] = '\0'; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3092 | if (c < ' ') { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3093 | buf[0] = '^'; |
| 3094 | buf[1] = c + '@'; |
| 3095 | buf[2] = '\0'; |
| 3096 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3097 | not_implemented(buf); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3098 | end_cmd_q(); // stop adding to q |
| 3099 | case 0x00: // nul- ignore |
| 3100 | break; |
| 3101 | case 2: // ctrl-B scroll up full screen |
| 3102 | case VI_K_PAGEUP: // Cursor Key Page Up |
| 3103 | dot_scroll(rows - 2, -1); |
| 3104 | break; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3105 | case 4: // ctrl-D scroll down half screen |
| 3106 | dot_scroll((rows - 2) / 2, 1); |
| 3107 | break; |
| 3108 | case 5: // ctrl-E scroll down one line |
| 3109 | dot_scroll(1, 1); |
| 3110 | break; |
| 3111 | case 6: // ctrl-F scroll down full screen |
| 3112 | case VI_K_PAGEDOWN: // Cursor Key Page Down |
| 3113 | dot_scroll(rows - 2, 1); |
| 3114 | break; |
| 3115 | case 7: // ctrl-G show current status |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3116 | last_status_cksum = 0; // force status update |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3117 | break; |
| 3118 | case 'h': // h- move left |
| 3119 | case VI_K_LEFT: // cursor key Left |
Paul Fox | d13b90b | 2005-07-18 22:17:25 +0000 | [diff] [blame] | 3120 | case 8: // ctrl-H- move left (This may be ERASE char) |
Denis Vlasenko | 2a51af2 | 2007-03-21 22:31:24 +0000 | [diff] [blame] | 3121 | case 0x7f: // DEL- move left (This may be ERASE char) |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3122 | if (cmdcnt-- > 1) { |
| 3123 | do_cmd(c); |
| 3124 | } // repeat cnt |
| 3125 | dot_left(); |
| 3126 | break; |
| 3127 | case 10: // Newline ^J |
| 3128 | case 'j': // j- goto next line, same col |
| 3129 | case VI_K_DOWN: // cursor key Down |
| 3130 | if (cmdcnt-- > 1) { |
| 3131 | do_cmd(c); |
| 3132 | } // repeat cnt |
| 3133 | dot_next(); // go to next B-o-l |
| 3134 | dot = move_to_col(dot, ccol + offset); // try stay in same col |
| 3135 | break; |
| 3136 | case 12: // ctrl-L force redraw whole screen |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 3137 | case 18: // ctrl-R force redraw |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3138 | place_cursor(0, 0, FALSE); // put cursor in correct place |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3139 | clear_to_eos(); // tel terminal to erase display |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3140 | mysleep(10); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3141 | screen_erase(); // erase the internal screen buffer |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3142 | last_status_cksum = 0; // force status update |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3143 | refresh(TRUE); // this will redraw the entire display |
| 3144 | break; |
| 3145 | case 13: // Carriage Return ^M |
| 3146 | case '+': // +- goto next line |
| 3147 | if (cmdcnt-- > 1) { |
| 3148 | do_cmd(c); |
| 3149 | } // repeat cnt |
| 3150 | dot_next(); |
| 3151 | dot_skip_over_ws(); |
| 3152 | break; |
| 3153 | case 21: // ctrl-U scroll up half screen |
| 3154 | dot_scroll((rows - 2) / 2, -1); |
| 3155 | break; |
| 3156 | case 25: // ctrl-Y scroll up one line |
| 3157 | dot_scroll(1, -1); |
| 3158 | break; |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3159 | case 27: // esc |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3160 | if (cmd_mode == 0) |
| 3161 | indicate_error(c); |
| 3162 | cmd_mode = 0; // stop insrting |
| 3163 | end_cmd_q(); |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3164 | last_status_cksum = 0; // force status update |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3165 | break; |
| 3166 | case ' ': // move right |
| 3167 | case 'l': // move right |
| 3168 | case VI_K_RIGHT: // Cursor Key Right |
| 3169 | if (cmdcnt-- > 1) { |
| 3170 | do_cmd(c); |
| 3171 | } // repeat cnt |
| 3172 | dot_right(); |
| 3173 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3174 | #if ENABLE_FEATURE_VI_YANKMARK |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3175 | case '"': // "- name a register to use for Delete/Yank |
| 3176 | c1 = get_one_char(); |
| 3177 | c1 = tolower(c1); |
| 3178 | if (islower(c1)) { |
| 3179 | YDreg = c1 - 'a'; |
| 3180 | } else { |
| 3181 | indicate_error(c); |
| 3182 | } |
| 3183 | break; |
| 3184 | case '\'': // '- goto a specific mark |
| 3185 | c1 = get_one_char(); |
| 3186 | c1 = tolower(c1); |
| 3187 | if (islower(c1)) { |
| 3188 | c1 = c1 - 'a'; |
| 3189 | // get the b-o-l |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3190 | q = mark[(unsigned char) c1]; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3191 | if (text <= q && q < end) { |
| 3192 | dot = q; |
| 3193 | dot_begin(); // go to B-o-l |
| 3194 | dot_skip_over_ws(); |
| 3195 | } |
| 3196 | } else if (c1 == '\'') { // goto previous context |
| 3197 | dot = swap_context(dot); // swap current and previous context |
| 3198 | dot_begin(); // go to B-o-l |
| 3199 | dot_skip_over_ws(); |
| 3200 | } else { |
| 3201 | indicate_error(c); |
| 3202 | } |
| 3203 | break; |
| 3204 | case 'm': // m- Mark a line |
| 3205 | // this is really stupid. If there are any inserts or deletes |
| 3206 | // between text[0] and dot then this mark will not point to the |
| 3207 | // correct location! It could be off by many lines! |
| 3208 | // Well..., at least its quick and dirty. |
| 3209 | c1 = get_one_char(); |
| 3210 | c1 = tolower(c1); |
| 3211 | if (islower(c1)) { |
| 3212 | c1 = c1 - 'a'; |
| 3213 | // remember the line |
| 3214 | mark[(int) c1] = dot; |
| 3215 | } else { |
| 3216 | indicate_error(c); |
| 3217 | } |
| 3218 | break; |
| 3219 | case 'P': // P- Put register before |
| 3220 | case 'p': // p- put register after |
| 3221 | p = reg[YDreg]; |
| 3222 | if (p == 0) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3223 | status_line_bold("Nothing in register %c", what_reg()); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3224 | break; |
| 3225 | } |
| 3226 | // are we putting whole lines or strings |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3227 | if (strchr(p, '\n') != NULL) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3228 | if (c == 'P') { |
| 3229 | dot_begin(); // putting lines- Put above |
| 3230 | } |
| 3231 | if (c == 'p') { |
| 3232 | // are we putting after very last line? |
| 3233 | if (end_line(dot) == (end - 1)) { |
| 3234 | dot = end; // force dot to end of text[] |
| 3235 | } else { |
| 3236 | dot_next(); // next line, then put before |
| 3237 | } |
| 3238 | } |
| 3239 | } else { |
| 3240 | if (c == 'p') |
| 3241 | dot_right(); // move to right, can move to NL |
| 3242 | } |
| 3243 | dot = string_insert(dot, p); // insert the string |
| 3244 | end_cmd_q(); // stop adding to q |
| 3245 | break; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3246 | case 'U': // U- Undo; replace current line with original version |
| 3247 | if (reg[Ureg] != 0) { |
| 3248 | p = begin_line(dot); |
| 3249 | q = end_line(dot); |
| 3250 | p = text_hole_delete(p, q); // delete cur line |
| 3251 | p = string_insert(p, reg[Ureg]); // insert orig line |
| 3252 | dot = p; |
| 3253 | dot_skip_over_ws(); |
| 3254 | } |
| 3255 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3256 | #endif /* FEATURE_VI_YANKMARK */ |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3257 | case '$': // $- goto end of line |
| 3258 | case VI_K_END: // Cursor Key End |
| 3259 | if (cmdcnt-- > 1) { |
| 3260 | do_cmd(c); |
| 3261 | } // repeat cnt |
Glenn L McGrath | ee82906 | 2004-01-21 10:59:45 +0000 | [diff] [blame] | 3262 | dot = end_line(dot); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3263 | break; |
| 3264 | case '%': // %- find matching char of pair () [] {} |
| 3265 | for (q = dot; q < end && *q != '\n'; q++) { |
| 3266 | if (strchr("()[]{}", *q) != NULL) { |
| 3267 | // we found half of a pair |
| 3268 | p = find_pair(q, *q); |
| 3269 | if (p == NULL) { |
| 3270 | indicate_error(c); |
| 3271 | } else { |
| 3272 | dot = p; |
| 3273 | } |
| 3274 | break; |
| 3275 | } |
| 3276 | } |
| 3277 | if (*q == '\n') |
| 3278 | indicate_error(c); |
| 3279 | break; |
| 3280 | case 'f': // f- forward to a user specified char |
| 3281 | last_forward_char = get_one_char(); // get the search char |
| 3282 | // |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 3283 | // dont separate these two commands. 'f' depends on ';' |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3284 | // |
Bernhard Reutner-Fischer | a985d30 | 2008-02-11 11:44:38 +0000 | [diff] [blame] | 3285 | //**** fall through to ... ';' |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3286 | case ';': // ;- look at rest of line for last forward char |
| 3287 | if (cmdcnt-- > 1) { |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3288 | do_cmd(';'); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3289 | } // repeat cnt |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3290 | if (last_forward_char == 0) |
| 3291 | break; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3292 | q = dot + 1; |
| 3293 | while (q < end - 1 && *q != '\n' && *q != last_forward_char) { |
| 3294 | q++; |
| 3295 | } |
| 3296 | if (*q == last_forward_char) |
| 3297 | dot = q; |
| 3298 | break; |
Paul Fox | b5ee8db | 2008-02-14 01:17:01 +0000 | [diff] [blame] | 3299 | case ',': // repeat latest 'f' in opposite direction |
| 3300 | if (cmdcnt-- > 1) { |
| 3301 | do_cmd(','); |
| 3302 | } // repeat cnt |
| 3303 | if (last_forward_char == 0) |
| 3304 | break; |
| 3305 | q = dot - 1; |
| 3306 | while (q >= text && *q != '\n' && *q != last_forward_char) { |
| 3307 | q--; |
| 3308 | } |
| 3309 | if (q >= text && *q == last_forward_char) |
| 3310 | dot = q; |
| 3311 | break; |
| 3312 | |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3313 | case '-': // -- goto prev line |
| 3314 | if (cmdcnt-- > 1) { |
| 3315 | do_cmd(c); |
| 3316 | } // repeat cnt |
| 3317 | dot_prev(); |
| 3318 | dot_skip_over_ws(); |
| 3319 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3320 | #if ENABLE_FEATURE_VI_DOT_CMD |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3321 | case '.': // .- repeat the last modifying command |
| 3322 | // Stuff the last_modifying_cmd back into stdin |
| 3323 | // and let it be re-executed. |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 3324 | if (lmc_len > 0) { |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 3325 | last_modifying_cmd[lmc_len] = 0; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3326 | ioq = ioq_start = xstrdup(last_modifying_cmd); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3327 | } |
| 3328 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3329 | #endif |
| 3330 | #if ENABLE_FEATURE_VI_SEARCH |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3331 | case '?': // /- search for a pattern |
| 3332 | case '/': // /- search for a pattern |
| 3333 | buf[0] = c; |
| 3334 | buf[1] = '\0'; |
| 3335 | q = get_input_line(buf); // get input line- use "status line" |
Paul Fox | 4917c11 | 2008-03-05 16:44:02 +0000 | [diff] [blame] | 3336 | if (q[0] && !q[1]) { |
| 3337 | if (last_search_pattern[0]) |
| 3338 | last_search_pattern[0] = c; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3339 | goto dc3; // if no pat re-use old pat |
Paul Fox | 4917c11 | 2008-03-05 16:44:02 +0000 | [diff] [blame] | 3340 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3341 | if (q[0]) { // strlen(q) > 1: new pat- save it and find |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3342 | // there is a new pat |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 3343 | free(last_search_pattern); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3344 | last_search_pattern = xstrdup(q); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3345 | goto dc3; // now find the pattern |
| 3346 | } |
| 3347 | // user changed mind and erased the "/"- do nothing |
| 3348 | break; |
| 3349 | case 'N': // N- backward search for last pattern |
| 3350 | if (cmdcnt-- > 1) { |
| 3351 | do_cmd(c); |
| 3352 | } // repeat cnt |
| 3353 | dir = BACK; // assume BACKWARD search |
| 3354 | p = dot - 1; |
| 3355 | if (last_search_pattern[0] == '?') { |
| 3356 | dir = FORWARD; |
| 3357 | p = dot + 1; |
| 3358 | } |
| 3359 | goto dc4; // now search for pattern |
| 3360 | break; |
| 3361 | case 'n': // n- repeat search for last pattern |
| 3362 | // search rest of text[] starting at next char |
| 3363 | // if search fails return orignal "p" not the "p+1" address |
| 3364 | if (cmdcnt-- > 1) { |
| 3365 | do_cmd(c); |
| 3366 | } // repeat cnt |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3367 | dc3: |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3368 | if (last_search_pattern == 0) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3369 | msg = "No previous regular expression"; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3370 | goto dc2; |
| 3371 | } |
| 3372 | if (last_search_pattern[0] == '/') { |
| 3373 | dir = FORWARD; // assume FORWARD search |
| 3374 | p = dot + 1; |
| 3375 | } |
| 3376 | if (last_search_pattern[0] == '?') { |
| 3377 | dir = BACK; |
| 3378 | p = dot - 1; |
| 3379 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3380 | dc4: |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3381 | q = char_search(p, last_search_pattern + 1, dir, FULL); |
| 3382 | if (q != NULL) { |
| 3383 | dot = q; // good search, update "dot" |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3384 | msg = ""; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3385 | goto dc2; |
| 3386 | } |
| 3387 | // no pattern found between "dot" and "end"- continue at top |
| 3388 | p = text; |
| 3389 | if (dir == BACK) { |
| 3390 | p = end - 1; |
| 3391 | } |
| 3392 | q = char_search(p, last_search_pattern + 1, dir, FULL); |
| 3393 | if (q != NULL) { // found something |
| 3394 | dot = q; // found new pattern- goto it |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3395 | msg = "search hit BOTTOM, continuing at TOP"; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3396 | if (dir == BACK) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3397 | msg = "search hit TOP, continuing at BOTTOM"; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3398 | } |
| 3399 | } else { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3400 | msg = "Pattern not found"; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3401 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3402 | dc2: |
| 3403 | if (*msg) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3404 | status_line_bold("%s", msg); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3405 | break; |
| 3406 | case '{': // {- move backward paragraph |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3407 | q = char_search(dot, "\n\n", BACK, FULL); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3408 | if (q != NULL) { // found blank line |
| 3409 | dot = next_line(q); // move to next blank line |
| 3410 | } |
| 3411 | break; |
| 3412 | case '}': // }- move forward paragraph |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3413 | q = char_search(dot, "\n\n", FORWARD, FULL); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3414 | if (q != NULL) { // found blank line |
| 3415 | dot = next_line(q); // move to next blank line |
| 3416 | } |
| 3417 | break; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3418 | #endif /* FEATURE_VI_SEARCH */ |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3419 | case '0': // 0- goto begining of line |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3420 | case '1': // 1- |
| 3421 | case '2': // 2- |
| 3422 | case '3': // 3- |
| 3423 | case '4': // 4- |
| 3424 | case '5': // 5- |
| 3425 | case '6': // 6- |
| 3426 | case '7': // 7- |
| 3427 | case '8': // 8- |
| 3428 | case '9': // 9- |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3429 | if (c == '0' && cmdcnt < 1) { |
| 3430 | dot_begin(); // this was a standalone zero |
| 3431 | } else { |
| 3432 | cmdcnt = cmdcnt * 10 + (c - '0'); // this 0 is part of a number |
| 3433 | } |
| 3434 | break; |
| 3435 | case ':': // :- the colon mode commands |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3436 | p = get_input_line(":"); // get input line- use "status line" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3437 | #if ENABLE_FEATURE_VI_COLON |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3438 | colon(p); // execute the command |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3439 | #else |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3440 | if (*p == ':') |
| 3441 | p++; // move past the ':' |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3442 | cnt = strlen(p); |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3443 | if (cnt <= 0) |
| 3444 | break; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3445 | if (strncasecmp(p, "quit", cnt) == 0 |
| 3446 | || strncasecmp(p, "q!", cnt) == 0 // delete lines |
| 3447 | ) { |
Matt Kraai | 1f0c436 | 2001-12-20 23:13:26 +0000 | [diff] [blame] | 3448 | if (file_modified && p[1] != '!') { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3449 | status_line_bold("No write since last change (:quit! overrides)"); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3450 | } else { |
| 3451 | editing = 0; |
| 3452 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3453 | } else if (strncasecmp(p, "write", cnt) == 0 |
| 3454 | || strncasecmp(p, "wq", cnt) == 0 |
| 3455 | || strncasecmp(p, "wn", cnt) == 0 |
| 3456 | || strncasecmp(p, "x", cnt) == 0 |
| 3457 | ) { |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 3458 | cnt = file_write(current_filename, text, end - 1); |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 3459 | if (cnt < 0) { |
| 3460 | if (cnt == -1) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3461 | status_line_bold("Write error: %s", strerror(errno)); |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 3462 | } else { |
| 3463 | file_modified = 0; |
| 3464 | last_file_modified = -1; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3465 | status_line("\"%s\" %dL, %dC", current_filename, count_lines(text, end - 1), cnt); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3466 | if (p[0] == 'x' || p[1] == 'q' || p[1] == 'n' |
| 3467 | || p[0] == 'X' || p[1] == 'Q' || p[1] == 'N' |
| 3468 | ) { |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 3469 | editing = 0; |
| 3470 | } |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3471 | } |
Denis Vlasenko | 219d14d | 2007-03-24 15:40:16 +0000 | [diff] [blame] | 3472 | } else if (strncasecmp(p, "file", cnt) == 0) { |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3473 | last_status_cksum = 0; // force status update |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3474 | } else if (sscanf(p, "%d", &j) > 0) { |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3475 | dot = find_line(j); // go to line # j |
| 3476 | dot_skip_over_ws(); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3477 | } else { // unrecognised cmd |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3478 | not_implemented(p); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3479 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3480 | #endif /* !FEATURE_VI_COLON */ |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3481 | break; |
| 3482 | case '<': // <- Left shift something |
| 3483 | case '>': // >- Right shift something |
| 3484 | cnt = count_lines(text, dot); // remember what line we are on |
| 3485 | c1 = get_one_char(); // get the type of thing to delete |
| 3486 | find_range(&p, &q, c1); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3487 | yank_delete(p, q, 1, YANKONLY); // save copy before change |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3488 | p = begin_line(p); |
| 3489 | q = end_line(q); |
| 3490 | i = count_lines(p, q); // # of lines we are shifting |
| 3491 | for ( ; i > 0; i--, p = next_line(p)) { |
| 3492 | if (c == '<') { |
| 3493 | // shift left- remove tab or 8 spaces |
| 3494 | if (*p == '\t') { |
| 3495 | // shrink buffer 1 char |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3496 | text_hole_delete(p, p); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3497 | } else if (*p == ' ') { |
| 3498 | // we should be calculating columns, not just SPACE |
| 3499 | for (j = 0; *p == ' ' && j < tabstop; j++) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3500 | text_hole_delete(p, p); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3501 | } |
| 3502 | } |
| 3503 | } else if (c == '>') { |
| 3504 | // shift right -- add tab or 8 spaces |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3505 | char_insert(p, '\t'); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3506 | } |
| 3507 | } |
| 3508 | dot = find_line(cnt); // what line were we on |
| 3509 | dot_skip_over_ws(); |
| 3510 | end_cmd_q(); // stop adding to q |
| 3511 | break; |
| 3512 | case 'A': // A- append at e-o-l |
| 3513 | dot_end(); // go to e-o-l |
Bernhard Reutner-Fischer | a985d30 | 2008-02-11 11:44:38 +0000 | [diff] [blame] | 3514 | //**** fall through to ... 'a' |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3515 | case 'a': // a- append after current char |
| 3516 | if (*dot != '\n') |
| 3517 | dot++; |
| 3518 | goto dc_i; |
| 3519 | break; |
| 3520 | case 'B': // B- back a blank-delimited Word |
| 3521 | case 'E': // E- end of a blank-delimited word |
| 3522 | case 'W': // W- forward a blank-delimited word |
| 3523 | if (cmdcnt-- > 1) { |
| 3524 | do_cmd(c); |
| 3525 | } // repeat cnt |
| 3526 | dir = FORWARD; |
| 3527 | if (c == 'B') |
| 3528 | dir = BACK; |
| 3529 | if (c == 'W' || isspace(dot[dir])) { |
| 3530 | dot = skip_thing(dot, 1, dir, S_TO_WS); |
| 3531 | dot = skip_thing(dot, 2, dir, S_OVER_WS); |
| 3532 | } |
| 3533 | if (c != 'W') |
| 3534 | dot = skip_thing(dot, 1, dir, S_BEFORE_WS); |
| 3535 | break; |
| 3536 | case 'C': // C- Change to e-o-l |
| 3537 | case 'D': // D- delete to e-o-l |
| 3538 | save_dot = dot; |
| 3539 | dot = dollar_line(dot); // move to before NL |
| 3540 | // copy text into a register and delete |
| 3541 | dot = yank_delete(save_dot, dot, 0, YANKDEL); // delete to e-o-l |
| 3542 | if (c == 'C') |
| 3543 | goto dc_i; // start inserting |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3544 | #if ENABLE_FEATURE_VI_DOT_CMD |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3545 | if (c == 'D') |
| 3546 | end_cmd_q(); // stop adding to q |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3547 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3548 | break; |
Paul Fox | b5ee8db | 2008-02-14 01:17:01 +0000 | [diff] [blame] | 3549 | case 'g': // 'gg' goto a line number (from vim) |
| 3550 | // (default to first line in file) |
| 3551 | c1 = get_one_char(); |
| 3552 | if (c1 != 'g') { |
| 3553 | buf[0] = 'g'; |
| 3554 | buf[1] = c1; |
| 3555 | buf[2] = '\0'; |
| 3556 | not_implemented(buf); |
| 3557 | break; |
| 3558 | } |
| 3559 | if (cmdcnt == 0) |
| 3560 | cmdcnt = 1; |
| 3561 | /* fall through */ |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3562 | case 'G': // G- goto to a line number (default= E-O-F) |
| 3563 | dot = end - 1; // assume E-O-F |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 3564 | if (cmdcnt > 0) { |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3565 | dot = find_line(cmdcnt); // what line is #cmdcnt |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 3566 | } |
| 3567 | dot_skip_over_ws(); |
| 3568 | break; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3569 | case 'H': // H- goto top line on screen |
| 3570 | dot = screenbegin; |
| 3571 | if (cmdcnt > (rows - 1)) { |
| 3572 | cmdcnt = (rows - 1); |
| 3573 | } |
| 3574 | if (cmdcnt-- > 1) { |
| 3575 | do_cmd('+'); |
| 3576 | } // repeat cnt |
| 3577 | dot_skip_over_ws(); |
| 3578 | break; |
| 3579 | case 'I': // I- insert before first non-blank |
| 3580 | dot_begin(); // 0 |
| 3581 | dot_skip_over_ws(); |
Bernhard Reutner-Fischer | a985d30 | 2008-02-11 11:44:38 +0000 | [diff] [blame] | 3582 | //**** fall through to ... 'i' |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3583 | case 'i': // i- insert before current char |
| 3584 | case VI_K_INSERT: // Cursor Key Insert |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3585 | dc_i: |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3586 | cmd_mode = 1; // start insrting |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3587 | break; |
| 3588 | case 'J': // J- join current and next lines together |
| 3589 | if (cmdcnt-- > 2) { |
| 3590 | do_cmd(c); |
| 3591 | } // repeat cnt |
| 3592 | dot_end(); // move to NL |
| 3593 | if (dot < end - 1) { // make sure not last char in text[] |
| 3594 | *dot++ = ' '; // replace NL with space |
Paul Fox | 8552aec | 2005-09-16 12:20:05 +0000 | [diff] [blame] | 3595 | file_modified++; |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 3596 | while (isblank(*dot)) { // delete leading WS |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3597 | dot_delete(); |
| 3598 | } |
| 3599 | } |
| 3600 | end_cmd_q(); // stop adding to q |
| 3601 | break; |
| 3602 | case 'L': // L- goto bottom line on screen |
| 3603 | dot = end_screen(); |
| 3604 | if (cmdcnt > (rows - 1)) { |
| 3605 | cmdcnt = (rows - 1); |
| 3606 | } |
| 3607 | if (cmdcnt-- > 1) { |
| 3608 | do_cmd('-'); |
| 3609 | } // repeat cnt |
| 3610 | dot_begin(); |
| 3611 | dot_skip_over_ws(); |
| 3612 | break; |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3613 | case 'M': // M- goto middle line on screen |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 3614 | dot = screenbegin; |
| 3615 | for (cnt = 0; cnt < (rows-1) / 2; cnt++) |
| 3616 | dot = next_line(dot); |
| 3617 | break; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3618 | case 'O': // O- open a empty line above |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3619 | // 0i\n ESC -i |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3620 | p = begin_line(dot); |
| 3621 | if (p[-1] == '\n') { |
| 3622 | dot_prev(); |
| 3623 | case 'o': // o- open a empty line below; Yes, I know it is in the middle of the "if (..." |
| 3624 | dot_end(); |
| 3625 | dot = char_insert(dot, '\n'); |
| 3626 | } else { |
| 3627 | dot_begin(); // 0 |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3628 | dot = char_insert(dot, '\n'); // i\n ESC |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3629 | dot_prev(); // - |
| 3630 | } |
| 3631 | goto dc_i; |
| 3632 | break; |
| 3633 | case 'R': // R- continuous Replace char |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3634 | dc5: |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3635 | cmd_mode = 2; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3636 | break; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3637 | case VI_K_DELETE: |
| 3638 | c = 'x'; |
| 3639 | // fall through |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3640 | case 'X': // X- delete char before dot |
| 3641 | case 'x': // x- delete the current char |
| 3642 | case 's': // s- substitute the current char |
| 3643 | if (cmdcnt-- > 1) { |
| 3644 | do_cmd(c); |
| 3645 | } // repeat cnt |
| 3646 | dir = 0; |
| 3647 | if (c == 'X') |
| 3648 | dir = -1; |
| 3649 | if (dot[dir] != '\n') { |
| 3650 | if (c == 'X') |
| 3651 | dot--; // delete prev char |
| 3652 | dot = yank_delete(dot, dot, 0, YANKDEL); // delete char |
| 3653 | } |
| 3654 | if (c == 's') |
| 3655 | goto dc_i; // start insrting |
| 3656 | end_cmd_q(); // stop adding to q |
| 3657 | break; |
| 3658 | case 'Z': // Z- if modified, {write}; exit |
| 3659 | // ZZ means to save file (if necessary), then exit |
| 3660 | c1 = get_one_char(); |
| 3661 | if (c1 != 'Z') { |
| 3662 | indicate_error(c); |
| 3663 | break; |
| 3664 | } |
Paul Fox | f0305b7 | 2006-03-28 14:18:21 +0000 | [diff] [blame] | 3665 | if (file_modified) { |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 3666 | if (ENABLE_FEATURE_VI_READONLY && readonly_mode) { |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3667 | status_line_bold("\"%s\" File is read only", current_filename); |
Denis Vlasenko | 9275814 | 2006-10-03 19:56:34 +0000 | [diff] [blame] | 3668 | break; |
Paul Fox | f0305b7 | 2006-03-28 14:18:21 +0000 | [diff] [blame] | 3669 | } |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 3670 | cnt = file_write(current_filename, text, end - 1); |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 3671 | if (cnt < 0) { |
| 3672 | if (cnt == -1) |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3673 | status_line_bold("Write error: %s", strerror(errno)); |
Paul Fox | 61e45db | 2005-10-09 14:43:22 +0000 | [diff] [blame] | 3674 | } else if (cnt == (end - 1 - text + 1)) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3675 | editing = 0; |
| 3676 | } |
| 3677 | } else { |
| 3678 | editing = 0; |
| 3679 | } |
| 3680 | break; |
| 3681 | case '^': // ^- move to first non-blank on line |
| 3682 | dot_begin(); |
| 3683 | dot_skip_over_ws(); |
| 3684 | break; |
| 3685 | case 'b': // b- back a word |
| 3686 | case 'e': // e- end of word |
| 3687 | if (cmdcnt-- > 1) { |
| 3688 | do_cmd(c); |
| 3689 | } // repeat cnt |
| 3690 | dir = FORWARD; |
| 3691 | if (c == 'b') |
| 3692 | dir = BACK; |
| 3693 | if ((dot + dir) < text || (dot + dir) > end - 1) |
| 3694 | break; |
| 3695 | dot += dir; |
| 3696 | if (isspace(*dot)) { |
| 3697 | dot = skip_thing(dot, (c == 'e') ? 2 : 1, dir, S_OVER_WS); |
| 3698 | } |
| 3699 | if (isalnum(*dot) || *dot == '_') { |
| 3700 | dot = skip_thing(dot, 1, dir, S_END_ALNUM); |
| 3701 | } else if (ispunct(*dot)) { |
| 3702 | dot = skip_thing(dot, 1, dir, S_END_PUNCT); |
| 3703 | } |
| 3704 | break; |
| 3705 | case 'c': // c- change something |
| 3706 | case 'd': // d- delete something |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3707 | #if ENABLE_FEATURE_VI_YANKMARK |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3708 | case 'y': // y- yank something |
| 3709 | case 'Y': // Y- Yank a line |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3710 | #endif |
Denis Vlasenko | d44c153 | 2008-10-14 12:59:42 +0000 | [diff] [blame] | 3711 | { |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 3712 | int yf, ml, whole = 0; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3713 | yf = YANKDEL; // assume either "c" or "d" |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3714 | #if ENABLE_FEATURE_VI_YANKMARK |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3715 | if (c == 'y' || c == 'Y') |
| 3716 | yf = YANKONLY; |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3717 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3718 | c1 = 'y'; |
| 3719 | if (c != 'Y') |
| 3720 | c1 = get_one_char(); // get the type of thing to delete |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 3721 | // determine range, and whether it spans lines |
| 3722 | ml = find_range(&p, &q, c1); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3723 | if (c1 == 27) { // ESC- user changed mind and wants out |
| 3724 | c = c1 = 27; // Escape- do nothing |
| 3725 | } else if (strchr("wW", c1)) { |
| 3726 | if (c == 'c') { |
| 3727 | // don't include trailing WS as part of word |
Denis Vlasenko | eaabf06 | 2007-07-17 23:14:07 +0000 | [diff] [blame] | 3728 | while (isblank(*q)) { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3729 | if (q <= text || q[-1] == '\n') |
| 3730 | break; |
| 3731 | q--; |
| 3732 | } |
| 3733 | } |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 3734 | dot = yank_delete(p, q, ml, yf); // delete word |
| 3735 | } else if (strchr("^0bBeEft%$ lh\b\177", c1)) { |
| 3736 | // partial line copy text into a register and delete |
| 3737 | dot = yank_delete(p, q, ml, yf); // delete word |
| 3738 | } else if (strchr("cdykjHL+-{}\r\n", c1)) { |
| 3739 | // whole line copy text into a register and delete |
| 3740 | dot = yank_delete(p, q, ml, yf); // delete lines |
| 3741 | whole = 1; |
| 3742 | } else { |
| 3743 | // could not recognize object |
| 3744 | c = c1 = 27; // error- |
| 3745 | ml = 0; |
| 3746 | indicate_error(c); |
| 3747 | } |
| 3748 | if (ml && whole) { |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 3749 | if (c == 'c') { |
| 3750 | dot = char_insert(dot, '\n'); |
| 3751 | // on the last line of file don't move to prev line |
Paul Fox | c51fc7b | 2008-03-06 01:34:23 +0000 | [diff] [blame] | 3752 | if (whole && dot != (end-1)) { |
Eric Andersen | 1c0d311 | 2001-04-16 15:46:44 +0000 | [diff] [blame] | 3753 | dot_prev(); |
| 3754 | } |
| 3755 | } else if (c == 'd') { |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3756 | dot_begin(); |
| 3757 | dot_skip_over_ws(); |
| 3758 | } |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3759 | } |
| 3760 | if (c1 != 27) { |
| 3761 | // if CHANGING, not deleting, start inserting after the delete |
| 3762 | if (c == 'c') { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3763 | strcpy(buf, "Change"); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3764 | goto dc_i; // start inserting |
| 3765 | } |
| 3766 | if (c == 'd') { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3767 | strcpy(buf, "Delete"); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3768 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3769 | #if ENABLE_FEATURE_VI_YANKMARK |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3770 | if (c == 'y' || c == 'Y') { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3771 | strcpy(buf, "Yank"); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3772 | } |
| 3773 | p = reg[YDreg]; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3774 | q = p + strlen(p); |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3775 | for (cnt = 0; p <= q; p++) { |
| 3776 | if (*p == '\n') |
| 3777 | cnt++; |
| 3778 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3779 | status_line("%s %d lines (%d chars) using [%c]", |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3780 | buf, cnt, strlen(reg[YDreg]), what_reg()); |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3781 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3782 | end_cmd_q(); // stop adding to q |
| 3783 | } |
| 3784 | break; |
Denis Vlasenko | d44c153 | 2008-10-14 12:59:42 +0000 | [diff] [blame] | 3785 | } |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3786 | case 'k': // k- goto prev line, same col |
| 3787 | case VI_K_UP: // cursor key Up |
| 3788 | if (cmdcnt-- > 1) { |
| 3789 | do_cmd(c); |
| 3790 | } // repeat cnt |
| 3791 | dot_prev(); |
| 3792 | dot = move_to_col(dot, ccol + offset); // try stay in same col |
| 3793 | break; |
| 3794 | case 'r': // r- replace the current char with user input |
| 3795 | c1 = get_one_char(); // get the replacement char |
| 3796 | if (*dot != '\n') { |
| 3797 | *dot = c1; |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 3798 | file_modified++; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3799 | } |
| 3800 | end_cmd_q(); // stop adding to q |
| 3801 | break; |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3802 | case 't': // t- move to char prior to next x |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 3803 | last_forward_char = get_one_char(); |
| 3804 | do_cmd(';'); |
| 3805 | if (*dot == last_forward_char) |
| 3806 | dot_left(); |
| 3807 | last_forward_char= 0; |
Eric Andersen | 822c383 | 2001-05-07 17:37:43 +0000 | [diff] [blame] | 3808 | break; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3809 | case 'w': // w- forward a word |
| 3810 | if (cmdcnt-- > 1) { |
| 3811 | do_cmd(c); |
| 3812 | } // repeat cnt |
| 3813 | if (isalnum(*dot) || *dot == '_') { // we are on ALNUM |
| 3814 | dot = skip_thing(dot, 1, FORWARD, S_END_ALNUM); |
| 3815 | } else if (ispunct(*dot)) { // we are on PUNCT |
| 3816 | dot = skip_thing(dot, 1, FORWARD, S_END_PUNCT); |
| 3817 | } |
| 3818 | if (dot < end - 1) |
| 3819 | dot++; // move over word |
| 3820 | if (isspace(*dot)) { |
| 3821 | dot = skip_thing(dot, 2, FORWARD, S_OVER_WS); |
| 3822 | } |
| 3823 | break; |
| 3824 | case 'z': // z- |
| 3825 | c1 = get_one_char(); // get the replacement char |
| 3826 | cnt = 0; |
| 3827 | if (c1 == '.') |
| 3828 | cnt = (rows - 2) / 2; // put dot at center |
| 3829 | if (c1 == '-') |
| 3830 | cnt = rows - 2; // put dot at bottom |
| 3831 | screenbegin = begin_line(dot); // start dot at top |
| 3832 | dot_scroll(cnt, -1); |
| 3833 | break; |
| 3834 | case '|': // |- move to column "cmdcnt" |
| 3835 | dot = move_to_col(dot, cmdcnt - 1); // try to move to column |
| 3836 | break; |
| 3837 | case '~': // ~- flip the case of letters a-z -> A-Z |
| 3838 | if (cmdcnt-- > 1) { |
| 3839 | do_cmd(c); |
| 3840 | } // repeat cnt |
| 3841 | if (islower(*dot)) { |
| 3842 | *dot = toupper(*dot); |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 3843 | file_modified++; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3844 | } else if (isupper(*dot)) { |
| 3845 | *dot = tolower(*dot); |
Denis Vlasenko | b175946 | 2008-06-20 20:20:54 +0000 | [diff] [blame] | 3846 | file_modified++; |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3847 | } |
| 3848 | dot_right(); |
| 3849 | end_cmd_q(); // stop adding to q |
| 3850 | break; |
| 3851 | //----- The Cursor and Function Keys ----------------------------- |
| 3852 | case VI_K_HOME: // Cursor Key Home |
| 3853 | dot_begin(); |
| 3854 | break; |
| 3855 | // The Fn keys could point to do_macro which could translate them |
| 3856 | case VI_K_FUN1: // Function Key F1 |
| 3857 | case VI_K_FUN2: // Function Key F2 |
| 3858 | case VI_K_FUN3: // Function Key F3 |
| 3859 | case VI_K_FUN4: // Function Key F4 |
| 3860 | case VI_K_FUN5: // Function Key F5 |
| 3861 | case VI_K_FUN6: // Function Key F6 |
| 3862 | case VI_K_FUN7: // Function Key F7 |
| 3863 | case VI_K_FUN8: // Function Key F8 |
| 3864 | case VI_K_FUN9: // Function Key F9 |
| 3865 | case VI_K_FUN10: // Function Key F10 |
| 3866 | case VI_K_FUN11: // Function Key F11 |
| 3867 | case VI_K_FUN12: // Function Key F12 |
| 3868 | break; |
| 3869 | } |
| 3870 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3871 | dc1: |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3872 | // if text[] just became empty, add back an empty line |
| 3873 | if (end == text) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3874 | char_insert(text, '\n'); // start empty buf with dummy line |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3875 | dot = text; |
| 3876 | } |
| 3877 | // it is OK for dot to exactly equal to end, otherwise check dot validity |
| 3878 | if (dot != end) { |
| 3879 | dot = bound_dot(dot); // make sure "dot" is valid |
| 3880 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3881 | #if ENABLE_FEATURE_VI_YANKMARK |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3882 | check_context(c); // update the current context |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3883 | #endif |
Eric Andersen | 3f98040 | 2001-04-04 17:31:15 +0000 | [diff] [blame] | 3884 | |
| 3885 | if (!isdigit(c)) |
| 3886 | cmdcnt = 0; // cmd was not a number, reset cmdcnt |
| 3887 | cnt = dot - begin_line(dot); |
| 3888 | // Try to stay off of the Newline |
| 3889 | if (*dot == '\n' && cnt > 0 && cmd_mode == 0) |
| 3890 | dot--; |
| 3891 | } |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3892 | |
Paul Fox | 35e9c5d | 2008-03-06 16:26:12 +0000 | [diff] [blame] | 3893 | /* NB! the CRASHME code is unmaintained, and doesn't currently build */ |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 3894 | #if ENABLE_FEATURE_VI_CRASHME |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3895 | static int totalcmds = 0; |
| 3896 | static int Mp = 85; // Movement command Probability |
| 3897 | static int Np = 90; // Non-movement command Probability |
| 3898 | static int Dp = 96; // Delete command Probability |
| 3899 | static int Ip = 97; // Insert command Probability |
| 3900 | static int Yp = 98; // Yank command Probability |
| 3901 | static int Pp = 99; // Put command Probability |
| 3902 | static int M = 0, N = 0, I = 0, D = 0, Y = 0, P = 0, U = 0; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3903 | static const char chars[20] = "\t012345 abcdABCD-=.$"; |
| 3904 | static const char *const words[20] = { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3905 | "this", "is", "a", "test", |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3906 | "broadcast", "the", "emergency", "of", |
| 3907 | "system", "quick", "brown", "fox", |
| 3908 | "jumped", "over", "lazy", "dogs", |
| 3909 | "back", "January", "Febuary", "March" |
| 3910 | }; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3911 | static const char *const lines[20] = { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3912 | "You should have received a copy of the GNU General Public License\n", |
| 3913 | "char c, cm, *cmd, *cmd1;\n", |
| 3914 | "generate a command by percentages\n", |
| 3915 | "Numbers may be typed as a prefix to some commands.\n", |
| 3916 | "Quit, discarding changes!\n", |
| 3917 | "Forced write, if permission originally not valid.\n", |
| 3918 | "In general, any ex or ed command (such as substitute or delete).\n", |
| 3919 | "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n", |
| 3920 | "Please get w/ me and I will go over it with you.\n", |
| 3921 | "The following is a list of scheduled, committed changes.\n", |
| 3922 | "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n", |
| 3923 | "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n", |
| 3924 | "Any question about transactions please contact Sterling Huxley.\n", |
| 3925 | "I will try to get back to you by Friday, December 31.\n", |
| 3926 | "This Change will be implemented on Friday.\n", |
| 3927 | "Let me know if you have problems accessing this;\n", |
| 3928 | "Sterling Huxley recently added you to the access list.\n", |
| 3929 | "Would you like to go to lunch?\n", |
| 3930 | "The last command will be automatically run.\n", |
| 3931 | "This is too much english for a computer geek.\n", |
| 3932 | }; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3933 | static char *multilines[20] = { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3934 | "You should have received a copy of the GNU General Public License\n", |
| 3935 | "char c, cm, *cmd, *cmd1;\n", |
| 3936 | "generate a command by percentages\n", |
| 3937 | "Numbers may be typed as a prefix to some commands.\n", |
| 3938 | "Quit, discarding changes!\n", |
| 3939 | "Forced write, if permission originally not valid.\n", |
| 3940 | "In general, any ex or ed command (such as substitute or delete).\n", |
| 3941 | "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n", |
| 3942 | "Please get w/ me and I will go over it with you.\n", |
| 3943 | "The following is a list of scheduled, committed changes.\n", |
| 3944 | "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n", |
| 3945 | "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n", |
| 3946 | "Any question about transactions please contact Sterling Huxley.\n", |
| 3947 | "I will try to get back to you by Friday, December 31.\n", |
| 3948 | "This Change will be implemented on Friday.\n", |
| 3949 | "Let me know if you have problems accessing this;\n", |
| 3950 | "Sterling Huxley recently added you to the access list.\n", |
| 3951 | "Would you like to go to lunch?\n", |
| 3952 | "The last command will be automatically run.\n", |
| 3953 | "This is too much english for a computer geek.\n", |
| 3954 | }; |
| 3955 | |
| 3956 | // create a random command to execute |
| 3957 | static void crash_dummy() |
| 3958 | { |
| 3959 | static int sleeptime; // how long to pause between commands |
| 3960 | char c, cm, *cmd, *cmd1; |
| 3961 | int i, cnt, thing, rbi, startrbi, percent; |
| 3962 | |
| 3963 | // "dot" movement commands |
| 3964 | cmd1 = " \n\r\002\004\005\006\025\0310^$-+wWeEbBhjklHL"; |
| 3965 | |
| 3966 | // is there already a command running? |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 3967 | if (chars_to_parse > 0) |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3968 | goto cd1; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 3969 | cd0: |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3970 | startrbi = rbi = 0; |
| 3971 | sleeptime = 0; // how long to pause between commands |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 3972 | memset(readbuffer, '\0', sizeof(readbuffer)); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 3973 | // generate a command by percentages |
| 3974 | percent = (int) lrand48() % 100; // get a number from 0-99 |
| 3975 | if (percent < Mp) { // Movement commands |
| 3976 | // available commands |
| 3977 | cmd = cmd1; |
| 3978 | M++; |
| 3979 | } else if (percent < Np) { // non-movement commands |
| 3980 | cmd = "mz<>\'\""; // available commands |
| 3981 | N++; |
| 3982 | } else if (percent < Dp) { // Delete commands |
| 3983 | cmd = "dx"; // available commands |
| 3984 | D++; |
| 3985 | } else if (percent < Ip) { // Inset commands |
| 3986 | cmd = "iIaAsrJ"; // available commands |
| 3987 | I++; |
| 3988 | } else if (percent < Yp) { // Yank commands |
| 3989 | cmd = "yY"; // available commands |
| 3990 | Y++; |
| 3991 | } else if (percent < Pp) { // Put commands |
| 3992 | cmd = "pP"; // available commands |
| 3993 | P++; |
| 3994 | } else { |
| 3995 | // We do not know how to handle this command, try again |
| 3996 | U++; |
| 3997 | goto cd0; |
| 3998 | } |
| 3999 | // randomly pick one of the available cmds from "cmd[]" |
| 4000 | i = (int) lrand48() % strlen(cmd); |
| 4001 | cm = cmd[i]; |
| 4002 | if (strchr(":\024", cm)) |
| 4003 | goto cd0; // dont allow colon or ctrl-T commands |
| 4004 | readbuffer[rbi++] = cm; // put cmd into input buffer |
| 4005 | |
| 4006 | // now we have the command- |
| 4007 | // there are 1, 2, and multi char commands |
| 4008 | // find out which and generate the rest of command as necessary |
| 4009 | if (strchr("dmryz<>\'\"", cm)) { // 2-char commands |
| 4010 | cmd1 = " \n\r0$^-+wWeEbBhjklHL"; |
| 4011 | if (cm == 'm' || cm == '\'' || cm == '\"') { // pick a reg[] |
| 4012 | cmd1 = "abcdefghijklmnopqrstuvwxyz"; |
| 4013 | } |
| 4014 | thing = (int) lrand48() % strlen(cmd1); // pick a movement command |
| 4015 | c = cmd1[thing]; |
| 4016 | readbuffer[rbi++] = c; // add movement to input buffer |
| 4017 | } |
| 4018 | if (strchr("iIaAsc", cm)) { // multi-char commands |
| 4019 | if (cm == 'c') { |
| 4020 | // change some thing |
| 4021 | thing = (int) lrand48() % strlen(cmd1); // pick a movement command |
| 4022 | c = cmd1[thing]; |
| 4023 | readbuffer[rbi++] = c; // add movement to input buffer |
| 4024 | } |
| 4025 | thing = (int) lrand48() % 4; // what thing to insert |
| 4026 | cnt = (int) lrand48() % 10; // how many to insert |
| 4027 | for (i = 0; i < cnt; i++) { |
| 4028 | if (thing == 0) { // insert chars |
| 4029 | readbuffer[rbi++] = chars[((int) lrand48() % strlen(chars))]; |
| 4030 | } else if (thing == 1) { // insert words |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4031 | strcat(readbuffer, words[(int) lrand48() % 20]); |
| 4032 | strcat(readbuffer, " "); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4033 | sleeptime = 0; // how fast to type |
| 4034 | } else if (thing == 2) { // insert lines |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4035 | strcat(readbuffer, lines[(int) lrand48() % 20]); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4036 | sleeptime = 0; // how fast to type |
| 4037 | } else { // insert multi-lines |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4038 | strcat(readbuffer, multilines[(int) lrand48() % 20]); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4039 | sleeptime = 0; // how fast to type |
| 4040 | } |
| 4041 | } |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4042 | strcat(readbuffer, "\033"); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4043 | } |
Denis Vlasenko | 26b6fba | 2007-12-21 21:34:37 +0000 | [diff] [blame] | 4044 | chars_to_parse = strlen(readbuffer); |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4045 | cd1: |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4046 | totalcmds++; |
| 4047 | if (sleeptime > 0) |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4048 | mysleep(sleeptime); // sleep 1/100 sec |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4049 | } |
| 4050 | |
| 4051 | // test to see if there are any errors |
| 4052 | static void crash_test() |
| 4053 | { |
| 4054 | static time_t oldtim; |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4055 | |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4056 | time_t tim; |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 4057 | char d[2], msg[80]; |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4058 | |
| 4059 | msg[0] = '\0'; |
| 4060 | if (end < text) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4061 | strcat(msg, "end<text "); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4062 | } |
| 4063 | if (end > textend) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4064 | strcat(msg, "end>textend "); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4065 | } |
| 4066 | if (dot < text) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4067 | strcat(msg, "dot<text "); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4068 | } |
| 4069 | if (dot > end) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4070 | strcat(msg, "dot>end "); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4071 | } |
| 4072 | if (screenbegin < text) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4073 | strcat(msg, "screenbegin<text "); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4074 | } |
| 4075 | if (screenbegin > end - 1) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4076 | strcat(msg, "screenbegin>end-1 "); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4077 | } |
| 4078 | |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4079 | if (msg[0]) { |
Glenn L McGrath | 7127b58 | 2002-12-03 21:48:15 +0000 | [diff] [blame] | 4080 | printf("\n\n%d: \'%c\' %s\n\n\n%s[Hit return to continue]%s", |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4081 | totalcmds, last_input_char, msg, SOs, SOn); |
| 4082 | fflush(stdout); |
Bernhard Reutner-Fischer | 5e25ddb | 2008-05-19 09:48:17 +0000 | [diff] [blame] | 4083 | while (safe_read(STDIN_FILENO, d, 1) > 0) { |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4084 | if (d[0] == '\n' || d[0] == '\r') |
| 4085 | break; |
| 4086 | } |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4087 | } |
Denis Vlasenko | 88adfcd | 2007-12-22 15:40:13 +0000 | [diff] [blame] | 4088 | tim = time(NULL); |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4089 | if (tim >= (oldtim + 3)) { |
Denis Vlasenko | afa37cf | 2007-03-21 00:05:35 +0000 | [diff] [blame] | 4090 | sprintf(status_buffer, |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4091 | "Tot=%d: M=%d N=%d I=%d D=%d Y=%d P=%d U=%d size=%d", |
| 4092 | totalcmds, M, N, I, D, Y, P, U, end - text + 1); |
| 4093 | oldtim = tim; |
| 4094 | } |
Glenn L McGrath | 09adaca | 2002-12-02 21:18:10 +0000 | [diff] [blame] | 4095 | } |
Denis Vlasenko | 6a5dc5d | 2006-12-30 18:42:29 +0000 | [diff] [blame] | 4096 | #endif |