blob: 6902b768823ae417a58c815cddd4513e97ff62cb [file] [log] [blame]
Rob Landleye5e1a102006-06-21 01:15:36 +00001/* vi: set sw=4 ts=4: */
Eric Andersen3f980402001-04-04 17:31:15 +00002/*
3 * tiny vi.c: A small 'vi' clone
4 * Copyright (C) 2000, 2001 Sterling Huxley <sterling@europa.com>
5 *
Paul Foxdbf935d2006-03-27 20:29:33 +00006 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen3f980402001-04-04 17:31:15 +00007 */
8
Eric Andersen3f980402001-04-04 17:31:15 +00009/*
Eric Andersen3f980402001-04-04 17:31:15 +000010 * Things To Do:
11 * EXINIT
Eric Andersen1c0d3112001-04-16 15:46:44 +000012 * $HOME/.exrc and ./.exrc
Eric Andersen3f980402001-04-04 17:31:15 +000013 * add magic to search /foo.*bar
14 * add :help command
15 * :map macros
Eric Andersen3f980402001-04-04 17:31:15 +000016 * if mark[] values were line numbers rather than pointers
17 * it would be easier to change the mark when add/delete lines
Eric Andersen1c0d3112001-04-16 15:46:44 +000018 * More intelligence in refresh()
19 * ":r !cmd" and "!cmd" to filter text through an external command
20 * A true "undo" facility
21 * An "ex" line oriented mode- maybe using "cmdedit"
Eric Andersen3f980402001-04-04 17:31:15 +000022 */
23
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000024#include "libbb.h"
Eric Andersen3f980402001-04-04 17:31:15 +000025
Paul Fox35e9c5d2008-03-06 16:26:12 +000026/* the CRASHME code is unmaintained, and doesn't currently build */
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +000027#define ENABLE_FEATURE_VI_CRASHME 0
28
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000029
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +000030#if ENABLE_LOCALE_SUPPORT
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000031
32#if ENABLE_FEATURE_VI_8BIT
33#define Isprint(c) isprint(c)
Glenn L McGrath09adaca2002-12-02 21:18:10 +000034#else
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000035#define Isprint(c) (isprint(c) && (unsigned char)(c) < 0x7f)
Glenn L McGrath09adaca2002-12-02 21:18:10 +000036#endif
37
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000038#else
39
40/* 0x9b is Meta-ESC */
41#if ENABLE_FEATURE_VI_8BIT
42#define Isprint(c) ((unsigned char)(c) >= ' ' && (c) != 0x7f && (unsigned char)(c) != 0x9b)
43#else
44#define Isprint(c) ((unsigned char)(c) >= ' ' && (unsigned char)(c) < 0x7f)
45#endif
46
47#endif
48
49
Denis Vlasenkoe8a07882007-06-10 15:08:44 +000050enum {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +000051 MAX_TABSTOP = 32, // sanity limit
Denis Vlasenko88adfcd2007-12-22 15:40:13 +000052 // User input len. Need not be extra big.
53 // Lines in file being edited *can* be bigger than this.
54 MAX_INPUT_LEN = 128,
55 // Sanity limits. We have only one buffer of this size.
56 MAX_SCR_COLS = CONFIG_FEATURE_VI_MAX_LEN,
57 MAX_SCR_ROWS = CONFIG_FEATURE_VI_MAX_LEN,
Denis Vlasenkoe8a07882007-06-10 15:08:44 +000058};
Eric Andersen3f980402001-04-04 17:31:15 +000059
60// Misc. non-Ascii keys that report an escape sequence
Denis Vlasenko2a51af22007-03-21 22:31:24 +000061#define VI_K_UP (char)128 // cursor key Up
62#define VI_K_DOWN (char)129 // cursor key Down
63#define VI_K_RIGHT (char)130 // Cursor Key Right
64#define VI_K_LEFT (char)131 // cursor key Left
65#define VI_K_HOME (char)132 // Cursor Key Home
66#define VI_K_END (char)133 // Cursor Key End
67#define VI_K_INSERT (char)134 // Cursor Key Insert
Denis Vlasenko88adfcd2007-12-22 15:40:13 +000068#define VI_K_DELETE (char)135 // Cursor Key Insert
69#define VI_K_PAGEUP (char)136 // Cursor Key Page Up
70#define VI_K_PAGEDOWN (char)137 // Cursor Key Page Down
71#define VI_K_FUN1 (char)138 // Function Key F1
72#define VI_K_FUN2 (char)139 // Function Key F2
73#define VI_K_FUN3 (char)140 // Function Key F3
74#define VI_K_FUN4 (char)141 // Function Key F4
75#define VI_K_FUN5 (char)142 // Function Key F5
76#define VI_K_FUN6 (char)143 // Function Key F6
77#define VI_K_FUN7 (char)144 // Function Key F7
78#define VI_K_FUN8 (char)145 // Function Key F8
79#define VI_K_FUN9 (char)146 // Function Key F9
80#define VI_K_FUN10 (char)147 // Function Key F10
81#define VI_K_FUN11 (char)148 // Function Key F11
82#define VI_K_FUN12 (char)149 // Function Key F12
Eric Andersen3f980402001-04-04 17:31:15 +000083
Glenn L McGrath09adaca2002-12-02 21:18:10 +000084/* vt102 typical ESC sequence */
85/* terminal standout start/normal ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000086static const char SOs[] ALIGN1 = "\033[7m";
87static const char SOn[] ALIGN1 = "\033[0m";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000088/* terminal bell sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000089static const char bell[] ALIGN1 = "\007";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000090/* Clear-end-of-line and Clear-end-of-screen ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000091static const char Ceol[] ALIGN1 = "\033[0K";
92static const char Ceos[] ALIGN1 = "\033[0J";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000093/* Cursor motion arbitrary destination ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000094static const char CMrc[] ALIGN1 = "\033[%d;%dH";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000095/* Cursor motion up and down ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000096static const char CMup[] ALIGN1 = "\033[A";
97static const char CMdown[] ALIGN1 = "\n";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000098
99
Rob Landleybc68cd12006-03-10 19:22:06 +0000100enum {
101 YANKONLY = FALSE,
102 YANKDEL = TRUE,
103 FORWARD = 1, // code depends on "1" for array index
104 BACK = -1, // code depends on "-1" for array index
105 LIMITED = 0, // how much of text[] in char_search
106 FULL = 1, // how much of text[] in char_search
Eric Andersen3f980402001-04-04 17:31:15 +0000107
Rob Landleybc68cd12006-03-10 19:22:06 +0000108 S_BEFORE_WS = 1, // used in skip_thing() for moving "dot"
109 S_TO_WS = 2, // used in skip_thing() for moving "dot"
110 S_OVER_WS = 3, // used in skip_thing() for moving "dot"
111 S_END_PUNCT = 4, // used in skip_thing() for moving "dot"
Denis Vlasenko8e858e22007-03-07 09:35:43 +0000112 S_END_ALNUM = 5, // used in skip_thing() for moving "dot"
Rob Landleybc68cd12006-03-10 19:22:06 +0000113};
Eric Andersen3f980402001-04-04 17:31:15 +0000114
Denis Vlasenkob1759462008-06-20 20:20:54 +0000115
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000116/* vi.c expects chars to be unsigned. */
117/* busybox build system provides that, but it's better */
118/* to audit and fix the source */
Eric Andersen3f980402001-04-04 17:31:15 +0000119
Denis Vlasenkob1759462008-06-20 20:20:54 +0000120struct globals {
121 /* many references - keep near the top of globals */
122 char *text, *end; // pointers to the user data in memory
123 char *dot; // where all the action takes place
124 int text_size; // size of the allocated buffer
125
126 /* the rest */
127 smallint vi_setops;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000128#define VI_AUTOINDENT 1
129#define VI_SHOWMATCH 2
130#define VI_IGNORECASE 4
131#define VI_ERR_METHOD 8
132#define autoindent (vi_setops & VI_AUTOINDENT)
133#define showmatch (vi_setops & VI_SHOWMATCH )
134#define ignorecase (vi_setops & VI_IGNORECASE)
135/* indicate error with beep or flash */
136#define err_method (vi_setops & VI_ERR_METHOD)
137
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000138#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkob1759462008-06-20 20:20:54 +0000139 smallint readonly_mode;
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +0000140#define SET_READONLY_FILE(flags) ((flags) |= 0x01)
141#define SET_READONLY_MODE(flags) ((flags) |= 0x02)
142#define UNSET_READONLY_FILE(flags) ((flags) &= 0xfe)
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000143#else
Denis Vlasenkob1759462008-06-20 20:20:54 +0000144#define SET_READONLY_FILE(flags) ((void)0)
145#define SET_READONLY_MODE(flags) ((void)0)
146#define UNSET_READONLY_FILE(flags) ((void)0)
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000147#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000148
Denis Vlasenkob1759462008-06-20 20:20:54 +0000149 smallint editing; // >0 while we are editing a file
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000150 // [code audit says "can be 0, 1 or 2 only"]
Denis Vlasenkob1759462008-06-20 20:20:54 +0000151 smallint cmd_mode; // 0=command 1=insert 2=replace
152 int file_modified; // buffer contents changed (counter, not flag!)
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000153 int last_file_modified; // = -1;
Denis Vlasenkob1759462008-06-20 20:20:54 +0000154 int fn_start; // index of first cmd line file name
155 int save_argc; // how many file names on cmd line
156 int cmdcnt; // repetition count
157 unsigned rows, columns; // the terminal screen is this size
158 int crow, ccol; // cursor is on Crow x Ccol
159 int offset; // chars scrolled off the screen to the left
160 int have_status_msg; // is default edit status needed?
161 // [don't make smallint!]
162 int last_status_cksum; // hash of current status line
163 char *current_filename;
164 char *screenbegin; // index into text[], of top line on the screen
165 char *screen; // pointer to the virtual screen buffer
166 int screensize; // and its size
167 int tabstop;
168 char erase_char; // the users erase character
169 char last_input_char; // last char read from user
170 char last_forward_char; // last char searched for with 'f'
171
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000172#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkob1759462008-06-20 20:20:54 +0000173 smallint adding2q; // are we currently adding user input to q
174 int lmc_len; // length of last_modifying_cmd
175 char *ioq, *ioq_start; // pointer to string for get_one_char to "read"
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000176#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000177#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Denis Vlasenkob1759462008-06-20 20:20:54 +0000178 int last_row; // where the cursor was last moved to
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000179#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000180#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkob1759462008-06-20 20:20:54 +0000181 int my_pid;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000182#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000183#if ENABLE_FEATURE_VI_DOT_CMD || ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkob1759462008-06-20 20:20:54 +0000184 char *modifying_cmds; // cmds that modify text[]
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000185#endif
186#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkob1759462008-06-20 20:20:54 +0000187 char *last_search_pattern; // last pattern from a '/' or '?' search
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000188#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000189 int chars_to_parse;
190 /* former statics */
191#if ENABLE_FEATURE_VI_YANKMARK
192 char *edit_file__cur_line;
193#endif
194 int refresh__old_offset;
195 int format_edit_status__tot;
Eric Andersen3f980402001-04-04 17:31:15 +0000196
Denis Vlasenkob1759462008-06-20 20:20:54 +0000197 /* a few references only */
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000198#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000199 int YDreg, Ureg; // default delete register and orig line for "U"
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000200 char *reg[28]; // named register a-z, "D", and "U" 0-25,26,27
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000201 char *mark[28]; // user marks points somewhere in text[]- a-z and previous context ''
202 char *context_start, *context_end;
203#endif
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000204#if ENABLE_FEATURE_VI_USE_SIGNALS
Denis Vlasenkob1759462008-06-20 20:20:54 +0000205 sigjmp_buf restart; // catch_sig()
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000206#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000207 struct termios term_orig, term_vi; // remember what the cooked mode was
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000208#if ENABLE_FEATURE_VI_COLON
209 char *initial_cmds[3]; // currently 2 entries, NULL terminated
210#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000211 // Should be just enough to hold a key sequence,
212 // but CRASME mode uses it as generated command buffer too
Rob Landley988dd552008-10-14 01:42:33 +0000213 char readbuffer[8];
Denis Vlasenkob1759462008-06-20 20:20:54 +0000214#define STATUS_BUFFER_LEN 200
215 char status_buffer[STATUS_BUFFER_LEN]; // messages to the user
216#if ENABLE_FEATURE_VI_DOT_CMD
217 char last_modifying_cmd[MAX_INPUT_LEN]; // last modifying cmd for "."
218#endif
219 char get_input_line__buf[MAX_INPUT_LEN]; /* former static */
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000220
221 char scr_out_buf[MAX_SCR_COLS + MAX_TABSTOP * 2];
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000222};
223#define G (*ptr_to_globals)
224#define text (G.text )
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000225#define text_size (G.text_size )
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000226#define end (G.end )
227#define dot (G.dot )
228#define reg (G.reg )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000229
230#define vi_setops (G.vi_setops )
231#define editing (G.editing )
232#define cmd_mode (G.cmd_mode )
233#define file_modified (G.file_modified )
234#define last_file_modified (G.last_file_modified )
235#define fn_start (G.fn_start )
236#define save_argc (G.save_argc )
237#define cmdcnt (G.cmdcnt )
238#define rows (G.rows )
239#define columns (G.columns )
240#define crow (G.crow )
241#define ccol (G.ccol )
242#define offset (G.offset )
243#define status_buffer (G.status_buffer )
244#define have_status_msg (G.have_status_msg )
245#define last_status_cksum (G.last_status_cksum )
246#define current_filename (G.current_filename )
247#define screen (G.screen )
248#define screensize (G.screensize )
249#define screenbegin (G.screenbegin )
250#define tabstop (G.tabstop )
251#define erase_char (G.erase_char )
252#define last_input_char (G.last_input_char )
253#define last_forward_char (G.last_forward_char )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000254#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkob1759462008-06-20 20:20:54 +0000255#define readonly_mode (G.readonly_mode )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000256#else
257#define readonly_mode 0
258#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000259#define adding2q (G.adding2q )
260#define lmc_len (G.lmc_len )
261#define ioq (G.ioq )
262#define ioq_start (G.ioq_start )
263#define last_row (G.last_row )
264#define my_pid (G.my_pid )
265#define modifying_cmds (G.modifying_cmds )
266#define last_search_pattern (G.last_search_pattern)
267#define chars_to_parse (G.chars_to_parse )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000268
Denis Vlasenkob1759462008-06-20 20:20:54 +0000269#define edit_file__cur_line (G.edit_file__cur_line)
270#define refresh__old_offset (G.refresh__old_offset)
271#define format_edit_status__tot (G.format_edit_status__tot)
272
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000273#define YDreg (G.YDreg )
274#define Ureg (G.Ureg )
275#define mark (G.mark )
276#define context_start (G.context_start )
277#define context_end (G.context_end )
278#define restart (G.restart )
279#define term_orig (G.term_orig )
280#define term_vi (G.term_vi )
281#define initial_cmds (G.initial_cmds )
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000282#define readbuffer (G.readbuffer )
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000283#define scr_out_buf (G.scr_out_buf )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000284#define last_modifying_cmd (G.last_modifying_cmd )
285#define get_input_line__buf (G.get_input_line__buf)
286
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000287#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000288 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenkob1759462008-06-20 20:20:54 +0000289 last_file_modified = -1; \
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000290} while (0)
Eric Andersen3f980402001-04-04 17:31:15 +0000291
Denis Vlasenkob1759462008-06-20 20:20:54 +0000292
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000293static int init_text_buffer(char *); // init from file or create new
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000294static void edit_file(char *); // edit one file
295static void do_cmd(char); // execute a command
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000296static int next_tabstop(int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000297static void sync_cursor(char *, int *, int *); // synchronize the screen cursor to dot
298static char *begin_line(char *); // return pointer to cur line B-o-l
299static char *end_line(char *); // return pointer to cur line E-o-l
300static char *prev_line(char *); // return pointer to prev line B-o-l
301static char *next_line(char *); // return pointer to next line B-o-l
302static char *end_screen(void); // get pointer to last char on screen
303static int count_lines(char *, char *); // count line from start to stop
304static char *find_line(int); // find begining of line #li
305static char *move_to_col(char *, int); // move "p" to column l
Eric Andersen3f980402001-04-04 17:31:15 +0000306static void dot_left(void); // move dot left- dont leave line
307static void dot_right(void); // move dot right- dont leave line
308static void dot_begin(void); // move dot to B-o-l
309static void dot_end(void); // move dot to E-o-l
310static void dot_next(void); // move dot to next line B-o-l
311static void dot_prev(void); // move dot to prev line B-o-l
312static void dot_scroll(int, int); // move the screen up or down
313static void dot_skip_over_ws(void); // move dot pat WS
314static void dot_delete(void); // delete the char at 'dot'
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000315static char *bound_dot(char *); // make sure text[0] <= P < "end"
316static char *new_screen(int, int); // malloc virtual screen memory
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000317static char *char_insert(char *, char); // insert the char c at 'p'
318static char *stupid_insert(char *, char); // stupidly insert the char c at 'p'
Paul Foxc51fc7b2008-03-06 01:34:23 +0000319static int find_range(char **, char **, char); // return pointers for an object
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000320static int st_test(char *, int, int, char *); // helper for skip_thing()
321static char *skip_thing(char *, int, int, int); // skip some object
322static char *find_pair(char *, char); // find matching pair () [] {}
323static char *text_hole_delete(char *, char *); // at "p", delete a 'size' byte hole
324static char *text_hole_make(char *, int); // at "p", make a 'size' byte hole
325static char *yank_delete(char *, char *, int, int); // yank text[] into register then delete
Eric Andersen3f980402001-04-04 17:31:15 +0000326static void show_help(void); // display some help info
Eric Andersen3f980402001-04-04 17:31:15 +0000327static void rawmode(void); // set "raw" mode on tty
328static void cookmode(void); // return to "cooked" mode on tty
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000329// sleep for 'h' 1/100 seconds, return 1/0 if stdin is (ready for read)/(not ready)
330static int mysleep(int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000331static char readit(void); // read (maybe cursor) key from stdin
332static char get_one_char(void); // read 1 char from stdin
333static int file_size(const char *); // what is the byte size of "fn"
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000334#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000335static int file_insert(const char *, char *, int);
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000336#else
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000337static int file_insert(const char *, char *);
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000338#endif
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000339static int file_write(char *, char *, char *);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +0000340#if !ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
341#define place_cursor(a, b, optimize) place_cursor(a, b)
342#endif
Eric Andersen822c3832001-05-07 17:37:43 +0000343static void place_cursor(int, int, int);
Eric Andersenbff7a602001-11-17 07:15:43 +0000344static void screen_erase(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000345static void clear_to_eol(void);
346static void clear_to_eos(void);
347static void standout_start(void); // send "start reverse video" sequence
348static void standout_end(void); // send "end reverse video" sequence
349static void flash(int); // flash the terminal screen
Eric Andersen3f980402001-04-04 17:31:15 +0000350static void show_status_line(void); // put a message on the bottom line
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000351static void status_line(const char *, ...); // print to status buf
352static void status_line_bold(const char *, ...);
353static void not_implemented(const char *); // display "Not implemented" message
Paul Fox8552aec2005-09-16 12:20:05 +0000354static int format_edit_status(void); // format file status on status line
Eric Andersen3f980402001-04-04 17:31:15 +0000355static void redraw(int); // force a full screen refresh
Denis Vlasenko68404f12008-03-17 09:00:54 +0000356static char* format_line(char* /*, int*/);
Eric Andersen3f980402001-04-04 17:31:15 +0000357static void refresh(int); // update the terminal from screen[]
358
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000359static void Indicate_Error(void); // use flash or beep to indicate error
360#define indicate_error(c) Indicate_Error()
Paul Fox90372ed2005-10-09 14:26:26 +0000361static void Hit_Return(void);
362
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000363#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000364static char *char_search(char *, const char *, int, int); // search for pattern starting at p
365static int mycmp(const char *, const char *, int); // string cmp based in "ignorecase"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000366#endif
367#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000368static char *get_one_address(char *, int *); // get colon addr, if present
369static char *get_address(char *, int *, int *); // get two colon addrs, if present
370static void colon(char *); // execute the "colon" mode cmds
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000371#endif
372#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000373static void winch_sig(int); // catch window size changes
374static void suspend_sig(int); // catch ctrl-Z
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000375static void catch_sig(int); // catch ctrl-C and alarm time-outs
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000376#endif
377#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000378static void start_new_cmd_q(char); // new queue for command
Eric Andersenbff7a602001-11-17 07:15:43 +0000379static void end_cmd_q(void); // stop saving input chars
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000380#else
381#define end_cmd_q() ((void)0)
382#endif
383#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000384static void showmatching(char *); // show the matching pair () [] {}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000385#endif
386#if ENABLE_FEATURE_VI_YANKMARK || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000387static char *string_insert(char *, char *); // insert the string at 'p'
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000388#endif
389#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000390static char *text_yank(char *, char *, int); // save copy of "p" into a register
391static char what_reg(void); // what is letter of current YDreg
392static void check_context(char); // remember context for '' command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000393#endif
394#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000395static void crash_dummy();
396static void crash_test();
397static int crashme = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000398#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000399
400
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000401static void write1(const char *out)
402{
403 fputs(out, stdout);
404}
405
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000406int vi_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +0000407int vi_main(int argc, char **argv)
Eric Andersen3f980402001-04-04 17:31:15 +0000408{
Eric Andersend402edf2001-04-04 19:29:48 +0000409 int c;
Denis Vlasenkob1759462008-06-20 20:20:54 +0000410
411 INIT_G();
Eric Andersen3f980402001-04-04 17:31:15 +0000412
Denis Vlasenkocd5c7862007-05-17 16:37:22 +0000413#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000414 my_pid = getpid();
415#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000416#if ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000417 srand((long) my_pid);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000418#endif
Denis Vlasenko2414a962007-07-18 22:03:40 +0000419#ifdef NO_SUCH_APPLET_YET
420 /* If we aren't "vi", we are "view" */
421 if (ENABLE_FEATURE_VI_READONLY && applet_name[2]) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000422 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000423 }
Denis Vlasenko2414a962007-07-18 22:03:40 +0000424#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000425
Bernhard Reutner-Fischer73f56bb2007-09-22 21:18:46 +0000426 vi_setops = VI_AUTOINDENT | VI_SHOWMATCH | VI_IGNORECASE;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000427#if ENABLE_FEATURE_VI_DOT_CMD || ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000428 modifying_cmds = (char *) "aAcCdDiIJoOpPrRsxX<>~"; // cmds modifying text[]
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000429#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000430
Denis Vlasenkof9234132007-03-21 00:03:42 +0000431 // 1- process $HOME/.exrc file (not inplemented yet)
Eric Andersen3f980402001-04-04 17:31:15 +0000432 // 2- process EXINIT variable from environment
433 // 3- process command line args
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000434#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000435 {
436 char *p = getenv("EXINIT");
437 if (p && *p)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000438 initial_cmds[0] = xstrndup(p, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000439 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000440#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000441 while ((c = getopt(argc, argv, "hCRH" USE_FEATURE_VI_COLON("c:"))) != -1) {
Eric Andersen3f980402001-04-04 17:31:15 +0000442 switch (c) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000443#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000444 case 'C':
445 crashme = 1;
446 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000447#endif
448#if ENABLE_FEATURE_VI_READONLY
Eric Andersen3f980402001-04-04 17:31:15 +0000449 case 'R': // Read-only flag
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000450 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000451 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000452#endif
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000453#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000454 case 'c': // cmd line vi command
455 if (*optarg)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000456 initial_cmds[initial_cmds[0] != 0] = xstrndup(optarg, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000457 break;
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000458#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000459 case 'H':
Eric Andersen3f980402001-04-04 17:31:15 +0000460 show_help();
Paul Fox35e9c5d2008-03-06 16:26:12 +0000461 /* fall through */
Paul Fox35e9c5d2008-03-06 16:26:12 +0000462 default:
Denis Vlasenkoc6938402008-03-24 02:18:03 +0000463 bb_show_usage();
Eric Andersendd8500b2001-07-02 18:06:14 +0000464 return 1;
Eric Andersen3f980402001-04-04 17:31:15 +0000465 }
466 }
467
468 // The argv array can be used by the ":next" and ":rewind" commands
469 // save optind.
470 fn_start = optind; // remember first file name for :next and :rew
471 save_argc = argc;
472
473 //----- This is the main file handling loop --------------
474 if (optind >= argc) {
Eric Andersen3f980402001-04-04 17:31:15 +0000475 edit_file(0);
476 } else {
477 for (; optind < argc; optind++) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000478 edit_file(argv[optind]);
Eric Andersen3f980402001-04-04 17:31:15 +0000479 }
480 }
481 //-----------------------------------------------------------
482
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000483 return 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000484}
485
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000486/* read text from file or create an empty buf */
487/* will also update current_filename */
488static int init_text_buffer(char *fn)
489{
490 int rc;
491 int size = file_size(fn); // file size. -1 means does not exist.
492
493 /* allocate/reallocate text buffer */
494 free(text);
Denis Vlasenkob1759462008-06-20 20:20:54 +0000495 text_size = size + 10240;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000496 screenbegin = dot = end = text = xzalloc(text_size);
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000497
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000498 if (fn != current_filename) {
499 free(current_filename);
500 current_filename = xstrdup(fn);
501 }
502 if (size < 0) {
503 // file dont exist. Start empty buf with dummy line
504 char_insert(text, '\n');
505 rc = 0;
506 } else {
507 rc = file_insert(fn, text
508 USE_FEATURE_VI_READONLY(, 1));
509 }
510 file_modified = 0;
511 last_file_modified = -1;
512#if ENABLE_FEATURE_VI_YANKMARK
513 /* init the marks. */
514 memset(mark, 0, sizeof(mark));
515#endif
516 return rc;
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000517}
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000518
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000519static void edit_file(char *fn)
Eric Andersen3f980402001-04-04 17:31:15 +0000520{
Denis Vlasenkob1759462008-06-20 20:20:54 +0000521#if ENABLE_FEATURE_VI_YANKMARK
522#define cur_line edit_file__cur_line
523#endif
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000524 char c;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000525 int size;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000526#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000527 int sig;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000528#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000529
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000530 editing = 1; // 0 = exit, 1 = one file, 2 = multiple files
Eric Andersen3f980402001-04-04 17:31:15 +0000531 rawmode();
532 rows = 24;
533 columns = 80;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000534 size = 0;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000535 if (ENABLE_FEATURE_VI_WIN_RESIZE) {
Rob Landleye5e1a102006-06-21 01:15:36 +0000536 get_terminal_width_height(0, &columns, &rows);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000537 if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS;
538 if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS;
539 }
Eric Andersen3f980402001-04-04 17:31:15 +0000540 new_screen(rows, columns); // get memory for virtual screen
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000541 init_text_buffer(fn);
Eric Andersen3f980402001-04-04 17:31:15 +0000542
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000543#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000544 YDreg = 26; // default Yank/Delete reg
545 Ureg = 27; // hold orig line for "U" cmd
Eric Andersen3f980402001-04-04 17:31:15 +0000546 mark[26] = mark[27] = text; // init "previous context"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000547#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000548
Eric Andersen3f980402001-04-04 17:31:15 +0000549 last_forward_char = last_input_char = '\0';
550 crow = 0;
551 ccol = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000552
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000553#if ENABLE_FEATURE_VI_USE_SIGNALS
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000554 catch_sig(0);
Eric Andersen3f980402001-04-04 17:31:15 +0000555 signal(SIGWINCH, winch_sig);
556 signal(SIGTSTP, suspend_sig);
Paul Fox2724fa92008-03-17 15:28:07 +0000557 sig = sigsetjmp(restart, 1);
Eric Andersen3f980402001-04-04 17:31:15 +0000558 if (sig != 0) {
Eric Andersen1c0d3112001-04-16 15:46:44 +0000559 screenbegin = dot = text;
Eric Andersen3f980402001-04-04 17:31:15 +0000560 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000561#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000562
Eric Andersen3f980402001-04-04 17:31:15 +0000563 cmd_mode = 0; // 0=command 1=insert 2='R'eplace
564 cmdcnt = 0;
565 tabstop = 8;
566 offset = 0; // no horizontal offset
567 c = '\0';
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000568#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000569 free(ioq_start);
Paul Foxc51fc7b2008-03-06 01:34:23 +0000570 ioq = ioq_start = NULL;
571 lmc_len = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000572 adding2q = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000573#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000574
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000575#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000576 {
577 char *p, *q;
578 int n = 0;
579
580 while ((p = initial_cmds[n])) {
581 do {
582 q = p;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000583 p = strchr(q, '\n');
Denis Vlasenkof9234132007-03-21 00:03:42 +0000584 if (p)
Denis Vlasenko51742f42007-04-12 00:32:05 +0000585 while (*p == '\n')
Denis Vlasenkof9234132007-03-21 00:03:42 +0000586 *p++ = '\0';
587 if (*q)
588 colon(q);
589 } while (p);
590 free(initial_cmds[n]);
591 initial_cmds[n] = NULL;
592 n++;
593 }
594 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000595#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000596 redraw(FALSE); // dont force every col re-draw
Eric Andersen3f980402001-04-04 17:31:15 +0000597 //------This is the main Vi cmd handling loop -----------------------
598 while (editing > 0) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000599#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000600 if (crashme > 0) {
601 if ((end - text) > 1) {
602 crash_dummy(); // generate a random command
603 } else {
604 crashme = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000605 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 +0000606 refresh(FALSE);
607 }
608 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000609#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000610 last_input_char = c = get_one_char(); // get a cmd from user
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000611#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000612 // save a copy of the current line- for the 'U" command
613 if (begin_line(dot) != cur_line) {
614 cur_line = begin_line(dot);
615 text_yank(begin_line(dot), end_line(dot), Ureg);
616 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000617#endif
618#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +0000619 // These are commands that change text[].
620 // Remember the input for the "." command
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000621 if (!adding2q && ioq_start == NULL
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000622 && c != '\0' && strchr(modifying_cmds, c)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000623 ) {
Eric Andersen3f980402001-04-04 17:31:15 +0000624 start_new_cmd_q(c);
625 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000626#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000627 do_cmd(c); // execute the user command
628 //
629 // poll to see if there is input already waiting. if we are
630 // not able to display output fast enough to keep up, skip
631 // the display update until we catch up with input.
632 if (mysleep(0) == 0) {
633 // no input pending- so update output
634 refresh(FALSE);
635 show_status_line();
636 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000637#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000638 if (crashme > 0)
639 crash_test(); // test editor variables
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000640#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000641 }
642 //-------------------------------------------------------------------
643
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000644 place_cursor(rows - 1, 0, FALSE); // go to bottom of screen
645 clear_to_eol(); // erase to end of line
Eric Andersen3f980402001-04-04 17:31:15 +0000646 cookmode();
Denis Vlasenkob1759462008-06-20 20:20:54 +0000647#undef cur_line
Eric Andersen3f980402001-04-04 17:31:15 +0000648}
649
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000650//----- The Colon commands -------------------------------------
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000651#if ENABLE_FEATURE_VI_COLON
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000652static char *get_one_address(char *p, int *addr) // get colon addr, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000653{
654 int st;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000655 char *q;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000656 USE_FEATURE_VI_YANKMARK(char c;)
657 USE_FEATURE_VI_SEARCH(char *pat;)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000658
659 *addr = -1; // assume no addr
660 if (*p == '.') { // the current line
661 p++;
662 q = begin_line(dot);
663 *addr = count_lines(text, q);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000664 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000665#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000666 else if (*p == '\'') { // is this a mark addr
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000667 p++;
668 c = tolower(*p);
669 p++;
670 if (c >= 'a' && c <= 'z') {
671 // we have a mark
672 c = c - 'a';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000673 q = mark[(unsigned char) c];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000674 if (q != NULL) { // is mark valid
675 *addr = count_lines(text, q); // count lines
676 }
677 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000678 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000679#endif
680#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000681 else if (*p == '/') { // a search pattern
682 q = strchrnul(++p, '/');
683 pat = xstrndup(p, q - p); // save copy of pattern
684 p = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000685 if (*p == '/')
686 p++;
687 q = char_search(dot, pat, FORWARD, FULL);
688 if (q != NULL) {
689 *addr = count_lines(text, q);
690 }
691 free(pat);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000692 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000693#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000694 else if (*p == '$') { // the last line in file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000695 p++;
696 q = begin_line(end - 1);
697 *addr = count_lines(text, q);
698 } else if (isdigit(*p)) { // specific line number
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000699 sscanf(p, "%d%n", addr, &st);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000700 p += st;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000701 } else {
702 // unrecognised address - assume -1
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000703 *addr = -1;
704 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000705 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000706}
707
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000708static char *get_address(char *p, int *b, int *e) // get two colon addrs, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000709{
710 //----- get the address' i.e., 1,3 'a,'b -----
711 // get FIRST addr, if present
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000712 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000713 p++; // skip over leading spaces
714 if (*p == '%') { // alias for 1,$
715 p++;
716 *b = 1;
717 *e = count_lines(text, end-1);
718 goto ga0;
719 }
720 p = get_one_address(p, b);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000721 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000722 p++;
Eric Andersenaff114c2004-04-14 17:51:38 +0000723 if (*p == ',') { // is there a address separator
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000724 p++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000725 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000726 p++;
727 // get SECOND addr, if present
728 p = get_one_address(p, e);
729 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000730 ga0:
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000731 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000732 p++; // skip over trailing spaces
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000733 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000734}
735
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000736#if ENABLE_FEATURE_VI_SET && ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000737static void setops(const char *args, const char *opname, int flg_no,
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000738 const char *short_opname, int opt)
739{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000740 const char *a = args + flg_no;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000741 int l = strlen(opname) - 1; /* opname have + ' ' */
742
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000743 if (strncasecmp(a, opname, l) == 0
744 || strncasecmp(a, short_opname, 2) == 0
745 ) {
746 if (flg_no)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000747 vi_setops &= ~opt;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000748 else
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000749 vi_setops |= opt;
750 }
751}
752#endif
753
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000754// buf must be no longer than MAX_INPUT_LEN!
755static void colon(char *buf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000756{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000757 char c, *orig_buf, *buf1, *q, *r;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000758 char *fn, cmd[MAX_INPUT_LEN], args[MAX_INPUT_LEN];
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000759 int i, l, li, ch, b, e;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000760 int useforce, forced = FALSE;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000761
762 // :3154 // if (-e line 3154) goto it else stay put
763 // :4,33w! foo // write a portion of buffer to file "foo"
764 // :w // write all of buffer to current file
765 // :q // quit
766 // :q! // quit- dont care about modified file
767 // :'a,'z!sort -u // filter block through sort
768 // :'f // goto mark "f"
769 // :'fl // list literal the mark "f" line
770 // :.r bar // read file "bar" into buffer before dot
771 // :/123/,/abc/d // delete lines from "123" line to "abc" line
772 // :/xyz/ // goto the "xyz" line
773 // :s/find/replace/ // substitute pattern "find" with "replace"
774 // :!<cmd> // run <cmd> then return
775 //
Eric Andersen165e8cb2004-07-20 06:44:46 +0000776
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000777 if (!buf[0])
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000778 goto vc1;
779 if (*buf == ':')
780 buf++; // move past the ':'
781
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000782 li = ch = i = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000783 b = e = -1;
784 q = text; // assume 1,$ for the range
785 r = end - 1;
786 li = count_lines(text, end - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000787 fn = current_filename;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000788
789 // look for optional address(es) :. :1 :1,9 :'q,'a :%
790 buf = get_address(buf, &b, &e);
791
792 // remember orig command line
793 orig_buf = buf;
794
795 // get the COMMAND into cmd[]
796 buf1 = cmd;
797 while (*buf != '\0') {
798 if (isspace(*buf))
799 break;
800 *buf1++ = *buf++;
801 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000802 *buf1 = '\0';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000803 // get any ARGuments
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000804 while (isblank(*buf))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000805 buf++;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000806 strcpy(args, buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000807 useforce = FALSE;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000808 buf1 = last_char_is(cmd, '!');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000809 if (buf1) {
810 useforce = TRUE;
811 *buf1 = '\0'; // get rid of !
812 }
813 if (b >= 0) {
814 // if there is only one addr, then the addr
815 // is the line number of the single line the
816 // user wants. So, reset the end
817 // pointer to point at end of the "b" line
818 q = find_line(b); // what line is #b
819 r = end_line(q);
820 li = 1;
821 }
822 if (e >= 0) {
823 // we were given two addrs. change the
824 // end pointer to the addr given by user.
825 r = find_line(e); // what line is #e
826 r = end_line(r);
827 li = e - b + 1;
828 }
829 // ------------ now look for the command ------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000830 i = strlen(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000831 if (i == 0) { // :123CR goto line #123
832 if (b >= 0) {
833 dot = find_line(b); // what line is #b
834 dot_skip_over_ws();
835 }
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000836 }
837#if ENABLE_FEATURE_ALLOW_EXEC
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000838 else if (strncmp(cmd, "!", 1) == 0) { // run a cmd
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000839 int retcode;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000840 // :!ls run the <cmd>
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000841 place_cursor(rows - 1, 0, FALSE); // go to Status line
842 clear_to_eol(); // clear the line
843 cookmode();
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000844 retcode = system(orig_buf + 1); // run the cmd
845 if (retcode)
846 printf("\nshell returned %i\n\n", retcode);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000847 rawmode();
848 Hit_Return(); // let user see results
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000849 }
850#endif
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000851 else if (strncmp(cmd, "=", i) == 0) { // where is the address
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000852 if (b < 0) { // no addr given- use defaults
853 b = e = count_lines(text, dot);
854 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000855 status_line("%d", b);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000856 } else if (strncasecmp(cmd, "delete", i) == 0) { // delete lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000857 if (b < 0) { // no addr given- use defaults
858 q = begin_line(dot); // assume .,. for the range
859 r = end_line(dot);
860 }
861 dot = yank_delete(q, r, 1, YANKDEL); // save, then delete lines
862 dot_skip_over_ws();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000863 } else if (strncasecmp(cmd, "edit", i) == 0) { // Edit a file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000864 // don't edit, if the current file has been modified
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000865 if (file_modified && !useforce) {
866 status_line_bold("No write since last change (:edit! overrides)");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000867 goto vc1;
868 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000869 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000870 // the user supplied a file name
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000871 fn = args;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000872 } else if (current_filename && current_filename[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000873 // no user supplied name- use the current filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000874 // fn = current_filename; was set by default
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000875 } else {
876 // no user file name, no current name- punt
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000877 status_line_bold("No current filename");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000878 goto vc1;
879 }
880
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000881 if (init_text_buffer(fn) < 0)
882 goto vc1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000883
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000884#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000885 if (Ureg >= 0 && Ureg < 28 && reg[Ureg] != 0) {
886 free(reg[Ureg]); // free orig line reg- for 'U'
887 reg[Ureg]= 0;
888 }
889 if (YDreg >= 0 && YDreg < 28 && reg[YDreg] != 0) {
890 free(reg[YDreg]); // free default yank/delete register
891 reg[YDreg]= 0;
892 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000893#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000894 // how many lines in text[]?
895 li = count_lines(text, end - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000896 status_line("\"%s\"%s"
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000897 USE_FEATURE_VI_READONLY("%s")
898 " %dL, %dC", current_filename,
899 (file_size(fn) < 0 ? " [New file]" : ""),
900 USE_FEATURE_VI_READONLY(
901 ((readonly_mode) ? " [Readonly]" : ""),
902 )
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000903 li, ch);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000904 } else if (strncasecmp(cmd, "file", i) == 0) { // what File is this
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000905 if (b != -1 || e != -1) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000906 not_implemented("No address allowed on this command");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000907 goto vc1;
908 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000909 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000910 // user wants a new filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000911 free(current_filename);
912 current_filename = xstrdup(args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000913 } else {
914 // user wants file status info
Paul Fox8552aec2005-09-16 12:20:05 +0000915 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000916 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000917 } else if (strncasecmp(cmd, "features", i) == 0) { // what features are available
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000918 // print out values of all features
919 place_cursor(rows - 1, 0, FALSE); // go to Status line, bottom of screen
920 clear_to_eol(); // clear the line
921 cookmode();
922 show_help();
923 rawmode();
924 Hit_Return();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000925 } else if (strncasecmp(cmd, "list", i) == 0) { // literal print line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000926 if (b < 0) { // no addr given- use defaults
927 q = begin_line(dot); // assume .,. for the range
928 r = end_line(dot);
929 }
930 place_cursor(rows - 1, 0, FALSE); // go to Status line, bottom of screen
931 clear_to_eol(); // clear the line
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
1031 place_cursor(rows - 1, 0, FALSE); // go to Status line, bottom of screen
1032 clear_to_eol(); // clear the line
1033 printf("----------------------------------------\r\n");
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001034#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001035 if (!autoindent)
1036 printf("no");
1037 printf("autoindent ");
1038 if (!err_method)
1039 printf("no");
1040 printf("flash ");
1041 if (!ignorecase)
1042 printf("no");
1043 printf("ignorecase ");
1044 if (!showmatch)
1045 printf("no");
1046 printf("showmatch ");
1047 printf("tabstop=%d ", tabstop);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001048#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001049 printf("\r\n");
1050 goto vc2;
1051 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001052#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001053 argp = args;
Denis Vlasenkoba2fb712007-04-01 09:39:03 +00001054 while (*argp) {
Denis Vlasenkof9234132007-03-21 00:03:42 +00001055 if (strncasecmp(argp, "no", 2) == 0)
1056 i = 2; // ":set noautoindent"
1057 setops(argp, "autoindent ", i, "ai", VI_AUTOINDENT);
1058 setops(argp, "flash ", i, "fl", VI_ERR_METHOD);
1059 setops(argp, "ignorecase ", i, "ic", VI_IGNORECASE);
1060 setops(argp, "showmatch ", i, "ic", VI_SHOWMATCH);
1061 /* tabstopXXXX */
1062 if (strncasecmp(argp + i, "tabstop=%d ", 7) == 0) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001063 sscanf(strchr(argp + i, '='), "tabstop=%d" + 7, &ch);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00001064 if (ch > 0 && ch <= MAX_TABSTOP)
Denis Vlasenkof9234132007-03-21 00:03:42 +00001065 tabstop = ch;
1066 }
1067 while (*argp && *argp != ' ')
1068 argp++; // skip to arg delimiter (i.e. blank)
1069 while (*argp && *argp == ' ')
1070 argp++; // skip all delimiting blanks
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001071 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001072#endif /* FEATURE_VI_SETOPTS */
1073#endif /* FEATURE_VI_SET */
1074#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001075 } else if (strncasecmp(cmd, "s", 1) == 0) { // substitute a pattern with a replacement pattern
1076 char *ls, *F, *R;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001077 int gflag;
1078
1079 // F points to the "find" pattern
1080 // R points to the "replace" pattern
1081 // replace the cmd line delimiters "/" with NULLs
1082 gflag = 0; // global replace flag
1083 c = orig_buf[1]; // what is the delimiter
1084 F = orig_buf + 2; // start of "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001085 R = strchr(F, c); // middle delimiter
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001086 if (!R) goto colon_s_fail;
1087 *R++ = '\0'; // terminate "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001088 buf1 = strchr(R, c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001089 if (!buf1) goto colon_s_fail;
1090 *buf1++ = '\0'; // terminate "replace"
1091 if (*buf1 == 'g') { // :s/foo/bar/g
1092 buf1++;
1093 gflag++; // turn on gflag
1094 }
1095 q = begin_line(q);
1096 if (b < 0) { // maybe :s/foo/bar/
1097 q = begin_line(dot); // start with cur line
1098 b = count_lines(text, q); // cur line number
1099 }
1100 if (e < 0)
1101 e = b; // maybe :.s/foo/bar/
1102 for (i = b; i <= e; i++) { // so, :20,23 s \0 find \0 replace \0
1103 ls = q; // orig line start
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001104 vc4:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001105 buf1 = char_search(q, F, FORWARD, LIMITED); // search cur line only for "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001106 if (buf1) {
1107 // we found the "find" pattern - delete it
1108 text_hole_delete(buf1, buf1 + strlen(F) - 1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001109 // inset the "replace" patern
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001110 string_insert(buf1, R); // insert the string
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001111 // check for "global" :s/foo/bar/g
1112 if (gflag == 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001113 if ((buf1 + strlen(R)) < end_line(ls)) {
1114 q = buf1 + strlen(R);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001115 goto vc4; // don't let q move past cur line
1116 }
1117 }
1118 }
1119 q = next_line(ls);
1120 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001121#endif /* FEATURE_VI_SEARCH */
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001122 } else if (strncasecmp(cmd, "version", i) == 0) { // show software version
Denis Vlasenko33875382008-06-21 20:31:50 +00001123 status_line(BB_VER " " BB_BT);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001124 } else if (strncasecmp(cmd, "write", i) == 0 // write text to file
1125 || strncasecmp(cmd, "wq", i) == 0
1126 || strncasecmp(cmd, "wn", i) == 0
1127 || strncasecmp(cmd, "x", i) == 0
1128 ) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001129 // is there a file name to write to?
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001130 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001131 fn = args;
1132 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001133#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001134 if (readonly_mode && !useforce) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001135 status_line_bold("\"%s\" File is read only", fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001136 goto vc3;
1137 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001138#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001139 // how many lines in text[]?
1140 li = count_lines(q, r);
1141 ch = r - q + 1;
1142 // see if file exists- if not, its just a new file request
1143 if (useforce) {
1144 // if "fn" is not write-able, chmod u+w
1145 // sprintf(syscmd, "chmod u+w %s", fn);
1146 // system(syscmd);
1147 forced = TRUE;
1148 }
1149 l = file_write(fn, q, r);
1150 if (useforce && forced) {
1151 // chmod u-w
1152 // sprintf(syscmd, "chmod u-w %s", fn);
1153 // system(syscmd);
1154 forced = FALSE;
1155 }
Paul Fox61e45db2005-10-09 14:43:22 +00001156 if (l < 0) {
1157 if (l == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001158 status_line_bold("\"%s\" %s", fn, strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00001159 } else {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001160 status_line("\"%s\" %dL, %dC", fn, li, l);
Paul Fox61e45db2005-10-09 14:43:22 +00001161 if (q == text && r == end - 1 && l == ch) {
1162 file_modified = 0;
1163 last_file_modified = -1;
1164 }
Paul Fox9360f422006-03-27 21:51:16 +00001165 if ((cmd[0] == 'x' || cmd[1] == 'q' || cmd[1] == 'n' ||
1166 cmd[0] == 'X' || cmd[1] == 'Q' || cmd[1] == 'N')
1167 && l == ch) {
Paul Fox61e45db2005-10-09 14:43:22 +00001168 editing = 0;
1169 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001170 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001171#if ENABLE_FEATURE_VI_READONLY
1172 vc3:;
1173#endif
1174#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001175 } else if (strncasecmp(cmd, "yank", i) == 0) { // yank lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001176 if (b < 0) { // no addr given- use defaults
1177 q = begin_line(dot); // assume .,. for the range
1178 r = end_line(dot);
1179 }
1180 text_yank(q, r, YDreg);
1181 li = count_lines(q, r);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001182 status_line("Yank %d lines (%d chars) into [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001183 li, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001184#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001185 } else {
1186 // cmd unknown
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001187 not_implemented(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001188 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001189 vc1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001190 dot = bound_dot(dot); // make sure "dot" is valid
1191 return;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001192#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001193 colon_s_fail:
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001194 status_line(":s expression missing delimiters");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001195#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001196}
Paul Fox61e45db2005-10-09 14:43:22 +00001197
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001198#endif /* FEATURE_VI_COLON */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001199
1200static void Hit_Return(void)
1201{
1202 char c;
1203
Denis Vlasenkof882f082007-12-23 02:36:51 +00001204 standout_start();
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001205 write1("[Hit return to continue]");
Denis Vlasenkof882f082007-12-23 02:36:51 +00001206 standout_end();
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001207 while ((c = get_one_char()) != '\n' && c != '\r')
1208 continue;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001209 redraw(TRUE); // force redraw all
1210}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001211
Denis Vlasenko91afdf82007-07-17 23:22:49 +00001212static int next_tabstop(int col)
1213{
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001214 return col + ((tabstop - 1) - (col % tabstop));
1215}
1216
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001217//----- Synchronize the cursor to Dot --------------------------
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001218static void sync_cursor(char *d, int *row, int *col)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001219{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001220 char *beg_cur; // begin and end of "d" line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001221 char *tp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001222 int cnt, ro, co;
1223
1224 beg_cur = begin_line(d); // first char of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001225
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001226 if (beg_cur < screenbegin) {
Denis Vlasenkof882f082007-12-23 02:36:51 +00001227 // "d" is before top line on screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001228 // how many lines do we have to move
1229 cnt = count_lines(beg_cur, screenbegin);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001230 sc1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001231 screenbegin = beg_cur;
1232 if (cnt > (rows - 1) / 2) {
1233 // we moved too many lines. put "dot" in middle of screen
1234 for (cnt = 0; cnt < (rows - 1) / 2; cnt++) {
1235 screenbegin = prev_line(screenbegin);
1236 }
1237 }
Denis Vlasenkof882f082007-12-23 02:36:51 +00001238 } else {
1239 char *end_scr; // begin and end of screen
1240 end_scr = end_screen(); // last char of screen
1241 if (beg_cur > end_scr) {
1242 // "d" is after bottom line on screen
1243 // how many lines do we have to move
1244 cnt = count_lines(end_scr, beg_cur);
1245 if (cnt > (rows - 1) / 2)
1246 goto sc1; // too many lines
1247 for (ro = 0; ro < cnt - 1; ro++) {
1248 // move screen begin the same amount
1249 screenbegin = next_line(screenbegin);
1250 // now, move the end of screen
1251 end_scr = next_line(end_scr);
1252 end_scr = end_line(end_scr);
1253 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001254 }
1255 }
1256 // "d" is on screen- find out which row
1257 tp = screenbegin;
1258 for (ro = 0; ro < rows - 1; ro++) { // drive "ro" to correct row
1259 if (tp == beg_cur)
1260 break;
1261 tp = next_line(tp);
1262 }
1263
1264 // find out what col "d" is on
1265 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001266 while (tp < d) { // drive "co" to correct column
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001267 if (*tp == '\n') //vda || *tp == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001268 break;
1269 if (*tp == '\t') {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001270 // handle tabs like real vi
1271 if (d == tp && cmd_mode) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001272 break;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001273 }
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001274 co = next_tabstop(co);
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001275 } else if ((unsigned char)*tp < ' ' || *tp == 0x7f) {
1276 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001277 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001278 co++;
1279 tp++;
1280 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001281
1282 // "co" is the column where "dot" is.
1283 // The screen has "columns" columns.
1284 // The currently displayed columns are 0+offset -- columns+ofset
1285 // |-------------------------------------------------------------|
1286 // ^ ^ ^
1287 // offset | |------- columns ----------------|
1288 //
1289 // If "co" is already in this range then we do not have to adjust offset
1290 // but, we do have to subtract the "offset" bias from "co".
1291 // If "co" is outside this range then we have to change "offset".
1292 // If the first char of a line is a tab the cursor will try to stay
1293 // in column 7, but we have to set offset to 0.
1294
1295 if (co < 0 + offset) {
1296 offset = co;
1297 }
1298 if (co >= columns + offset) {
1299 offset = co - columns + 1;
1300 }
1301 // if the first char of the line is a tab, and "dot" is sitting on it
1302 // force offset to 0.
1303 if (d == beg_cur && *d == '\t') {
1304 offset = 0;
1305 }
1306 co -= offset;
1307
1308 *row = ro;
1309 *col = co;
1310}
1311
1312//----- Text Movement Routines ---------------------------------
Denis Vlasenkof882f082007-12-23 02:36:51 +00001313static char *begin_line(char *p) // return pointer to first char cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001314{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001315 if (p > text) {
1316 p = memrchr(text, '\n', p - text);
1317 if (!p)
1318 return text;
1319 return p + 1;
1320 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001321 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001322}
1323
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001324static char *end_line(char *p) // return pointer to NL of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001325{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001326 if (p < end - 1) {
1327 p = memchr(p, '\n', end - p - 1);
1328 if (!p)
1329 return end - 1;
1330 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001331 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001332}
1333
Denis Vlasenkof882f082007-12-23 02:36:51 +00001334static char *dollar_line(char *p) // return pointer to just before NL line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001335{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001336 p = end_line(p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001337 // Try to stay off of the Newline
1338 if (*p == '\n' && (p - begin_line(p)) > 0)
1339 p--;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001340 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001341}
1342
Denis Vlasenkof882f082007-12-23 02:36:51 +00001343static char *prev_line(char *p) // return pointer first char prev line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001344{
1345 p = begin_line(p); // goto begining of cur line
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001346 if (p > text && p[-1] == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001347 p--; // step to prev line
1348 p = begin_line(p); // goto begining of prev line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001349 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001350}
1351
Denis Vlasenkof882f082007-12-23 02:36:51 +00001352static char *next_line(char *p) // return pointer first char next line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001353{
1354 p = end_line(p);
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001355 if (p < end - 1 && *p == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001356 p++; // step to next line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001357 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001358}
1359
1360//----- Text Information Routines ------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001361static char *end_screen(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001362{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001363 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001364 int cnt;
1365
1366 // find new bottom line
1367 q = screenbegin;
1368 for (cnt = 0; cnt < rows - 2; cnt++)
1369 q = next_line(q);
1370 q = end_line(q);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001371 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001372}
1373
Denis Vlasenkof882f082007-12-23 02:36:51 +00001374// count line from start to stop
1375static int count_lines(char *start, char *stop)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001376{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001377 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001378 int cnt;
1379
Denis Vlasenkof882f082007-12-23 02:36:51 +00001380 if (stop < start) { // start and stop are backwards- reverse them
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001381 q = start;
1382 start = stop;
1383 stop = q;
1384 }
1385 cnt = 0;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001386 stop = end_line(stop);
1387 while (start <= stop && start <= end - 1) {
1388 start = end_line(start);
1389 if (*start == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001390 cnt++;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001391 start++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001392 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001393 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001394}
1395
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001396static char *find_line(int li) // find begining of line #li
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001397{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001398 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001399
1400 for (q = text; li > 1; li--) {
1401 q = next_line(q);
1402 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001403 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001404}
1405
1406//----- Dot Movement Routines ----------------------------------
1407static void dot_left(void)
1408{
1409 if (dot > text && dot[-1] != '\n')
1410 dot--;
1411}
1412
1413static void dot_right(void)
1414{
1415 if (dot < end - 1 && *dot != '\n')
1416 dot++;
1417}
1418
1419static void dot_begin(void)
1420{
1421 dot = begin_line(dot); // return pointer to first char cur line
1422}
1423
1424static void dot_end(void)
1425{
1426 dot = end_line(dot); // return pointer to last char cur line
1427}
1428
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001429static char *move_to_col(char *p, int l)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001430{
1431 int co;
1432
1433 p = begin_line(p);
1434 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001435 while (co < l && p < end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001436 if (*p == '\n') //vda || *p == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001437 break;
1438 if (*p == '\t') {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001439 co = next_tabstop(co);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001440 } else if (*p < ' ' || *p == 127) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001441 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001442 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001443 co++;
1444 p++;
1445 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001446 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001447}
1448
1449static void dot_next(void)
1450{
1451 dot = next_line(dot);
1452}
1453
1454static void dot_prev(void)
1455{
1456 dot = prev_line(dot);
1457}
1458
1459static void dot_scroll(int cnt, int dir)
1460{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001461 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001462
1463 for (; cnt > 0; cnt--) {
1464 if (dir < 0) {
1465 // scroll Backwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001466 // ctrl-Y scroll up one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001467 screenbegin = prev_line(screenbegin);
1468 } else {
1469 // scroll Forwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001470 // ctrl-E scroll down one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001471 screenbegin = next_line(screenbegin);
1472 }
1473 }
1474 // make sure "dot" stays on the screen so we dont scroll off
1475 if (dot < screenbegin)
1476 dot = screenbegin;
1477 q = end_screen(); // find new bottom line
1478 if (dot > q)
1479 dot = begin_line(q); // is dot is below bottom line?
1480 dot_skip_over_ws();
1481}
1482
1483static void dot_skip_over_ws(void)
1484{
1485 // skip WS
1486 while (isspace(*dot) && *dot != '\n' && dot < end - 1)
1487 dot++;
1488}
1489
1490static void dot_delete(void) // delete the char at 'dot'
1491{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001492 text_hole_delete(dot, dot);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001493}
1494
Denis Vlasenkof882f082007-12-23 02:36:51 +00001495static char *bound_dot(char *p) // make sure text[0] <= P < "end"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001496{
1497 if (p >= end && end > text) {
1498 p = end - 1;
1499 indicate_error('1');
1500 }
1501 if (p < text) {
1502 p = text;
1503 indicate_error('2');
1504 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001505 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001506}
1507
1508//----- Helper Utility Routines --------------------------------
1509
1510//----------------------------------------------------------------
1511//----- Char Routines --------------------------------------------
1512/* Chars that are part of a word-
1513 * 0123456789_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
1514 * Chars that are Not part of a word (stoppers)
1515 * !"#$%&'()*+,-./:;<=>?@[\]^`{|}~
1516 * Chars that are WhiteSpace
1517 * TAB NEWLINE VT FF RETURN SPACE
1518 * DO NOT COUNT NEWLINE AS WHITESPACE
1519 */
1520
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001521static char *new_screen(int ro, int co)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001522{
1523 int li;
1524
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001525 free(screen);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001526 screensize = ro * co + 8;
Denis Vlasenkob95636c2006-12-19 23:36:04 +00001527 screen = xmalloc(screensize);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001528 // initialize the new screen. assume this will be a empty file.
1529 screen_erase();
Eric Andersenaff114c2004-04-14 17:51:38 +00001530 // non-existent text[] lines start with a tilde (~).
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001531 for (li = 1; li < ro - 1; li++) {
1532 screen[(li * co) + 0] = '~';
1533 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001534 return screen;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001535}
1536
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001537#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenko33875382008-06-21 20:31:50 +00001538static int mycmp(const char *s1, const char *s2, int len)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001539{
1540 int i;
1541
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001542 i = strncmp(s1, s2, len);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001543 if (ENABLE_FEATURE_VI_SETOPTS && ignorecase) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001544 i = strncasecmp(s1, s2, len);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001545 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001546 return i;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001547}
1548
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001549// search for pattern starting at p
Denis Vlasenko33875382008-06-21 20:31:50 +00001550static char *char_search(char *p, const char *pat, int dir, int range)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001551{
1552#ifndef REGEX_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001553 char *start, *stop;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001554 int len;
1555
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001556 len = strlen(pat);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001557 if (dir == FORWARD) {
1558 stop = end - 1; // assume range is p - end-1
1559 if (range == LIMITED)
1560 stop = next_line(p); // range is to next line
1561 for (start = p; start < stop; start++) {
1562 if (mycmp(start, pat, len) == 0) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001563 return start;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001564 }
1565 }
1566 } else if (dir == BACK) {
1567 stop = text; // assume range is text - p
1568 if (range == LIMITED)
1569 stop = prev_line(p); // range is to prev line
1570 for (start = p - len; start >= stop; start--) {
1571 if (mycmp(start, pat, len) == 0) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001572 return start;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001573 }
1574 }
1575 }
1576 // pattern not found
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001577 return NULL;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001578#else /* REGEX_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001579 char *q;
1580 struct re_pattern_buffer preg;
1581 int i;
1582 int size, range;
1583
1584 re_syntax_options = RE_SYNTAX_POSIX_EXTENDED;
1585 preg.translate = 0;
1586 preg.fastmap = 0;
1587 preg.buffer = 0;
1588 preg.allocated = 0;
1589
1590 // assume a LIMITED forward search
1591 q = next_line(p);
1592 q = end_line(q);
1593 q = end - 1;
1594 if (dir == BACK) {
1595 q = prev_line(p);
1596 q = text;
1597 }
1598 // count the number of chars to search over, forward or backward
1599 size = q - p;
1600 if (size < 0)
1601 size = p - q;
1602 // RANGE could be negative if we are searching backwards
1603 range = q - p;
1604
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001605 q = re_compile_pattern(pat, strlen(pat), &preg);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001606 if (q != 0) {
1607 // The pattern was not compiled
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001608 status_line_bold("bad search pattern: \"%s\": %s", pat, q);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001609 i = 0; // return p if pattern not compiled
1610 goto cs1;
1611 }
1612
1613 q = p;
1614 if (range < 0) {
1615 q = p - size;
1616 if (q < text)
1617 q = text;
1618 }
1619 // search for the compiled pattern, preg, in p[]
1620 // range < 0- search backward
1621 // range > 0- search forward
1622 // 0 < start < size
1623 // re_search() < 0 not found or error
1624 // re_search() > 0 index of found pattern
1625 // struct pattern char int int int struct reg
1626 // re_search (*pattern_buffer, *string, size, start, range, *regs)
1627 i = re_search(&preg, q, size, 0, range, 0);
1628 if (i == -1) {
1629 p = 0;
1630 i = 0; // return NULL if pattern not found
1631 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001632 cs1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001633 if (dir == FORWARD) {
1634 p = p + i;
1635 } else {
1636 p = p - i;
1637 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001638 return p;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001639#endif /* REGEX_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001640}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001641#endif /* FEATURE_VI_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001642
Denis Vlasenko33875382008-06-21 20:31:50 +00001643static char *char_insert(char *p, char c) // insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001644{
1645 if (c == 22) { // Is this an ctrl-V?
1646 p = stupid_insert(p, '^'); // use ^ to indicate literal next
1647 p--; // backup onto ^
1648 refresh(FALSE); // show the ^
1649 c = get_one_char();
1650 *p = c;
1651 p++;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001652 file_modified++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001653 } else if (c == 27) { // Is this an ESC?
1654 cmd_mode = 0;
1655 cmdcnt = 0;
1656 end_cmd_q(); // stop adding to q
Paul Fox8552aec2005-09-16 12:20:05 +00001657 last_status_cksum = 0; // force status update
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001658 if ((p[-1] != '\n') && (dot > text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001659 p--;
1660 }
Paul Foxd13b90b2005-07-18 22:17:25 +00001661 } else if (c == erase_char || c == 8 || c == 127) { // Is this a BS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001662 // 123456789
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001663 if ((p[-1] != '\n') && (dot>text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001664 p--;
1665 p = text_hole_delete(p, p); // shrink buffer 1 char
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001666 }
1667 } else {
1668 // insert a char into text[]
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001669 char *sp; // "save p"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001670
1671 if (c == 13)
1672 c = '\n'; // translate \r to \n
1673 sp = p; // remember addr of insert
1674 p = stupid_insert(p, c); // insert the char
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001675#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001676 if (showmatch && strchr(")]}", *sp) != NULL) {
1677 showmatching(sp);
1678 }
1679 if (autoindent && c == '\n') { // auto indent the new line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001680 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001681
1682 q = prev_line(p); // use prev line as templet
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001683 for (; isblank(*q); q++) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001684 p = stupid_insert(p, *q); // insert the char
1685 }
1686 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001687#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001688 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001689 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001690}
1691
Denis Vlasenko33875382008-06-21 20:31:50 +00001692static char *stupid_insert(char *p, char c) // stupidly insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001693{
1694 p = text_hole_make(p, 1);
Denis Vlasenkob1759462008-06-20 20:20:54 +00001695 *p = c;
1696 //file_modified++; - done by text_hole_make()
1697 return p + 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001698}
1699
Denis Vlasenko33875382008-06-21 20:31:50 +00001700static int find_range(char **start, char **stop, char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001701{
Paul Foxc51fc7b2008-03-06 01:34:23 +00001702 char *save_dot, *p, *q, *t;
1703 int cnt, multiline = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001704
1705 save_dot = dot;
1706 p = q = dot;
1707
1708 if (strchr("cdy><", c)) {
1709 // these cmds operate on whole lines
1710 p = q = begin_line(p);
1711 for (cnt = 1; cnt < cmdcnt; cnt++) {
1712 q = next_line(q);
1713 }
1714 q = end_line(q);
Paul Foxc51fc7b2008-03-06 01:34:23 +00001715 } else if (strchr("^%$0bBeEfth\b\177", c)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001716 // These cmds operate on char positions
1717 do_cmd(c); // execute movement cmd
1718 q = dot;
1719 } else if (strchr("wW", c)) {
1720 do_cmd(c); // execute movement cmd
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001721 // if we are at the next word's first char
1722 // step back one char
1723 // but check the possibilities when it is true
Eric Andersen5cc90ea2004-02-06 10:36:08 +00001724 if (dot > text && ((isspace(dot[-1]) && !isspace(dot[0]))
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001725 || (ispunct(dot[-1]) && !ispunct(dot[0]))
1726 || (isalnum(dot[-1]) && !isalnum(dot[0]))))
1727 dot--; // move back off of next word
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001728 if (dot > text && *dot == '\n')
1729 dot--; // stay off NL
1730 q = dot;
1731 } else if (strchr("H-k{", c)) {
1732 // these operate on multi-lines backwards
1733 q = end_line(dot); // find NL
1734 do_cmd(c); // execute movement cmd
1735 dot_begin();
1736 p = dot;
1737 } else if (strchr("L+j}\r\n", c)) {
1738 // these operate on multi-lines forwards
1739 p = begin_line(dot);
1740 do_cmd(c); // execute movement cmd
1741 dot_end(); // find NL
1742 q = dot;
1743 } else {
Paul Foxc51fc7b2008-03-06 01:34:23 +00001744 // nothing -- this causes any other values of c to
1745 // represent the one-character range under the
1746 // cursor. this is correct for ' ' and 'l', but
1747 // perhaps no others.
1748 //
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001749 }
Paul Foxc51fc7b2008-03-06 01:34:23 +00001750 if (q < p) {
1751 t = q;
1752 q = p;
1753 p = t;
1754 }
1755
Denis Vlasenko42cc3042008-03-24 02:05:58 +00001756 // backward char movements don't include start position
Paul Foxc51fc7b2008-03-06 01:34:23 +00001757 if (q > p && strchr("^0bBh\b\177", c)) q--;
1758
1759 multiline = 0;
1760 for (t = p; t <= q; t++) {
1761 if (*t == '\n') {
1762 multiline = 1;
1763 break;
1764 }
1765 }
1766
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001767 *start = p;
1768 *stop = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001769 dot = save_dot;
Paul Foxc51fc7b2008-03-06 01:34:23 +00001770 return multiline;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001771}
1772
Denis Vlasenko33875382008-06-21 20:31:50 +00001773static int st_test(char *p, int type, int dir, char *tested)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001774{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001775 char c, c0, ci;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001776 int test, inc;
1777
1778 inc = dir;
1779 c = c0 = p[0];
1780 ci = p[inc];
1781 test = 0;
1782
1783 if (type == S_BEFORE_WS) {
1784 c = ci;
1785 test = ((!isspace(c)) || c == '\n');
1786 }
1787 if (type == S_TO_WS) {
1788 c = c0;
1789 test = ((!isspace(c)) || c == '\n');
1790 }
1791 if (type == S_OVER_WS) {
1792 c = c0;
1793 test = ((isspace(c)));
1794 }
1795 if (type == S_END_PUNCT) {
1796 c = ci;
1797 test = ((ispunct(c)));
1798 }
1799 if (type == S_END_ALNUM) {
1800 c = ci;
1801 test = ((isalnum(c)) || c == '_');
1802 }
1803 *tested = c;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001804 return test;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001805}
1806
Denis Vlasenko33875382008-06-21 20:31:50 +00001807static char *skip_thing(char *p, int linecnt, int dir, int type)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001808{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001809 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001810
1811 while (st_test(p, type, dir, &c)) {
1812 // make sure we limit search to correct number of lines
1813 if (c == '\n' && --linecnt < 1)
1814 break;
1815 if (dir >= 0 && p >= end - 1)
1816 break;
1817 if (dir < 0 && p <= text)
1818 break;
1819 p += dir; // move to next char
1820 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001821 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001822}
1823
1824// find matching char of pair () [] {}
Denis Vlasenko33875382008-06-21 20:31:50 +00001825static char *find_pair(char *p, const char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001826{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001827 char match, *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001828 int dir, level;
1829
1830 match = ')';
1831 level = 1;
1832 dir = 1; // assume forward
1833 switch (c) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00001834 case '(': match = ')'; break;
1835 case '[': match = ']'; break;
1836 case '{': match = '}'; break;
1837 case ')': match = '('; dir = -1; break;
1838 case ']': match = '['; dir = -1; break;
1839 case '}': match = '{'; dir = -1; break;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001840 }
1841 for (q = p + dir; text <= q && q < end; q += dir) {
1842 // look for match, count levels of pairs (( ))
1843 if (*q == c)
1844 level++; // increase pair levels
1845 if (*q == match)
1846 level--; // reduce pair level
1847 if (level == 0)
1848 break; // found matching pair
1849 }
1850 if (level != 0)
1851 q = NULL; // indicate no match
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001852 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001853}
1854
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001855#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001856// show the matching char of a pair, () [] {}
Denis Vlasenkof882f082007-12-23 02:36:51 +00001857static void showmatching(char *p)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001858{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001859 char *q, *save_dot;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001860
1861 // we found half of a pair
1862 q = find_pair(p, *p); // get loc of matching char
1863 if (q == NULL) {
1864 indicate_error('3'); // no matching char
1865 } else {
1866 // "q" now points to matching pair
1867 save_dot = dot; // remember where we are
1868 dot = q; // go to new loc
1869 refresh(FALSE); // let the user see it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001870 mysleep(40); // give user some time
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001871 dot = save_dot; // go back to old loc
1872 refresh(FALSE);
1873 }
1874}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001875#endif /* FEATURE_VI_SETOPTS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001876
1877// open a hole in text[]
Denis Vlasenko33875382008-06-21 20:31:50 +00001878static char *text_hole_make(char *p, int size) // at "p", make a 'size' byte hole
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001879{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001880 if (size <= 0)
Denis Vlasenkob1759462008-06-20 20:20:54 +00001881 return p;
1882 end += size; // adjust the new END
1883 if (end >= (text + text_size)) {
1884 char *new_text;
1885 text_size += end - (text + text_size) + 10240;
1886 new_text = xrealloc(text, text_size);
1887 screenbegin = new_text + (screenbegin - text);
1888 dot = new_text + (dot - text);
1889 end = new_text + (end - text);
1890 p = new_text + (p - text);
1891 text = new_text;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001892 }
Denis Vlasenkod6995442008-06-27 04:06:13 +00001893 memmove(p + size, p, end - size - p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001894 memset(p, ' ', size); // clear new hole
Denis Vlasenkob1759462008-06-20 20:20:54 +00001895 file_modified++;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001896 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001897}
1898
1899// close a hole in text[]
Denis Vlasenko33875382008-06-21 20:31:50 +00001900static char *text_hole_delete(char *p, char *q) // delete "p" through "q", inclusive
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001901{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001902 char *src, *dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001903 int cnt, hole_size;
1904
1905 // move forwards, from beginning
1906 // assume p <= q
1907 src = q + 1;
1908 dest = p;
1909 if (q < p) { // they are backward- swap them
1910 src = p + 1;
1911 dest = q;
1912 }
1913 hole_size = q - p + 1;
1914 cnt = end - src;
1915 if (src < text || src > end)
1916 goto thd0;
1917 if (dest < text || dest >= end)
1918 goto thd0;
1919 if (src >= end)
1920 goto thd_atend; // just delete the end of the buffer
Denis Vlasenkob1759462008-06-20 20:20:54 +00001921 memmove(dest, src, cnt);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001922 thd_atend:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001923 end = end - hole_size; // adjust the new END
1924 if (dest >= end)
1925 dest = end - 1; // make sure dest in below end-1
1926 if (end <= text)
1927 dest = end = text; // keep pointers valid
Denis Vlasenkob1759462008-06-20 20:20:54 +00001928 file_modified++;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001929 thd0:
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001930 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001931}
1932
1933// copy text into register, then delete text.
1934// if dist <= 0, do not include, or go past, a NewLine
1935//
Denis Vlasenko33875382008-06-21 20:31:50 +00001936static char *yank_delete(char *start, char *stop, int dist, int yf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001937{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001938 char *p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001939
1940 // make sure start <= stop
1941 if (start > stop) {
1942 // they are backwards, reverse them
1943 p = start;
1944 start = stop;
1945 stop = p;
1946 }
1947 if (dist <= 0) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +00001948 // we cannot cross NL boundaries
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001949 p = start;
1950 if (*p == '\n')
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001951 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001952 // dont go past a NewLine
1953 for (; p + 1 <= stop; p++) {
1954 if (p[1] == '\n') {
1955 stop = p; // "stop" just before NewLine
1956 break;
1957 }
1958 }
1959 }
1960 p = start;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001961#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001962 text_yank(start, stop, YDreg);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001963#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001964 if (yf == YANKDEL) {
1965 p = text_hole_delete(start, stop);
1966 } // delete lines
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001967 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001968}
1969
1970static void show_help(void)
1971{
1972 puts("These features are available:"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001973#if ENABLE_FEATURE_VI_SEARCH
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001974 "\n\tPattern searches with / and ?"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001975#endif
1976#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001977 "\n\tLast command repeat with \'.\'"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001978#endif
1979#if ENABLE_FEATURE_VI_YANKMARK
Bernhard Reutner-Fischerd24d5c82007-10-01 18:04:42 +00001980 "\n\tLine marking with 'x"
1981 "\n\tNamed buffers with \"x"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001982#endif
1983#if ENABLE_FEATURE_VI_READONLY
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001984 "\n\tReadonly if vi is called as \"view\""
1985 "\n\tReadonly with -R command line arg"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001986#endif
1987#if ENABLE_FEATURE_VI_SET
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001988 "\n\tSome colon mode commands with \':\'"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001989#endif
1990#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001991 "\n\tSettable options with \":set\""
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001992#endif
1993#if ENABLE_FEATURE_VI_USE_SIGNALS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001994 "\n\tSignal catching- ^C"
1995 "\n\tJob suspend and resume with ^Z"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001996#endif
1997#if ENABLE_FEATURE_VI_WIN_RESIZE
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001998 "\n\tAdapt to window re-sizes"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001999#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002000 );
2001}
2002
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002003#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002004static void start_new_cmd_q(char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002005{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002006 // get buffer for new cmd
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002007 // if there is a current cmd count put it in the buffer first
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002008 if (cmdcnt > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00002009 lmc_len = sprintf(last_modifying_cmd, "%d%c", cmdcnt, c);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002010 } else { // just save char c onto queue
Paul Foxd957b952005-11-28 18:07:53 +00002011 last_modifying_cmd[0] = c;
Paul Foxc51fc7b2008-03-06 01:34:23 +00002012 lmc_len = 1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002013 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002014 adding2q = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002015}
2016
2017static void end_cmd_q(void)
2018{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002019#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002020 YDreg = 26; // go back to default Yank/Delete reg
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002021#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002022 adding2q = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002023}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002024#endif /* FEATURE_VI_DOT_CMD */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002025
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002026#if ENABLE_FEATURE_VI_YANKMARK \
2027 || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) \
2028 || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko33875382008-06-21 20:31:50 +00002029static char *string_insert(char *p, char *s) // insert the string at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002030{
2031 int cnt, i;
2032
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002033 i = strlen(s);
Denis Vlasenko33875382008-06-21 20:31:50 +00002034 text_hole_make(p, i);
2035 strncpy(p, s, i);
2036 for (cnt = 0; *s != '\0'; s++) {
2037 if (*s == '\n')
2038 cnt++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002039 }
Denis Vlasenko33875382008-06-21 20:31:50 +00002040#if ENABLE_FEATURE_VI_YANKMARK
2041 status_line("Put %d lines (%d chars) from [%c]", cnt, i, what_reg());
2042#endif
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002043 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002044}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002045#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002046
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002047#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko33875382008-06-21 20:31:50 +00002048static char *text_yank(char *p, char *q, int dest) // copy text into a register
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002049{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002050 char *t;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002051 int cnt;
2052
2053 if (q < p) { // they are backwards- reverse them
2054 t = q;
2055 q = p;
2056 p = t;
2057 }
2058 cnt = q - p + 1;
2059 t = reg[dest];
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00002060 free(t); // if already a yank register, free it
Denis Vlasenkob95636c2006-12-19 23:36:04 +00002061 t = xmalloc(cnt + 1); // get a new register
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002062 memset(t, '\0', cnt + 1); // clear new text[]
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002063 strncpy(t, p, cnt); // copy text[] into bufer
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002064 reg[dest] = t;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002065 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002066}
2067
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002068static char what_reg(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002069{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002070 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002071
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002072 c = 'D'; // default to D-reg
2073 if (0 <= YDreg && YDreg <= 25)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002074 c = 'a' + (char) YDreg;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002075 if (YDreg == 26)
2076 c = 'D';
2077 if (YDreg == 27)
2078 c = 'U';
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002079 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002080}
2081
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002082static void check_context(char cmd)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002083{
2084 // A context is defined to be "modifying text"
2085 // Any modifying command establishes a new context.
2086
2087 if (dot < context_start || dot > context_end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002088 if (strchr(modifying_cmds, cmd) != NULL) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002089 // we are trying to modify text[]- make this the current context
2090 mark[27] = mark[26]; // move cur to prev
2091 mark[26] = dot; // move local to cur
2092 context_start = prev_line(prev_line(dot));
2093 context_end = next_line(next_line(dot));
2094 //loiter= start_loiter= now;
2095 }
2096 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002097}
2098
Denis Vlasenkof882f082007-12-23 02:36:51 +00002099static char *swap_context(char *p) // goto new context for '' command make this the current context
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002100{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002101 char *tmp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002102
2103 // the current context is in mark[26]
2104 // the previous context is in mark[27]
2105 // only swap context if other context is valid
2106 if (text <= mark[27] && mark[27] <= end - 1) {
2107 tmp = mark[27];
2108 mark[27] = mark[26];
2109 mark[26] = tmp;
2110 p = mark[26]; // where we are going- previous context
2111 context_start = prev_line(prev_line(prev_line(p)));
2112 context_end = next_line(next_line(next_line(p)));
2113 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002114 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002115}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002116#endif /* FEATURE_VI_YANKMARK */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002117
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002118//----- Set terminal attributes --------------------------------
2119static void rawmode(void)
2120{
2121 tcgetattr(0, &term_orig);
2122 term_vi = term_orig;
2123 term_vi.c_lflag &= (~ICANON & ~ECHO); // leave ISIG ON- allow intr's
2124 term_vi.c_iflag &= (~IXON & ~ICRNL);
2125 term_vi.c_oflag &= (~ONLCR);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002126 term_vi.c_cc[VMIN] = 1;
2127 term_vi.c_cc[VTIME] = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002128 erase_char = term_vi.c_cc[VERASE];
2129 tcsetattr(0, TCSANOW, &term_vi);
2130}
2131
2132static void cookmode(void)
2133{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002134 fflush(stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002135 tcsetattr(0, TCSANOW, &term_orig);
2136}
2137
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002138//----- Come here when we get a window resize signal ---------
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002139#if ENABLE_FEATURE_VI_USE_SIGNALS
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002140static void winch_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002141{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002142 // FIXME: do it in main loop!!!
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002143 signal(SIGWINCH, winch_sig);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002144 if (ENABLE_FEATURE_VI_WIN_RESIZE) {
Denis Vlasenko621204b2006-10-27 09:03:24 +00002145 get_terminal_width_height(0, &columns, &rows);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002146 if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS;
2147 if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS;
2148 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002149 new_screen(rows, columns); // get memory for virtual screen
2150 redraw(TRUE); // re-draw the screen
2151}
2152
2153//----- Come here when we get a continue signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002154static void cont_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002155{
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002156 rawmode(); // terminal to "raw"
2157 last_status_cksum = 0; // force status update
2158 redraw(TRUE); // re-draw the screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002159
2160 signal(SIGTSTP, suspend_sig);
2161 signal(SIGCONT, SIG_DFL);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002162 kill(my_pid, SIGCONT); // huh? why? we are already "continued"...
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002163}
2164
2165//----- Come here when we get a Suspend signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002166static void suspend_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002167{
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002168 place_cursor(rows - 1, 0, FALSE); // go to bottom of screen
2169 clear_to_eol(); // erase to end of line
2170 cookmode(); // terminal to "cooked"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002171
2172 signal(SIGCONT, cont_sig);
2173 signal(SIGTSTP, SIG_DFL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002174 kill(my_pid, SIGTSTP);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002175}
2176
2177//----- Come here when we get a signal ---------------------------
2178static void catch_sig(int sig)
2179{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002180 signal(SIGINT, catch_sig);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002181 if (sig)
Paul Fox2724fa92008-03-17 15:28:07 +00002182 siglongjmp(restart, sig);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002183}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002184#endif /* FEATURE_VI_USE_SIGNALS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002185
2186static int mysleep(int hund) // sleep for 'h' 1/100 seconds
2187{
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002188 struct pollfd pfd[1];
Denis Vlasenkocd5c7862007-05-17 16:37:22 +00002189
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002190 pfd[0].fd = 0;
2191 pfd[0].events = POLLIN;
Denis Vlasenko5d61e712007-09-27 10:09:59 +00002192 return safe_poll(pfd, 1, hund*10) > 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002193}
2194
2195//----- IO Routines --------------------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002196static char readit(void) // read (maybe cursor) key from stdin
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002197{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002198 char c;
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002199 int n;
Rob Landley988dd552008-10-14 01:42:33 +00002200
2201 // Known escape sequences for cursor and function keys.
2202 static const struct esc_cmds {
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002203 const char seq[4];
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002204 char val;
Rob Landley988dd552008-10-14 01:42:33 +00002205 } esccmds[] = {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002206 {"OA" , VI_K_UP }, // cursor key Up
2207 {"OB" , VI_K_DOWN }, // cursor key Down
2208 {"OC" , VI_K_RIGHT }, // Cursor Key Right
2209 {"OD" , VI_K_LEFT }, // cursor key Left
2210 {"OH" , VI_K_HOME }, // Cursor Key Home
2211 {"OF" , VI_K_END }, // Cursor Key End
Rob Landley988dd552008-10-14 01:42:33 +00002212 {"OP" , VI_K_FUN1 }, // Function Key F1
2213 {"OQ" , VI_K_FUN2 }, // Function Key F2
2214 {"OR" , VI_K_FUN3 }, // Function Key F3
2215 {"OS" , VI_K_FUN4 }, // Function Key F4
2216
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002217 {"[A" , VI_K_UP }, // cursor key Up
2218 {"[B" , VI_K_DOWN }, // cursor key Down
2219 {"[C" , VI_K_RIGHT }, // Cursor Key Right
2220 {"[D" , VI_K_LEFT }, // cursor key Left
2221 {"[H" , VI_K_HOME }, // Cursor Key Home
2222 {"[F" , VI_K_END }, // Cursor Key End
2223 {"[1~" , VI_K_HOME }, // Cursor Key Home
2224 {"[2~" , VI_K_INSERT }, // Cursor Key Insert
2225 {"[3~" , VI_K_DELETE }, // Cursor Key Delete
2226 {"[4~" , VI_K_END }, // Cursor Key End
2227 {"[5~" , VI_K_PAGEUP }, // Cursor Key Page Up
2228 {"[6~" , VI_K_PAGEDOWN}, // Cursor Key Page Down
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002229 // careful: these have no terminating NUL!
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002230 {"[11~", VI_K_FUN1 }, // Function Key F1
2231 {"[12~", VI_K_FUN2 }, // Function Key F2
2232 {"[13~", VI_K_FUN3 }, // Function Key F3
2233 {"[14~", VI_K_FUN4 }, // Function Key F4
2234 {"[15~", VI_K_FUN5 }, // Function Key F5
2235 {"[17~", VI_K_FUN6 }, // Function Key F6
2236 {"[18~", VI_K_FUN7 }, // Function Key F7
2237 {"[19~", VI_K_FUN8 }, // Function Key F8
2238 {"[20~", VI_K_FUN9 }, // Function Key F9
2239 {"[21~", VI_K_FUN10 }, // Function Key F10
2240 {"[23~", VI_K_FUN11 }, // Function Key F11
2241 {"[24~", VI_K_FUN12 }, // Function Key F12
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002242 };
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002243
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002244 fflush(stdout);
Rob Landley988dd552008-10-14 01:42:33 +00002245
2246 // If no data, block waiting for input.
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002247 n = chars_to_parse;
Rob Landley988dd552008-10-14 01:42:33 +00002248 while (!n) {
2249 n = safe_read(0, readbuffer, 1);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002250 if (n <= 0) {
2251 place_cursor(rows - 1, 0, FALSE); // go to bottom of screen
2252 clear_to_eol(); // erase to end of line
2253 cookmode(); // terminal to "cooked"
2254 bb_error_msg_and_die("can't read user input");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002255 }
Rob Landley988dd552008-10-14 01:42:33 +00002256 // Returning NUL from this routine would be bad.
2257 if (*readbuffer) break;
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002258 }
Rob Landley988dd552008-10-14 01:42:33 +00002259
2260 // Grab character to return from buffer
2261 c = *readbuffer;
2262 n--;
2263 if (n) memmove(readbuffer, readbuffer+1, n);
2264
2265 // If it's an escape sequence, loop through known matches.
2266 if (c == 27) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002267 const struct esc_cmds *eindex;
2268
Rob Landley988dd552008-10-14 01:42:33 +00002269 for (eindex = esccmds; eindex < esccmds+ARRAY_SIZE(esccmds); eindex++) {
2270 int i=0, cnt = strnlen(eindex->seq, 4);
2271
2272 // Loop through chars in this sequence.
2273 for (;;) {
2274
2275 // If we've matched this escape sequence so far but need more
2276 // chars, read another as long as it wouldn't block. (Note that
2277 // escape sequences come in as a unit, so if we would block
2278 // it's not really an escape sequence.)
2279 if (n <= i) {
2280 struct pollfd pfd;
2281 pfd.fd = 0;
2282 pfd.events = POLLIN;
2283 if (0 < safe_poll(&pfd, 1, 0)
2284 && 0 < safe_read(0, readbuffer + n, 1))
2285 n++;
2286
2287 // Since the array is sorted from shortest to longest, if
2288 // we needed more data we can't match anything later, so
2289 // break out of both loops.
2290 else goto loop_out;
2291 }
2292 if (readbuffer[i] != eindex->seq[i]) break;
2293 if (++i == cnt) {
2294 c = eindex->val;
2295 n = 0;
2296 goto loop_out;
2297 }
2298 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002299 }
2300 }
Rob Landley988dd552008-10-14 01:42:33 +00002301loop_out:
2302
2303 chars_to_parse = n;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002304 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002305}
2306
2307//----- IO Routines --------------------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002308static char get_one_char(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002309{
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002310 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002311
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002312#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002313 if (!adding2q) {
2314 // we are not adding to the q.
2315 // but, we may be reading from a q
2316 if (ioq == 0) {
2317 // there is no current q, read from STDIN
2318 c = readit(); // get the users input
2319 } else {
2320 // there is a queue to get chars from first
2321 c = *ioq++;
2322 if (c == '\0') {
2323 // the end of the q, read from STDIN
2324 free(ioq_start);
2325 ioq_start = ioq = 0;
2326 c = readit(); // get the users input
2327 }
2328 }
2329 } else {
2330 // adding STDIN chars to q
2331 c = readit(); // get the users input
Denis Vlasenkob1759462008-06-20 20:20:54 +00002332 if (lmc_len >= MAX_INPUT_LEN - 1) {
2333 status_line_bold("last_modifying_cmd overrun");
2334 } else {
2335 // add new char to q
2336 last_modifying_cmd[lmc_len++] = c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002337 }
2338 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002339#else
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002340 c = readit(); // get the users input
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002341#endif /* FEATURE_VI_DOT_CMD */
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002342 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002343}
2344
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002345// Get input line (uses "status line" area)
2346static char *get_input_line(const char *prompt)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002347{
Denis Vlasenkob1759462008-06-20 20:20:54 +00002348 // char [MAX_INPUT_LEN]
2349#define buf get_input_line__buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002350
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002351 char c;
2352 int i;
2353
2354 strcpy(buf, prompt);
Paul Fox8552aec2005-09-16 12:20:05 +00002355 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002356 place_cursor(rows - 1, 0, FALSE); // go to Status line, bottom of screen
2357 clear_to_eol(); // clear the line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002358 write1(prompt); // write out the :, /, or ? prompt
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002359
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002360 i = strlen(buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002361 while (i < MAX_INPUT_LEN) {
2362 c = get_one_char();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002363 if (c == '\n' || c == '\r' || c == 27)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002364 break; // this is end of input
Paul Foxf2de0b72005-09-13 22:20:37 +00002365 if (c == erase_char || c == 8 || c == 127) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002366 // user wants to erase prev char
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002367 buf[--i] = '\0';
2368 write1("\b \b"); // erase char on screen
2369 if (i <= 0) // user backs up before b-o-l, exit
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002370 break;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002371 } else {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002372 buf[i] = c;
2373 buf[++i] = '\0';
2374 bb_putchar(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002375 }
2376 }
2377 refresh(FALSE);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002378 return buf;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002379#undef buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002380}
2381
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002382static int file_size(const char *fn) // what is the byte size of "fn"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002383{
2384 struct stat st_buf;
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002385 int cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002386
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002387 cnt = -1;
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002388 if (fn && fn[0] && stat(fn, &st_buf) == 0) // see if file exists
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002389 cnt = (int) st_buf.st_size;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002390 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002391}
2392
Denis Vlasenko33875382008-06-21 20:31:50 +00002393static int file_insert(const char *fn, char *p
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002394 USE_FEATURE_VI_READONLY(, int update_ro_status))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002395{
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002396 int cnt = -1;
2397 int fd, size;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002398 struct stat statbuf;
2399
2400 /* Validate file */
2401 if (stat(fn, &statbuf) < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002402 status_line_bold("\"%s\" %s", fn, strerror(errno));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002403 goto fi0;
2404 }
Denis Vlasenko33875382008-06-21 20:31:50 +00002405 if (!S_ISREG(statbuf.st_mode)) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002406 // This is not a regular file
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002407 status_line_bold("\"%s\" Not a regular file", fn);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002408 goto fi0;
2409 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002410 if (p < text || p > end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002411 status_line_bold("Trying to insert file outside of memory");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002412 goto fi0;
2413 }
2414
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002415 // read file to buffer
2416 fd = open(fn, O_RDONLY);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002417 if (fd < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002418 status_line_bold("\"%s\" %s", fn, strerror(errno));
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002419 goto fi0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002420 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002421 size = statbuf.st_size;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002422 p = text_hole_make(p, size);
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002423 cnt = safe_read(fd, p, size);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002424 if (cnt < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002425 status_line_bold("\"%s\" %s", fn, strerror(errno));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002426 p = text_hole_delete(p, p + size - 1); // un-do buffer insert
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002427 } else if (cnt < size) {
2428 // There was a partial read, shrink unused space text[]
2429 p = text_hole_delete(p + cnt, p + (size - cnt) - 1); // un-do buffer insert
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002430 status_line_bold("cannot read all of file \"%s\"", fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002431 }
2432 if (cnt >= size)
Paul Fox8552aec2005-09-16 12:20:05 +00002433 file_modified++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002434 close(fd);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002435 fi0:
Denis Vlasenko856be772007-08-17 08:29:48 +00002436#if ENABLE_FEATURE_VI_READONLY
2437 if (update_ro_status
2438 && ((access(fn, W_OK) < 0) ||
2439 /* root will always have access()
2440 * so we check fileperms too */
2441 !(statbuf.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH))
2442 )
2443 ) {
Denis Vlasenko2f6ae432007-07-19 22:50:47 +00002444 SET_READONLY_FILE(readonly_mode);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002445 }
Denis Vlasenko856be772007-08-17 08:29:48 +00002446#endif
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002447 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002448}
2449
Denis Vlasenko33875382008-06-21 20:31:50 +00002450static int file_write(char *fn, char *first, char *last)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002451{
2452 int fd, cnt, charcnt;
2453
2454 if (fn == 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002455 status_line_bold("No current filename");
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002456 return -2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002457 }
2458 charcnt = 0;
Denis Vlasenko8abae882008-05-03 11:35:59 +00002459 /* By popular request we do not open file with O_TRUNC,
2460 * but instead ftruncate() it _after_ successful write.
2461 * Might reduce amount of data lost on power fail etc.
2462 */
2463 fd = open(fn, (O_WRONLY | O_CREAT), 0666);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002464 if (fd < 0)
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002465 return -1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002466 cnt = last - first + 1;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002467 charcnt = full_write(fd, first, cnt);
Denis Vlasenko8abae882008-05-03 11:35:59 +00002468 ftruncate(fd, charcnt);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002469 if (charcnt == cnt) {
2470 // good write
Denis Vlasenkob1759462008-06-20 20:20:54 +00002471 //file_modified = FALSE;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002472 } else {
2473 charcnt = 0;
2474 }
2475 close(fd);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002476 return charcnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002477}
2478
2479//----- Terminal Drawing ---------------------------------------
2480// The terminal is made up of 'rows' line of 'columns' columns.
Eric Andersenaff114c2004-04-14 17:51:38 +00002481// classically this would be 24 x 80.
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002482// screen coordinates
2483// 0,0 ... 0,79
2484// 1,0 ... 1,79
2485// . ... .
2486// . ... .
2487// 22,0 ... 22,79
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002488// 23,0 ... 23,79 <- status line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002489
2490//----- Move the cursor to row x col (count from 0, not 1) -------
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002491static void place_cursor(int row, int col, int optimize)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002492{
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002493 char cm1[sizeof(CMrc) + sizeof(int)*3 * 2];
Denis Vlasenko7b54dc72008-07-17 21:32:32 +00002494#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
2495 enum {
2496 SZ_UP = sizeof(CMup),
2497 SZ_DN = sizeof(CMdown),
2498 SEQ_SIZE = SZ_UP > SZ_DN ? SZ_UP : SZ_DN,
2499 };
2500 char cm2[SEQ_SIZE * 5 + 32]; // bigger than worst case size
2501#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002502 char *cm;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002503
2504 if (row < 0) row = 0;
2505 if (row >= rows) row = rows - 1;
2506 if (col < 0) col = 0;
2507 if (col >= columns) col = columns - 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002508
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002509 //----- 1. Try the standard terminal ESC sequence
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002510 sprintf(cm1, CMrc, row + 1, col + 1);
2511 cm = cm1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002512
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002513#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002514 if (optimize && col < 16) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002515 char *screenp;
2516 int Rrow = last_row;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002517 int diff = Rrow - row;
2518
2519 if (diff < -5 || diff > 5)
2520 goto skip;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002521
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002522 //----- find the minimum # of chars to move cursor -------------
2523 //----- 2. Try moving with discreet chars (Newline, [back]space, ...)
2524 cm2[0] = '\0';
2525
2526 // move to the correct row
2527 while (row < Rrow) {
2528 // the cursor has to move up
2529 strcat(cm2, CMup);
2530 Rrow--;
2531 }
2532 while (row > Rrow) {
2533 // the cursor has to move down
2534 strcat(cm2, CMdown);
2535 Rrow++;
2536 }
2537
2538 // now move to the correct column
2539 strcat(cm2, "\r"); // start at col 0
2540 // just send out orignal source char to get to correct place
2541 screenp = &screen[row * columns]; // start of screen line
2542 strncat(cm2, screenp, col);
2543
2544 // pick the shortest cursor motion to send out
2545 if (strlen(cm2) < strlen(cm)) {
2546 cm = cm2;
2547 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002548 skip: ;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002549 }
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002550 last_row = row;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002551#endif /* FEATURE_VI_OPTIMIZE_CURSOR */
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002552 write1(cm);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002553}
2554
2555//----- Erase from cursor to end of line -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002556static void clear_to_eol(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002557{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002558 write1(Ceol); // Erase from cursor to end of line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002559}
2560
2561//----- Erase from cursor to end of screen -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002562static void clear_to_eos(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002563{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002564 write1(Ceos); // Erase from cursor to end of screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002565}
2566
2567//----- Start standout mode ------------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002568static void standout_start(void) // send "start reverse video" sequence
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002569{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002570 write1(SOs); // Start reverse video mode
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002571}
2572
2573//----- End standout mode --------------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002574static void standout_end(void) // send "end reverse video" sequence
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002575{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002576 write1(SOn); // End reverse video mode
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002577}
2578
2579//----- Flash the screen --------------------------------------
2580static void flash(int h)
2581{
2582 standout_start(); // send "start reverse video" sequence
2583 redraw(TRUE);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002584 mysleep(h);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002585 standout_end(); // send "end reverse video" sequence
2586 redraw(TRUE);
2587}
2588
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002589static void Indicate_Error(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002590{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002591#if ENABLE_FEATURE_VI_CRASHME
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002592 if (crashme > 0)
2593 return; // generate a random command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002594#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002595 if (!err_method) {
2596 write1(bell); // send out a bell character
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002597 } else {
2598 flash(10);
2599 }
2600}
2601
2602//----- Screen[] Routines --------------------------------------
2603//----- Erase the Screen[] memory ------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002604static void screen_erase(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002605{
2606 memset(screen, ' ', screensize); // clear new screen
2607}
2608
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002609static int bufsum(char *buf, int count)
Paul Fox8552aec2005-09-16 12:20:05 +00002610{
2611 int sum = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002612 char *e = buf + count;
2613
Paul Fox8552aec2005-09-16 12:20:05 +00002614 while (buf < e)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002615 sum += (unsigned char) *buf++;
Paul Fox8552aec2005-09-16 12:20:05 +00002616 return sum;
2617}
2618
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002619//----- Draw the status line at bottom of the screen -------------
2620static void show_status_line(void)
2621{
Paul Foxc3504852005-09-16 12:48:18 +00002622 int cnt = 0, cksum = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002623
Paul Fox8552aec2005-09-16 12:20:05 +00002624 // either we already have an error or status message, or we
2625 // create one.
2626 if (!have_status_msg) {
2627 cnt = format_edit_status();
2628 cksum = bufsum(status_buffer, cnt);
2629 }
2630 if (have_status_msg || ((cnt > 0 && last_status_cksum != cksum))) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002631 last_status_cksum = cksum; // remember if we have seen this line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002632 place_cursor(rows - 1, 0, FALSE); // put cursor on status line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002633 write1(status_buffer);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002634 clear_to_eol();
Paul Fox8552aec2005-09-16 12:20:05 +00002635 if (have_status_msg) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002636 if (((int)strlen(status_buffer) - (have_status_msg - 1)) >
Paul Fox8552aec2005-09-16 12:20:05 +00002637 (columns - 1) ) {
2638 have_status_msg = 0;
2639 Hit_Return();
2640 }
2641 have_status_msg = 0;
2642 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002643 place_cursor(crow, ccol, FALSE); // put cursor back in correct place
2644 }
Eric Andersena9eb33d2004-08-19 19:15:06 +00002645 fflush(stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002646}
2647
2648//----- format the status buffer, the bottom line of screen ------
Paul Fox8552aec2005-09-16 12:20:05 +00002649// format status buffer, with STANDOUT mode
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002650static void status_line_bold(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002651{
2652 va_list args;
2653
2654 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002655 strcpy(status_buffer, SOs); // Terminal standout mode on
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002656 vsprintf(status_buffer + sizeof(SOs)-1, format, args);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002657 strcat(status_buffer, SOn); // Terminal standout mode off
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002658 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00002659
2660 have_status_msg = 1 + sizeof(SOs) + sizeof(SOn) - 2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002661}
2662
Paul Fox8552aec2005-09-16 12:20:05 +00002663// format status buffer
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002664static void status_line(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002665{
2666 va_list args;
2667
2668 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002669 vsprintf(status_buffer, format, args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002670 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00002671
2672 have_status_msg = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002673}
2674
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002675// copy s to buf, convert unprintable
2676static void print_literal(char *buf, const char *s)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002677{
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002678 unsigned char c;
2679 char b[2];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002680
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002681 b[1] = '\0';
2682 buf[0] = '\0';
2683 if (!s[0])
2684 s = "(NULL)";
2685 for (; *s; s++) {
2686 int c_is_no_print;
2687
2688 c = *s;
2689 c_is_no_print = (c & 0x80) && !Isprint(c);
2690 if (c_is_no_print) {
2691 strcat(buf, SOn);
2692 c = '.';
2693 }
2694 if (c < ' ' || c == 127) {
2695 strcat(buf, "^");
2696 if (c == 127)
2697 c = '?';
2698 else
2699 c += '@';
2700 }
2701 b[0] = c;
2702 strcat(buf, b);
2703 if (c_is_no_print)
2704 strcat(buf, SOs);
2705 if (*s == '\n')
2706 strcat(buf, "$");
2707 if (strlen(buf) > MAX_INPUT_LEN - 10) // paranoia
2708 break;
2709 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002710}
2711
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002712static void not_implemented(const char *s)
2713{
2714 char buf[MAX_INPUT_LEN];
2715
2716 print_literal(buf, s);
2717 status_line_bold("\'%s\' is not implemented", buf);
2718}
2719
2720// show file status on status line
2721static int format_edit_status(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002722{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00002723 static const char cmd_mode_indicator[] ALIGN1 = "-IR-";
Denis Vlasenkob1759462008-06-20 20:20:54 +00002724
2725#define tot format_edit_status__tot
2726
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002727 int cur, percent, ret, trunc_at;
2728
Paul Fox8552aec2005-09-16 12:20:05 +00002729 // file_modified is now a counter rather than a flag. this
2730 // helps reduce the amount of line counting we need to do.
2731 // (this will cause a mis-reporting of modified status
2732 // once every MAXINT editing operations.)
2733
2734 // it would be nice to do a similar optimization here -- if
2735 // we haven't done a motion that could have changed which line
2736 // we're on, then we shouldn't have to do this count_lines()
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002737 cur = count_lines(text, dot);
Paul Fox8552aec2005-09-16 12:20:05 +00002738
2739 // reduce counting -- the total lines can't have
2740 // changed if we haven't done any edits.
2741 if (file_modified != last_file_modified) {
2742 tot = cur + count_lines(dot, end - 1) - 1;
2743 last_file_modified = file_modified;
2744 }
2745
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002746 // current line percent
2747 // ------------- ~~ ----------
2748 // total lines 100
2749 if (tot > 0) {
2750 percent = (100 * cur) / tot;
2751 } else {
2752 cur = tot = 0;
2753 percent = 100;
2754 }
Eric Andersen0ef24c62005-07-18 10:32:59 +00002755
Paul Fox8552aec2005-09-16 12:20:05 +00002756 trunc_at = columns < STATUS_BUFFER_LEN-1 ?
2757 columns : STATUS_BUFFER_LEN-1;
2758
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002759 ret = snprintf(status_buffer, trunc_at+1,
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002760#if ENABLE_FEATURE_VI_READONLY
Paul Fox8552aec2005-09-16 12:20:05 +00002761 "%c %s%s%s %d/%d %d%%",
2762#else
2763 "%c %s%s %d/%d %d%%",
2764#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002765 cmd_mode_indicator[cmd_mode & 3],
2766 (current_filename != NULL ? current_filename : "No file"),
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002767#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002768 (readonly_mode ? " [Readonly]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00002769#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002770 (file_modified ? " [Modified]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00002771 cur, tot, percent);
2772
2773 if (ret >= 0 && ret < trunc_at)
2774 return ret; /* it all fit */
2775
2776 return trunc_at; /* had to truncate */
Denis Vlasenkob1759462008-06-20 20:20:54 +00002777#undef tot
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002778}
2779
2780//----- Force refresh of all Lines -----------------------------
2781static void redraw(int full_screen)
2782{
2783 place_cursor(0, 0, FALSE); // put cursor in correct place
Denis Vlasenkob1759462008-06-20 20:20:54 +00002784 clear_to_eos(); // tell terminal to erase display
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002785 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00002786 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002787 refresh(full_screen); // this will redraw the entire display
Paul Fox8552aec2005-09-16 12:20:05 +00002788 show_status_line();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002789}
2790
2791//----- Format a text[] line into a buffer ---------------------
Denis Vlasenko68404f12008-03-17 09:00:54 +00002792static char* format_line(char *src /*, int li*/)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002793{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002794 unsigned char c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002795 int co;
2796 int ofs = offset;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002797 char *dest = scr_out_buf; // [MAX_SCR_COLS + MAX_TABSTOP * 2]
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002798
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002799 c = '~'; // char in col 0 in non-existent lines is '~'
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002800 co = 0;
2801 while (co < columns + tabstop) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002802 // have we gone past the end?
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002803 if (src < end) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002804 c = *src++;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002805 if (c == '\n')
2806 break;
2807 if ((c & 0x80) && !Isprint(c)) {
2808 c = '.';
2809 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002810 if (c < ' ' || c == 0x7f) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002811 if (c == '\t') {
2812 c = ' ';
2813 // co % 8 != 7
2814 while ((co % tabstop) != (tabstop - 1)) {
2815 dest[co++] = c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002816 }
2817 } else {
2818 dest[co++] = '^';
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002819 if (c == 0x7f)
2820 c = '?';
2821 else
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002822 c += '@'; // Ctrl-X -> 'X'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002823 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002824 }
2825 }
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002826 dest[co++] = c;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002827 // discard scrolled-off-to-the-left portion,
2828 // in tabstop-sized pieces
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002829 if (ofs >= tabstop && co >= tabstop) {
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002830 memmove(dest, dest + tabstop, co);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002831 co -= tabstop;
2832 ofs -= tabstop;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002833 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002834 if (src >= end)
2835 break;
2836 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002837 // check "short line, gigantic offset" case
2838 if (co < ofs)
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002839 ofs = co;
2840 // discard last scrolled off part
2841 co -= ofs;
2842 dest += ofs;
2843 // fill the rest with spaces
2844 if (co < columns)
2845 memset(&dest[co], ' ', columns - co);
2846 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002847}
2848
2849//----- Refresh the changed screen lines -----------------------
2850// Copy the source line from text[] into the buffer and note
2851// if the current screenline is different from the new buffer.
2852// If they differ then that line needs redrawing on the terminal.
2853//
2854static void refresh(int full_screen)
2855{
Denis Vlasenkob1759462008-06-20 20:20:54 +00002856#define old_offset refresh__old_offset
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002857
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002858 int li, changed;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002859 char *tp, *sp; // pointer into text[] and screen[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002860
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002861 if (ENABLE_FEATURE_VI_WIN_RESIZE) {
Denis Vlasenko55995022008-05-18 22:28:26 +00002862 unsigned c = columns, r = rows;
Rob Landleye5e1a102006-06-21 01:15:36 +00002863 get_terminal_width_height(0, &columns, &rows);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002864 if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS;
2865 if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS;
2866 full_screen |= (c - columns) | (r - rows);
2867 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002868 sync_cursor(dot, &crow, &ccol); // where cursor will be (on "dot")
2869 tp = screenbegin; // index into text[] of top line
2870
2871 // compare text[] to screen[] and mark screen[] lines that need updating
2872 for (li = 0; li < rows - 1; li++) {
2873 int cs, ce; // column start & end
Denis Vlasenkof882f082007-12-23 02:36:51 +00002874 char *out_buf;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002875 // format current text line
Denis Vlasenko68404f12008-03-17 09:00:54 +00002876 out_buf = format_line(tp /*, li*/);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002877
2878 // skip to the end of the current text[] line
Denis Vlasenkof882f082007-12-23 02:36:51 +00002879 if (tp < end) {
2880 char *t = memchr(tp, '\n', end - tp);
2881 if (!t) t = end - 1;
2882 tp = t + 1;
2883 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002884
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002885 // see if there are any changes between vitual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002886 changed = FALSE; // assume no change
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002887 cs = 0;
2888 ce = columns - 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002889 sp = &screen[li * columns]; // start of screen line
2890 if (full_screen) {
2891 // force re-draw of every single column from 0 - columns-1
2892 goto re0;
2893 }
2894 // compare newly formatted buffer with virtual screen
2895 // look forward for first difference between buf and screen
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002896 for (; cs <= ce; cs++) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002897 if (out_buf[cs] != sp[cs]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002898 changed = TRUE; // mark for redraw
2899 break;
2900 }
2901 }
2902
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002903 // look backward for last difference between out_buf and screen
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002904 for (; ce >= cs; ce--) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002905 if (out_buf[ce] != sp[ce]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002906 changed = TRUE; // mark for redraw
2907 break;
2908 }
2909 }
2910 // now, cs is index of first diff, and ce is index of last diff
2911
2912 // if horz offset has changed, force a redraw
2913 if (offset != old_offset) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002914 re0:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002915 changed = TRUE;
2916 }
2917
2918 // make a sanity check of columns indexes
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002919 if (cs < 0) cs = 0;
2920 if (ce > columns - 1) ce = columns - 1;
2921 if (cs > ce) { cs = 0; ce = columns - 1; }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002922 // is there a change between vitual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002923 if (changed) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002924 // copy changed part of buffer to virtual screen
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002925 memcpy(sp+cs, out_buf+cs, ce-cs+1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002926
2927 // move cursor to column of first change
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002928 //if (offset != old_offset) {
2929 // // place_cursor is still too stupid
2930 // // to handle offsets correctly
2931 // place_cursor(li, cs, FALSE);
2932 //} else {
2933 place_cursor(li, cs, TRUE);
2934 //}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002935
2936 // write line out to terminal
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002937 fwrite(&sp[cs], ce - cs + 1, 1, stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002938 }
2939 }
2940
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002941 place_cursor(crow, ccol, TRUE);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002942
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002943 old_offset = offset;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002944#undef old_offset
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002945}
2946
Eric Andersen3f980402001-04-04 17:31:15 +00002947//---------------------------------------------------------------------
2948//----- the Ascii Chart -----------------------------------------------
2949//
2950// 00 nul 01 soh 02 stx 03 etx 04 eot 05 enq 06 ack 07 bel
2951// 08 bs 09 ht 0a nl 0b vt 0c np 0d cr 0e so 0f si
2952// 10 dle 11 dc1 12 dc2 13 dc3 14 dc4 15 nak 16 syn 17 etb
2953// 18 can 19 em 1a sub 1b esc 1c fs 1d gs 1e rs 1f us
2954// 20 sp 21 ! 22 " 23 # 24 $ 25 % 26 & 27 '
2955// 28 ( 29 ) 2a * 2b + 2c , 2d - 2e . 2f /
2956// 30 0 31 1 32 2 33 3 34 4 35 5 36 6 37 7
2957// 38 8 39 9 3a : 3b ; 3c < 3d = 3e > 3f ?
2958// 40 @ 41 A 42 B 43 C 44 D 45 E 46 F 47 G
2959// 48 H 49 I 4a J 4b K 4c L 4d M 4e N 4f O
2960// 50 P 51 Q 52 R 53 S 54 T 55 U 56 V 57 W
2961// 58 X 59 Y 5a Z 5b [ 5c \ 5d ] 5e ^ 5f _
2962// 60 ` 61 a 62 b 63 c 64 d 65 e 66 f 67 g
2963// 68 h 69 i 6a j 6b k 6c l 6d m 6e n 6f o
2964// 70 p 71 q 72 r 73 s 74 t 75 u 76 v 77 w
2965// 78 x 79 y 7a z 7b { 7c | 7d } 7e ~ 7f del
2966//---------------------------------------------------------------------
2967
2968//----- Execute a Vi Command -----------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002969static void do_cmd(char c)
Eric Andersen3f980402001-04-04 17:31:15 +00002970{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002971 const char *msg = msg; // for compiler
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002972 char c1, *p, *q, *save_dot;
2973 char buf[12];
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002974 int dir = dir; // for compiler
Paul Foxc51fc7b2008-03-06 01:34:23 +00002975 int cnt, i, j;
Eric Andersen3f980402001-04-04 17:31:15 +00002976
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002977// c1 = c; // quiet the compiler
2978// cnt = yf = 0; // quiet the compiler
2979// msg = p = q = save_dot = buf; // quiet the compiler
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002980 memset(buf, '\0', 12);
Eric Andersenbff7a602001-11-17 07:15:43 +00002981
Paul Fox8552aec2005-09-16 12:20:05 +00002982 show_status_line();
2983
Eric Andersenbff7a602001-11-17 07:15:43 +00002984 /* if this is a cursor key, skip these checks */
2985 switch (c) {
2986 case VI_K_UP:
2987 case VI_K_DOWN:
2988 case VI_K_LEFT:
2989 case VI_K_RIGHT:
2990 case VI_K_HOME:
2991 case VI_K_END:
2992 case VI_K_PAGEUP:
2993 case VI_K_PAGEDOWN:
2994 goto key_cmd_mode;
2995 }
2996
Eric Andersen3f980402001-04-04 17:31:15 +00002997 if (cmd_mode == 2) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002998 // flip-flop Insert/Replace mode
Denis Vlasenko2a51af22007-03-21 22:31:24 +00002999 if (c == VI_K_INSERT)
3000 goto dc_i;
Eric Andersen3f980402001-04-04 17:31:15 +00003001 // we are 'R'eplacing the current *dot with new char
3002 if (*dot == '\n') {
3003 // don't Replace past E-o-l
3004 cmd_mode = 1; // convert to insert
3005 } else {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003006 if (1 <= c || Isprint(c)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003007 if (c != 27)
3008 dot = yank_delete(dot, dot, 0, YANKDEL); // delete char
3009 dot = char_insert(dot, c); // insert new char
3010 }
3011 goto dc1;
3012 }
3013 }
3014 if (cmd_mode == 1) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003015 // hitting "Insert" twice means "R" replace mode
3016 if (c == VI_K_INSERT) goto dc5;
Eric Andersen3f980402001-04-04 17:31:15 +00003017 // insert the char c at "dot"
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003018 if (1 <= c || Isprint(c)) {
3019 dot = char_insert(dot, c);
Eric Andersen3f980402001-04-04 17:31:15 +00003020 }
3021 goto dc1;
3022 }
3023
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003024 key_cmd_mode:
Eric Andersen3f980402001-04-04 17:31:15 +00003025 switch (c) {
Eric Andersen822c3832001-05-07 17:37:43 +00003026 //case 0x01: // soh
3027 //case 0x09: // ht
3028 //case 0x0b: // vt
3029 //case 0x0e: // so
3030 //case 0x0f: // si
3031 //case 0x10: // dle
3032 //case 0x11: // dc1
3033 //case 0x13: // dc3
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003034#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen1c0d3112001-04-16 15:46:44 +00003035 case 0x14: // dc4 ctrl-T
Eric Andersen3f980402001-04-04 17:31:15 +00003036 crashme = (crashme == 0) ? 1 : 0;
Eric Andersen3f980402001-04-04 17:31:15 +00003037 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003038#endif
Eric Andersen822c3832001-05-07 17:37:43 +00003039 //case 0x16: // syn
3040 //case 0x17: // etb
3041 //case 0x18: // can
3042 //case 0x1c: // fs
3043 //case 0x1d: // gs
3044 //case 0x1e: // rs
3045 //case 0x1f: // us
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003046 //case '!': // !-
3047 //case '#': // #-
3048 //case '&': // &-
3049 //case '(': // (-
3050 //case ')': // )-
3051 //case '*': // *-
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003052 //case '=': // =-
3053 //case '@': // @-
3054 //case 'F': // F-
3055 //case 'K': // K-
3056 //case 'Q': // Q-
3057 //case 'S': // S-
3058 //case 'T': // T-
3059 //case 'V': // V-
3060 //case '[': // [-
3061 //case '\\': // \-
3062 //case ']': // ]-
3063 //case '_': // _-
3064 //case '`': // `-
Eric Andersen1c0d3112001-04-16 15:46:44 +00003065 //case 'u': // u- FIXME- there is no undo
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003066 //case 'v': // v-
Eric Andersen3f980402001-04-04 17:31:15 +00003067 default: // unrecognised command
3068 buf[0] = c;
3069 buf[1] = '\0';
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003070 if (c < ' ') {
Eric Andersen3f980402001-04-04 17:31:15 +00003071 buf[0] = '^';
3072 buf[1] = c + '@';
3073 buf[2] = '\0';
3074 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003075 not_implemented(buf);
Eric Andersen3f980402001-04-04 17:31:15 +00003076 end_cmd_q(); // stop adding to q
3077 case 0x00: // nul- ignore
3078 break;
3079 case 2: // ctrl-B scroll up full screen
3080 case VI_K_PAGEUP: // Cursor Key Page Up
3081 dot_scroll(rows - 2, -1);
3082 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003083 case 4: // ctrl-D scroll down half screen
3084 dot_scroll((rows - 2) / 2, 1);
3085 break;
3086 case 5: // ctrl-E scroll down one line
3087 dot_scroll(1, 1);
3088 break;
3089 case 6: // ctrl-F scroll down full screen
3090 case VI_K_PAGEDOWN: // Cursor Key Page Down
3091 dot_scroll(rows - 2, 1);
3092 break;
3093 case 7: // ctrl-G show current status
Paul Fox8552aec2005-09-16 12:20:05 +00003094 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003095 break;
3096 case 'h': // h- move left
3097 case VI_K_LEFT: // cursor key Left
Paul Foxd13b90b2005-07-18 22:17:25 +00003098 case 8: // ctrl-H- move left (This may be ERASE char)
Denis Vlasenko2a51af22007-03-21 22:31:24 +00003099 case 0x7f: // DEL- move left (This may be ERASE char)
Eric Andersen3f980402001-04-04 17:31:15 +00003100 if (cmdcnt-- > 1) {
3101 do_cmd(c);
3102 } // repeat cnt
3103 dot_left();
3104 break;
3105 case 10: // Newline ^J
3106 case 'j': // j- goto next line, same col
3107 case VI_K_DOWN: // cursor key Down
3108 if (cmdcnt-- > 1) {
3109 do_cmd(c);
3110 } // repeat cnt
3111 dot_next(); // go to next B-o-l
3112 dot = move_to_col(dot, ccol + offset); // try stay in same col
3113 break;
3114 case 12: // ctrl-L force redraw whole screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003115 case 18: // ctrl-R force redraw
Eric Andersen822c3832001-05-07 17:37:43 +00003116 place_cursor(0, 0, FALSE); // put cursor in correct place
Eric Andersen3f980402001-04-04 17:31:15 +00003117 clear_to_eos(); // tel terminal to erase display
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003118 mysleep(10);
Eric Andersen3f980402001-04-04 17:31:15 +00003119 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00003120 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003121 refresh(TRUE); // this will redraw the entire display
3122 break;
3123 case 13: // Carriage Return ^M
3124 case '+': // +- goto next line
3125 if (cmdcnt-- > 1) {
3126 do_cmd(c);
3127 } // repeat cnt
3128 dot_next();
3129 dot_skip_over_ws();
3130 break;
3131 case 21: // ctrl-U scroll up half screen
3132 dot_scroll((rows - 2) / 2, -1);
3133 break;
3134 case 25: // ctrl-Y scroll up one line
3135 dot_scroll(1, -1);
3136 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003137 case 27: // esc
Eric Andersen3f980402001-04-04 17:31:15 +00003138 if (cmd_mode == 0)
3139 indicate_error(c);
3140 cmd_mode = 0; // stop insrting
3141 end_cmd_q();
Paul Fox8552aec2005-09-16 12:20:05 +00003142 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003143 break;
3144 case ' ': // move right
3145 case 'l': // move right
3146 case VI_K_RIGHT: // Cursor Key Right
3147 if (cmdcnt-- > 1) {
3148 do_cmd(c);
3149 } // repeat cnt
3150 dot_right();
3151 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003152#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003153 case '"': // "- name a register to use for Delete/Yank
3154 c1 = get_one_char();
3155 c1 = tolower(c1);
3156 if (islower(c1)) {
3157 YDreg = c1 - 'a';
3158 } else {
3159 indicate_error(c);
3160 }
3161 break;
3162 case '\'': // '- goto a specific mark
3163 c1 = get_one_char();
3164 c1 = tolower(c1);
3165 if (islower(c1)) {
3166 c1 = c1 - 'a';
3167 // get the b-o-l
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003168 q = mark[(unsigned char) c1];
Eric Andersen3f980402001-04-04 17:31:15 +00003169 if (text <= q && q < end) {
3170 dot = q;
3171 dot_begin(); // go to B-o-l
3172 dot_skip_over_ws();
3173 }
3174 } else if (c1 == '\'') { // goto previous context
3175 dot = swap_context(dot); // swap current and previous context
3176 dot_begin(); // go to B-o-l
3177 dot_skip_over_ws();
3178 } else {
3179 indicate_error(c);
3180 }
3181 break;
3182 case 'm': // m- Mark a line
3183 // this is really stupid. If there are any inserts or deletes
3184 // between text[0] and dot then this mark will not point to the
3185 // correct location! It could be off by many lines!
3186 // Well..., at least its quick and dirty.
3187 c1 = get_one_char();
3188 c1 = tolower(c1);
3189 if (islower(c1)) {
3190 c1 = c1 - 'a';
3191 // remember the line
3192 mark[(int) c1] = dot;
3193 } else {
3194 indicate_error(c);
3195 }
3196 break;
3197 case 'P': // P- Put register before
3198 case 'p': // p- put register after
3199 p = reg[YDreg];
3200 if (p == 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003201 status_line_bold("Nothing in register %c", what_reg());
Eric Andersen3f980402001-04-04 17:31:15 +00003202 break;
3203 }
3204 // are we putting whole lines or strings
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003205 if (strchr(p, '\n') != NULL) {
Eric Andersen3f980402001-04-04 17:31:15 +00003206 if (c == 'P') {
3207 dot_begin(); // putting lines- Put above
3208 }
3209 if (c == 'p') {
3210 // are we putting after very last line?
3211 if (end_line(dot) == (end - 1)) {
3212 dot = end; // force dot to end of text[]
3213 } else {
3214 dot_next(); // next line, then put before
3215 }
3216 }
3217 } else {
3218 if (c == 'p')
3219 dot_right(); // move to right, can move to NL
3220 }
3221 dot = string_insert(dot, p); // insert the string
3222 end_cmd_q(); // stop adding to q
3223 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003224 case 'U': // U- Undo; replace current line with original version
3225 if (reg[Ureg] != 0) {
3226 p = begin_line(dot);
3227 q = end_line(dot);
3228 p = text_hole_delete(p, q); // delete cur line
3229 p = string_insert(p, reg[Ureg]); // insert orig line
3230 dot = p;
3231 dot_skip_over_ws();
3232 }
3233 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003234#endif /* FEATURE_VI_YANKMARK */
Eric Andersen3f980402001-04-04 17:31:15 +00003235 case '$': // $- goto end of line
3236 case VI_K_END: // Cursor Key End
3237 if (cmdcnt-- > 1) {
3238 do_cmd(c);
3239 } // repeat cnt
Glenn L McGrathee829062004-01-21 10:59:45 +00003240 dot = end_line(dot);
Eric Andersen3f980402001-04-04 17:31:15 +00003241 break;
3242 case '%': // %- find matching char of pair () [] {}
3243 for (q = dot; q < end && *q != '\n'; q++) {
3244 if (strchr("()[]{}", *q) != NULL) {
3245 // we found half of a pair
3246 p = find_pair(q, *q);
3247 if (p == NULL) {
3248 indicate_error(c);
3249 } else {
3250 dot = p;
3251 }
3252 break;
3253 }
3254 }
3255 if (*q == '\n')
3256 indicate_error(c);
3257 break;
3258 case 'f': // f- forward to a user specified char
3259 last_forward_char = get_one_char(); // get the search char
3260 //
Eric Andersenaff114c2004-04-14 17:51:38 +00003261 // dont separate these two commands. 'f' depends on ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003262 //
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003263 //**** fall through to ... ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003264 case ';': // ;- look at rest of line for last forward char
3265 if (cmdcnt-- > 1) {
Eric Andersen822c3832001-05-07 17:37:43 +00003266 do_cmd(';');
Eric Andersen3f980402001-04-04 17:31:15 +00003267 } // repeat cnt
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003268 if (last_forward_char == 0)
3269 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003270 q = dot + 1;
3271 while (q < end - 1 && *q != '\n' && *q != last_forward_char) {
3272 q++;
3273 }
3274 if (*q == last_forward_char)
3275 dot = q;
3276 break;
Paul Foxb5ee8db2008-02-14 01:17:01 +00003277 case ',': // repeat latest 'f' in opposite direction
3278 if (cmdcnt-- > 1) {
3279 do_cmd(',');
3280 } // repeat cnt
3281 if (last_forward_char == 0)
3282 break;
3283 q = dot - 1;
3284 while (q >= text && *q != '\n' && *q != last_forward_char) {
3285 q--;
3286 }
3287 if (q >= text && *q == last_forward_char)
3288 dot = q;
3289 break;
3290
Eric Andersen3f980402001-04-04 17:31:15 +00003291 case '-': // -- goto prev line
3292 if (cmdcnt-- > 1) {
3293 do_cmd(c);
3294 } // repeat cnt
3295 dot_prev();
3296 dot_skip_over_ws();
3297 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003298#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003299 case '.': // .- repeat the last modifying command
3300 // Stuff the last_modifying_cmd back into stdin
3301 // and let it be re-executed.
Denis Vlasenkob1759462008-06-20 20:20:54 +00003302 if (lmc_len > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00003303 last_modifying_cmd[lmc_len] = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003304 ioq = ioq_start = xstrdup(last_modifying_cmd);
Eric Andersen3f980402001-04-04 17:31:15 +00003305 }
3306 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003307#endif
3308#if ENABLE_FEATURE_VI_SEARCH
Eric Andersen3f980402001-04-04 17:31:15 +00003309 case '?': // /- search for a pattern
3310 case '/': // /- search for a pattern
3311 buf[0] = c;
3312 buf[1] = '\0';
3313 q = get_input_line(buf); // get input line- use "status line"
Paul Fox4917c112008-03-05 16:44:02 +00003314 if (q[0] && !q[1]) {
3315 if (last_search_pattern[0])
3316 last_search_pattern[0] = c;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003317 goto dc3; // if no pat re-use old pat
Paul Fox4917c112008-03-05 16:44:02 +00003318 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003319 if (q[0]) { // strlen(q) > 1: new pat- save it and find
Eric Andersen3f980402001-04-04 17:31:15 +00003320 // there is a new pat
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00003321 free(last_search_pattern);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003322 last_search_pattern = xstrdup(q);
Eric Andersen3f980402001-04-04 17:31:15 +00003323 goto dc3; // now find the pattern
3324 }
3325 // user changed mind and erased the "/"- do nothing
3326 break;
3327 case 'N': // N- backward search for last pattern
3328 if (cmdcnt-- > 1) {
3329 do_cmd(c);
3330 } // repeat cnt
3331 dir = BACK; // assume BACKWARD search
3332 p = dot - 1;
3333 if (last_search_pattern[0] == '?') {
3334 dir = FORWARD;
3335 p = dot + 1;
3336 }
3337 goto dc4; // now search for pattern
3338 break;
3339 case 'n': // n- repeat search for last pattern
3340 // search rest of text[] starting at next char
3341 // if search fails return orignal "p" not the "p+1" address
3342 if (cmdcnt-- > 1) {
3343 do_cmd(c);
3344 } // repeat cnt
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003345 dc3:
Eric Andersen3f980402001-04-04 17:31:15 +00003346 if (last_search_pattern == 0) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003347 msg = "No previous regular expression";
Eric Andersen3f980402001-04-04 17:31:15 +00003348 goto dc2;
3349 }
3350 if (last_search_pattern[0] == '/') {
3351 dir = FORWARD; // assume FORWARD search
3352 p = dot + 1;
3353 }
3354 if (last_search_pattern[0] == '?') {
3355 dir = BACK;
3356 p = dot - 1;
3357 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003358 dc4:
Eric Andersen3f980402001-04-04 17:31:15 +00003359 q = char_search(p, last_search_pattern + 1, dir, FULL);
3360 if (q != NULL) {
3361 dot = q; // good search, update "dot"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003362 msg = "";
Eric Andersen3f980402001-04-04 17:31:15 +00003363 goto dc2;
3364 }
3365 // no pattern found between "dot" and "end"- continue at top
3366 p = text;
3367 if (dir == BACK) {
3368 p = end - 1;
3369 }
3370 q = char_search(p, last_search_pattern + 1, dir, FULL);
3371 if (q != NULL) { // found something
3372 dot = q; // found new pattern- goto it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003373 msg = "search hit BOTTOM, continuing at TOP";
Eric Andersen3f980402001-04-04 17:31:15 +00003374 if (dir == BACK) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003375 msg = "search hit TOP, continuing at BOTTOM";
Eric Andersen3f980402001-04-04 17:31:15 +00003376 }
3377 } else {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003378 msg = "Pattern not found";
Eric Andersen3f980402001-04-04 17:31:15 +00003379 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003380 dc2:
3381 if (*msg)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003382 status_line_bold("%s", msg);
Eric Andersen3f980402001-04-04 17:31:15 +00003383 break;
3384 case '{': // {- move backward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003385 q = char_search(dot, "\n\n", BACK, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003386 if (q != NULL) { // found blank line
3387 dot = next_line(q); // move to next blank line
3388 }
3389 break;
3390 case '}': // }- move forward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003391 q = char_search(dot, "\n\n", FORWARD, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003392 if (q != NULL) { // found blank line
3393 dot = next_line(q); // move to next blank line
3394 }
3395 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003396#endif /* FEATURE_VI_SEARCH */
Eric Andersen3f980402001-04-04 17:31:15 +00003397 case '0': // 0- goto begining of line
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003398 case '1': // 1-
3399 case '2': // 2-
3400 case '3': // 3-
3401 case '4': // 4-
3402 case '5': // 5-
3403 case '6': // 6-
3404 case '7': // 7-
3405 case '8': // 8-
3406 case '9': // 9-
Eric Andersen3f980402001-04-04 17:31:15 +00003407 if (c == '0' && cmdcnt < 1) {
3408 dot_begin(); // this was a standalone zero
3409 } else {
3410 cmdcnt = cmdcnt * 10 + (c - '0'); // this 0 is part of a number
3411 }
3412 break;
3413 case ':': // :- the colon mode commands
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003414 p = get_input_line(":"); // get input line- use "status line"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003415#if ENABLE_FEATURE_VI_COLON
Eric Andersen3f980402001-04-04 17:31:15 +00003416 colon(p); // execute the command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003417#else
Eric Andersen822c3832001-05-07 17:37:43 +00003418 if (*p == ':')
3419 p++; // move past the ':'
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003420 cnt = strlen(p);
Eric Andersen822c3832001-05-07 17:37:43 +00003421 if (cnt <= 0)
3422 break;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003423 if (strncasecmp(p, "quit", cnt) == 0
3424 || strncasecmp(p, "q!", cnt) == 0 // delete lines
3425 ) {
Matt Kraai1f0c4362001-12-20 23:13:26 +00003426 if (file_modified && p[1] != '!') {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003427 status_line_bold("No write since last change (:quit! overrides)");
Eric Andersen3f980402001-04-04 17:31:15 +00003428 } else {
3429 editing = 0;
3430 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003431 } else if (strncasecmp(p, "write", cnt) == 0
3432 || strncasecmp(p, "wq", cnt) == 0
3433 || strncasecmp(p, "wn", cnt) == 0
3434 || strncasecmp(p, "x", cnt) == 0
3435 ) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003436 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00003437 if (cnt < 0) {
3438 if (cnt == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003439 status_line_bold("Write error: %s", strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00003440 } else {
3441 file_modified = 0;
3442 last_file_modified = -1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003443 status_line("\"%s\" %dL, %dC", current_filename, count_lines(text, end - 1), cnt);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003444 if (p[0] == 'x' || p[1] == 'q' || p[1] == 'n'
3445 || p[0] == 'X' || p[1] == 'Q' || p[1] == 'N'
3446 ) {
Paul Fox61e45db2005-10-09 14:43:22 +00003447 editing = 0;
3448 }
Eric Andersen3f980402001-04-04 17:31:15 +00003449 }
Denis Vlasenko219d14d2007-03-24 15:40:16 +00003450 } else if (strncasecmp(p, "file", cnt) == 0) {
Paul Fox8552aec2005-09-16 12:20:05 +00003451 last_status_cksum = 0; // force status update
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003452 } else if (sscanf(p, "%d", &j) > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003453 dot = find_line(j); // go to line # j
3454 dot_skip_over_ws();
Eric Andersen3f980402001-04-04 17:31:15 +00003455 } else { // unrecognised cmd
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003456 not_implemented(p);
Eric Andersen3f980402001-04-04 17:31:15 +00003457 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003458#endif /* !FEATURE_VI_COLON */
Eric Andersen3f980402001-04-04 17:31:15 +00003459 break;
3460 case '<': // <- Left shift something
3461 case '>': // >- Right shift something
3462 cnt = count_lines(text, dot); // remember what line we are on
3463 c1 = get_one_char(); // get the type of thing to delete
3464 find_range(&p, &q, c1);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003465 yank_delete(p, q, 1, YANKONLY); // save copy before change
Eric Andersen3f980402001-04-04 17:31:15 +00003466 p = begin_line(p);
3467 q = end_line(q);
3468 i = count_lines(p, q); // # of lines we are shifting
3469 for ( ; i > 0; i--, p = next_line(p)) {
3470 if (c == '<') {
3471 // shift left- remove tab or 8 spaces
3472 if (*p == '\t') {
3473 // shrink buffer 1 char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003474 text_hole_delete(p, p);
Eric Andersen3f980402001-04-04 17:31:15 +00003475 } else if (*p == ' ') {
3476 // we should be calculating columns, not just SPACE
3477 for (j = 0; *p == ' ' && j < tabstop; j++) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003478 text_hole_delete(p, p);
Eric Andersen3f980402001-04-04 17:31:15 +00003479 }
3480 }
3481 } else if (c == '>') {
3482 // shift right -- add tab or 8 spaces
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003483 char_insert(p, '\t');
Eric Andersen3f980402001-04-04 17:31:15 +00003484 }
3485 }
3486 dot = find_line(cnt); // what line were we on
3487 dot_skip_over_ws();
3488 end_cmd_q(); // stop adding to q
3489 break;
3490 case 'A': // A- append at e-o-l
3491 dot_end(); // go to e-o-l
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003492 //**** fall through to ... 'a'
Eric Andersen3f980402001-04-04 17:31:15 +00003493 case 'a': // a- append after current char
3494 if (*dot != '\n')
3495 dot++;
3496 goto dc_i;
3497 break;
3498 case 'B': // B- back a blank-delimited Word
3499 case 'E': // E- end of a blank-delimited word
3500 case 'W': // W- forward a blank-delimited word
3501 if (cmdcnt-- > 1) {
3502 do_cmd(c);
3503 } // repeat cnt
3504 dir = FORWARD;
3505 if (c == 'B')
3506 dir = BACK;
3507 if (c == 'W' || isspace(dot[dir])) {
3508 dot = skip_thing(dot, 1, dir, S_TO_WS);
3509 dot = skip_thing(dot, 2, dir, S_OVER_WS);
3510 }
3511 if (c != 'W')
3512 dot = skip_thing(dot, 1, dir, S_BEFORE_WS);
3513 break;
3514 case 'C': // C- Change to e-o-l
3515 case 'D': // D- delete to e-o-l
3516 save_dot = dot;
3517 dot = dollar_line(dot); // move to before NL
3518 // copy text into a register and delete
3519 dot = yank_delete(save_dot, dot, 0, YANKDEL); // delete to e-o-l
3520 if (c == 'C')
3521 goto dc_i; // start inserting
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003522#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003523 if (c == 'D')
3524 end_cmd_q(); // stop adding to q
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003525#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003526 break;
Paul Foxb5ee8db2008-02-14 01:17:01 +00003527 case 'g': // 'gg' goto a line number (from vim)
3528 // (default to first line in file)
3529 c1 = get_one_char();
3530 if (c1 != 'g') {
3531 buf[0] = 'g';
3532 buf[1] = c1;
3533 buf[2] = '\0';
3534 not_implemented(buf);
3535 break;
3536 }
3537 if (cmdcnt == 0)
3538 cmdcnt = 1;
3539 /* fall through */
Eric Andersen822c3832001-05-07 17:37:43 +00003540 case 'G': // G- goto to a line number (default= E-O-F)
3541 dot = end - 1; // assume E-O-F
Eric Andersen1c0d3112001-04-16 15:46:44 +00003542 if (cmdcnt > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003543 dot = find_line(cmdcnt); // what line is #cmdcnt
Eric Andersen1c0d3112001-04-16 15:46:44 +00003544 }
3545 dot_skip_over_ws();
3546 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003547 case 'H': // H- goto top line on screen
3548 dot = screenbegin;
3549 if (cmdcnt > (rows - 1)) {
3550 cmdcnt = (rows - 1);
3551 }
3552 if (cmdcnt-- > 1) {
3553 do_cmd('+');
3554 } // repeat cnt
3555 dot_skip_over_ws();
3556 break;
3557 case 'I': // I- insert before first non-blank
3558 dot_begin(); // 0
3559 dot_skip_over_ws();
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003560 //**** fall through to ... 'i'
Eric Andersen3f980402001-04-04 17:31:15 +00003561 case 'i': // i- insert before current char
3562 case VI_K_INSERT: // Cursor Key Insert
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003563 dc_i:
Eric Andersen3f980402001-04-04 17:31:15 +00003564 cmd_mode = 1; // start insrting
Eric Andersen3f980402001-04-04 17:31:15 +00003565 break;
3566 case 'J': // J- join current and next lines together
3567 if (cmdcnt-- > 2) {
3568 do_cmd(c);
3569 } // repeat cnt
3570 dot_end(); // move to NL
3571 if (dot < end - 1) { // make sure not last char in text[]
3572 *dot++ = ' '; // replace NL with space
Paul Fox8552aec2005-09-16 12:20:05 +00003573 file_modified++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003574 while (isblank(*dot)) { // delete leading WS
Eric Andersen3f980402001-04-04 17:31:15 +00003575 dot_delete();
3576 }
3577 }
3578 end_cmd_q(); // stop adding to q
3579 break;
3580 case 'L': // L- goto bottom line on screen
3581 dot = end_screen();
3582 if (cmdcnt > (rows - 1)) {
3583 cmdcnt = (rows - 1);
3584 }
3585 if (cmdcnt-- > 1) {
3586 do_cmd('-');
3587 } // repeat cnt
3588 dot_begin();
3589 dot_skip_over_ws();
3590 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003591 case 'M': // M- goto middle line on screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003592 dot = screenbegin;
3593 for (cnt = 0; cnt < (rows-1) / 2; cnt++)
3594 dot = next_line(dot);
3595 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003596 case 'O': // O- open a empty line above
Eric Andersen822c3832001-05-07 17:37:43 +00003597 // 0i\n ESC -i
Eric Andersen3f980402001-04-04 17:31:15 +00003598 p = begin_line(dot);
3599 if (p[-1] == '\n') {
3600 dot_prev();
3601 case 'o': // o- open a empty line below; Yes, I know it is in the middle of the "if (..."
3602 dot_end();
3603 dot = char_insert(dot, '\n');
3604 } else {
3605 dot_begin(); // 0
Eric Andersen822c3832001-05-07 17:37:43 +00003606 dot = char_insert(dot, '\n'); // i\n ESC
Eric Andersen3f980402001-04-04 17:31:15 +00003607 dot_prev(); // -
3608 }
3609 goto dc_i;
3610 break;
3611 case 'R': // R- continuous Replace char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003612 dc5:
Eric Andersen3f980402001-04-04 17:31:15 +00003613 cmd_mode = 2;
Eric Andersen3f980402001-04-04 17:31:15 +00003614 break;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003615 case VI_K_DELETE:
3616 c = 'x';
3617 // fall through
Eric Andersen3f980402001-04-04 17:31:15 +00003618 case 'X': // X- delete char before dot
3619 case 'x': // x- delete the current char
3620 case 's': // s- substitute the current char
3621 if (cmdcnt-- > 1) {
3622 do_cmd(c);
3623 } // repeat cnt
3624 dir = 0;
3625 if (c == 'X')
3626 dir = -1;
3627 if (dot[dir] != '\n') {
3628 if (c == 'X')
3629 dot--; // delete prev char
3630 dot = yank_delete(dot, dot, 0, YANKDEL); // delete char
3631 }
3632 if (c == 's')
3633 goto dc_i; // start insrting
3634 end_cmd_q(); // stop adding to q
3635 break;
3636 case 'Z': // Z- if modified, {write}; exit
3637 // ZZ means to save file (if necessary), then exit
3638 c1 = get_one_char();
3639 if (c1 != 'Z') {
3640 indicate_error(c);
3641 break;
3642 }
Paul Foxf0305b72006-03-28 14:18:21 +00003643 if (file_modified) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003644 if (ENABLE_FEATURE_VI_READONLY && readonly_mode) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003645 status_line_bold("\"%s\" File is read only", current_filename);
Denis Vlasenko92758142006-10-03 19:56:34 +00003646 break;
Paul Foxf0305b72006-03-28 14:18:21 +00003647 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003648 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00003649 if (cnt < 0) {
3650 if (cnt == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003651 status_line_bold("Write error: %s", strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00003652 } else if (cnt == (end - 1 - text + 1)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003653 editing = 0;
3654 }
3655 } else {
3656 editing = 0;
3657 }
3658 break;
3659 case '^': // ^- move to first non-blank on line
3660 dot_begin();
3661 dot_skip_over_ws();
3662 break;
3663 case 'b': // b- back a word
3664 case 'e': // e- end of word
3665 if (cmdcnt-- > 1) {
3666 do_cmd(c);
3667 } // repeat cnt
3668 dir = FORWARD;
3669 if (c == 'b')
3670 dir = BACK;
3671 if ((dot + dir) < text || (dot + dir) > end - 1)
3672 break;
3673 dot += dir;
3674 if (isspace(*dot)) {
3675 dot = skip_thing(dot, (c == 'e') ? 2 : 1, dir, S_OVER_WS);
3676 }
3677 if (isalnum(*dot) || *dot == '_') {
3678 dot = skip_thing(dot, 1, dir, S_END_ALNUM);
3679 } else if (ispunct(*dot)) {
3680 dot = skip_thing(dot, 1, dir, S_END_PUNCT);
3681 }
3682 break;
3683 case 'c': // c- change something
3684 case 'd': // d- delete something
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003685#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003686 case 'y': // y- yank something
3687 case 'Y': // Y- Yank a line
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003688#endif
Paul Foxc51fc7b2008-03-06 01:34:23 +00003689 {
3690 int yf, ml, whole = 0;
Eric Andersen3f980402001-04-04 17:31:15 +00003691 yf = YANKDEL; // assume either "c" or "d"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003692#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003693 if (c == 'y' || c == 'Y')
3694 yf = YANKONLY;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003695#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003696 c1 = 'y';
3697 if (c != 'Y')
3698 c1 = get_one_char(); // get the type of thing to delete
Paul Foxc51fc7b2008-03-06 01:34:23 +00003699 // determine range, and whether it spans lines
3700 ml = find_range(&p, &q, c1);
Eric Andersen3f980402001-04-04 17:31:15 +00003701 if (c1 == 27) { // ESC- user changed mind and wants out
3702 c = c1 = 27; // Escape- do nothing
3703 } else if (strchr("wW", c1)) {
3704 if (c == 'c') {
3705 // don't include trailing WS as part of word
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003706 while (isblank(*q)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003707 if (q <= text || q[-1] == '\n')
3708 break;
3709 q--;
3710 }
3711 }
Paul Foxc51fc7b2008-03-06 01:34:23 +00003712 dot = yank_delete(p, q, ml, yf); // delete word
3713 } else if (strchr("^0bBeEft%$ lh\b\177", c1)) {
3714 // partial line copy text into a register and delete
3715 dot = yank_delete(p, q, ml, yf); // delete word
3716 } else if (strchr("cdykjHL+-{}\r\n", c1)) {
3717 // whole line copy text into a register and delete
3718 dot = yank_delete(p, q, ml, yf); // delete lines
3719 whole = 1;
3720 } else {
3721 // could not recognize object
3722 c = c1 = 27; // error-
3723 ml = 0;
3724 indicate_error(c);
3725 }
3726 if (ml && whole) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003727 if (c == 'c') {
3728 dot = char_insert(dot, '\n');
3729 // on the last line of file don't move to prev line
Paul Foxc51fc7b2008-03-06 01:34:23 +00003730 if (whole && dot != (end-1)) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003731 dot_prev();
3732 }
3733 } else if (c == 'd') {
Eric Andersen3f980402001-04-04 17:31:15 +00003734 dot_begin();
3735 dot_skip_over_ws();
3736 }
Eric Andersen3f980402001-04-04 17:31:15 +00003737 }
3738 if (c1 != 27) {
3739 // if CHANGING, not deleting, start inserting after the delete
3740 if (c == 'c') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003741 strcpy(buf, "Change");
Eric Andersen3f980402001-04-04 17:31:15 +00003742 goto dc_i; // start inserting
3743 }
3744 if (c == 'd') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003745 strcpy(buf, "Delete");
Eric Andersen3f980402001-04-04 17:31:15 +00003746 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003747#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003748 if (c == 'y' || c == 'Y') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003749 strcpy(buf, "Yank");
Eric Andersen3f980402001-04-04 17:31:15 +00003750 }
3751 p = reg[YDreg];
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003752 q = p + strlen(p);
Eric Andersen3f980402001-04-04 17:31:15 +00003753 for (cnt = 0; p <= q; p++) {
3754 if (*p == '\n')
3755 cnt++;
3756 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003757 status_line("%s %d lines (%d chars) using [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003758 buf, cnt, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003759#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003760 end_cmd_q(); // stop adding to q
3761 }
Paul Foxc51fc7b2008-03-06 01:34:23 +00003762 }
Eric Andersen3f980402001-04-04 17:31:15 +00003763 break;
3764 case 'k': // k- goto prev line, same col
3765 case VI_K_UP: // cursor key Up
3766 if (cmdcnt-- > 1) {
3767 do_cmd(c);
3768 } // repeat cnt
3769 dot_prev();
3770 dot = move_to_col(dot, ccol + offset); // try stay in same col
3771 break;
3772 case 'r': // r- replace the current char with user input
3773 c1 = get_one_char(); // get the replacement char
3774 if (*dot != '\n') {
3775 *dot = c1;
Denis Vlasenkob1759462008-06-20 20:20:54 +00003776 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003777 }
3778 end_cmd_q(); // stop adding to q
3779 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003780 case 't': // t- move to char prior to next x
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00003781 last_forward_char = get_one_char();
3782 do_cmd(';');
3783 if (*dot == last_forward_char)
3784 dot_left();
3785 last_forward_char= 0;
Eric Andersen822c3832001-05-07 17:37:43 +00003786 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003787 case 'w': // w- forward a word
3788 if (cmdcnt-- > 1) {
3789 do_cmd(c);
3790 } // repeat cnt
3791 if (isalnum(*dot) || *dot == '_') { // we are on ALNUM
3792 dot = skip_thing(dot, 1, FORWARD, S_END_ALNUM);
3793 } else if (ispunct(*dot)) { // we are on PUNCT
3794 dot = skip_thing(dot, 1, FORWARD, S_END_PUNCT);
3795 }
3796 if (dot < end - 1)
3797 dot++; // move over word
3798 if (isspace(*dot)) {
3799 dot = skip_thing(dot, 2, FORWARD, S_OVER_WS);
3800 }
3801 break;
3802 case 'z': // z-
3803 c1 = get_one_char(); // get the replacement char
3804 cnt = 0;
3805 if (c1 == '.')
3806 cnt = (rows - 2) / 2; // put dot at center
3807 if (c1 == '-')
3808 cnt = rows - 2; // put dot at bottom
3809 screenbegin = begin_line(dot); // start dot at top
3810 dot_scroll(cnt, -1);
3811 break;
3812 case '|': // |- move to column "cmdcnt"
3813 dot = move_to_col(dot, cmdcnt - 1); // try to move to column
3814 break;
3815 case '~': // ~- flip the case of letters a-z -> A-Z
3816 if (cmdcnt-- > 1) {
3817 do_cmd(c);
3818 } // repeat cnt
3819 if (islower(*dot)) {
3820 *dot = toupper(*dot);
Denis Vlasenkob1759462008-06-20 20:20:54 +00003821 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003822 } else if (isupper(*dot)) {
3823 *dot = tolower(*dot);
Denis Vlasenkob1759462008-06-20 20:20:54 +00003824 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003825 }
3826 dot_right();
3827 end_cmd_q(); // stop adding to q
3828 break;
3829 //----- The Cursor and Function Keys -----------------------------
3830 case VI_K_HOME: // Cursor Key Home
3831 dot_begin();
3832 break;
3833 // The Fn keys could point to do_macro which could translate them
3834 case VI_K_FUN1: // Function Key F1
3835 case VI_K_FUN2: // Function Key F2
3836 case VI_K_FUN3: // Function Key F3
3837 case VI_K_FUN4: // Function Key F4
3838 case VI_K_FUN5: // Function Key F5
3839 case VI_K_FUN6: // Function Key F6
3840 case VI_K_FUN7: // Function Key F7
3841 case VI_K_FUN8: // Function Key F8
3842 case VI_K_FUN9: // Function Key F9
3843 case VI_K_FUN10: // Function Key F10
3844 case VI_K_FUN11: // Function Key F11
3845 case VI_K_FUN12: // Function Key F12
3846 break;
3847 }
3848
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003849 dc1:
Eric Andersen3f980402001-04-04 17:31:15 +00003850 // if text[] just became empty, add back an empty line
3851 if (end == text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003852 char_insert(text, '\n'); // start empty buf with dummy line
Eric Andersen3f980402001-04-04 17:31:15 +00003853 dot = text;
3854 }
3855 // it is OK for dot to exactly equal to end, otherwise check dot validity
3856 if (dot != end) {
3857 dot = bound_dot(dot); // make sure "dot" is valid
3858 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003859#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003860 check_context(c); // update the current context
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003861#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003862
3863 if (!isdigit(c))
3864 cmdcnt = 0; // cmd was not a number, reset cmdcnt
3865 cnt = dot - begin_line(dot);
3866 // Try to stay off of the Newline
3867 if (*dot == '\n' && cnt > 0 && cmd_mode == 0)
3868 dot--;
3869}
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003870
Paul Fox35e9c5d2008-03-06 16:26:12 +00003871/* NB! the CRASHME code is unmaintained, and doesn't currently build */
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003872#if ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003873static int totalcmds = 0;
3874static int Mp = 85; // Movement command Probability
3875static int Np = 90; // Non-movement command Probability
3876static int Dp = 96; // Delete command Probability
3877static int Ip = 97; // Insert command Probability
3878static int Yp = 98; // Yank command Probability
3879static int Pp = 99; // Put command Probability
3880static int M = 0, N = 0, I = 0, D = 0, Y = 0, P = 0, U = 0;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003881static const char chars[20] = "\t012345 abcdABCD-=.$";
3882static const char *const words[20] = {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003883 "this", "is", "a", "test",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003884 "broadcast", "the", "emergency", "of",
3885 "system", "quick", "brown", "fox",
3886 "jumped", "over", "lazy", "dogs",
3887 "back", "January", "Febuary", "March"
3888};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003889static const char *const lines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003890 "You should have received a copy of the GNU General Public License\n",
3891 "char c, cm, *cmd, *cmd1;\n",
3892 "generate a command by percentages\n",
3893 "Numbers may be typed as a prefix to some commands.\n",
3894 "Quit, discarding changes!\n",
3895 "Forced write, if permission originally not valid.\n",
3896 "In general, any ex or ed command (such as substitute or delete).\n",
3897 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
3898 "Please get w/ me and I will go over it with you.\n",
3899 "The following is a list of scheduled, committed changes.\n",
3900 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
3901 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
3902 "Any question about transactions please contact Sterling Huxley.\n",
3903 "I will try to get back to you by Friday, December 31.\n",
3904 "This Change will be implemented on Friday.\n",
3905 "Let me know if you have problems accessing this;\n",
3906 "Sterling Huxley recently added you to the access list.\n",
3907 "Would you like to go to lunch?\n",
3908 "The last command will be automatically run.\n",
3909 "This is too much english for a computer geek.\n",
3910};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003911static char *multilines[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};
3933
3934// create a random command to execute
3935static void crash_dummy()
3936{
3937 static int sleeptime; // how long to pause between commands
3938 char c, cm, *cmd, *cmd1;
3939 int i, cnt, thing, rbi, startrbi, percent;
3940
3941 // "dot" movement commands
3942 cmd1 = " \n\r\002\004\005\006\025\0310^$-+wWeEbBhjklHL";
3943
3944 // is there already a command running?
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003945 if (chars_to_parse > 0)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003946 goto cd1;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003947 cd0:
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003948 startrbi = rbi = 0;
3949 sleeptime = 0; // how long to pause between commands
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003950 memset(readbuffer, '\0', sizeof(readbuffer));
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003951 // generate a command by percentages
3952 percent = (int) lrand48() % 100; // get a number from 0-99
3953 if (percent < Mp) { // Movement commands
3954 // available commands
3955 cmd = cmd1;
3956 M++;
3957 } else if (percent < Np) { // non-movement commands
3958 cmd = "mz<>\'\""; // available commands
3959 N++;
3960 } else if (percent < Dp) { // Delete commands
3961 cmd = "dx"; // available commands
3962 D++;
3963 } else if (percent < Ip) { // Inset commands
3964 cmd = "iIaAsrJ"; // available commands
3965 I++;
3966 } else if (percent < Yp) { // Yank commands
3967 cmd = "yY"; // available commands
3968 Y++;
3969 } else if (percent < Pp) { // Put commands
3970 cmd = "pP"; // available commands
3971 P++;
3972 } else {
3973 // We do not know how to handle this command, try again
3974 U++;
3975 goto cd0;
3976 }
3977 // randomly pick one of the available cmds from "cmd[]"
3978 i = (int) lrand48() % strlen(cmd);
3979 cm = cmd[i];
3980 if (strchr(":\024", cm))
3981 goto cd0; // dont allow colon or ctrl-T commands
3982 readbuffer[rbi++] = cm; // put cmd into input buffer
3983
3984 // now we have the command-
3985 // there are 1, 2, and multi char commands
3986 // find out which and generate the rest of command as necessary
3987 if (strchr("dmryz<>\'\"", cm)) { // 2-char commands
3988 cmd1 = " \n\r0$^-+wWeEbBhjklHL";
3989 if (cm == 'm' || cm == '\'' || cm == '\"') { // pick a reg[]
3990 cmd1 = "abcdefghijklmnopqrstuvwxyz";
3991 }
3992 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
3993 c = cmd1[thing];
3994 readbuffer[rbi++] = c; // add movement to input buffer
3995 }
3996 if (strchr("iIaAsc", cm)) { // multi-char commands
3997 if (cm == 'c') {
3998 // change some thing
3999 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
4000 c = cmd1[thing];
4001 readbuffer[rbi++] = c; // add movement to input buffer
4002 }
4003 thing = (int) lrand48() % 4; // what thing to insert
4004 cnt = (int) lrand48() % 10; // how many to insert
4005 for (i = 0; i < cnt; i++) {
4006 if (thing == 0) { // insert chars
4007 readbuffer[rbi++] = chars[((int) lrand48() % strlen(chars))];
4008 } else if (thing == 1) { // insert words
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004009 strcat(readbuffer, words[(int) lrand48() % 20]);
4010 strcat(readbuffer, " ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004011 sleeptime = 0; // how fast to type
4012 } else if (thing == 2) { // insert lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004013 strcat(readbuffer, lines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004014 sleeptime = 0; // how fast to type
4015 } else { // insert multi-lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004016 strcat(readbuffer, multilines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004017 sleeptime = 0; // how fast to type
4018 }
4019 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004020 strcat(readbuffer, "\033");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004021 }
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00004022 chars_to_parse = strlen(readbuffer);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004023 cd1:
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004024 totalcmds++;
4025 if (sleeptime > 0)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004026 mysleep(sleeptime); // sleep 1/100 sec
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004027}
4028
4029// test to see if there are any errors
4030static void crash_test()
4031{
4032 static time_t oldtim;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004033
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004034 time_t tim;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004035 char d[2], msg[80];
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004036
4037 msg[0] = '\0';
4038 if (end < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004039 strcat(msg, "end<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004040 }
4041 if (end > textend) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004042 strcat(msg, "end>textend ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004043 }
4044 if (dot < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004045 strcat(msg, "dot<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004046 }
4047 if (dot > end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004048 strcat(msg, "dot>end ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004049 }
4050 if (screenbegin < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004051 strcat(msg, "screenbegin<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004052 }
4053 if (screenbegin > end - 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004054 strcat(msg, "screenbegin>end-1 ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004055 }
4056
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004057 if (msg[0]) {
Glenn L McGrath7127b582002-12-03 21:48:15 +00004058 printf("\n\n%d: \'%c\' %s\n\n\n%s[Hit return to continue]%s",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004059 totalcmds, last_input_char, msg, SOs, SOn);
4060 fflush(stdout);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00004061 while (safe_read(STDIN_FILENO, d, 1) > 0) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004062 if (d[0] == '\n' || d[0] == '\r')
4063 break;
4064 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004065 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004066 tim = time(NULL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004067 if (tim >= (oldtim + 3)) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004068 sprintf(status_buffer,
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004069 "Tot=%d: M=%d N=%d I=%d D=%d Y=%d P=%d U=%d size=%d",
4070 totalcmds, M, N, I, D, Y, P, U, end - text + 1);
4071 oldtim = tim;
4072 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004073}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004074#endif