blob: 50dda7f3ae0a47804d561b8c077d411fc7d133a8 [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
Denis Vlasenkoded6ad32008-10-14 12:26:30 +000099#if ENABLE_FEATURE_VI_DOT_CMD || ENABLE_FEATURE_VI_YANKMARK
100// cmds modifying text[]
101// vda: removed "aAiIs" as they switch us into insert mode
102// and remembering input for replay after them makes no sense
103static const char modifying_cmds[] = "cCdDJoOpPrRxX<>~";
104#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000105
Rob Landleybc68cd12006-03-10 19:22:06 +0000106enum {
107 YANKONLY = FALSE,
108 YANKDEL = TRUE,
109 FORWARD = 1, // code depends on "1" for array index
110 BACK = -1, // code depends on "-1" for array index
111 LIMITED = 0, // how much of text[] in char_search
112 FULL = 1, // how much of text[] in char_search
Eric Andersen3f980402001-04-04 17:31:15 +0000113
Rob Landleybc68cd12006-03-10 19:22:06 +0000114 S_BEFORE_WS = 1, // used in skip_thing() for moving "dot"
115 S_TO_WS = 2, // used in skip_thing() for moving "dot"
116 S_OVER_WS = 3, // used in skip_thing() for moving "dot"
117 S_END_PUNCT = 4, // used in skip_thing() for moving "dot"
Denis Vlasenko8e858e22007-03-07 09:35:43 +0000118 S_END_ALNUM = 5, // used in skip_thing() for moving "dot"
Rob Landleybc68cd12006-03-10 19:22:06 +0000119};
Eric Andersen3f980402001-04-04 17:31:15 +0000120
Denis Vlasenkob1759462008-06-20 20:20:54 +0000121
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000122/* vi.c expects chars to be unsigned. */
123/* busybox build system provides that, but it's better */
124/* to audit and fix the source */
Eric Andersen3f980402001-04-04 17:31:15 +0000125
Denis Vlasenkob1759462008-06-20 20:20:54 +0000126struct globals {
127 /* many references - keep near the top of globals */
128 char *text, *end; // pointers to the user data in memory
129 char *dot; // where all the action takes place
130 int text_size; // size of the allocated buffer
131
132 /* the rest */
133 smallint vi_setops;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000134#define VI_AUTOINDENT 1
135#define VI_SHOWMATCH 2
136#define VI_IGNORECASE 4
137#define VI_ERR_METHOD 8
138#define autoindent (vi_setops & VI_AUTOINDENT)
139#define showmatch (vi_setops & VI_SHOWMATCH )
140#define ignorecase (vi_setops & VI_IGNORECASE)
141/* indicate error with beep or flash */
142#define err_method (vi_setops & VI_ERR_METHOD)
143
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000144#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkob1759462008-06-20 20:20:54 +0000145 smallint readonly_mode;
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +0000146#define SET_READONLY_FILE(flags) ((flags) |= 0x01)
147#define SET_READONLY_MODE(flags) ((flags) |= 0x02)
148#define UNSET_READONLY_FILE(flags) ((flags) &= 0xfe)
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000149#else
Denis Vlasenkob1759462008-06-20 20:20:54 +0000150#define SET_READONLY_FILE(flags) ((void)0)
151#define SET_READONLY_MODE(flags) ((void)0)
152#define UNSET_READONLY_FILE(flags) ((void)0)
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000153#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000154
Denis Vlasenkob1759462008-06-20 20:20:54 +0000155 smallint editing; // >0 while we are editing a file
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000156 // [code audit says "can be 0, 1 or 2 only"]
Denis Vlasenkob1759462008-06-20 20:20:54 +0000157 smallint cmd_mode; // 0=command 1=insert 2=replace
158 int file_modified; // buffer contents changed (counter, not flag!)
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000159 int last_file_modified; // = -1;
Denis Vlasenkob1759462008-06-20 20:20:54 +0000160 int fn_start; // index of first cmd line file name
161 int save_argc; // how many file names on cmd line
162 int cmdcnt; // repetition count
163 unsigned rows, columns; // the terminal screen is this size
164 int crow, ccol; // cursor is on Crow x Ccol
165 int offset; // chars scrolled off the screen to the left
166 int have_status_msg; // is default edit status needed?
167 // [don't make smallint!]
168 int last_status_cksum; // hash of current status line
169 char *current_filename;
170 char *screenbegin; // index into text[], of top line on the screen
171 char *screen; // pointer to the virtual screen buffer
172 int screensize; // and its size
173 int tabstop;
174 char erase_char; // the users erase character
175 char last_input_char; // last char read from user
176 char last_forward_char; // last char searched for with 'f'
177
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000178#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkob1759462008-06-20 20:20:54 +0000179 smallint adding2q; // are we currently adding user input to q
180 int lmc_len; // length of last_modifying_cmd
181 char *ioq, *ioq_start; // pointer to string for get_one_char to "read"
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000182#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000183#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Denis Vlasenkob1759462008-06-20 20:20:54 +0000184 int last_row; // where the cursor was last moved to
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000185#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000186#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkob1759462008-06-20 20:20:54 +0000187 int my_pid;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000188#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000189#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkob1759462008-06-20 20:20:54 +0000190 char *last_search_pattern; // last pattern from a '/' or '?' search
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000191#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000192 int chars_to_parse;
193 /* former statics */
194#if ENABLE_FEATURE_VI_YANKMARK
195 char *edit_file__cur_line;
196#endif
197 int refresh__old_offset;
198 int format_edit_status__tot;
Eric Andersen3f980402001-04-04 17:31:15 +0000199
Denis Vlasenkob1759462008-06-20 20:20:54 +0000200 /* a few references only */
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000201#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000202 int YDreg, Ureg; // default delete register and orig line for "U"
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000203 char *reg[28]; // named register a-z, "D", and "U" 0-25,26,27
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000204 char *mark[28]; // user marks points somewhere in text[]- a-z and previous context ''
205 char *context_start, *context_end;
206#endif
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000207#if ENABLE_FEATURE_VI_USE_SIGNALS
Denis Vlasenkob1759462008-06-20 20:20:54 +0000208 sigjmp_buf restart; // catch_sig()
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000209#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000210 struct termios term_orig, term_vi; // remember what the cooked mode was
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000211#if ENABLE_FEATURE_VI_COLON
212 char *initial_cmds[3]; // currently 2 entries, NULL terminated
213#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000214 // Should be just enough to hold a key sequence,
Denis Vlasenko25497c12008-10-14 10:25:05 +0000215 // but CRASHME mode uses it as generated command buffer too
216#if ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko1dfeeeb2008-10-18 19:04:37 +0000217 char readbuffer[128];
Denis Vlasenko25497c12008-10-14 10:25:05 +0000218#else
Denis Vlasenko1dfeeeb2008-10-18 19:04:37 +0000219 char readbuffer[8];
Denis Vlasenko25497c12008-10-14 10:25:05 +0000220#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000221#define STATUS_BUFFER_LEN 200
222 char status_buffer[STATUS_BUFFER_LEN]; // messages to the user
223#if ENABLE_FEATURE_VI_DOT_CMD
224 char last_modifying_cmd[MAX_INPUT_LEN]; // last modifying cmd for "."
225#endif
226 char get_input_line__buf[MAX_INPUT_LEN]; /* former static */
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000227
228 char scr_out_buf[MAX_SCR_COLS + MAX_TABSTOP * 2];
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000229};
230#define G (*ptr_to_globals)
231#define text (G.text )
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000232#define text_size (G.text_size )
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000233#define end (G.end )
234#define dot (G.dot )
235#define reg (G.reg )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000236
237#define vi_setops (G.vi_setops )
238#define editing (G.editing )
239#define cmd_mode (G.cmd_mode )
240#define file_modified (G.file_modified )
241#define last_file_modified (G.last_file_modified )
242#define fn_start (G.fn_start )
243#define save_argc (G.save_argc )
244#define cmdcnt (G.cmdcnt )
245#define rows (G.rows )
246#define columns (G.columns )
247#define crow (G.crow )
248#define ccol (G.ccol )
249#define offset (G.offset )
250#define status_buffer (G.status_buffer )
251#define have_status_msg (G.have_status_msg )
252#define last_status_cksum (G.last_status_cksum )
253#define current_filename (G.current_filename )
254#define screen (G.screen )
255#define screensize (G.screensize )
256#define screenbegin (G.screenbegin )
257#define tabstop (G.tabstop )
258#define erase_char (G.erase_char )
259#define last_input_char (G.last_input_char )
260#define last_forward_char (G.last_forward_char )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000261#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkob1759462008-06-20 20:20:54 +0000262#define readonly_mode (G.readonly_mode )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000263#else
264#define readonly_mode 0
265#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000266#define adding2q (G.adding2q )
267#define lmc_len (G.lmc_len )
268#define ioq (G.ioq )
269#define ioq_start (G.ioq_start )
270#define last_row (G.last_row )
271#define my_pid (G.my_pid )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000272#define last_search_pattern (G.last_search_pattern)
273#define chars_to_parse (G.chars_to_parse )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000274
Denis Vlasenkob1759462008-06-20 20:20:54 +0000275#define edit_file__cur_line (G.edit_file__cur_line)
276#define refresh__old_offset (G.refresh__old_offset)
277#define format_edit_status__tot (G.format_edit_status__tot)
278
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000279#define YDreg (G.YDreg )
280#define Ureg (G.Ureg )
281#define mark (G.mark )
282#define context_start (G.context_start )
283#define context_end (G.context_end )
284#define restart (G.restart )
285#define term_orig (G.term_orig )
286#define term_vi (G.term_vi )
287#define initial_cmds (G.initial_cmds )
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000288#define readbuffer (G.readbuffer )
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000289#define scr_out_buf (G.scr_out_buf )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000290#define last_modifying_cmd (G.last_modifying_cmd )
291#define get_input_line__buf (G.get_input_line__buf)
292
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000293#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000294 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenkob1759462008-06-20 20:20:54 +0000295 last_file_modified = -1; \
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000296} while (0)
Eric Andersen3f980402001-04-04 17:31:15 +0000297
Denis Vlasenkob1759462008-06-20 20:20:54 +0000298
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000299static int init_text_buffer(char *); // init from file or create new
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000300static void edit_file(char *); // edit one file
301static void do_cmd(char); // execute a command
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000302static int next_tabstop(int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000303static void sync_cursor(char *, int *, int *); // synchronize the screen cursor to dot
304static char *begin_line(char *); // return pointer to cur line B-o-l
305static char *end_line(char *); // return pointer to cur line E-o-l
306static char *prev_line(char *); // return pointer to prev line B-o-l
307static char *next_line(char *); // return pointer to next line B-o-l
308static char *end_screen(void); // get pointer to last char on screen
309static int count_lines(char *, char *); // count line from start to stop
310static char *find_line(int); // find begining of line #li
311static char *move_to_col(char *, int); // move "p" to column l
Eric Andersen3f980402001-04-04 17:31:15 +0000312static void dot_left(void); // move dot left- dont leave line
313static void dot_right(void); // move dot right- dont leave line
314static void dot_begin(void); // move dot to B-o-l
315static void dot_end(void); // move dot to E-o-l
316static void dot_next(void); // move dot to next line B-o-l
317static void dot_prev(void); // move dot to prev line B-o-l
318static void dot_scroll(int, int); // move the screen up or down
319static void dot_skip_over_ws(void); // move dot pat WS
320static void dot_delete(void); // delete the char at 'dot'
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000321static char *bound_dot(char *); // make sure text[0] <= P < "end"
322static char *new_screen(int, int); // malloc virtual screen memory
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000323static char *char_insert(char *, char); // insert the char c at 'p'
324static char *stupid_insert(char *, char); // stupidly insert the char c at 'p'
Paul Foxc51fc7b2008-03-06 01:34:23 +0000325static int find_range(char **, char **, char); // return pointers for an object
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000326static int st_test(char *, int, int, char *); // helper for skip_thing()
327static char *skip_thing(char *, int, int, int); // skip some object
328static char *find_pair(char *, char); // find matching pair () [] {}
329static char *text_hole_delete(char *, char *); // at "p", delete a 'size' byte hole
330static char *text_hole_make(char *, int); // at "p", make a 'size' byte hole
331static char *yank_delete(char *, char *, int, int); // yank text[] into register then delete
Eric Andersen3f980402001-04-04 17:31:15 +0000332static void show_help(void); // display some help info
Eric Andersen3f980402001-04-04 17:31:15 +0000333static void rawmode(void); // set "raw" mode on tty
334static void cookmode(void); // return to "cooked" mode on tty
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000335// sleep for 'h' 1/100 seconds, return 1/0 if stdin is (ready for read)/(not ready)
336static int mysleep(int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000337static char readit(void); // read (maybe cursor) key from stdin
338static char get_one_char(void); // read 1 char from stdin
339static int file_size(const char *); // what is the byte size of "fn"
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000340#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000341static int file_insert(const char *, char *, int);
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000342#else
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000343static int file_insert(const char *, char *);
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000344#endif
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000345static int file_write(char *, char *, char *);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +0000346#if !ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
347#define place_cursor(a, b, optimize) place_cursor(a, b)
348#endif
Eric Andersen822c3832001-05-07 17:37:43 +0000349static void place_cursor(int, int, int);
Eric Andersenbff7a602001-11-17 07:15:43 +0000350static void screen_erase(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000351static void clear_to_eol(void);
352static void clear_to_eos(void);
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000353static void go_bottom_and_clear_to_eol(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000354static void standout_start(void); // send "start reverse video" sequence
355static void standout_end(void); // send "end reverse video" sequence
356static void flash(int); // flash the terminal screen
Eric Andersen3f980402001-04-04 17:31:15 +0000357static void show_status_line(void); // put a message on the bottom line
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000358static void status_line(const char *, ...); // print to status buf
359static void status_line_bold(const char *, ...);
360static void not_implemented(const char *); // display "Not implemented" message
Paul Fox8552aec2005-09-16 12:20:05 +0000361static int format_edit_status(void); // format file status on status line
Eric Andersen3f980402001-04-04 17:31:15 +0000362static void redraw(int); // force a full screen refresh
Denis Vlasenko68404f12008-03-17 09:00:54 +0000363static char* format_line(char* /*, int*/);
Eric Andersen3f980402001-04-04 17:31:15 +0000364static void refresh(int); // update the terminal from screen[]
365
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000366static void Indicate_Error(void); // use flash or beep to indicate error
367#define indicate_error(c) Indicate_Error()
Paul Fox90372ed2005-10-09 14:26:26 +0000368static void Hit_Return(void);
369
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000370#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000371static char *char_search(char *, const char *, int, int); // search for pattern starting at p
372static int mycmp(const char *, const char *, int); // string cmp based in "ignorecase"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000373#endif
374#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000375static char *get_one_address(char *, int *); // get colon addr, if present
376static char *get_address(char *, int *, int *); // get two colon addrs, if present
377static void colon(char *); // execute the "colon" mode cmds
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000378#endif
379#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000380static void winch_sig(int); // catch window size changes
381static void suspend_sig(int); // catch ctrl-Z
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000382static void catch_sig(int); // catch ctrl-C and alarm time-outs
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000383#endif
384#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000385static void start_new_cmd_q(char); // new queue for command
Eric Andersenbff7a602001-11-17 07:15:43 +0000386static void end_cmd_q(void); // stop saving input chars
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000387#else
388#define end_cmd_q() ((void)0)
389#endif
390#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000391static void showmatching(char *); // show the matching pair () [] {}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000392#endif
393#if ENABLE_FEATURE_VI_YANKMARK || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000394static char *string_insert(char *, char *); // insert the string at 'p'
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000395#endif
396#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000397static char *text_yank(char *, char *, int); // save copy of "p" into a register
398static char what_reg(void); // what is letter of current YDreg
399static void check_context(char); // remember context for '' command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000400#endif
401#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000402static void crash_dummy();
403static void crash_test();
404static int crashme = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000405#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000406
407
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000408static void write1(const char *out)
409{
410 fputs(out, stdout);
411}
412
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000413int vi_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +0000414int vi_main(int argc, char **argv)
Eric Andersen3f980402001-04-04 17:31:15 +0000415{
Eric Andersend402edf2001-04-04 19:29:48 +0000416 int c;
Denis Vlasenkob1759462008-06-20 20:20:54 +0000417
418 INIT_G();
Eric Andersen3f980402001-04-04 17:31:15 +0000419
Denis Vlasenkocd5c7862007-05-17 16:37:22 +0000420#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000421 my_pid = getpid();
422#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000423#if ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000424 srand((long) my_pid);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000425#endif
Denis Vlasenko2414a962007-07-18 22:03:40 +0000426#ifdef NO_SUCH_APPLET_YET
427 /* If we aren't "vi", we are "view" */
428 if (ENABLE_FEATURE_VI_READONLY && applet_name[2]) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000429 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000430 }
Denis Vlasenko2414a962007-07-18 22:03:40 +0000431#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000432
Bernhard Reutner-Fischer73f56bb2007-09-22 21:18:46 +0000433 vi_setops = VI_AUTOINDENT | VI_SHOWMATCH | VI_IGNORECASE;
Denis Vlasenkof9234132007-03-21 00:03:42 +0000434 // 1- process $HOME/.exrc file (not inplemented yet)
Eric Andersen3f980402001-04-04 17:31:15 +0000435 // 2- process EXINIT variable from environment
436 // 3- process command line args
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000437#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000438 {
439 char *p = getenv("EXINIT");
440 if (p && *p)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000441 initial_cmds[0] = xstrndup(p, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000442 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000443#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000444 while ((c = getopt(argc, argv, "hCRH" USE_FEATURE_VI_COLON("c:"))) != -1) {
Eric Andersen3f980402001-04-04 17:31:15 +0000445 switch (c) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000446#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000447 case 'C':
448 crashme = 1;
449 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000450#endif
451#if ENABLE_FEATURE_VI_READONLY
Eric Andersen3f980402001-04-04 17:31:15 +0000452 case 'R': // Read-only flag
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000453 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000454 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000455#endif
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000456#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000457 case 'c': // cmd line vi command
458 if (*optarg)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000459 initial_cmds[initial_cmds[0] != 0] = xstrndup(optarg, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000460 break;
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000461#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000462 case 'H':
Eric Andersen3f980402001-04-04 17:31:15 +0000463 show_help();
Paul Fox35e9c5d2008-03-06 16:26:12 +0000464 /* fall through */
Paul Fox35e9c5d2008-03-06 16:26:12 +0000465 default:
Denis Vlasenkoc6938402008-03-24 02:18:03 +0000466 bb_show_usage();
Eric Andersendd8500b2001-07-02 18:06:14 +0000467 return 1;
Eric Andersen3f980402001-04-04 17:31:15 +0000468 }
469 }
470
471 // The argv array can be used by the ":next" and ":rewind" commands
472 // save optind.
473 fn_start = optind; // remember first file name for :next and :rew
474 save_argc = argc;
475
476 //----- This is the main file handling loop --------------
477 if (optind >= argc) {
Eric Andersen3f980402001-04-04 17:31:15 +0000478 edit_file(0);
479 } else {
480 for (; optind < argc; optind++) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000481 edit_file(argv[optind]);
Eric Andersen3f980402001-04-04 17:31:15 +0000482 }
483 }
484 //-----------------------------------------------------------
485
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000486 return 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000487}
488
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000489/* read text from file or create an empty buf */
490/* will also update current_filename */
491static int init_text_buffer(char *fn)
492{
493 int rc;
494 int size = file_size(fn); // file size. -1 means does not exist.
495
496 /* allocate/reallocate text buffer */
497 free(text);
Denis Vlasenkob1759462008-06-20 20:20:54 +0000498 text_size = size + 10240;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000499 screenbegin = dot = end = text = xzalloc(text_size);
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000500
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000501 if (fn != current_filename) {
502 free(current_filename);
503 current_filename = xstrdup(fn);
504 }
505 if (size < 0) {
506 // file dont exist. Start empty buf with dummy line
507 char_insert(text, '\n');
508 rc = 0;
509 } else {
510 rc = file_insert(fn, text
511 USE_FEATURE_VI_READONLY(, 1));
512 }
513 file_modified = 0;
514 last_file_modified = -1;
515#if ENABLE_FEATURE_VI_YANKMARK
516 /* init the marks. */
517 memset(mark, 0, sizeof(mark));
518#endif
519 return rc;
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000520}
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000521
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000522static void edit_file(char *fn)
Eric Andersen3f980402001-04-04 17:31:15 +0000523{
Denis Vlasenkob1759462008-06-20 20:20:54 +0000524#if ENABLE_FEATURE_VI_YANKMARK
525#define cur_line edit_file__cur_line
526#endif
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000527 char c;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000528 int size;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000529#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000530 int sig;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000531#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000532
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000533 editing = 1; // 0 = exit, 1 = one file, 2 = multiple files
Eric Andersen3f980402001-04-04 17:31:15 +0000534 rawmode();
535 rows = 24;
536 columns = 80;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000537 size = 0;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000538 if (ENABLE_FEATURE_VI_WIN_RESIZE) {
Rob Landleye5e1a102006-06-21 01:15:36 +0000539 get_terminal_width_height(0, &columns, &rows);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000540 if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS;
541 if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS;
542 }
Eric Andersen3f980402001-04-04 17:31:15 +0000543 new_screen(rows, columns); // get memory for virtual screen
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000544 init_text_buffer(fn);
Eric Andersen3f980402001-04-04 17:31:15 +0000545
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000546#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000547 YDreg = 26; // default Yank/Delete reg
548 Ureg = 27; // hold orig line for "U" cmd
Eric Andersen3f980402001-04-04 17:31:15 +0000549 mark[26] = mark[27] = text; // init "previous context"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000550#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000551
Eric Andersen3f980402001-04-04 17:31:15 +0000552 last_forward_char = last_input_char = '\0';
553 crow = 0;
554 ccol = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000555
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000556#if ENABLE_FEATURE_VI_USE_SIGNALS
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000557 catch_sig(0);
Eric Andersen3f980402001-04-04 17:31:15 +0000558 signal(SIGWINCH, winch_sig);
559 signal(SIGTSTP, suspend_sig);
Paul Fox2724fa92008-03-17 15:28:07 +0000560 sig = sigsetjmp(restart, 1);
Eric Andersen3f980402001-04-04 17:31:15 +0000561 if (sig != 0) {
Eric Andersen1c0d3112001-04-16 15:46:44 +0000562 screenbegin = dot = text;
Eric Andersen3f980402001-04-04 17:31:15 +0000563 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000564#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000565
Eric Andersen3f980402001-04-04 17:31:15 +0000566 cmd_mode = 0; // 0=command 1=insert 2='R'eplace
567 cmdcnt = 0;
568 tabstop = 8;
569 offset = 0; // no horizontal offset
570 c = '\0';
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000571#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000572 free(ioq_start);
Paul Foxc51fc7b2008-03-06 01:34:23 +0000573 ioq = ioq_start = NULL;
574 lmc_len = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000575 adding2q = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000576#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000577
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000578#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000579 {
580 char *p, *q;
581 int n = 0;
582
583 while ((p = initial_cmds[n])) {
584 do {
585 q = p;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000586 p = strchr(q, '\n');
Denis Vlasenkof9234132007-03-21 00:03:42 +0000587 if (p)
Denis Vlasenko51742f42007-04-12 00:32:05 +0000588 while (*p == '\n')
Denis Vlasenkof9234132007-03-21 00:03:42 +0000589 *p++ = '\0';
590 if (*q)
591 colon(q);
592 } while (p);
593 free(initial_cmds[n]);
594 initial_cmds[n] = NULL;
595 n++;
596 }
597 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000598#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000599 redraw(FALSE); // dont force every col re-draw
Eric Andersen3f980402001-04-04 17:31:15 +0000600 //------This is the main Vi cmd handling loop -----------------------
601 while (editing > 0) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000602#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000603 if (crashme > 0) {
604 if ((end - text) > 1) {
605 crash_dummy(); // generate a random command
606 } else {
607 crashme = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000608 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 +0000609 refresh(FALSE);
610 }
611 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000612#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000613 last_input_char = c = get_one_char(); // get a cmd from user
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000614#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000615 // save a copy of the current line- for the 'U" command
616 if (begin_line(dot) != cur_line) {
617 cur_line = begin_line(dot);
618 text_yank(begin_line(dot), end_line(dot), Ureg);
619 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000620#endif
621#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +0000622 // These are commands that change text[].
623 // Remember the input for the "." command
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000624 if (!adding2q && ioq_start == NULL
Denis Vlasenkoded6ad32008-10-14 12:26:30 +0000625 && cmd_mode == 0 /* command mode */
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
Denis Vlasenko8ef801b2008-10-16 09:46:07 +0000632
Eric Andersen3f980402001-04-04 17:31:15 +0000633 // poll to see if there is input already waiting. if we are
634 // not able to display output fast enough to keep up, skip
635 // the display update until we catch up with input.
Denis Vlasenko8ef801b2008-10-16 09:46:07 +0000636 if (!chars_to_parse && mysleep(0) == 0) {
637 // no input pending - so update output
Eric Andersen3f980402001-04-04 17:31:15 +0000638 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 Vlasenko267e16c2008-10-14 10:34:41 +0000648 go_bottom_and_clear_to_eol();
Eric Andersen3f980402001-04-04 17:31:15 +0000649 cookmode();
Denis Vlasenkob1759462008-06-20 20:20:54 +0000650#undef cur_line
Eric Andersen3f980402001-04-04 17:31:15 +0000651}
652
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000653//----- The Colon commands -------------------------------------
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000654#if ENABLE_FEATURE_VI_COLON
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000655static char *get_one_address(char *p, int *addr) // get colon addr, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000656{
657 int st;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000658 char *q;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000659 USE_FEATURE_VI_YANKMARK(char c;)
660 USE_FEATURE_VI_SEARCH(char *pat;)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000661
662 *addr = -1; // assume no addr
663 if (*p == '.') { // the current line
664 p++;
665 q = begin_line(dot);
666 *addr = count_lines(text, q);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000667 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000668#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000669 else if (*p == '\'') { // is this a mark addr
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000670 p++;
671 c = tolower(*p);
672 p++;
673 if (c >= 'a' && c <= 'z') {
674 // we have a mark
675 c = c - 'a';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000676 q = mark[(unsigned char) c];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000677 if (q != NULL) { // is mark valid
678 *addr = count_lines(text, q); // count lines
679 }
680 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000681 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000682#endif
683#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000684 else if (*p == '/') { // a search pattern
685 q = strchrnul(++p, '/');
686 pat = xstrndup(p, q - p); // save copy of pattern
687 p = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000688 if (*p == '/')
689 p++;
690 q = char_search(dot, pat, FORWARD, FULL);
691 if (q != NULL) {
692 *addr = count_lines(text, q);
693 }
694 free(pat);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000695 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000696#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000697 else if (*p == '$') { // the last line in file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000698 p++;
699 q = begin_line(end - 1);
700 *addr = count_lines(text, q);
701 } else if (isdigit(*p)) { // specific line number
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000702 sscanf(p, "%d%n", addr, &st);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000703 p += st;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000704 } else {
705 // unrecognised address - assume -1
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000706 *addr = -1;
707 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000708 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000709}
710
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000711static char *get_address(char *p, int *b, int *e) // get two colon addrs, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000712{
713 //----- get the address' i.e., 1,3 'a,'b -----
714 // get FIRST addr, if present
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000715 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000716 p++; // skip over leading spaces
717 if (*p == '%') { // alias for 1,$
718 p++;
719 *b = 1;
720 *e = count_lines(text, end-1);
721 goto ga0;
722 }
723 p = get_one_address(p, b);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000724 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000725 p++;
Eric Andersenaff114c2004-04-14 17:51:38 +0000726 if (*p == ',') { // is there a address separator
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000727 p++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000728 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000729 p++;
730 // get SECOND addr, if present
731 p = get_one_address(p, e);
732 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000733 ga0:
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000734 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000735 p++; // skip over trailing spaces
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000736 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000737}
738
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000739#if ENABLE_FEATURE_VI_SET && ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000740static void setops(const char *args, const char *opname, int flg_no,
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000741 const char *short_opname, int opt)
742{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000743 const char *a = args + flg_no;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000744 int l = strlen(opname) - 1; /* opname have + ' ' */
745
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000746 if (strncasecmp(a, opname, l) == 0
747 || strncasecmp(a, short_opname, 2) == 0
748 ) {
749 if (flg_no)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000750 vi_setops &= ~opt;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000751 else
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000752 vi_setops |= opt;
753 }
754}
755#endif
756
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000757// buf must be no longer than MAX_INPUT_LEN!
758static void colon(char *buf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000759{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000760 char c, *orig_buf, *buf1, *q, *r;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000761 char *fn, cmd[MAX_INPUT_LEN], args[MAX_INPUT_LEN];
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000762 int i, l, li, ch, b, e;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000763 int useforce, forced = FALSE;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000764
765 // :3154 // if (-e line 3154) goto it else stay put
766 // :4,33w! foo // write a portion of buffer to file "foo"
767 // :w // write all of buffer to current file
768 // :q // quit
769 // :q! // quit- dont care about modified file
770 // :'a,'z!sort -u // filter block through sort
771 // :'f // goto mark "f"
772 // :'fl // list literal the mark "f" line
773 // :.r bar // read file "bar" into buffer before dot
774 // :/123/,/abc/d // delete lines from "123" line to "abc" line
775 // :/xyz/ // goto the "xyz" line
776 // :s/find/replace/ // substitute pattern "find" with "replace"
777 // :!<cmd> // run <cmd> then return
778 //
Eric Andersen165e8cb2004-07-20 06:44:46 +0000779
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000780 if (!buf[0])
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000781 goto vc1;
782 if (*buf == ':')
783 buf++; // move past the ':'
784
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000785 li = ch = i = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000786 b = e = -1;
787 q = text; // assume 1,$ for the range
788 r = end - 1;
789 li = count_lines(text, end - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000790 fn = current_filename;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000791
792 // look for optional address(es) :. :1 :1,9 :'q,'a :%
793 buf = get_address(buf, &b, &e);
794
795 // remember orig command line
796 orig_buf = buf;
797
798 // get the COMMAND into cmd[]
799 buf1 = cmd;
800 while (*buf != '\0') {
801 if (isspace(*buf))
802 break;
803 *buf1++ = *buf++;
804 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000805 *buf1 = '\0';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000806 // get any ARGuments
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000807 while (isblank(*buf))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000808 buf++;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000809 strcpy(args, buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000810 useforce = FALSE;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000811 buf1 = last_char_is(cmd, '!');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000812 if (buf1) {
813 useforce = TRUE;
814 *buf1 = '\0'; // get rid of !
815 }
816 if (b >= 0) {
817 // if there is only one addr, then the addr
818 // is the line number of the single line the
819 // user wants. So, reset the end
820 // pointer to point at end of the "b" line
821 q = find_line(b); // what line is #b
822 r = end_line(q);
823 li = 1;
824 }
825 if (e >= 0) {
826 // we were given two addrs. change the
827 // end pointer to the addr given by user.
828 r = find_line(e); // what line is #e
829 r = end_line(r);
830 li = e - b + 1;
831 }
832 // ------------ now look for the command ------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000833 i = strlen(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000834 if (i == 0) { // :123CR goto line #123
835 if (b >= 0) {
836 dot = find_line(b); // what line is #b
837 dot_skip_over_ws();
838 }
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000839 }
840#if ENABLE_FEATURE_ALLOW_EXEC
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000841 else if (strncmp(cmd, "!", 1) == 0) { // run a cmd
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000842 int retcode;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000843 // :!ls run the <cmd>
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000844 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000845 cookmode();
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000846 retcode = system(orig_buf + 1); // run the cmd
847 if (retcode)
848 printf("\nshell returned %i\n\n", retcode);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000849 rawmode();
850 Hit_Return(); // let user see results
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000851 }
852#endif
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000853 else if (strncmp(cmd, "=", i) == 0) { // where is the address
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000854 if (b < 0) { // no addr given- use defaults
855 b = e = count_lines(text, dot);
856 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000857 status_line("%d", b);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000858 } else if (strncasecmp(cmd, "delete", i) == 0) { // delete lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000859 if (b < 0) { // no addr given- use defaults
860 q = begin_line(dot); // assume .,. for the range
861 r = end_line(dot);
862 }
863 dot = yank_delete(q, r, 1, YANKDEL); // save, then delete lines
864 dot_skip_over_ws();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000865 } else if (strncasecmp(cmd, "edit", i) == 0) { // Edit a file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000866 // don't edit, if the current file has been modified
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000867 if (file_modified && !useforce) {
868 status_line_bold("No write since last change (:edit! overrides)");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000869 goto vc1;
870 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000871 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000872 // the user supplied a file name
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000873 fn = args;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000874 } else if (current_filename && current_filename[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000875 // no user supplied name- use the current filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000876 // fn = current_filename; was set by default
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000877 } else {
878 // no user file name, no current name- punt
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000879 status_line_bold("No current filename");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000880 goto vc1;
881 }
882
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000883 if (init_text_buffer(fn) < 0)
884 goto vc1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000885
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000886#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000887 if (Ureg >= 0 && Ureg < 28 && reg[Ureg] != 0) {
888 free(reg[Ureg]); // free orig line reg- for 'U'
889 reg[Ureg]= 0;
890 }
891 if (YDreg >= 0 && YDreg < 28 && reg[YDreg] != 0) {
892 free(reg[YDreg]); // free default yank/delete register
893 reg[YDreg]= 0;
894 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000895#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000896 // how many lines in text[]?
897 li = count_lines(text, end - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000898 status_line("\"%s\"%s"
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000899 USE_FEATURE_VI_READONLY("%s")
900 " %dL, %dC", current_filename,
901 (file_size(fn) < 0 ? " [New file]" : ""),
902 USE_FEATURE_VI_READONLY(
903 ((readonly_mode) ? " [Readonly]" : ""),
904 )
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000905 li, ch);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000906 } else if (strncasecmp(cmd, "file", i) == 0) { // what File is this
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000907 if (b != -1 || e != -1) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000908 not_implemented("No address allowed on this command");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000909 goto vc1;
910 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000911 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000912 // user wants a new filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000913 free(current_filename);
914 current_filename = xstrdup(args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000915 } else {
916 // user wants file status info
Paul Fox8552aec2005-09-16 12:20:05 +0000917 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000918 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000919 } else if (strncasecmp(cmd, "features", i) == 0) { // what features are available
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000920 // print out values of all features
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000921 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000922 cookmode();
923 show_help();
924 rawmode();
925 Hit_Return();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000926 } else if (strncasecmp(cmd, "list", i) == 0) { // literal print line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000927 if (b < 0) { // no addr given- use defaults
928 q = begin_line(dot); // assume .,. for the range
929 r = end_line(dot);
930 }
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000931 go_bottom_and_clear_to_eol();
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000932 puts("\r");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000933 for (; q <= r; q++) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000934 int c_is_no_print;
935
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000936 c = *q;
Denis Vlasenko2a51af22007-03-21 22:31:24 +0000937 c_is_no_print = (c & 0x80) && !Isprint(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000938 if (c_is_no_print) {
939 c = '.';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000940 standout_start();
Denis Vlasenkod3c042f2007-12-30 01:59:53 +0000941 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000942 if (c == '\n') {
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000943 write1("$\r");
944 } else if (c < ' ' || c == 127) {
Denis Vlasenko4daad902007-09-27 10:20:47 +0000945 bb_putchar('^');
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000946 if (c == 127)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000947 c = '?';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000948 else
949 c += '@';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000950 }
Denis Vlasenko4daad902007-09-27 10:20:47 +0000951 bb_putchar(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000952 if (c_is_no_print)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000953 standout_end();
954 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000955#if ENABLE_FEATURE_VI_SET
956 vc2:
957#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000958 Hit_Return();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000959 } else if (strncasecmp(cmd, "quit", i) == 0 // Quit
960 || strncasecmp(cmd, "next", i) == 0 // edit next file
961 ) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000962 if (useforce) {
963 // force end of argv list
964 if (*cmd == 'q') {
965 optind = save_argc;
966 }
967 editing = 0;
968 goto vc1;
969 }
970 // don't exit if the file been modified
971 if (file_modified) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000972 status_line_bold("No write since last change (:%s! overrides)",
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000973 (*cmd == 'q' ? "quit" : "next"));
974 goto vc1;
975 }
976 // are there other file to edit
977 if (*cmd == 'q' && optind < save_argc - 1) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000978 status_line_bold("%d more file to edit", (save_argc - optind - 1));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000979 goto vc1;
980 }
981 if (*cmd == 'n' && optind >= save_argc - 1) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000982 status_line_bold("No more files to edit");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000983 goto vc1;
984 }
985 editing = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000986 } else if (strncasecmp(cmd, "read", i) == 0) { // read file into text[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000987 fn = args;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000988 if (!fn[0]) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000989 status_line_bold("No filename given");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000990 goto vc1;
991 }
992 if (b < 0) { // no addr given- use defaults
993 q = begin_line(dot); // assume "dot"
994 }
995 // read after current line- unless user said ":0r foo"
996 if (b != 0)
997 q = next_line(q);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000998 ch = file_insert(fn, q USE_FEATURE_VI_READONLY(, 0));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000999 if (ch < 0)
1000 goto vc1; // nothing was inserted
1001 // how many lines in text[]?
1002 li = count_lines(q, q + ch - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001003 status_line("\"%s\""
Denis Vlasenko59a1f302007-07-14 22:43:10 +00001004 USE_FEATURE_VI_READONLY("%s")
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001005 " %dL, %dC", fn,
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001006 USE_FEATURE_VI_READONLY((readonly_mode ? " [Readonly]" : ""),)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001007 li, ch);
1008 if (ch > 0) {
1009 // if the insert is before "dot" then we need to update
1010 if (q <= dot)
1011 dot += ch;
Paul Fox8552aec2005-09-16 12:20:05 +00001012 file_modified++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001013 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001014 } else if (strncasecmp(cmd, "rewind", i) == 0) { // rewind cmd line args
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001015 if (file_modified && !useforce) {
1016 status_line_bold("No write since last change (:rewind! overrides)");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001017 } else {
1018 // reset the filenames to edit
1019 optind = fn_start - 1;
1020 editing = 0;
1021 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001022#if ENABLE_FEATURE_VI_SET
Denis Vlasenkof9234132007-03-21 00:03:42 +00001023 } else if (strncasecmp(cmd, "set", i) == 0) { // set or clear features
Denis Vlasenko58875ae2007-03-22 22:22:10 +00001024#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkof9234132007-03-21 00:03:42 +00001025 char *argp;
Denis Vlasenko58875ae2007-03-22 22:22:10 +00001026#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001027 i = 0; // offset into args
Denis Vlasenkof9234132007-03-21 00:03:42 +00001028 // only blank is regarded as args delmiter. What about tab '\t' ?
1029 if (!args[0] || strcasecmp(args, "all") == 0) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001030 // print out values of all options
Denis Vlasenko267e16c2008-10-14 10:34:41 +00001031 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001032 printf("----------------------------------------\r\n");
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001033#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001034 if (!autoindent)
1035 printf("no");
1036 printf("autoindent ");
1037 if (!err_method)
1038 printf("no");
1039 printf("flash ");
1040 if (!ignorecase)
1041 printf("no");
1042 printf("ignorecase ");
1043 if (!showmatch)
1044 printf("no");
1045 printf("showmatch ");
1046 printf("tabstop=%d ", tabstop);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001047#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001048 printf("\r\n");
1049 goto vc2;
1050 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001051#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001052 argp = args;
Denis Vlasenkoba2fb712007-04-01 09:39:03 +00001053 while (*argp) {
Denis Vlasenkof9234132007-03-21 00:03:42 +00001054 if (strncasecmp(argp, "no", 2) == 0)
1055 i = 2; // ":set noautoindent"
1056 setops(argp, "autoindent ", i, "ai", VI_AUTOINDENT);
1057 setops(argp, "flash ", i, "fl", VI_ERR_METHOD);
1058 setops(argp, "ignorecase ", i, "ic", VI_IGNORECASE);
1059 setops(argp, "showmatch ", i, "ic", VI_SHOWMATCH);
1060 /* tabstopXXXX */
1061 if (strncasecmp(argp + i, "tabstop=%d ", 7) == 0) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001062 sscanf(strchr(argp + i, '='), "tabstop=%d" + 7, &ch);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00001063 if (ch > 0 && ch <= MAX_TABSTOP)
Denis Vlasenkof9234132007-03-21 00:03:42 +00001064 tabstop = ch;
1065 }
1066 while (*argp && *argp != ' ')
1067 argp++; // skip to arg delimiter (i.e. blank)
1068 while (*argp && *argp == ' ')
1069 argp++; // skip all delimiting blanks
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001070 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001071#endif /* FEATURE_VI_SETOPTS */
1072#endif /* FEATURE_VI_SET */
1073#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001074 } else if (strncasecmp(cmd, "s", 1) == 0) { // substitute a pattern with a replacement pattern
1075 char *ls, *F, *R;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001076 int gflag;
1077
1078 // F points to the "find" pattern
1079 // R points to the "replace" pattern
1080 // replace the cmd line delimiters "/" with NULLs
1081 gflag = 0; // global replace flag
1082 c = orig_buf[1]; // what is the delimiter
1083 F = orig_buf + 2; // start of "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001084 R = strchr(F, c); // middle delimiter
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001085 if (!R) goto colon_s_fail;
1086 *R++ = '\0'; // terminate "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001087 buf1 = strchr(R, c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001088 if (!buf1) goto colon_s_fail;
1089 *buf1++ = '\0'; // terminate "replace"
1090 if (*buf1 == 'g') { // :s/foo/bar/g
1091 buf1++;
1092 gflag++; // turn on gflag
1093 }
1094 q = begin_line(q);
1095 if (b < 0) { // maybe :s/foo/bar/
1096 q = begin_line(dot); // start with cur line
1097 b = count_lines(text, q); // cur line number
1098 }
1099 if (e < 0)
1100 e = b; // maybe :.s/foo/bar/
1101 for (i = b; i <= e; i++) { // so, :20,23 s \0 find \0 replace \0
1102 ls = q; // orig line start
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001103 vc4:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001104 buf1 = char_search(q, F, FORWARD, LIMITED); // search cur line only for "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001105 if (buf1) {
1106 // we found the "find" pattern - delete it
1107 text_hole_delete(buf1, buf1 + strlen(F) - 1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001108 // inset the "replace" patern
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001109 string_insert(buf1, R); // insert the string
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001110 // check for "global" :s/foo/bar/g
1111 if (gflag == 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001112 if ((buf1 + strlen(R)) < end_line(ls)) {
1113 q = buf1 + strlen(R);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001114 goto vc4; // don't let q move past cur line
1115 }
1116 }
1117 }
1118 q = next_line(ls);
1119 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001120#endif /* FEATURE_VI_SEARCH */
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001121 } else if (strncasecmp(cmd, "version", i) == 0) { // show software version
Denis Vlasenko33875382008-06-21 20:31:50 +00001122 status_line(BB_VER " " BB_BT);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001123 } else if (strncasecmp(cmd, "write", i) == 0 // write text to file
1124 || strncasecmp(cmd, "wq", i) == 0
1125 || strncasecmp(cmd, "wn", i) == 0
1126 || strncasecmp(cmd, "x", i) == 0
1127 ) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001128 // is there a file name to write to?
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001129 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001130 fn = args;
1131 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001132#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001133 if (readonly_mode && !useforce) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001134 status_line_bold("\"%s\" File is read only", fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001135 goto vc3;
1136 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001137#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001138 // how many lines in text[]?
1139 li = count_lines(q, r);
1140 ch = r - q + 1;
1141 // see if file exists- if not, its just a new file request
1142 if (useforce) {
1143 // if "fn" is not write-able, chmod u+w
1144 // sprintf(syscmd, "chmod u+w %s", fn);
1145 // system(syscmd);
1146 forced = TRUE;
1147 }
1148 l = file_write(fn, q, r);
1149 if (useforce && forced) {
1150 // chmod u-w
1151 // sprintf(syscmd, "chmod u-w %s", fn);
1152 // system(syscmd);
1153 forced = FALSE;
1154 }
Paul Fox61e45db2005-10-09 14:43:22 +00001155 if (l < 0) {
1156 if (l == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001157 status_line_bold("\"%s\" %s", fn, strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00001158 } else {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001159 status_line("\"%s\" %dL, %dC", fn, li, l);
Paul Fox61e45db2005-10-09 14:43:22 +00001160 if (q == text && r == end - 1 && l == ch) {
1161 file_modified = 0;
1162 last_file_modified = -1;
1163 }
Paul Fox9360f422006-03-27 21:51:16 +00001164 if ((cmd[0] == 'x' || cmd[1] == 'q' || cmd[1] == 'n' ||
1165 cmd[0] == 'X' || cmd[1] == 'Q' || cmd[1] == 'N')
1166 && l == ch) {
Paul Fox61e45db2005-10-09 14:43:22 +00001167 editing = 0;
1168 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001169 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001170#if ENABLE_FEATURE_VI_READONLY
1171 vc3:;
1172#endif
1173#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001174 } else if (strncasecmp(cmd, "yank", i) == 0) { // yank lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001175 if (b < 0) { // no addr given- use defaults
1176 q = begin_line(dot); // assume .,. for the range
1177 r = end_line(dot);
1178 }
1179 text_yank(q, r, YDreg);
1180 li = count_lines(q, r);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001181 status_line("Yank %d lines (%d chars) into [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001182 li, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001183#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001184 } else {
1185 // cmd unknown
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001186 not_implemented(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001187 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001188 vc1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001189 dot = bound_dot(dot); // make sure "dot" is valid
1190 return;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001191#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001192 colon_s_fail:
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001193 status_line(":s expression missing delimiters");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001194#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001195}
Paul Fox61e45db2005-10-09 14:43:22 +00001196
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001197#endif /* FEATURE_VI_COLON */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001198
1199static void Hit_Return(void)
1200{
1201 char c;
1202
Denis Vlasenkof882f082007-12-23 02:36:51 +00001203 standout_start();
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001204 write1("[Hit return to continue]");
Denis Vlasenkof882f082007-12-23 02:36:51 +00001205 standout_end();
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001206 while ((c = get_one_char()) != '\n' && c != '\r')
1207 continue;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001208 redraw(TRUE); // force redraw all
1209}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001210
Denis Vlasenko91afdf82007-07-17 23:22:49 +00001211static int next_tabstop(int col)
1212{
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001213 return col + ((tabstop - 1) - (col % tabstop));
1214}
1215
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001216//----- Synchronize the cursor to Dot --------------------------
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001217static void sync_cursor(char *d, int *row, int *col)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001218{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001219 char *beg_cur; // begin and end of "d" line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001220 char *tp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001221 int cnt, ro, co;
1222
1223 beg_cur = begin_line(d); // first char of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001224
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001225 if (beg_cur < screenbegin) {
Denis Vlasenkof882f082007-12-23 02:36:51 +00001226 // "d" is before top line on screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001227 // how many lines do we have to move
1228 cnt = count_lines(beg_cur, screenbegin);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001229 sc1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001230 screenbegin = beg_cur;
1231 if (cnt > (rows - 1) / 2) {
1232 // we moved too many lines. put "dot" in middle of screen
1233 for (cnt = 0; cnt < (rows - 1) / 2; cnt++) {
1234 screenbegin = prev_line(screenbegin);
1235 }
1236 }
Denis Vlasenkof882f082007-12-23 02:36:51 +00001237 } else {
1238 char *end_scr; // begin and end of screen
1239 end_scr = end_screen(); // last char of screen
1240 if (beg_cur > end_scr) {
1241 // "d" is after bottom line on screen
1242 // how many lines do we have to move
1243 cnt = count_lines(end_scr, beg_cur);
1244 if (cnt > (rows - 1) / 2)
1245 goto sc1; // too many lines
1246 for (ro = 0; ro < cnt - 1; ro++) {
1247 // move screen begin the same amount
1248 screenbegin = next_line(screenbegin);
1249 // now, move the end of screen
1250 end_scr = next_line(end_scr);
1251 end_scr = end_line(end_scr);
1252 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001253 }
1254 }
1255 // "d" is on screen- find out which row
1256 tp = screenbegin;
1257 for (ro = 0; ro < rows - 1; ro++) { // drive "ro" to correct row
1258 if (tp == beg_cur)
1259 break;
1260 tp = next_line(tp);
1261 }
1262
1263 // find out what col "d" is on
1264 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001265 while (tp < d) { // drive "co" to correct column
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001266 if (*tp == '\n') //vda || *tp == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001267 break;
1268 if (*tp == '\t') {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001269 // handle tabs like real vi
1270 if (d == tp && cmd_mode) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001271 break;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001272 }
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001273 co = next_tabstop(co);
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001274 } else if ((unsigned char)*tp < ' ' || *tp == 0x7f) {
1275 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001276 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001277 co++;
1278 tp++;
1279 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001280
1281 // "co" is the column where "dot" is.
1282 // The screen has "columns" columns.
1283 // The currently displayed columns are 0+offset -- columns+ofset
1284 // |-------------------------------------------------------------|
1285 // ^ ^ ^
1286 // offset | |------- columns ----------------|
1287 //
1288 // If "co" is already in this range then we do not have to adjust offset
1289 // but, we do have to subtract the "offset" bias from "co".
1290 // If "co" is outside this range then we have to change "offset".
1291 // If the first char of a line is a tab the cursor will try to stay
1292 // in column 7, but we have to set offset to 0.
1293
1294 if (co < 0 + offset) {
1295 offset = co;
1296 }
1297 if (co >= columns + offset) {
1298 offset = co - columns + 1;
1299 }
1300 // if the first char of the line is a tab, and "dot" is sitting on it
1301 // force offset to 0.
1302 if (d == beg_cur && *d == '\t') {
1303 offset = 0;
1304 }
1305 co -= offset;
1306
1307 *row = ro;
1308 *col = co;
1309}
1310
1311//----- Text Movement Routines ---------------------------------
Denis Vlasenkof882f082007-12-23 02:36:51 +00001312static char *begin_line(char *p) // return pointer to first char cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001313{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001314 if (p > text) {
1315 p = memrchr(text, '\n', p - text);
1316 if (!p)
1317 return text;
1318 return p + 1;
1319 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001320 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001321}
1322
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001323static char *end_line(char *p) // return pointer to NL of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001324{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001325 if (p < end - 1) {
1326 p = memchr(p, '\n', end - p - 1);
1327 if (!p)
1328 return end - 1;
1329 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001330 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001331}
1332
Denis Vlasenkof882f082007-12-23 02:36:51 +00001333static char *dollar_line(char *p) // return pointer to just before NL line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001334{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001335 p = end_line(p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001336 // Try to stay off of the Newline
1337 if (*p == '\n' && (p - begin_line(p)) > 0)
1338 p--;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001339 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001340}
1341
Denis Vlasenkof882f082007-12-23 02:36:51 +00001342static char *prev_line(char *p) // return pointer first char prev line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001343{
1344 p = begin_line(p); // goto begining of cur line
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001345 if (p > text && p[-1] == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001346 p--; // step to prev line
1347 p = begin_line(p); // goto begining of prev line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001348 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001349}
1350
Denis Vlasenkof882f082007-12-23 02:36:51 +00001351static char *next_line(char *p) // return pointer first char next line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001352{
1353 p = end_line(p);
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001354 if (p < end - 1 && *p == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001355 p++; // step to next line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001356 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001357}
1358
1359//----- Text Information Routines ------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001360static char *end_screen(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001361{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001362 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001363 int cnt;
1364
1365 // find new bottom line
1366 q = screenbegin;
1367 for (cnt = 0; cnt < rows - 2; cnt++)
1368 q = next_line(q);
1369 q = end_line(q);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001370 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001371}
1372
Denis Vlasenkof882f082007-12-23 02:36:51 +00001373// count line from start to stop
1374static int count_lines(char *start, char *stop)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001375{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001376 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001377 int cnt;
1378
Denis Vlasenkof882f082007-12-23 02:36:51 +00001379 if (stop < start) { // start and stop are backwards- reverse them
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001380 q = start;
1381 start = stop;
1382 stop = q;
1383 }
1384 cnt = 0;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001385 stop = end_line(stop);
1386 while (start <= stop && start <= end - 1) {
1387 start = end_line(start);
1388 if (*start == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001389 cnt++;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001390 start++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001391 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001392 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001393}
1394
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001395static char *find_line(int li) // find begining of line #li
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001396{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001397 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001398
1399 for (q = text; li > 1; li--) {
1400 q = next_line(q);
1401 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001402 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001403}
1404
1405//----- Dot Movement Routines ----------------------------------
1406static void dot_left(void)
1407{
1408 if (dot > text && dot[-1] != '\n')
1409 dot--;
1410}
1411
1412static void dot_right(void)
1413{
1414 if (dot < end - 1 && *dot != '\n')
1415 dot++;
1416}
1417
1418static void dot_begin(void)
1419{
1420 dot = begin_line(dot); // return pointer to first char cur line
1421}
1422
1423static void dot_end(void)
1424{
1425 dot = end_line(dot); // return pointer to last char cur line
1426}
1427
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001428static char *move_to_col(char *p, int l)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001429{
1430 int co;
1431
1432 p = begin_line(p);
1433 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001434 while (co < l && p < end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001435 if (*p == '\n') //vda || *p == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001436 break;
1437 if (*p == '\t') {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001438 co = next_tabstop(co);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001439 } else if (*p < ' ' || *p == 127) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001440 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001441 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001442 co++;
1443 p++;
1444 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001445 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001446}
1447
1448static void dot_next(void)
1449{
1450 dot = next_line(dot);
1451}
1452
1453static void dot_prev(void)
1454{
1455 dot = prev_line(dot);
1456}
1457
1458static void dot_scroll(int cnt, int dir)
1459{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001460 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001461
1462 for (; cnt > 0; cnt--) {
1463 if (dir < 0) {
1464 // scroll Backwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001465 // ctrl-Y scroll up one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001466 screenbegin = prev_line(screenbegin);
1467 } else {
1468 // scroll Forwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001469 // ctrl-E scroll down one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001470 screenbegin = next_line(screenbegin);
1471 }
1472 }
1473 // make sure "dot" stays on the screen so we dont scroll off
1474 if (dot < screenbegin)
1475 dot = screenbegin;
1476 q = end_screen(); // find new bottom line
1477 if (dot > q)
1478 dot = begin_line(q); // is dot is below bottom line?
1479 dot_skip_over_ws();
1480}
1481
1482static void dot_skip_over_ws(void)
1483{
1484 // skip WS
1485 while (isspace(*dot) && *dot != '\n' && dot < end - 1)
1486 dot++;
1487}
1488
1489static void dot_delete(void) // delete the char at 'dot'
1490{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001491 text_hole_delete(dot, dot);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001492}
1493
Denis Vlasenkof882f082007-12-23 02:36:51 +00001494static char *bound_dot(char *p) // make sure text[0] <= P < "end"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001495{
1496 if (p >= end && end > text) {
1497 p = end - 1;
1498 indicate_error('1');
1499 }
1500 if (p < text) {
1501 p = text;
1502 indicate_error('2');
1503 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001504 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001505}
1506
1507//----- Helper Utility Routines --------------------------------
1508
1509//----------------------------------------------------------------
1510//----- Char Routines --------------------------------------------
1511/* Chars that are part of a word-
1512 * 0123456789_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
1513 * Chars that are Not part of a word (stoppers)
1514 * !"#$%&'()*+,-./:;<=>?@[\]^`{|}~
1515 * Chars that are WhiteSpace
1516 * TAB NEWLINE VT FF RETURN SPACE
1517 * DO NOT COUNT NEWLINE AS WHITESPACE
1518 */
1519
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001520static char *new_screen(int ro, int co)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001521{
1522 int li;
1523
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001524 free(screen);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001525 screensize = ro * co + 8;
Denis Vlasenkob95636c2006-12-19 23:36:04 +00001526 screen = xmalloc(screensize);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001527 // initialize the new screen. assume this will be a empty file.
1528 screen_erase();
Eric Andersenaff114c2004-04-14 17:51:38 +00001529 // non-existent text[] lines start with a tilde (~).
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001530 for (li = 1; li < ro - 1; li++) {
1531 screen[(li * co) + 0] = '~';
1532 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001533 return screen;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001534}
1535
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001536#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenko33875382008-06-21 20:31:50 +00001537static int mycmp(const char *s1, const char *s2, int len)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001538{
1539 int i;
1540
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001541 i = strncmp(s1, s2, len);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001542 if (ENABLE_FEATURE_VI_SETOPTS && ignorecase) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001543 i = strncasecmp(s1, s2, len);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001544 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001545 return i;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001546}
1547
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001548// search for pattern starting at p
Denis Vlasenko33875382008-06-21 20:31:50 +00001549static char *char_search(char *p, const char *pat, int dir, int range)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001550{
1551#ifndef REGEX_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001552 char *start, *stop;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001553 int len;
1554
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001555 len = strlen(pat);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001556 if (dir == FORWARD) {
1557 stop = end - 1; // assume range is p - end-1
1558 if (range == LIMITED)
1559 stop = next_line(p); // range is to next line
1560 for (start = p; start < stop; start++) {
1561 if (mycmp(start, pat, len) == 0) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001562 return start;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001563 }
1564 }
1565 } else if (dir == BACK) {
1566 stop = text; // assume range is text - p
1567 if (range == LIMITED)
1568 stop = prev_line(p); // range is to prev line
1569 for (start = p - len; start >= stop; start--) {
1570 if (mycmp(start, pat, len) == 0) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001571 return start;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001572 }
1573 }
1574 }
1575 // pattern not found
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001576 return NULL;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001577#else /* REGEX_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001578 char *q;
1579 struct re_pattern_buffer preg;
1580 int i;
1581 int size, range;
1582
1583 re_syntax_options = RE_SYNTAX_POSIX_EXTENDED;
1584 preg.translate = 0;
1585 preg.fastmap = 0;
1586 preg.buffer = 0;
1587 preg.allocated = 0;
1588
1589 // assume a LIMITED forward search
1590 q = next_line(p);
1591 q = end_line(q);
1592 q = end - 1;
1593 if (dir == BACK) {
1594 q = prev_line(p);
1595 q = text;
1596 }
1597 // count the number of chars to search over, forward or backward
1598 size = q - p;
1599 if (size < 0)
1600 size = p - q;
1601 // RANGE could be negative if we are searching backwards
1602 range = q - p;
1603
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001604 q = re_compile_pattern(pat, strlen(pat), &preg);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001605 if (q != 0) {
1606 // The pattern was not compiled
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001607 status_line_bold("bad search pattern: \"%s\": %s", pat, q);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001608 i = 0; // return p if pattern not compiled
1609 goto cs1;
1610 }
1611
1612 q = p;
1613 if (range < 0) {
1614 q = p - size;
1615 if (q < text)
1616 q = text;
1617 }
1618 // search for the compiled pattern, preg, in p[]
1619 // range < 0- search backward
1620 // range > 0- search forward
1621 // 0 < start < size
1622 // re_search() < 0 not found or error
1623 // re_search() > 0 index of found pattern
1624 // struct pattern char int int int struct reg
1625 // re_search (*pattern_buffer, *string, size, start, range, *regs)
1626 i = re_search(&preg, q, size, 0, range, 0);
1627 if (i == -1) {
1628 p = 0;
1629 i = 0; // return NULL if pattern not found
1630 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001631 cs1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001632 if (dir == FORWARD) {
1633 p = p + i;
1634 } else {
1635 p = p - i;
1636 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001637 return p;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001638#endif /* REGEX_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001639}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001640#endif /* FEATURE_VI_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001641
Denis Vlasenko33875382008-06-21 20:31:50 +00001642static char *char_insert(char *p, char c) // insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001643{
1644 if (c == 22) { // Is this an ctrl-V?
1645 p = stupid_insert(p, '^'); // use ^ to indicate literal next
1646 p--; // backup onto ^
1647 refresh(FALSE); // show the ^
1648 c = get_one_char();
1649 *p = c;
1650 p++;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001651 file_modified++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001652 } else if (c == 27) { // Is this an ESC?
1653 cmd_mode = 0;
1654 cmdcnt = 0;
1655 end_cmd_q(); // stop adding to q
Paul Fox8552aec2005-09-16 12:20:05 +00001656 last_status_cksum = 0; // force status update
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001657 if ((p[-1] != '\n') && (dot > text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001658 p--;
1659 }
Paul Foxd13b90b2005-07-18 22:17:25 +00001660 } else if (c == erase_char || c == 8 || c == 127) { // Is this a BS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001661 // 123456789
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001662 if ((p[-1] != '\n') && (dot>text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001663 p--;
1664 p = text_hole_delete(p, p); // shrink buffer 1 char
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001665 }
1666 } else {
1667 // insert a char into text[]
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001668 char *sp; // "save p"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001669
1670 if (c == 13)
1671 c = '\n'; // translate \r to \n
1672 sp = p; // remember addr of insert
1673 p = stupid_insert(p, c); // insert the char
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001674#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001675 if (showmatch && strchr(")]}", *sp) != NULL) {
1676 showmatching(sp);
1677 }
1678 if (autoindent && c == '\n') { // auto indent the new line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001679 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001680
1681 q = prev_line(p); // use prev line as templet
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001682 for (; isblank(*q); q++) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001683 p = stupid_insert(p, *q); // insert the char
1684 }
1685 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001686#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001687 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001688 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001689}
1690
Denis Vlasenko33875382008-06-21 20:31:50 +00001691static char *stupid_insert(char *p, char c) // stupidly insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001692{
1693 p = text_hole_make(p, 1);
Denis Vlasenkob1759462008-06-20 20:20:54 +00001694 *p = c;
1695 //file_modified++; - done by text_hole_make()
1696 return p + 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001697}
1698
Denis Vlasenko33875382008-06-21 20:31:50 +00001699static int find_range(char **start, char **stop, char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001700{
Paul Foxc51fc7b2008-03-06 01:34:23 +00001701 char *save_dot, *p, *q, *t;
1702 int cnt, multiline = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001703
1704 save_dot = dot;
1705 p = q = dot;
1706
1707 if (strchr("cdy><", c)) {
1708 // these cmds operate on whole lines
1709 p = q = begin_line(p);
1710 for (cnt = 1; cnt < cmdcnt; cnt++) {
1711 q = next_line(q);
1712 }
1713 q = end_line(q);
Paul Foxc51fc7b2008-03-06 01:34:23 +00001714 } else if (strchr("^%$0bBeEfth\b\177", c)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001715 // These cmds operate on char positions
1716 do_cmd(c); // execute movement cmd
1717 q = dot;
1718 } else if (strchr("wW", c)) {
1719 do_cmd(c); // execute movement cmd
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001720 // if we are at the next word's first char
1721 // step back one char
1722 // but check the possibilities when it is true
Eric Andersen5cc90ea2004-02-06 10:36:08 +00001723 if (dot > text && ((isspace(dot[-1]) && !isspace(dot[0]))
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001724 || (ispunct(dot[-1]) && !ispunct(dot[0]))
1725 || (isalnum(dot[-1]) && !isalnum(dot[0]))))
1726 dot--; // move back off of next word
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001727 if (dot > text && *dot == '\n')
1728 dot--; // stay off NL
1729 q = dot;
1730 } else if (strchr("H-k{", c)) {
1731 // these operate on multi-lines backwards
1732 q = end_line(dot); // find NL
1733 do_cmd(c); // execute movement cmd
1734 dot_begin();
1735 p = dot;
1736 } else if (strchr("L+j}\r\n", c)) {
1737 // these operate on multi-lines forwards
1738 p = begin_line(dot);
1739 do_cmd(c); // execute movement cmd
1740 dot_end(); // find NL
1741 q = dot;
1742 } else {
Paul Foxc51fc7b2008-03-06 01:34:23 +00001743 // nothing -- this causes any other values of c to
1744 // represent the one-character range under the
1745 // cursor. this is correct for ' ' and 'l', but
1746 // perhaps no others.
1747 //
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001748 }
Paul Foxc51fc7b2008-03-06 01:34:23 +00001749 if (q < p) {
1750 t = q;
1751 q = p;
1752 p = t;
1753 }
1754
Denis Vlasenko42cc3042008-03-24 02:05:58 +00001755 // backward char movements don't include start position
Paul Foxc51fc7b2008-03-06 01:34:23 +00001756 if (q > p && strchr("^0bBh\b\177", c)) q--;
1757
1758 multiline = 0;
1759 for (t = p; t <= q; t++) {
1760 if (*t == '\n') {
1761 multiline = 1;
1762 break;
1763 }
1764 }
1765
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001766 *start = p;
1767 *stop = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001768 dot = save_dot;
Paul Foxc51fc7b2008-03-06 01:34:23 +00001769 return multiline;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001770}
1771
Denis Vlasenko33875382008-06-21 20:31:50 +00001772static int st_test(char *p, int type, int dir, char *tested)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001773{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001774 char c, c0, ci;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001775 int test, inc;
1776
1777 inc = dir;
1778 c = c0 = p[0];
1779 ci = p[inc];
1780 test = 0;
1781
1782 if (type == S_BEFORE_WS) {
1783 c = ci;
1784 test = ((!isspace(c)) || c == '\n');
1785 }
1786 if (type == S_TO_WS) {
1787 c = c0;
1788 test = ((!isspace(c)) || c == '\n');
1789 }
1790 if (type == S_OVER_WS) {
1791 c = c0;
1792 test = ((isspace(c)));
1793 }
1794 if (type == S_END_PUNCT) {
1795 c = ci;
1796 test = ((ispunct(c)));
1797 }
1798 if (type == S_END_ALNUM) {
1799 c = ci;
1800 test = ((isalnum(c)) || c == '_');
1801 }
1802 *tested = c;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001803 return test;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001804}
1805
Denis Vlasenko33875382008-06-21 20:31:50 +00001806static char *skip_thing(char *p, int linecnt, int dir, int type)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001807{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001808 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001809
1810 while (st_test(p, type, dir, &c)) {
1811 // make sure we limit search to correct number of lines
1812 if (c == '\n' && --linecnt < 1)
1813 break;
1814 if (dir >= 0 && p >= end - 1)
1815 break;
1816 if (dir < 0 && p <= text)
1817 break;
1818 p += dir; // move to next char
1819 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001820 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001821}
1822
1823// find matching char of pair () [] {}
Denis Vlasenko33875382008-06-21 20:31:50 +00001824static char *find_pair(char *p, const char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001825{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001826 char match, *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001827 int dir, level;
1828
1829 match = ')';
1830 level = 1;
1831 dir = 1; // assume forward
1832 switch (c) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00001833 case '(': match = ')'; break;
1834 case '[': match = ']'; break;
1835 case '{': match = '}'; break;
1836 case ')': match = '('; dir = -1; break;
1837 case ']': match = '['; dir = -1; break;
1838 case '}': match = '{'; dir = -1; break;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001839 }
1840 for (q = p + dir; text <= q && q < end; q += dir) {
1841 // look for match, count levels of pairs (( ))
1842 if (*q == c)
1843 level++; // increase pair levels
1844 if (*q == match)
1845 level--; // reduce pair level
1846 if (level == 0)
1847 break; // found matching pair
1848 }
1849 if (level != 0)
1850 q = NULL; // indicate no match
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001851 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001852}
1853
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001854#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001855// show the matching char of a pair, () [] {}
Denis Vlasenkof882f082007-12-23 02:36:51 +00001856static void showmatching(char *p)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001857{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001858 char *q, *save_dot;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001859
1860 // we found half of a pair
1861 q = find_pair(p, *p); // get loc of matching char
1862 if (q == NULL) {
1863 indicate_error('3'); // no matching char
1864 } else {
1865 // "q" now points to matching pair
1866 save_dot = dot; // remember where we are
1867 dot = q; // go to new loc
1868 refresh(FALSE); // let the user see it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001869 mysleep(40); // give user some time
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001870 dot = save_dot; // go back to old loc
1871 refresh(FALSE);
1872 }
1873}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001874#endif /* FEATURE_VI_SETOPTS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001875
1876// open a hole in text[]
Denis Vlasenko33875382008-06-21 20:31:50 +00001877static char *text_hole_make(char *p, int size) // at "p", make a 'size' byte hole
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001878{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001879 if (size <= 0)
Denis Vlasenkob1759462008-06-20 20:20:54 +00001880 return p;
1881 end += size; // adjust the new END
1882 if (end >= (text + text_size)) {
1883 char *new_text;
1884 text_size += end - (text + text_size) + 10240;
1885 new_text = xrealloc(text, text_size);
1886 screenbegin = new_text + (screenbegin - text);
1887 dot = new_text + (dot - text);
1888 end = new_text + (end - text);
1889 p = new_text + (p - text);
1890 text = new_text;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001891 }
Denis Vlasenkod6995442008-06-27 04:06:13 +00001892 memmove(p + size, p, end - size - p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001893 memset(p, ' ', size); // clear new hole
Denis Vlasenkob1759462008-06-20 20:20:54 +00001894 file_modified++;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001895 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001896}
1897
1898// close a hole in text[]
Denis Vlasenko33875382008-06-21 20:31:50 +00001899static char *text_hole_delete(char *p, char *q) // delete "p" through "q", inclusive
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001900{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001901 char *src, *dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001902 int cnt, hole_size;
1903
1904 // move forwards, from beginning
1905 // assume p <= q
1906 src = q + 1;
1907 dest = p;
1908 if (q < p) { // they are backward- swap them
1909 src = p + 1;
1910 dest = q;
1911 }
1912 hole_size = q - p + 1;
1913 cnt = end - src;
1914 if (src < text || src > end)
1915 goto thd0;
1916 if (dest < text || dest >= end)
1917 goto thd0;
1918 if (src >= end)
1919 goto thd_atend; // just delete the end of the buffer
Denis Vlasenkob1759462008-06-20 20:20:54 +00001920 memmove(dest, src, cnt);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001921 thd_atend:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001922 end = end - hole_size; // adjust the new END
1923 if (dest >= end)
1924 dest = end - 1; // make sure dest in below end-1
1925 if (end <= text)
1926 dest = end = text; // keep pointers valid
Denis Vlasenkob1759462008-06-20 20:20:54 +00001927 file_modified++;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001928 thd0:
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001929 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001930}
1931
1932// copy text into register, then delete text.
1933// if dist <= 0, do not include, or go past, a NewLine
1934//
Denis Vlasenko33875382008-06-21 20:31:50 +00001935static char *yank_delete(char *start, char *stop, int dist, int yf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001936{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001937 char *p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001938
1939 // make sure start <= stop
1940 if (start > stop) {
1941 // they are backwards, reverse them
1942 p = start;
1943 start = stop;
1944 stop = p;
1945 }
1946 if (dist <= 0) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +00001947 // we cannot cross NL boundaries
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001948 p = start;
1949 if (*p == '\n')
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001950 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001951 // dont go past a NewLine
1952 for (; p + 1 <= stop; p++) {
1953 if (p[1] == '\n') {
1954 stop = p; // "stop" just before NewLine
1955 break;
1956 }
1957 }
1958 }
1959 p = start;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001960#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001961 text_yank(start, stop, YDreg);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001962#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001963 if (yf == YANKDEL) {
1964 p = text_hole_delete(start, stop);
1965 } // delete lines
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001966 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001967}
1968
1969static void show_help(void)
1970{
1971 puts("These features are available:"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001972#if ENABLE_FEATURE_VI_SEARCH
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001973 "\n\tPattern searches with / and ?"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001974#endif
1975#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001976 "\n\tLast command repeat with \'.\'"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001977#endif
1978#if ENABLE_FEATURE_VI_YANKMARK
Bernhard Reutner-Fischerd24d5c82007-10-01 18:04:42 +00001979 "\n\tLine marking with 'x"
1980 "\n\tNamed buffers with \"x"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001981#endif
1982#if ENABLE_FEATURE_VI_READONLY
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001983 "\n\tReadonly if vi is called as \"view\""
1984 "\n\tReadonly with -R command line arg"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001985#endif
1986#if ENABLE_FEATURE_VI_SET
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001987 "\n\tSome colon mode commands with \':\'"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001988#endif
1989#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001990 "\n\tSettable options with \":set\""
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001991#endif
1992#if ENABLE_FEATURE_VI_USE_SIGNALS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001993 "\n\tSignal catching- ^C"
1994 "\n\tJob suspend and resume with ^Z"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001995#endif
1996#if ENABLE_FEATURE_VI_WIN_RESIZE
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001997 "\n\tAdapt to window re-sizes"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001998#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001999 );
2000}
2001
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002002#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002003static void start_new_cmd_q(char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002004{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002005 // get buffer for new cmd
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002006 // if there is a current cmd count put it in the buffer first
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002007 if (cmdcnt > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00002008 lmc_len = sprintf(last_modifying_cmd, "%d%c", cmdcnt, c);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002009 } else { // just save char c onto queue
Paul Foxd957b952005-11-28 18:07:53 +00002010 last_modifying_cmd[0] = c;
Paul Foxc51fc7b2008-03-06 01:34:23 +00002011 lmc_len = 1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002012 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002013 adding2q = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002014}
2015
2016static void end_cmd_q(void)
2017{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002018#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002019 YDreg = 26; // go back to default Yank/Delete reg
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002020#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002021 adding2q = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002022}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002023#endif /* FEATURE_VI_DOT_CMD */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002024
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002025#if ENABLE_FEATURE_VI_YANKMARK \
2026 || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) \
2027 || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko33875382008-06-21 20:31:50 +00002028static char *string_insert(char *p, char *s) // insert the string at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002029{
2030 int cnt, i;
2031
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002032 i = strlen(s);
Denis Vlasenko33875382008-06-21 20:31:50 +00002033 text_hole_make(p, i);
2034 strncpy(p, s, i);
2035 for (cnt = 0; *s != '\0'; s++) {
2036 if (*s == '\n')
2037 cnt++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002038 }
Denis Vlasenko33875382008-06-21 20:31:50 +00002039#if ENABLE_FEATURE_VI_YANKMARK
2040 status_line("Put %d lines (%d chars) from [%c]", cnt, i, what_reg());
2041#endif
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002042 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002043}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002044#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002045
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002046#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko33875382008-06-21 20:31:50 +00002047static char *text_yank(char *p, char *q, int dest) // copy text into a register
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002048{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002049 char *t;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002050 int cnt;
2051
2052 if (q < p) { // they are backwards- reverse them
2053 t = q;
2054 q = p;
2055 p = t;
2056 }
2057 cnt = q - p + 1;
2058 t = reg[dest];
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00002059 free(t); // if already a yank register, free it
Denis Vlasenkob95636c2006-12-19 23:36:04 +00002060 t = xmalloc(cnt + 1); // get a new register
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002061 memset(t, '\0', cnt + 1); // clear new text[]
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002062 strncpy(t, p, cnt); // copy text[] into bufer
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002063 reg[dest] = t;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002064 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002065}
2066
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002067static char what_reg(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002068{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002069 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002070
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002071 c = 'D'; // default to D-reg
2072 if (0 <= YDreg && YDreg <= 25)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002073 c = 'a' + (char) YDreg;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002074 if (YDreg == 26)
2075 c = 'D';
2076 if (YDreg == 27)
2077 c = 'U';
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002078 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002079}
2080
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002081static void check_context(char cmd)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002082{
2083 // A context is defined to be "modifying text"
2084 // Any modifying command establishes a new context.
2085
2086 if (dot < context_start || dot > context_end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002087 if (strchr(modifying_cmds, cmd) != NULL) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002088 // we are trying to modify text[]- make this the current context
2089 mark[27] = mark[26]; // move cur to prev
2090 mark[26] = dot; // move local to cur
2091 context_start = prev_line(prev_line(dot));
2092 context_end = next_line(next_line(dot));
2093 //loiter= start_loiter= now;
2094 }
2095 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002096}
2097
Denis Vlasenkof882f082007-12-23 02:36:51 +00002098static char *swap_context(char *p) // goto new context for '' command make this the current context
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002099{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002100 char *tmp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002101
2102 // the current context is in mark[26]
2103 // the previous context is in mark[27]
2104 // only swap context if other context is valid
2105 if (text <= mark[27] && mark[27] <= end - 1) {
2106 tmp = mark[27];
2107 mark[27] = mark[26];
2108 mark[26] = tmp;
2109 p = mark[26]; // where we are going- previous context
2110 context_start = prev_line(prev_line(prev_line(p)));
2111 context_end = next_line(next_line(next_line(p)));
2112 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002113 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002114}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002115#endif /* FEATURE_VI_YANKMARK */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002116
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002117//----- Set terminal attributes --------------------------------
2118static void rawmode(void)
2119{
2120 tcgetattr(0, &term_orig);
2121 term_vi = term_orig;
2122 term_vi.c_lflag &= (~ICANON & ~ECHO); // leave ISIG ON- allow intr's
2123 term_vi.c_iflag &= (~IXON & ~ICRNL);
2124 term_vi.c_oflag &= (~ONLCR);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002125 term_vi.c_cc[VMIN] = 1;
2126 term_vi.c_cc[VTIME] = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002127 erase_char = term_vi.c_cc[VERASE];
2128 tcsetattr(0, TCSANOW, &term_vi);
2129}
2130
2131static void cookmode(void)
2132{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002133 fflush(stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002134 tcsetattr(0, TCSANOW, &term_orig);
2135}
2136
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002137//----- Come here when we get a window resize signal ---------
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002138#if ENABLE_FEATURE_VI_USE_SIGNALS
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002139static void winch_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002140{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002141 // FIXME: do it in main loop!!!
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002142 signal(SIGWINCH, winch_sig);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002143 if (ENABLE_FEATURE_VI_WIN_RESIZE) {
Denis Vlasenko621204b2006-10-27 09:03:24 +00002144 get_terminal_width_height(0, &columns, &rows);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002145 if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS;
2146 if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS;
2147 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002148 new_screen(rows, columns); // get memory for virtual screen
2149 redraw(TRUE); // re-draw the screen
2150}
2151
2152//----- Come here when we get a continue signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002153static void cont_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002154{
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002155 rawmode(); // terminal to "raw"
2156 last_status_cksum = 0; // force status update
2157 redraw(TRUE); // re-draw the screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002158
2159 signal(SIGTSTP, suspend_sig);
2160 signal(SIGCONT, SIG_DFL);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002161 kill(my_pid, SIGCONT); // huh? why? we are already "continued"...
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002162}
2163
2164//----- Come here when we get a Suspend signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002165static void suspend_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002166{
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002167 go_bottom_and_clear_to_eol();
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002168 cookmode(); // terminal to "cooked"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002169
2170 signal(SIGCONT, cont_sig);
2171 signal(SIGTSTP, SIG_DFL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002172 kill(my_pid, SIGTSTP);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002173}
2174
2175//----- Come here when we get a signal ---------------------------
2176static void catch_sig(int sig)
2177{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002178 signal(SIGINT, catch_sig);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002179 if (sig)
Paul Fox2724fa92008-03-17 15:28:07 +00002180 siglongjmp(restart, sig);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002181}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002182#endif /* FEATURE_VI_USE_SIGNALS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002183
2184static int mysleep(int hund) // sleep for 'h' 1/100 seconds
2185{
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002186 struct pollfd pfd[1];
Denis Vlasenkocd5c7862007-05-17 16:37:22 +00002187
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002188 pfd[0].fd = 0;
2189 pfd[0].events = POLLIN;
Denis Vlasenko5d61e712007-09-27 10:09:59 +00002190 return safe_poll(pfd, 1, hund*10) > 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002191}
2192
2193//----- IO Routines --------------------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002194static char readit(void) // read (maybe cursor) key from stdin
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002195{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002196 char c;
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002197 int n;
Rob Landley988dd552008-10-14 01:42:33 +00002198
2199 // Known escape sequences for cursor and function keys.
2200 static const struct esc_cmds {
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002201 const char seq[4];
Denis Vlasenkoded6ad32008-10-14 12:26:30 +00002202 char val; //TODO: int? Need to make it at least 8-bit clean!
Rob Landley988dd552008-10-14 01:42:33 +00002203 } esccmds[] = {
Denis Vlasenkoded6ad32008-10-14 12:26:30 +00002204 {"OA" , VI_K_UP }, // Cursor Key Up
2205 {"OB" , VI_K_DOWN }, // Cursor Key Down
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002206 {"OC" , VI_K_RIGHT }, // Cursor Key Right
Denis Vlasenkoded6ad32008-10-14 12:26:30 +00002207 {"OD" , VI_K_LEFT }, // Cursor Key Left
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002208 {"OH" , VI_K_HOME }, // Cursor Key Home
2209 {"OF" , VI_K_END }, // Cursor Key End
Rob Landley988dd552008-10-14 01:42:33 +00002210 {"OP" , VI_K_FUN1 }, // Function Key F1
2211 {"OQ" , VI_K_FUN2 }, // Function Key F2
2212 {"OR" , VI_K_FUN3 }, // Function Key F3
2213 {"OS" , VI_K_FUN4 }, // Function Key F4
2214
Denis Vlasenkoded6ad32008-10-14 12:26:30 +00002215 {"[A" , VI_K_UP }, // Cursor Key Up
2216 {"[B" , VI_K_DOWN }, // Cursor Key Down
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002217 {"[C" , VI_K_RIGHT }, // Cursor Key Right
Denis Vlasenkoded6ad32008-10-14 12:26:30 +00002218 {"[D" , VI_K_LEFT }, // Cursor Key Left
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002219 {"[H" , VI_K_HOME }, // Cursor Key Home
2220 {"[F" , VI_K_END }, // Cursor Key End
2221 {"[1~" , VI_K_HOME }, // Cursor Key Home
2222 {"[2~" , VI_K_INSERT }, // Cursor Key Insert
2223 {"[3~" , VI_K_DELETE }, // Cursor Key Delete
2224 {"[4~" , VI_K_END }, // Cursor Key End
2225 {"[5~" , VI_K_PAGEUP }, // Cursor Key Page Up
2226 {"[6~" , VI_K_PAGEDOWN}, // Cursor Key Page Down
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002227 // careful: these have no terminating NUL!
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002228 {"[11~", VI_K_FUN1 }, // Function Key F1
2229 {"[12~", VI_K_FUN2 }, // Function Key F2
2230 {"[13~", VI_K_FUN3 }, // Function Key F3
2231 {"[14~", VI_K_FUN4 }, // Function Key F4
2232 {"[15~", VI_K_FUN5 }, // Function Key F5
2233 {"[17~", VI_K_FUN6 }, // Function Key F6
2234 {"[18~", VI_K_FUN7 }, // Function Key F7
2235 {"[19~", VI_K_FUN8 }, // Function Key F8
2236 {"[20~", VI_K_FUN9 }, // Function Key F9
2237 {"[21~", VI_K_FUN10 }, // Function Key F10
2238 {"[23~", VI_K_FUN11 }, // Function Key F11
2239 {"[24~", VI_K_FUN12 }, // Function Key F12
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002240 };
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002241
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002242 fflush(stdout);
Rob Landley988dd552008-10-14 01:42:33 +00002243
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002244 n = chars_to_parse;
Denis Vlasenko5373fbc2008-10-14 10:09:56 +00002245 if (n == 0) {
Rob Landley4bdeaaf2008-10-19 04:21:21 +00002246 // If no data, block waiting for input. (If we read more than the
2247 // minimal ESC sequence size, the "n=0" below would instead have to
2248 // figure out how much to keep, resulting in larger code.)
Denis Vlasenko8ef801b2008-10-16 09:46:07 +00002249 n = safe_read(0, readbuffer, 3);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002250 if (n <= 0) {
Denis Vlasenko5373fbc2008-10-14 10:09:56 +00002251 error:
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002252 go_bottom_and_clear_to_eol();
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002253 cookmode(); // terminal to "cooked"
2254 bb_error_msg_and_die("can't read user input");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002255 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002256 }
Rob Landley988dd552008-10-14 01:42:33 +00002257
2258 // Grab character to return from buffer
Denis Vlasenko5373fbc2008-10-14 10:09:56 +00002259 c = readbuffer[0];
2260 // Returning NUL from this routine would be bad.
2261 if (c == '\0')
2262 c = ' ';
Rob Landley988dd552008-10-14 01:42:33 +00002263 n--;
Denis Vlasenko5373fbc2008-10-14 10:09:56 +00002264 if (n) memmove(readbuffer, readbuffer + 1, n);
Rob Landley988dd552008-10-14 01:42:33 +00002265
2266 // If it's an escape sequence, loop through known matches.
2267 if (c == 27) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002268 const struct esc_cmds *eindex;
Denis Vlasenko8ef801b2008-10-16 09:46:07 +00002269 struct pollfd pfd;
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002270
Denis Vlasenko8ef801b2008-10-16 09:46:07 +00002271 pfd.fd = STDIN_FILENO;
2272 pfd.events = POLLIN;
Rob Landley4bdeaaf2008-10-19 04:21:21 +00002273 for (eindex = esccmds; eindex < esccmds + ARRAY_SIZE(esccmds); eindex++)
2274 {
Denis Vlasenko8ef801b2008-10-16 09:46:07 +00002275 // n - position in sequence we did not read yet
2276 int i = 0; // position in sequence to compare
Rob Landley988dd552008-10-14 01:42:33 +00002277
Denis Vlasenko8ef801b2008-10-16 09:46:07 +00002278 // Loop through chars in this sequence
Rob Landley988dd552008-10-14 01:42:33 +00002279 for (;;) {
Denis Vlasenko8ef801b2008-10-16 09:46:07 +00002280 // So far escape sequence matches up to [i-1]
Rob Landley988dd552008-10-14 01:42:33 +00002281 if (n <= i) {
Denis Vlasenko5373fbc2008-10-14 10:09:56 +00002282 // Need more chars, read another one if it wouldn't block.
2283 // (Note that escape sequences come in as a unit,
2284 // so if we would block it's not really an escape sequence.)
Denis Vlasenko8ef801b2008-10-16 09:46:07 +00002285
2286 // Timeout is needed to reconnect escape sequences
2287 // split up by transmission over a serial console.
Rob Landley4bdeaaf2008-10-19 04:21:21 +00002288
Denis Vlasenko8ef801b2008-10-16 09:46:07 +00002289 if (safe_poll(&pfd, 1, 50)) {
Denis Vlasenko5373fbc2008-10-14 10:09:56 +00002290 if (safe_read(0, readbuffer + n, 1) <= 0)
2291 goto error;
2292 n++;
2293 } else {
2294 // No more data!
2295 // Array is sorted from shortest to longest,
2296 // we can't match anything later in array,
2297 // break out of both loops.
2298 goto loop_out;
2299 }
Rob Landley988dd552008-10-14 01:42:33 +00002300 }
Denis Vlasenko5373fbc2008-10-14 10:09:56 +00002301 if (readbuffer[i] != eindex->seq[i])
2302 break; // try next seq
Denis Vlasenko8ef801b2008-10-16 09:46:07 +00002303 i++;
2304 if (i == 4 || !eindex->seq[i]) { // entire seq matched
Rob Landley988dd552008-10-14 01:42:33 +00002305 c = eindex->val;
2306 n = 0;
Denis Vlasenko8ef801b2008-10-16 09:46:07 +00002307 // n -= i; memmove(...);
2308 // would be more correct,
2309 // but we never read ahead that much,
2310 // and n == i here.
Rob Landley988dd552008-10-14 01:42:33 +00002311 goto loop_out;
2312 }
2313 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002314 }
Denis Vlasenko5373fbc2008-10-14 10:09:56 +00002315 // We did not find matching sequence, it was a bare ESC.
2316 // We possibly read and stored more input in readbuffer by now.
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002317 }
Denis Vlasenko8ef801b2008-10-16 09:46:07 +00002318 loop_out:
Rob Landley988dd552008-10-14 01:42:33 +00002319
2320 chars_to_parse = n;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002321 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002322}
2323
2324//----- IO Routines --------------------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002325static char get_one_char(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002326{
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002327 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002328
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002329#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002330 if (!adding2q) {
2331 // we are not adding to the q.
2332 // but, we may be reading from a q
2333 if (ioq == 0) {
2334 // there is no current q, read from STDIN
2335 c = readit(); // get the users input
2336 } else {
2337 // there is a queue to get chars from first
2338 c = *ioq++;
2339 if (c == '\0') {
2340 // the end of the q, read from STDIN
2341 free(ioq_start);
2342 ioq_start = ioq = 0;
2343 c = readit(); // get the users input
2344 }
2345 }
2346 } else {
2347 // adding STDIN chars to q
2348 c = readit(); // get the users input
Denis Vlasenkob1759462008-06-20 20:20:54 +00002349 if (lmc_len >= MAX_INPUT_LEN - 1) {
2350 status_line_bold("last_modifying_cmd overrun");
2351 } else {
2352 // add new char to q
2353 last_modifying_cmd[lmc_len++] = c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002354 }
2355 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002356#else
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002357 c = readit(); // get the users input
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002358#endif /* FEATURE_VI_DOT_CMD */
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002359 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002360}
2361
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002362// Get input line (uses "status line" area)
2363static char *get_input_line(const char *prompt)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002364{
Denis Vlasenkob1759462008-06-20 20:20:54 +00002365 // char [MAX_INPUT_LEN]
2366#define buf get_input_line__buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002367
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002368 char c;
2369 int i;
2370
2371 strcpy(buf, prompt);
Paul Fox8552aec2005-09-16 12:20:05 +00002372 last_status_cksum = 0; // force status update
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002373 go_bottom_and_clear_to_eol();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002374 write1(prompt); // write out the :, /, or ? prompt
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002375
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002376 i = strlen(buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002377 while (i < MAX_INPUT_LEN) {
2378 c = get_one_char();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002379 if (c == '\n' || c == '\r' || c == 27)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002380 break; // this is end of input
Paul Foxf2de0b72005-09-13 22:20:37 +00002381 if (c == erase_char || c == 8 || c == 127) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002382 // user wants to erase prev char
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002383 buf[--i] = '\0';
2384 write1("\b \b"); // erase char on screen
2385 if (i <= 0) // user backs up before b-o-l, exit
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002386 break;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002387 } else {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002388 buf[i] = c;
2389 buf[++i] = '\0';
2390 bb_putchar(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002391 }
2392 }
2393 refresh(FALSE);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002394 return buf;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002395#undef buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002396}
2397
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002398static int file_size(const char *fn) // what is the byte size of "fn"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002399{
2400 struct stat st_buf;
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002401 int cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002402
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002403 cnt = -1;
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002404 if (fn && fn[0] && stat(fn, &st_buf) == 0) // see if file exists
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002405 cnt = (int) st_buf.st_size;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002406 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002407}
2408
Denis Vlasenko33875382008-06-21 20:31:50 +00002409static int file_insert(const char *fn, char *p
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002410 USE_FEATURE_VI_READONLY(, int update_ro_status))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002411{
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002412 int cnt = -1;
2413 int fd, size;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002414 struct stat statbuf;
2415
2416 /* Validate file */
2417 if (stat(fn, &statbuf) < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002418 status_line_bold("\"%s\" %s", fn, strerror(errno));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002419 goto fi0;
2420 }
Denis Vlasenko33875382008-06-21 20:31:50 +00002421 if (!S_ISREG(statbuf.st_mode)) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002422 // This is not a regular file
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002423 status_line_bold("\"%s\" Not a regular file", fn);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002424 goto fi0;
2425 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002426 if (p < text || p > end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002427 status_line_bold("Trying to insert file outside of memory");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002428 goto fi0;
2429 }
2430
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002431 // read file to buffer
2432 fd = open(fn, O_RDONLY);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002433 if (fd < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002434 status_line_bold("\"%s\" %s", fn, strerror(errno));
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002435 goto fi0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002436 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002437 size = statbuf.st_size;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002438 p = text_hole_make(p, size);
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002439 cnt = safe_read(fd, p, size);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002440 if (cnt < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002441 status_line_bold("\"%s\" %s", fn, strerror(errno));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002442 p = text_hole_delete(p, p + size - 1); // un-do buffer insert
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002443 } else if (cnt < size) {
2444 // There was a partial read, shrink unused space text[]
2445 p = text_hole_delete(p + cnt, p + (size - cnt) - 1); // un-do buffer insert
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002446 status_line_bold("cannot read all of file \"%s\"", fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002447 }
2448 if (cnt >= size)
Paul Fox8552aec2005-09-16 12:20:05 +00002449 file_modified++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002450 close(fd);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002451 fi0:
Denis Vlasenko856be772007-08-17 08:29:48 +00002452#if ENABLE_FEATURE_VI_READONLY
2453 if (update_ro_status
2454 && ((access(fn, W_OK) < 0) ||
2455 /* root will always have access()
2456 * so we check fileperms too */
2457 !(statbuf.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH))
2458 )
2459 ) {
Denis Vlasenko2f6ae432007-07-19 22:50:47 +00002460 SET_READONLY_FILE(readonly_mode);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002461 }
Denis Vlasenko856be772007-08-17 08:29:48 +00002462#endif
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002463 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002464}
2465
Denis Vlasenko33875382008-06-21 20:31:50 +00002466static int file_write(char *fn, char *first, char *last)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002467{
2468 int fd, cnt, charcnt;
2469
2470 if (fn == 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002471 status_line_bold("No current filename");
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002472 return -2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002473 }
2474 charcnt = 0;
Denis Vlasenko8abae882008-05-03 11:35:59 +00002475 /* By popular request we do not open file with O_TRUNC,
2476 * but instead ftruncate() it _after_ successful write.
2477 * Might reduce amount of data lost on power fail etc.
2478 */
2479 fd = open(fn, (O_WRONLY | O_CREAT), 0666);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002480 if (fd < 0)
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002481 return -1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002482 cnt = last - first + 1;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002483 charcnt = full_write(fd, first, cnt);
Denis Vlasenko8abae882008-05-03 11:35:59 +00002484 ftruncate(fd, charcnt);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002485 if (charcnt == cnt) {
2486 // good write
Denis Vlasenkob1759462008-06-20 20:20:54 +00002487 //file_modified = FALSE;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002488 } else {
2489 charcnt = 0;
2490 }
2491 close(fd);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002492 return charcnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002493}
2494
2495//----- Terminal Drawing ---------------------------------------
2496// The terminal is made up of 'rows' line of 'columns' columns.
Eric Andersenaff114c2004-04-14 17:51:38 +00002497// classically this would be 24 x 80.
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002498// screen coordinates
2499// 0,0 ... 0,79
2500// 1,0 ... 1,79
2501// . ... .
2502// . ... .
2503// 22,0 ... 22,79
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002504// 23,0 ... 23,79 <- status line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002505
2506//----- Move the cursor to row x col (count from 0, not 1) -------
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002507static void place_cursor(int row, int col, int optimize)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002508{
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002509 char cm1[sizeof(CMrc) + sizeof(int)*3 * 2];
Denis Vlasenko7b54dc72008-07-17 21:32:32 +00002510#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
2511 enum {
2512 SZ_UP = sizeof(CMup),
2513 SZ_DN = sizeof(CMdown),
2514 SEQ_SIZE = SZ_UP > SZ_DN ? SZ_UP : SZ_DN,
2515 };
2516 char cm2[SEQ_SIZE * 5 + 32]; // bigger than worst case size
2517#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002518 char *cm;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002519
2520 if (row < 0) row = 0;
2521 if (row >= rows) row = rows - 1;
2522 if (col < 0) col = 0;
2523 if (col >= columns) col = columns - 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002524
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002525 //----- 1. Try the standard terminal ESC sequence
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002526 sprintf(cm1, CMrc, row + 1, col + 1);
2527 cm = cm1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002528
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002529#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002530 if (optimize && col < 16) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002531 char *screenp;
2532 int Rrow = last_row;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002533 int diff = Rrow - row;
2534
2535 if (diff < -5 || diff > 5)
2536 goto skip;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002537
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002538 //----- find the minimum # of chars to move cursor -------------
2539 //----- 2. Try moving with discreet chars (Newline, [back]space, ...)
2540 cm2[0] = '\0';
2541
2542 // move to the correct row
2543 while (row < Rrow) {
2544 // the cursor has to move up
2545 strcat(cm2, CMup);
2546 Rrow--;
2547 }
2548 while (row > Rrow) {
2549 // the cursor has to move down
2550 strcat(cm2, CMdown);
2551 Rrow++;
2552 }
2553
2554 // now move to the correct column
2555 strcat(cm2, "\r"); // start at col 0
2556 // just send out orignal source char to get to correct place
2557 screenp = &screen[row * columns]; // start of screen line
2558 strncat(cm2, screenp, col);
2559
2560 // pick the shortest cursor motion to send out
2561 if (strlen(cm2) < strlen(cm)) {
2562 cm = cm2;
2563 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002564 skip: ;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002565 }
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002566 last_row = row;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002567#endif /* FEATURE_VI_OPTIMIZE_CURSOR */
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002568 write1(cm);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002569}
2570
2571//----- Erase from cursor to end of line -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002572static void clear_to_eol(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002573{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002574 write1(Ceol); // Erase from cursor to end of line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002575}
2576
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002577static void go_bottom_and_clear_to_eol(void)
2578{
2579 place_cursor(rows - 1, 0, FALSE); // go to bottom of screen
2580 clear_to_eol(); // erase to end of line
2581}
2582
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002583//----- Erase from cursor to end of screen -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002584static void clear_to_eos(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002585{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002586 write1(Ceos); // Erase from cursor to end of screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002587}
2588
2589//----- Start standout mode ------------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002590static void standout_start(void) // send "start reverse video" sequence
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002591{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002592 write1(SOs); // Start reverse video mode
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002593}
2594
2595//----- End standout mode --------------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002596static void standout_end(void) // send "end reverse video" sequence
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002597{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002598 write1(SOn); // End reverse video mode
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002599}
2600
2601//----- Flash the screen --------------------------------------
2602static void flash(int h)
2603{
2604 standout_start(); // send "start reverse video" sequence
2605 redraw(TRUE);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002606 mysleep(h);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002607 standout_end(); // send "end reverse video" sequence
2608 redraw(TRUE);
2609}
2610
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002611static void Indicate_Error(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002612{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002613#if ENABLE_FEATURE_VI_CRASHME
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002614 if (crashme > 0)
2615 return; // generate a random command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002616#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002617 if (!err_method) {
2618 write1(bell); // send out a bell character
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002619 } else {
2620 flash(10);
2621 }
2622}
2623
2624//----- Screen[] Routines --------------------------------------
2625//----- Erase the Screen[] memory ------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002626static void screen_erase(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002627{
2628 memset(screen, ' ', screensize); // clear new screen
2629}
2630
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002631static int bufsum(char *buf, int count)
Paul Fox8552aec2005-09-16 12:20:05 +00002632{
2633 int sum = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002634 char *e = buf + count;
2635
Paul Fox8552aec2005-09-16 12:20:05 +00002636 while (buf < e)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002637 sum += (unsigned char) *buf++;
Paul Fox8552aec2005-09-16 12:20:05 +00002638 return sum;
2639}
2640
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002641//----- Draw the status line at bottom of the screen -------------
2642static void show_status_line(void)
2643{
Paul Foxc3504852005-09-16 12:48:18 +00002644 int cnt = 0, cksum = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002645
Paul Fox8552aec2005-09-16 12:20:05 +00002646 // either we already have an error or status message, or we
2647 // create one.
2648 if (!have_status_msg) {
2649 cnt = format_edit_status();
2650 cksum = bufsum(status_buffer, cnt);
2651 }
2652 if (have_status_msg || ((cnt > 0 && last_status_cksum != cksum))) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002653 last_status_cksum = cksum; // remember if we have seen this line
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002654 go_bottom_and_clear_to_eol();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002655 write1(status_buffer);
Paul Fox8552aec2005-09-16 12:20:05 +00002656 if (have_status_msg) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002657 if (((int)strlen(status_buffer) - (have_status_msg - 1)) >
Paul Fox8552aec2005-09-16 12:20:05 +00002658 (columns - 1) ) {
2659 have_status_msg = 0;
2660 Hit_Return();
2661 }
2662 have_status_msg = 0;
2663 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002664 place_cursor(crow, ccol, FALSE); // put cursor back in correct place
2665 }
Eric Andersena9eb33d2004-08-19 19:15:06 +00002666 fflush(stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002667}
2668
2669//----- format the status buffer, the bottom line of screen ------
Paul Fox8552aec2005-09-16 12:20:05 +00002670// format status buffer, with STANDOUT mode
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002671static void status_line_bold(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002672{
2673 va_list args;
2674
2675 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002676 strcpy(status_buffer, SOs); // Terminal standout mode on
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002677 vsprintf(status_buffer + sizeof(SOs)-1, format, args);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002678 strcat(status_buffer, SOn); // Terminal standout mode off
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002679 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00002680
2681 have_status_msg = 1 + sizeof(SOs) + sizeof(SOn) - 2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002682}
2683
Paul Fox8552aec2005-09-16 12:20:05 +00002684// format status buffer
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002685static void status_line(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002686{
2687 va_list args;
2688
2689 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002690 vsprintf(status_buffer, format, args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002691 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00002692
2693 have_status_msg = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002694}
2695
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002696// copy s to buf, convert unprintable
2697static void print_literal(char *buf, const char *s)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002698{
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002699 unsigned char c;
2700 char b[2];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002701
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002702 b[1] = '\0';
2703 buf[0] = '\0';
2704 if (!s[0])
2705 s = "(NULL)";
2706 for (; *s; s++) {
2707 int c_is_no_print;
2708
2709 c = *s;
2710 c_is_no_print = (c & 0x80) && !Isprint(c);
2711 if (c_is_no_print) {
2712 strcat(buf, SOn);
2713 c = '.';
2714 }
2715 if (c < ' ' || c == 127) {
2716 strcat(buf, "^");
2717 if (c == 127)
2718 c = '?';
2719 else
2720 c += '@';
2721 }
2722 b[0] = c;
2723 strcat(buf, b);
2724 if (c_is_no_print)
2725 strcat(buf, SOs);
2726 if (*s == '\n')
2727 strcat(buf, "$");
2728 if (strlen(buf) > MAX_INPUT_LEN - 10) // paranoia
2729 break;
2730 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002731}
2732
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002733static void not_implemented(const char *s)
2734{
2735 char buf[MAX_INPUT_LEN];
2736
2737 print_literal(buf, s);
2738 status_line_bold("\'%s\' is not implemented", buf);
2739}
2740
2741// show file status on status line
2742static int format_edit_status(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002743{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00002744 static const char cmd_mode_indicator[] ALIGN1 = "-IR-";
Denis Vlasenkob1759462008-06-20 20:20:54 +00002745
2746#define tot format_edit_status__tot
2747
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002748 int cur, percent, ret, trunc_at;
2749
Paul Fox8552aec2005-09-16 12:20:05 +00002750 // file_modified is now a counter rather than a flag. this
2751 // helps reduce the amount of line counting we need to do.
2752 // (this will cause a mis-reporting of modified status
2753 // once every MAXINT editing operations.)
2754
2755 // it would be nice to do a similar optimization here -- if
2756 // we haven't done a motion that could have changed which line
2757 // we're on, then we shouldn't have to do this count_lines()
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002758 cur = count_lines(text, dot);
Paul Fox8552aec2005-09-16 12:20:05 +00002759
2760 // reduce counting -- the total lines can't have
2761 // changed if we haven't done any edits.
2762 if (file_modified != last_file_modified) {
2763 tot = cur + count_lines(dot, end - 1) - 1;
2764 last_file_modified = file_modified;
2765 }
2766
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002767 // current line percent
2768 // ------------- ~~ ----------
2769 // total lines 100
2770 if (tot > 0) {
2771 percent = (100 * cur) / tot;
2772 } else {
2773 cur = tot = 0;
2774 percent = 100;
2775 }
Eric Andersen0ef24c62005-07-18 10:32:59 +00002776
Paul Fox8552aec2005-09-16 12:20:05 +00002777 trunc_at = columns < STATUS_BUFFER_LEN-1 ?
2778 columns : STATUS_BUFFER_LEN-1;
2779
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002780 ret = snprintf(status_buffer, trunc_at+1,
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002781#if ENABLE_FEATURE_VI_READONLY
Paul Fox8552aec2005-09-16 12:20:05 +00002782 "%c %s%s%s %d/%d %d%%",
2783#else
2784 "%c %s%s %d/%d %d%%",
2785#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002786 cmd_mode_indicator[cmd_mode & 3],
2787 (current_filename != NULL ? current_filename : "No file"),
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002788#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002789 (readonly_mode ? " [Readonly]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00002790#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002791 (file_modified ? " [Modified]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00002792 cur, tot, percent);
2793
2794 if (ret >= 0 && ret < trunc_at)
2795 return ret; /* it all fit */
2796
2797 return trunc_at; /* had to truncate */
Denis Vlasenkob1759462008-06-20 20:20:54 +00002798#undef tot
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002799}
2800
2801//----- Force refresh of all Lines -----------------------------
2802static void redraw(int full_screen)
2803{
2804 place_cursor(0, 0, FALSE); // put cursor in correct place
Denis Vlasenkob1759462008-06-20 20:20:54 +00002805 clear_to_eos(); // tell terminal to erase display
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002806 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00002807 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002808 refresh(full_screen); // this will redraw the entire display
Paul Fox8552aec2005-09-16 12:20:05 +00002809 show_status_line();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002810}
2811
2812//----- Format a text[] line into a buffer ---------------------
Denis Vlasenko68404f12008-03-17 09:00:54 +00002813static char* format_line(char *src /*, int li*/)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002814{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002815 unsigned char c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002816 int co;
2817 int ofs = offset;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002818 char *dest = scr_out_buf; // [MAX_SCR_COLS + MAX_TABSTOP * 2]
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002819
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002820 c = '~'; // char in col 0 in non-existent lines is '~'
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002821 co = 0;
2822 while (co < columns + tabstop) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002823 // have we gone past the end?
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002824 if (src < end) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002825 c = *src++;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002826 if (c == '\n')
2827 break;
2828 if ((c & 0x80) && !Isprint(c)) {
2829 c = '.';
2830 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002831 if (c < ' ' || c == 0x7f) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002832 if (c == '\t') {
2833 c = ' ';
2834 // co % 8 != 7
2835 while ((co % tabstop) != (tabstop - 1)) {
2836 dest[co++] = c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002837 }
2838 } else {
2839 dest[co++] = '^';
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002840 if (c == 0x7f)
2841 c = '?';
2842 else
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002843 c += '@'; // Ctrl-X -> 'X'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002844 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002845 }
2846 }
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002847 dest[co++] = c;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002848 // discard scrolled-off-to-the-left portion,
2849 // in tabstop-sized pieces
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002850 if (ofs >= tabstop && co >= tabstop) {
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002851 memmove(dest, dest + tabstop, co);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002852 co -= tabstop;
2853 ofs -= tabstop;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002854 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002855 if (src >= end)
2856 break;
2857 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002858 // check "short line, gigantic offset" case
2859 if (co < ofs)
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002860 ofs = co;
2861 // discard last scrolled off part
2862 co -= ofs;
2863 dest += ofs;
2864 // fill the rest with spaces
2865 if (co < columns)
2866 memset(&dest[co], ' ', columns - co);
2867 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002868}
2869
2870//----- Refresh the changed screen lines -----------------------
2871// Copy the source line from text[] into the buffer and note
2872// if the current screenline is different from the new buffer.
2873// If they differ then that line needs redrawing on the terminal.
2874//
2875static void refresh(int full_screen)
2876{
Denis Vlasenkob1759462008-06-20 20:20:54 +00002877#define old_offset refresh__old_offset
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002878
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002879 int li, changed;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002880 char *tp, *sp; // pointer into text[] and screen[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002881
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002882 if (ENABLE_FEATURE_VI_WIN_RESIZE) {
Denis Vlasenko55995022008-05-18 22:28:26 +00002883 unsigned c = columns, r = rows;
Rob Landleye5e1a102006-06-21 01:15:36 +00002884 get_terminal_width_height(0, &columns, &rows);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002885 if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS;
2886 if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS;
2887 full_screen |= (c - columns) | (r - rows);
2888 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002889 sync_cursor(dot, &crow, &ccol); // where cursor will be (on "dot")
2890 tp = screenbegin; // index into text[] of top line
2891
2892 // compare text[] to screen[] and mark screen[] lines that need updating
2893 for (li = 0; li < rows - 1; li++) {
2894 int cs, ce; // column start & end
Denis Vlasenkof882f082007-12-23 02:36:51 +00002895 char *out_buf;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002896 // format current text line
Denis Vlasenko68404f12008-03-17 09:00:54 +00002897 out_buf = format_line(tp /*, li*/);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002898
2899 // skip to the end of the current text[] line
Denis Vlasenkof882f082007-12-23 02:36:51 +00002900 if (tp < end) {
2901 char *t = memchr(tp, '\n', end - tp);
2902 if (!t) t = end - 1;
2903 tp = t + 1;
2904 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002905
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002906 // see if there are any changes between vitual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002907 changed = FALSE; // assume no change
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002908 cs = 0;
2909 ce = columns - 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002910 sp = &screen[li * columns]; // start of screen line
2911 if (full_screen) {
2912 // force re-draw of every single column from 0 - columns-1
2913 goto re0;
2914 }
2915 // compare newly formatted buffer with virtual screen
2916 // look forward for first difference between buf and screen
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002917 for (; cs <= ce; cs++) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002918 if (out_buf[cs] != sp[cs]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002919 changed = TRUE; // mark for redraw
2920 break;
2921 }
2922 }
2923
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002924 // look backward for last difference between out_buf and screen
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002925 for (; ce >= cs; ce--) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002926 if (out_buf[ce] != sp[ce]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002927 changed = TRUE; // mark for redraw
2928 break;
2929 }
2930 }
2931 // now, cs is index of first diff, and ce is index of last diff
2932
2933 // if horz offset has changed, force a redraw
2934 if (offset != old_offset) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002935 re0:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002936 changed = TRUE;
2937 }
2938
2939 // make a sanity check of columns indexes
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002940 if (cs < 0) cs = 0;
2941 if (ce > columns - 1) ce = columns - 1;
2942 if (cs > ce) { cs = 0; ce = columns - 1; }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002943 // is there a change between vitual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002944 if (changed) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002945 // copy changed part of buffer to virtual screen
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002946 memcpy(sp+cs, out_buf+cs, ce-cs+1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002947
2948 // move cursor to column of first change
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002949 //if (offset != old_offset) {
2950 // // place_cursor is still too stupid
2951 // // to handle offsets correctly
2952 // place_cursor(li, cs, FALSE);
2953 //} else {
2954 place_cursor(li, cs, TRUE);
2955 //}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002956
2957 // write line out to terminal
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002958 fwrite(&sp[cs], ce - cs + 1, 1, stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002959 }
2960 }
2961
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002962 place_cursor(crow, ccol, TRUE);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002963
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002964 old_offset = offset;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002965#undef old_offset
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002966}
2967
Eric Andersen3f980402001-04-04 17:31:15 +00002968//---------------------------------------------------------------------
2969//----- the Ascii Chart -----------------------------------------------
2970//
2971// 00 nul 01 soh 02 stx 03 etx 04 eot 05 enq 06 ack 07 bel
2972// 08 bs 09 ht 0a nl 0b vt 0c np 0d cr 0e so 0f si
2973// 10 dle 11 dc1 12 dc2 13 dc3 14 dc4 15 nak 16 syn 17 etb
2974// 18 can 19 em 1a sub 1b esc 1c fs 1d gs 1e rs 1f us
2975// 20 sp 21 ! 22 " 23 # 24 $ 25 % 26 & 27 '
2976// 28 ( 29 ) 2a * 2b + 2c , 2d - 2e . 2f /
2977// 30 0 31 1 32 2 33 3 34 4 35 5 36 6 37 7
2978// 38 8 39 9 3a : 3b ; 3c < 3d = 3e > 3f ?
2979// 40 @ 41 A 42 B 43 C 44 D 45 E 46 F 47 G
2980// 48 H 49 I 4a J 4b K 4c L 4d M 4e N 4f O
2981// 50 P 51 Q 52 R 53 S 54 T 55 U 56 V 57 W
2982// 58 X 59 Y 5a Z 5b [ 5c \ 5d ] 5e ^ 5f _
2983// 60 ` 61 a 62 b 63 c 64 d 65 e 66 f 67 g
2984// 68 h 69 i 6a j 6b k 6c l 6d m 6e n 6f o
2985// 70 p 71 q 72 r 73 s 74 t 75 u 76 v 77 w
2986// 78 x 79 y 7a z 7b { 7c | 7d } 7e ~ 7f del
2987//---------------------------------------------------------------------
2988
2989//----- Execute a Vi Command -----------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002990static void do_cmd(char c)
Eric Andersen3f980402001-04-04 17:31:15 +00002991{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002992 const char *msg = msg; // for compiler
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002993 char c1, *p, *q, *save_dot;
2994 char buf[12];
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002995 int dir = dir; // for compiler
Paul Foxc51fc7b2008-03-06 01:34:23 +00002996 int cnt, i, j;
Eric Andersen3f980402001-04-04 17:31:15 +00002997
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002998// c1 = c; // quiet the compiler
2999// cnt = yf = 0; // quiet the compiler
3000// msg = p = q = save_dot = buf; // quiet the compiler
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003001 memset(buf, '\0', 12);
Eric Andersenbff7a602001-11-17 07:15:43 +00003002
Paul Fox8552aec2005-09-16 12:20:05 +00003003 show_status_line();
3004
Eric Andersenbff7a602001-11-17 07:15:43 +00003005 /* if this is a cursor key, skip these checks */
3006 switch (c) {
3007 case VI_K_UP:
3008 case VI_K_DOWN:
3009 case VI_K_LEFT:
3010 case VI_K_RIGHT:
3011 case VI_K_HOME:
3012 case VI_K_END:
3013 case VI_K_PAGEUP:
3014 case VI_K_PAGEDOWN:
Denis Vlasenkoded6ad32008-10-14 12:26:30 +00003015 case VI_K_DELETE:
Eric Andersenbff7a602001-11-17 07:15:43 +00003016 goto key_cmd_mode;
3017 }
3018
Eric Andersen3f980402001-04-04 17:31:15 +00003019 if (cmd_mode == 2) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003020 // flip-flop Insert/Replace mode
Denis Vlasenko2a51af22007-03-21 22:31:24 +00003021 if (c == VI_K_INSERT)
3022 goto dc_i;
Eric Andersen3f980402001-04-04 17:31:15 +00003023 // we are 'R'eplacing the current *dot with new char
3024 if (*dot == '\n') {
3025 // don't Replace past E-o-l
3026 cmd_mode = 1; // convert to insert
3027 } else {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003028 if (1 <= c || Isprint(c)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003029 if (c != 27)
3030 dot = yank_delete(dot, dot, 0, YANKDEL); // delete char
3031 dot = char_insert(dot, c); // insert new char
3032 }
3033 goto dc1;
3034 }
3035 }
3036 if (cmd_mode == 1) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003037 // hitting "Insert" twice means "R" replace mode
3038 if (c == VI_K_INSERT) goto dc5;
Eric Andersen3f980402001-04-04 17:31:15 +00003039 // insert the char c at "dot"
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003040 if (1 <= c || Isprint(c)) {
3041 dot = char_insert(dot, c);
Eric Andersen3f980402001-04-04 17:31:15 +00003042 }
3043 goto dc1;
3044 }
3045
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003046 key_cmd_mode:
Eric Andersen3f980402001-04-04 17:31:15 +00003047 switch (c) {
Eric Andersen822c3832001-05-07 17:37:43 +00003048 //case 0x01: // soh
3049 //case 0x09: // ht
3050 //case 0x0b: // vt
3051 //case 0x0e: // so
3052 //case 0x0f: // si
3053 //case 0x10: // dle
3054 //case 0x11: // dc1
3055 //case 0x13: // dc3
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003056#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen1c0d3112001-04-16 15:46:44 +00003057 case 0x14: // dc4 ctrl-T
Eric Andersen3f980402001-04-04 17:31:15 +00003058 crashme = (crashme == 0) ? 1 : 0;
Eric Andersen3f980402001-04-04 17:31:15 +00003059 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003060#endif
Eric Andersen822c3832001-05-07 17:37:43 +00003061 //case 0x16: // syn
3062 //case 0x17: // etb
3063 //case 0x18: // can
3064 //case 0x1c: // fs
3065 //case 0x1d: // gs
3066 //case 0x1e: // rs
3067 //case 0x1f: // us
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003068 //case '!': // !-
3069 //case '#': // #-
3070 //case '&': // &-
3071 //case '(': // (-
3072 //case ')': // )-
3073 //case '*': // *-
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003074 //case '=': // =-
3075 //case '@': // @-
3076 //case 'F': // F-
3077 //case 'K': // K-
3078 //case 'Q': // Q-
3079 //case 'S': // S-
3080 //case 'T': // T-
3081 //case 'V': // V-
3082 //case '[': // [-
3083 //case '\\': // \-
3084 //case ']': // ]-
3085 //case '_': // _-
3086 //case '`': // `-
Eric Andersen1c0d3112001-04-16 15:46:44 +00003087 //case 'u': // u- FIXME- there is no undo
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003088 //case 'v': // v-
Eric Andersen3f980402001-04-04 17:31:15 +00003089 default: // unrecognised command
3090 buf[0] = c;
3091 buf[1] = '\0';
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003092 if (c < ' ') {
Eric Andersen3f980402001-04-04 17:31:15 +00003093 buf[0] = '^';
3094 buf[1] = c + '@';
3095 buf[2] = '\0';
3096 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003097 not_implemented(buf);
Eric Andersen3f980402001-04-04 17:31:15 +00003098 end_cmd_q(); // stop adding to q
3099 case 0x00: // nul- ignore
3100 break;
3101 case 2: // ctrl-B scroll up full screen
3102 case VI_K_PAGEUP: // Cursor Key Page Up
3103 dot_scroll(rows - 2, -1);
3104 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003105 case 4: // ctrl-D scroll down half screen
3106 dot_scroll((rows - 2) / 2, 1);
3107 break;
3108 case 5: // ctrl-E scroll down one line
3109 dot_scroll(1, 1);
3110 break;
3111 case 6: // ctrl-F scroll down full screen
3112 case VI_K_PAGEDOWN: // Cursor Key Page Down
3113 dot_scroll(rows - 2, 1);
3114 break;
3115 case 7: // ctrl-G show current status
Paul Fox8552aec2005-09-16 12:20:05 +00003116 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003117 break;
3118 case 'h': // h- move left
3119 case VI_K_LEFT: // cursor key Left
Paul Foxd13b90b2005-07-18 22:17:25 +00003120 case 8: // ctrl-H- move left (This may be ERASE char)
Denis Vlasenko2a51af22007-03-21 22:31:24 +00003121 case 0x7f: // DEL- move left (This may be ERASE char)
Eric Andersen3f980402001-04-04 17:31:15 +00003122 if (cmdcnt-- > 1) {
3123 do_cmd(c);
3124 } // repeat cnt
3125 dot_left();
3126 break;
3127 case 10: // Newline ^J
3128 case 'j': // j- goto next line, same col
3129 case VI_K_DOWN: // cursor key Down
3130 if (cmdcnt-- > 1) {
3131 do_cmd(c);
3132 } // repeat cnt
3133 dot_next(); // go to next B-o-l
3134 dot = move_to_col(dot, ccol + offset); // try stay in same col
3135 break;
3136 case 12: // ctrl-L force redraw whole screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003137 case 18: // ctrl-R force redraw
Eric Andersen822c3832001-05-07 17:37:43 +00003138 place_cursor(0, 0, FALSE); // put cursor in correct place
Eric Andersen3f980402001-04-04 17:31:15 +00003139 clear_to_eos(); // tel terminal to erase display
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003140 mysleep(10);
Eric Andersen3f980402001-04-04 17:31:15 +00003141 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00003142 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003143 refresh(TRUE); // this will redraw the entire display
3144 break;
3145 case 13: // Carriage Return ^M
3146 case '+': // +- goto next line
3147 if (cmdcnt-- > 1) {
3148 do_cmd(c);
3149 } // repeat cnt
3150 dot_next();
3151 dot_skip_over_ws();
3152 break;
3153 case 21: // ctrl-U scroll up half screen
3154 dot_scroll((rows - 2) / 2, -1);
3155 break;
3156 case 25: // ctrl-Y scroll up one line
3157 dot_scroll(1, -1);
3158 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003159 case 27: // esc
Eric Andersen3f980402001-04-04 17:31:15 +00003160 if (cmd_mode == 0)
3161 indicate_error(c);
3162 cmd_mode = 0; // stop insrting
3163 end_cmd_q();
Paul Fox8552aec2005-09-16 12:20:05 +00003164 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003165 break;
3166 case ' ': // move right
3167 case 'l': // move right
3168 case VI_K_RIGHT: // Cursor Key Right
3169 if (cmdcnt-- > 1) {
3170 do_cmd(c);
3171 } // repeat cnt
3172 dot_right();
3173 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003174#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003175 case '"': // "- name a register to use for Delete/Yank
3176 c1 = get_one_char();
3177 c1 = tolower(c1);
3178 if (islower(c1)) {
3179 YDreg = c1 - 'a';
3180 } else {
3181 indicate_error(c);
3182 }
3183 break;
3184 case '\'': // '- goto a specific mark
3185 c1 = get_one_char();
3186 c1 = tolower(c1);
3187 if (islower(c1)) {
3188 c1 = c1 - 'a';
3189 // get the b-o-l
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003190 q = mark[(unsigned char) c1];
Eric Andersen3f980402001-04-04 17:31:15 +00003191 if (text <= q && q < end) {
3192 dot = q;
3193 dot_begin(); // go to B-o-l
3194 dot_skip_over_ws();
3195 }
3196 } else if (c1 == '\'') { // goto previous context
3197 dot = swap_context(dot); // swap current and previous context
3198 dot_begin(); // go to B-o-l
3199 dot_skip_over_ws();
3200 } else {
3201 indicate_error(c);
3202 }
3203 break;
3204 case 'm': // m- Mark a line
3205 // this is really stupid. If there are any inserts or deletes
3206 // between text[0] and dot then this mark will not point to the
3207 // correct location! It could be off by many lines!
3208 // Well..., at least its quick and dirty.
3209 c1 = get_one_char();
3210 c1 = tolower(c1);
3211 if (islower(c1)) {
3212 c1 = c1 - 'a';
3213 // remember the line
3214 mark[(int) c1] = dot;
3215 } else {
3216 indicate_error(c);
3217 }
3218 break;
3219 case 'P': // P- Put register before
3220 case 'p': // p- put register after
3221 p = reg[YDreg];
3222 if (p == 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003223 status_line_bold("Nothing in register %c", what_reg());
Eric Andersen3f980402001-04-04 17:31:15 +00003224 break;
3225 }
3226 // are we putting whole lines or strings
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003227 if (strchr(p, '\n') != NULL) {
Eric Andersen3f980402001-04-04 17:31:15 +00003228 if (c == 'P') {
3229 dot_begin(); // putting lines- Put above
3230 }
3231 if (c == 'p') {
3232 // are we putting after very last line?
3233 if (end_line(dot) == (end - 1)) {
3234 dot = end; // force dot to end of text[]
3235 } else {
3236 dot_next(); // next line, then put before
3237 }
3238 }
3239 } else {
3240 if (c == 'p')
3241 dot_right(); // move to right, can move to NL
3242 }
3243 dot = string_insert(dot, p); // insert the string
3244 end_cmd_q(); // stop adding to q
3245 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003246 case 'U': // U- Undo; replace current line with original version
3247 if (reg[Ureg] != 0) {
3248 p = begin_line(dot);
3249 q = end_line(dot);
3250 p = text_hole_delete(p, q); // delete cur line
3251 p = string_insert(p, reg[Ureg]); // insert orig line
3252 dot = p;
3253 dot_skip_over_ws();
3254 }
3255 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003256#endif /* FEATURE_VI_YANKMARK */
Eric Andersen3f980402001-04-04 17:31:15 +00003257 case '$': // $- goto end of line
3258 case VI_K_END: // Cursor Key End
3259 if (cmdcnt-- > 1) {
3260 do_cmd(c);
3261 } // repeat cnt
Glenn L McGrathee829062004-01-21 10:59:45 +00003262 dot = end_line(dot);
Eric Andersen3f980402001-04-04 17:31:15 +00003263 break;
3264 case '%': // %- find matching char of pair () [] {}
3265 for (q = dot; q < end && *q != '\n'; q++) {
3266 if (strchr("()[]{}", *q) != NULL) {
3267 // we found half of a pair
3268 p = find_pair(q, *q);
3269 if (p == NULL) {
3270 indicate_error(c);
3271 } else {
3272 dot = p;
3273 }
3274 break;
3275 }
3276 }
3277 if (*q == '\n')
3278 indicate_error(c);
3279 break;
3280 case 'f': // f- forward to a user specified char
3281 last_forward_char = get_one_char(); // get the search char
3282 //
Eric Andersenaff114c2004-04-14 17:51:38 +00003283 // dont separate these two commands. 'f' depends on ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003284 //
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003285 //**** fall through to ... ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003286 case ';': // ;- look at rest of line for last forward char
3287 if (cmdcnt-- > 1) {
Eric Andersen822c3832001-05-07 17:37:43 +00003288 do_cmd(';');
Eric Andersen3f980402001-04-04 17:31:15 +00003289 } // repeat cnt
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003290 if (last_forward_char == 0)
3291 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003292 q = dot + 1;
3293 while (q < end - 1 && *q != '\n' && *q != last_forward_char) {
3294 q++;
3295 }
3296 if (*q == last_forward_char)
3297 dot = q;
3298 break;
Paul Foxb5ee8db2008-02-14 01:17:01 +00003299 case ',': // repeat latest 'f' in opposite direction
3300 if (cmdcnt-- > 1) {
3301 do_cmd(',');
3302 } // repeat cnt
3303 if (last_forward_char == 0)
3304 break;
3305 q = dot - 1;
3306 while (q >= text && *q != '\n' && *q != last_forward_char) {
3307 q--;
3308 }
3309 if (q >= text && *q == last_forward_char)
3310 dot = q;
3311 break;
3312
Eric Andersen3f980402001-04-04 17:31:15 +00003313 case '-': // -- goto prev line
3314 if (cmdcnt-- > 1) {
3315 do_cmd(c);
3316 } // repeat cnt
3317 dot_prev();
3318 dot_skip_over_ws();
3319 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003320#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003321 case '.': // .- repeat the last modifying command
3322 // Stuff the last_modifying_cmd back into stdin
3323 // and let it be re-executed.
Denis Vlasenkob1759462008-06-20 20:20:54 +00003324 if (lmc_len > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00003325 last_modifying_cmd[lmc_len] = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003326 ioq = ioq_start = xstrdup(last_modifying_cmd);
Eric Andersen3f980402001-04-04 17:31:15 +00003327 }
3328 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003329#endif
3330#if ENABLE_FEATURE_VI_SEARCH
Eric Andersen3f980402001-04-04 17:31:15 +00003331 case '?': // /- search for a pattern
3332 case '/': // /- search for a pattern
3333 buf[0] = c;
3334 buf[1] = '\0';
3335 q = get_input_line(buf); // get input line- use "status line"
Paul Fox4917c112008-03-05 16:44:02 +00003336 if (q[0] && !q[1]) {
3337 if (last_search_pattern[0])
3338 last_search_pattern[0] = c;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003339 goto dc3; // if no pat re-use old pat
Paul Fox4917c112008-03-05 16:44:02 +00003340 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003341 if (q[0]) { // strlen(q) > 1: new pat- save it and find
Eric Andersen3f980402001-04-04 17:31:15 +00003342 // there is a new pat
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00003343 free(last_search_pattern);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003344 last_search_pattern = xstrdup(q);
Eric Andersen3f980402001-04-04 17:31:15 +00003345 goto dc3; // now find the pattern
3346 }
3347 // user changed mind and erased the "/"- do nothing
3348 break;
3349 case 'N': // N- backward search for last pattern
3350 if (cmdcnt-- > 1) {
3351 do_cmd(c);
3352 } // repeat cnt
3353 dir = BACK; // assume BACKWARD search
3354 p = dot - 1;
3355 if (last_search_pattern[0] == '?') {
3356 dir = FORWARD;
3357 p = dot + 1;
3358 }
3359 goto dc4; // now search for pattern
3360 break;
3361 case 'n': // n- repeat search for last pattern
3362 // search rest of text[] starting at next char
3363 // if search fails return orignal "p" not the "p+1" address
3364 if (cmdcnt-- > 1) {
3365 do_cmd(c);
3366 } // repeat cnt
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003367 dc3:
Eric Andersen3f980402001-04-04 17:31:15 +00003368 if (last_search_pattern == 0) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003369 msg = "No previous regular expression";
Eric Andersen3f980402001-04-04 17:31:15 +00003370 goto dc2;
3371 }
3372 if (last_search_pattern[0] == '/') {
3373 dir = FORWARD; // assume FORWARD search
3374 p = dot + 1;
3375 }
3376 if (last_search_pattern[0] == '?') {
3377 dir = BACK;
3378 p = dot - 1;
3379 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003380 dc4:
Eric Andersen3f980402001-04-04 17:31:15 +00003381 q = char_search(p, last_search_pattern + 1, dir, FULL);
3382 if (q != NULL) {
3383 dot = q; // good search, update "dot"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003384 msg = "";
Eric Andersen3f980402001-04-04 17:31:15 +00003385 goto dc2;
3386 }
3387 // no pattern found between "dot" and "end"- continue at top
3388 p = text;
3389 if (dir == BACK) {
3390 p = end - 1;
3391 }
3392 q = char_search(p, last_search_pattern + 1, dir, FULL);
3393 if (q != NULL) { // found something
3394 dot = q; // found new pattern- goto it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003395 msg = "search hit BOTTOM, continuing at TOP";
Eric Andersen3f980402001-04-04 17:31:15 +00003396 if (dir == BACK) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003397 msg = "search hit TOP, continuing at BOTTOM";
Eric Andersen3f980402001-04-04 17:31:15 +00003398 }
3399 } else {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003400 msg = "Pattern not found";
Eric Andersen3f980402001-04-04 17:31:15 +00003401 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003402 dc2:
3403 if (*msg)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003404 status_line_bold("%s", msg);
Eric Andersen3f980402001-04-04 17:31:15 +00003405 break;
3406 case '{': // {- move backward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003407 q = char_search(dot, "\n\n", BACK, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003408 if (q != NULL) { // found blank line
3409 dot = next_line(q); // move to next blank line
3410 }
3411 break;
3412 case '}': // }- move forward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003413 q = char_search(dot, "\n\n", FORWARD, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003414 if (q != NULL) { // found blank line
3415 dot = next_line(q); // move to next blank line
3416 }
3417 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003418#endif /* FEATURE_VI_SEARCH */
Eric Andersen3f980402001-04-04 17:31:15 +00003419 case '0': // 0- goto begining of line
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003420 case '1': // 1-
3421 case '2': // 2-
3422 case '3': // 3-
3423 case '4': // 4-
3424 case '5': // 5-
3425 case '6': // 6-
3426 case '7': // 7-
3427 case '8': // 8-
3428 case '9': // 9-
Eric Andersen3f980402001-04-04 17:31:15 +00003429 if (c == '0' && cmdcnt < 1) {
3430 dot_begin(); // this was a standalone zero
3431 } else {
3432 cmdcnt = cmdcnt * 10 + (c - '0'); // this 0 is part of a number
3433 }
3434 break;
3435 case ':': // :- the colon mode commands
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003436 p = get_input_line(":"); // get input line- use "status line"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003437#if ENABLE_FEATURE_VI_COLON
Eric Andersen3f980402001-04-04 17:31:15 +00003438 colon(p); // execute the command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003439#else
Eric Andersen822c3832001-05-07 17:37:43 +00003440 if (*p == ':')
3441 p++; // move past the ':'
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003442 cnt = strlen(p);
Eric Andersen822c3832001-05-07 17:37:43 +00003443 if (cnt <= 0)
3444 break;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003445 if (strncasecmp(p, "quit", cnt) == 0
3446 || strncasecmp(p, "q!", cnt) == 0 // delete lines
3447 ) {
Matt Kraai1f0c4362001-12-20 23:13:26 +00003448 if (file_modified && p[1] != '!') {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003449 status_line_bold("No write since last change (:quit! overrides)");
Eric Andersen3f980402001-04-04 17:31:15 +00003450 } else {
3451 editing = 0;
3452 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003453 } else if (strncasecmp(p, "write", cnt) == 0
3454 || strncasecmp(p, "wq", cnt) == 0
3455 || strncasecmp(p, "wn", cnt) == 0
3456 || strncasecmp(p, "x", cnt) == 0
3457 ) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003458 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00003459 if (cnt < 0) {
3460 if (cnt == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003461 status_line_bold("Write error: %s", strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00003462 } else {
3463 file_modified = 0;
3464 last_file_modified = -1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003465 status_line("\"%s\" %dL, %dC", current_filename, count_lines(text, end - 1), cnt);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003466 if (p[0] == 'x' || p[1] == 'q' || p[1] == 'n'
3467 || p[0] == 'X' || p[1] == 'Q' || p[1] == 'N'
3468 ) {
Paul Fox61e45db2005-10-09 14:43:22 +00003469 editing = 0;
3470 }
Eric Andersen3f980402001-04-04 17:31:15 +00003471 }
Denis Vlasenko219d14d2007-03-24 15:40:16 +00003472 } else if (strncasecmp(p, "file", cnt) == 0) {
Paul Fox8552aec2005-09-16 12:20:05 +00003473 last_status_cksum = 0; // force status update
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003474 } else if (sscanf(p, "%d", &j) > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003475 dot = find_line(j); // go to line # j
3476 dot_skip_over_ws();
Eric Andersen3f980402001-04-04 17:31:15 +00003477 } else { // unrecognised cmd
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003478 not_implemented(p);
Eric Andersen3f980402001-04-04 17:31:15 +00003479 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003480#endif /* !FEATURE_VI_COLON */
Eric Andersen3f980402001-04-04 17:31:15 +00003481 break;
3482 case '<': // <- Left shift something
3483 case '>': // >- Right shift something
3484 cnt = count_lines(text, dot); // remember what line we are on
3485 c1 = get_one_char(); // get the type of thing to delete
3486 find_range(&p, &q, c1);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003487 yank_delete(p, q, 1, YANKONLY); // save copy before change
Eric Andersen3f980402001-04-04 17:31:15 +00003488 p = begin_line(p);
3489 q = end_line(q);
3490 i = count_lines(p, q); // # of lines we are shifting
3491 for ( ; i > 0; i--, p = next_line(p)) {
3492 if (c == '<') {
3493 // shift left- remove tab or 8 spaces
3494 if (*p == '\t') {
3495 // shrink buffer 1 char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003496 text_hole_delete(p, p);
Eric Andersen3f980402001-04-04 17:31:15 +00003497 } else if (*p == ' ') {
3498 // we should be calculating columns, not just SPACE
3499 for (j = 0; *p == ' ' && j < tabstop; j++) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003500 text_hole_delete(p, p);
Eric Andersen3f980402001-04-04 17:31:15 +00003501 }
3502 }
3503 } else if (c == '>') {
3504 // shift right -- add tab or 8 spaces
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003505 char_insert(p, '\t');
Eric Andersen3f980402001-04-04 17:31:15 +00003506 }
3507 }
3508 dot = find_line(cnt); // what line were we on
3509 dot_skip_over_ws();
3510 end_cmd_q(); // stop adding to q
3511 break;
3512 case 'A': // A- append at e-o-l
3513 dot_end(); // go to e-o-l
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003514 //**** fall through to ... 'a'
Eric Andersen3f980402001-04-04 17:31:15 +00003515 case 'a': // a- append after current char
3516 if (*dot != '\n')
3517 dot++;
3518 goto dc_i;
3519 break;
3520 case 'B': // B- back a blank-delimited Word
3521 case 'E': // E- end of a blank-delimited word
3522 case 'W': // W- forward a blank-delimited word
3523 if (cmdcnt-- > 1) {
3524 do_cmd(c);
3525 } // repeat cnt
3526 dir = FORWARD;
3527 if (c == 'B')
3528 dir = BACK;
3529 if (c == 'W' || isspace(dot[dir])) {
3530 dot = skip_thing(dot, 1, dir, S_TO_WS);
3531 dot = skip_thing(dot, 2, dir, S_OVER_WS);
3532 }
3533 if (c != 'W')
3534 dot = skip_thing(dot, 1, dir, S_BEFORE_WS);
3535 break;
3536 case 'C': // C- Change to e-o-l
3537 case 'D': // D- delete to e-o-l
3538 save_dot = dot;
3539 dot = dollar_line(dot); // move to before NL
3540 // copy text into a register and delete
3541 dot = yank_delete(save_dot, dot, 0, YANKDEL); // delete to e-o-l
3542 if (c == 'C')
3543 goto dc_i; // start inserting
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003544#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003545 if (c == 'D')
3546 end_cmd_q(); // stop adding to q
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003547#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003548 break;
Paul Foxb5ee8db2008-02-14 01:17:01 +00003549 case 'g': // 'gg' goto a line number (from vim)
3550 // (default to first line in file)
3551 c1 = get_one_char();
3552 if (c1 != 'g') {
3553 buf[0] = 'g';
3554 buf[1] = c1;
3555 buf[2] = '\0';
3556 not_implemented(buf);
3557 break;
3558 }
3559 if (cmdcnt == 0)
3560 cmdcnt = 1;
3561 /* fall through */
Eric Andersen822c3832001-05-07 17:37:43 +00003562 case 'G': // G- goto to a line number (default= E-O-F)
3563 dot = end - 1; // assume E-O-F
Eric Andersen1c0d3112001-04-16 15:46:44 +00003564 if (cmdcnt > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003565 dot = find_line(cmdcnt); // what line is #cmdcnt
Eric Andersen1c0d3112001-04-16 15:46:44 +00003566 }
3567 dot_skip_over_ws();
3568 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003569 case 'H': // H- goto top line on screen
3570 dot = screenbegin;
3571 if (cmdcnt > (rows - 1)) {
3572 cmdcnt = (rows - 1);
3573 }
3574 if (cmdcnt-- > 1) {
3575 do_cmd('+');
3576 } // repeat cnt
3577 dot_skip_over_ws();
3578 break;
3579 case 'I': // I- insert before first non-blank
3580 dot_begin(); // 0
3581 dot_skip_over_ws();
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003582 //**** fall through to ... 'i'
Eric Andersen3f980402001-04-04 17:31:15 +00003583 case 'i': // i- insert before current char
3584 case VI_K_INSERT: // Cursor Key Insert
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003585 dc_i:
Eric Andersen3f980402001-04-04 17:31:15 +00003586 cmd_mode = 1; // start insrting
Eric Andersen3f980402001-04-04 17:31:15 +00003587 break;
3588 case 'J': // J- join current and next lines together
3589 if (cmdcnt-- > 2) {
3590 do_cmd(c);
3591 } // repeat cnt
3592 dot_end(); // move to NL
3593 if (dot < end - 1) { // make sure not last char in text[]
3594 *dot++ = ' '; // replace NL with space
Paul Fox8552aec2005-09-16 12:20:05 +00003595 file_modified++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003596 while (isblank(*dot)) { // delete leading WS
Eric Andersen3f980402001-04-04 17:31:15 +00003597 dot_delete();
3598 }
3599 }
3600 end_cmd_q(); // stop adding to q
3601 break;
3602 case 'L': // L- goto bottom line on screen
3603 dot = end_screen();
3604 if (cmdcnt > (rows - 1)) {
3605 cmdcnt = (rows - 1);
3606 }
3607 if (cmdcnt-- > 1) {
3608 do_cmd('-');
3609 } // repeat cnt
3610 dot_begin();
3611 dot_skip_over_ws();
3612 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003613 case 'M': // M- goto middle line on screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003614 dot = screenbegin;
3615 for (cnt = 0; cnt < (rows-1) / 2; cnt++)
3616 dot = next_line(dot);
3617 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003618 case 'O': // O- open a empty line above
Eric Andersen822c3832001-05-07 17:37:43 +00003619 // 0i\n ESC -i
Eric Andersen3f980402001-04-04 17:31:15 +00003620 p = begin_line(dot);
3621 if (p[-1] == '\n') {
3622 dot_prev();
3623 case 'o': // o- open a empty line below; Yes, I know it is in the middle of the "if (..."
3624 dot_end();
3625 dot = char_insert(dot, '\n');
3626 } else {
3627 dot_begin(); // 0
Eric Andersen822c3832001-05-07 17:37:43 +00003628 dot = char_insert(dot, '\n'); // i\n ESC
Eric Andersen3f980402001-04-04 17:31:15 +00003629 dot_prev(); // -
3630 }
3631 goto dc_i;
3632 break;
3633 case 'R': // R- continuous Replace char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003634 dc5:
Eric Andersen3f980402001-04-04 17:31:15 +00003635 cmd_mode = 2;
Eric Andersen3f980402001-04-04 17:31:15 +00003636 break;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003637 case VI_K_DELETE:
3638 c = 'x';
3639 // fall through
Eric Andersen3f980402001-04-04 17:31:15 +00003640 case 'X': // X- delete char before dot
3641 case 'x': // x- delete the current char
3642 case 's': // s- substitute the current char
3643 if (cmdcnt-- > 1) {
3644 do_cmd(c);
3645 } // repeat cnt
3646 dir = 0;
3647 if (c == 'X')
3648 dir = -1;
3649 if (dot[dir] != '\n') {
3650 if (c == 'X')
3651 dot--; // delete prev char
3652 dot = yank_delete(dot, dot, 0, YANKDEL); // delete char
3653 }
3654 if (c == 's')
3655 goto dc_i; // start insrting
3656 end_cmd_q(); // stop adding to q
3657 break;
3658 case 'Z': // Z- if modified, {write}; exit
3659 // ZZ means to save file (if necessary), then exit
3660 c1 = get_one_char();
3661 if (c1 != 'Z') {
3662 indicate_error(c);
3663 break;
3664 }
Paul Foxf0305b72006-03-28 14:18:21 +00003665 if (file_modified) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003666 if (ENABLE_FEATURE_VI_READONLY && readonly_mode) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003667 status_line_bold("\"%s\" File is read only", current_filename);
Denis Vlasenko92758142006-10-03 19:56:34 +00003668 break;
Paul Foxf0305b72006-03-28 14:18:21 +00003669 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003670 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00003671 if (cnt < 0) {
3672 if (cnt == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003673 status_line_bold("Write error: %s", strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00003674 } else if (cnt == (end - 1 - text + 1)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003675 editing = 0;
3676 }
3677 } else {
3678 editing = 0;
3679 }
3680 break;
3681 case '^': // ^- move to first non-blank on line
3682 dot_begin();
3683 dot_skip_over_ws();
3684 break;
3685 case 'b': // b- back a word
3686 case 'e': // e- end of word
3687 if (cmdcnt-- > 1) {
3688 do_cmd(c);
3689 } // repeat cnt
3690 dir = FORWARD;
3691 if (c == 'b')
3692 dir = BACK;
3693 if ((dot + dir) < text || (dot + dir) > end - 1)
3694 break;
3695 dot += dir;
3696 if (isspace(*dot)) {
3697 dot = skip_thing(dot, (c == 'e') ? 2 : 1, dir, S_OVER_WS);
3698 }
3699 if (isalnum(*dot) || *dot == '_') {
3700 dot = skip_thing(dot, 1, dir, S_END_ALNUM);
3701 } else if (ispunct(*dot)) {
3702 dot = skip_thing(dot, 1, dir, S_END_PUNCT);
3703 }
3704 break;
3705 case 'c': // c- change something
3706 case 'd': // d- delete something
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003707#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003708 case 'y': // y- yank something
3709 case 'Y': // Y- Yank a line
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003710#endif
Denis Vlasenkod44c1532008-10-14 12:59:42 +00003711 {
Paul Foxc51fc7b2008-03-06 01:34:23 +00003712 int yf, ml, whole = 0;
Eric Andersen3f980402001-04-04 17:31:15 +00003713 yf = YANKDEL; // assume either "c" or "d"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003714#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003715 if (c == 'y' || c == 'Y')
3716 yf = YANKONLY;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003717#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003718 c1 = 'y';
3719 if (c != 'Y')
3720 c1 = get_one_char(); // get the type of thing to delete
Paul Foxc51fc7b2008-03-06 01:34:23 +00003721 // determine range, and whether it spans lines
3722 ml = find_range(&p, &q, c1);
Eric Andersen3f980402001-04-04 17:31:15 +00003723 if (c1 == 27) { // ESC- user changed mind and wants out
3724 c = c1 = 27; // Escape- do nothing
3725 } else if (strchr("wW", c1)) {
3726 if (c == 'c') {
3727 // don't include trailing WS as part of word
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003728 while (isblank(*q)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003729 if (q <= text || q[-1] == '\n')
3730 break;
3731 q--;
3732 }
3733 }
Paul Foxc51fc7b2008-03-06 01:34:23 +00003734 dot = yank_delete(p, q, ml, yf); // delete word
3735 } else if (strchr("^0bBeEft%$ lh\b\177", c1)) {
3736 // partial line copy text into a register and delete
3737 dot = yank_delete(p, q, ml, yf); // delete word
3738 } else if (strchr("cdykjHL+-{}\r\n", c1)) {
3739 // whole line copy text into a register and delete
3740 dot = yank_delete(p, q, ml, yf); // delete lines
3741 whole = 1;
3742 } else {
3743 // could not recognize object
3744 c = c1 = 27; // error-
3745 ml = 0;
3746 indicate_error(c);
3747 }
3748 if (ml && whole) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003749 if (c == 'c') {
3750 dot = char_insert(dot, '\n');
3751 // on the last line of file don't move to prev line
Paul Foxc51fc7b2008-03-06 01:34:23 +00003752 if (whole && dot != (end-1)) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003753 dot_prev();
3754 }
3755 } else if (c == 'd') {
Eric Andersen3f980402001-04-04 17:31:15 +00003756 dot_begin();
3757 dot_skip_over_ws();
3758 }
Eric Andersen3f980402001-04-04 17:31:15 +00003759 }
3760 if (c1 != 27) {
3761 // if CHANGING, not deleting, start inserting after the delete
3762 if (c == 'c') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003763 strcpy(buf, "Change");
Eric Andersen3f980402001-04-04 17:31:15 +00003764 goto dc_i; // start inserting
3765 }
3766 if (c == 'd') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003767 strcpy(buf, "Delete");
Eric Andersen3f980402001-04-04 17:31:15 +00003768 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003769#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003770 if (c == 'y' || c == 'Y') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003771 strcpy(buf, "Yank");
Eric Andersen3f980402001-04-04 17:31:15 +00003772 }
3773 p = reg[YDreg];
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003774 q = p + strlen(p);
Eric Andersen3f980402001-04-04 17:31:15 +00003775 for (cnt = 0; p <= q; p++) {
3776 if (*p == '\n')
3777 cnt++;
3778 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003779 status_line("%s %d lines (%d chars) using [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003780 buf, cnt, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003781#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003782 end_cmd_q(); // stop adding to q
3783 }
3784 break;
Denis Vlasenkod44c1532008-10-14 12:59:42 +00003785 }
Eric Andersen3f980402001-04-04 17:31:15 +00003786 case 'k': // k- goto prev line, same col
3787 case VI_K_UP: // cursor key Up
3788 if (cmdcnt-- > 1) {
3789 do_cmd(c);
3790 } // repeat cnt
3791 dot_prev();
3792 dot = move_to_col(dot, ccol + offset); // try stay in same col
3793 break;
3794 case 'r': // r- replace the current char with user input
3795 c1 = get_one_char(); // get the replacement char
3796 if (*dot != '\n') {
3797 *dot = c1;
Denis Vlasenkob1759462008-06-20 20:20:54 +00003798 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003799 }
3800 end_cmd_q(); // stop adding to q
3801 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003802 case 't': // t- move to char prior to next x
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00003803 last_forward_char = get_one_char();
3804 do_cmd(';');
3805 if (*dot == last_forward_char)
3806 dot_left();
3807 last_forward_char= 0;
Eric Andersen822c3832001-05-07 17:37:43 +00003808 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003809 case 'w': // w- forward a word
3810 if (cmdcnt-- > 1) {
3811 do_cmd(c);
3812 } // repeat cnt
3813 if (isalnum(*dot) || *dot == '_') { // we are on ALNUM
3814 dot = skip_thing(dot, 1, FORWARD, S_END_ALNUM);
3815 } else if (ispunct(*dot)) { // we are on PUNCT
3816 dot = skip_thing(dot, 1, FORWARD, S_END_PUNCT);
3817 }
3818 if (dot < end - 1)
3819 dot++; // move over word
3820 if (isspace(*dot)) {
3821 dot = skip_thing(dot, 2, FORWARD, S_OVER_WS);
3822 }
3823 break;
3824 case 'z': // z-
3825 c1 = get_one_char(); // get the replacement char
3826 cnt = 0;
3827 if (c1 == '.')
3828 cnt = (rows - 2) / 2; // put dot at center
3829 if (c1 == '-')
3830 cnt = rows - 2; // put dot at bottom
3831 screenbegin = begin_line(dot); // start dot at top
3832 dot_scroll(cnt, -1);
3833 break;
3834 case '|': // |- move to column "cmdcnt"
3835 dot = move_to_col(dot, cmdcnt - 1); // try to move to column
3836 break;
3837 case '~': // ~- flip the case of letters a-z -> A-Z
3838 if (cmdcnt-- > 1) {
3839 do_cmd(c);
3840 } // repeat cnt
3841 if (islower(*dot)) {
3842 *dot = toupper(*dot);
Denis Vlasenkob1759462008-06-20 20:20:54 +00003843 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003844 } else if (isupper(*dot)) {
3845 *dot = tolower(*dot);
Denis Vlasenkob1759462008-06-20 20:20:54 +00003846 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003847 }
3848 dot_right();
3849 end_cmd_q(); // stop adding to q
3850 break;
3851 //----- The Cursor and Function Keys -----------------------------
3852 case VI_K_HOME: // Cursor Key Home
3853 dot_begin();
3854 break;
3855 // The Fn keys could point to do_macro which could translate them
3856 case VI_K_FUN1: // Function Key F1
3857 case VI_K_FUN2: // Function Key F2
3858 case VI_K_FUN3: // Function Key F3
3859 case VI_K_FUN4: // Function Key F4
3860 case VI_K_FUN5: // Function Key F5
3861 case VI_K_FUN6: // Function Key F6
3862 case VI_K_FUN7: // Function Key F7
3863 case VI_K_FUN8: // Function Key F8
3864 case VI_K_FUN9: // Function Key F9
3865 case VI_K_FUN10: // Function Key F10
3866 case VI_K_FUN11: // Function Key F11
3867 case VI_K_FUN12: // Function Key F12
3868 break;
3869 }
3870
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003871 dc1:
Eric Andersen3f980402001-04-04 17:31:15 +00003872 // if text[] just became empty, add back an empty line
3873 if (end == text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003874 char_insert(text, '\n'); // start empty buf with dummy line
Eric Andersen3f980402001-04-04 17:31:15 +00003875 dot = text;
3876 }
3877 // it is OK for dot to exactly equal to end, otherwise check dot validity
3878 if (dot != end) {
3879 dot = bound_dot(dot); // make sure "dot" is valid
3880 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003881#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003882 check_context(c); // update the current context
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003883#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003884
3885 if (!isdigit(c))
3886 cmdcnt = 0; // cmd was not a number, reset cmdcnt
3887 cnt = dot - begin_line(dot);
3888 // Try to stay off of the Newline
3889 if (*dot == '\n' && cnt > 0 && cmd_mode == 0)
3890 dot--;
3891}
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003892
Paul Fox35e9c5d2008-03-06 16:26:12 +00003893/* NB! the CRASHME code is unmaintained, and doesn't currently build */
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003894#if ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003895static int totalcmds = 0;
3896static int Mp = 85; // Movement command Probability
3897static int Np = 90; // Non-movement command Probability
3898static int Dp = 96; // Delete command Probability
3899static int Ip = 97; // Insert command Probability
3900static int Yp = 98; // Yank command Probability
3901static int Pp = 99; // Put command Probability
3902static int M = 0, N = 0, I = 0, D = 0, Y = 0, P = 0, U = 0;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003903static const char chars[20] = "\t012345 abcdABCD-=.$";
3904static const char *const words[20] = {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003905 "this", "is", "a", "test",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003906 "broadcast", "the", "emergency", "of",
3907 "system", "quick", "brown", "fox",
3908 "jumped", "over", "lazy", "dogs",
3909 "back", "January", "Febuary", "March"
3910};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003911static const char *const lines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003912 "You should have received a copy of the GNU General Public License\n",
3913 "char c, cm, *cmd, *cmd1;\n",
3914 "generate a command by percentages\n",
3915 "Numbers may be typed as a prefix to some commands.\n",
3916 "Quit, discarding changes!\n",
3917 "Forced write, if permission originally not valid.\n",
3918 "In general, any ex or ed command (such as substitute or delete).\n",
3919 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
3920 "Please get w/ me and I will go over it with you.\n",
3921 "The following is a list of scheduled, committed changes.\n",
3922 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
3923 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
3924 "Any question about transactions please contact Sterling Huxley.\n",
3925 "I will try to get back to you by Friday, December 31.\n",
3926 "This Change will be implemented on Friday.\n",
3927 "Let me know if you have problems accessing this;\n",
3928 "Sterling Huxley recently added you to the access list.\n",
3929 "Would you like to go to lunch?\n",
3930 "The last command will be automatically run.\n",
3931 "This is too much english for a computer geek.\n",
3932};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003933static char *multilines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003934 "You should have received a copy of the GNU General Public License\n",
3935 "char c, cm, *cmd, *cmd1;\n",
3936 "generate a command by percentages\n",
3937 "Numbers may be typed as a prefix to some commands.\n",
3938 "Quit, discarding changes!\n",
3939 "Forced write, if permission originally not valid.\n",
3940 "In general, any ex or ed command (such as substitute or delete).\n",
3941 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
3942 "Please get w/ me and I will go over it with you.\n",
3943 "The following is a list of scheduled, committed changes.\n",
3944 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
3945 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
3946 "Any question about transactions please contact Sterling Huxley.\n",
3947 "I will try to get back to you by Friday, December 31.\n",
3948 "This Change will be implemented on Friday.\n",
3949 "Let me know if you have problems accessing this;\n",
3950 "Sterling Huxley recently added you to the access list.\n",
3951 "Would you like to go to lunch?\n",
3952 "The last command will be automatically run.\n",
3953 "This is too much english for a computer geek.\n",
3954};
3955
3956// create a random command to execute
3957static void crash_dummy()
3958{
3959 static int sleeptime; // how long to pause between commands
3960 char c, cm, *cmd, *cmd1;
3961 int i, cnt, thing, rbi, startrbi, percent;
3962
3963 // "dot" movement commands
3964 cmd1 = " \n\r\002\004\005\006\025\0310^$-+wWeEbBhjklHL";
3965
3966 // is there already a command running?
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003967 if (chars_to_parse > 0)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003968 goto cd1;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003969 cd0:
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003970 startrbi = rbi = 0;
3971 sleeptime = 0; // how long to pause between commands
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003972 memset(readbuffer, '\0', sizeof(readbuffer));
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003973 // generate a command by percentages
3974 percent = (int) lrand48() % 100; // get a number from 0-99
3975 if (percent < Mp) { // Movement commands
3976 // available commands
3977 cmd = cmd1;
3978 M++;
3979 } else if (percent < Np) { // non-movement commands
3980 cmd = "mz<>\'\""; // available commands
3981 N++;
3982 } else if (percent < Dp) { // Delete commands
3983 cmd = "dx"; // available commands
3984 D++;
3985 } else if (percent < Ip) { // Inset commands
3986 cmd = "iIaAsrJ"; // available commands
3987 I++;
3988 } else if (percent < Yp) { // Yank commands
3989 cmd = "yY"; // available commands
3990 Y++;
3991 } else if (percent < Pp) { // Put commands
3992 cmd = "pP"; // available commands
3993 P++;
3994 } else {
3995 // We do not know how to handle this command, try again
3996 U++;
3997 goto cd0;
3998 }
3999 // randomly pick one of the available cmds from "cmd[]"
4000 i = (int) lrand48() % strlen(cmd);
4001 cm = cmd[i];
4002 if (strchr(":\024", cm))
4003 goto cd0; // dont allow colon or ctrl-T commands
4004 readbuffer[rbi++] = cm; // put cmd into input buffer
4005
4006 // now we have the command-
4007 // there are 1, 2, and multi char commands
4008 // find out which and generate the rest of command as necessary
4009 if (strchr("dmryz<>\'\"", cm)) { // 2-char commands
4010 cmd1 = " \n\r0$^-+wWeEbBhjklHL";
4011 if (cm == 'm' || cm == '\'' || cm == '\"') { // pick a reg[]
4012 cmd1 = "abcdefghijklmnopqrstuvwxyz";
4013 }
4014 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
4015 c = cmd1[thing];
4016 readbuffer[rbi++] = c; // add movement to input buffer
4017 }
4018 if (strchr("iIaAsc", cm)) { // multi-char commands
4019 if (cm == 'c') {
4020 // change some thing
4021 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
4022 c = cmd1[thing];
4023 readbuffer[rbi++] = c; // add movement to input buffer
4024 }
4025 thing = (int) lrand48() % 4; // what thing to insert
4026 cnt = (int) lrand48() % 10; // how many to insert
4027 for (i = 0; i < cnt; i++) {
4028 if (thing == 0) { // insert chars
4029 readbuffer[rbi++] = chars[((int) lrand48() % strlen(chars))];
4030 } else if (thing == 1) { // insert words
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004031 strcat(readbuffer, words[(int) lrand48() % 20]);
4032 strcat(readbuffer, " ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004033 sleeptime = 0; // how fast to type
4034 } else if (thing == 2) { // insert lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004035 strcat(readbuffer, lines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004036 sleeptime = 0; // how fast to type
4037 } else { // insert multi-lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004038 strcat(readbuffer, multilines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004039 sleeptime = 0; // how fast to type
4040 }
4041 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004042 strcat(readbuffer, "\033");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004043 }
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00004044 chars_to_parse = strlen(readbuffer);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004045 cd1:
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004046 totalcmds++;
4047 if (sleeptime > 0)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004048 mysleep(sleeptime); // sleep 1/100 sec
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004049}
4050
4051// test to see if there are any errors
4052static void crash_test()
4053{
4054 static time_t oldtim;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004055
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004056 time_t tim;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004057 char d[2], msg[80];
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004058
4059 msg[0] = '\0';
4060 if (end < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004061 strcat(msg, "end<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004062 }
4063 if (end > textend) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004064 strcat(msg, "end>textend ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004065 }
4066 if (dot < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004067 strcat(msg, "dot<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004068 }
4069 if (dot > end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004070 strcat(msg, "dot>end ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004071 }
4072 if (screenbegin < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004073 strcat(msg, "screenbegin<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004074 }
4075 if (screenbegin > end - 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004076 strcat(msg, "screenbegin>end-1 ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004077 }
4078
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004079 if (msg[0]) {
Glenn L McGrath7127b582002-12-03 21:48:15 +00004080 printf("\n\n%d: \'%c\' %s\n\n\n%s[Hit return to continue]%s",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004081 totalcmds, last_input_char, msg, SOs, SOn);
4082 fflush(stdout);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00004083 while (safe_read(STDIN_FILENO, d, 1) > 0) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004084 if (d[0] == '\n' || d[0] == '\r')
4085 break;
4086 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004087 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004088 tim = time(NULL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004089 if (tim >= (oldtim + 3)) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004090 sprintf(status_buffer,
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004091 "Tot=%d: M=%d N=%d I=%d D=%d Y=%d P=%d U=%d size=%d",
4092 totalcmds, M, N, I, D, Y, P, U, end - text + 1);
4093 oldtim = tim;
4094 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004095}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004096#endif