blob: f7d3ef67840dd80eac5fb7cf78db142fbfb782c7 [file] [log] [blame]
Rob Landleye5e1a102006-06-21 01:15:36 +00001/* vi: set sw=4 ts=4: */
Eric Andersen3f980402001-04-04 17:31:15 +00002/*
3 * tiny vi.c: A small 'vi' clone
4 * Copyright (C) 2000, 2001 Sterling Huxley <sterling@europa.com>
5 *
Paul Foxdbf935d2006-03-27 20:29:33 +00006 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen3f980402001-04-04 17:31:15 +00007 */
8
Eric Andersen3f980402001-04-04 17:31:15 +00009/*
Eric Andersen3f980402001-04-04 17:31:15 +000010 * Things To Do:
11 * EXINIT
Eric Andersen1c0d3112001-04-16 15:46:44 +000012 * $HOME/.exrc and ./.exrc
Eric Andersen3f980402001-04-04 17:31:15 +000013 * add magic to search /foo.*bar
14 * add :help command
15 * :map macros
Eric Andersen3f980402001-04-04 17:31:15 +000016 * if mark[] values were line numbers rather than pointers
17 * it would be easier to change the mark when add/delete lines
Eric Andersen1c0d3112001-04-16 15:46:44 +000018 * 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 Andersen3f980402001-04-04 17:31:15 +000022 */
23
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000024#include "libbb.h"
Eric Andersen3f980402001-04-04 17:31:15 +000025
Paul Fox35e9c5d2008-03-06 16:26:12 +000026/* the CRASHME code is unmaintained, and doesn't currently build */
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +000027#define ENABLE_FEATURE_VI_CRASHME 0
28
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000029
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +000030#if ENABLE_LOCALE_SUPPORT
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000031
32#if ENABLE_FEATURE_VI_8BIT
33#define Isprint(c) isprint(c)
Glenn L McGrath09adaca2002-12-02 21:18:10 +000034#else
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000035#define Isprint(c) (isprint(c) && (unsigned char)(c) < 0x7f)
Glenn L McGrath09adaca2002-12-02 21:18:10 +000036#endif
37
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000038#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 Vlasenkoe8a07882007-06-10 15:08:44 +000050enum {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +000051 MAX_TABSTOP = 32, // sanity limit
Denis Vlasenko88adfcd2007-12-22 15:40:13 +000052 // 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 Vlasenkoe8a07882007-06-10 15:08:44 +000058};
Eric Andersen3f980402001-04-04 17:31:15 +000059
60// Misc. non-Ascii keys that report an escape sequence
Denis Vlasenko2a51af22007-03-21 22:31:24 +000061#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 Vlasenko88adfcd2007-12-22 15:40:13 +000068#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 Andersen3f980402001-04-04 17:31:15 +000083
Glenn L McGrath09adaca2002-12-02 21:18:10 +000084/* vt102 typical ESC sequence */
85/* terminal standout start/normal ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000086static const char SOs[] ALIGN1 = "\033[7m";
87static const char SOn[] ALIGN1 = "\033[0m";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000088/* terminal bell sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000089static const char bell[] ALIGN1 = "\007";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000090/* Clear-end-of-line and Clear-end-of-screen ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000091static const char Ceol[] ALIGN1 = "\033[0K";
92static const char Ceos[] ALIGN1 = "\033[0J";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000093/* Cursor motion arbitrary destination ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000094static const char CMrc[] ALIGN1 = "\033[%d;%dH";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000095/* Cursor motion up and down ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000096static const char CMup[] ALIGN1 = "\033[A";
97static const char CMdown[] ALIGN1 = "\n";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000098
99
Rob Landleybc68cd12006-03-10 19:22:06 +0000100enum {
101 YANKONLY = FALSE,
102 YANKDEL = TRUE,
103 FORWARD = 1, // code depends on "1" for array index
104 BACK = -1, // code depends on "-1" for array index
105 LIMITED = 0, // how much of text[] in char_search
106 FULL = 1, // how much of text[] in char_search
Eric Andersen3f980402001-04-04 17:31:15 +0000107
Rob Landleybc68cd12006-03-10 19:22:06 +0000108 S_BEFORE_WS = 1, // used in skip_thing() for moving "dot"
109 S_TO_WS = 2, // used in skip_thing() for moving "dot"
110 S_OVER_WS = 3, // used in skip_thing() for moving "dot"
111 S_END_PUNCT = 4, // used in skip_thing() for moving "dot"
Denis Vlasenko8e858e22007-03-07 09:35:43 +0000112 S_END_ALNUM = 5, // used in skip_thing() for moving "dot"
Rob Landleybc68cd12006-03-10 19:22:06 +0000113};
Eric Andersen3f980402001-04-04 17:31:15 +0000114
Denis Vlasenkob1759462008-06-20 20:20:54 +0000115
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000116/* vi.c expects chars to be unsigned. */
117/* busybox build system provides that, but it's better */
118/* to audit and fix the source */
Eric Andersen3f980402001-04-04 17:31:15 +0000119
Denis Vlasenkob1759462008-06-20 20:20:54 +0000120struct globals {
121 /* many references - keep near the top of globals */
122 char *text, *end; // pointers to the user data in memory
123 char *dot; // where all the action takes place
124 int text_size; // size of the allocated buffer
125
126 /* the rest */
127 smallint vi_setops;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000128#define VI_AUTOINDENT 1
129#define VI_SHOWMATCH 2
130#define VI_IGNORECASE 4
131#define VI_ERR_METHOD 8
132#define autoindent (vi_setops & VI_AUTOINDENT)
133#define showmatch (vi_setops & VI_SHOWMATCH )
134#define ignorecase (vi_setops & VI_IGNORECASE)
135/* indicate error with beep or flash */
136#define err_method (vi_setops & VI_ERR_METHOD)
137
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000138#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkob1759462008-06-20 20:20:54 +0000139 smallint readonly_mode;
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +0000140#define SET_READONLY_FILE(flags) ((flags) |= 0x01)
141#define SET_READONLY_MODE(flags) ((flags) |= 0x02)
142#define UNSET_READONLY_FILE(flags) ((flags) &= 0xfe)
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000143#else
Denis Vlasenkob1759462008-06-20 20:20:54 +0000144#define SET_READONLY_FILE(flags) ((void)0)
145#define SET_READONLY_MODE(flags) ((void)0)
146#define UNSET_READONLY_FILE(flags) ((void)0)
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000147#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000148
Denis Vlasenkob1759462008-06-20 20:20:54 +0000149 smallint editing; // >0 while we are editing a file
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000150 // [code audit says "can be 0, 1 or 2 only"]
Denis Vlasenkob1759462008-06-20 20:20:54 +0000151 smallint cmd_mode; // 0=command 1=insert 2=replace
152 int file_modified; // buffer contents changed (counter, not flag!)
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000153 int last_file_modified; // = -1;
Denis Vlasenkob1759462008-06-20 20:20:54 +0000154 int fn_start; // index of first cmd line file name
155 int save_argc; // how many file names on cmd line
156 int cmdcnt; // repetition count
157 unsigned rows, columns; // the terminal screen is this size
158 int crow, ccol; // cursor is on Crow x Ccol
159 int offset; // chars scrolled off the screen to the left
160 int have_status_msg; // is default edit status needed?
161 // [don't make smallint!]
162 int last_status_cksum; // hash of current status line
163 char *current_filename;
164 char *screenbegin; // index into text[], of top line on the screen
165 char *screen; // pointer to the virtual screen buffer
166 int screensize; // and its size
167 int tabstop;
168 char erase_char; // the users erase character
169 char last_input_char; // last char read from user
170 char last_forward_char; // last char searched for with 'f'
171
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000172#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkob1759462008-06-20 20:20:54 +0000173 smallint adding2q; // are we currently adding user input to q
174 int lmc_len; // length of last_modifying_cmd
175 char *ioq, *ioq_start; // pointer to string for get_one_char to "read"
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000176#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000177#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Denis Vlasenkob1759462008-06-20 20:20:54 +0000178 int last_row; // where the cursor was last moved to
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000179#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000180#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkob1759462008-06-20 20:20:54 +0000181 int my_pid;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000182#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000183#if ENABLE_FEATURE_VI_DOT_CMD || ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkob1759462008-06-20 20:20:54 +0000184 char *modifying_cmds; // cmds that modify text[]
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000185#endif
186#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkob1759462008-06-20 20:20:54 +0000187 char *last_search_pattern; // last pattern from a '/' or '?' search
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000188#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000189 int chars_to_parse;
190 /* former statics */
191#if ENABLE_FEATURE_VI_YANKMARK
192 char *edit_file__cur_line;
193#endif
194 int refresh__old_offset;
195 int format_edit_status__tot;
Eric Andersen3f980402001-04-04 17:31:15 +0000196
Denis Vlasenkob1759462008-06-20 20:20:54 +0000197 /* a few references only */
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000198#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000199 int YDreg, Ureg; // default delete register and orig line for "U"
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000200 char *reg[28]; // named register a-z, "D", and "U" 0-25,26,27
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000201 char *mark[28]; // user marks points somewhere in text[]- a-z and previous context ''
202 char *context_start, *context_end;
203#endif
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000204#if ENABLE_FEATURE_VI_USE_SIGNALS
Denis Vlasenkob1759462008-06-20 20:20:54 +0000205 sigjmp_buf restart; // catch_sig()
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000206#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000207 struct termios term_orig, term_vi; // remember what the cooked mode was
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000208#if ENABLE_FEATURE_VI_COLON
209 char *initial_cmds[3]; // currently 2 entries, NULL terminated
210#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000211 // Should be just enough to hold a key sequence,
Denis Vlasenko25497c12008-10-14 10:25:05 +0000212 // but CRASHME mode uses it as generated command buffer too
213#if ENABLE_FEATURE_VI_CRASHME
214 char readbuffer[128];
215#else
216 char readbuffer[8];
217#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000218#define STATUS_BUFFER_LEN 200
219 char status_buffer[STATUS_BUFFER_LEN]; // messages to the user
220#if ENABLE_FEATURE_VI_DOT_CMD
221 char last_modifying_cmd[MAX_INPUT_LEN]; // last modifying cmd for "."
222#endif
223 char get_input_line__buf[MAX_INPUT_LEN]; /* former static */
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000224
225 char scr_out_buf[MAX_SCR_COLS + MAX_TABSTOP * 2];
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000226};
227#define G (*ptr_to_globals)
228#define text (G.text )
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000229#define text_size (G.text_size )
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000230#define end (G.end )
231#define dot (G.dot )
232#define reg (G.reg )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000233
234#define vi_setops (G.vi_setops )
235#define editing (G.editing )
236#define cmd_mode (G.cmd_mode )
237#define file_modified (G.file_modified )
238#define last_file_modified (G.last_file_modified )
239#define fn_start (G.fn_start )
240#define save_argc (G.save_argc )
241#define cmdcnt (G.cmdcnt )
242#define rows (G.rows )
243#define columns (G.columns )
244#define crow (G.crow )
245#define ccol (G.ccol )
246#define offset (G.offset )
247#define status_buffer (G.status_buffer )
248#define have_status_msg (G.have_status_msg )
249#define last_status_cksum (G.last_status_cksum )
250#define current_filename (G.current_filename )
251#define screen (G.screen )
252#define screensize (G.screensize )
253#define screenbegin (G.screenbegin )
254#define tabstop (G.tabstop )
255#define erase_char (G.erase_char )
256#define last_input_char (G.last_input_char )
257#define last_forward_char (G.last_forward_char )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000258#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkob1759462008-06-20 20:20:54 +0000259#define readonly_mode (G.readonly_mode )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000260#else
261#define readonly_mode 0
262#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000263#define adding2q (G.adding2q )
264#define lmc_len (G.lmc_len )
265#define ioq (G.ioq )
266#define ioq_start (G.ioq_start )
267#define last_row (G.last_row )
268#define my_pid (G.my_pid )
269#define modifying_cmds (G.modifying_cmds )
270#define last_search_pattern (G.last_search_pattern)
271#define chars_to_parse (G.chars_to_parse )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000272
Denis Vlasenkob1759462008-06-20 20:20:54 +0000273#define edit_file__cur_line (G.edit_file__cur_line)
274#define refresh__old_offset (G.refresh__old_offset)
275#define format_edit_status__tot (G.format_edit_status__tot)
276
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000277#define YDreg (G.YDreg )
278#define Ureg (G.Ureg )
279#define mark (G.mark )
280#define context_start (G.context_start )
281#define context_end (G.context_end )
282#define restart (G.restart )
283#define term_orig (G.term_orig )
284#define term_vi (G.term_vi )
285#define initial_cmds (G.initial_cmds )
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000286#define readbuffer (G.readbuffer )
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000287#define scr_out_buf (G.scr_out_buf )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000288#define last_modifying_cmd (G.last_modifying_cmd )
289#define get_input_line__buf (G.get_input_line__buf)
290
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000291#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000292 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenkob1759462008-06-20 20:20:54 +0000293 last_file_modified = -1; \
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000294} while (0)
Eric Andersen3f980402001-04-04 17:31:15 +0000295
Denis Vlasenkob1759462008-06-20 20:20:54 +0000296
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000297static int init_text_buffer(char *); // init from file or create new
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000298static void edit_file(char *); // edit one file
299static void do_cmd(char); // execute a command
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000300static int next_tabstop(int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000301static void sync_cursor(char *, int *, int *); // synchronize the screen cursor to dot
302static char *begin_line(char *); // return pointer to cur line B-o-l
303static char *end_line(char *); // return pointer to cur line E-o-l
304static char *prev_line(char *); // return pointer to prev line B-o-l
305static char *next_line(char *); // return pointer to next line B-o-l
306static char *end_screen(void); // get pointer to last char on screen
307static int count_lines(char *, char *); // count line from start to stop
308static char *find_line(int); // find begining of line #li
309static char *move_to_col(char *, int); // move "p" to column l
Eric Andersen3f980402001-04-04 17:31:15 +0000310static void dot_left(void); // move dot left- dont leave line
311static void dot_right(void); // move dot right- dont leave line
312static void dot_begin(void); // move dot to B-o-l
313static void dot_end(void); // move dot to E-o-l
314static void dot_next(void); // move dot to next line B-o-l
315static void dot_prev(void); // move dot to prev line B-o-l
316static void dot_scroll(int, int); // move the screen up or down
317static void dot_skip_over_ws(void); // move dot pat WS
318static void dot_delete(void); // delete the char at 'dot'
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000319static char *bound_dot(char *); // make sure text[0] <= P < "end"
320static char *new_screen(int, int); // malloc virtual screen memory
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000321static char *char_insert(char *, char); // insert the char c at 'p'
322static char *stupid_insert(char *, char); // stupidly insert the char c at 'p'
Paul Foxc51fc7b2008-03-06 01:34:23 +0000323static int find_range(char **, char **, char); // return pointers for an object
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000324static int st_test(char *, int, int, char *); // helper for skip_thing()
325static char *skip_thing(char *, int, int, int); // skip some object
326static char *find_pair(char *, char); // find matching pair () [] {}
327static char *text_hole_delete(char *, char *); // at "p", delete a 'size' byte hole
328static char *text_hole_make(char *, int); // at "p", make a 'size' byte hole
329static char *yank_delete(char *, char *, int, int); // yank text[] into register then delete
Eric Andersen3f980402001-04-04 17:31:15 +0000330static void show_help(void); // display some help info
Eric Andersen3f980402001-04-04 17:31:15 +0000331static void rawmode(void); // set "raw" mode on tty
332static void cookmode(void); // return to "cooked" mode on tty
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000333// sleep for 'h' 1/100 seconds, return 1/0 if stdin is (ready for read)/(not ready)
334static int mysleep(int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000335static char readit(void); // read (maybe cursor) key from stdin
336static char get_one_char(void); // read 1 char from stdin
337static int file_size(const char *); // what is the byte size of "fn"
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000338#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000339static int file_insert(const char *, char *, int);
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000340#else
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000341static int file_insert(const char *, char *);
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000342#endif
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000343static int file_write(char *, char *, char *);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +0000344#if !ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
345#define place_cursor(a, b, optimize) place_cursor(a, b)
346#endif
Eric Andersen822c3832001-05-07 17:37:43 +0000347static void place_cursor(int, int, int);
Eric Andersenbff7a602001-11-17 07:15:43 +0000348static void screen_erase(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000349static void clear_to_eol(void);
350static void clear_to_eos(void);
351static void standout_start(void); // send "start reverse video" sequence
352static void standout_end(void); // send "end reverse video" sequence
353static void flash(int); // flash the terminal screen
Eric Andersen3f980402001-04-04 17:31:15 +0000354static void show_status_line(void); // put a message on the bottom line
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000355static void status_line(const char *, ...); // print to status buf
356static void status_line_bold(const char *, ...);
357static void not_implemented(const char *); // display "Not implemented" message
Paul Fox8552aec2005-09-16 12:20:05 +0000358static int format_edit_status(void); // format file status on status line
Eric Andersen3f980402001-04-04 17:31:15 +0000359static void redraw(int); // force a full screen refresh
Denis Vlasenko68404f12008-03-17 09:00:54 +0000360static char* format_line(char* /*, int*/);
Eric Andersen3f980402001-04-04 17:31:15 +0000361static void refresh(int); // update the terminal from screen[]
362
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000363static void Indicate_Error(void); // use flash or beep to indicate error
364#define indicate_error(c) Indicate_Error()
Paul Fox90372ed2005-10-09 14:26:26 +0000365static void Hit_Return(void);
366
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000367#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000368static char *char_search(char *, const char *, int, int); // search for pattern starting at p
369static int mycmp(const char *, const char *, int); // string cmp based in "ignorecase"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000370#endif
371#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000372static char *get_one_address(char *, int *); // get colon addr, if present
373static char *get_address(char *, int *, int *); // get two colon addrs, if present
374static void colon(char *); // execute the "colon" mode cmds
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000375#endif
376#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000377static void winch_sig(int); // catch window size changes
378static void suspend_sig(int); // catch ctrl-Z
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000379static void catch_sig(int); // catch ctrl-C and alarm time-outs
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000380#endif
381#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000382static void start_new_cmd_q(char); // new queue for command
Eric Andersenbff7a602001-11-17 07:15:43 +0000383static void end_cmd_q(void); // stop saving input chars
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000384#else
385#define end_cmd_q() ((void)0)
386#endif
387#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000388static void showmatching(char *); // show the matching pair () [] {}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000389#endif
390#if ENABLE_FEATURE_VI_YANKMARK || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000391static char *string_insert(char *, char *); // insert the string at 'p'
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000392#endif
393#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000394static char *text_yank(char *, char *, int); // save copy of "p" into a register
395static char what_reg(void); // what is letter of current YDreg
396static void check_context(char); // remember context for '' command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000397#endif
398#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000399static void crash_dummy();
400static void crash_test();
401static int crashme = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000402#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000403
404
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000405static void write1(const char *out)
406{
407 fputs(out, stdout);
408}
409
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000410int vi_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +0000411int vi_main(int argc, char **argv)
Eric Andersen3f980402001-04-04 17:31:15 +0000412{
Eric Andersend402edf2001-04-04 19:29:48 +0000413 int c;
Denis Vlasenkob1759462008-06-20 20:20:54 +0000414
415 INIT_G();
Eric Andersen3f980402001-04-04 17:31:15 +0000416
Denis Vlasenkocd5c7862007-05-17 16:37:22 +0000417#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000418 my_pid = getpid();
419#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000420#if ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000421 srand((long) my_pid);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000422#endif
Denis Vlasenko2414a962007-07-18 22:03:40 +0000423#ifdef NO_SUCH_APPLET_YET
424 /* If we aren't "vi", we are "view" */
425 if (ENABLE_FEATURE_VI_READONLY && applet_name[2]) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000426 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000427 }
Denis Vlasenko2414a962007-07-18 22:03:40 +0000428#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000429
Bernhard Reutner-Fischer73f56bb2007-09-22 21:18:46 +0000430 vi_setops = VI_AUTOINDENT | VI_SHOWMATCH | VI_IGNORECASE;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000431#if ENABLE_FEATURE_VI_DOT_CMD || ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000432 modifying_cmds = (char *) "aAcCdDiIJoOpPrRsxX<>~"; // cmds modifying text[]
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000433#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000434
Denis Vlasenkof9234132007-03-21 00:03:42 +0000435 // 1- process $HOME/.exrc file (not inplemented yet)
Eric Andersen3f980402001-04-04 17:31:15 +0000436 // 2- process EXINIT variable from environment
437 // 3- process command line args
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000438#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000439 {
440 char *p = getenv("EXINIT");
441 if (p && *p)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000442 initial_cmds[0] = xstrndup(p, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000443 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000444#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000445 while ((c = getopt(argc, argv, "hCRH" USE_FEATURE_VI_COLON("c:"))) != -1) {
Eric Andersen3f980402001-04-04 17:31:15 +0000446 switch (c) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000447#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000448 case 'C':
449 crashme = 1;
450 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000451#endif
452#if ENABLE_FEATURE_VI_READONLY
Eric Andersen3f980402001-04-04 17:31:15 +0000453 case 'R': // Read-only flag
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000454 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000455 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000456#endif
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000457#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000458 case 'c': // cmd line vi command
459 if (*optarg)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000460 initial_cmds[initial_cmds[0] != 0] = xstrndup(optarg, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000461 break;
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000462#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000463 case 'H':
Eric Andersen3f980402001-04-04 17:31:15 +0000464 show_help();
Paul Fox35e9c5d2008-03-06 16:26:12 +0000465 /* fall through */
Paul Fox35e9c5d2008-03-06 16:26:12 +0000466 default:
Denis Vlasenkoc6938402008-03-24 02:18:03 +0000467 bb_show_usage();
Eric Andersendd8500b2001-07-02 18:06:14 +0000468 return 1;
Eric Andersen3f980402001-04-04 17:31:15 +0000469 }
470 }
471
472 // The argv array can be used by the ":next" and ":rewind" commands
473 // save optind.
474 fn_start = optind; // remember first file name for :next and :rew
475 save_argc = argc;
476
477 //----- This is the main file handling loop --------------
478 if (optind >= argc) {
Eric Andersen3f980402001-04-04 17:31:15 +0000479 edit_file(0);
480 } else {
481 for (; optind < argc; optind++) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000482 edit_file(argv[optind]);
Eric Andersen3f980402001-04-04 17:31:15 +0000483 }
484 }
485 //-----------------------------------------------------------
486
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000487 return 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000488}
489
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000490/* read text from file or create an empty buf */
491/* will also update current_filename */
492static int init_text_buffer(char *fn)
493{
494 int rc;
495 int size = file_size(fn); // file size. -1 means does not exist.
496
497 /* allocate/reallocate text buffer */
498 free(text);
Denis Vlasenkob1759462008-06-20 20:20:54 +0000499 text_size = size + 10240;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000500 screenbegin = dot = end = text = xzalloc(text_size);
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000501
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000502 if (fn != current_filename) {
503 free(current_filename);
504 current_filename = xstrdup(fn);
505 }
506 if (size < 0) {
507 // file dont exist. Start empty buf with dummy line
508 char_insert(text, '\n');
509 rc = 0;
510 } else {
511 rc = file_insert(fn, text
512 USE_FEATURE_VI_READONLY(, 1));
513 }
514 file_modified = 0;
515 last_file_modified = -1;
516#if ENABLE_FEATURE_VI_YANKMARK
517 /* init the marks. */
518 memset(mark, 0, sizeof(mark));
519#endif
520 return rc;
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000521}
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000522
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000523static void edit_file(char *fn)
Eric Andersen3f980402001-04-04 17:31:15 +0000524{
Denis Vlasenkob1759462008-06-20 20:20:54 +0000525#if ENABLE_FEATURE_VI_YANKMARK
526#define cur_line edit_file__cur_line
527#endif
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000528 char c;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000529 int size;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000530#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000531 int sig;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000532#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000533
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000534 editing = 1; // 0 = exit, 1 = one file, 2 = multiple files
Eric Andersen3f980402001-04-04 17:31:15 +0000535 rawmode();
536 rows = 24;
537 columns = 80;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000538 size = 0;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000539 if (ENABLE_FEATURE_VI_WIN_RESIZE) {
Rob Landleye5e1a102006-06-21 01:15:36 +0000540 get_terminal_width_height(0, &columns, &rows);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000541 if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS;
542 if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS;
543 }
Eric Andersen3f980402001-04-04 17:31:15 +0000544 new_screen(rows, columns); // get memory for virtual screen
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000545 init_text_buffer(fn);
Eric Andersen3f980402001-04-04 17:31:15 +0000546
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000547#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000548 YDreg = 26; // default Yank/Delete reg
549 Ureg = 27; // hold orig line for "U" cmd
Eric Andersen3f980402001-04-04 17:31:15 +0000550 mark[26] = mark[27] = text; // init "previous context"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000551#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000552
Eric Andersen3f980402001-04-04 17:31:15 +0000553 last_forward_char = last_input_char = '\0';
554 crow = 0;
555 ccol = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000556
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000557#if ENABLE_FEATURE_VI_USE_SIGNALS
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000558 catch_sig(0);
Eric Andersen3f980402001-04-04 17:31:15 +0000559 signal(SIGWINCH, winch_sig);
560 signal(SIGTSTP, suspend_sig);
Paul Fox2724fa92008-03-17 15:28:07 +0000561 sig = sigsetjmp(restart, 1);
Eric Andersen3f980402001-04-04 17:31:15 +0000562 if (sig != 0) {
Eric Andersen1c0d3112001-04-16 15:46:44 +0000563 screenbegin = dot = text;
Eric Andersen3f980402001-04-04 17:31:15 +0000564 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000565#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000566
Eric Andersen3f980402001-04-04 17:31:15 +0000567 cmd_mode = 0; // 0=command 1=insert 2='R'eplace
568 cmdcnt = 0;
569 tabstop = 8;
570 offset = 0; // no horizontal offset
571 c = '\0';
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000572#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000573 free(ioq_start);
Paul Foxc51fc7b2008-03-06 01:34:23 +0000574 ioq = ioq_start = NULL;
575 lmc_len = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000576 adding2q = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000577#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000578
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000579#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000580 {
581 char *p, *q;
582 int n = 0;
583
584 while ((p = initial_cmds[n])) {
585 do {
586 q = p;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000587 p = strchr(q, '\n');
Denis Vlasenkof9234132007-03-21 00:03:42 +0000588 if (p)
Denis Vlasenko51742f42007-04-12 00:32:05 +0000589 while (*p == '\n')
Denis Vlasenkof9234132007-03-21 00:03:42 +0000590 *p++ = '\0';
591 if (*q)
592 colon(q);
593 } while (p);
594 free(initial_cmds[n]);
595 initial_cmds[n] = NULL;
596 n++;
597 }
598 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000599#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000600 redraw(FALSE); // dont force every col re-draw
Eric Andersen3f980402001-04-04 17:31:15 +0000601 //------This is the main Vi cmd handling loop -----------------------
602 while (editing > 0) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000603#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000604 if (crashme > 0) {
605 if ((end - text) > 1) {
606 crash_dummy(); // generate a random command
607 } else {
608 crashme = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000609 dot = string_insert(text, "\n\n##### Ran out of text to work on. #####\n\n"); // insert the string
Eric Andersen3f980402001-04-04 17:31:15 +0000610 refresh(FALSE);
611 }
612 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000613#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000614 last_input_char = c = get_one_char(); // get a cmd from user
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000615#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000616 // save a copy of the current line- for the 'U" command
617 if (begin_line(dot) != cur_line) {
618 cur_line = begin_line(dot);
619 text_yank(begin_line(dot), end_line(dot), Ureg);
620 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000621#endif
622#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +0000623 // These are commands that change text[].
624 // Remember the input for the "." command
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000625 if (!adding2q && ioq_start == NULL
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000626 && c != '\0' && strchr(modifying_cmds, c)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000627 ) {
Eric Andersen3f980402001-04-04 17:31:15 +0000628 start_new_cmd_q(c);
629 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000630#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000631 do_cmd(c); // execute the user command
632 //
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.
636 if (mysleep(0) == 0) {
637 // no input pending- so update output
638 refresh(FALSE);
639 show_status_line();
640 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000641#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000642 if (crashme > 0)
643 crash_test(); // test editor variables
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000644#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000645 }
646 //-------------------------------------------------------------------
647
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000648 place_cursor(rows - 1, 0, FALSE); // go to bottom of screen
649 clear_to_eol(); // erase to end of line
Eric Andersen3f980402001-04-04 17:31:15 +0000650 cookmode();
Denis Vlasenkob1759462008-06-20 20:20:54 +0000651#undef cur_line
Eric Andersen3f980402001-04-04 17:31:15 +0000652}
653
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000654//----- The Colon commands -------------------------------------
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000655#if ENABLE_FEATURE_VI_COLON
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000656static char *get_one_address(char *p, int *addr) // get colon addr, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000657{
658 int st;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000659 char *q;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000660 USE_FEATURE_VI_YANKMARK(char c;)
661 USE_FEATURE_VI_SEARCH(char *pat;)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000662
663 *addr = -1; // assume no addr
664 if (*p == '.') { // the current line
665 p++;
666 q = begin_line(dot);
667 *addr = count_lines(text, q);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000668 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000669#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000670 else if (*p == '\'') { // is this a mark addr
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000671 p++;
672 c = tolower(*p);
673 p++;
674 if (c >= 'a' && c <= 'z') {
675 // we have a mark
676 c = c - 'a';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000677 q = mark[(unsigned char) c];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000678 if (q != NULL) { // is mark valid
679 *addr = count_lines(text, q); // count lines
680 }
681 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000682 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000683#endif
684#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000685 else if (*p == '/') { // a search pattern
686 q = strchrnul(++p, '/');
687 pat = xstrndup(p, q - p); // save copy of pattern
688 p = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000689 if (*p == '/')
690 p++;
691 q = char_search(dot, pat, FORWARD, FULL);
692 if (q != NULL) {
693 *addr = count_lines(text, q);
694 }
695 free(pat);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000696 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000697#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000698 else if (*p == '$') { // the last line in file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000699 p++;
700 q = begin_line(end - 1);
701 *addr = count_lines(text, q);
702 } else if (isdigit(*p)) { // specific line number
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000703 sscanf(p, "%d%n", addr, &st);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000704 p += st;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000705 } else {
706 // unrecognised address - assume -1
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000707 *addr = -1;
708 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000709 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000710}
711
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000712static char *get_address(char *p, int *b, int *e) // get two colon addrs, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000713{
714 //----- get the address' i.e., 1,3 'a,'b -----
715 // get FIRST addr, if present
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000716 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000717 p++; // skip over leading spaces
718 if (*p == '%') { // alias for 1,$
719 p++;
720 *b = 1;
721 *e = count_lines(text, end-1);
722 goto ga0;
723 }
724 p = get_one_address(p, b);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000725 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000726 p++;
Eric Andersenaff114c2004-04-14 17:51:38 +0000727 if (*p == ',') { // is there a address separator
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000728 p++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000729 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000730 p++;
731 // get SECOND addr, if present
732 p = get_one_address(p, e);
733 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000734 ga0:
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000735 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000736 p++; // skip over trailing spaces
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000737 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000738}
739
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000740#if ENABLE_FEATURE_VI_SET && ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000741static void setops(const char *args, const char *opname, int flg_no,
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000742 const char *short_opname, int opt)
743{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000744 const char *a = args + flg_no;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000745 int l = strlen(opname) - 1; /* opname have + ' ' */
746
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000747 if (strncasecmp(a, opname, l) == 0
748 || strncasecmp(a, short_opname, 2) == 0
749 ) {
750 if (flg_no)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000751 vi_setops &= ~opt;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000752 else
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000753 vi_setops |= opt;
754 }
755}
756#endif
757
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000758// buf must be no longer than MAX_INPUT_LEN!
759static void colon(char *buf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000760{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000761 char c, *orig_buf, *buf1, *q, *r;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000762 char *fn, cmd[MAX_INPUT_LEN], args[MAX_INPUT_LEN];
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000763 int i, l, li, ch, b, e;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000764 int useforce, forced = FALSE;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000765
766 // :3154 // if (-e line 3154) goto it else stay put
767 // :4,33w! foo // write a portion of buffer to file "foo"
768 // :w // write all of buffer to current file
769 // :q // quit
770 // :q! // quit- dont care about modified file
771 // :'a,'z!sort -u // filter block through sort
772 // :'f // goto mark "f"
773 // :'fl // list literal the mark "f" line
774 // :.r bar // read file "bar" into buffer before dot
775 // :/123/,/abc/d // delete lines from "123" line to "abc" line
776 // :/xyz/ // goto the "xyz" line
777 // :s/find/replace/ // substitute pattern "find" with "replace"
778 // :!<cmd> // run <cmd> then return
779 //
Eric Andersen165e8cb2004-07-20 06:44:46 +0000780
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000781 if (!buf[0])
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000782 goto vc1;
783 if (*buf == ':')
784 buf++; // move past the ':'
785
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000786 li = ch = i = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000787 b = e = -1;
788 q = text; // assume 1,$ for the range
789 r = end - 1;
790 li = count_lines(text, end - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000791 fn = current_filename;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000792
793 // look for optional address(es) :. :1 :1,9 :'q,'a :%
794 buf = get_address(buf, &b, &e);
795
796 // remember orig command line
797 orig_buf = buf;
798
799 // get the COMMAND into cmd[]
800 buf1 = cmd;
801 while (*buf != '\0') {
802 if (isspace(*buf))
803 break;
804 *buf1++ = *buf++;
805 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000806 *buf1 = '\0';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000807 // get any ARGuments
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000808 while (isblank(*buf))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000809 buf++;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000810 strcpy(args, buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000811 useforce = FALSE;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000812 buf1 = last_char_is(cmd, '!');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000813 if (buf1) {
814 useforce = TRUE;
815 *buf1 = '\0'; // get rid of !
816 }
817 if (b >= 0) {
818 // if there is only one addr, then the addr
819 // is the line number of the single line the
820 // user wants. So, reset the end
821 // pointer to point at end of the "b" line
822 q = find_line(b); // what line is #b
823 r = end_line(q);
824 li = 1;
825 }
826 if (e >= 0) {
827 // we were given two addrs. change the
828 // end pointer to the addr given by user.
829 r = find_line(e); // what line is #e
830 r = end_line(r);
831 li = e - b + 1;
832 }
833 // ------------ now look for the command ------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000834 i = strlen(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000835 if (i == 0) { // :123CR goto line #123
836 if (b >= 0) {
837 dot = find_line(b); // what line is #b
838 dot_skip_over_ws();
839 }
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000840 }
841#if ENABLE_FEATURE_ALLOW_EXEC
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000842 else if (strncmp(cmd, "!", 1) == 0) { // run a cmd
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000843 int retcode;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000844 // :!ls run the <cmd>
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000845 place_cursor(rows - 1, 0, FALSE); // go to Status line
846 clear_to_eol(); // clear the line
847 cookmode();
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000848 retcode = system(orig_buf + 1); // run the cmd
849 if (retcode)
850 printf("\nshell returned %i\n\n", retcode);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000851 rawmode();
852 Hit_Return(); // let user see results
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000853 }
854#endif
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000855 else if (strncmp(cmd, "=", i) == 0) { // where is the address
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000856 if (b < 0) { // no addr given- use defaults
857 b = e = count_lines(text, dot);
858 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000859 status_line("%d", b);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000860 } else if (strncasecmp(cmd, "delete", i) == 0) { // delete lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000861 if (b < 0) { // no addr given- use defaults
862 q = begin_line(dot); // assume .,. for the range
863 r = end_line(dot);
864 }
865 dot = yank_delete(q, r, 1, YANKDEL); // save, then delete lines
866 dot_skip_over_ws();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000867 } else if (strncasecmp(cmd, "edit", i) == 0) { // Edit a file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000868 // don't edit, if the current file has been modified
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000869 if (file_modified && !useforce) {
870 status_line_bold("No write since last change (:edit! overrides)");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000871 goto vc1;
872 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000873 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000874 // the user supplied a file name
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000875 fn = args;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000876 } else if (current_filename && current_filename[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000877 // no user supplied name- use the current filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000878 // fn = current_filename; was set by default
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000879 } else {
880 // no user file name, no current name- punt
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000881 status_line_bold("No current filename");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000882 goto vc1;
883 }
884
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000885 if (init_text_buffer(fn) < 0)
886 goto vc1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000887
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000888#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000889 if (Ureg >= 0 && Ureg < 28 && reg[Ureg] != 0) {
890 free(reg[Ureg]); // free orig line reg- for 'U'
891 reg[Ureg]= 0;
892 }
893 if (YDreg >= 0 && YDreg < 28 && reg[YDreg] != 0) {
894 free(reg[YDreg]); // free default yank/delete register
895 reg[YDreg]= 0;
896 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000897#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000898 // how many lines in text[]?
899 li = count_lines(text, end - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000900 status_line("\"%s\"%s"
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000901 USE_FEATURE_VI_READONLY("%s")
902 " %dL, %dC", current_filename,
903 (file_size(fn) < 0 ? " [New file]" : ""),
904 USE_FEATURE_VI_READONLY(
905 ((readonly_mode) ? " [Readonly]" : ""),
906 )
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000907 li, ch);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000908 } else if (strncasecmp(cmd, "file", i) == 0) { // what File is this
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000909 if (b != -1 || e != -1) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000910 not_implemented("No address allowed on this command");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000911 goto vc1;
912 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000913 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000914 // user wants a new filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000915 free(current_filename);
916 current_filename = xstrdup(args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000917 } else {
918 // user wants file status info
Paul Fox8552aec2005-09-16 12:20:05 +0000919 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000920 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000921 } else if (strncasecmp(cmd, "features", i) == 0) { // what features are available
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000922 // print out values of all features
923 place_cursor(rows - 1, 0, FALSE); // go to Status line, bottom of screen
924 clear_to_eol(); // clear the line
925 cookmode();
926 show_help();
927 rawmode();
928 Hit_Return();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000929 } else if (strncasecmp(cmd, "list", i) == 0) { // literal print line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000930 if (b < 0) { // no addr given- use defaults
931 q = begin_line(dot); // assume .,. for the range
932 r = end_line(dot);
933 }
934 place_cursor(rows - 1, 0, FALSE); // go to Status line, bottom of screen
935 clear_to_eol(); // clear the line
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000936 puts("\r");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000937 for (; q <= r; q++) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000938 int c_is_no_print;
939
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000940 c = *q;
Denis Vlasenko2a51af22007-03-21 22:31:24 +0000941 c_is_no_print = (c & 0x80) && !Isprint(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000942 if (c_is_no_print) {
943 c = '.';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000944 standout_start();
Denis Vlasenkod3c042f2007-12-30 01:59:53 +0000945 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000946 if (c == '\n') {
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000947 write1("$\r");
948 } else if (c < ' ' || c == 127) {
Denis Vlasenko4daad902007-09-27 10:20:47 +0000949 bb_putchar('^');
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000950 if (c == 127)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000951 c = '?';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000952 else
953 c += '@';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000954 }
Denis Vlasenko4daad902007-09-27 10:20:47 +0000955 bb_putchar(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000956 if (c_is_no_print)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000957 standout_end();
958 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000959#if ENABLE_FEATURE_VI_SET
960 vc2:
961#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000962 Hit_Return();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000963 } else if (strncasecmp(cmd, "quit", i) == 0 // Quit
964 || strncasecmp(cmd, "next", i) == 0 // edit next file
965 ) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000966 if (useforce) {
967 // force end of argv list
968 if (*cmd == 'q') {
969 optind = save_argc;
970 }
971 editing = 0;
972 goto vc1;
973 }
974 // don't exit if the file been modified
975 if (file_modified) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000976 status_line_bold("No write since last change (:%s! overrides)",
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000977 (*cmd == 'q' ? "quit" : "next"));
978 goto vc1;
979 }
980 // are there other file to edit
981 if (*cmd == 'q' && optind < save_argc - 1) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000982 status_line_bold("%d more file to edit", (save_argc - optind - 1));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000983 goto vc1;
984 }
985 if (*cmd == 'n' && optind >= save_argc - 1) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000986 status_line_bold("No more files to edit");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000987 goto vc1;
988 }
989 editing = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000990 } else if (strncasecmp(cmd, "read", i) == 0) { // read file into text[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000991 fn = args;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000992 if (!fn[0]) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000993 status_line_bold("No filename given");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000994 goto vc1;
995 }
996 if (b < 0) { // no addr given- use defaults
997 q = begin_line(dot); // assume "dot"
998 }
999 // read after current line- unless user said ":0r foo"
1000 if (b != 0)
1001 q = next_line(q);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001002 ch = file_insert(fn, q USE_FEATURE_VI_READONLY(, 0));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001003 if (ch < 0)
1004 goto vc1; // nothing was inserted
1005 // how many lines in text[]?
1006 li = count_lines(q, q + ch - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001007 status_line("\"%s\""
Denis Vlasenko59a1f302007-07-14 22:43:10 +00001008 USE_FEATURE_VI_READONLY("%s")
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001009 " %dL, %dC", fn,
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001010 USE_FEATURE_VI_READONLY((readonly_mode ? " [Readonly]" : ""),)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001011 li, ch);
1012 if (ch > 0) {
1013 // if the insert is before "dot" then we need to update
1014 if (q <= dot)
1015 dot += ch;
Paul Fox8552aec2005-09-16 12:20:05 +00001016 file_modified++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001017 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001018 } else if (strncasecmp(cmd, "rewind", i) == 0) { // rewind cmd line args
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001019 if (file_modified && !useforce) {
1020 status_line_bold("No write since last change (:rewind! overrides)");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001021 } else {
1022 // reset the filenames to edit
1023 optind = fn_start - 1;
1024 editing = 0;
1025 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001026#if ENABLE_FEATURE_VI_SET
Denis Vlasenkof9234132007-03-21 00:03:42 +00001027 } else if (strncasecmp(cmd, "set", i) == 0) { // set or clear features
Denis Vlasenko58875ae2007-03-22 22:22:10 +00001028#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkof9234132007-03-21 00:03:42 +00001029 char *argp;
Denis Vlasenko58875ae2007-03-22 22:22:10 +00001030#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001031 i = 0; // offset into args
Denis Vlasenkof9234132007-03-21 00:03:42 +00001032 // only blank is regarded as args delmiter. What about tab '\t' ?
1033 if (!args[0] || strcasecmp(args, "all") == 0) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001034 // print out values of all options
1035 place_cursor(rows - 1, 0, FALSE); // go to Status line, bottom of screen
1036 clear_to_eol(); // clear the line
1037 printf("----------------------------------------\r\n");
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001038#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001039 if (!autoindent)
1040 printf("no");
1041 printf("autoindent ");
1042 if (!err_method)
1043 printf("no");
1044 printf("flash ");
1045 if (!ignorecase)
1046 printf("no");
1047 printf("ignorecase ");
1048 if (!showmatch)
1049 printf("no");
1050 printf("showmatch ");
1051 printf("tabstop=%d ", tabstop);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001052#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001053 printf("\r\n");
1054 goto vc2;
1055 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001056#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001057 argp = args;
Denis Vlasenkoba2fb712007-04-01 09:39:03 +00001058 while (*argp) {
Denis Vlasenkof9234132007-03-21 00:03:42 +00001059 if (strncasecmp(argp, "no", 2) == 0)
1060 i = 2; // ":set noautoindent"
1061 setops(argp, "autoindent ", i, "ai", VI_AUTOINDENT);
1062 setops(argp, "flash ", i, "fl", VI_ERR_METHOD);
1063 setops(argp, "ignorecase ", i, "ic", VI_IGNORECASE);
1064 setops(argp, "showmatch ", i, "ic", VI_SHOWMATCH);
1065 /* tabstopXXXX */
1066 if (strncasecmp(argp + i, "tabstop=%d ", 7) == 0) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001067 sscanf(strchr(argp + i, '='), "tabstop=%d" + 7, &ch);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00001068 if (ch > 0 && ch <= MAX_TABSTOP)
Denis Vlasenkof9234132007-03-21 00:03:42 +00001069 tabstop = ch;
1070 }
1071 while (*argp && *argp != ' ')
1072 argp++; // skip to arg delimiter (i.e. blank)
1073 while (*argp && *argp == ' ')
1074 argp++; // skip all delimiting blanks
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001075 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001076#endif /* FEATURE_VI_SETOPTS */
1077#endif /* FEATURE_VI_SET */
1078#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001079 } else if (strncasecmp(cmd, "s", 1) == 0) { // substitute a pattern with a replacement pattern
1080 char *ls, *F, *R;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001081 int gflag;
1082
1083 // F points to the "find" pattern
1084 // R points to the "replace" pattern
1085 // replace the cmd line delimiters "/" with NULLs
1086 gflag = 0; // global replace flag
1087 c = orig_buf[1]; // what is the delimiter
1088 F = orig_buf + 2; // start of "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001089 R = strchr(F, c); // middle delimiter
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001090 if (!R) goto colon_s_fail;
1091 *R++ = '\0'; // terminate "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001092 buf1 = strchr(R, c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001093 if (!buf1) goto colon_s_fail;
1094 *buf1++ = '\0'; // terminate "replace"
1095 if (*buf1 == 'g') { // :s/foo/bar/g
1096 buf1++;
1097 gflag++; // turn on gflag
1098 }
1099 q = begin_line(q);
1100 if (b < 0) { // maybe :s/foo/bar/
1101 q = begin_line(dot); // start with cur line
1102 b = count_lines(text, q); // cur line number
1103 }
1104 if (e < 0)
1105 e = b; // maybe :.s/foo/bar/
1106 for (i = b; i <= e; i++) { // so, :20,23 s \0 find \0 replace \0
1107 ls = q; // orig line start
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001108 vc4:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001109 buf1 = char_search(q, F, FORWARD, LIMITED); // search cur line only for "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001110 if (buf1) {
1111 // we found the "find" pattern - delete it
1112 text_hole_delete(buf1, buf1 + strlen(F) - 1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001113 // inset the "replace" patern
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001114 string_insert(buf1, R); // insert the string
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001115 // check for "global" :s/foo/bar/g
1116 if (gflag == 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001117 if ((buf1 + strlen(R)) < end_line(ls)) {
1118 q = buf1 + strlen(R);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001119 goto vc4; // don't let q move past cur line
1120 }
1121 }
1122 }
1123 q = next_line(ls);
1124 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001125#endif /* FEATURE_VI_SEARCH */
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001126 } else if (strncasecmp(cmd, "version", i) == 0) { // show software version
Denis Vlasenko33875382008-06-21 20:31:50 +00001127 status_line(BB_VER " " BB_BT);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001128 } else if (strncasecmp(cmd, "write", i) == 0 // write text to file
1129 || strncasecmp(cmd, "wq", i) == 0
1130 || strncasecmp(cmd, "wn", i) == 0
1131 || strncasecmp(cmd, "x", i) == 0
1132 ) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001133 // is there a file name to write to?
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001134 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001135 fn = args;
1136 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001137#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001138 if (readonly_mode && !useforce) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001139 status_line_bold("\"%s\" File is read only", fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001140 goto vc3;
1141 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001142#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001143 // how many lines in text[]?
1144 li = count_lines(q, r);
1145 ch = r - q + 1;
1146 // see if file exists- if not, its just a new file request
1147 if (useforce) {
1148 // if "fn" is not write-able, chmod u+w
1149 // sprintf(syscmd, "chmod u+w %s", fn);
1150 // system(syscmd);
1151 forced = TRUE;
1152 }
1153 l = file_write(fn, q, r);
1154 if (useforce && forced) {
1155 // chmod u-w
1156 // sprintf(syscmd, "chmod u-w %s", fn);
1157 // system(syscmd);
1158 forced = FALSE;
1159 }
Paul Fox61e45db2005-10-09 14:43:22 +00001160 if (l < 0) {
1161 if (l == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001162 status_line_bold("\"%s\" %s", fn, strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00001163 } else {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001164 status_line("\"%s\" %dL, %dC", fn, li, l);
Paul Fox61e45db2005-10-09 14:43:22 +00001165 if (q == text && r == end - 1 && l == ch) {
1166 file_modified = 0;
1167 last_file_modified = -1;
1168 }
Paul Fox9360f422006-03-27 21:51:16 +00001169 if ((cmd[0] == 'x' || cmd[1] == 'q' || cmd[1] == 'n' ||
1170 cmd[0] == 'X' || cmd[1] == 'Q' || cmd[1] == 'N')
1171 && l == ch) {
Paul Fox61e45db2005-10-09 14:43:22 +00001172 editing = 0;
1173 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001174 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001175#if ENABLE_FEATURE_VI_READONLY
1176 vc3:;
1177#endif
1178#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001179 } else if (strncasecmp(cmd, "yank", i) == 0) { // yank lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001180 if (b < 0) { // no addr given- use defaults
1181 q = begin_line(dot); // assume .,. for the range
1182 r = end_line(dot);
1183 }
1184 text_yank(q, r, YDreg);
1185 li = count_lines(q, r);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001186 status_line("Yank %d lines (%d chars) into [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001187 li, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001188#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001189 } else {
1190 // cmd unknown
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001191 not_implemented(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001192 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001193 vc1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001194 dot = bound_dot(dot); // make sure "dot" is valid
1195 return;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001196#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001197 colon_s_fail:
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001198 status_line(":s expression missing delimiters");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001199#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001200}
Paul Fox61e45db2005-10-09 14:43:22 +00001201
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001202#endif /* FEATURE_VI_COLON */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001203
1204static void Hit_Return(void)
1205{
1206 char c;
1207
Denis Vlasenkof882f082007-12-23 02:36:51 +00001208 standout_start();
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001209 write1("[Hit return to continue]");
Denis Vlasenkof882f082007-12-23 02:36:51 +00001210 standout_end();
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001211 while ((c = get_one_char()) != '\n' && c != '\r')
1212 continue;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001213 redraw(TRUE); // force redraw all
1214}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001215
Denis Vlasenko91afdf82007-07-17 23:22:49 +00001216static int next_tabstop(int col)
1217{
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001218 return col + ((tabstop - 1) - (col % tabstop));
1219}
1220
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001221//----- Synchronize the cursor to Dot --------------------------
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001222static void sync_cursor(char *d, int *row, int *col)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001223{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001224 char *beg_cur; // begin and end of "d" line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001225 char *tp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001226 int cnt, ro, co;
1227
1228 beg_cur = begin_line(d); // first char of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001229
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001230 if (beg_cur < screenbegin) {
Denis Vlasenkof882f082007-12-23 02:36:51 +00001231 // "d" is before top line on screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001232 // how many lines do we have to move
1233 cnt = count_lines(beg_cur, screenbegin);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001234 sc1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001235 screenbegin = beg_cur;
1236 if (cnt > (rows - 1) / 2) {
1237 // we moved too many lines. put "dot" in middle of screen
1238 for (cnt = 0; cnt < (rows - 1) / 2; cnt++) {
1239 screenbegin = prev_line(screenbegin);
1240 }
1241 }
Denis Vlasenkof882f082007-12-23 02:36:51 +00001242 } else {
1243 char *end_scr; // begin and end of screen
1244 end_scr = end_screen(); // last char of screen
1245 if (beg_cur > end_scr) {
1246 // "d" is after bottom line on screen
1247 // how many lines do we have to move
1248 cnt = count_lines(end_scr, beg_cur);
1249 if (cnt > (rows - 1) / 2)
1250 goto sc1; // too many lines
1251 for (ro = 0; ro < cnt - 1; ro++) {
1252 // move screen begin the same amount
1253 screenbegin = next_line(screenbegin);
1254 // now, move the end of screen
1255 end_scr = next_line(end_scr);
1256 end_scr = end_line(end_scr);
1257 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001258 }
1259 }
1260 // "d" is on screen- find out which row
1261 tp = screenbegin;
1262 for (ro = 0; ro < rows - 1; ro++) { // drive "ro" to correct row
1263 if (tp == beg_cur)
1264 break;
1265 tp = next_line(tp);
1266 }
1267
1268 // find out what col "d" is on
1269 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001270 while (tp < d) { // drive "co" to correct column
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001271 if (*tp == '\n') //vda || *tp == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001272 break;
1273 if (*tp == '\t') {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001274 // handle tabs like real vi
1275 if (d == tp && cmd_mode) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001276 break;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001277 }
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001278 co = next_tabstop(co);
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001279 } else if ((unsigned char)*tp < ' ' || *tp == 0x7f) {
1280 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001281 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001282 co++;
1283 tp++;
1284 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001285
1286 // "co" is the column where "dot" is.
1287 // The screen has "columns" columns.
1288 // The currently displayed columns are 0+offset -- columns+ofset
1289 // |-------------------------------------------------------------|
1290 // ^ ^ ^
1291 // offset | |------- columns ----------------|
1292 //
1293 // If "co" is already in this range then we do not have to adjust offset
1294 // but, we do have to subtract the "offset" bias from "co".
1295 // If "co" is outside this range then we have to change "offset".
1296 // If the first char of a line is a tab the cursor will try to stay
1297 // in column 7, but we have to set offset to 0.
1298
1299 if (co < 0 + offset) {
1300 offset = co;
1301 }
1302 if (co >= columns + offset) {
1303 offset = co - columns + 1;
1304 }
1305 // if the first char of the line is a tab, and "dot" is sitting on it
1306 // force offset to 0.
1307 if (d == beg_cur && *d == '\t') {
1308 offset = 0;
1309 }
1310 co -= offset;
1311
1312 *row = ro;
1313 *col = co;
1314}
1315
1316//----- Text Movement Routines ---------------------------------
Denis Vlasenkof882f082007-12-23 02:36:51 +00001317static char *begin_line(char *p) // return pointer to first char cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001318{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001319 if (p > text) {
1320 p = memrchr(text, '\n', p - text);
1321 if (!p)
1322 return text;
1323 return p + 1;
1324 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001325 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001326}
1327
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001328static char *end_line(char *p) // return pointer to NL of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001329{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001330 if (p < end - 1) {
1331 p = memchr(p, '\n', end - p - 1);
1332 if (!p)
1333 return end - 1;
1334 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001335 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001336}
1337
Denis Vlasenkof882f082007-12-23 02:36:51 +00001338static char *dollar_line(char *p) // return pointer to just before NL line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001339{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001340 p = end_line(p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001341 // Try to stay off of the Newline
1342 if (*p == '\n' && (p - begin_line(p)) > 0)
1343 p--;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001344 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001345}
1346
Denis Vlasenkof882f082007-12-23 02:36:51 +00001347static char *prev_line(char *p) // return pointer first char prev line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001348{
1349 p = begin_line(p); // goto begining of cur line
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001350 if (p > text && p[-1] == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001351 p--; // step to prev line
1352 p = begin_line(p); // goto begining of prev line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001353 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001354}
1355
Denis Vlasenkof882f082007-12-23 02:36:51 +00001356static char *next_line(char *p) // return pointer first char next line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001357{
1358 p = end_line(p);
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001359 if (p < end - 1 && *p == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001360 p++; // step to next line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001361 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001362}
1363
1364//----- Text Information Routines ------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001365static char *end_screen(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001366{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001367 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001368 int cnt;
1369
1370 // find new bottom line
1371 q = screenbegin;
1372 for (cnt = 0; cnt < rows - 2; cnt++)
1373 q = next_line(q);
1374 q = end_line(q);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001375 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001376}
1377
Denis Vlasenkof882f082007-12-23 02:36:51 +00001378// count line from start to stop
1379static int count_lines(char *start, char *stop)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001380{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001381 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001382 int cnt;
1383
Denis Vlasenkof882f082007-12-23 02:36:51 +00001384 if (stop < start) { // start and stop are backwards- reverse them
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001385 q = start;
1386 start = stop;
1387 stop = q;
1388 }
1389 cnt = 0;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001390 stop = end_line(stop);
1391 while (start <= stop && start <= end - 1) {
1392 start = end_line(start);
1393 if (*start == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001394 cnt++;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001395 start++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001396 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001397 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001398}
1399
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001400static char *find_line(int li) // find begining of line #li
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001401{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001402 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001403
1404 for (q = text; li > 1; li--) {
1405 q = next_line(q);
1406 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001407 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001408}
1409
1410//----- Dot Movement Routines ----------------------------------
1411static void dot_left(void)
1412{
1413 if (dot > text && dot[-1] != '\n')
1414 dot--;
1415}
1416
1417static void dot_right(void)
1418{
1419 if (dot < end - 1 && *dot != '\n')
1420 dot++;
1421}
1422
1423static void dot_begin(void)
1424{
1425 dot = begin_line(dot); // return pointer to first char cur line
1426}
1427
1428static void dot_end(void)
1429{
1430 dot = end_line(dot); // return pointer to last char cur line
1431}
1432
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001433static char *move_to_col(char *p, int l)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001434{
1435 int co;
1436
1437 p = begin_line(p);
1438 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001439 while (co < l && p < end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001440 if (*p == '\n') //vda || *p == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001441 break;
1442 if (*p == '\t') {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001443 co = next_tabstop(co);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001444 } else if (*p < ' ' || *p == 127) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001445 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001446 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001447 co++;
1448 p++;
1449 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001450 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001451}
1452
1453static void dot_next(void)
1454{
1455 dot = next_line(dot);
1456}
1457
1458static void dot_prev(void)
1459{
1460 dot = prev_line(dot);
1461}
1462
1463static void dot_scroll(int cnt, int dir)
1464{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001465 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001466
1467 for (; cnt > 0; cnt--) {
1468 if (dir < 0) {
1469 // scroll Backwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001470 // ctrl-Y scroll up one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001471 screenbegin = prev_line(screenbegin);
1472 } else {
1473 // scroll Forwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001474 // ctrl-E scroll down one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001475 screenbegin = next_line(screenbegin);
1476 }
1477 }
1478 // make sure "dot" stays on the screen so we dont scroll off
1479 if (dot < screenbegin)
1480 dot = screenbegin;
1481 q = end_screen(); // find new bottom line
1482 if (dot > q)
1483 dot = begin_line(q); // is dot is below bottom line?
1484 dot_skip_over_ws();
1485}
1486
1487static void dot_skip_over_ws(void)
1488{
1489 // skip WS
1490 while (isspace(*dot) && *dot != '\n' && dot < end - 1)
1491 dot++;
1492}
1493
1494static void dot_delete(void) // delete the char at 'dot'
1495{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001496 text_hole_delete(dot, dot);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001497}
1498
Denis Vlasenkof882f082007-12-23 02:36:51 +00001499static char *bound_dot(char *p) // make sure text[0] <= P < "end"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001500{
1501 if (p >= end && end > text) {
1502 p = end - 1;
1503 indicate_error('1');
1504 }
1505 if (p < text) {
1506 p = text;
1507 indicate_error('2');
1508 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001509 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001510}
1511
1512//----- Helper Utility Routines --------------------------------
1513
1514//----------------------------------------------------------------
1515//----- Char Routines --------------------------------------------
1516/* Chars that are part of a word-
1517 * 0123456789_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
1518 * Chars that are Not part of a word (stoppers)
1519 * !"#$%&'()*+,-./:;<=>?@[\]^`{|}~
1520 * Chars that are WhiteSpace
1521 * TAB NEWLINE VT FF RETURN SPACE
1522 * DO NOT COUNT NEWLINE AS WHITESPACE
1523 */
1524
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001525static char *new_screen(int ro, int co)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001526{
1527 int li;
1528
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001529 free(screen);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001530 screensize = ro * co + 8;
Denis Vlasenkob95636c2006-12-19 23:36:04 +00001531 screen = xmalloc(screensize);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001532 // initialize the new screen. assume this will be a empty file.
1533 screen_erase();
Eric Andersenaff114c2004-04-14 17:51:38 +00001534 // non-existent text[] lines start with a tilde (~).
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001535 for (li = 1; li < ro - 1; li++) {
1536 screen[(li * co) + 0] = '~';
1537 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001538 return screen;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001539}
1540
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001541#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenko33875382008-06-21 20:31:50 +00001542static int mycmp(const char *s1, const char *s2, int len)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001543{
1544 int i;
1545
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001546 i = strncmp(s1, s2, len);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001547 if (ENABLE_FEATURE_VI_SETOPTS && ignorecase) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001548 i = strncasecmp(s1, s2, len);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001549 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001550 return i;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001551}
1552
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001553// search for pattern starting at p
Denis Vlasenko33875382008-06-21 20:31:50 +00001554static char *char_search(char *p, const char *pat, int dir, int range)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001555{
1556#ifndef REGEX_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001557 char *start, *stop;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001558 int len;
1559
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001560 len = strlen(pat);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001561 if (dir == FORWARD) {
1562 stop = end - 1; // assume range is p - end-1
1563 if (range == LIMITED)
1564 stop = next_line(p); // range is to next line
1565 for (start = p; start < stop; start++) {
1566 if (mycmp(start, pat, len) == 0) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001567 return start;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001568 }
1569 }
1570 } else if (dir == BACK) {
1571 stop = text; // assume range is text - p
1572 if (range == LIMITED)
1573 stop = prev_line(p); // range is to prev line
1574 for (start = p - len; start >= stop; start--) {
1575 if (mycmp(start, pat, len) == 0) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001576 return start;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001577 }
1578 }
1579 }
1580 // pattern not found
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001581 return NULL;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001582#else /* REGEX_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001583 char *q;
1584 struct re_pattern_buffer preg;
1585 int i;
1586 int size, range;
1587
1588 re_syntax_options = RE_SYNTAX_POSIX_EXTENDED;
1589 preg.translate = 0;
1590 preg.fastmap = 0;
1591 preg.buffer = 0;
1592 preg.allocated = 0;
1593
1594 // assume a LIMITED forward search
1595 q = next_line(p);
1596 q = end_line(q);
1597 q = end - 1;
1598 if (dir == BACK) {
1599 q = prev_line(p);
1600 q = text;
1601 }
1602 // count the number of chars to search over, forward or backward
1603 size = q - p;
1604 if (size < 0)
1605 size = p - q;
1606 // RANGE could be negative if we are searching backwards
1607 range = q - p;
1608
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001609 q = re_compile_pattern(pat, strlen(pat), &preg);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001610 if (q != 0) {
1611 // The pattern was not compiled
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001612 status_line_bold("bad search pattern: \"%s\": %s", pat, q);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001613 i = 0; // return p if pattern not compiled
1614 goto cs1;
1615 }
1616
1617 q = p;
1618 if (range < 0) {
1619 q = p - size;
1620 if (q < text)
1621 q = text;
1622 }
1623 // search for the compiled pattern, preg, in p[]
1624 // range < 0- search backward
1625 // range > 0- search forward
1626 // 0 < start < size
1627 // re_search() < 0 not found or error
1628 // re_search() > 0 index of found pattern
1629 // struct pattern char int int int struct reg
1630 // re_search (*pattern_buffer, *string, size, start, range, *regs)
1631 i = re_search(&preg, q, size, 0, range, 0);
1632 if (i == -1) {
1633 p = 0;
1634 i = 0; // return NULL if pattern not found
1635 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001636 cs1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001637 if (dir == FORWARD) {
1638 p = p + i;
1639 } else {
1640 p = p - i;
1641 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001642 return p;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001643#endif /* REGEX_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001644}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001645#endif /* FEATURE_VI_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001646
Denis Vlasenko33875382008-06-21 20:31:50 +00001647static char *char_insert(char *p, char c) // insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001648{
1649 if (c == 22) { // Is this an ctrl-V?
1650 p = stupid_insert(p, '^'); // use ^ to indicate literal next
1651 p--; // backup onto ^
1652 refresh(FALSE); // show the ^
1653 c = get_one_char();
1654 *p = c;
1655 p++;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001656 file_modified++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001657 } else if (c == 27) { // Is this an ESC?
1658 cmd_mode = 0;
1659 cmdcnt = 0;
1660 end_cmd_q(); // stop adding to q
Paul Fox8552aec2005-09-16 12:20:05 +00001661 last_status_cksum = 0; // force status update
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001662 if ((p[-1] != '\n') && (dot > text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001663 p--;
1664 }
Paul Foxd13b90b2005-07-18 22:17:25 +00001665 } else if (c == erase_char || c == 8 || c == 127) { // Is this a BS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001666 // 123456789
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001667 if ((p[-1] != '\n') && (dot>text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001668 p--;
1669 p = text_hole_delete(p, p); // shrink buffer 1 char
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001670 }
1671 } else {
1672 // insert a char into text[]
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001673 char *sp; // "save p"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001674
1675 if (c == 13)
1676 c = '\n'; // translate \r to \n
1677 sp = p; // remember addr of insert
1678 p = stupid_insert(p, c); // insert the char
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001679#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001680 if (showmatch && strchr(")]}", *sp) != NULL) {
1681 showmatching(sp);
1682 }
1683 if (autoindent && c == '\n') { // auto indent the new line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001684 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001685
1686 q = prev_line(p); // use prev line as templet
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001687 for (; isblank(*q); q++) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001688 p = stupid_insert(p, *q); // insert the char
1689 }
1690 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001691#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001692 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001693 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001694}
1695
Denis Vlasenko33875382008-06-21 20:31:50 +00001696static char *stupid_insert(char *p, char c) // stupidly insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001697{
1698 p = text_hole_make(p, 1);
Denis Vlasenkob1759462008-06-20 20:20:54 +00001699 *p = c;
1700 //file_modified++; - done by text_hole_make()
1701 return p + 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001702}
1703
Denis Vlasenko33875382008-06-21 20:31:50 +00001704static int find_range(char **start, char **stop, char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001705{
Paul Foxc51fc7b2008-03-06 01:34:23 +00001706 char *save_dot, *p, *q, *t;
1707 int cnt, multiline = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001708
1709 save_dot = dot;
1710 p = q = dot;
1711
1712 if (strchr("cdy><", c)) {
1713 // these cmds operate on whole lines
1714 p = q = begin_line(p);
1715 for (cnt = 1; cnt < cmdcnt; cnt++) {
1716 q = next_line(q);
1717 }
1718 q = end_line(q);
Paul Foxc51fc7b2008-03-06 01:34:23 +00001719 } else if (strchr("^%$0bBeEfth\b\177", c)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001720 // These cmds operate on char positions
1721 do_cmd(c); // execute movement cmd
1722 q = dot;
1723 } else if (strchr("wW", c)) {
1724 do_cmd(c); // execute movement cmd
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001725 // if we are at the next word's first char
1726 // step back one char
1727 // but check the possibilities when it is true
Eric Andersen5cc90ea2004-02-06 10:36:08 +00001728 if (dot > text && ((isspace(dot[-1]) && !isspace(dot[0]))
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001729 || (ispunct(dot[-1]) && !ispunct(dot[0]))
1730 || (isalnum(dot[-1]) && !isalnum(dot[0]))))
1731 dot--; // move back off of next word
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001732 if (dot > text && *dot == '\n')
1733 dot--; // stay off NL
1734 q = dot;
1735 } else if (strchr("H-k{", c)) {
1736 // these operate on multi-lines backwards
1737 q = end_line(dot); // find NL
1738 do_cmd(c); // execute movement cmd
1739 dot_begin();
1740 p = dot;
1741 } else if (strchr("L+j}\r\n", c)) {
1742 // these operate on multi-lines forwards
1743 p = begin_line(dot);
1744 do_cmd(c); // execute movement cmd
1745 dot_end(); // find NL
1746 q = dot;
1747 } else {
Paul Foxc51fc7b2008-03-06 01:34:23 +00001748 // nothing -- this causes any other values of c to
1749 // represent the one-character range under the
1750 // cursor. this is correct for ' ' and 'l', but
1751 // perhaps no others.
1752 //
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001753 }
Paul Foxc51fc7b2008-03-06 01:34:23 +00001754 if (q < p) {
1755 t = q;
1756 q = p;
1757 p = t;
1758 }
1759
Denis Vlasenko42cc3042008-03-24 02:05:58 +00001760 // backward char movements don't include start position
Paul Foxc51fc7b2008-03-06 01:34:23 +00001761 if (q > p && strchr("^0bBh\b\177", c)) q--;
1762
1763 multiline = 0;
1764 for (t = p; t <= q; t++) {
1765 if (*t == '\n') {
1766 multiline = 1;
1767 break;
1768 }
1769 }
1770
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001771 *start = p;
1772 *stop = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001773 dot = save_dot;
Paul Foxc51fc7b2008-03-06 01:34:23 +00001774 return multiline;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001775}
1776
Denis Vlasenko33875382008-06-21 20:31:50 +00001777static int st_test(char *p, int type, int dir, char *tested)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001778{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001779 char c, c0, ci;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001780 int test, inc;
1781
1782 inc = dir;
1783 c = c0 = p[0];
1784 ci = p[inc];
1785 test = 0;
1786
1787 if (type == S_BEFORE_WS) {
1788 c = ci;
1789 test = ((!isspace(c)) || c == '\n');
1790 }
1791 if (type == S_TO_WS) {
1792 c = c0;
1793 test = ((!isspace(c)) || c == '\n');
1794 }
1795 if (type == S_OVER_WS) {
1796 c = c0;
1797 test = ((isspace(c)));
1798 }
1799 if (type == S_END_PUNCT) {
1800 c = ci;
1801 test = ((ispunct(c)));
1802 }
1803 if (type == S_END_ALNUM) {
1804 c = ci;
1805 test = ((isalnum(c)) || c == '_');
1806 }
1807 *tested = c;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001808 return test;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001809}
1810
Denis Vlasenko33875382008-06-21 20:31:50 +00001811static char *skip_thing(char *p, int linecnt, int dir, int type)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001812{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001813 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001814
1815 while (st_test(p, type, dir, &c)) {
1816 // make sure we limit search to correct number of lines
1817 if (c == '\n' && --linecnt < 1)
1818 break;
1819 if (dir >= 0 && p >= end - 1)
1820 break;
1821 if (dir < 0 && p <= text)
1822 break;
1823 p += dir; // move to next char
1824 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001825 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001826}
1827
1828// find matching char of pair () [] {}
Denis Vlasenko33875382008-06-21 20:31:50 +00001829static char *find_pair(char *p, const char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001830{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001831 char match, *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001832 int dir, level;
1833
1834 match = ')';
1835 level = 1;
1836 dir = 1; // assume forward
1837 switch (c) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00001838 case '(': match = ')'; break;
1839 case '[': match = ']'; break;
1840 case '{': match = '}'; break;
1841 case ')': match = '('; dir = -1; break;
1842 case ']': match = '['; dir = -1; break;
1843 case '}': match = '{'; dir = -1; break;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001844 }
1845 for (q = p + dir; text <= q && q < end; q += dir) {
1846 // look for match, count levels of pairs (( ))
1847 if (*q == c)
1848 level++; // increase pair levels
1849 if (*q == match)
1850 level--; // reduce pair level
1851 if (level == 0)
1852 break; // found matching pair
1853 }
1854 if (level != 0)
1855 q = NULL; // indicate no match
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001856 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001857}
1858
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001859#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001860// show the matching char of a pair, () [] {}
Denis Vlasenkof882f082007-12-23 02:36:51 +00001861static void showmatching(char *p)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001862{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001863 char *q, *save_dot;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001864
1865 // we found half of a pair
1866 q = find_pair(p, *p); // get loc of matching char
1867 if (q == NULL) {
1868 indicate_error('3'); // no matching char
1869 } else {
1870 // "q" now points to matching pair
1871 save_dot = dot; // remember where we are
1872 dot = q; // go to new loc
1873 refresh(FALSE); // let the user see it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001874 mysleep(40); // give user some time
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001875 dot = save_dot; // go back to old loc
1876 refresh(FALSE);
1877 }
1878}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001879#endif /* FEATURE_VI_SETOPTS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001880
1881// open a hole in text[]
Denis Vlasenko33875382008-06-21 20:31:50 +00001882static char *text_hole_make(char *p, int size) // at "p", make a 'size' byte hole
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001883{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001884 if (size <= 0)
Denis Vlasenkob1759462008-06-20 20:20:54 +00001885 return p;
1886 end += size; // adjust the new END
1887 if (end >= (text + text_size)) {
1888 char *new_text;
1889 text_size += end - (text + text_size) + 10240;
1890 new_text = xrealloc(text, text_size);
1891 screenbegin = new_text + (screenbegin - text);
1892 dot = new_text + (dot - text);
1893 end = new_text + (end - text);
1894 p = new_text + (p - text);
1895 text = new_text;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001896 }
Denis Vlasenkod6995442008-06-27 04:06:13 +00001897 memmove(p + size, p, end - size - p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001898 memset(p, ' ', size); // clear new hole
Denis Vlasenkob1759462008-06-20 20:20:54 +00001899 file_modified++;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001900 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001901}
1902
1903// close a hole in text[]
Denis Vlasenko33875382008-06-21 20:31:50 +00001904static char *text_hole_delete(char *p, char *q) // delete "p" through "q", inclusive
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001905{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001906 char *src, *dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001907 int cnt, hole_size;
1908
1909 // move forwards, from beginning
1910 // assume p <= q
1911 src = q + 1;
1912 dest = p;
1913 if (q < p) { // they are backward- swap them
1914 src = p + 1;
1915 dest = q;
1916 }
1917 hole_size = q - p + 1;
1918 cnt = end - src;
1919 if (src < text || src > end)
1920 goto thd0;
1921 if (dest < text || dest >= end)
1922 goto thd0;
1923 if (src >= end)
1924 goto thd_atend; // just delete the end of the buffer
Denis Vlasenkob1759462008-06-20 20:20:54 +00001925 memmove(dest, src, cnt);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001926 thd_atend:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001927 end = end - hole_size; // adjust the new END
1928 if (dest >= end)
1929 dest = end - 1; // make sure dest in below end-1
1930 if (end <= text)
1931 dest = end = text; // keep pointers valid
Denis Vlasenkob1759462008-06-20 20:20:54 +00001932 file_modified++;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001933 thd0:
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001934 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001935}
1936
1937// copy text into register, then delete text.
1938// if dist <= 0, do not include, or go past, a NewLine
1939//
Denis Vlasenko33875382008-06-21 20:31:50 +00001940static char *yank_delete(char *start, char *stop, int dist, int yf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001941{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001942 char *p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001943
1944 // make sure start <= stop
1945 if (start > stop) {
1946 // they are backwards, reverse them
1947 p = start;
1948 start = stop;
1949 stop = p;
1950 }
1951 if (dist <= 0) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +00001952 // we cannot cross NL boundaries
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001953 p = start;
1954 if (*p == '\n')
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001955 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001956 // dont go past a NewLine
1957 for (; p + 1 <= stop; p++) {
1958 if (p[1] == '\n') {
1959 stop = p; // "stop" just before NewLine
1960 break;
1961 }
1962 }
1963 }
1964 p = start;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001965#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001966 text_yank(start, stop, YDreg);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001967#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001968 if (yf == YANKDEL) {
1969 p = text_hole_delete(start, stop);
1970 } // delete lines
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001971 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001972}
1973
1974static void show_help(void)
1975{
1976 puts("These features are available:"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001977#if ENABLE_FEATURE_VI_SEARCH
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001978 "\n\tPattern searches with / and ?"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001979#endif
1980#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001981 "\n\tLast command repeat with \'.\'"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001982#endif
1983#if ENABLE_FEATURE_VI_YANKMARK
Bernhard Reutner-Fischerd24d5c82007-10-01 18:04:42 +00001984 "\n\tLine marking with 'x"
1985 "\n\tNamed buffers with \"x"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001986#endif
1987#if ENABLE_FEATURE_VI_READONLY
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001988 "\n\tReadonly if vi is called as \"view\""
1989 "\n\tReadonly with -R command line arg"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001990#endif
1991#if ENABLE_FEATURE_VI_SET
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001992 "\n\tSome colon mode commands with \':\'"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001993#endif
1994#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001995 "\n\tSettable options with \":set\""
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001996#endif
1997#if ENABLE_FEATURE_VI_USE_SIGNALS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001998 "\n\tSignal catching- ^C"
1999 "\n\tJob suspend and resume with ^Z"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002000#endif
2001#if ENABLE_FEATURE_VI_WIN_RESIZE
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002002 "\n\tAdapt to window re-sizes"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002003#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002004 );
2005}
2006
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002007#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002008static void start_new_cmd_q(char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002009{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002010 // get buffer for new cmd
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002011 // if there is a current cmd count put it in the buffer first
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002012 if (cmdcnt > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00002013 lmc_len = sprintf(last_modifying_cmd, "%d%c", cmdcnt, c);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002014 } else { // just save char c onto queue
Paul Foxd957b952005-11-28 18:07:53 +00002015 last_modifying_cmd[0] = c;
Paul Foxc51fc7b2008-03-06 01:34:23 +00002016 lmc_len = 1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002017 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002018 adding2q = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002019}
2020
2021static void end_cmd_q(void)
2022{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002023#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002024 YDreg = 26; // go back to default Yank/Delete reg
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002025#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002026 adding2q = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002027}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002028#endif /* FEATURE_VI_DOT_CMD */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002029
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002030#if ENABLE_FEATURE_VI_YANKMARK \
2031 || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) \
2032 || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko33875382008-06-21 20:31:50 +00002033static char *string_insert(char *p, char *s) // insert the string at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002034{
2035 int cnt, i;
2036
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002037 i = strlen(s);
Denis Vlasenko33875382008-06-21 20:31:50 +00002038 text_hole_make(p, i);
2039 strncpy(p, s, i);
2040 for (cnt = 0; *s != '\0'; s++) {
2041 if (*s == '\n')
2042 cnt++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002043 }
Denis Vlasenko33875382008-06-21 20:31:50 +00002044#if ENABLE_FEATURE_VI_YANKMARK
2045 status_line("Put %d lines (%d chars) from [%c]", cnt, i, what_reg());
2046#endif
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002047 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002048}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002049#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002050
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002051#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko33875382008-06-21 20:31:50 +00002052static char *text_yank(char *p, char *q, int dest) // copy text into a register
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002053{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002054 char *t;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002055 int cnt;
2056
2057 if (q < p) { // they are backwards- reverse them
2058 t = q;
2059 q = p;
2060 p = t;
2061 }
2062 cnt = q - p + 1;
2063 t = reg[dest];
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00002064 free(t); // if already a yank register, free it
Denis Vlasenkob95636c2006-12-19 23:36:04 +00002065 t = xmalloc(cnt + 1); // get a new register
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002066 memset(t, '\0', cnt + 1); // clear new text[]
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002067 strncpy(t, p, cnt); // copy text[] into bufer
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002068 reg[dest] = t;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002069 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002070}
2071
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002072static char what_reg(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002073{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002074 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002075
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002076 c = 'D'; // default to D-reg
2077 if (0 <= YDreg && YDreg <= 25)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002078 c = 'a' + (char) YDreg;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002079 if (YDreg == 26)
2080 c = 'D';
2081 if (YDreg == 27)
2082 c = 'U';
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002083 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002084}
2085
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002086static void check_context(char cmd)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002087{
2088 // A context is defined to be "modifying text"
2089 // Any modifying command establishes a new context.
2090
2091 if (dot < context_start || dot > context_end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002092 if (strchr(modifying_cmds, cmd) != NULL) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002093 // we are trying to modify text[]- make this the current context
2094 mark[27] = mark[26]; // move cur to prev
2095 mark[26] = dot; // move local to cur
2096 context_start = prev_line(prev_line(dot));
2097 context_end = next_line(next_line(dot));
2098 //loiter= start_loiter= now;
2099 }
2100 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002101}
2102
Denis Vlasenkof882f082007-12-23 02:36:51 +00002103static char *swap_context(char *p) // goto new context for '' command make this the current context
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002104{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002105 char *tmp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002106
2107 // the current context is in mark[26]
2108 // the previous context is in mark[27]
2109 // only swap context if other context is valid
2110 if (text <= mark[27] && mark[27] <= end - 1) {
2111 tmp = mark[27];
2112 mark[27] = mark[26];
2113 mark[26] = tmp;
2114 p = mark[26]; // where we are going- previous context
2115 context_start = prev_line(prev_line(prev_line(p)));
2116 context_end = next_line(next_line(next_line(p)));
2117 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002118 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002119}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002120#endif /* FEATURE_VI_YANKMARK */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002121
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002122//----- Set terminal attributes --------------------------------
2123static void rawmode(void)
2124{
2125 tcgetattr(0, &term_orig);
2126 term_vi = term_orig;
2127 term_vi.c_lflag &= (~ICANON & ~ECHO); // leave ISIG ON- allow intr's
2128 term_vi.c_iflag &= (~IXON & ~ICRNL);
2129 term_vi.c_oflag &= (~ONLCR);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002130 term_vi.c_cc[VMIN] = 1;
2131 term_vi.c_cc[VTIME] = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002132 erase_char = term_vi.c_cc[VERASE];
2133 tcsetattr(0, TCSANOW, &term_vi);
2134}
2135
2136static void cookmode(void)
2137{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002138 fflush(stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002139 tcsetattr(0, TCSANOW, &term_orig);
2140}
2141
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002142//----- Come here when we get a window resize signal ---------
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002143#if ENABLE_FEATURE_VI_USE_SIGNALS
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002144static void winch_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002145{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002146 // FIXME: do it in main loop!!!
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002147 signal(SIGWINCH, winch_sig);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002148 if (ENABLE_FEATURE_VI_WIN_RESIZE) {
Denis Vlasenko621204b2006-10-27 09:03:24 +00002149 get_terminal_width_height(0, &columns, &rows);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002150 if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS;
2151 if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS;
2152 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002153 new_screen(rows, columns); // get memory for virtual screen
2154 redraw(TRUE); // re-draw the screen
2155}
2156
2157//----- Come here when we get a continue signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002158static void cont_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002159{
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002160 rawmode(); // terminal to "raw"
2161 last_status_cksum = 0; // force status update
2162 redraw(TRUE); // re-draw the screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002163
2164 signal(SIGTSTP, suspend_sig);
2165 signal(SIGCONT, SIG_DFL);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002166 kill(my_pid, SIGCONT); // huh? why? we are already "continued"...
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002167}
2168
2169//----- Come here when we get a Suspend signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002170static void suspend_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002171{
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002172 place_cursor(rows - 1, 0, FALSE); // go to bottom of screen
2173 clear_to_eol(); // erase to end of line
2174 cookmode(); // terminal to "cooked"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002175
2176 signal(SIGCONT, cont_sig);
2177 signal(SIGTSTP, SIG_DFL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002178 kill(my_pid, SIGTSTP);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002179}
2180
2181//----- Come here when we get a signal ---------------------------
2182static void catch_sig(int sig)
2183{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002184 signal(SIGINT, catch_sig);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002185 if (sig)
Paul Fox2724fa92008-03-17 15:28:07 +00002186 siglongjmp(restart, sig);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002187}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002188#endif /* FEATURE_VI_USE_SIGNALS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002189
2190static int mysleep(int hund) // sleep for 'h' 1/100 seconds
2191{
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002192 struct pollfd pfd[1];
Denis Vlasenkocd5c7862007-05-17 16:37:22 +00002193
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002194 pfd[0].fd = 0;
2195 pfd[0].events = POLLIN;
Denis Vlasenko5d61e712007-09-27 10:09:59 +00002196 return safe_poll(pfd, 1, hund*10) > 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002197}
2198
2199//----- IO Routines --------------------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002200static char readit(void) // read (maybe cursor) key from stdin
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002201{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002202 char c;
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002203 int n;
Rob Landley988dd552008-10-14 01:42:33 +00002204
2205 // Known escape sequences for cursor and function keys.
2206 static const struct esc_cmds {
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002207 const char seq[4];
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002208 char val;
Rob Landley988dd552008-10-14 01:42:33 +00002209 } esccmds[] = {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002210 {"OA" , VI_K_UP }, // cursor key Up
2211 {"OB" , VI_K_DOWN }, // cursor key Down
2212 {"OC" , VI_K_RIGHT }, // Cursor Key Right
2213 {"OD" , VI_K_LEFT }, // cursor key Left
2214 {"OH" , VI_K_HOME }, // Cursor Key Home
2215 {"OF" , VI_K_END }, // Cursor Key End
Rob Landley988dd552008-10-14 01:42:33 +00002216 {"OP" , VI_K_FUN1 }, // Function Key F1
2217 {"OQ" , VI_K_FUN2 }, // Function Key F2
2218 {"OR" , VI_K_FUN3 }, // Function Key F3
2219 {"OS" , VI_K_FUN4 }, // Function Key F4
2220
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002221 {"[A" , VI_K_UP }, // cursor key Up
2222 {"[B" , VI_K_DOWN }, // cursor key Down
2223 {"[C" , VI_K_RIGHT }, // Cursor Key Right
2224 {"[D" , VI_K_LEFT }, // cursor key Left
2225 {"[H" , VI_K_HOME }, // Cursor Key Home
2226 {"[F" , VI_K_END }, // Cursor Key End
2227 {"[1~" , VI_K_HOME }, // Cursor Key Home
2228 {"[2~" , VI_K_INSERT }, // Cursor Key Insert
2229 {"[3~" , VI_K_DELETE }, // Cursor Key Delete
2230 {"[4~" , VI_K_END }, // Cursor Key End
2231 {"[5~" , VI_K_PAGEUP }, // Cursor Key Page Up
2232 {"[6~" , VI_K_PAGEDOWN}, // Cursor Key Page Down
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002233 // careful: these have no terminating NUL!
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002234 {"[11~", VI_K_FUN1 }, // Function Key F1
2235 {"[12~", VI_K_FUN2 }, // Function Key F2
2236 {"[13~", VI_K_FUN3 }, // Function Key F3
2237 {"[14~", VI_K_FUN4 }, // Function Key F4
2238 {"[15~", VI_K_FUN5 }, // Function Key F5
2239 {"[17~", VI_K_FUN6 }, // Function Key F6
2240 {"[18~", VI_K_FUN7 }, // Function Key F7
2241 {"[19~", VI_K_FUN8 }, // Function Key F8
2242 {"[20~", VI_K_FUN9 }, // Function Key F9
2243 {"[21~", VI_K_FUN10 }, // Function Key F10
2244 {"[23~", VI_K_FUN11 }, // Function Key F11
2245 {"[24~", VI_K_FUN12 }, // Function Key F12
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002246 };
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002247
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002248 fflush(stdout);
Rob Landley988dd552008-10-14 01:42:33 +00002249
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002250 n = chars_to_parse;
Denis Vlasenko5373fbc2008-10-14 10:09:56 +00002251 if (n == 0) {
2252 // If no data, block waiting for input.
Rob Landley988dd552008-10-14 01:42:33 +00002253 n = safe_read(0, readbuffer, 1);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002254 if (n <= 0) {
Denis Vlasenko5373fbc2008-10-14 10:09:56 +00002255 error:
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002256 place_cursor(rows - 1, 0, FALSE); // go to bottom of screen
2257 clear_to_eol(); // erase to end of line
2258 cookmode(); // terminal to "cooked"
2259 bb_error_msg_and_die("can't read user input");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002260 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002261 }
Rob Landley988dd552008-10-14 01:42:33 +00002262
2263 // Grab character to return from buffer
Denis Vlasenko5373fbc2008-10-14 10:09:56 +00002264 c = readbuffer[0];
2265 // Returning NUL from this routine would be bad.
2266 if (c == '\0')
2267 c = ' ';
Rob Landley988dd552008-10-14 01:42:33 +00002268 n--;
Denis Vlasenko5373fbc2008-10-14 10:09:56 +00002269 if (n) memmove(readbuffer, readbuffer + 1, n);
Rob Landley988dd552008-10-14 01:42:33 +00002270
2271 // If it's an escape sequence, loop through known matches.
2272 if (c == 27) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002273 const struct esc_cmds *eindex;
2274
Denis Vlasenko5373fbc2008-10-14 10:09:56 +00002275 for (eindex = esccmds; eindex < esccmds + ARRAY_SIZE(esccmds); eindex++) {
2276 // n - position in seq to read
2277 int i = 0; // position in seq to compare
2278 int cnt = strnlen(eindex->seq, 4);
Rob Landley988dd552008-10-14 01:42:33 +00002279
2280 // Loop through chars in this sequence.
2281 for (;;) {
Denis Vlasenko5373fbc2008-10-14 10:09:56 +00002282 // We've matched this escape sequence up to [i-1]
Rob Landley988dd552008-10-14 01:42:33 +00002283 if (n <= i) {
Denis Vlasenko5373fbc2008-10-14 10:09:56 +00002284 // Need more chars, read another one if it wouldn't block.
2285 // (Note that escape sequences come in as a unit,
2286 // so if we would block it's not really an escape sequence.)
Rob Landley988dd552008-10-14 01:42:33 +00002287 struct pollfd pfd;
2288 pfd.fd = 0;
2289 pfd.events = POLLIN;
Denis Vlasenko25497c12008-10-14 10:25:05 +00002290 // Rob needed 300ms timeout on qemu
2291 if (safe_poll(&pfd, 1, /*timeout:*/ 300)) {
Denis Vlasenko5373fbc2008-10-14 10:09:56 +00002292 if (safe_read(0, readbuffer + n, 1) <= 0)
2293 goto error;
2294 n++;
2295 } else {
2296 // No more data!
2297 // Array is sorted from shortest to longest,
2298 // we can't match anything later in array,
2299 // break out of both loops.
2300 goto loop_out;
2301 }
Rob Landley988dd552008-10-14 01:42:33 +00002302 }
Denis Vlasenko5373fbc2008-10-14 10:09:56 +00002303 if (readbuffer[i] != eindex->seq[i])
2304 break; // try next seq
2305 if (++i == cnt) { // entire seq matched
Rob Landley988dd552008-10-14 01:42:33 +00002306 c = eindex->val;
2307 n = 0;
2308 goto loop_out;
2309 }
2310 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002311 }
Denis Vlasenko5373fbc2008-10-14 10:09:56 +00002312 // We did not find matching sequence, it was a bare ESC.
2313 // We possibly read and stored more input in readbuffer by now.
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002314 }
Rob Landley988dd552008-10-14 01:42:33 +00002315loop_out:
2316
2317 chars_to_parse = n;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002318 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002319}
2320
2321//----- IO Routines --------------------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002322static char get_one_char(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002323{
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002324 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002325
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002326#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002327 if (!adding2q) {
2328 // we are not adding to the q.
2329 // but, we may be reading from a q
2330 if (ioq == 0) {
2331 // there is no current q, read from STDIN
2332 c = readit(); // get the users input
2333 } else {
2334 // there is a queue to get chars from first
2335 c = *ioq++;
2336 if (c == '\0') {
2337 // the end of the q, read from STDIN
2338 free(ioq_start);
2339 ioq_start = ioq = 0;
2340 c = readit(); // get the users input
2341 }
2342 }
2343 } else {
2344 // adding STDIN chars to q
2345 c = readit(); // get the users input
Denis Vlasenkob1759462008-06-20 20:20:54 +00002346 if (lmc_len >= MAX_INPUT_LEN - 1) {
2347 status_line_bold("last_modifying_cmd overrun");
2348 } else {
2349 // add new char to q
2350 last_modifying_cmd[lmc_len++] = c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002351 }
2352 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002353#else
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002354 c = readit(); // get the users input
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002355#endif /* FEATURE_VI_DOT_CMD */
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002356 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002357}
2358
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002359// Get input line (uses "status line" area)
2360static char *get_input_line(const char *prompt)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002361{
Denis Vlasenkob1759462008-06-20 20:20:54 +00002362 // char [MAX_INPUT_LEN]
2363#define buf get_input_line__buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002364
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002365 char c;
2366 int i;
2367
2368 strcpy(buf, prompt);
Paul Fox8552aec2005-09-16 12:20:05 +00002369 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002370 place_cursor(rows - 1, 0, FALSE); // go to Status line, bottom of screen
2371 clear_to_eol(); // clear the line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002372 write1(prompt); // write out the :, /, or ? prompt
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002373
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002374 i = strlen(buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002375 while (i < MAX_INPUT_LEN) {
2376 c = get_one_char();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002377 if (c == '\n' || c == '\r' || c == 27)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002378 break; // this is end of input
Paul Foxf2de0b72005-09-13 22:20:37 +00002379 if (c == erase_char || c == 8 || c == 127) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002380 // user wants to erase prev char
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002381 buf[--i] = '\0';
2382 write1("\b \b"); // erase char on screen
2383 if (i <= 0) // user backs up before b-o-l, exit
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002384 break;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002385 } else {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002386 buf[i] = c;
2387 buf[++i] = '\0';
2388 bb_putchar(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002389 }
2390 }
2391 refresh(FALSE);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002392 return buf;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002393#undef buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002394}
2395
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002396static int file_size(const char *fn) // what is the byte size of "fn"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002397{
2398 struct stat st_buf;
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002399 int cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002400
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002401 cnt = -1;
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002402 if (fn && fn[0] && stat(fn, &st_buf) == 0) // see if file exists
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002403 cnt = (int) st_buf.st_size;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002404 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002405}
2406
Denis Vlasenko33875382008-06-21 20:31:50 +00002407static int file_insert(const char *fn, char *p
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002408 USE_FEATURE_VI_READONLY(, int update_ro_status))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002409{
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002410 int cnt = -1;
2411 int fd, size;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002412 struct stat statbuf;
2413
2414 /* Validate file */
2415 if (stat(fn, &statbuf) < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002416 status_line_bold("\"%s\" %s", fn, strerror(errno));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002417 goto fi0;
2418 }
Denis Vlasenko33875382008-06-21 20:31:50 +00002419 if (!S_ISREG(statbuf.st_mode)) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002420 // This is not a regular file
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002421 status_line_bold("\"%s\" Not a regular file", fn);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002422 goto fi0;
2423 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002424 if (p < text || p > end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002425 status_line_bold("Trying to insert file outside of memory");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002426 goto fi0;
2427 }
2428
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002429 // read file to buffer
2430 fd = open(fn, O_RDONLY);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002431 if (fd < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002432 status_line_bold("\"%s\" %s", fn, strerror(errno));
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002433 goto fi0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002434 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002435 size = statbuf.st_size;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002436 p = text_hole_make(p, size);
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002437 cnt = safe_read(fd, p, size);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002438 if (cnt < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002439 status_line_bold("\"%s\" %s", fn, strerror(errno));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002440 p = text_hole_delete(p, p + size - 1); // un-do buffer insert
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002441 } else if (cnt < size) {
2442 // There was a partial read, shrink unused space text[]
2443 p = text_hole_delete(p + cnt, p + (size - cnt) - 1); // un-do buffer insert
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002444 status_line_bold("cannot read all of file \"%s\"", fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002445 }
2446 if (cnt >= size)
Paul Fox8552aec2005-09-16 12:20:05 +00002447 file_modified++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002448 close(fd);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002449 fi0:
Denis Vlasenko856be772007-08-17 08:29:48 +00002450#if ENABLE_FEATURE_VI_READONLY
2451 if (update_ro_status
2452 && ((access(fn, W_OK) < 0) ||
2453 /* root will always have access()
2454 * so we check fileperms too */
2455 !(statbuf.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH))
2456 )
2457 ) {
Denis Vlasenko2f6ae432007-07-19 22:50:47 +00002458 SET_READONLY_FILE(readonly_mode);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002459 }
Denis Vlasenko856be772007-08-17 08:29:48 +00002460#endif
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002461 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002462}
2463
Denis Vlasenko33875382008-06-21 20:31:50 +00002464static int file_write(char *fn, char *first, char *last)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002465{
2466 int fd, cnt, charcnt;
2467
2468 if (fn == 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002469 status_line_bold("No current filename");
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002470 return -2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002471 }
2472 charcnt = 0;
Denis Vlasenko8abae882008-05-03 11:35:59 +00002473 /* By popular request we do not open file with O_TRUNC,
2474 * but instead ftruncate() it _after_ successful write.
2475 * Might reduce amount of data lost on power fail etc.
2476 */
2477 fd = open(fn, (O_WRONLY | O_CREAT), 0666);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002478 if (fd < 0)
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002479 return -1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002480 cnt = last - first + 1;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002481 charcnt = full_write(fd, first, cnt);
Denis Vlasenko8abae882008-05-03 11:35:59 +00002482 ftruncate(fd, charcnt);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002483 if (charcnt == cnt) {
2484 // good write
Denis Vlasenkob1759462008-06-20 20:20:54 +00002485 //file_modified = FALSE;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002486 } else {
2487 charcnt = 0;
2488 }
2489 close(fd);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002490 return charcnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002491}
2492
2493//----- Terminal Drawing ---------------------------------------
2494// The terminal is made up of 'rows' line of 'columns' columns.
Eric Andersenaff114c2004-04-14 17:51:38 +00002495// classically this would be 24 x 80.
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002496// screen coordinates
2497// 0,0 ... 0,79
2498// 1,0 ... 1,79
2499// . ... .
2500// . ... .
2501// 22,0 ... 22,79
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002502// 23,0 ... 23,79 <- status line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002503
2504//----- Move the cursor to row x col (count from 0, not 1) -------
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002505static void place_cursor(int row, int col, int optimize)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002506{
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002507 char cm1[sizeof(CMrc) + sizeof(int)*3 * 2];
Denis Vlasenko7b54dc72008-07-17 21:32:32 +00002508#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
2509 enum {
2510 SZ_UP = sizeof(CMup),
2511 SZ_DN = sizeof(CMdown),
2512 SEQ_SIZE = SZ_UP > SZ_DN ? SZ_UP : SZ_DN,
2513 };
2514 char cm2[SEQ_SIZE * 5 + 32]; // bigger than worst case size
2515#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002516 char *cm;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002517
2518 if (row < 0) row = 0;
2519 if (row >= rows) row = rows - 1;
2520 if (col < 0) col = 0;
2521 if (col >= columns) col = columns - 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002522
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002523 //----- 1. Try the standard terminal ESC sequence
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002524 sprintf(cm1, CMrc, row + 1, col + 1);
2525 cm = cm1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002526
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002527#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002528 if (optimize && col < 16) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002529 char *screenp;
2530 int Rrow = last_row;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002531 int diff = Rrow - row;
2532
2533 if (diff < -5 || diff > 5)
2534 goto skip;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002535
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002536 //----- find the minimum # of chars to move cursor -------------
2537 //----- 2. Try moving with discreet chars (Newline, [back]space, ...)
2538 cm2[0] = '\0';
2539
2540 // move to the correct row
2541 while (row < Rrow) {
2542 // the cursor has to move up
2543 strcat(cm2, CMup);
2544 Rrow--;
2545 }
2546 while (row > Rrow) {
2547 // the cursor has to move down
2548 strcat(cm2, CMdown);
2549 Rrow++;
2550 }
2551
2552 // now move to the correct column
2553 strcat(cm2, "\r"); // start at col 0
2554 // just send out orignal source char to get to correct place
2555 screenp = &screen[row * columns]; // start of screen line
2556 strncat(cm2, screenp, col);
2557
2558 // pick the shortest cursor motion to send out
2559 if (strlen(cm2) < strlen(cm)) {
2560 cm = cm2;
2561 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002562 skip: ;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002563 }
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002564 last_row = row;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002565#endif /* FEATURE_VI_OPTIMIZE_CURSOR */
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002566 write1(cm);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002567}
2568
2569//----- Erase from cursor to end of line -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002570static void clear_to_eol(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002571{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002572 write1(Ceol); // Erase from cursor to end of line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002573}
2574
2575//----- Erase from cursor to end of screen -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002576static void clear_to_eos(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002577{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002578 write1(Ceos); // Erase from cursor to end of screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002579}
2580
2581//----- Start standout mode ------------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002582static void standout_start(void) // send "start reverse video" sequence
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002583{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002584 write1(SOs); // Start reverse video mode
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002585}
2586
2587//----- End standout mode --------------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002588static void standout_end(void) // send "end reverse video" sequence
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002589{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002590 write1(SOn); // End reverse video mode
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002591}
2592
2593//----- Flash the screen --------------------------------------
2594static void flash(int h)
2595{
2596 standout_start(); // send "start reverse video" sequence
2597 redraw(TRUE);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002598 mysleep(h);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002599 standout_end(); // send "end reverse video" sequence
2600 redraw(TRUE);
2601}
2602
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002603static void Indicate_Error(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002604{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002605#if ENABLE_FEATURE_VI_CRASHME
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002606 if (crashme > 0)
2607 return; // generate a random command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002608#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002609 if (!err_method) {
2610 write1(bell); // send out a bell character
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002611 } else {
2612 flash(10);
2613 }
2614}
2615
2616//----- Screen[] Routines --------------------------------------
2617//----- Erase the Screen[] memory ------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002618static void screen_erase(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002619{
2620 memset(screen, ' ', screensize); // clear new screen
2621}
2622
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002623static int bufsum(char *buf, int count)
Paul Fox8552aec2005-09-16 12:20:05 +00002624{
2625 int sum = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002626 char *e = buf + count;
2627
Paul Fox8552aec2005-09-16 12:20:05 +00002628 while (buf < e)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002629 sum += (unsigned char) *buf++;
Paul Fox8552aec2005-09-16 12:20:05 +00002630 return sum;
2631}
2632
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002633//----- Draw the status line at bottom of the screen -------------
2634static void show_status_line(void)
2635{
Paul Foxc3504852005-09-16 12:48:18 +00002636 int cnt = 0, cksum = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002637
Paul Fox8552aec2005-09-16 12:20:05 +00002638 // either we already have an error or status message, or we
2639 // create one.
2640 if (!have_status_msg) {
2641 cnt = format_edit_status();
2642 cksum = bufsum(status_buffer, cnt);
2643 }
2644 if (have_status_msg || ((cnt > 0 && last_status_cksum != cksum))) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002645 last_status_cksum = cksum; // remember if we have seen this line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002646 place_cursor(rows - 1, 0, FALSE); // put cursor on status line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002647 write1(status_buffer);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002648 clear_to_eol();
Paul Fox8552aec2005-09-16 12:20:05 +00002649 if (have_status_msg) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002650 if (((int)strlen(status_buffer) - (have_status_msg - 1)) >
Paul Fox8552aec2005-09-16 12:20:05 +00002651 (columns - 1) ) {
2652 have_status_msg = 0;
2653 Hit_Return();
2654 }
2655 have_status_msg = 0;
2656 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002657 place_cursor(crow, ccol, FALSE); // put cursor back in correct place
2658 }
Eric Andersena9eb33d2004-08-19 19:15:06 +00002659 fflush(stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002660}
2661
2662//----- format the status buffer, the bottom line of screen ------
Paul Fox8552aec2005-09-16 12:20:05 +00002663// format status buffer, with STANDOUT mode
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002664static void status_line_bold(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002665{
2666 va_list args;
2667
2668 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002669 strcpy(status_buffer, SOs); // Terminal standout mode on
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002670 vsprintf(status_buffer + sizeof(SOs)-1, format, args);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002671 strcat(status_buffer, SOn); // Terminal standout mode off
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002672 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00002673
2674 have_status_msg = 1 + sizeof(SOs) + sizeof(SOn) - 2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002675}
2676
Paul Fox8552aec2005-09-16 12:20:05 +00002677// format status buffer
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002678static void status_line(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002679{
2680 va_list args;
2681
2682 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002683 vsprintf(status_buffer, format, args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002684 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00002685
2686 have_status_msg = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002687}
2688
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002689// copy s to buf, convert unprintable
2690static void print_literal(char *buf, const char *s)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002691{
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002692 unsigned char c;
2693 char b[2];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002694
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002695 b[1] = '\0';
2696 buf[0] = '\0';
2697 if (!s[0])
2698 s = "(NULL)";
2699 for (; *s; s++) {
2700 int c_is_no_print;
2701
2702 c = *s;
2703 c_is_no_print = (c & 0x80) && !Isprint(c);
2704 if (c_is_no_print) {
2705 strcat(buf, SOn);
2706 c = '.';
2707 }
2708 if (c < ' ' || c == 127) {
2709 strcat(buf, "^");
2710 if (c == 127)
2711 c = '?';
2712 else
2713 c += '@';
2714 }
2715 b[0] = c;
2716 strcat(buf, b);
2717 if (c_is_no_print)
2718 strcat(buf, SOs);
2719 if (*s == '\n')
2720 strcat(buf, "$");
2721 if (strlen(buf) > MAX_INPUT_LEN - 10) // paranoia
2722 break;
2723 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002724}
2725
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002726static void not_implemented(const char *s)
2727{
2728 char buf[MAX_INPUT_LEN];
2729
2730 print_literal(buf, s);
2731 status_line_bold("\'%s\' is not implemented", buf);
2732}
2733
2734// show file status on status line
2735static int format_edit_status(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002736{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00002737 static const char cmd_mode_indicator[] ALIGN1 = "-IR-";
Denis Vlasenkob1759462008-06-20 20:20:54 +00002738
2739#define tot format_edit_status__tot
2740
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002741 int cur, percent, ret, trunc_at;
2742
Paul Fox8552aec2005-09-16 12:20:05 +00002743 // file_modified is now a counter rather than a flag. this
2744 // helps reduce the amount of line counting we need to do.
2745 // (this will cause a mis-reporting of modified status
2746 // once every MAXINT editing operations.)
2747
2748 // it would be nice to do a similar optimization here -- if
2749 // we haven't done a motion that could have changed which line
2750 // we're on, then we shouldn't have to do this count_lines()
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002751 cur = count_lines(text, dot);
Paul Fox8552aec2005-09-16 12:20:05 +00002752
2753 // reduce counting -- the total lines can't have
2754 // changed if we haven't done any edits.
2755 if (file_modified != last_file_modified) {
2756 tot = cur + count_lines(dot, end - 1) - 1;
2757 last_file_modified = file_modified;
2758 }
2759
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002760 // current line percent
2761 // ------------- ~~ ----------
2762 // total lines 100
2763 if (tot > 0) {
2764 percent = (100 * cur) / tot;
2765 } else {
2766 cur = tot = 0;
2767 percent = 100;
2768 }
Eric Andersen0ef24c62005-07-18 10:32:59 +00002769
Paul Fox8552aec2005-09-16 12:20:05 +00002770 trunc_at = columns < STATUS_BUFFER_LEN-1 ?
2771 columns : STATUS_BUFFER_LEN-1;
2772
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002773 ret = snprintf(status_buffer, trunc_at+1,
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002774#if ENABLE_FEATURE_VI_READONLY
Paul Fox8552aec2005-09-16 12:20:05 +00002775 "%c %s%s%s %d/%d %d%%",
2776#else
2777 "%c %s%s %d/%d %d%%",
2778#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002779 cmd_mode_indicator[cmd_mode & 3],
2780 (current_filename != NULL ? current_filename : "No file"),
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002781#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002782 (readonly_mode ? " [Readonly]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00002783#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002784 (file_modified ? " [Modified]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00002785 cur, tot, percent);
2786
2787 if (ret >= 0 && ret < trunc_at)
2788 return ret; /* it all fit */
2789
2790 return trunc_at; /* had to truncate */
Denis Vlasenkob1759462008-06-20 20:20:54 +00002791#undef tot
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002792}
2793
2794//----- Force refresh of all Lines -----------------------------
2795static void redraw(int full_screen)
2796{
2797 place_cursor(0, 0, FALSE); // put cursor in correct place
Denis Vlasenkob1759462008-06-20 20:20:54 +00002798 clear_to_eos(); // tell terminal to erase display
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002799 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00002800 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002801 refresh(full_screen); // this will redraw the entire display
Paul Fox8552aec2005-09-16 12:20:05 +00002802 show_status_line();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002803}
2804
2805//----- Format a text[] line into a buffer ---------------------
Denis Vlasenko68404f12008-03-17 09:00:54 +00002806static char* format_line(char *src /*, int li*/)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002807{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002808 unsigned char c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002809 int co;
2810 int ofs = offset;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002811 char *dest = scr_out_buf; // [MAX_SCR_COLS + MAX_TABSTOP * 2]
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002812
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002813 c = '~'; // char in col 0 in non-existent lines is '~'
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002814 co = 0;
2815 while (co < columns + tabstop) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002816 // have we gone past the end?
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002817 if (src < end) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002818 c = *src++;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002819 if (c == '\n')
2820 break;
2821 if ((c & 0x80) && !Isprint(c)) {
2822 c = '.';
2823 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002824 if (c < ' ' || c == 0x7f) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002825 if (c == '\t') {
2826 c = ' ';
2827 // co % 8 != 7
2828 while ((co % tabstop) != (tabstop - 1)) {
2829 dest[co++] = c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002830 }
2831 } else {
2832 dest[co++] = '^';
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002833 if (c == 0x7f)
2834 c = '?';
2835 else
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002836 c += '@'; // Ctrl-X -> 'X'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002837 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002838 }
2839 }
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002840 dest[co++] = c;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002841 // discard scrolled-off-to-the-left portion,
2842 // in tabstop-sized pieces
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002843 if (ofs >= tabstop && co >= tabstop) {
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002844 memmove(dest, dest + tabstop, co);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002845 co -= tabstop;
2846 ofs -= tabstop;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002847 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002848 if (src >= end)
2849 break;
2850 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002851 // check "short line, gigantic offset" case
2852 if (co < ofs)
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002853 ofs = co;
2854 // discard last scrolled off part
2855 co -= ofs;
2856 dest += ofs;
2857 // fill the rest with spaces
2858 if (co < columns)
2859 memset(&dest[co], ' ', columns - co);
2860 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002861}
2862
2863//----- Refresh the changed screen lines -----------------------
2864// Copy the source line from text[] into the buffer and note
2865// if the current screenline is different from the new buffer.
2866// If they differ then that line needs redrawing on the terminal.
2867//
2868static void refresh(int full_screen)
2869{
Denis Vlasenkob1759462008-06-20 20:20:54 +00002870#define old_offset refresh__old_offset
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002871
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002872 int li, changed;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002873 char *tp, *sp; // pointer into text[] and screen[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002874
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002875 if (ENABLE_FEATURE_VI_WIN_RESIZE) {
Denis Vlasenko55995022008-05-18 22:28:26 +00002876 unsigned c = columns, r = rows;
Rob Landleye5e1a102006-06-21 01:15:36 +00002877 get_terminal_width_height(0, &columns, &rows);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002878 if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS;
2879 if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS;
2880 full_screen |= (c - columns) | (r - rows);
2881 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002882 sync_cursor(dot, &crow, &ccol); // where cursor will be (on "dot")
2883 tp = screenbegin; // index into text[] of top line
2884
2885 // compare text[] to screen[] and mark screen[] lines that need updating
2886 for (li = 0; li < rows - 1; li++) {
2887 int cs, ce; // column start & end
Denis Vlasenkof882f082007-12-23 02:36:51 +00002888 char *out_buf;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002889 // format current text line
Denis Vlasenko68404f12008-03-17 09:00:54 +00002890 out_buf = format_line(tp /*, li*/);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002891
2892 // skip to the end of the current text[] line
Denis Vlasenkof882f082007-12-23 02:36:51 +00002893 if (tp < end) {
2894 char *t = memchr(tp, '\n', end - tp);
2895 if (!t) t = end - 1;
2896 tp = t + 1;
2897 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002898
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002899 // see if there are any changes between vitual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002900 changed = FALSE; // assume no change
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002901 cs = 0;
2902 ce = columns - 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002903 sp = &screen[li * columns]; // start of screen line
2904 if (full_screen) {
2905 // force re-draw of every single column from 0 - columns-1
2906 goto re0;
2907 }
2908 // compare newly formatted buffer with virtual screen
2909 // look forward for first difference between buf and screen
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002910 for (; cs <= ce; cs++) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002911 if (out_buf[cs] != sp[cs]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002912 changed = TRUE; // mark for redraw
2913 break;
2914 }
2915 }
2916
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002917 // look backward for last difference between out_buf and screen
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002918 for (; ce >= cs; ce--) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002919 if (out_buf[ce] != sp[ce]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002920 changed = TRUE; // mark for redraw
2921 break;
2922 }
2923 }
2924 // now, cs is index of first diff, and ce is index of last diff
2925
2926 // if horz offset has changed, force a redraw
2927 if (offset != old_offset) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002928 re0:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002929 changed = TRUE;
2930 }
2931
2932 // make a sanity check of columns indexes
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002933 if (cs < 0) cs = 0;
2934 if (ce > columns - 1) ce = columns - 1;
2935 if (cs > ce) { cs = 0; ce = columns - 1; }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002936 // is there a change between vitual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002937 if (changed) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002938 // copy changed part of buffer to virtual screen
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002939 memcpy(sp+cs, out_buf+cs, ce-cs+1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002940
2941 // move cursor to column of first change
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002942 //if (offset != old_offset) {
2943 // // place_cursor is still too stupid
2944 // // to handle offsets correctly
2945 // place_cursor(li, cs, FALSE);
2946 //} else {
2947 place_cursor(li, cs, TRUE);
2948 //}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002949
2950 // write line out to terminal
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002951 fwrite(&sp[cs], ce - cs + 1, 1, stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002952 }
2953 }
2954
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002955 place_cursor(crow, ccol, TRUE);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002956
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002957 old_offset = offset;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002958#undef old_offset
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002959}
2960
Eric Andersen3f980402001-04-04 17:31:15 +00002961//---------------------------------------------------------------------
2962//----- the Ascii Chart -----------------------------------------------
2963//
2964// 00 nul 01 soh 02 stx 03 etx 04 eot 05 enq 06 ack 07 bel
2965// 08 bs 09 ht 0a nl 0b vt 0c np 0d cr 0e so 0f si
2966// 10 dle 11 dc1 12 dc2 13 dc3 14 dc4 15 nak 16 syn 17 etb
2967// 18 can 19 em 1a sub 1b esc 1c fs 1d gs 1e rs 1f us
2968// 20 sp 21 ! 22 " 23 # 24 $ 25 % 26 & 27 '
2969// 28 ( 29 ) 2a * 2b + 2c , 2d - 2e . 2f /
2970// 30 0 31 1 32 2 33 3 34 4 35 5 36 6 37 7
2971// 38 8 39 9 3a : 3b ; 3c < 3d = 3e > 3f ?
2972// 40 @ 41 A 42 B 43 C 44 D 45 E 46 F 47 G
2973// 48 H 49 I 4a J 4b K 4c L 4d M 4e N 4f O
2974// 50 P 51 Q 52 R 53 S 54 T 55 U 56 V 57 W
2975// 58 X 59 Y 5a Z 5b [ 5c \ 5d ] 5e ^ 5f _
2976// 60 ` 61 a 62 b 63 c 64 d 65 e 66 f 67 g
2977// 68 h 69 i 6a j 6b k 6c l 6d m 6e n 6f o
2978// 70 p 71 q 72 r 73 s 74 t 75 u 76 v 77 w
2979// 78 x 79 y 7a z 7b { 7c | 7d } 7e ~ 7f del
2980//---------------------------------------------------------------------
2981
2982//----- Execute a Vi Command -----------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002983static void do_cmd(char c)
Eric Andersen3f980402001-04-04 17:31:15 +00002984{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002985 const char *msg = msg; // for compiler
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002986 char c1, *p, *q, *save_dot;
2987 char buf[12];
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002988 int dir = dir; // for compiler
Paul Foxc51fc7b2008-03-06 01:34:23 +00002989 int cnt, i, j;
Eric Andersen3f980402001-04-04 17:31:15 +00002990
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002991// c1 = c; // quiet the compiler
2992// cnt = yf = 0; // quiet the compiler
2993// msg = p = q = save_dot = buf; // quiet the compiler
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002994 memset(buf, '\0', 12);
Eric Andersenbff7a602001-11-17 07:15:43 +00002995
Paul Fox8552aec2005-09-16 12:20:05 +00002996 show_status_line();
2997
Eric Andersenbff7a602001-11-17 07:15:43 +00002998 /* if this is a cursor key, skip these checks */
2999 switch (c) {
3000 case VI_K_UP:
3001 case VI_K_DOWN:
3002 case VI_K_LEFT:
3003 case VI_K_RIGHT:
3004 case VI_K_HOME:
3005 case VI_K_END:
3006 case VI_K_PAGEUP:
3007 case VI_K_PAGEDOWN:
3008 goto key_cmd_mode;
3009 }
3010
Eric Andersen3f980402001-04-04 17:31:15 +00003011 if (cmd_mode == 2) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003012 // flip-flop Insert/Replace mode
Denis Vlasenko2a51af22007-03-21 22:31:24 +00003013 if (c == VI_K_INSERT)
3014 goto dc_i;
Eric Andersen3f980402001-04-04 17:31:15 +00003015 // we are 'R'eplacing the current *dot with new char
3016 if (*dot == '\n') {
3017 // don't Replace past E-o-l
3018 cmd_mode = 1; // convert to insert
3019 } else {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003020 if (1 <= c || Isprint(c)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003021 if (c != 27)
3022 dot = yank_delete(dot, dot, 0, YANKDEL); // delete char
3023 dot = char_insert(dot, c); // insert new char
3024 }
3025 goto dc1;
3026 }
3027 }
3028 if (cmd_mode == 1) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003029 // hitting "Insert" twice means "R" replace mode
3030 if (c == VI_K_INSERT) goto dc5;
Eric Andersen3f980402001-04-04 17:31:15 +00003031 // insert the char c at "dot"
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003032 if (1 <= c || Isprint(c)) {
3033 dot = char_insert(dot, c);
Eric Andersen3f980402001-04-04 17:31:15 +00003034 }
3035 goto dc1;
3036 }
3037
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003038 key_cmd_mode:
Eric Andersen3f980402001-04-04 17:31:15 +00003039 switch (c) {
Eric Andersen822c3832001-05-07 17:37:43 +00003040 //case 0x01: // soh
3041 //case 0x09: // ht
3042 //case 0x0b: // vt
3043 //case 0x0e: // so
3044 //case 0x0f: // si
3045 //case 0x10: // dle
3046 //case 0x11: // dc1
3047 //case 0x13: // dc3
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003048#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen1c0d3112001-04-16 15:46:44 +00003049 case 0x14: // dc4 ctrl-T
Eric Andersen3f980402001-04-04 17:31:15 +00003050 crashme = (crashme == 0) ? 1 : 0;
Eric Andersen3f980402001-04-04 17:31:15 +00003051 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003052#endif
Eric Andersen822c3832001-05-07 17:37:43 +00003053 //case 0x16: // syn
3054 //case 0x17: // etb
3055 //case 0x18: // can
3056 //case 0x1c: // fs
3057 //case 0x1d: // gs
3058 //case 0x1e: // rs
3059 //case 0x1f: // us
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003060 //case '!': // !-
3061 //case '#': // #-
3062 //case '&': // &-
3063 //case '(': // (-
3064 //case ')': // )-
3065 //case '*': // *-
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003066 //case '=': // =-
3067 //case '@': // @-
3068 //case 'F': // F-
3069 //case 'K': // K-
3070 //case 'Q': // Q-
3071 //case 'S': // S-
3072 //case 'T': // T-
3073 //case 'V': // V-
3074 //case '[': // [-
3075 //case '\\': // \-
3076 //case ']': // ]-
3077 //case '_': // _-
3078 //case '`': // `-
Eric Andersen1c0d3112001-04-16 15:46:44 +00003079 //case 'u': // u- FIXME- there is no undo
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003080 //case 'v': // v-
Eric Andersen3f980402001-04-04 17:31:15 +00003081 default: // unrecognised command
3082 buf[0] = c;
3083 buf[1] = '\0';
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003084 if (c < ' ') {
Eric Andersen3f980402001-04-04 17:31:15 +00003085 buf[0] = '^';
3086 buf[1] = c + '@';
3087 buf[2] = '\0';
3088 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003089 not_implemented(buf);
Eric Andersen3f980402001-04-04 17:31:15 +00003090 end_cmd_q(); // stop adding to q
3091 case 0x00: // nul- ignore
3092 break;
3093 case 2: // ctrl-B scroll up full screen
3094 case VI_K_PAGEUP: // Cursor Key Page Up
3095 dot_scroll(rows - 2, -1);
3096 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003097 case 4: // ctrl-D scroll down half screen
3098 dot_scroll((rows - 2) / 2, 1);
3099 break;
3100 case 5: // ctrl-E scroll down one line
3101 dot_scroll(1, 1);
3102 break;
3103 case 6: // ctrl-F scroll down full screen
3104 case VI_K_PAGEDOWN: // Cursor Key Page Down
3105 dot_scroll(rows - 2, 1);
3106 break;
3107 case 7: // ctrl-G show current status
Paul Fox8552aec2005-09-16 12:20:05 +00003108 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003109 break;
3110 case 'h': // h- move left
3111 case VI_K_LEFT: // cursor key Left
Paul Foxd13b90b2005-07-18 22:17:25 +00003112 case 8: // ctrl-H- move left (This may be ERASE char)
Denis Vlasenko2a51af22007-03-21 22:31:24 +00003113 case 0x7f: // DEL- move left (This may be ERASE char)
Eric Andersen3f980402001-04-04 17:31:15 +00003114 if (cmdcnt-- > 1) {
3115 do_cmd(c);
3116 } // repeat cnt
3117 dot_left();
3118 break;
3119 case 10: // Newline ^J
3120 case 'j': // j- goto next line, same col
3121 case VI_K_DOWN: // cursor key Down
3122 if (cmdcnt-- > 1) {
3123 do_cmd(c);
3124 } // repeat cnt
3125 dot_next(); // go to next B-o-l
3126 dot = move_to_col(dot, ccol + offset); // try stay in same col
3127 break;
3128 case 12: // ctrl-L force redraw whole screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003129 case 18: // ctrl-R force redraw
Eric Andersen822c3832001-05-07 17:37:43 +00003130 place_cursor(0, 0, FALSE); // put cursor in correct place
Eric Andersen3f980402001-04-04 17:31:15 +00003131 clear_to_eos(); // tel terminal to erase display
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003132 mysleep(10);
Eric Andersen3f980402001-04-04 17:31:15 +00003133 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00003134 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003135 refresh(TRUE); // this will redraw the entire display
3136 break;
3137 case 13: // Carriage Return ^M
3138 case '+': // +- goto next line
3139 if (cmdcnt-- > 1) {
3140 do_cmd(c);
3141 } // repeat cnt
3142 dot_next();
3143 dot_skip_over_ws();
3144 break;
3145 case 21: // ctrl-U scroll up half screen
3146 dot_scroll((rows - 2) / 2, -1);
3147 break;
3148 case 25: // ctrl-Y scroll up one line
3149 dot_scroll(1, -1);
3150 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003151 case 27: // esc
Eric Andersen3f980402001-04-04 17:31:15 +00003152 if (cmd_mode == 0)
3153 indicate_error(c);
3154 cmd_mode = 0; // stop insrting
3155 end_cmd_q();
Paul Fox8552aec2005-09-16 12:20:05 +00003156 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003157 break;
3158 case ' ': // move right
3159 case 'l': // move right
3160 case VI_K_RIGHT: // Cursor Key Right
3161 if (cmdcnt-- > 1) {
3162 do_cmd(c);
3163 } // repeat cnt
3164 dot_right();
3165 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003166#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003167 case '"': // "- name a register to use for Delete/Yank
3168 c1 = get_one_char();
3169 c1 = tolower(c1);
3170 if (islower(c1)) {
3171 YDreg = c1 - 'a';
3172 } else {
3173 indicate_error(c);
3174 }
3175 break;
3176 case '\'': // '- goto a specific mark
3177 c1 = get_one_char();
3178 c1 = tolower(c1);
3179 if (islower(c1)) {
3180 c1 = c1 - 'a';
3181 // get the b-o-l
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003182 q = mark[(unsigned char) c1];
Eric Andersen3f980402001-04-04 17:31:15 +00003183 if (text <= q && q < end) {
3184 dot = q;
3185 dot_begin(); // go to B-o-l
3186 dot_skip_over_ws();
3187 }
3188 } else if (c1 == '\'') { // goto previous context
3189 dot = swap_context(dot); // swap current and previous context
3190 dot_begin(); // go to B-o-l
3191 dot_skip_over_ws();
3192 } else {
3193 indicate_error(c);
3194 }
3195 break;
3196 case 'm': // m- Mark a line
3197 // this is really stupid. If there are any inserts or deletes
3198 // between text[0] and dot then this mark will not point to the
3199 // correct location! It could be off by many lines!
3200 // Well..., at least its quick and dirty.
3201 c1 = get_one_char();
3202 c1 = tolower(c1);
3203 if (islower(c1)) {
3204 c1 = c1 - 'a';
3205 // remember the line
3206 mark[(int) c1] = dot;
3207 } else {
3208 indicate_error(c);
3209 }
3210 break;
3211 case 'P': // P- Put register before
3212 case 'p': // p- put register after
3213 p = reg[YDreg];
3214 if (p == 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003215 status_line_bold("Nothing in register %c", what_reg());
Eric Andersen3f980402001-04-04 17:31:15 +00003216 break;
3217 }
3218 // are we putting whole lines or strings
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003219 if (strchr(p, '\n') != NULL) {
Eric Andersen3f980402001-04-04 17:31:15 +00003220 if (c == 'P') {
3221 dot_begin(); // putting lines- Put above
3222 }
3223 if (c == 'p') {
3224 // are we putting after very last line?
3225 if (end_line(dot) == (end - 1)) {
3226 dot = end; // force dot to end of text[]
3227 } else {
3228 dot_next(); // next line, then put before
3229 }
3230 }
3231 } else {
3232 if (c == 'p')
3233 dot_right(); // move to right, can move to NL
3234 }
3235 dot = string_insert(dot, p); // insert the string
3236 end_cmd_q(); // stop adding to q
3237 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003238 case 'U': // U- Undo; replace current line with original version
3239 if (reg[Ureg] != 0) {
3240 p = begin_line(dot);
3241 q = end_line(dot);
3242 p = text_hole_delete(p, q); // delete cur line
3243 p = string_insert(p, reg[Ureg]); // insert orig line
3244 dot = p;
3245 dot_skip_over_ws();
3246 }
3247 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003248#endif /* FEATURE_VI_YANKMARK */
Eric Andersen3f980402001-04-04 17:31:15 +00003249 case '$': // $- goto end of line
3250 case VI_K_END: // Cursor Key End
3251 if (cmdcnt-- > 1) {
3252 do_cmd(c);
3253 } // repeat cnt
Glenn L McGrathee829062004-01-21 10:59:45 +00003254 dot = end_line(dot);
Eric Andersen3f980402001-04-04 17:31:15 +00003255 break;
3256 case '%': // %- find matching char of pair () [] {}
3257 for (q = dot; q < end && *q != '\n'; q++) {
3258 if (strchr("()[]{}", *q) != NULL) {
3259 // we found half of a pair
3260 p = find_pair(q, *q);
3261 if (p == NULL) {
3262 indicate_error(c);
3263 } else {
3264 dot = p;
3265 }
3266 break;
3267 }
3268 }
3269 if (*q == '\n')
3270 indicate_error(c);
3271 break;
3272 case 'f': // f- forward to a user specified char
3273 last_forward_char = get_one_char(); // get the search char
3274 //
Eric Andersenaff114c2004-04-14 17:51:38 +00003275 // dont separate these two commands. 'f' depends on ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003276 //
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003277 //**** fall through to ... ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003278 case ';': // ;- look at rest of line for last forward char
3279 if (cmdcnt-- > 1) {
Eric Andersen822c3832001-05-07 17:37:43 +00003280 do_cmd(';');
Eric Andersen3f980402001-04-04 17:31:15 +00003281 } // repeat cnt
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003282 if (last_forward_char == 0)
3283 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003284 q = dot + 1;
3285 while (q < end - 1 && *q != '\n' && *q != last_forward_char) {
3286 q++;
3287 }
3288 if (*q == last_forward_char)
3289 dot = q;
3290 break;
Paul Foxb5ee8db2008-02-14 01:17:01 +00003291 case ',': // repeat latest 'f' in opposite direction
3292 if (cmdcnt-- > 1) {
3293 do_cmd(',');
3294 } // repeat cnt
3295 if (last_forward_char == 0)
3296 break;
3297 q = dot - 1;
3298 while (q >= text && *q != '\n' && *q != last_forward_char) {
3299 q--;
3300 }
3301 if (q >= text && *q == last_forward_char)
3302 dot = q;
3303 break;
3304
Eric Andersen3f980402001-04-04 17:31:15 +00003305 case '-': // -- goto prev line
3306 if (cmdcnt-- > 1) {
3307 do_cmd(c);
3308 } // repeat cnt
3309 dot_prev();
3310 dot_skip_over_ws();
3311 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003312#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003313 case '.': // .- repeat the last modifying command
3314 // Stuff the last_modifying_cmd back into stdin
3315 // and let it be re-executed.
Denis Vlasenkob1759462008-06-20 20:20:54 +00003316 if (lmc_len > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00003317 last_modifying_cmd[lmc_len] = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003318 ioq = ioq_start = xstrdup(last_modifying_cmd);
Eric Andersen3f980402001-04-04 17:31:15 +00003319 }
3320 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003321#endif
3322#if ENABLE_FEATURE_VI_SEARCH
Eric Andersen3f980402001-04-04 17:31:15 +00003323 case '?': // /- search for a pattern
3324 case '/': // /- search for a pattern
3325 buf[0] = c;
3326 buf[1] = '\0';
3327 q = get_input_line(buf); // get input line- use "status line"
Paul Fox4917c112008-03-05 16:44:02 +00003328 if (q[0] && !q[1]) {
3329 if (last_search_pattern[0])
3330 last_search_pattern[0] = c;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003331 goto dc3; // if no pat re-use old pat
Paul Fox4917c112008-03-05 16:44:02 +00003332 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003333 if (q[0]) { // strlen(q) > 1: new pat- save it and find
Eric Andersen3f980402001-04-04 17:31:15 +00003334 // there is a new pat
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00003335 free(last_search_pattern);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003336 last_search_pattern = xstrdup(q);
Eric Andersen3f980402001-04-04 17:31:15 +00003337 goto dc3; // now find the pattern
3338 }
3339 // user changed mind and erased the "/"- do nothing
3340 break;
3341 case 'N': // N- backward search for last pattern
3342 if (cmdcnt-- > 1) {
3343 do_cmd(c);
3344 } // repeat cnt
3345 dir = BACK; // assume BACKWARD search
3346 p = dot - 1;
3347 if (last_search_pattern[0] == '?') {
3348 dir = FORWARD;
3349 p = dot + 1;
3350 }
3351 goto dc4; // now search for pattern
3352 break;
3353 case 'n': // n- repeat search for last pattern
3354 // search rest of text[] starting at next char
3355 // if search fails return orignal "p" not the "p+1" address
3356 if (cmdcnt-- > 1) {
3357 do_cmd(c);
3358 } // repeat cnt
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003359 dc3:
Eric Andersen3f980402001-04-04 17:31:15 +00003360 if (last_search_pattern == 0) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003361 msg = "No previous regular expression";
Eric Andersen3f980402001-04-04 17:31:15 +00003362 goto dc2;
3363 }
3364 if (last_search_pattern[0] == '/') {
3365 dir = FORWARD; // assume FORWARD search
3366 p = dot + 1;
3367 }
3368 if (last_search_pattern[0] == '?') {
3369 dir = BACK;
3370 p = dot - 1;
3371 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003372 dc4:
Eric Andersen3f980402001-04-04 17:31:15 +00003373 q = char_search(p, last_search_pattern + 1, dir, FULL);
3374 if (q != NULL) {
3375 dot = q; // good search, update "dot"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003376 msg = "";
Eric Andersen3f980402001-04-04 17:31:15 +00003377 goto dc2;
3378 }
3379 // no pattern found between "dot" and "end"- continue at top
3380 p = text;
3381 if (dir == BACK) {
3382 p = end - 1;
3383 }
3384 q = char_search(p, last_search_pattern + 1, dir, FULL);
3385 if (q != NULL) { // found something
3386 dot = q; // found new pattern- goto it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003387 msg = "search hit BOTTOM, continuing at TOP";
Eric Andersen3f980402001-04-04 17:31:15 +00003388 if (dir == BACK) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003389 msg = "search hit TOP, continuing at BOTTOM";
Eric Andersen3f980402001-04-04 17:31:15 +00003390 }
3391 } else {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003392 msg = "Pattern not found";
Eric Andersen3f980402001-04-04 17:31:15 +00003393 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003394 dc2:
3395 if (*msg)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003396 status_line_bold("%s", msg);
Eric Andersen3f980402001-04-04 17:31:15 +00003397 break;
3398 case '{': // {- move backward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003399 q = char_search(dot, "\n\n", BACK, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003400 if (q != NULL) { // found blank line
3401 dot = next_line(q); // move to next blank line
3402 }
3403 break;
3404 case '}': // }- move forward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003405 q = char_search(dot, "\n\n", FORWARD, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003406 if (q != NULL) { // found blank line
3407 dot = next_line(q); // move to next blank line
3408 }
3409 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003410#endif /* FEATURE_VI_SEARCH */
Eric Andersen3f980402001-04-04 17:31:15 +00003411 case '0': // 0- goto begining of line
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003412 case '1': // 1-
3413 case '2': // 2-
3414 case '3': // 3-
3415 case '4': // 4-
3416 case '5': // 5-
3417 case '6': // 6-
3418 case '7': // 7-
3419 case '8': // 8-
3420 case '9': // 9-
Eric Andersen3f980402001-04-04 17:31:15 +00003421 if (c == '0' && cmdcnt < 1) {
3422 dot_begin(); // this was a standalone zero
3423 } else {
3424 cmdcnt = cmdcnt * 10 + (c - '0'); // this 0 is part of a number
3425 }
3426 break;
3427 case ':': // :- the colon mode commands
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003428 p = get_input_line(":"); // get input line- use "status line"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003429#if ENABLE_FEATURE_VI_COLON
Eric Andersen3f980402001-04-04 17:31:15 +00003430 colon(p); // execute the command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003431#else
Eric Andersen822c3832001-05-07 17:37:43 +00003432 if (*p == ':')
3433 p++; // move past the ':'
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003434 cnt = strlen(p);
Eric Andersen822c3832001-05-07 17:37:43 +00003435 if (cnt <= 0)
3436 break;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003437 if (strncasecmp(p, "quit", cnt) == 0
3438 || strncasecmp(p, "q!", cnt) == 0 // delete lines
3439 ) {
Matt Kraai1f0c4362001-12-20 23:13:26 +00003440 if (file_modified && p[1] != '!') {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003441 status_line_bold("No write since last change (:quit! overrides)");
Eric Andersen3f980402001-04-04 17:31:15 +00003442 } else {
3443 editing = 0;
3444 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003445 } else if (strncasecmp(p, "write", cnt) == 0
3446 || strncasecmp(p, "wq", cnt) == 0
3447 || strncasecmp(p, "wn", cnt) == 0
3448 || strncasecmp(p, "x", cnt) == 0
3449 ) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003450 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00003451 if (cnt < 0) {
3452 if (cnt == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003453 status_line_bold("Write error: %s", strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00003454 } else {
3455 file_modified = 0;
3456 last_file_modified = -1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003457 status_line("\"%s\" %dL, %dC", current_filename, count_lines(text, end - 1), cnt);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003458 if (p[0] == 'x' || p[1] == 'q' || p[1] == 'n'
3459 || p[0] == 'X' || p[1] == 'Q' || p[1] == 'N'
3460 ) {
Paul Fox61e45db2005-10-09 14:43:22 +00003461 editing = 0;
3462 }
Eric Andersen3f980402001-04-04 17:31:15 +00003463 }
Denis Vlasenko219d14d2007-03-24 15:40:16 +00003464 } else if (strncasecmp(p, "file", cnt) == 0) {
Paul Fox8552aec2005-09-16 12:20:05 +00003465 last_status_cksum = 0; // force status update
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003466 } else if (sscanf(p, "%d", &j) > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003467 dot = find_line(j); // go to line # j
3468 dot_skip_over_ws();
Eric Andersen3f980402001-04-04 17:31:15 +00003469 } else { // unrecognised cmd
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003470 not_implemented(p);
Eric Andersen3f980402001-04-04 17:31:15 +00003471 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003472#endif /* !FEATURE_VI_COLON */
Eric Andersen3f980402001-04-04 17:31:15 +00003473 break;
3474 case '<': // <- Left shift something
3475 case '>': // >- Right shift something
3476 cnt = count_lines(text, dot); // remember what line we are on
3477 c1 = get_one_char(); // get the type of thing to delete
3478 find_range(&p, &q, c1);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003479 yank_delete(p, q, 1, YANKONLY); // save copy before change
Eric Andersen3f980402001-04-04 17:31:15 +00003480 p = begin_line(p);
3481 q = end_line(q);
3482 i = count_lines(p, q); // # of lines we are shifting
3483 for ( ; i > 0; i--, p = next_line(p)) {
3484 if (c == '<') {
3485 // shift left- remove tab or 8 spaces
3486 if (*p == '\t') {
3487 // shrink buffer 1 char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003488 text_hole_delete(p, p);
Eric Andersen3f980402001-04-04 17:31:15 +00003489 } else if (*p == ' ') {
3490 // we should be calculating columns, not just SPACE
3491 for (j = 0; *p == ' ' && j < tabstop; j++) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003492 text_hole_delete(p, p);
Eric Andersen3f980402001-04-04 17:31:15 +00003493 }
3494 }
3495 } else if (c == '>') {
3496 // shift right -- add tab or 8 spaces
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003497 char_insert(p, '\t');
Eric Andersen3f980402001-04-04 17:31:15 +00003498 }
3499 }
3500 dot = find_line(cnt); // what line were we on
3501 dot_skip_over_ws();
3502 end_cmd_q(); // stop adding to q
3503 break;
3504 case 'A': // A- append at e-o-l
3505 dot_end(); // go to e-o-l
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003506 //**** fall through to ... 'a'
Eric Andersen3f980402001-04-04 17:31:15 +00003507 case 'a': // a- append after current char
3508 if (*dot != '\n')
3509 dot++;
3510 goto dc_i;
3511 break;
3512 case 'B': // B- back a blank-delimited Word
3513 case 'E': // E- end of a blank-delimited word
3514 case 'W': // W- forward a blank-delimited word
3515 if (cmdcnt-- > 1) {
3516 do_cmd(c);
3517 } // repeat cnt
3518 dir = FORWARD;
3519 if (c == 'B')
3520 dir = BACK;
3521 if (c == 'W' || isspace(dot[dir])) {
3522 dot = skip_thing(dot, 1, dir, S_TO_WS);
3523 dot = skip_thing(dot, 2, dir, S_OVER_WS);
3524 }
3525 if (c != 'W')
3526 dot = skip_thing(dot, 1, dir, S_BEFORE_WS);
3527 break;
3528 case 'C': // C- Change to e-o-l
3529 case 'D': // D- delete to e-o-l
3530 save_dot = dot;
3531 dot = dollar_line(dot); // move to before NL
3532 // copy text into a register and delete
3533 dot = yank_delete(save_dot, dot, 0, YANKDEL); // delete to e-o-l
3534 if (c == 'C')
3535 goto dc_i; // start inserting
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003536#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003537 if (c == 'D')
3538 end_cmd_q(); // stop adding to q
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003539#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003540 break;
Paul Foxb5ee8db2008-02-14 01:17:01 +00003541 case 'g': // 'gg' goto a line number (from vim)
3542 // (default to first line in file)
3543 c1 = get_one_char();
3544 if (c1 != 'g') {
3545 buf[0] = 'g';
3546 buf[1] = c1;
3547 buf[2] = '\0';
3548 not_implemented(buf);
3549 break;
3550 }
3551 if (cmdcnt == 0)
3552 cmdcnt = 1;
3553 /* fall through */
Eric Andersen822c3832001-05-07 17:37:43 +00003554 case 'G': // G- goto to a line number (default= E-O-F)
3555 dot = end - 1; // assume E-O-F
Eric Andersen1c0d3112001-04-16 15:46:44 +00003556 if (cmdcnt > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003557 dot = find_line(cmdcnt); // what line is #cmdcnt
Eric Andersen1c0d3112001-04-16 15:46:44 +00003558 }
3559 dot_skip_over_ws();
3560 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003561 case 'H': // H- goto top line on screen
3562 dot = screenbegin;
3563 if (cmdcnt > (rows - 1)) {
3564 cmdcnt = (rows - 1);
3565 }
3566 if (cmdcnt-- > 1) {
3567 do_cmd('+');
3568 } // repeat cnt
3569 dot_skip_over_ws();
3570 break;
3571 case 'I': // I- insert before first non-blank
3572 dot_begin(); // 0
3573 dot_skip_over_ws();
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003574 //**** fall through to ... 'i'
Eric Andersen3f980402001-04-04 17:31:15 +00003575 case 'i': // i- insert before current char
3576 case VI_K_INSERT: // Cursor Key Insert
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003577 dc_i:
Eric Andersen3f980402001-04-04 17:31:15 +00003578 cmd_mode = 1; // start insrting
Eric Andersen3f980402001-04-04 17:31:15 +00003579 break;
3580 case 'J': // J- join current and next lines together
3581 if (cmdcnt-- > 2) {
3582 do_cmd(c);
3583 } // repeat cnt
3584 dot_end(); // move to NL
3585 if (dot < end - 1) { // make sure not last char in text[]
3586 *dot++ = ' '; // replace NL with space
Paul Fox8552aec2005-09-16 12:20:05 +00003587 file_modified++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003588 while (isblank(*dot)) { // delete leading WS
Eric Andersen3f980402001-04-04 17:31:15 +00003589 dot_delete();
3590 }
3591 }
3592 end_cmd_q(); // stop adding to q
3593 break;
3594 case 'L': // L- goto bottom line on screen
3595 dot = end_screen();
3596 if (cmdcnt > (rows - 1)) {
3597 cmdcnt = (rows - 1);
3598 }
3599 if (cmdcnt-- > 1) {
3600 do_cmd('-');
3601 } // repeat cnt
3602 dot_begin();
3603 dot_skip_over_ws();
3604 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003605 case 'M': // M- goto middle line on screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003606 dot = screenbegin;
3607 for (cnt = 0; cnt < (rows-1) / 2; cnt++)
3608 dot = next_line(dot);
3609 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003610 case 'O': // O- open a empty line above
Eric Andersen822c3832001-05-07 17:37:43 +00003611 // 0i\n ESC -i
Eric Andersen3f980402001-04-04 17:31:15 +00003612 p = begin_line(dot);
3613 if (p[-1] == '\n') {
3614 dot_prev();
3615 case 'o': // o- open a empty line below; Yes, I know it is in the middle of the "if (..."
3616 dot_end();
3617 dot = char_insert(dot, '\n');
3618 } else {
3619 dot_begin(); // 0
Eric Andersen822c3832001-05-07 17:37:43 +00003620 dot = char_insert(dot, '\n'); // i\n ESC
Eric Andersen3f980402001-04-04 17:31:15 +00003621 dot_prev(); // -
3622 }
3623 goto dc_i;
3624 break;
3625 case 'R': // R- continuous Replace char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003626 dc5:
Eric Andersen3f980402001-04-04 17:31:15 +00003627 cmd_mode = 2;
Eric Andersen3f980402001-04-04 17:31:15 +00003628 break;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003629 case VI_K_DELETE:
3630 c = 'x';
3631 // fall through
Eric Andersen3f980402001-04-04 17:31:15 +00003632 case 'X': // X- delete char before dot
3633 case 'x': // x- delete the current char
3634 case 's': // s- substitute the current char
3635 if (cmdcnt-- > 1) {
3636 do_cmd(c);
3637 } // repeat cnt
3638 dir = 0;
3639 if (c == 'X')
3640 dir = -1;
3641 if (dot[dir] != '\n') {
3642 if (c == 'X')
3643 dot--; // delete prev char
3644 dot = yank_delete(dot, dot, 0, YANKDEL); // delete char
3645 }
3646 if (c == 's')
3647 goto dc_i; // start insrting
3648 end_cmd_q(); // stop adding to q
3649 break;
3650 case 'Z': // Z- if modified, {write}; exit
3651 // ZZ means to save file (if necessary), then exit
3652 c1 = get_one_char();
3653 if (c1 != 'Z') {
3654 indicate_error(c);
3655 break;
3656 }
Paul Foxf0305b72006-03-28 14:18:21 +00003657 if (file_modified) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003658 if (ENABLE_FEATURE_VI_READONLY && readonly_mode) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003659 status_line_bold("\"%s\" File is read only", current_filename);
Denis Vlasenko92758142006-10-03 19:56:34 +00003660 break;
Paul Foxf0305b72006-03-28 14:18:21 +00003661 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003662 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00003663 if (cnt < 0) {
3664 if (cnt == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003665 status_line_bold("Write error: %s", strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00003666 } else if (cnt == (end - 1 - text + 1)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003667 editing = 0;
3668 }
3669 } else {
3670 editing = 0;
3671 }
3672 break;
3673 case '^': // ^- move to first non-blank on line
3674 dot_begin();
3675 dot_skip_over_ws();
3676 break;
3677 case 'b': // b- back a word
3678 case 'e': // e- end of word
3679 if (cmdcnt-- > 1) {
3680 do_cmd(c);
3681 } // repeat cnt
3682 dir = FORWARD;
3683 if (c == 'b')
3684 dir = BACK;
3685 if ((dot + dir) < text || (dot + dir) > end - 1)
3686 break;
3687 dot += dir;
3688 if (isspace(*dot)) {
3689 dot = skip_thing(dot, (c == 'e') ? 2 : 1, dir, S_OVER_WS);
3690 }
3691 if (isalnum(*dot) || *dot == '_') {
3692 dot = skip_thing(dot, 1, dir, S_END_ALNUM);
3693 } else if (ispunct(*dot)) {
3694 dot = skip_thing(dot, 1, dir, S_END_PUNCT);
3695 }
3696 break;
3697 case 'c': // c- change something
3698 case 'd': // d- delete something
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003699#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003700 case 'y': // y- yank something
3701 case 'Y': // Y- Yank a line
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003702#endif
Paul Foxc51fc7b2008-03-06 01:34:23 +00003703 {
3704 int yf, ml, whole = 0;
Eric Andersen3f980402001-04-04 17:31:15 +00003705 yf = YANKDEL; // assume either "c" or "d"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003706#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003707 if (c == 'y' || c == 'Y')
3708 yf = YANKONLY;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003709#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003710 c1 = 'y';
3711 if (c != 'Y')
3712 c1 = get_one_char(); // get the type of thing to delete
Paul Foxc51fc7b2008-03-06 01:34:23 +00003713 // determine range, and whether it spans lines
3714 ml = find_range(&p, &q, c1);
Eric Andersen3f980402001-04-04 17:31:15 +00003715 if (c1 == 27) { // ESC- user changed mind and wants out
3716 c = c1 = 27; // Escape- do nothing
3717 } else if (strchr("wW", c1)) {
3718 if (c == 'c') {
3719 // don't include trailing WS as part of word
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003720 while (isblank(*q)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003721 if (q <= text || q[-1] == '\n')
3722 break;
3723 q--;
3724 }
3725 }
Paul Foxc51fc7b2008-03-06 01:34:23 +00003726 dot = yank_delete(p, q, ml, yf); // delete word
3727 } else if (strchr("^0bBeEft%$ lh\b\177", c1)) {
3728 // partial line copy text into a register and delete
3729 dot = yank_delete(p, q, ml, yf); // delete word
3730 } else if (strchr("cdykjHL+-{}\r\n", c1)) {
3731 // whole line copy text into a register and delete
3732 dot = yank_delete(p, q, ml, yf); // delete lines
3733 whole = 1;
3734 } else {
3735 // could not recognize object
3736 c = c1 = 27; // error-
3737 ml = 0;
3738 indicate_error(c);
3739 }
3740 if (ml && whole) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003741 if (c == 'c') {
3742 dot = char_insert(dot, '\n');
3743 // on the last line of file don't move to prev line
Paul Foxc51fc7b2008-03-06 01:34:23 +00003744 if (whole && dot != (end-1)) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003745 dot_prev();
3746 }
3747 } else if (c == 'd') {
Eric Andersen3f980402001-04-04 17:31:15 +00003748 dot_begin();
3749 dot_skip_over_ws();
3750 }
Eric Andersen3f980402001-04-04 17:31:15 +00003751 }
3752 if (c1 != 27) {
3753 // if CHANGING, not deleting, start inserting after the delete
3754 if (c == 'c') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003755 strcpy(buf, "Change");
Eric Andersen3f980402001-04-04 17:31:15 +00003756 goto dc_i; // start inserting
3757 }
3758 if (c == 'd') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003759 strcpy(buf, "Delete");
Eric Andersen3f980402001-04-04 17:31:15 +00003760 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003761#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003762 if (c == 'y' || c == 'Y') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003763 strcpy(buf, "Yank");
Eric Andersen3f980402001-04-04 17:31:15 +00003764 }
3765 p = reg[YDreg];
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003766 q = p + strlen(p);
Eric Andersen3f980402001-04-04 17:31:15 +00003767 for (cnt = 0; p <= q; p++) {
3768 if (*p == '\n')
3769 cnt++;
3770 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003771 status_line("%s %d lines (%d chars) using [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003772 buf, cnt, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003773#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003774 end_cmd_q(); // stop adding to q
3775 }
Paul Foxc51fc7b2008-03-06 01:34:23 +00003776 }
Eric Andersen3f980402001-04-04 17:31:15 +00003777 break;
3778 case 'k': // k- goto prev line, same col
3779 case VI_K_UP: // cursor key Up
3780 if (cmdcnt-- > 1) {
3781 do_cmd(c);
3782 } // repeat cnt
3783 dot_prev();
3784 dot = move_to_col(dot, ccol + offset); // try stay in same col
3785 break;
3786 case 'r': // r- replace the current char with user input
3787 c1 = get_one_char(); // get the replacement char
3788 if (*dot != '\n') {
3789 *dot = c1;
Denis Vlasenkob1759462008-06-20 20:20:54 +00003790 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003791 }
3792 end_cmd_q(); // stop adding to q
3793 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003794 case 't': // t- move to char prior to next x
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00003795 last_forward_char = get_one_char();
3796 do_cmd(';');
3797 if (*dot == last_forward_char)
3798 dot_left();
3799 last_forward_char= 0;
Eric Andersen822c3832001-05-07 17:37:43 +00003800 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003801 case 'w': // w- forward a word
3802 if (cmdcnt-- > 1) {
3803 do_cmd(c);
3804 } // repeat cnt
3805 if (isalnum(*dot) || *dot == '_') { // we are on ALNUM
3806 dot = skip_thing(dot, 1, FORWARD, S_END_ALNUM);
3807 } else if (ispunct(*dot)) { // we are on PUNCT
3808 dot = skip_thing(dot, 1, FORWARD, S_END_PUNCT);
3809 }
3810 if (dot < end - 1)
3811 dot++; // move over word
3812 if (isspace(*dot)) {
3813 dot = skip_thing(dot, 2, FORWARD, S_OVER_WS);
3814 }
3815 break;
3816 case 'z': // z-
3817 c1 = get_one_char(); // get the replacement char
3818 cnt = 0;
3819 if (c1 == '.')
3820 cnt = (rows - 2) / 2; // put dot at center
3821 if (c1 == '-')
3822 cnt = rows - 2; // put dot at bottom
3823 screenbegin = begin_line(dot); // start dot at top
3824 dot_scroll(cnt, -1);
3825 break;
3826 case '|': // |- move to column "cmdcnt"
3827 dot = move_to_col(dot, cmdcnt - 1); // try to move to column
3828 break;
3829 case '~': // ~- flip the case of letters a-z -> A-Z
3830 if (cmdcnt-- > 1) {
3831 do_cmd(c);
3832 } // repeat cnt
3833 if (islower(*dot)) {
3834 *dot = toupper(*dot);
Denis Vlasenkob1759462008-06-20 20:20:54 +00003835 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003836 } else if (isupper(*dot)) {
3837 *dot = tolower(*dot);
Denis Vlasenkob1759462008-06-20 20:20:54 +00003838 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003839 }
3840 dot_right();
3841 end_cmd_q(); // stop adding to q
3842 break;
3843 //----- The Cursor and Function Keys -----------------------------
3844 case VI_K_HOME: // Cursor Key Home
3845 dot_begin();
3846 break;
3847 // The Fn keys could point to do_macro which could translate them
3848 case VI_K_FUN1: // Function Key F1
3849 case VI_K_FUN2: // Function Key F2
3850 case VI_K_FUN3: // Function Key F3
3851 case VI_K_FUN4: // Function Key F4
3852 case VI_K_FUN5: // Function Key F5
3853 case VI_K_FUN6: // Function Key F6
3854 case VI_K_FUN7: // Function Key F7
3855 case VI_K_FUN8: // Function Key F8
3856 case VI_K_FUN9: // Function Key F9
3857 case VI_K_FUN10: // Function Key F10
3858 case VI_K_FUN11: // Function Key F11
3859 case VI_K_FUN12: // Function Key F12
3860 break;
3861 }
3862
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003863 dc1:
Eric Andersen3f980402001-04-04 17:31:15 +00003864 // if text[] just became empty, add back an empty line
3865 if (end == text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003866 char_insert(text, '\n'); // start empty buf with dummy line
Eric Andersen3f980402001-04-04 17:31:15 +00003867 dot = text;
3868 }
3869 // it is OK for dot to exactly equal to end, otherwise check dot validity
3870 if (dot != end) {
3871 dot = bound_dot(dot); // make sure "dot" is valid
3872 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003873#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003874 check_context(c); // update the current context
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003875#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003876
3877 if (!isdigit(c))
3878 cmdcnt = 0; // cmd was not a number, reset cmdcnt
3879 cnt = dot - begin_line(dot);
3880 // Try to stay off of the Newline
3881 if (*dot == '\n' && cnt > 0 && cmd_mode == 0)
3882 dot--;
3883}
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003884
Paul Fox35e9c5d2008-03-06 16:26:12 +00003885/* NB! the CRASHME code is unmaintained, and doesn't currently build */
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003886#if ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003887static int totalcmds = 0;
3888static int Mp = 85; // Movement command Probability
3889static int Np = 90; // Non-movement command Probability
3890static int Dp = 96; // Delete command Probability
3891static int Ip = 97; // Insert command Probability
3892static int Yp = 98; // Yank command Probability
3893static int Pp = 99; // Put command Probability
3894static int M = 0, N = 0, I = 0, D = 0, Y = 0, P = 0, U = 0;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003895static const char chars[20] = "\t012345 abcdABCD-=.$";
3896static const char *const words[20] = {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003897 "this", "is", "a", "test",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003898 "broadcast", "the", "emergency", "of",
3899 "system", "quick", "brown", "fox",
3900 "jumped", "over", "lazy", "dogs",
3901 "back", "January", "Febuary", "March"
3902};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003903static const char *const lines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003904 "You should have received a copy of the GNU General Public License\n",
3905 "char c, cm, *cmd, *cmd1;\n",
3906 "generate a command by percentages\n",
3907 "Numbers may be typed as a prefix to some commands.\n",
3908 "Quit, discarding changes!\n",
3909 "Forced write, if permission originally not valid.\n",
3910 "In general, any ex or ed command (such as substitute or delete).\n",
3911 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
3912 "Please get w/ me and I will go over it with you.\n",
3913 "The following is a list of scheduled, committed changes.\n",
3914 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
3915 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
3916 "Any question about transactions please contact Sterling Huxley.\n",
3917 "I will try to get back to you by Friday, December 31.\n",
3918 "This Change will be implemented on Friday.\n",
3919 "Let me know if you have problems accessing this;\n",
3920 "Sterling Huxley recently added you to the access list.\n",
3921 "Would you like to go to lunch?\n",
3922 "The last command will be automatically run.\n",
3923 "This is too much english for a computer geek.\n",
3924};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003925static char *multilines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003926 "You should have received a copy of the GNU General Public License\n",
3927 "char c, cm, *cmd, *cmd1;\n",
3928 "generate a command by percentages\n",
3929 "Numbers may be typed as a prefix to some commands.\n",
3930 "Quit, discarding changes!\n",
3931 "Forced write, if permission originally not valid.\n",
3932 "In general, any ex or ed command (such as substitute or delete).\n",
3933 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
3934 "Please get w/ me and I will go over it with you.\n",
3935 "The following is a list of scheduled, committed changes.\n",
3936 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
3937 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
3938 "Any question about transactions please contact Sterling Huxley.\n",
3939 "I will try to get back to you by Friday, December 31.\n",
3940 "This Change will be implemented on Friday.\n",
3941 "Let me know if you have problems accessing this;\n",
3942 "Sterling Huxley recently added you to the access list.\n",
3943 "Would you like to go to lunch?\n",
3944 "The last command will be automatically run.\n",
3945 "This is too much english for a computer geek.\n",
3946};
3947
3948// create a random command to execute
3949static void crash_dummy()
3950{
3951 static int sleeptime; // how long to pause between commands
3952 char c, cm, *cmd, *cmd1;
3953 int i, cnt, thing, rbi, startrbi, percent;
3954
3955 // "dot" movement commands
3956 cmd1 = " \n\r\002\004\005\006\025\0310^$-+wWeEbBhjklHL";
3957
3958 // is there already a command running?
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003959 if (chars_to_parse > 0)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003960 goto cd1;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003961 cd0:
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003962 startrbi = rbi = 0;
3963 sleeptime = 0; // how long to pause between commands
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003964 memset(readbuffer, '\0', sizeof(readbuffer));
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003965 // generate a command by percentages
3966 percent = (int) lrand48() % 100; // get a number from 0-99
3967 if (percent < Mp) { // Movement commands
3968 // available commands
3969 cmd = cmd1;
3970 M++;
3971 } else if (percent < Np) { // non-movement commands
3972 cmd = "mz<>\'\""; // available commands
3973 N++;
3974 } else if (percent < Dp) { // Delete commands
3975 cmd = "dx"; // available commands
3976 D++;
3977 } else if (percent < Ip) { // Inset commands
3978 cmd = "iIaAsrJ"; // available commands
3979 I++;
3980 } else if (percent < Yp) { // Yank commands
3981 cmd = "yY"; // available commands
3982 Y++;
3983 } else if (percent < Pp) { // Put commands
3984 cmd = "pP"; // available commands
3985 P++;
3986 } else {
3987 // We do not know how to handle this command, try again
3988 U++;
3989 goto cd0;
3990 }
3991 // randomly pick one of the available cmds from "cmd[]"
3992 i = (int) lrand48() % strlen(cmd);
3993 cm = cmd[i];
3994 if (strchr(":\024", cm))
3995 goto cd0; // dont allow colon or ctrl-T commands
3996 readbuffer[rbi++] = cm; // put cmd into input buffer
3997
3998 // now we have the command-
3999 // there are 1, 2, and multi char commands
4000 // find out which and generate the rest of command as necessary
4001 if (strchr("dmryz<>\'\"", cm)) { // 2-char commands
4002 cmd1 = " \n\r0$^-+wWeEbBhjklHL";
4003 if (cm == 'm' || cm == '\'' || cm == '\"') { // pick a reg[]
4004 cmd1 = "abcdefghijklmnopqrstuvwxyz";
4005 }
4006 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
4007 c = cmd1[thing];
4008 readbuffer[rbi++] = c; // add movement to input buffer
4009 }
4010 if (strchr("iIaAsc", cm)) { // multi-char commands
4011 if (cm == 'c') {
4012 // change some thing
4013 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
4014 c = cmd1[thing];
4015 readbuffer[rbi++] = c; // add movement to input buffer
4016 }
4017 thing = (int) lrand48() % 4; // what thing to insert
4018 cnt = (int) lrand48() % 10; // how many to insert
4019 for (i = 0; i < cnt; i++) {
4020 if (thing == 0) { // insert chars
4021 readbuffer[rbi++] = chars[((int) lrand48() % strlen(chars))];
4022 } else if (thing == 1) { // insert words
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004023 strcat(readbuffer, words[(int) lrand48() % 20]);
4024 strcat(readbuffer, " ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004025 sleeptime = 0; // how fast to type
4026 } else if (thing == 2) { // insert lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004027 strcat(readbuffer, lines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004028 sleeptime = 0; // how fast to type
4029 } else { // insert multi-lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004030 strcat(readbuffer, multilines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004031 sleeptime = 0; // how fast to type
4032 }
4033 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004034 strcat(readbuffer, "\033");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004035 }
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00004036 chars_to_parse = strlen(readbuffer);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004037 cd1:
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004038 totalcmds++;
4039 if (sleeptime > 0)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004040 mysleep(sleeptime); // sleep 1/100 sec
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004041}
4042
4043// test to see if there are any errors
4044static void crash_test()
4045{
4046 static time_t oldtim;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004047
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004048 time_t tim;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004049 char d[2], msg[80];
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004050
4051 msg[0] = '\0';
4052 if (end < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004053 strcat(msg, "end<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004054 }
4055 if (end > textend) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004056 strcat(msg, "end>textend ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004057 }
4058 if (dot < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004059 strcat(msg, "dot<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004060 }
4061 if (dot > end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004062 strcat(msg, "dot>end ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004063 }
4064 if (screenbegin < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004065 strcat(msg, "screenbegin<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004066 }
4067 if (screenbegin > end - 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004068 strcat(msg, "screenbegin>end-1 ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004069 }
4070
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004071 if (msg[0]) {
Glenn L McGrath7127b582002-12-03 21:48:15 +00004072 printf("\n\n%d: \'%c\' %s\n\n\n%s[Hit return to continue]%s",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004073 totalcmds, last_input_char, msg, SOs, SOn);
4074 fflush(stdout);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00004075 while (safe_read(STDIN_FILENO, d, 1) > 0) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004076 if (d[0] == '\n' || d[0] == '\r')
4077 break;
4078 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004079 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004080 tim = time(NULL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004081 if (tim >= (oldtim + 3)) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004082 sprintf(status_buffer,
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004083 "Tot=%d: M=%d N=%d I=%d D=%d Y=%d P=%d U=%d size=%d",
4084 totalcmds, M, N, I, D, Y, P, U, end - text + 1);
4085 oldtim = tim;
4086 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004087}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004088#endif