blob: d2d26703665f0bb4f52e19c2c815b64e4b806a25 [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
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +000026#define ENABLE_FEATURE_VI_CRASHME 0
27
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000028
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +000029#if ENABLE_LOCALE_SUPPORT
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000030
31#if ENABLE_FEATURE_VI_8BIT
32#define Isprint(c) isprint(c)
Glenn L McGrath09adaca2002-12-02 21:18:10 +000033#else
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000034#define Isprint(c) (isprint(c) && (unsigned char)(c) < 0x7f)
Glenn L McGrath09adaca2002-12-02 21:18:10 +000035#endif
36
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000037#else
38
39/* 0x9b is Meta-ESC */
40#if ENABLE_FEATURE_VI_8BIT
41#define Isprint(c) ((unsigned char)(c) >= ' ' && (c) != 0x7f && (unsigned char)(c) != 0x9b)
42#else
43#define Isprint(c) ((unsigned char)(c) >= ' ' && (unsigned char)(c) < 0x7f)
44#endif
45
46#endif
47
48
Denis Vlasenkoe8a07882007-06-10 15:08:44 +000049enum {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +000050 MAX_TABSTOP = 32, // sanity limit
Denis Vlasenko88adfcd2007-12-22 15:40:13 +000051 // User input len. Need not be extra big.
52 // Lines in file being edited *can* be bigger than this.
53 MAX_INPUT_LEN = 128,
54 // Sanity limits. We have only one buffer of this size.
55 MAX_SCR_COLS = CONFIG_FEATURE_VI_MAX_LEN,
56 MAX_SCR_ROWS = CONFIG_FEATURE_VI_MAX_LEN,
Denis Vlasenkoe8a07882007-06-10 15:08:44 +000057};
Eric Andersen3f980402001-04-04 17:31:15 +000058
59// Misc. non-Ascii keys that report an escape sequence
Denis Vlasenko2a51af22007-03-21 22:31:24 +000060#define VI_K_UP (char)128 // cursor key Up
61#define VI_K_DOWN (char)129 // cursor key Down
62#define VI_K_RIGHT (char)130 // Cursor Key Right
63#define VI_K_LEFT (char)131 // cursor key Left
64#define VI_K_HOME (char)132 // Cursor Key Home
65#define VI_K_END (char)133 // Cursor Key End
66#define VI_K_INSERT (char)134 // Cursor Key Insert
Denis Vlasenko88adfcd2007-12-22 15:40:13 +000067#define VI_K_DELETE (char)135 // Cursor Key Insert
68#define VI_K_PAGEUP (char)136 // Cursor Key Page Up
69#define VI_K_PAGEDOWN (char)137 // Cursor Key Page Down
70#define VI_K_FUN1 (char)138 // Function Key F1
71#define VI_K_FUN2 (char)139 // Function Key F2
72#define VI_K_FUN3 (char)140 // Function Key F3
73#define VI_K_FUN4 (char)141 // Function Key F4
74#define VI_K_FUN5 (char)142 // Function Key F5
75#define VI_K_FUN6 (char)143 // Function Key F6
76#define VI_K_FUN7 (char)144 // Function Key F7
77#define VI_K_FUN8 (char)145 // Function Key F8
78#define VI_K_FUN9 (char)146 // Function Key F9
79#define VI_K_FUN10 (char)147 // Function Key F10
80#define VI_K_FUN11 (char)148 // Function Key F11
81#define VI_K_FUN12 (char)149 // Function Key F12
Eric Andersen3f980402001-04-04 17:31:15 +000082
Glenn L McGrath09adaca2002-12-02 21:18:10 +000083/* vt102 typical ESC sequence */
84/* terminal standout start/normal ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000085static const char SOs[] ALIGN1 = "\033[7m";
86static const char SOn[] ALIGN1 = "\033[0m";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000087/* terminal bell sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000088static const char bell[] ALIGN1 = "\007";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000089/* Clear-end-of-line and Clear-end-of-screen ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000090static const char Ceol[] ALIGN1 = "\033[0K";
91static const char Ceos[] ALIGN1 = "\033[0J";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000092/* Cursor motion arbitrary destination ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000093static const char CMrc[] ALIGN1 = "\033[%d;%dH";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000094/* Cursor motion up and down ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000095static const char CMup[] ALIGN1 = "\033[A";
96static const char CMdown[] ALIGN1 = "\n";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000097
98
Rob Landleybc68cd12006-03-10 19:22:06 +000099enum {
100 YANKONLY = FALSE,
101 YANKDEL = TRUE,
102 FORWARD = 1, // code depends on "1" for array index
103 BACK = -1, // code depends on "-1" for array index
104 LIMITED = 0, // how much of text[] in char_search
105 FULL = 1, // how much of text[] in char_search
Eric Andersen3f980402001-04-04 17:31:15 +0000106
Rob Landleybc68cd12006-03-10 19:22:06 +0000107 S_BEFORE_WS = 1, // used in skip_thing() for moving "dot"
108 S_TO_WS = 2, // used in skip_thing() for moving "dot"
109 S_OVER_WS = 3, // used in skip_thing() for moving "dot"
110 S_END_PUNCT = 4, // used in skip_thing() for moving "dot"
Denis Vlasenko8e858e22007-03-07 09:35:43 +0000111 S_END_ALNUM = 5, // used in skip_thing() for moving "dot"
Rob Landleybc68cd12006-03-10 19:22:06 +0000112};
Eric Andersen3f980402001-04-04 17:31:15 +0000113
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000114/* vi.c expects chars to be unsigned. */
115/* busybox build system provides that, but it's better */
116/* to audit and fix the source */
Eric Andersen3f980402001-04-04 17:31:15 +0000117
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000118static smallint vi_setops;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000119#define VI_AUTOINDENT 1
120#define VI_SHOWMATCH 2
121#define VI_IGNORECASE 4
122#define VI_ERR_METHOD 8
123#define autoindent (vi_setops & VI_AUTOINDENT)
124#define showmatch (vi_setops & VI_SHOWMATCH )
125#define ignorecase (vi_setops & VI_IGNORECASE)
126/* indicate error with beep or flash */
127#define err_method (vi_setops & VI_ERR_METHOD)
128
Eric Andersen3f980402001-04-04 17:31:15 +0000129
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000130static smallint editing; // >0 while we are editing a file
131 // [code audit says "can be 0 or 1 only"]
132static smallint cmd_mode; // 0=command 1=insert 2=replace
133static smallint file_modified; // buffer contents changed
134static smallint last_file_modified = -1;
135static int fn_start; // index of first cmd line file name
136static int save_argc; // how many file names on cmd line
137static int cmdcnt; // repetition count
138static int rows, columns; // the terminal screen is this size
Denis Vlasenko26b6fba2007-12-21 21:34:37 +0000139static int crow, ccol; // cursor is on Crow x Ccol
140static int offset; // chars scrolled off the screen to the left
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000141static char *status_buffer; // mesages to the user
Paul Fox8552aec2005-09-16 12:20:05 +0000142#define STATUS_BUFFER_LEN 200
143static int have_status_msg; // is default edit status needed?
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000144 // [don't make smallint!]
Paul Fox8552aec2005-09-16 12:20:05 +0000145static int last_status_cksum; // hash of current status line
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000146static char *current_filename; // current file name
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000147//static char *text, *end; // pointers to the user data in memory
148static char *screen; // pointer to the virtual screen buffer
149static int screensize; // and its size
150static char *screenbegin; // index into text[], of top line on the screen
151//static char *dot; // where all the action takes place
Eric Andersen3f980402001-04-04 17:31:15 +0000152static int tabstop;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000153static char erase_char; // the users erase character
154static char last_input_char; // last char read from user
155static char last_forward_char; // last char searched for with 'f'
Eric Andersen3f980402001-04-04 17:31:15 +0000156
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000157#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000158//static smallint vi_readonly, readonly;
159static smallint readonly_mode = 0;
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +0000160#define SET_READONLY_FILE(flags) ((flags) |= 0x01)
161#define SET_READONLY_MODE(flags) ((flags) |= 0x02)
162#define UNSET_READONLY_FILE(flags) ((flags) &= 0xfe)
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000163#else
164#define readonly_mode 0
165#define SET_READONLY_FILE(flags)
166#define SET_READONLY_MODE(flags)
167#define UNSET_READONLY_FILE(flags)
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000168#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000169
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000170#if ENABLE_FEATURE_VI_DOT_CMD
171static smallint adding2q; // are we currently adding user input to q
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000172static char *last_modifying_cmd; // [MAX_INPUT_LEN] last modifying cmd for "."
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000173static char *ioq, *ioq_start; // pointer to string for get_one_char to "read"
174#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000175#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Eric Andersen822c3832001-05-07 17:37:43 +0000176static int last_row; // where the cursor was last moved to
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000177#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000178#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000179static int my_pid;
180#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000181#if ENABLE_FEATURE_VI_DOT_CMD || ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000182static char *modifying_cmds; // cmds that modify text[]
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000183#endif
184#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000185static char *last_search_pattern; // last pattern from a '/' or '?' search
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000186#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000187
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000188/* Moving biggest data to malloced space... */
189struct globals {
190 /* many references - keep near the top of globals */
191 char *text, *end; // pointers to the user data in memory
192 char *dot; // where all the action takes place
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000193 int text_size; // size of the allocated buffer
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000194#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000195 int YDreg, Ureg; // default delete register and orig line for "U"
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000196 char *reg[28]; // named register a-z, "D", and "U" 0-25,26,27
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000197 char *mark[28]; // user marks points somewhere in text[]- a-z and previous context ''
198 char *context_start, *context_end;
199#endif
200 /* a few references only */
201#if ENABLE_FEATURE_VI_USE_SIGNALS
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000202 jmp_buf restart; // catch_sig()
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000203#endif
204 struct termios term_orig, term_vi; // remember what the cooked mode was
205#if ENABLE_FEATURE_VI_COLON
206 char *initial_cmds[3]; // currently 2 entries, NULL terminated
207#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000208 // Should be just enough to hold a key sequence,
209 // but CRASME mode uses it as generated command buffer too
210#if ENABLE_FEATURE_VI_CRASHME
211 char readbuffer[128];
212#else
213 char readbuffer[32];
214#endif
215
216 char scr_out_buf[MAX_SCR_COLS + MAX_TABSTOP * 2];
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000217};
218#define G (*ptr_to_globals)
219#define text (G.text )
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000220#define text_size (G.text_size )
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000221#define end (G.end )
222#define dot (G.dot )
223#define reg (G.reg )
224#define YDreg (G.YDreg )
225#define Ureg (G.Ureg )
226#define mark (G.mark )
227#define context_start (G.context_start )
228#define context_end (G.context_end )
229#define restart (G.restart )
230#define term_orig (G.term_orig )
231#define term_vi (G.term_vi )
232#define initial_cmds (G.initial_cmds )
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000233#define readbuffer (G.readbuffer )
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000234#define scr_out_buf (G.scr_out_buf )
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000235#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000236 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000237} while (0)
Eric Andersen3f980402001-04-04 17:31:15 +0000238
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000239static int init_text_buffer(char *); // init from file or create new
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000240static void edit_file(char *); // edit one file
241static void do_cmd(char); // execute a command
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000242static int next_tabstop(int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000243static void sync_cursor(char *, int *, int *); // synchronize the screen cursor to dot
244static char *begin_line(char *); // return pointer to cur line B-o-l
245static char *end_line(char *); // return pointer to cur line E-o-l
246static char *prev_line(char *); // return pointer to prev line B-o-l
247static char *next_line(char *); // return pointer to next line B-o-l
248static char *end_screen(void); // get pointer to last char on screen
249static int count_lines(char *, char *); // count line from start to stop
250static char *find_line(int); // find begining of line #li
251static char *move_to_col(char *, int); // move "p" to column l
Eric Andersen3f980402001-04-04 17:31:15 +0000252static void dot_left(void); // move dot left- dont leave line
253static void dot_right(void); // move dot right- dont leave line
254static void dot_begin(void); // move dot to B-o-l
255static void dot_end(void); // move dot to E-o-l
256static void dot_next(void); // move dot to next line B-o-l
257static void dot_prev(void); // move dot to prev line B-o-l
258static void dot_scroll(int, int); // move the screen up or down
259static void dot_skip_over_ws(void); // move dot pat WS
260static void dot_delete(void); // delete the char at 'dot'
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000261static char *bound_dot(char *); // make sure text[0] <= P < "end"
262static char *new_screen(int, int); // malloc virtual screen memory
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000263static char *char_insert(char *, char); // insert the char c at 'p'
264static char *stupid_insert(char *, char); // stupidly insert the char c at 'p'
265static char find_range(char **, char **, char); // return pointers for an object
266static int st_test(char *, int, int, char *); // helper for skip_thing()
267static char *skip_thing(char *, int, int, int); // skip some object
268static char *find_pair(char *, char); // find matching pair () [] {}
269static char *text_hole_delete(char *, char *); // at "p", delete a 'size' byte hole
270static char *text_hole_make(char *, int); // at "p", make a 'size' byte hole
271static char *yank_delete(char *, char *, int, int); // yank text[] into register then delete
Eric Andersen3f980402001-04-04 17:31:15 +0000272static void show_help(void); // display some help info
Eric Andersen3f980402001-04-04 17:31:15 +0000273static void rawmode(void); // set "raw" mode on tty
274static void cookmode(void); // return to "cooked" mode on tty
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000275// sleep for 'h' 1/100 seconds, return 1/0 if stdin is (ready for read)/(not ready)
276static int mysleep(int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000277static char readit(void); // read (maybe cursor) key from stdin
278static char get_one_char(void); // read 1 char from stdin
279static int file_size(const char *); // what is the byte size of "fn"
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000280#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000281static int file_insert(const char *, char *, int);
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000282#else
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000283static int file_insert(const char *, char *);
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000284#endif
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000285static int file_write(char *, char *, char *);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +0000286#if !ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
287#define place_cursor(a, b, optimize) place_cursor(a, b)
288#endif
Eric Andersen822c3832001-05-07 17:37:43 +0000289static void place_cursor(int, int, int);
Eric Andersenbff7a602001-11-17 07:15:43 +0000290static void screen_erase(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000291static void clear_to_eol(void);
292static void clear_to_eos(void);
293static void standout_start(void); // send "start reverse video" sequence
294static void standout_end(void); // send "end reverse video" sequence
295static void flash(int); // flash the terminal screen
Eric Andersen3f980402001-04-04 17:31:15 +0000296static void show_status_line(void); // put a message on the bottom line
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000297static void status_line(const char *, ...); // print to status buf
298static void status_line_bold(const char *, ...);
299static void not_implemented(const char *); // display "Not implemented" message
Paul Fox8552aec2005-09-16 12:20:05 +0000300static int format_edit_status(void); // format file status on status line
Eric Andersen3f980402001-04-04 17:31:15 +0000301static void redraw(int); // force a full screen refresh
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000302static char* format_line(char*, int);
Eric Andersen3f980402001-04-04 17:31:15 +0000303static void refresh(int); // update the terminal from screen[]
304
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000305static void Indicate_Error(void); // use flash or beep to indicate error
306#define indicate_error(c) Indicate_Error()
Paul Fox90372ed2005-10-09 14:26:26 +0000307static void Hit_Return(void);
308
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000309#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000310static char *char_search(char *, const char *, int, int); // search for pattern starting at p
311static int mycmp(const char *, const char *, int); // string cmp based in "ignorecase"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000312#endif
313#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000314static char *get_one_address(char *, int *); // get colon addr, if present
315static char *get_address(char *, int *, int *); // get two colon addrs, if present
316static void colon(char *); // execute the "colon" mode cmds
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000317#endif
318#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000319static void winch_sig(int); // catch window size changes
320static void suspend_sig(int); // catch ctrl-Z
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000321static void catch_sig(int); // catch ctrl-C and alarm time-outs
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000322#endif
323#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000324static void start_new_cmd_q(char); // new queue for command
Eric Andersenbff7a602001-11-17 07:15:43 +0000325static void end_cmd_q(void); // stop saving input chars
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000326#else
327#define end_cmd_q() ((void)0)
328#endif
329#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000330static void showmatching(char *); // show the matching pair () [] {}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000331#endif
332#if ENABLE_FEATURE_VI_YANKMARK || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000333static char *string_insert(char *, char *); // insert the string at 'p'
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000334#endif
335#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000336static char *text_yank(char *, char *, int); // save copy of "p" into a register
337static char what_reg(void); // what is letter of current YDreg
338static void check_context(char); // remember context for '' command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000339#endif
340#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000341static void crash_dummy();
342static void crash_test();
343static int crashme = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000344#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000345
346
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000347static void write1(const char *out)
348{
349 fputs(out, stdout);
350}
351
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000352int vi_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +0000353int vi_main(int argc, char **argv)
Eric Andersen3f980402001-04-04 17:31:15 +0000354{
Eric Andersend402edf2001-04-04 19:29:48 +0000355 int c;
Paul Fox8552aec2005-09-16 12:20:05 +0000356 RESERVE_CONFIG_BUFFER(STATUS_BUFFER, STATUS_BUFFER_LEN);
Eric Andersen3f980402001-04-04 17:31:15 +0000357
Denis Vlasenkocd5c7862007-05-17 16:37:22 +0000358#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000359 my_pid = getpid();
360#endif
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000361
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000362 INIT_G();
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000363
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000364#if ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000365 srand((long) my_pid);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000366#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000367
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000368 status_buffer = STATUS_BUFFER;
Paul Fox8552aec2005-09-16 12:20:05 +0000369 last_status_cksum = 0;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000370 text = NULL;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000371
Denis Vlasenko2414a962007-07-18 22:03:40 +0000372#ifdef NO_SUCH_APPLET_YET
373 /* If we aren't "vi", we are "view" */
374 if (ENABLE_FEATURE_VI_READONLY && applet_name[2]) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000375 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000376 }
Denis Vlasenko2414a962007-07-18 22:03:40 +0000377#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000378
Bernhard Reutner-Fischer73f56bb2007-09-22 21:18:46 +0000379 vi_setops = VI_AUTOINDENT | VI_SHOWMATCH | VI_IGNORECASE;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000380#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko2414a962007-07-18 22:03:40 +0000381 memset(reg, 0, sizeof(reg)); // init the yank regs
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000382#endif
383#if ENABLE_FEATURE_VI_DOT_CMD || ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000384 modifying_cmds = (char *) "aAcCdDiIJoOpPrRsxX<>~"; // cmds modifying text[]
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000385#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000386
Denis Vlasenkof9234132007-03-21 00:03:42 +0000387 // 1- process $HOME/.exrc file (not inplemented yet)
Eric Andersen3f980402001-04-04 17:31:15 +0000388 // 2- process EXINIT variable from environment
389 // 3- process command line args
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000390#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000391 {
392 char *p = getenv("EXINIT");
393 if (p && *p)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000394 initial_cmds[0] = xstrndup(p, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000395 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000396#endif
397 while ((c = getopt(argc, argv, "hCR" USE_FEATURE_VI_COLON("c:"))) != -1) {
Eric Andersen3f980402001-04-04 17:31:15 +0000398 switch (c) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000399#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000400 case 'C':
401 crashme = 1;
402 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000403#endif
404#if ENABLE_FEATURE_VI_READONLY
Eric Andersen3f980402001-04-04 17:31:15 +0000405 case 'R': // Read-only flag
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000406 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000407 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000408#endif
Eric Andersen822c3832001-05-07 17:37:43 +0000409 //case 'r': // recover flag- ignore- we don't use tmp file
410 //case 'x': // encryption flag- ignore
411 //case 'c': // execute command first
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000412#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000413 case 'c': // cmd line vi command
414 if (*optarg)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000415 initial_cmds[initial_cmds[0] != 0] = xstrndup(optarg, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000416 break;
Eric Andersen822c3832001-05-07 17:37:43 +0000417 //case 'h': // help -- just use default
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000418#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000419 default:
420 show_help();
Eric Andersendd8500b2001-07-02 18:06:14 +0000421 return 1;
Eric Andersen3f980402001-04-04 17:31:15 +0000422 }
423 }
424
425 // The argv array can be used by the ":next" and ":rewind" commands
426 // save optind.
427 fn_start = optind; // remember first file name for :next and :rew
428 save_argc = argc;
429
430 //----- This is the main file handling loop --------------
431 if (optind >= argc) {
Eric Andersen3f980402001-04-04 17:31:15 +0000432 edit_file(0);
433 } else {
434 for (; optind < argc; optind++) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000435 edit_file(argv[optind]);
Eric Andersen3f980402001-04-04 17:31:15 +0000436 }
437 }
438 //-----------------------------------------------------------
439
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000440 return 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000441}
442
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000443/* read text from file or create an empty buf */
444/* will also update current_filename */
445static int init_text_buffer(char *fn)
446{
447 int rc;
448 int size = file_size(fn); // file size. -1 means does not exist.
449
450 /* allocate/reallocate text buffer */
451 free(text);
452 text_size = size * 2;
453 if (text_size < 10240)
454 text_size = 10240; // have a minimum size for new files
455 screenbegin = dot = end = text = xzalloc(text_size);
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000456
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000457 if (fn != current_filename) {
458 free(current_filename);
459 current_filename = xstrdup(fn);
460 }
461 if (size < 0) {
462 // file dont exist. Start empty buf with dummy line
463 char_insert(text, '\n');
464 rc = 0;
465 } else {
466 rc = file_insert(fn, text
467 USE_FEATURE_VI_READONLY(, 1));
468 }
469 file_modified = 0;
470 last_file_modified = -1;
471#if ENABLE_FEATURE_VI_YANKMARK
472 /* init the marks. */
473 memset(mark, 0, sizeof(mark));
474#endif
475 return rc;
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000476}
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000477
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000478static void edit_file(char *fn)
Eric Andersen3f980402001-04-04 17:31:15 +0000479{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000480 char c;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000481 int size;
Eric Andersen3f980402001-04-04 17:31:15 +0000482
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000483#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000484 int sig;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000485#endif
486#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000487 static char *cur_line;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000488#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000489
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000490 editing = 1; // 0 = exit, 1 = one file, 2 = multiple files
Eric Andersen3f980402001-04-04 17:31:15 +0000491 rawmode();
492 rows = 24;
493 columns = 80;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000494 size = 0;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000495 if (ENABLE_FEATURE_VI_WIN_RESIZE) {
Rob Landleye5e1a102006-06-21 01:15:36 +0000496 get_terminal_width_height(0, &columns, &rows);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000497 if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS;
498 if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS;
499 }
Eric Andersen3f980402001-04-04 17:31:15 +0000500 new_screen(rows, columns); // get memory for virtual screen
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000501 init_text_buffer(fn);
Eric Andersen3f980402001-04-04 17:31:15 +0000502
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000503#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000504 YDreg = 26; // default Yank/Delete reg
505 Ureg = 27; // hold orig line for "U" cmd
Eric Andersen3f980402001-04-04 17:31:15 +0000506 mark[26] = mark[27] = text; // init "previous context"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000507#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000508
Eric Andersen3f980402001-04-04 17:31:15 +0000509 last_forward_char = last_input_char = '\0';
510 crow = 0;
511 ccol = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000512
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000513#if ENABLE_FEATURE_VI_USE_SIGNALS
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000514 catch_sig(0);
Eric Andersen3f980402001-04-04 17:31:15 +0000515 signal(SIGWINCH, winch_sig);
516 signal(SIGTSTP, suspend_sig);
517 sig = setjmp(restart);
518 if (sig != 0) {
Eric Andersen1c0d3112001-04-16 15:46:44 +0000519 screenbegin = dot = text;
Eric Andersen3f980402001-04-04 17:31:15 +0000520 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000521#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000522
Eric Andersen3f980402001-04-04 17:31:15 +0000523 cmd_mode = 0; // 0=command 1=insert 2='R'eplace
524 cmdcnt = 0;
525 tabstop = 8;
526 offset = 0; // no horizontal offset
527 c = '\0';
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000528#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000529 free(last_modifying_cmd);
530 free(ioq_start);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000531 ioq = ioq_start = last_modifying_cmd = NULL;
Eric Andersen3f980402001-04-04 17:31:15 +0000532 adding2q = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000533#endif
Eric Andersen822c3832001-05-07 17:37:43 +0000534 redraw(FALSE); // dont force every col re-draw
Eric Andersen3f980402001-04-04 17:31:15 +0000535
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000536#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000537 {
538 char *p, *q;
539 int n = 0;
540
541 while ((p = initial_cmds[n])) {
542 do {
543 q = p;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000544 p = strchr(q, '\n');
Denis Vlasenkof9234132007-03-21 00:03:42 +0000545 if (p)
Denis Vlasenko51742f42007-04-12 00:32:05 +0000546 while (*p == '\n')
Denis Vlasenkof9234132007-03-21 00:03:42 +0000547 *p++ = '\0';
548 if (*q)
549 colon(q);
550 } while (p);
551 free(initial_cmds[n]);
552 initial_cmds[n] = NULL;
553 n++;
554 }
555 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000556#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000557 //------This is the main Vi cmd handling loop -----------------------
558 while (editing > 0) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000559#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000560 if (crashme > 0) {
561 if ((end - text) > 1) {
562 crash_dummy(); // generate a random command
563 } else {
564 crashme = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000565 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 +0000566 refresh(FALSE);
567 }
568 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000569#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000570 last_input_char = c = get_one_char(); // get a cmd from user
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000571#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000572 // save a copy of the current line- for the 'U" command
573 if (begin_line(dot) != cur_line) {
574 cur_line = begin_line(dot);
575 text_yank(begin_line(dot), end_line(dot), Ureg);
576 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000577#endif
578#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +0000579 // These are commands that change text[].
580 // Remember the input for the "." command
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000581 if (!adding2q && ioq_start == NULL
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000582 && strchr(modifying_cmds, c)
583 ) {
Eric Andersen3f980402001-04-04 17:31:15 +0000584 start_new_cmd_q(c);
585 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000586#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000587 do_cmd(c); // execute the user command
588 //
589 // poll to see if there is input already waiting. if we are
590 // not able to display output fast enough to keep up, skip
591 // the display update until we catch up with input.
592 if (mysleep(0) == 0) {
593 // no input pending- so update output
594 refresh(FALSE);
595 show_status_line();
596 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000597#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000598 if (crashme > 0)
599 crash_test(); // test editor variables
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000600#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000601 }
602 //-------------------------------------------------------------------
603
Eric Andersen822c3832001-05-07 17:37:43 +0000604 place_cursor(rows, 0, FALSE); // go to bottom of screen
Eric Andersen3f980402001-04-04 17:31:15 +0000605 clear_to_eol(); // Erase to end of line
606 cookmode();
607}
608
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000609//----- The Colon commands -------------------------------------
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000610#if ENABLE_FEATURE_VI_COLON
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000611static char *get_one_address(char *p, int *addr) // get colon addr, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000612{
613 int st;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000614 char *q;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000615 USE_FEATURE_VI_YANKMARK(char c;)
616 USE_FEATURE_VI_SEARCH(char *pat;)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000617
618 *addr = -1; // assume no addr
619 if (*p == '.') { // the current line
620 p++;
621 q = begin_line(dot);
622 *addr = count_lines(text, q);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000623 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000624#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000625 else if (*p == '\'') { // is this a mark addr
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000626 p++;
627 c = tolower(*p);
628 p++;
629 if (c >= 'a' && c <= 'z') {
630 // we have a mark
631 c = c - 'a';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000632 q = mark[(unsigned char) c];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000633 if (q != NULL) { // is mark valid
634 *addr = count_lines(text, q); // count lines
635 }
636 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000637 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000638#endif
639#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000640 else if (*p == '/') { // a search pattern
641 q = strchrnul(++p, '/');
642 pat = xstrndup(p, q - p); // save copy of pattern
643 p = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000644 if (*p == '/')
645 p++;
646 q = char_search(dot, pat, FORWARD, FULL);
647 if (q != NULL) {
648 *addr = count_lines(text, q);
649 }
650 free(pat);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000651 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000652#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000653 else if (*p == '$') { // the last line in file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000654 p++;
655 q = begin_line(end - 1);
656 *addr = count_lines(text, q);
657 } else if (isdigit(*p)) { // specific line number
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000658 sscanf(p, "%d%n", addr, &st);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000659 p += st;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000660 } else {
661 // unrecognised address - assume -1
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000662 *addr = -1;
663 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000664 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000665}
666
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000667static char *get_address(char *p, int *b, int *e) // get two colon addrs, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000668{
669 //----- get the address' i.e., 1,3 'a,'b -----
670 // get FIRST addr, if present
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000671 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000672 p++; // skip over leading spaces
673 if (*p == '%') { // alias for 1,$
674 p++;
675 *b = 1;
676 *e = count_lines(text, end-1);
677 goto ga0;
678 }
679 p = get_one_address(p, b);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000680 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000681 p++;
Eric Andersenaff114c2004-04-14 17:51:38 +0000682 if (*p == ',') { // is there a address separator
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000683 p++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000684 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000685 p++;
686 // get SECOND addr, if present
687 p = get_one_address(p, e);
688 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000689 ga0:
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000690 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000691 p++; // skip over trailing spaces
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000692 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000693}
694
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000695#if ENABLE_FEATURE_VI_SET && ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000696static void setops(const char *args, const char *opname, int flg_no,
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000697 const char *short_opname, int opt)
698{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000699 const char *a = args + flg_no;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000700 int l = strlen(opname) - 1; /* opname have + ' ' */
701
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000702 if (strncasecmp(a, opname, l) == 0
703 || strncasecmp(a, short_opname, 2) == 0
704 ) {
705 if (flg_no)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000706 vi_setops &= ~opt;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000707 else
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000708 vi_setops |= opt;
709 }
710}
711#endif
712
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000713// buf must be no longer than MAX_INPUT_LEN!
714static void colon(char *buf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000715{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000716 char c, *orig_buf, *buf1, *q, *r;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000717 char *fn, cmd[MAX_INPUT_LEN], args[MAX_INPUT_LEN];
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000718 int i, l, li, ch, b, e;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000719 int useforce, forced = FALSE;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000720
721 // :3154 // if (-e line 3154) goto it else stay put
722 // :4,33w! foo // write a portion of buffer to file "foo"
723 // :w // write all of buffer to current file
724 // :q // quit
725 // :q! // quit- dont care about modified file
726 // :'a,'z!sort -u // filter block through sort
727 // :'f // goto mark "f"
728 // :'fl // list literal the mark "f" line
729 // :.r bar // read file "bar" into buffer before dot
730 // :/123/,/abc/d // delete lines from "123" line to "abc" line
731 // :/xyz/ // goto the "xyz" line
732 // :s/find/replace/ // substitute pattern "find" with "replace"
733 // :!<cmd> // run <cmd> then return
734 //
Eric Andersen165e8cb2004-07-20 06:44:46 +0000735
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000736 if (!buf[0])
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000737 goto vc1;
738 if (*buf == ':')
739 buf++; // move past the ':'
740
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000741 li = ch = i = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000742 b = e = -1;
743 q = text; // assume 1,$ for the range
744 r = end - 1;
745 li = count_lines(text, end - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000746 fn = current_filename;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000747
748 // look for optional address(es) :. :1 :1,9 :'q,'a :%
749 buf = get_address(buf, &b, &e);
750
751 // remember orig command line
752 orig_buf = buf;
753
754 // get the COMMAND into cmd[]
755 buf1 = cmd;
756 while (*buf != '\0') {
757 if (isspace(*buf))
758 break;
759 *buf1++ = *buf++;
760 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000761 *buf1 = '\0';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000762 // get any ARGuments
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000763 while (isblank(*buf))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000764 buf++;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000765 strcpy(args, buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000766 useforce = FALSE;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000767 buf1 = last_char_is(cmd, '!');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000768 if (buf1) {
769 useforce = TRUE;
770 *buf1 = '\0'; // get rid of !
771 }
772 if (b >= 0) {
773 // if there is only one addr, then the addr
774 // is the line number of the single line the
775 // user wants. So, reset the end
776 // pointer to point at end of the "b" line
777 q = find_line(b); // what line is #b
778 r = end_line(q);
779 li = 1;
780 }
781 if (e >= 0) {
782 // we were given two addrs. change the
783 // end pointer to the addr given by user.
784 r = find_line(e); // what line is #e
785 r = end_line(r);
786 li = e - b + 1;
787 }
788 // ------------ now look for the command ------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000789 i = strlen(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000790 if (i == 0) { // :123CR goto line #123
791 if (b >= 0) {
792 dot = find_line(b); // what line is #b
793 dot_skip_over_ws();
794 }
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000795 }
796#if ENABLE_FEATURE_ALLOW_EXEC
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000797 else if (strncmp(cmd, "!", 1) == 0) { // run a cmd
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000798 int retcode;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000799 // :!ls run the <cmd>
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000800 alarm(0); // wait for input- no alarms
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000801 place_cursor(rows - 1, 0, FALSE); // go to Status line
802 clear_to_eol(); // clear the line
803 cookmode();
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000804 retcode = system(orig_buf + 1); // run the cmd
805 if (retcode)
806 printf("\nshell returned %i\n\n", retcode);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000807 rawmode();
808 Hit_Return(); // let user see results
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000809 alarm(3); // done waiting for input
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000810 }
811#endif
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000812 else if (strncmp(cmd, "=", i) == 0) { // where is the address
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000813 if (b < 0) { // no addr given- use defaults
814 b = e = count_lines(text, dot);
815 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000816 status_line("%d", b);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000817 } else if (strncasecmp(cmd, "delete", i) == 0) { // delete lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000818 if (b < 0) { // no addr given- use defaults
819 q = begin_line(dot); // assume .,. for the range
820 r = end_line(dot);
821 }
822 dot = yank_delete(q, r, 1, YANKDEL); // save, then delete lines
823 dot_skip_over_ws();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000824 } else if (strncasecmp(cmd, "edit", i) == 0) { // Edit a file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000825 // don't edit, if the current file has been modified
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000826 if (file_modified && !useforce) {
827 status_line_bold("No write since last change (:edit! overrides)");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000828 goto vc1;
829 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000830 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000831 // the user supplied a file name
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000832 fn = args;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000833 } else if (current_filename && current_filename[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000834 // no user supplied name- use the current filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000835 // fn = current_filename; was set by default
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000836 } else {
837 // no user file name, no current name- punt
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000838 status_line_bold("No current filename");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000839 goto vc1;
840 }
841
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000842 if (init_text_buffer(fn) < 0)
843 goto vc1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000844
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000845#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000846 if (Ureg >= 0 && Ureg < 28 && reg[Ureg] != 0) {
847 free(reg[Ureg]); // free orig line reg- for 'U'
848 reg[Ureg]= 0;
849 }
850 if (YDreg >= 0 && YDreg < 28 && reg[YDreg] != 0) {
851 free(reg[YDreg]); // free default yank/delete register
852 reg[YDreg]= 0;
853 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000854#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000855 // how many lines in text[]?
856 li = count_lines(text, end - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000857 status_line("\"%s\"%s"
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000858 USE_FEATURE_VI_READONLY("%s")
859 " %dL, %dC", current_filename,
860 (file_size(fn) < 0 ? " [New file]" : ""),
861 USE_FEATURE_VI_READONLY(
862 ((readonly_mode) ? " [Readonly]" : ""),
863 )
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000864 li, ch);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000865 } else if (strncasecmp(cmd, "file", i) == 0) { // what File is this
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000866 if (b != -1 || e != -1) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000867 not_implemented("No address allowed on this command");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000868 goto vc1;
869 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000870 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000871 // user wants a new filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000872 free(current_filename);
873 current_filename = xstrdup(args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000874 } else {
875 // user wants file status info
Paul Fox8552aec2005-09-16 12:20:05 +0000876 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000877 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000878 } else if (strncasecmp(cmd, "features", i) == 0) { // what features are available
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000879 // print out values of all features
880 place_cursor(rows - 1, 0, FALSE); // go to Status line, bottom of screen
881 clear_to_eol(); // clear the line
882 cookmode();
883 show_help();
884 rawmode();
885 Hit_Return();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000886 } else if (strncasecmp(cmd, "list", i) == 0) { // literal print line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000887 if (b < 0) { // no addr given- use defaults
888 q = begin_line(dot); // assume .,. for the range
889 r = end_line(dot);
890 }
891 place_cursor(rows - 1, 0, FALSE); // go to Status line, bottom of screen
892 clear_to_eol(); // clear the line
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000893 puts("\r");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000894 for (; q <= r; q++) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000895 int c_is_no_print;
896
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000897 c = *q;
Denis Vlasenko2a51af22007-03-21 22:31:24 +0000898 c_is_no_print = (c & 0x80) && !Isprint(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000899 if (c_is_no_print) {
900 c = '.';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000901 standout_start();
Denis Vlasenkod3c042f2007-12-30 01:59:53 +0000902 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000903 if (c == '\n') {
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000904 write1("$\r");
905 } else if (c < ' ' || c == 127) {
Denis Vlasenko4daad902007-09-27 10:20:47 +0000906 bb_putchar('^');
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000907 if (c == 127)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000908 c = '?';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000909 else
910 c += '@';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000911 }
Denis Vlasenko4daad902007-09-27 10:20:47 +0000912 bb_putchar(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000913 if (c_is_no_print)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000914 standout_end();
915 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000916#if ENABLE_FEATURE_VI_SET
917 vc2:
918#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000919 Hit_Return();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000920 } else if (strncasecmp(cmd, "quit", i) == 0 // Quit
921 || strncasecmp(cmd, "next", i) == 0 // edit next file
922 ) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000923 if (useforce) {
924 // force end of argv list
925 if (*cmd == 'q') {
926 optind = save_argc;
927 }
928 editing = 0;
929 goto vc1;
930 }
931 // don't exit if the file been modified
932 if (file_modified) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000933 status_line_bold("No write since last change (:%s! overrides)",
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000934 (*cmd == 'q' ? "quit" : "next"));
935 goto vc1;
936 }
937 // are there other file to edit
938 if (*cmd == 'q' && optind < save_argc - 1) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000939 status_line_bold("%d more file to edit", (save_argc - optind - 1));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000940 goto vc1;
941 }
942 if (*cmd == 'n' && optind >= save_argc - 1) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000943 status_line_bold("No more files to edit");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000944 goto vc1;
945 }
946 editing = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000947 } else if (strncasecmp(cmd, "read", i) == 0) { // read file into text[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000948 fn = args;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000949 if (!fn[0]) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000950 status_line_bold("No filename given");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000951 goto vc1;
952 }
953 if (b < 0) { // no addr given- use defaults
954 q = begin_line(dot); // assume "dot"
955 }
956 // read after current line- unless user said ":0r foo"
957 if (b != 0)
958 q = next_line(q);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000959 ch = file_insert(fn, q USE_FEATURE_VI_READONLY(, 0));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000960 if (ch < 0)
961 goto vc1; // nothing was inserted
962 // how many lines in text[]?
963 li = count_lines(q, q + ch - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000964 status_line("\"%s\""
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000965 USE_FEATURE_VI_READONLY("%s")
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000966 " %dL, %dC", fn,
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000967 USE_FEATURE_VI_READONLY((readonly_mode ? " [Readonly]" : ""),)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000968 li, ch);
969 if (ch > 0) {
970 // if the insert is before "dot" then we need to update
971 if (q <= dot)
972 dot += ch;
Paul Fox8552aec2005-09-16 12:20:05 +0000973 file_modified++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000974 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000975 } else if (strncasecmp(cmd, "rewind", i) == 0) { // rewind cmd line args
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000976 if (file_modified && !useforce) {
977 status_line_bold("No write since last change (:rewind! overrides)");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000978 } else {
979 // reset the filenames to edit
980 optind = fn_start - 1;
981 editing = 0;
982 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000983#if ENABLE_FEATURE_VI_SET
Denis Vlasenkof9234132007-03-21 00:03:42 +0000984 } else if (strncasecmp(cmd, "set", i) == 0) { // set or clear features
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000985#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkof9234132007-03-21 00:03:42 +0000986 char *argp;
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000987#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000988 i = 0; // offset into args
Denis Vlasenkof9234132007-03-21 00:03:42 +0000989 // only blank is regarded as args delmiter. What about tab '\t' ?
990 if (!args[0] || strcasecmp(args, "all") == 0) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000991 // print out values of all options
992 place_cursor(rows - 1, 0, FALSE); // go to Status line, bottom of screen
993 clear_to_eol(); // clear the line
994 printf("----------------------------------------\r\n");
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000995#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000996 if (!autoindent)
997 printf("no");
998 printf("autoindent ");
999 if (!err_method)
1000 printf("no");
1001 printf("flash ");
1002 if (!ignorecase)
1003 printf("no");
1004 printf("ignorecase ");
1005 if (!showmatch)
1006 printf("no");
1007 printf("showmatch ");
1008 printf("tabstop=%d ", tabstop);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001009#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001010 printf("\r\n");
1011 goto vc2;
1012 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001013#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001014 argp = args;
Denis Vlasenkoba2fb712007-04-01 09:39:03 +00001015 while (*argp) {
Denis Vlasenkof9234132007-03-21 00:03:42 +00001016 if (strncasecmp(argp, "no", 2) == 0)
1017 i = 2; // ":set noautoindent"
1018 setops(argp, "autoindent ", i, "ai", VI_AUTOINDENT);
1019 setops(argp, "flash ", i, "fl", VI_ERR_METHOD);
1020 setops(argp, "ignorecase ", i, "ic", VI_IGNORECASE);
1021 setops(argp, "showmatch ", i, "ic", VI_SHOWMATCH);
1022 /* tabstopXXXX */
1023 if (strncasecmp(argp + i, "tabstop=%d ", 7) == 0) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001024 sscanf(strchr(argp + i, '='), "tabstop=%d" + 7, &ch);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00001025 if (ch > 0 && ch <= MAX_TABSTOP)
Denis Vlasenkof9234132007-03-21 00:03:42 +00001026 tabstop = ch;
1027 }
1028 while (*argp && *argp != ' ')
1029 argp++; // skip to arg delimiter (i.e. blank)
1030 while (*argp && *argp == ' ')
1031 argp++; // skip all delimiting blanks
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001032 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001033#endif /* FEATURE_VI_SETOPTS */
1034#endif /* FEATURE_VI_SET */
1035#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001036 } else if (strncasecmp(cmd, "s", 1) == 0) { // substitute a pattern with a replacement pattern
1037 char *ls, *F, *R;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001038 int gflag;
1039
1040 // F points to the "find" pattern
1041 // R points to the "replace" pattern
1042 // replace the cmd line delimiters "/" with NULLs
1043 gflag = 0; // global replace flag
1044 c = orig_buf[1]; // what is the delimiter
1045 F = orig_buf + 2; // start of "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001046 R = strchr(F, c); // middle delimiter
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001047 if (!R) goto colon_s_fail;
1048 *R++ = '\0'; // terminate "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001049 buf1 = strchr(R, c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001050 if (!buf1) goto colon_s_fail;
1051 *buf1++ = '\0'; // terminate "replace"
1052 if (*buf1 == 'g') { // :s/foo/bar/g
1053 buf1++;
1054 gflag++; // turn on gflag
1055 }
1056 q = begin_line(q);
1057 if (b < 0) { // maybe :s/foo/bar/
1058 q = begin_line(dot); // start with cur line
1059 b = count_lines(text, q); // cur line number
1060 }
1061 if (e < 0)
1062 e = b; // maybe :.s/foo/bar/
1063 for (i = b; i <= e; i++) { // so, :20,23 s \0 find \0 replace \0
1064 ls = q; // orig line start
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001065 vc4:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001066 buf1 = char_search(q, F, FORWARD, LIMITED); // search cur line only for "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001067 if (buf1) {
1068 // we found the "find" pattern - delete it
1069 text_hole_delete(buf1, buf1 + strlen(F) - 1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001070 // inset the "replace" patern
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001071 string_insert(buf1, R); // insert the string
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001072 // check for "global" :s/foo/bar/g
1073 if (gflag == 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001074 if ((buf1 + strlen(R)) < end_line(ls)) {
1075 q = buf1 + strlen(R);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001076 goto vc4; // don't let q move past cur line
1077 }
1078 }
1079 }
1080 q = next_line(ls);
1081 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001082#endif /* FEATURE_VI_SEARCH */
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001083 } else if (strncasecmp(cmd, "version", i) == 0) { // show software version
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001084 status_line("%s", BB_VER " " BB_BT);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001085 } else if (strncasecmp(cmd, "write", i) == 0 // write text to file
1086 || strncasecmp(cmd, "wq", i) == 0
1087 || strncasecmp(cmd, "wn", i) == 0
1088 || strncasecmp(cmd, "x", i) == 0
1089 ) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001090 // is there a file name to write to?
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001091 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001092 fn = args;
1093 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001094#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001095 if (readonly_mode && !useforce) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001096 status_line_bold("\"%s\" File is read only", fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001097 goto vc3;
1098 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001099#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001100 // how many lines in text[]?
1101 li = count_lines(q, r);
1102 ch = r - q + 1;
1103 // see if file exists- if not, its just a new file request
1104 if (useforce) {
1105 // if "fn" is not write-able, chmod u+w
1106 // sprintf(syscmd, "chmod u+w %s", fn);
1107 // system(syscmd);
1108 forced = TRUE;
1109 }
1110 l = file_write(fn, q, r);
1111 if (useforce && forced) {
1112 // chmod u-w
1113 // sprintf(syscmd, "chmod u-w %s", fn);
1114 // system(syscmd);
1115 forced = FALSE;
1116 }
Paul Fox61e45db2005-10-09 14:43:22 +00001117 if (l < 0) {
1118 if (l == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001119 status_line_bold("\"%s\" %s", fn, strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00001120 } else {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001121 status_line("\"%s\" %dL, %dC", fn, li, l);
Paul Fox61e45db2005-10-09 14:43:22 +00001122 if (q == text && r == end - 1 && l == ch) {
1123 file_modified = 0;
1124 last_file_modified = -1;
1125 }
Paul Fox9360f422006-03-27 21:51:16 +00001126 if ((cmd[0] == 'x' || cmd[1] == 'q' || cmd[1] == 'n' ||
1127 cmd[0] == 'X' || cmd[1] == 'Q' || cmd[1] == 'N')
1128 && l == ch) {
Paul Fox61e45db2005-10-09 14:43:22 +00001129 editing = 0;
1130 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001131 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001132#if ENABLE_FEATURE_VI_READONLY
1133 vc3:;
1134#endif
1135#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001136 } else if (strncasecmp(cmd, "yank", i) == 0) { // yank lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001137 if (b < 0) { // no addr given- use defaults
1138 q = begin_line(dot); // assume .,. for the range
1139 r = end_line(dot);
1140 }
1141 text_yank(q, r, YDreg);
1142 li = count_lines(q, r);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001143 status_line("Yank %d lines (%d chars) into [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001144 li, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001145#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001146 } else {
1147 // cmd unknown
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001148 not_implemented(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001149 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001150 vc1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001151 dot = bound_dot(dot); // make sure "dot" is valid
1152 return;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001153#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001154 colon_s_fail:
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001155 status_line(":s expression missing delimiters");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001156#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001157}
Paul Fox61e45db2005-10-09 14:43:22 +00001158
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001159#endif /* FEATURE_VI_COLON */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001160
1161static void Hit_Return(void)
1162{
1163 char c;
1164
Denis Vlasenkof882f082007-12-23 02:36:51 +00001165 standout_start();
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001166 write1("[Hit return to continue]");
Denis Vlasenkof882f082007-12-23 02:36:51 +00001167 standout_end();
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001168 while ((c = get_one_char()) != '\n' && c != '\r')
1169 continue;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001170 redraw(TRUE); // force redraw all
1171}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001172
Denis Vlasenko91afdf82007-07-17 23:22:49 +00001173static int next_tabstop(int col)
1174{
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001175 return col + ((tabstop - 1) - (col % tabstop));
1176}
1177
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001178//----- Synchronize the cursor to Dot --------------------------
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001179static void sync_cursor(char *d, int *row, int *col)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001180{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001181 char *beg_cur; // begin and end of "d" line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001182 char *tp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001183 int cnt, ro, co;
1184
1185 beg_cur = begin_line(d); // first char of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001186
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001187 if (beg_cur < screenbegin) {
Denis Vlasenkof882f082007-12-23 02:36:51 +00001188 // "d" is before top line on screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001189 // how many lines do we have to move
1190 cnt = count_lines(beg_cur, screenbegin);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001191 sc1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001192 screenbegin = beg_cur;
1193 if (cnt > (rows - 1) / 2) {
1194 // we moved too many lines. put "dot" in middle of screen
1195 for (cnt = 0; cnt < (rows - 1) / 2; cnt++) {
1196 screenbegin = prev_line(screenbegin);
1197 }
1198 }
Denis Vlasenkof882f082007-12-23 02:36:51 +00001199 } else {
1200 char *end_scr; // begin and end of screen
1201 end_scr = end_screen(); // last char of screen
1202 if (beg_cur > end_scr) {
1203 // "d" is after bottom line on screen
1204 // how many lines do we have to move
1205 cnt = count_lines(end_scr, beg_cur);
1206 if (cnt > (rows - 1) / 2)
1207 goto sc1; // too many lines
1208 for (ro = 0; ro < cnt - 1; ro++) {
1209 // move screen begin the same amount
1210 screenbegin = next_line(screenbegin);
1211 // now, move the end of screen
1212 end_scr = next_line(end_scr);
1213 end_scr = end_line(end_scr);
1214 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001215 }
1216 }
1217 // "d" is on screen- find out which row
1218 tp = screenbegin;
1219 for (ro = 0; ro < rows - 1; ro++) { // drive "ro" to correct row
1220 if (tp == beg_cur)
1221 break;
1222 tp = next_line(tp);
1223 }
1224
1225 // find out what col "d" is on
1226 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001227 while (tp < d) { // drive "co" to correct column
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001228 if (*tp == '\n') //vda || *tp == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001229 break;
1230 if (*tp == '\t') {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001231 // handle tabs like real vi
1232 if (d == tp && cmd_mode) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001233 break;
1234 } else {
1235 co = next_tabstop(co);
1236 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001237 } else if ((unsigned char)*tp < ' ' || *tp == 0x7f) {
1238 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001239 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001240 co++;
1241 tp++;
1242 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001243
1244 // "co" is the column where "dot" is.
1245 // The screen has "columns" columns.
1246 // The currently displayed columns are 0+offset -- columns+ofset
1247 // |-------------------------------------------------------------|
1248 // ^ ^ ^
1249 // offset | |------- columns ----------------|
1250 //
1251 // If "co" is already in this range then we do not have to adjust offset
1252 // but, we do have to subtract the "offset" bias from "co".
1253 // If "co" is outside this range then we have to change "offset".
1254 // If the first char of a line is a tab the cursor will try to stay
1255 // in column 7, but we have to set offset to 0.
1256
1257 if (co < 0 + offset) {
1258 offset = co;
1259 }
1260 if (co >= columns + offset) {
1261 offset = co - columns + 1;
1262 }
1263 // if the first char of the line is a tab, and "dot" is sitting on it
1264 // force offset to 0.
1265 if (d == beg_cur && *d == '\t') {
1266 offset = 0;
1267 }
1268 co -= offset;
1269
1270 *row = ro;
1271 *col = co;
1272}
1273
1274//----- Text Movement Routines ---------------------------------
Denis Vlasenkof882f082007-12-23 02:36:51 +00001275static char *begin_line(char *p) // return pointer to first char cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001276{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001277 if (p > text) {
1278 p = memrchr(text, '\n', p - text);
1279 if (!p)
1280 return text;
1281 return p + 1;
1282 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001283 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001284}
1285
Denis Vlasenkof882f082007-12-23 02:36:51 +00001286static char *end_line(char *p) // return pointer to NL of cur line line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001287{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001288 if (p < end - 1) {
1289 p = memchr(p, '\n', end - p - 1);
1290 if (!p)
1291 return end - 1;
1292 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001293 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001294}
1295
Denis Vlasenkof882f082007-12-23 02:36:51 +00001296static char *dollar_line(char *p) // return pointer to just before NL line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001297{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001298 p = end_line(p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001299 // Try to stay off of the Newline
1300 if (*p == '\n' && (p - begin_line(p)) > 0)
1301 p--;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001302 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001303}
1304
Denis Vlasenkof882f082007-12-23 02:36:51 +00001305static char *prev_line(char *p) // return pointer first char prev line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001306{
1307 p = begin_line(p); // goto begining of cur line
1308 if (p[-1] == '\n' && p > text)
1309 p--; // step to prev line
1310 p = begin_line(p); // goto begining of prev line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001311 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001312}
1313
Denis Vlasenkof882f082007-12-23 02:36:51 +00001314static char *next_line(char *p) // return pointer first char next line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001315{
1316 p = end_line(p);
1317 if (*p == '\n' && p < end - 1)
1318 p++; // step to next line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001319 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001320}
1321
1322//----- Text Information Routines ------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001323static char *end_screen(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001324{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001325 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001326 int cnt;
1327
1328 // find new bottom line
1329 q = screenbegin;
1330 for (cnt = 0; cnt < rows - 2; cnt++)
1331 q = next_line(q);
1332 q = end_line(q);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001333 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001334}
1335
Denis Vlasenkof882f082007-12-23 02:36:51 +00001336// count line from start to stop
1337static int count_lines(char *start, char *stop)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001338{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001339 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001340 int cnt;
1341
Denis Vlasenkof882f082007-12-23 02:36:51 +00001342 if (stop < start) { // start and stop are backwards- reverse them
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001343 q = start;
1344 start = stop;
1345 stop = q;
1346 }
1347 cnt = 0;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001348 stop = end_line(stop);
1349 while (start <= stop && start <= end - 1) {
1350 start = end_line(start);
1351 if (*start == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001352 cnt++;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001353 start++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001354 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001355 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001356}
1357
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001358static char *find_line(int li) // find begining of line #li
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001359{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001360 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001361
1362 for (q = text; li > 1; li--) {
1363 q = next_line(q);
1364 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001365 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001366}
1367
1368//----- Dot Movement Routines ----------------------------------
1369static void dot_left(void)
1370{
1371 if (dot > text && dot[-1] != '\n')
1372 dot--;
1373}
1374
1375static void dot_right(void)
1376{
1377 if (dot < end - 1 && *dot != '\n')
1378 dot++;
1379}
1380
1381static void dot_begin(void)
1382{
1383 dot = begin_line(dot); // return pointer to first char cur line
1384}
1385
1386static void dot_end(void)
1387{
1388 dot = end_line(dot); // return pointer to last char cur line
1389}
1390
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001391static char *move_to_col(char *p, int l)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001392{
1393 int co;
1394
1395 p = begin_line(p);
1396 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001397 while (co < l && p < end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001398 if (*p == '\n') //vda || *p == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001399 break;
1400 if (*p == '\t') {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001401 co = next_tabstop(co);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001402 } else if (*p < ' ' || *p == 127) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001403 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001404 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001405 co++;
1406 p++;
1407 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001408 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001409}
1410
1411static void dot_next(void)
1412{
1413 dot = next_line(dot);
1414}
1415
1416static void dot_prev(void)
1417{
1418 dot = prev_line(dot);
1419}
1420
1421static void dot_scroll(int cnt, int dir)
1422{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001423 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001424
1425 for (; cnt > 0; cnt--) {
1426 if (dir < 0) {
1427 // scroll Backwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001428 // ctrl-Y scroll up one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001429 screenbegin = prev_line(screenbegin);
1430 } else {
1431 // scroll Forwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001432 // ctrl-E scroll down one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001433 screenbegin = next_line(screenbegin);
1434 }
1435 }
1436 // make sure "dot" stays on the screen so we dont scroll off
1437 if (dot < screenbegin)
1438 dot = screenbegin;
1439 q = end_screen(); // find new bottom line
1440 if (dot > q)
1441 dot = begin_line(q); // is dot is below bottom line?
1442 dot_skip_over_ws();
1443}
1444
1445static void dot_skip_over_ws(void)
1446{
1447 // skip WS
1448 while (isspace(*dot) && *dot != '\n' && dot < end - 1)
1449 dot++;
1450}
1451
1452static void dot_delete(void) // delete the char at 'dot'
1453{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001454 text_hole_delete(dot, dot);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001455}
1456
Denis Vlasenkof882f082007-12-23 02:36:51 +00001457static char *bound_dot(char *p) // make sure text[0] <= P < "end"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001458{
1459 if (p >= end && end > text) {
1460 p = end - 1;
1461 indicate_error('1');
1462 }
1463 if (p < text) {
1464 p = text;
1465 indicate_error('2');
1466 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001467 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001468}
1469
1470//----- Helper Utility Routines --------------------------------
1471
1472//----------------------------------------------------------------
1473//----- Char Routines --------------------------------------------
1474/* Chars that are part of a word-
1475 * 0123456789_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
1476 * Chars that are Not part of a word (stoppers)
1477 * !"#$%&'()*+,-./:;<=>?@[\]^`{|}~
1478 * Chars that are WhiteSpace
1479 * TAB NEWLINE VT FF RETURN SPACE
1480 * DO NOT COUNT NEWLINE AS WHITESPACE
1481 */
1482
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001483static char *new_screen(int ro, int co)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001484{
1485 int li;
1486
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001487 free(screen);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001488 screensize = ro * co + 8;
Denis Vlasenkob95636c2006-12-19 23:36:04 +00001489 screen = xmalloc(screensize);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001490 // initialize the new screen. assume this will be a empty file.
1491 screen_erase();
Eric Andersenaff114c2004-04-14 17:51:38 +00001492 // non-existent text[] lines start with a tilde (~).
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001493 for (li = 1; li < ro - 1; li++) {
1494 screen[(li * co) + 0] = '~';
1495 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001496 return screen;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001497}
1498
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001499#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001500static int mycmp(const char * s1, const char * s2, int len)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001501{
1502 int i;
1503
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001504 i = strncmp(s1, s2, len);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001505 if (ENABLE_FEATURE_VI_SETOPTS && ignorecase) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001506 i = strncasecmp(s1, s2, len);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001507 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001508 return i;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001509}
1510
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001511// search for pattern starting at p
1512static char *char_search(char * p, const char * pat, int dir, int range)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001513{
1514#ifndef REGEX_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001515 char *start, *stop;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001516 int len;
1517
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001518 len = strlen(pat);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001519 if (dir == FORWARD) {
1520 stop = end - 1; // assume range is p - end-1
1521 if (range == LIMITED)
1522 stop = next_line(p); // range is to next line
1523 for (start = p; start < stop; start++) {
1524 if (mycmp(start, pat, len) == 0) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001525 return start;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001526 }
1527 }
1528 } else if (dir == BACK) {
1529 stop = text; // assume range is text - p
1530 if (range == LIMITED)
1531 stop = prev_line(p); // range is to prev line
1532 for (start = p - len; start >= stop; start--) {
1533 if (mycmp(start, pat, len) == 0) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001534 return start;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001535 }
1536 }
1537 }
1538 // pattern not found
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001539 return NULL;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001540#else /* REGEX_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001541 char *q;
1542 struct re_pattern_buffer preg;
1543 int i;
1544 int size, range;
1545
1546 re_syntax_options = RE_SYNTAX_POSIX_EXTENDED;
1547 preg.translate = 0;
1548 preg.fastmap = 0;
1549 preg.buffer = 0;
1550 preg.allocated = 0;
1551
1552 // assume a LIMITED forward search
1553 q = next_line(p);
1554 q = end_line(q);
1555 q = end - 1;
1556 if (dir == BACK) {
1557 q = prev_line(p);
1558 q = text;
1559 }
1560 // count the number of chars to search over, forward or backward
1561 size = q - p;
1562 if (size < 0)
1563 size = p - q;
1564 // RANGE could be negative if we are searching backwards
1565 range = q - p;
1566
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001567 q = re_compile_pattern(pat, strlen(pat), &preg);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001568 if (q != 0) {
1569 // The pattern was not compiled
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001570 status_line_bold("bad search pattern: \"%s\": %s", pat, q);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001571 i = 0; // return p if pattern not compiled
1572 goto cs1;
1573 }
1574
1575 q = p;
1576 if (range < 0) {
1577 q = p - size;
1578 if (q < text)
1579 q = text;
1580 }
1581 // search for the compiled pattern, preg, in p[]
1582 // range < 0- search backward
1583 // range > 0- search forward
1584 // 0 < start < size
1585 // re_search() < 0 not found or error
1586 // re_search() > 0 index of found pattern
1587 // struct pattern char int int int struct reg
1588 // re_search (*pattern_buffer, *string, size, start, range, *regs)
1589 i = re_search(&preg, q, size, 0, range, 0);
1590 if (i == -1) {
1591 p = 0;
1592 i = 0; // return NULL if pattern not found
1593 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001594 cs1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001595 if (dir == FORWARD) {
1596 p = p + i;
1597 } else {
1598 p = p - i;
1599 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001600 return p;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001601#endif /* REGEX_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001602}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001603#endif /* FEATURE_VI_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001604
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001605static char *char_insert(char * p, char c) // insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001606{
1607 if (c == 22) { // Is this an ctrl-V?
1608 p = stupid_insert(p, '^'); // use ^ to indicate literal next
1609 p--; // backup onto ^
1610 refresh(FALSE); // show the ^
1611 c = get_one_char();
1612 *p = c;
1613 p++;
Paul Fox8552aec2005-09-16 12:20:05 +00001614 file_modified++; // has the file been modified
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001615 } else if (c == 27) { // Is this an ESC?
1616 cmd_mode = 0;
1617 cmdcnt = 0;
1618 end_cmd_q(); // stop adding to q
Paul Fox8552aec2005-09-16 12:20:05 +00001619 last_status_cksum = 0; // force status update
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001620 if ((p[-1] != '\n') && (dot > text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001621 p--;
1622 }
Paul Foxd13b90b2005-07-18 22:17:25 +00001623 } else if (c == erase_char || c == 8 || c == 127) { // Is this a BS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001624 // 123456789
1625 if ((p[-1] != '\n') && (dot>text)) {
1626 p--;
1627 p = text_hole_delete(p, p); // shrink buffer 1 char
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001628 }
1629 } else {
1630 // insert a char into text[]
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001631 char *sp; // "save p"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001632
1633 if (c == 13)
1634 c = '\n'; // translate \r to \n
1635 sp = p; // remember addr of insert
1636 p = stupid_insert(p, c); // insert the char
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001637#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001638 if (showmatch && strchr(")]}", *sp) != NULL) {
1639 showmatching(sp);
1640 }
1641 if (autoindent && c == '\n') { // auto indent the new line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001642 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001643
1644 q = prev_line(p); // use prev line as templet
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001645 for (; isblank(*q); q++) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001646 p = stupid_insert(p, *q); // insert the char
1647 }
1648 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001649#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001650 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001651 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001652}
1653
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001654static char *stupid_insert(char * p, char c) // stupidly insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001655{
1656 p = text_hole_make(p, 1);
1657 if (p != 0) {
1658 *p = c;
Paul Fox8552aec2005-09-16 12:20:05 +00001659 file_modified++; // has the file been modified
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001660 p++;
1661 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001662 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001663}
1664
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001665static char find_range(char ** start, char ** stop, char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001666{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001667 char *save_dot, *p, *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001668 int cnt;
1669
1670 save_dot = dot;
1671 p = q = dot;
1672
1673 if (strchr("cdy><", c)) {
1674 // these cmds operate on whole lines
1675 p = q = begin_line(p);
1676 for (cnt = 1; cnt < cmdcnt; cnt++) {
1677 q = next_line(q);
1678 }
1679 q = end_line(q);
1680 } else if (strchr("^%$0bBeEft", c)) {
1681 // These cmds operate on char positions
1682 do_cmd(c); // execute movement cmd
1683 q = dot;
1684 } else if (strchr("wW", c)) {
1685 do_cmd(c); // execute movement cmd
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001686 // if we are at the next word's first char
1687 // step back one char
1688 // but check the possibilities when it is true
Eric Andersen5cc90ea2004-02-06 10:36:08 +00001689 if (dot > text && ((isspace(dot[-1]) && !isspace(dot[0]))
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001690 || (ispunct(dot[-1]) && !ispunct(dot[0]))
1691 || (isalnum(dot[-1]) && !isalnum(dot[0]))))
1692 dot--; // move back off of next word
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001693 if (dot > text && *dot == '\n')
1694 dot--; // stay off NL
1695 q = dot;
1696 } else if (strchr("H-k{", c)) {
1697 // these operate on multi-lines backwards
1698 q = end_line(dot); // find NL
1699 do_cmd(c); // execute movement cmd
1700 dot_begin();
1701 p = dot;
1702 } else if (strchr("L+j}\r\n", c)) {
1703 // these operate on multi-lines forwards
1704 p = begin_line(dot);
1705 do_cmd(c); // execute movement cmd
1706 dot_end(); // find NL
1707 q = dot;
1708 } else {
1709 c = 27; // error- return an ESC char
1710 //break;
1711 }
1712 *start = p;
1713 *stop = q;
1714 if (q < p) {
1715 *start = q;
1716 *stop = p;
1717 }
1718 dot = save_dot;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001719 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001720}
1721
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001722static int st_test(char * p, int type, int dir, char * tested)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001723{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001724 char c, c0, ci;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001725 int test, inc;
1726
1727 inc = dir;
1728 c = c0 = p[0];
1729 ci = p[inc];
1730 test = 0;
1731
1732 if (type == S_BEFORE_WS) {
1733 c = ci;
1734 test = ((!isspace(c)) || c == '\n');
1735 }
1736 if (type == S_TO_WS) {
1737 c = c0;
1738 test = ((!isspace(c)) || c == '\n');
1739 }
1740 if (type == S_OVER_WS) {
1741 c = c0;
1742 test = ((isspace(c)));
1743 }
1744 if (type == S_END_PUNCT) {
1745 c = ci;
1746 test = ((ispunct(c)));
1747 }
1748 if (type == S_END_ALNUM) {
1749 c = ci;
1750 test = ((isalnum(c)) || c == '_');
1751 }
1752 *tested = c;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001753 return test;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001754}
1755
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001756static char *skip_thing(char * p, int linecnt, int dir, int type)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001757{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001758 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001759
1760 while (st_test(p, type, dir, &c)) {
1761 // make sure we limit search to correct number of lines
1762 if (c == '\n' && --linecnt < 1)
1763 break;
1764 if (dir >= 0 && p >= end - 1)
1765 break;
1766 if (dir < 0 && p <= text)
1767 break;
1768 p += dir; // move to next char
1769 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001770 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001771}
1772
1773// find matching char of pair () [] {}
Bernhard Reutner-Fischerd24d5c82007-10-01 18:04:42 +00001774static char *find_pair(char * p, const char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001775{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001776 char match, *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001777 int dir, level;
1778
1779 match = ')';
1780 level = 1;
1781 dir = 1; // assume forward
1782 switch (c) {
1783 case '(':
1784 match = ')';
1785 break;
1786 case '[':
1787 match = ']';
1788 break;
1789 case '{':
1790 match = '}';
1791 break;
1792 case ')':
1793 match = '(';
1794 dir = -1;
1795 break;
1796 case ']':
1797 match = '[';
1798 dir = -1;
1799 break;
1800 case '}':
1801 match = '{';
1802 dir = -1;
1803 break;
1804 }
1805 for (q = p + dir; text <= q && q < end; q += dir) {
1806 // look for match, count levels of pairs (( ))
1807 if (*q == c)
1808 level++; // increase pair levels
1809 if (*q == match)
1810 level--; // reduce pair level
1811 if (level == 0)
1812 break; // found matching pair
1813 }
1814 if (level != 0)
1815 q = NULL; // indicate no match
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001816 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001817}
1818
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001819#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001820// show the matching char of a pair, () [] {}
Denis Vlasenkof882f082007-12-23 02:36:51 +00001821static void showmatching(char *p)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001822{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001823 char *q, *save_dot;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001824
1825 // we found half of a pair
1826 q = find_pair(p, *p); // get loc of matching char
1827 if (q == NULL) {
1828 indicate_error('3'); // no matching char
1829 } else {
1830 // "q" now points to matching pair
1831 save_dot = dot; // remember where we are
1832 dot = q; // go to new loc
1833 refresh(FALSE); // let the user see it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001834 mysleep(40); // give user some time
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001835 dot = save_dot; // go back to old loc
1836 refresh(FALSE);
1837 }
1838}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001839#endif /* FEATURE_VI_SETOPTS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001840
1841// open a hole in text[]
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001842static char *text_hole_make(char * p, int size) // at "p", make a 'size' byte hole
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001843{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001844 char *src, *dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001845 int cnt;
1846
1847 if (size <= 0)
1848 goto thm0;
1849 src = p;
1850 dest = p + size;
1851 cnt = end - src; // the rest of buffer
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001852 if ( ((end + size) >= (text + text_size)) // TODO: realloc here
1853 || memmove(dest, src, cnt) != dest) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001854 status_line_bold("can't create room for new characters");
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001855 p = NULL;
1856 goto thm0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001857 }
1858 memset(p, ' ', size); // clear new hole
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001859 end += size; // adjust the new END
Paul Fox8552aec2005-09-16 12:20:05 +00001860 file_modified++; // has the file been modified
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001861 thm0:
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001862 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001863}
1864
1865// close a hole in text[]
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00001866static char *text_hole_delete(char * p, char * q) // delete "p" through "q", inclusive
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001867{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001868 char *src, *dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001869 int cnt, hole_size;
1870
1871 // move forwards, from beginning
1872 // assume p <= q
1873 src = q + 1;
1874 dest = p;
1875 if (q < p) { // they are backward- swap them
1876 src = p + 1;
1877 dest = q;
1878 }
1879 hole_size = q - p + 1;
1880 cnt = end - src;
1881 if (src < text || src > end)
1882 goto thd0;
1883 if (dest < text || dest >= end)
1884 goto thd0;
1885 if (src >= end)
1886 goto thd_atend; // just delete the end of the buffer
1887 if (memmove(dest, src, cnt) != dest) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001888 status_line_bold("can't delete the character");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001889 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001890 thd_atend:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001891 end = end - hole_size; // adjust the new END
1892 if (dest >= end)
1893 dest = end - 1; // make sure dest in below end-1
1894 if (end <= text)
1895 dest = end = text; // keep pointers valid
Paul Fox8552aec2005-09-16 12:20:05 +00001896 file_modified++; // has the file been modified
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001897 thd0:
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001898 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001899}
1900
1901// copy text into register, then delete text.
1902// if dist <= 0, do not include, or go past, a NewLine
1903//
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001904static char *yank_delete(char * start, char * stop, int dist, int yf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001905{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001906 char *p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001907
1908 // make sure start <= stop
1909 if (start > stop) {
1910 // they are backwards, reverse them
1911 p = start;
1912 start = stop;
1913 stop = p;
1914 }
1915 if (dist <= 0) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +00001916 // we cannot cross NL boundaries
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001917 p = start;
1918 if (*p == '\n')
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001919 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001920 // dont go past a NewLine
1921 for (; p + 1 <= stop; p++) {
1922 if (p[1] == '\n') {
1923 stop = p; // "stop" just before NewLine
1924 break;
1925 }
1926 }
1927 }
1928 p = start;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001929#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001930 text_yank(start, stop, YDreg);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001931#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001932 if (yf == YANKDEL) {
1933 p = text_hole_delete(start, stop);
1934 } // delete lines
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001935 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001936}
1937
1938static void show_help(void)
1939{
1940 puts("These features are available:"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001941#if ENABLE_FEATURE_VI_SEARCH
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001942 "\n\tPattern searches with / and ?"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001943#endif
1944#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001945 "\n\tLast command repeat with \'.\'"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001946#endif
1947#if ENABLE_FEATURE_VI_YANKMARK
Bernhard Reutner-Fischerd24d5c82007-10-01 18:04:42 +00001948 "\n\tLine marking with 'x"
1949 "\n\tNamed buffers with \"x"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001950#endif
1951#if ENABLE_FEATURE_VI_READONLY
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001952 "\n\tReadonly if vi is called as \"view\""
1953 "\n\tReadonly with -R command line arg"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001954#endif
1955#if ENABLE_FEATURE_VI_SET
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001956 "\n\tSome colon mode commands with \':\'"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001957#endif
1958#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001959 "\n\tSettable options with \":set\""
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001960#endif
1961#if ENABLE_FEATURE_VI_USE_SIGNALS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001962 "\n\tSignal catching- ^C"
1963 "\n\tJob suspend and resume with ^Z"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001964#endif
1965#if ENABLE_FEATURE_VI_WIN_RESIZE
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001966 "\n\tAdapt to window re-sizes"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001967#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001968 );
1969}
1970
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001971#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001972static void start_new_cmd_q(char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001973{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001974 // get buffer for new cmd
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001975 if (!last_modifying_cmd)
1976 last_modifying_cmd = xzalloc(MAX_INPUT_LEN);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001977 // if there is a current cmd count put it in the buffer first
1978 if (cmdcnt > 0)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001979 sprintf(last_modifying_cmd, "%d%c", cmdcnt, c);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001980 else { // just save char c onto queue
Paul Foxd957b952005-11-28 18:07:53 +00001981 last_modifying_cmd[0] = c;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001982 last_modifying_cmd[1] = '\0';
1983 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001984 adding2q = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001985}
1986
1987static void end_cmd_q(void)
1988{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001989#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001990 YDreg = 26; // go back to default Yank/Delete reg
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001991#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001992 adding2q = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001993}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001994#endif /* FEATURE_VI_DOT_CMD */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001995
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001996#if ENABLE_FEATURE_VI_YANKMARK \
1997 || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) \
1998 || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001999static char *string_insert(char * p, char * s) // insert the string at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002000{
2001 int cnt, i;
2002
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002003 i = strlen(s);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002004 if (text_hole_make(p, i)) {
2005 strncpy(p, s, i);
2006 for (cnt = 0; *s != '\0'; s++) {
2007 if (*s == '\n')
2008 cnt++;
2009 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002010#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002011 status_line("Put %d lines (%d chars) from [%c]", cnt, i, what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002012#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002013 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002014 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002015}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002016#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002017
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002018#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002019static char *text_yank(char * p, char * q, int dest) // copy text into a register
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002020{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002021 char *t;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002022 int cnt;
2023
2024 if (q < p) { // they are backwards- reverse them
2025 t = q;
2026 q = p;
2027 p = t;
2028 }
2029 cnt = q - p + 1;
2030 t = reg[dest];
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00002031 free(t); // if already a yank register, free it
Denis Vlasenkob95636c2006-12-19 23:36:04 +00002032 t = xmalloc(cnt + 1); // get a new register
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002033 memset(t, '\0', cnt + 1); // clear new text[]
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002034 strncpy(t, p, cnt); // copy text[] into bufer
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002035 reg[dest] = t;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002036 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002037}
2038
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002039static char what_reg(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002040{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002041 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002042
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002043 c = 'D'; // default to D-reg
2044 if (0 <= YDreg && YDreg <= 25)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002045 c = 'a' + (char) YDreg;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002046 if (YDreg == 26)
2047 c = 'D';
2048 if (YDreg == 27)
2049 c = 'U';
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002050 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002051}
2052
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002053static void check_context(char cmd)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002054{
2055 // A context is defined to be "modifying text"
2056 // Any modifying command establishes a new context.
2057
2058 if (dot < context_start || dot > context_end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002059 if (strchr(modifying_cmds, cmd) != NULL) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002060 // we are trying to modify text[]- make this the current context
2061 mark[27] = mark[26]; // move cur to prev
2062 mark[26] = dot; // move local to cur
2063 context_start = prev_line(prev_line(dot));
2064 context_end = next_line(next_line(dot));
2065 //loiter= start_loiter= now;
2066 }
2067 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002068}
2069
Denis Vlasenkof882f082007-12-23 02:36:51 +00002070static char *swap_context(char *p) // goto new context for '' command make this the current context
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002071{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002072 char *tmp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002073
2074 // the current context is in mark[26]
2075 // the previous context is in mark[27]
2076 // only swap context if other context is valid
2077 if (text <= mark[27] && mark[27] <= end - 1) {
2078 tmp = mark[27];
2079 mark[27] = mark[26];
2080 mark[26] = tmp;
2081 p = mark[26]; // where we are going- previous context
2082 context_start = prev_line(prev_line(prev_line(p)));
2083 context_end = next_line(next_line(next_line(p)));
2084 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002085 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002086}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002087#endif /* FEATURE_VI_YANKMARK */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002088
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002089//----- Set terminal attributes --------------------------------
2090static void rawmode(void)
2091{
2092 tcgetattr(0, &term_orig);
2093 term_vi = term_orig;
2094 term_vi.c_lflag &= (~ICANON & ~ECHO); // leave ISIG ON- allow intr's
2095 term_vi.c_iflag &= (~IXON & ~ICRNL);
2096 term_vi.c_oflag &= (~ONLCR);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002097 term_vi.c_cc[VMIN] = 1;
2098 term_vi.c_cc[VTIME] = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002099 erase_char = term_vi.c_cc[VERASE];
2100 tcsetattr(0, TCSANOW, &term_vi);
2101}
2102
2103static void cookmode(void)
2104{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002105 fflush(stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002106 tcsetattr(0, TCSANOW, &term_orig);
2107}
2108
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002109//----- Come here when we get a window resize signal ---------
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002110#if ENABLE_FEATURE_VI_USE_SIGNALS
"Vladimir N. Oleynik"cd473dd2006-01-30 13:41:53 +00002111static void winch_sig(int sig ATTRIBUTE_UNUSED)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002112{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002113 // FIXME: do it in main loop!!!
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002114 signal(SIGWINCH, winch_sig);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002115 if (ENABLE_FEATURE_VI_WIN_RESIZE) {
Denis Vlasenko621204b2006-10-27 09:03:24 +00002116 get_terminal_width_height(0, &columns, &rows);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002117 if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS;
2118 if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS;
2119 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002120 new_screen(rows, columns); // get memory for virtual screen
2121 redraw(TRUE); // re-draw the screen
2122}
2123
2124//----- Come here when we get a continue signal -------------------
"Vladimir N. Oleynik"cd473dd2006-01-30 13:41:53 +00002125static void cont_sig(int sig ATTRIBUTE_UNUSED)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002126{
2127 rawmode(); // terminal to "raw"
Paul Fox8552aec2005-09-16 12:20:05 +00002128 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002129 redraw(TRUE); // re-draw the screen
2130
2131 signal(SIGTSTP, suspend_sig);
2132 signal(SIGCONT, SIG_DFL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002133 kill(my_pid, SIGCONT);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002134}
2135
2136//----- Come here when we get a Suspend signal -------------------
"Vladimir N. Oleynik"cd473dd2006-01-30 13:41:53 +00002137static void suspend_sig(int sig ATTRIBUTE_UNUSED)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002138{
2139 place_cursor(rows - 1, 0, FALSE); // go to bottom of screen
2140 clear_to_eol(); // Erase to end of line
2141 cookmode(); // terminal to "cooked"
2142
2143 signal(SIGCONT, cont_sig);
2144 signal(SIGTSTP, SIG_DFL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002145 kill(my_pid, SIGTSTP);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002146}
2147
2148//----- Come here when we get a signal ---------------------------
2149static void catch_sig(int sig)
2150{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002151 signal(SIGINT, catch_sig);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002152 if (sig)
"Vladimir N. Oleynik"cd473dd2006-01-30 13:41:53 +00002153 longjmp(restart, sig);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002154}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002155#endif /* FEATURE_VI_USE_SIGNALS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002156
2157static int mysleep(int hund) // sleep for 'h' 1/100 seconds
2158{
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002159 struct pollfd pfd[1];
Denis Vlasenkocd5c7862007-05-17 16:37:22 +00002160
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002161 pfd[0].fd = 0;
2162 pfd[0].events = POLLIN;
Denis Vlasenko5d61e712007-09-27 10:09:59 +00002163 return safe_poll(pfd, 1, hund*10) > 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002164}
2165
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002166static int chars_to_parse;
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002167
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002168//----- IO Routines --------------------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002169static char readit(void) // read (maybe cursor) key from stdin
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002170{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002171 char c;
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002172 int n;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002173 struct esc_cmds {
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002174 const char seq[4];
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002175 char val;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002176 };
2177
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002178 static const struct esc_cmds esccmds[] = {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002179 {"OA" , VI_K_UP }, // cursor key Up
2180 {"OB" , VI_K_DOWN }, // cursor key Down
2181 {"OC" , VI_K_RIGHT }, // Cursor Key Right
2182 {"OD" , VI_K_LEFT }, // cursor key Left
2183 {"OH" , VI_K_HOME }, // Cursor Key Home
2184 {"OF" , VI_K_END }, // Cursor Key End
2185 {"[A" , VI_K_UP }, // cursor key Up
2186 {"[B" , VI_K_DOWN }, // cursor key Down
2187 {"[C" , VI_K_RIGHT }, // Cursor Key Right
2188 {"[D" , VI_K_LEFT }, // cursor key Left
2189 {"[H" , VI_K_HOME }, // Cursor Key Home
2190 {"[F" , VI_K_END }, // Cursor Key End
2191 {"[1~" , VI_K_HOME }, // Cursor Key Home
2192 {"[2~" , VI_K_INSERT }, // Cursor Key Insert
2193 {"[3~" , VI_K_DELETE }, // Cursor Key Delete
2194 {"[4~" , VI_K_END }, // Cursor Key End
2195 {"[5~" , VI_K_PAGEUP }, // Cursor Key Page Up
2196 {"[6~" , VI_K_PAGEDOWN}, // Cursor Key Page Down
2197 {"OP" , VI_K_FUN1 }, // Function Key F1
2198 {"OQ" , VI_K_FUN2 }, // Function Key F2
2199 {"OR" , VI_K_FUN3 }, // Function Key F3
2200 {"OS" , VI_K_FUN4 }, // Function Key F4
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002201 // careful: these have no terminating NUL!
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002202 {"[11~", VI_K_FUN1 }, // Function Key F1
2203 {"[12~", VI_K_FUN2 }, // Function Key F2
2204 {"[13~", VI_K_FUN3 }, // Function Key F3
2205 {"[14~", VI_K_FUN4 }, // Function Key F4
2206 {"[15~", VI_K_FUN5 }, // Function Key F5
2207 {"[17~", VI_K_FUN6 }, // Function Key F6
2208 {"[18~", VI_K_FUN7 }, // Function Key F7
2209 {"[19~", VI_K_FUN8 }, // Function Key F8
2210 {"[20~", VI_K_FUN9 }, // Function Key F9
2211 {"[21~", VI_K_FUN10 }, // Function Key F10
2212 {"[23~", VI_K_FUN11 }, // Function Key F11
2213 {"[24~", VI_K_FUN12 }, // Function Key F12
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002214 };
Denis Vlasenko80b8b392007-06-25 10:55:35 +00002215 enum { ESCCMDS_COUNT = ARRAY_SIZE(esccmds) };
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002216
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002217 alarm(0); // turn alarm OFF while we wait for input
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002218 fflush(stdout);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002219 n = chars_to_parse;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002220 // get input from User- are there already input chars in Q?
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002221 if (n <= 0) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002222 // the Q is empty, wait for a typed char
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002223 n = safe_read(0, readbuffer, sizeof(readbuffer));
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002224 if (n < 0) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002225 if (errno == EBADF || errno == EFAULT || errno == EINVAL
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002226 || errno == EIO)
2227 editing = 0; // want to exit
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002228 errno = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002229 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002230 if (n <= 0)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002231 return 0; // error
2232 if (readbuffer[0] == 27) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002233 // This is an ESC char. Is this Esc sequence?
2234 // Could be bare Esc key. See if there are any
2235 // more chars to read after the ESC. This would
2236 // be a Function or Cursor Key sequence.
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002237 struct pollfd pfd[1];
2238 pfd[0].fd = 0;
2239 pfd[0].events = POLLIN;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002240 // keep reading while there are input chars, and room in buffer
2241 // for a complete ESC sequence (assuming 8 chars is enough)
2242 while (safe_poll(pfd, 1, 0) > 0 && n <= (sizeof(readbuffer) - 8)) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002243 // read the rest of the ESC string
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002244 int r = safe_read(0, readbuffer + n, sizeof(readbuffer) - n);
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002245 if (r > 0)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002246 n += r;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002247 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002248 }
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002249 chars_to_parse = n;
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002250 }
2251 c = readbuffer[0];
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002252 if (c == 27 && n > 1) {
2253 // Maybe cursor or function key?
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002254 const struct esc_cmds *eindex;
2255
2256 for (eindex = esccmds; eindex < &esccmds[ESCCMDS_COUNT]; eindex++) {
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002257 int cnt = strnlen(eindex->seq, 4);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002258 if (n <= cnt)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002259 continue;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002260 if (strncmp(eindex->seq, readbuffer + 1, cnt) != 0)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002261 continue;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002262 c = eindex->val; // magic char value
2263 n = cnt + 1; // squeeze out the ESC sequence
2264 goto found;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002265 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002266 // defined ESC sequence not found
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002267 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002268 n = 1;
2269 found:
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002270 // remove key sequence from Q
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002271 chars_to_parse -= n;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002272 memmove(readbuffer, readbuffer + n, sizeof(readbuffer) - n);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002273 alarm(3); // we are done waiting for input, turn alarm ON
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002274 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002275}
2276
2277//----- IO Routines --------------------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002278static char get_one_char(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002279{
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002280 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002281
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002282#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002283 // ! adding2q && ioq == 0 read()
2284 // ! adding2q && ioq != 0 *ioq
2285 // adding2q *last_modifying_cmd= read()
2286 if (!adding2q) {
2287 // we are not adding to the q.
2288 // but, we may be reading from a q
2289 if (ioq == 0) {
2290 // there is no current q, read from STDIN
2291 c = readit(); // get the users input
2292 } else {
2293 // there is a queue to get chars from first
2294 c = *ioq++;
2295 if (c == '\0') {
2296 // the end of the q, read from STDIN
2297 free(ioq_start);
2298 ioq_start = ioq = 0;
2299 c = readit(); // get the users input
2300 }
2301 }
2302 } else {
2303 // adding STDIN chars to q
2304 c = readit(); // get the users input
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002305 if (last_modifying_cmd != NULL) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002306 int len = strlen(last_modifying_cmd);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002307 if (len >= MAX_INPUT_LEN - 1) {
2308 status_line_bold("last_modifying_cmd overrun");
Eric Andersenfda2b7f2002-10-26 10:19:19 +00002309 } else {
2310 // add new char to q
2311 last_modifying_cmd[len] = c;
2312 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002313 }
2314 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002315#else
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002316 c = readit(); // get the users input
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002317#endif /* FEATURE_VI_DOT_CMD */
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002318 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002319}
2320
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002321// Get input line (uses "status line" area)
2322static char *get_input_line(const char *prompt)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002323{
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002324 static char *buf; // [MAX_INPUT_LEN]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002325
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002326 char c;
2327 int i;
2328
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002329 if (!buf) buf = xmalloc(MAX_INPUT_LEN);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002330
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002331 strcpy(buf, prompt);
Paul Fox8552aec2005-09-16 12:20:05 +00002332 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002333 place_cursor(rows - 1, 0, FALSE); // go to Status line, bottom of screen
2334 clear_to_eol(); // clear the line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002335 write1(prompt); // write out the :, /, or ? prompt
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002336
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002337 i = strlen(buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002338 while (i < MAX_INPUT_LEN) {
2339 c = get_one_char();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002340 if (c == '\n' || c == '\r' || c == 27)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002341 break; // this is end of input
Paul Foxf2de0b72005-09-13 22:20:37 +00002342 if (c == erase_char || c == 8 || c == 127) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002343 // user wants to erase prev char
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002344 buf[--i] = '\0';
2345 write1("\b \b"); // erase char on screen
2346 if (i <= 0) // user backs up before b-o-l, exit
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002347 break;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002348 } else {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002349 buf[i] = c;
2350 buf[++i] = '\0';
2351 bb_putchar(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002352 }
2353 }
2354 refresh(FALSE);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002355 return buf;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002356}
2357
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002358static int file_size(const char *fn) // what is the byte size of "fn"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002359{
2360 struct stat st_buf;
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002361 int cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002362
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002363 cnt = -1;
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002364 if (fn && fn[0] && stat(fn, &st_buf) == 0) // see if file exists
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002365 cnt = (int) st_buf.st_size;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002366 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002367}
2368
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002369static int file_insert(const char * fn, char *p
2370 USE_FEATURE_VI_READONLY(, int update_ro_status))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002371{
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002372 int cnt = -1;
2373 int fd, size;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002374 struct stat statbuf;
2375
2376 /* Validate file */
2377 if (stat(fn, &statbuf) < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002378 status_line_bold("\"%s\" %s", fn, strerror(errno));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002379 goto fi0;
2380 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002381 if ((statbuf.st_mode & S_IFREG) == 0) {
2382 // This is not a regular file
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002383 status_line_bold("\"%s\" Not a regular file", fn);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002384 goto fi0;
2385 }
2386 /* // this check is done by open()
2387 if ((statbuf.st_mode & (S_IRUSR | S_IRGRP | S_IROTH)) == 0) {
2388 // dont have any read permissions
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002389 status_line_bold("\"%s\" Not readable", fn);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002390 goto fi0;
2391 }
2392 */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002393 if (p < text || p > end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002394 status_line_bold("Trying to insert file outside of memory");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002395 goto fi0;
2396 }
2397
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002398 // read file to buffer
2399 fd = open(fn, O_RDONLY);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002400 if (fd < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002401 status_line_bold("\"%s\" %s", fn, strerror(errno));
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002402 goto fi0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002403 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002404 size = statbuf.st_size;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002405 p = text_hole_make(p, size);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002406 if (p == NULL)
2407 goto fi0;
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002408 cnt = safe_read(fd, p, size);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002409 if (cnt < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002410 status_line_bold("\"%s\" %s", fn, strerror(errno));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002411 p = text_hole_delete(p, p + size - 1); // un-do buffer insert
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002412 } else if (cnt < size) {
2413 // There was a partial read, shrink unused space text[]
2414 p = text_hole_delete(p + cnt, p + (size - cnt) - 1); // un-do buffer insert
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002415 status_line_bold("cannot read all of file \"%s\"", fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002416 }
2417 if (cnt >= size)
Paul Fox8552aec2005-09-16 12:20:05 +00002418 file_modified++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002419 close(fd);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002420 fi0:
Denis Vlasenko856be772007-08-17 08:29:48 +00002421#if ENABLE_FEATURE_VI_READONLY
2422 if (update_ro_status
2423 && ((access(fn, W_OK) < 0) ||
2424 /* root will always have access()
2425 * so we check fileperms too */
2426 !(statbuf.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH))
2427 )
2428 ) {
Denis Vlasenko2f6ae432007-07-19 22:50:47 +00002429 SET_READONLY_FILE(readonly_mode);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002430 }
Denis Vlasenko856be772007-08-17 08:29:48 +00002431#endif
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002432 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002433}
2434
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002435
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002436static int file_write(char * fn, char * first, char * last)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002437{
2438 int fd, cnt, charcnt;
2439
2440 if (fn == 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002441 status_line_bold("No current filename");
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002442 return -2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002443 }
2444 charcnt = 0;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002445 fd = open(fn, (O_WRONLY | O_CREAT | O_TRUNC), 0666);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002446 if (fd < 0)
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002447 return -1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002448 cnt = last - first + 1;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002449 charcnt = full_write(fd, first, cnt);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002450 if (charcnt == cnt) {
2451 // good write
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002452 //file_modified = FALSE; // the file has not been modified
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002453 } else {
2454 charcnt = 0;
2455 }
2456 close(fd);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002457 return charcnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002458}
2459
2460//----- Terminal Drawing ---------------------------------------
2461// The terminal is made up of 'rows' line of 'columns' columns.
Eric Andersenaff114c2004-04-14 17:51:38 +00002462// classically this would be 24 x 80.
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002463// screen coordinates
2464// 0,0 ... 0,79
2465// 1,0 ... 1,79
2466// . ... .
2467// . ... .
2468// 22,0 ... 22,79
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002469// 23,0 ... 23,79 <- status line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002470
2471//----- Move the cursor to row x col (count from 0, not 1) -------
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002472static void place_cursor(int row, int col, int optimize)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002473{
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002474 char cm1[sizeof(CMrc) + sizeof(int)*3 * 2];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002475 char *cm;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002476
2477 if (row < 0) row = 0;
2478 if (row >= rows) row = rows - 1;
2479 if (col < 0) col = 0;
2480 if (col >= columns) col = columns - 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002481
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002482 //----- 1. Try the standard terminal ESC sequence
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002483 sprintf(cm1, CMrc, row + 1, col + 1);
2484 cm = cm1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002485
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002486#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002487 if (optimize && col < 16) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002488 enum {
2489 SZ_UP = sizeof(CMup),
2490 SZ_DN = sizeof(CMdown),
2491 SEQ_SIZE = SZ_UP > SZ_DN ? SZ_UP : SZ_DN,
2492 };
2493 char cm2[SEQ_SIZE * 5 + 32]; // bigger than worst case size
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002494 char *screenp;
2495 int Rrow = last_row;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002496 int diff = Rrow - row;
2497
2498 if (diff < -5 || diff > 5)
2499 goto skip;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002500
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002501 //----- find the minimum # of chars to move cursor -------------
2502 //----- 2. Try moving with discreet chars (Newline, [back]space, ...)
2503 cm2[0] = '\0';
2504
2505 // move to the correct row
2506 while (row < Rrow) {
2507 // the cursor has to move up
2508 strcat(cm2, CMup);
2509 Rrow--;
2510 }
2511 while (row > Rrow) {
2512 // the cursor has to move down
2513 strcat(cm2, CMdown);
2514 Rrow++;
2515 }
2516
2517 // now move to the correct column
2518 strcat(cm2, "\r"); // start at col 0
2519 // just send out orignal source char to get to correct place
2520 screenp = &screen[row * columns]; // start of screen line
2521 strncat(cm2, screenp, col);
2522
2523 // pick the shortest cursor motion to send out
2524 if (strlen(cm2) < strlen(cm)) {
2525 cm = cm2;
2526 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002527 skip: ;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002528 }
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002529 last_row = row;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002530#endif /* FEATURE_VI_OPTIMIZE_CURSOR */
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002531 write1(cm);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002532}
2533
2534//----- Erase from cursor to end of line -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002535static void clear_to_eol(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002536{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002537 write1(Ceol); // Erase from cursor to end of line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002538}
2539
2540//----- Erase from cursor to end of screen -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002541static void clear_to_eos(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002542{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002543 write1(Ceos); // Erase from cursor to end of screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002544}
2545
2546//----- Start standout mode ------------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002547static void standout_start(void) // send "start reverse video" sequence
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002548{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002549 write1(SOs); // Start reverse video mode
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002550}
2551
2552//----- End standout mode --------------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002553static void standout_end(void) // send "end reverse video" sequence
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002554{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002555 write1(SOn); // End reverse video mode
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002556}
2557
2558//----- Flash the screen --------------------------------------
2559static void flash(int h)
2560{
2561 standout_start(); // send "start reverse video" sequence
2562 redraw(TRUE);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002563 mysleep(h);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002564 standout_end(); // send "end reverse video" sequence
2565 redraw(TRUE);
2566}
2567
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002568static void Indicate_Error(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002569{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002570#if ENABLE_FEATURE_VI_CRASHME
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002571 if (crashme > 0)
2572 return; // generate a random command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002573#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002574 if (!err_method) {
2575 write1(bell); // send out a bell character
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002576 } else {
2577 flash(10);
2578 }
2579}
2580
2581//----- Screen[] Routines --------------------------------------
2582//----- Erase the Screen[] memory ------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002583static void screen_erase(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002584{
2585 memset(screen, ' ', screensize); // clear new screen
2586}
2587
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002588static int bufsum(char *buf, int count)
Paul Fox8552aec2005-09-16 12:20:05 +00002589{
2590 int sum = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002591 char *e = buf + count;
2592
Paul Fox8552aec2005-09-16 12:20:05 +00002593 while (buf < e)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002594 sum += (unsigned char) *buf++;
Paul Fox8552aec2005-09-16 12:20:05 +00002595 return sum;
2596}
2597
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002598//----- Draw the status line at bottom of the screen -------------
2599static void show_status_line(void)
2600{
Paul Foxc3504852005-09-16 12:48:18 +00002601 int cnt = 0, cksum = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002602
Paul Fox8552aec2005-09-16 12:20:05 +00002603 // either we already have an error or status message, or we
2604 // create one.
2605 if (!have_status_msg) {
2606 cnt = format_edit_status();
2607 cksum = bufsum(status_buffer, cnt);
2608 }
2609 if (have_status_msg || ((cnt > 0 && last_status_cksum != cksum))) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002610 last_status_cksum = cksum; // remember if we have seen this line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002611 place_cursor(rows - 1, 0, FALSE); // put cursor on status line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002612 write1(status_buffer);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002613 clear_to_eol();
Paul Fox8552aec2005-09-16 12:20:05 +00002614 if (have_status_msg) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002615 if (((int)strlen(status_buffer) - (have_status_msg - 1)) >
Paul Fox8552aec2005-09-16 12:20:05 +00002616 (columns - 1) ) {
2617 have_status_msg = 0;
2618 Hit_Return();
2619 }
2620 have_status_msg = 0;
2621 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002622 place_cursor(crow, ccol, FALSE); // put cursor back in correct place
2623 }
Eric Andersena9eb33d2004-08-19 19:15:06 +00002624 fflush(stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002625}
2626
2627//----- format the status buffer, the bottom line of screen ------
Paul Fox8552aec2005-09-16 12:20:05 +00002628// format status buffer, with STANDOUT mode
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002629static void status_line_bold(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002630{
2631 va_list args;
2632
2633 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002634 strcpy(status_buffer, SOs); // Terminal standout mode on
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002635 vsprintf(status_buffer + sizeof(SOs)-1, format, args);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002636 strcat(status_buffer, SOn); // Terminal standout mode off
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002637 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00002638
2639 have_status_msg = 1 + sizeof(SOs) + sizeof(SOn) - 2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002640}
2641
Paul Fox8552aec2005-09-16 12:20:05 +00002642// format status buffer
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002643static void status_line(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002644{
2645 va_list args;
2646
2647 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002648 vsprintf(status_buffer, format, args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002649 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00002650
2651 have_status_msg = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002652}
2653
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002654// copy s to buf, convert unprintable
2655static void print_literal(char *buf, const char *s)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002656{
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002657 unsigned char c;
2658 char b[2];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002659
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002660 b[1] = '\0';
2661 buf[0] = '\0';
2662 if (!s[0])
2663 s = "(NULL)";
2664 for (; *s; s++) {
2665 int c_is_no_print;
2666
2667 c = *s;
2668 c_is_no_print = (c & 0x80) && !Isprint(c);
2669 if (c_is_no_print) {
2670 strcat(buf, SOn);
2671 c = '.';
2672 }
2673 if (c < ' ' || c == 127) {
2674 strcat(buf, "^");
2675 if (c == 127)
2676 c = '?';
2677 else
2678 c += '@';
2679 }
2680 b[0] = c;
2681 strcat(buf, b);
2682 if (c_is_no_print)
2683 strcat(buf, SOs);
2684 if (*s == '\n')
2685 strcat(buf, "$");
2686 if (strlen(buf) > MAX_INPUT_LEN - 10) // paranoia
2687 break;
2688 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002689}
2690
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002691static void not_implemented(const char *s)
2692{
2693 char buf[MAX_INPUT_LEN];
2694
2695 print_literal(buf, s);
2696 status_line_bold("\'%s\' is not implemented", buf);
2697}
2698
2699// show file status on status line
2700static int format_edit_status(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002701{
Paul Fox8552aec2005-09-16 12:20:05 +00002702 static int tot;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00002703 static const char cmd_mode_indicator[] ALIGN1 = "-IR-";
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002704 int cur, percent, ret, trunc_at;
2705
Paul Fox8552aec2005-09-16 12:20:05 +00002706 // file_modified is now a counter rather than a flag. this
2707 // helps reduce the amount of line counting we need to do.
2708 // (this will cause a mis-reporting of modified status
2709 // once every MAXINT editing operations.)
2710
2711 // it would be nice to do a similar optimization here -- if
2712 // we haven't done a motion that could have changed which line
2713 // we're on, then we shouldn't have to do this count_lines()
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002714 cur = count_lines(text, dot);
Paul Fox8552aec2005-09-16 12:20:05 +00002715
2716 // reduce counting -- the total lines can't have
2717 // changed if we haven't done any edits.
2718 if (file_modified != last_file_modified) {
2719 tot = cur + count_lines(dot, end - 1) - 1;
2720 last_file_modified = file_modified;
2721 }
2722
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002723 // current line percent
2724 // ------------- ~~ ----------
2725 // total lines 100
2726 if (tot > 0) {
2727 percent = (100 * cur) / tot;
2728 } else {
2729 cur = tot = 0;
2730 percent = 100;
2731 }
Eric Andersen0ef24c62005-07-18 10:32:59 +00002732
Paul Fox8552aec2005-09-16 12:20:05 +00002733 trunc_at = columns < STATUS_BUFFER_LEN-1 ?
2734 columns : STATUS_BUFFER_LEN-1;
2735
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002736 ret = snprintf(status_buffer, trunc_at+1,
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002737#if ENABLE_FEATURE_VI_READONLY
Paul Fox8552aec2005-09-16 12:20:05 +00002738 "%c %s%s%s %d/%d %d%%",
2739#else
2740 "%c %s%s %d/%d %d%%",
2741#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002742 cmd_mode_indicator[cmd_mode & 3],
2743 (current_filename != NULL ? current_filename : "No file"),
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002744#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002745 (readonly_mode ? " [Readonly]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00002746#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002747 (file_modified ? " [Modified]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00002748 cur, tot, percent);
2749
2750 if (ret >= 0 && ret < trunc_at)
2751 return ret; /* it all fit */
2752
2753 return trunc_at; /* had to truncate */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002754}
2755
2756//----- Force refresh of all Lines -----------------------------
2757static void redraw(int full_screen)
2758{
2759 place_cursor(0, 0, FALSE); // put cursor in correct place
2760 clear_to_eos(); // tel terminal to erase display
2761 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00002762 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002763 refresh(full_screen); // this will redraw the entire display
Paul Fox8552aec2005-09-16 12:20:05 +00002764 show_status_line();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002765}
2766
2767//----- Format a text[] line into a buffer ---------------------
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002768static char* format_line(char *src, int li)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002769{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002770 unsigned char c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002771 int co;
2772 int ofs = offset;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002773 char *dest = scr_out_buf; // [MAX_SCR_COLS + MAX_TABSTOP * 2]
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002774
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002775 c = '~'; // char in col 0 in non-existent lines is '~'
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002776 co = 0;
2777 while (co < columns + tabstop) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002778 // have we gone past the end?
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002779 if (src < end) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002780 c = *src++;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002781 if (c == '\n')
2782 break;
2783 if ((c & 0x80) && !Isprint(c)) {
2784 c = '.';
2785 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002786 if (c < ' ' || c == 0x7f) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002787 if (c == '\t') {
2788 c = ' ';
2789 // co % 8 != 7
2790 while ((co % tabstop) != (tabstop - 1)) {
2791 dest[co++] = c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002792 }
2793 } else {
2794 dest[co++] = '^';
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002795 if (c == 0x7f)
2796 c = '?';
2797 else
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002798 c += '@'; // Ctrl-X -> 'X'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002799 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002800 }
2801 }
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002802 dest[co++] = c;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002803 // discard scrolled-off-to-the-left portion,
2804 // in tabstop-sized pieces
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002805 if (ofs >= tabstop && co >= tabstop) {
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002806 memmove(dest, dest + tabstop, co);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002807 co -= tabstop;
2808 ofs -= tabstop;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002809 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002810 if (src >= end)
2811 break;
2812 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002813 // check "short line, gigantic offset" case
2814 if (co < ofs)
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002815 ofs = co;
2816 // discard last scrolled off part
2817 co -= ofs;
2818 dest += ofs;
2819 // fill the rest with spaces
2820 if (co < columns)
2821 memset(&dest[co], ' ', columns - co);
2822 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002823}
2824
2825//----- Refresh the changed screen lines -----------------------
2826// Copy the source line from text[] into the buffer and note
2827// if the current screenline is different from the new buffer.
2828// If they differ then that line needs redrawing on the terminal.
2829//
2830static void refresh(int full_screen)
2831{
2832 static int old_offset;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002833
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002834 int li, changed;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002835 char *tp, *sp; // pointer into text[] and screen[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002836
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002837 if (ENABLE_FEATURE_VI_WIN_RESIZE) {
2838 int c = columns, r = rows;
Rob Landleye5e1a102006-06-21 01:15:36 +00002839 get_terminal_width_height(0, &columns, &rows);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002840 if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS;
2841 if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS;
2842 full_screen |= (c - columns) | (r - rows);
2843 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002844 sync_cursor(dot, &crow, &ccol); // where cursor will be (on "dot")
2845 tp = screenbegin; // index into text[] of top line
2846
2847 // compare text[] to screen[] and mark screen[] lines that need updating
2848 for (li = 0; li < rows - 1; li++) {
2849 int cs, ce; // column start & end
Denis Vlasenkof882f082007-12-23 02:36:51 +00002850 char *out_buf;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002851 // format current text line
Denis Vlasenkof882f082007-12-23 02:36:51 +00002852 out_buf = format_line(tp, li);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002853
2854 // skip to the end of the current text[] line
Denis Vlasenkof882f082007-12-23 02:36:51 +00002855 if (tp < end) {
2856 char *t = memchr(tp, '\n', end - tp);
2857 if (!t) t = end - 1;
2858 tp = t + 1;
2859 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002860
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002861 // see if there are any changes between vitual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002862 changed = FALSE; // assume no change
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002863 cs = 0;
2864 ce = columns - 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002865 sp = &screen[li * columns]; // start of screen line
2866 if (full_screen) {
2867 // force re-draw of every single column from 0 - columns-1
2868 goto re0;
2869 }
2870 // compare newly formatted buffer with virtual screen
2871 // look forward for first difference between buf and screen
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002872 for (; cs <= ce; cs++) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002873 if (out_buf[cs] != sp[cs]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002874 changed = TRUE; // mark for redraw
2875 break;
2876 }
2877 }
2878
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002879 // look backward for last difference between out_buf and screen
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002880 for (; ce >= cs; ce--) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002881 if (out_buf[ce] != sp[ce]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002882 changed = TRUE; // mark for redraw
2883 break;
2884 }
2885 }
2886 // now, cs is index of first diff, and ce is index of last diff
2887
2888 // if horz offset has changed, force a redraw
2889 if (offset != old_offset) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002890 re0:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002891 changed = TRUE;
2892 }
2893
2894 // make a sanity check of columns indexes
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002895 if (cs < 0) cs = 0;
2896 if (ce > columns - 1) ce = columns - 1;
2897 if (cs > ce) { cs = 0; ce = columns - 1; }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002898 // is there a change between vitual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002899 if (changed) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002900 // copy changed part of buffer to virtual screen
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002901 memcpy(sp+cs, out_buf+cs, ce-cs+1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002902
2903 // move cursor to column of first change
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002904 //if (offset != old_offset) {
2905 // // place_cursor is still too stupid
2906 // // to handle offsets correctly
2907 // place_cursor(li, cs, FALSE);
2908 //} else {
2909 place_cursor(li, cs, TRUE);
2910 //}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002911
2912 // write line out to terminal
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002913 fwrite(&sp[cs], ce - cs + 1, 1, stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002914 }
2915 }
2916
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002917 place_cursor(crow, ccol, TRUE);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002918
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002919 old_offset = offset;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002920}
2921
Eric Andersen3f980402001-04-04 17:31:15 +00002922//---------------------------------------------------------------------
2923//----- the Ascii Chart -----------------------------------------------
2924//
2925// 00 nul 01 soh 02 stx 03 etx 04 eot 05 enq 06 ack 07 bel
2926// 08 bs 09 ht 0a nl 0b vt 0c np 0d cr 0e so 0f si
2927// 10 dle 11 dc1 12 dc2 13 dc3 14 dc4 15 nak 16 syn 17 etb
2928// 18 can 19 em 1a sub 1b esc 1c fs 1d gs 1e rs 1f us
2929// 20 sp 21 ! 22 " 23 # 24 $ 25 % 26 & 27 '
2930// 28 ( 29 ) 2a * 2b + 2c , 2d - 2e . 2f /
2931// 30 0 31 1 32 2 33 3 34 4 35 5 36 6 37 7
2932// 38 8 39 9 3a : 3b ; 3c < 3d = 3e > 3f ?
2933// 40 @ 41 A 42 B 43 C 44 D 45 E 46 F 47 G
2934// 48 H 49 I 4a J 4b K 4c L 4d M 4e N 4f O
2935// 50 P 51 Q 52 R 53 S 54 T 55 U 56 V 57 W
2936// 58 X 59 Y 5a Z 5b [ 5c \ 5d ] 5e ^ 5f _
2937// 60 ` 61 a 62 b 63 c 64 d 65 e 66 f 67 g
2938// 68 h 69 i 6a j 6b k 6c l 6d m 6e n 6f o
2939// 70 p 71 q 72 r 73 s 74 t 75 u 76 v 77 w
2940// 78 x 79 y 7a z 7b { 7c | 7d } 7e ~ 7f del
2941//---------------------------------------------------------------------
2942
2943//----- Execute a Vi Command -----------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002944static void do_cmd(char c)
Eric Andersen3f980402001-04-04 17:31:15 +00002945{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002946 const char *msg = msg; // for compiler
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002947 char c1, *p, *q, *save_dot;
2948 char buf[12];
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002949 int dir = dir; // for compiler
2950 int cnt, i, j, yf;
Eric Andersen3f980402001-04-04 17:31:15 +00002951
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002952// c1 = c; // quiet the compiler
2953// cnt = yf = 0; // quiet the compiler
2954// msg = p = q = save_dot = buf; // quiet the compiler
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002955 memset(buf, '\0', 12);
Eric Andersenbff7a602001-11-17 07:15:43 +00002956
Paul Fox8552aec2005-09-16 12:20:05 +00002957 show_status_line();
2958
Eric Andersenbff7a602001-11-17 07:15:43 +00002959 /* if this is a cursor key, skip these checks */
2960 switch (c) {
2961 case VI_K_UP:
2962 case VI_K_DOWN:
2963 case VI_K_LEFT:
2964 case VI_K_RIGHT:
2965 case VI_K_HOME:
2966 case VI_K_END:
2967 case VI_K_PAGEUP:
2968 case VI_K_PAGEDOWN:
2969 goto key_cmd_mode;
2970 }
2971
Eric Andersen3f980402001-04-04 17:31:15 +00002972 if (cmd_mode == 2) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002973 // flip-flop Insert/Replace mode
Denis Vlasenko2a51af22007-03-21 22:31:24 +00002974 if (c == VI_K_INSERT)
2975 goto dc_i;
Eric Andersen3f980402001-04-04 17:31:15 +00002976 // we are 'R'eplacing the current *dot with new char
2977 if (*dot == '\n') {
2978 // don't Replace past E-o-l
2979 cmd_mode = 1; // convert to insert
2980 } else {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002981 if (1 <= c || Isprint(c)) {
Eric Andersen3f980402001-04-04 17:31:15 +00002982 if (c != 27)
2983 dot = yank_delete(dot, dot, 0, YANKDEL); // delete char
2984 dot = char_insert(dot, c); // insert new char
2985 }
2986 goto dc1;
2987 }
2988 }
2989 if (cmd_mode == 1) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00002990 // hitting "Insert" twice means "R" replace mode
2991 if (c == VI_K_INSERT) goto dc5;
Eric Andersen3f980402001-04-04 17:31:15 +00002992 // insert the char c at "dot"
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002993 if (1 <= c || Isprint(c)) {
2994 dot = char_insert(dot, c);
Eric Andersen3f980402001-04-04 17:31:15 +00002995 }
2996 goto dc1;
2997 }
2998
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002999 key_cmd_mode:
Eric Andersen3f980402001-04-04 17:31:15 +00003000 switch (c) {
Eric Andersen822c3832001-05-07 17:37:43 +00003001 //case 0x01: // soh
3002 //case 0x09: // ht
3003 //case 0x0b: // vt
3004 //case 0x0e: // so
3005 //case 0x0f: // si
3006 //case 0x10: // dle
3007 //case 0x11: // dc1
3008 //case 0x13: // dc3
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003009#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen1c0d3112001-04-16 15:46:44 +00003010 case 0x14: // dc4 ctrl-T
Eric Andersen3f980402001-04-04 17:31:15 +00003011 crashme = (crashme == 0) ? 1 : 0;
Eric Andersen3f980402001-04-04 17:31:15 +00003012 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003013#endif
Eric Andersen822c3832001-05-07 17:37:43 +00003014 //case 0x16: // syn
3015 //case 0x17: // etb
3016 //case 0x18: // can
3017 //case 0x1c: // fs
3018 //case 0x1d: // gs
3019 //case 0x1e: // rs
3020 //case 0x1f: // us
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003021 //case '!': // !-
3022 //case '#': // #-
3023 //case '&': // &-
3024 //case '(': // (-
3025 //case ')': // )-
3026 //case '*': // *-
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003027 //case '=': // =-
3028 //case '@': // @-
3029 //case 'F': // F-
3030 //case 'K': // K-
3031 //case 'Q': // Q-
3032 //case 'S': // S-
3033 //case 'T': // T-
3034 //case 'V': // V-
3035 //case '[': // [-
3036 //case '\\': // \-
3037 //case ']': // ]-
3038 //case '_': // _-
3039 //case '`': // `-
Eric Andersen1c0d3112001-04-16 15:46:44 +00003040 //case 'u': // u- FIXME- there is no undo
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003041 //case 'v': // v-
Eric Andersen3f980402001-04-04 17:31:15 +00003042 default: // unrecognised command
3043 buf[0] = c;
3044 buf[1] = '\0';
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003045 if (c < ' ') {
Eric Andersen3f980402001-04-04 17:31:15 +00003046 buf[0] = '^';
3047 buf[1] = c + '@';
3048 buf[2] = '\0';
3049 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003050 not_implemented(buf);
Eric Andersen3f980402001-04-04 17:31:15 +00003051 end_cmd_q(); // stop adding to q
3052 case 0x00: // nul- ignore
3053 break;
3054 case 2: // ctrl-B scroll up full screen
3055 case VI_K_PAGEUP: // Cursor Key Page Up
3056 dot_scroll(rows - 2, -1);
3057 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003058#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +00003059 case 0x03: // ctrl-C interrupt
3060 longjmp(restart, 1);
3061 break;
3062 case 26: // ctrl-Z suspend
3063 suspend_sig(SIGTSTP);
3064 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003065#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003066 case 4: // ctrl-D scroll down half screen
3067 dot_scroll((rows - 2) / 2, 1);
3068 break;
3069 case 5: // ctrl-E scroll down one line
3070 dot_scroll(1, 1);
3071 break;
3072 case 6: // ctrl-F scroll down full screen
3073 case VI_K_PAGEDOWN: // Cursor Key Page Down
3074 dot_scroll(rows - 2, 1);
3075 break;
3076 case 7: // ctrl-G show current status
Paul Fox8552aec2005-09-16 12:20:05 +00003077 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003078 break;
3079 case 'h': // h- move left
3080 case VI_K_LEFT: // cursor key Left
Paul Foxd13b90b2005-07-18 22:17:25 +00003081 case 8: // ctrl-H- move left (This may be ERASE char)
Denis Vlasenko2a51af22007-03-21 22:31:24 +00003082 case 0x7f: // DEL- move left (This may be ERASE char)
Eric Andersen3f980402001-04-04 17:31:15 +00003083 if (cmdcnt-- > 1) {
3084 do_cmd(c);
3085 } // repeat cnt
3086 dot_left();
3087 break;
3088 case 10: // Newline ^J
3089 case 'j': // j- goto next line, same col
3090 case VI_K_DOWN: // cursor key Down
3091 if (cmdcnt-- > 1) {
3092 do_cmd(c);
3093 } // repeat cnt
3094 dot_next(); // go to next B-o-l
3095 dot = move_to_col(dot, ccol + offset); // try stay in same col
3096 break;
3097 case 12: // ctrl-L force redraw whole screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003098 case 18: // ctrl-R force redraw
Eric Andersen822c3832001-05-07 17:37:43 +00003099 place_cursor(0, 0, FALSE); // put cursor in correct place
Eric Andersen3f980402001-04-04 17:31:15 +00003100 clear_to_eos(); // tel terminal to erase display
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003101 mysleep(10);
Eric Andersen3f980402001-04-04 17:31:15 +00003102 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00003103 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003104 refresh(TRUE); // this will redraw the entire display
3105 break;
3106 case 13: // Carriage Return ^M
3107 case '+': // +- goto next line
3108 if (cmdcnt-- > 1) {
3109 do_cmd(c);
3110 } // repeat cnt
3111 dot_next();
3112 dot_skip_over_ws();
3113 break;
3114 case 21: // ctrl-U scroll up half screen
3115 dot_scroll((rows - 2) / 2, -1);
3116 break;
3117 case 25: // ctrl-Y scroll up one line
3118 dot_scroll(1, -1);
3119 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003120 case 27: // esc
Eric Andersen3f980402001-04-04 17:31:15 +00003121 if (cmd_mode == 0)
3122 indicate_error(c);
3123 cmd_mode = 0; // stop insrting
3124 end_cmd_q();
Paul Fox8552aec2005-09-16 12:20:05 +00003125 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003126 break;
3127 case ' ': // move right
3128 case 'l': // move right
3129 case VI_K_RIGHT: // Cursor Key Right
3130 if (cmdcnt-- > 1) {
3131 do_cmd(c);
3132 } // repeat cnt
3133 dot_right();
3134 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003135#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003136 case '"': // "- name a register to use for Delete/Yank
3137 c1 = get_one_char();
3138 c1 = tolower(c1);
3139 if (islower(c1)) {
3140 YDreg = c1 - 'a';
3141 } else {
3142 indicate_error(c);
3143 }
3144 break;
3145 case '\'': // '- goto a specific mark
3146 c1 = get_one_char();
3147 c1 = tolower(c1);
3148 if (islower(c1)) {
3149 c1 = c1 - 'a';
3150 // get the b-o-l
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003151 q = mark[(unsigned char) c1];
Eric Andersen3f980402001-04-04 17:31:15 +00003152 if (text <= q && q < end) {
3153 dot = q;
3154 dot_begin(); // go to B-o-l
3155 dot_skip_over_ws();
3156 }
3157 } else if (c1 == '\'') { // goto previous context
3158 dot = swap_context(dot); // swap current and previous context
3159 dot_begin(); // go to B-o-l
3160 dot_skip_over_ws();
3161 } else {
3162 indicate_error(c);
3163 }
3164 break;
3165 case 'm': // m- Mark a line
3166 // this is really stupid. If there are any inserts or deletes
3167 // between text[0] and dot then this mark will not point to the
3168 // correct location! It could be off by many lines!
3169 // Well..., at least its quick and dirty.
3170 c1 = get_one_char();
3171 c1 = tolower(c1);
3172 if (islower(c1)) {
3173 c1 = c1 - 'a';
3174 // remember the line
3175 mark[(int) c1] = dot;
3176 } else {
3177 indicate_error(c);
3178 }
3179 break;
3180 case 'P': // P- Put register before
3181 case 'p': // p- put register after
3182 p = reg[YDreg];
3183 if (p == 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003184 status_line_bold("Nothing in register %c", what_reg());
Eric Andersen3f980402001-04-04 17:31:15 +00003185 break;
3186 }
3187 // are we putting whole lines or strings
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003188 if (strchr(p, '\n') != NULL) {
Eric Andersen3f980402001-04-04 17:31:15 +00003189 if (c == 'P') {
3190 dot_begin(); // putting lines- Put above
3191 }
3192 if (c == 'p') {
3193 // are we putting after very last line?
3194 if (end_line(dot) == (end - 1)) {
3195 dot = end; // force dot to end of text[]
3196 } else {
3197 dot_next(); // next line, then put before
3198 }
3199 }
3200 } else {
3201 if (c == 'p')
3202 dot_right(); // move to right, can move to NL
3203 }
3204 dot = string_insert(dot, p); // insert the string
3205 end_cmd_q(); // stop adding to q
3206 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003207 case 'U': // U- Undo; replace current line with original version
3208 if (reg[Ureg] != 0) {
3209 p = begin_line(dot);
3210 q = end_line(dot);
3211 p = text_hole_delete(p, q); // delete cur line
3212 p = string_insert(p, reg[Ureg]); // insert orig line
3213 dot = p;
3214 dot_skip_over_ws();
3215 }
3216 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003217#endif /* FEATURE_VI_YANKMARK */
Eric Andersen3f980402001-04-04 17:31:15 +00003218 case '$': // $- goto end of line
3219 case VI_K_END: // Cursor Key End
3220 if (cmdcnt-- > 1) {
3221 do_cmd(c);
3222 } // repeat cnt
Glenn L McGrathee829062004-01-21 10:59:45 +00003223 dot = end_line(dot);
Eric Andersen3f980402001-04-04 17:31:15 +00003224 break;
3225 case '%': // %- find matching char of pair () [] {}
3226 for (q = dot; q < end && *q != '\n'; q++) {
3227 if (strchr("()[]{}", *q) != NULL) {
3228 // we found half of a pair
3229 p = find_pair(q, *q);
3230 if (p == NULL) {
3231 indicate_error(c);
3232 } else {
3233 dot = p;
3234 }
3235 break;
3236 }
3237 }
3238 if (*q == '\n')
3239 indicate_error(c);
3240 break;
3241 case 'f': // f- forward to a user specified char
3242 last_forward_char = get_one_char(); // get the search char
3243 //
Eric Andersenaff114c2004-04-14 17:51:38 +00003244 // dont separate these two commands. 'f' depends on ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003245 //
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003246 //**** fall through to ... ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003247 case ';': // ;- look at rest of line for last forward char
3248 if (cmdcnt-- > 1) {
Eric Andersen822c3832001-05-07 17:37:43 +00003249 do_cmd(';');
Eric Andersen3f980402001-04-04 17:31:15 +00003250 } // repeat cnt
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003251 if (last_forward_char == 0)
3252 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003253 q = dot + 1;
3254 while (q < end - 1 && *q != '\n' && *q != last_forward_char) {
3255 q++;
3256 }
3257 if (*q == last_forward_char)
3258 dot = q;
3259 break;
Paul Foxb5ee8db2008-02-14 01:17:01 +00003260 case ',': // repeat latest 'f' in opposite direction
3261 if (cmdcnt-- > 1) {
3262 do_cmd(',');
3263 } // repeat cnt
3264 if (last_forward_char == 0)
3265 break;
3266 q = dot - 1;
3267 while (q >= text && *q != '\n' && *q != last_forward_char) {
3268 q--;
3269 }
3270 if (q >= text && *q == last_forward_char)
3271 dot = q;
3272 break;
3273
Eric Andersen3f980402001-04-04 17:31:15 +00003274 case '-': // -- goto prev line
3275 if (cmdcnt-- > 1) {
3276 do_cmd(c);
3277 } // repeat cnt
3278 dot_prev();
3279 dot_skip_over_ws();
3280 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003281#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003282 case '.': // .- repeat the last modifying command
3283 // Stuff the last_modifying_cmd back into stdin
3284 // and let it be re-executed.
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003285 if (last_modifying_cmd != NULL) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003286 ioq = ioq_start = xstrdup(last_modifying_cmd);
Eric Andersen3f980402001-04-04 17:31:15 +00003287 }
3288 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003289#endif
3290#if ENABLE_FEATURE_VI_SEARCH
Eric Andersen3f980402001-04-04 17:31:15 +00003291 case '?': // /- search for a pattern
3292 case '/': // /- search for a pattern
3293 buf[0] = c;
3294 buf[1] = '\0';
3295 q = get_input_line(buf); // get input line- use "status line"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003296 if (q[0] && !q[1])
3297 goto dc3; // if no pat re-use old pat
3298 if (q[0]) { // strlen(q) > 1: new pat- save it and find
Eric Andersen3f980402001-04-04 17:31:15 +00003299 // there is a new pat
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00003300 free(last_search_pattern);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003301 last_search_pattern = xstrdup(q);
Eric Andersen3f980402001-04-04 17:31:15 +00003302 goto dc3; // now find the pattern
3303 }
3304 // user changed mind and erased the "/"- do nothing
3305 break;
3306 case 'N': // N- backward search for last pattern
3307 if (cmdcnt-- > 1) {
3308 do_cmd(c);
3309 } // repeat cnt
3310 dir = BACK; // assume BACKWARD search
3311 p = dot - 1;
3312 if (last_search_pattern[0] == '?') {
3313 dir = FORWARD;
3314 p = dot + 1;
3315 }
3316 goto dc4; // now search for pattern
3317 break;
3318 case 'n': // n- repeat search for last pattern
3319 // search rest of text[] starting at next char
3320 // if search fails return orignal "p" not the "p+1" address
3321 if (cmdcnt-- > 1) {
3322 do_cmd(c);
3323 } // repeat cnt
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003324 dc3:
Eric Andersen3f980402001-04-04 17:31:15 +00003325 if (last_search_pattern == 0) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003326 msg = "No previous regular expression";
Eric Andersen3f980402001-04-04 17:31:15 +00003327 goto dc2;
3328 }
3329 if (last_search_pattern[0] == '/') {
3330 dir = FORWARD; // assume FORWARD search
3331 p = dot + 1;
3332 }
3333 if (last_search_pattern[0] == '?') {
3334 dir = BACK;
3335 p = dot - 1;
3336 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003337 dc4:
Eric Andersen3f980402001-04-04 17:31:15 +00003338 q = char_search(p, last_search_pattern + 1, dir, FULL);
3339 if (q != NULL) {
3340 dot = q; // good search, update "dot"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003341 msg = "";
Eric Andersen3f980402001-04-04 17:31:15 +00003342 goto dc2;
3343 }
3344 // no pattern found between "dot" and "end"- continue at top
3345 p = text;
3346 if (dir == BACK) {
3347 p = end - 1;
3348 }
3349 q = char_search(p, last_search_pattern + 1, dir, FULL);
3350 if (q != NULL) { // found something
3351 dot = q; // found new pattern- goto it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003352 msg = "search hit BOTTOM, continuing at TOP";
Eric Andersen3f980402001-04-04 17:31:15 +00003353 if (dir == BACK) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003354 msg = "search hit TOP, continuing at BOTTOM";
Eric Andersen3f980402001-04-04 17:31:15 +00003355 }
3356 } else {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003357 msg = "Pattern not found";
Eric Andersen3f980402001-04-04 17:31:15 +00003358 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003359 dc2:
3360 if (*msg)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003361 status_line_bold("%s", msg);
Eric Andersen3f980402001-04-04 17:31:15 +00003362 break;
3363 case '{': // {- move backward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003364 q = char_search(dot, "\n\n", BACK, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003365 if (q != NULL) { // found blank line
3366 dot = next_line(q); // move to next blank line
3367 }
3368 break;
3369 case '}': // }- move forward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003370 q = char_search(dot, "\n\n", FORWARD, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003371 if (q != NULL) { // found blank line
3372 dot = next_line(q); // move to next blank line
3373 }
3374 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003375#endif /* FEATURE_VI_SEARCH */
Eric Andersen3f980402001-04-04 17:31:15 +00003376 case '0': // 0- goto begining of line
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003377 case '1': // 1-
3378 case '2': // 2-
3379 case '3': // 3-
3380 case '4': // 4-
3381 case '5': // 5-
3382 case '6': // 6-
3383 case '7': // 7-
3384 case '8': // 8-
3385 case '9': // 9-
Eric Andersen3f980402001-04-04 17:31:15 +00003386 if (c == '0' && cmdcnt < 1) {
3387 dot_begin(); // this was a standalone zero
3388 } else {
3389 cmdcnt = cmdcnt * 10 + (c - '0'); // this 0 is part of a number
3390 }
3391 break;
3392 case ':': // :- the colon mode commands
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003393 p = get_input_line(":"); // get input line- use "status line"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003394#if ENABLE_FEATURE_VI_COLON
Eric Andersen3f980402001-04-04 17:31:15 +00003395 colon(p); // execute the command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003396#else
Eric Andersen822c3832001-05-07 17:37:43 +00003397 if (*p == ':')
3398 p++; // move past the ':'
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003399 cnt = strlen(p);
Eric Andersen822c3832001-05-07 17:37:43 +00003400 if (cnt <= 0)
3401 break;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003402 if (strncasecmp(p, "quit", cnt) == 0
3403 || strncasecmp(p, "q!", cnt) == 0 // delete lines
3404 ) {
Matt Kraai1f0c4362001-12-20 23:13:26 +00003405 if (file_modified && p[1] != '!') {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003406 status_line_bold("No write since last change (:quit! overrides)");
Eric Andersen3f980402001-04-04 17:31:15 +00003407 } else {
3408 editing = 0;
3409 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003410 } else if (strncasecmp(p, "write", cnt) == 0
3411 || strncasecmp(p, "wq", cnt) == 0
3412 || strncasecmp(p, "wn", cnt) == 0
3413 || strncasecmp(p, "x", cnt) == 0
3414 ) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003415 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00003416 if (cnt < 0) {
3417 if (cnt == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003418 status_line_bold("Write error: %s", strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00003419 } else {
3420 file_modified = 0;
3421 last_file_modified = -1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003422 status_line("\"%s\" %dL, %dC", current_filename, count_lines(text, end - 1), cnt);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003423 if (p[0] == 'x' || p[1] == 'q' || p[1] == 'n'
3424 || p[0] == 'X' || p[1] == 'Q' || p[1] == 'N'
3425 ) {
Paul Fox61e45db2005-10-09 14:43:22 +00003426 editing = 0;
3427 }
Eric Andersen3f980402001-04-04 17:31:15 +00003428 }
Denis Vlasenko219d14d2007-03-24 15:40:16 +00003429 } else if (strncasecmp(p, "file", cnt) == 0) {
Paul Fox8552aec2005-09-16 12:20:05 +00003430 last_status_cksum = 0; // force status update
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003431 } else if (sscanf(p, "%d", &j) > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003432 dot = find_line(j); // go to line # j
3433 dot_skip_over_ws();
Eric Andersen3f980402001-04-04 17:31:15 +00003434 } else { // unrecognised cmd
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003435 not_implemented(p);
Eric Andersen3f980402001-04-04 17:31:15 +00003436 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003437#endif /* !FEATURE_VI_COLON */
Eric Andersen3f980402001-04-04 17:31:15 +00003438 break;
3439 case '<': // <- Left shift something
3440 case '>': // >- Right shift something
3441 cnt = count_lines(text, dot); // remember what line we are on
3442 c1 = get_one_char(); // get the type of thing to delete
3443 find_range(&p, &q, c1);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003444 yank_delete(p, q, 1, YANKONLY); // save copy before change
Eric Andersen3f980402001-04-04 17:31:15 +00003445 p = begin_line(p);
3446 q = end_line(q);
3447 i = count_lines(p, q); // # of lines we are shifting
3448 for ( ; i > 0; i--, p = next_line(p)) {
3449 if (c == '<') {
3450 // shift left- remove tab or 8 spaces
3451 if (*p == '\t') {
3452 // shrink buffer 1 char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003453 text_hole_delete(p, p);
Eric Andersen3f980402001-04-04 17:31:15 +00003454 } else if (*p == ' ') {
3455 // we should be calculating columns, not just SPACE
3456 for (j = 0; *p == ' ' && j < tabstop; j++) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003457 text_hole_delete(p, p);
Eric Andersen3f980402001-04-04 17:31:15 +00003458 }
3459 }
3460 } else if (c == '>') {
3461 // shift right -- add tab or 8 spaces
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003462 char_insert(p, '\t');
Eric Andersen3f980402001-04-04 17:31:15 +00003463 }
3464 }
3465 dot = find_line(cnt); // what line were we on
3466 dot_skip_over_ws();
3467 end_cmd_q(); // stop adding to q
3468 break;
3469 case 'A': // A- append at e-o-l
3470 dot_end(); // go to e-o-l
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003471 //**** fall through to ... 'a'
Eric Andersen3f980402001-04-04 17:31:15 +00003472 case 'a': // a- append after current char
3473 if (*dot != '\n')
3474 dot++;
3475 goto dc_i;
3476 break;
3477 case 'B': // B- back a blank-delimited Word
3478 case 'E': // E- end of a blank-delimited word
3479 case 'W': // W- forward a blank-delimited word
3480 if (cmdcnt-- > 1) {
3481 do_cmd(c);
3482 } // repeat cnt
3483 dir = FORWARD;
3484 if (c == 'B')
3485 dir = BACK;
3486 if (c == 'W' || isspace(dot[dir])) {
3487 dot = skip_thing(dot, 1, dir, S_TO_WS);
3488 dot = skip_thing(dot, 2, dir, S_OVER_WS);
3489 }
3490 if (c != 'W')
3491 dot = skip_thing(dot, 1, dir, S_BEFORE_WS);
3492 break;
3493 case 'C': // C- Change to e-o-l
3494 case 'D': // D- delete to e-o-l
3495 save_dot = dot;
3496 dot = dollar_line(dot); // move to before NL
3497 // copy text into a register and delete
3498 dot = yank_delete(save_dot, dot, 0, YANKDEL); // delete to e-o-l
3499 if (c == 'C')
3500 goto dc_i; // start inserting
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003501#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003502 if (c == 'D')
3503 end_cmd_q(); // stop adding to q
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003504#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003505 break;
Paul Foxb5ee8db2008-02-14 01:17:01 +00003506 case 'g': // 'gg' goto a line number (from vim)
3507 // (default to first line in file)
3508 c1 = get_one_char();
3509 if (c1 != 'g') {
3510 buf[0] = 'g';
3511 buf[1] = c1;
3512 buf[2] = '\0';
3513 not_implemented(buf);
3514 break;
3515 }
3516 if (cmdcnt == 0)
3517 cmdcnt = 1;
3518 /* fall through */
Eric Andersen822c3832001-05-07 17:37:43 +00003519 case 'G': // G- goto to a line number (default= E-O-F)
3520 dot = end - 1; // assume E-O-F
Eric Andersen1c0d3112001-04-16 15:46:44 +00003521 if (cmdcnt > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003522 dot = find_line(cmdcnt); // what line is #cmdcnt
Eric Andersen1c0d3112001-04-16 15:46:44 +00003523 }
3524 dot_skip_over_ws();
3525 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003526 case 'H': // H- goto top line on screen
3527 dot = screenbegin;
3528 if (cmdcnt > (rows - 1)) {
3529 cmdcnt = (rows - 1);
3530 }
3531 if (cmdcnt-- > 1) {
3532 do_cmd('+');
3533 } // repeat cnt
3534 dot_skip_over_ws();
3535 break;
3536 case 'I': // I- insert before first non-blank
3537 dot_begin(); // 0
3538 dot_skip_over_ws();
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003539 //**** fall through to ... 'i'
Eric Andersen3f980402001-04-04 17:31:15 +00003540 case 'i': // i- insert before current char
3541 case VI_K_INSERT: // Cursor Key Insert
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003542 dc_i:
Eric Andersen3f980402001-04-04 17:31:15 +00003543 cmd_mode = 1; // start insrting
Eric Andersen3f980402001-04-04 17:31:15 +00003544 break;
3545 case 'J': // J- join current and next lines together
3546 if (cmdcnt-- > 2) {
3547 do_cmd(c);
3548 } // repeat cnt
3549 dot_end(); // move to NL
3550 if (dot < end - 1) { // make sure not last char in text[]
3551 *dot++ = ' '; // replace NL with space
Paul Fox8552aec2005-09-16 12:20:05 +00003552 file_modified++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003553 while (isblank(*dot)) { // delete leading WS
Eric Andersen3f980402001-04-04 17:31:15 +00003554 dot_delete();
3555 }
3556 }
3557 end_cmd_q(); // stop adding to q
3558 break;
3559 case 'L': // L- goto bottom line on screen
3560 dot = end_screen();
3561 if (cmdcnt > (rows - 1)) {
3562 cmdcnt = (rows - 1);
3563 }
3564 if (cmdcnt-- > 1) {
3565 do_cmd('-');
3566 } // repeat cnt
3567 dot_begin();
3568 dot_skip_over_ws();
3569 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003570 case 'M': // M- goto middle line on screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003571 dot = screenbegin;
3572 for (cnt = 0; cnt < (rows-1) / 2; cnt++)
3573 dot = next_line(dot);
3574 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003575 case 'O': // O- open a empty line above
Eric Andersen822c3832001-05-07 17:37:43 +00003576 // 0i\n ESC -i
Eric Andersen3f980402001-04-04 17:31:15 +00003577 p = begin_line(dot);
3578 if (p[-1] == '\n') {
3579 dot_prev();
3580 case 'o': // o- open a empty line below; Yes, I know it is in the middle of the "if (..."
3581 dot_end();
3582 dot = char_insert(dot, '\n');
3583 } else {
3584 dot_begin(); // 0
Eric Andersen822c3832001-05-07 17:37:43 +00003585 dot = char_insert(dot, '\n'); // i\n ESC
Eric Andersen3f980402001-04-04 17:31:15 +00003586 dot_prev(); // -
3587 }
3588 goto dc_i;
3589 break;
3590 case 'R': // R- continuous Replace char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003591 dc5:
Eric Andersen3f980402001-04-04 17:31:15 +00003592 cmd_mode = 2;
Eric Andersen3f980402001-04-04 17:31:15 +00003593 break;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003594 case VI_K_DELETE:
3595 c = 'x';
3596 // fall through
Eric Andersen3f980402001-04-04 17:31:15 +00003597 case 'X': // X- delete char before dot
3598 case 'x': // x- delete the current char
3599 case 's': // s- substitute the current char
3600 if (cmdcnt-- > 1) {
3601 do_cmd(c);
3602 } // repeat cnt
3603 dir = 0;
3604 if (c == 'X')
3605 dir = -1;
3606 if (dot[dir] != '\n') {
3607 if (c == 'X')
3608 dot--; // delete prev char
3609 dot = yank_delete(dot, dot, 0, YANKDEL); // delete char
3610 }
3611 if (c == 's')
3612 goto dc_i; // start insrting
3613 end_cmd_q(); // stop adding to q
3614 break;
3615 case 'Z': // Z- if modified, {write}; exit
3616 // ZZ means to save file (if necessary), then exit
3617 c1 = get_one_char();
3618 if (c1 != 'Z') {
3619 indicate_error(c);
3620 break;
3621 }
Paul Foxf0305b72006-03-28 14:18:21 +00003622 if (file_modified) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003623 if (ENABLE_FEATURE_VI_READONLY && readonly_mode) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003624 status_line_bold("\"%s\" File is read only", current_filename);
Denis Vlasenko92758142006-10-03 19:56:34 +00003625 break;
Paul Foxf0305b72006-03-28 14:18:21 +00003626 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003627 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00003628 if (cnt < 0) {
3629 if (cnt == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003630 status_line_bold("Write error: %s", strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00003631 } else if (cnt == (end - 1 - text + 1)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003632 editing = 0;
3633 }
3634 } else {
3635 editing = 0;
3636 }
3637 break;
3638 case '^': // ^- move to first non-blank on line
3639 dot_begin();
3640 dot_skip_over_ws();
3641 break;
3642 case 'b': // b- back a word
3643 case 'e': // e- end of word
3644 if (cmdcnt-- > 1) {
3645 do_cmd(c);
3646 } // repeat cnt
3647 dir = FORWARD;
3648 if (c == 'b')
3649 dir = BACK;
3650 if ((dot + dir) < text || (dot + dir) > end - 1)
3651 break;
3652 dot += dir;
3653 if (isspace(*dot)) {
3654 dot = skip_thing(dot, (c == 'e') ? 2 : 1, dir, S_OVER_WS);
3655 }
3656 if (isalnum(*dot) || *dot == '_') {
3657 dot = skip_thing(dot, 1, dir, S_END_ALNUM);
3658 } else if (ispunct(*dot)) {
3659 dot = skip_thing(dot, 1, dir, S_END_PUNCT);
3660 }
3661 break;
3662 case 'c': // c- change something
3663 case 'd': // d- delete something
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003664#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003665 case 'y': // y- yank something
3666 case 'Y': // Y- Yank a line
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003667#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003668 yf = YANKDEL; // assume either "c" or "d"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003669#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003670 if (c == 'y' || c == 'Y')
3671 yf = YANKONLY;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003672#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003673 c1 = 'y';
3674 if (c != 'Y')
3675 c1 = get_one_char(); // get the type of thing to delete
3676 find_range(&p, &q, c1);
3677 if (c1 == 27) { // ESC- user changed mind and wants out
3678 c = c1 = 27; // Escape- do nothing
3679 } else if (strchr("wW", c1)) {
3680 if (c == 'c') {
3681 // don't include trailing WS as part of word
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003682 while (isblank(*q)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003683 if (q <= text || q[-1] == '\n')
3684 break;
3685 q--;
3686 }
3687 }
3688 dot = yank_delete(p, q, 0, yf); // delete word
Eric Andersen822c3832001-05-07 17:37:43 +00003689 } else if (strchr("^0bBeEft$", c1)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003690 // single line copy text into a register and delete
3691 dot = yank_delete(p, q, 0, yf); // delete word
Eric Andersen1c0d3112001-04-16 15:46:44 +00003692 } else if (strchr("cdykjHL%+-{}\r\n", c1)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003693 // multiple line copy text into a register and delete
3694 dot = yank_delete(p, q, 1, yf); // delete lines
Eric Andersen1c0d3112001-04-16 15:46:44 +00003695 if (c == 'c') {
3696 dot = char_insert(dot, '\n');
3697 // on the last line of file don't move to prev line
3698 if (dot != (end-1)) {
3699 dot_prev();
3700 }
3701 } else if (c == 'd') {
Eric Andersen3f980402001-04-04 17:31:15 +00003702 dot_begin();
3703 dot_skip_over_ws();
3704 }
3705 } else {
3706 // could not recognize object
3707 c = c1 = 27; // error-
3708 indicate_error(c);
3709 }
3710 if (c1 != 27) {
3711 // if CHANGING, not deleting, start inserting after the delete
3712 if (c == 'c') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003713 strcpy(buf, "Change");
Eric Andersen3f980402001-04-04 17:31:15 +00003714 goto dc_i; // start inserting
3715 }
3716 if (c == 'd') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003717 strcpy(buf, "Delete");
Eric Andersen3f980402001-04-04 17:31:15 +00003718 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003719#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003720 if (c == 'y' || c == 'Y') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003721 strcpy(buf, "Yank");
Eric Andersen3f980402001-04-04 17:31:15 +00003722 }
3723 p = reg[YDreg];
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003724 q = p + strlen(p);
Eric Andersen3f980402001-04-04 17:31:15 +00003725 for (cnt = 0; p <= q; p++) {
3726 if (*p == '\n')
3727 cnt++;
3728 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003729 status_line("%s %d lines (%d chars) using [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003730 buf, cnt, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003731#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003732 end_cmd_q(); // stop adding to q
3733 }
3734 break;
3735 case 'k': // k- goto prev line, same col
3736 case VI_K_UP: // cursor key Up
3737 if (cmdcnt-- > 1) {
3738 do_cmd(c);
3739 } // repeat cnt
3740 dot_prev();
3741 dot = move_to_col(dot, ccol + offset); // try stay in same col
3742 break;
3743 case 'r': // r- replace the current char with user input
3744 c1 = get_one_char(); // get the replacement char
3745 if (*dot != '\n') {
3746 *dot = c1;
Paul Fox8552aec2005-09-16 12:20:05 +00003747 file_modified++; // has the file been modified
Eric Andersen3f980402001-04-04 17:31:15 +00003748 }
3749 end_cmd_q(); // stop adding to q
3750 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003751 case 't': // t- move to char prior to next x
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00003752 last_forward_char = get_one_char();
3753 do_cmd(';');
3754 if (*dot == last_forward_char)
3755 dot_left();
3756 last_forward_char= 0;
Eric Andersen822c3832001-05-07 17:37:43 +00003757 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003758 case 'w': // w- forward a word
3759 if (cmdcnt-- > 1) {
3760 do_cmd(c);
3761 } // repeat cnt
3762 if (isalnum(*dot) || *dot == '_') { // we are on ALNUM
3763 dot = skip_thing(dot, 1, FORWARD, S_END_ALNUM);
3764 } else if (ispunct(*dot)) { // we are on PUNCT
3765 dot = skip_thing(dot, 1, FORWARD, S_END_PUNCT);
3766 }
3767 if (dot < end - 1)
3768 dot++; // move over word
3769 if (isspace(*dot)) {
3770 dot = skip_thing(dot, 2, FORWARD, S_OVER_WS);
3771 }
3772 break;
3773 case 'z': // z-
3774 c1 = get_one_char(); // get the replacement char
3775 cnt = 0;
3776 if (c1 == '.')
3777 cnt = (rows - 2) / 2; // put dot at center
3778 if (c1 == '-')
3779 cnt = rows - 2; // put dot at bottom
3780 screenbegin = begin_line(dot); // start dot at top
3781 dot_scroll(cnt, -1);
3782 break;
3783 case '|': // |- move to column "cmdcnt"
3784 dot = move_to_col(dot, cmdcnt - 1); // try to move to column
3785 break;
3786 case '~': // ~- flip the case of letters a-z -> A-Z
3787 if (cmdcnt-- > 1) {
3788 do_cmd(c);
3789 } // repeat cnt
3790 if (islower(*dot)) {
3791 *dot = toupper(*dot);
Paul Fox8552aec2005-09-16 12:20:05 +00003792 file_modified++; // has the file been modified
Eric Andersen3f980402001-04-04 17:31:15 +00003793 } else if (isupper(*dot)) {
3794 *dot = tolower(*dot);
Paul Fox8552aec2005-09-16 12:20:05 +00003795 file_modified++; // has the file been modified
Eric Andersen3f980402001-04-04 17:31:15 +00003796 }
3797 dot_right();
3798 end_cmd_q(); // stop adding to q
3799 break;
3800 //----- The Cursor and Function Keys -----------------------------
3801 case VI_K_HOME: // Cursor Key Home
3802 dot_begin();
3803 break;
3804 // The Fn keys could point to do_macro which could translate them
3805 case VI_K_FUN1: // Function Key F1
3806 case VI_K_FUN2: // Function Key F2
3807 case VI_K_FUN3: // Function Key F3
3808 case VI_K_FUN4: // Function Key F4
3809 case VI_K_FUN5: // Function Key F5
3810 case VI_K_FUN6: // Function Key F6
3811 case VI_K_FUN7: // Function Key F7
3812 case VI_K_FUN8: // Function Key F8
3813 case VI_K_FUN9: // Function Key F9
3814 case VI_K_FUN10: // Function Key F10
3815 case VI_K_FUN11: // Function Key F11
3816 case VI_K_FUN12: // Function Key F12
3817 break;
3818 }
3819
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003820 dc1:
Eric Andersen3f980402001-04-04 17:31:15 +00003821 // if text[] just became empty, add back an empty line
3822 if (end == text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003823 char_insert(text, '\n'); // start empty buf with dummy line
Eric Andersen3f980402001-04-04 17:31:15 +00003824 dot = text;
3825 }
3826 // it is OK for dot to exactly equal to end, otherwise check dot validity
3827 if (dot != end) {
3828 dot = bound_dot(dot); // make sure "dot" is valid
3829 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003830#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003831 check_context(c); // update the current context
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003832#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003833
3834 if (!isdigit(c))
3835 cmdcnt = 0; // cmd was not a number, reset cmdcnt
3836 cnt = dot - begin_line(dot);
3837 // Try to stay off of the Newline
3838 if (*dot == '\n' && cnt > 0 && cmd_mode == 0)
3839 dot--;
3840}
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003841
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003842#if ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003843static int totalcmds = 0;
3844static int Mp = 85; // Movement command Probability
3845static int Np = 90; // Non-movement command Probability
3846static int Dp = 96; // Delete command Probability
3847static int Ip = 97; // Insert command Probability
3848static int Yp = 98; // Yank command Probability
3849static int Pp = 99; // Put command Probability
3850static int M = 0, N = 0, I = 0, D = 0, Y = 0, P = 0, U = 0;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003851static const char chars[20] = "\t012345 abcdABCD-=.$";
3852static const char *const words[20] = {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003853 "this", "is", "a", "test",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003854 "broadcast", "the", "emergency", "of",
3855 "system", "quick", "brown", "fox",
3856 "jumped", "over", "lazy", "dogs",
3857 "back", "January", "Febuary", "March"
3858};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003859static const char *const lines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003860 "You should have received a copy of the GNU General Public License\n",
3861 "char c, cm, *cmd, *cmd1;\n",
3862 "generate a command by percentages\n",
3863 "Numbers may be typed as a prefix to some commands.\n",
3864 "Quit, discarding changes!\n",
3865 "Forced write, if permission originally not valid.\n",
3866 "In general, any ex or ed command (such as substitute or delete).\n",
3867 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
3868 "Please get w/ me and I will go over it with you.\n",
3869 "The following is a list of scheduled, committed changes.\n",
3870 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
3871 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
3872 "Any question about transactions please contact Sterling Huxley.\n",
3873 "I will try to get back to you by Friday, December 31.\n",
3874 "This Change will be implemented on Friday.\n",
3875 "Let me know if you have problems accessing this;\n",
3876 "Sterling Huxley recently added you to the access list.\n",
3877 "Would you like to go to lunch?\n",
3878 "The last command will be automatically run.\n",
3879 "This is too much english for a computer geek.\n",
3880};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003881static char *multilines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003882 "You should have received a copy of the GNU General Public License\n",
3883 "char c, cm, *cmd, *cmd1;\n",
3884 "generate a command by percentages\n",
3885 "Numbers may be typed as a prefix to some commands.\n",
3886 "Quit, discarding changes!\n",
3887 "Forced write, if permission originally not valid.\n",
3888 "In general, any ex or ed command (such as substitute or delete).\n",
3889 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
3890 "Please get w/ me and I will go over it with you.\n",
3891 "The following is a list of scheduled, committed changes.\n",
3892 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
3893 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
3894 "Any question about transactions please contact Sterling Huxley.\n",
3895 "I will try to get back to you by Friday, December 31.\n",
3896 "This Change will be implemented on Friday.\n",
3897 "Let me know if you have problems accessing this;\n",
3898 "Sterling Huxley recently added you to the access list.\n",
3899 "Would you like to go to lunch?\n",
3900 "The last command will be automatically run.\n",
3901 "This is too much english for a computer geek.\n",
3902};
3903
3904// create a random command to execute
3905static void crash_dummy()
3906{
3907 static int sleeptime; // how long to pause between commands
3908 char c, cm, *cmd, *cmd1;
3909 int i, cnt, thing, rbi, startrbi, percent;
3910
3911 // "dot" movement commands
3912 cmd1 = " \n\r\002\004\005\006\025\0310^$-+wWeEbBhjklHL";
3913
3914 // is there already a command running?
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003915 if (chars_to_parse > 0)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003916 goto cd1;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003917 cd0:
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003918 startrbi = rbi = 0;
3919 sleeptime = 0; // how long to pause between commands
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003920 memset(readbuffer, '\0', sizeof(readbuffer));
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003921 // generate a command by percentages
3922 percent = (int) lrand48() % 100; // get a number from 0-99
3923 if (percent < Mp) { // Movement commands
3924 // available commands
3925 cmd = cmd1;
3926 M++;
3927 } else if (percent < Np) { // non-movement commands
3928 cmd = "mz<>\'\""; // available commands
3929 N++;
3930 } else if (percent < Dp) { // Delete commands
3931 cmd = "dx"; // available commands
3932 D++;
3933 } else if (percent < Ip) { // Inset commands
3934 cmd = "iIaAsrJ"; // available commands
3935 I++;
3936 } else if (percent < Yp) { // Yank commands
3937 cmd = "yY"; // available commands
3938 Y++;
3939 } else if (percent < Pp) { // Put commands
3940 cmd = "pP"; // available commands
3941 P++;
3942 } else {
3943 // We do not know how to handle this command, try again
3944 U++;
3945 goto cd0;
3946 }
3947 // randomly pick one of the available cmds from "cmd[]"
3948 i = (int) lrand48() % strlen(cmd);
3949 cm = cmd[i];
3950 if (strchr(":\024", cm))
3951 goto cd0; // dont allow colon or ctrl-T commands
3952 readbuffer[rbi++] = cm; // put cmd into input buffer
3953
3954 // now we have the command-
3955 // there are 1, 2, and multi char commands
3956 // find out which and generate the rest of command as necessary
3957 if (strchr("dmryz<>\'\"", cm)) { // 2-char commands
3958 cmd1 = " \n\r0$^-+wWeEbBhjklHL";
3959 if (cm == 'm' || cm == '\'' || cm == '\"') { // pick a reg[]
3960 cmd1 = "abcdefghijklmnopqrstuvwxyz";
3961 }
3962 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
3963 c = cmd1[thing];
3964 readbuffer[rbi++] = c; // add movement to input buffer
3965 }
3966 if (strchr("iIaAsc", cm)) { // multi-char commands
3967 if (cm == 'c') {
3968 // change some thing
3969 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
3970 c = cmd1[thing];
3971 readbuffer[rbi++] = c; // add movement to input buffer
3972 }
3973 thing = (int) lrand48() % 4; // what thing to insert
3974 cnt = (int) lrand48() % 10; // how many to insert
3975 for (i = 0; i < cnt; i++) {
3976 if (thing == 0) { // insert chars
3977 readbuffer[rbi++] = chars[((int) lrand48() % strlen(chars))];
3978 } else if (thing == 1) { // insert words
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003979 strcat(readbuffer, words[(int) lrand48() % 20]);
3980 strcat(readbuffer, " ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003981 sleeptime = 0; // how fast to type
3982 } else if (thing == 2) { // insert lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003983 strcat(readbuffer, lines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003984 sleeptime = 0; // how fast to type
3985 } else { // insert multi-lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003986 strcat(readbuffer, multilines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003987 sleeptime = 0; // how fast to type
3988 }
3989 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003990 strcat(readbuffer, "\033");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003991 }
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00003992 chars_to_parse = strlen(readbuffer);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003993 cd1:
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003994 totalcmds++;
3995 if (sleeptime > 0)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003996 mysleep(sleeptime); // sleep 1/100 sec
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003997}
3998
3999// test to see if there are any errors
4000static void crash_test()
4001{
4002 static time_t oldtim;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004003
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004004 time_t tim;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004005 char d[2], msg[80];
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004006
4007 msg[0] = '\0';
4008 if (end < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004009 strcat(msg, "end<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004010 }
4011 if (end > textend) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004012 strcat(msg, "end>textend ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004013 }
4014 if (dot < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004015 strcat(msg, "dot<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004016 }
4017 if (dot > end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004018 strcat(msg, "dot>end ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004019 }
4020 if (screenbegin < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004021 strcat(msg, "screenbegin<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004022 }
4023 if (screenbegin > end - 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004024 strcat(msg, "screenbegin>end-1 ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004025 }
4026
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004027 if (msg[0]) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004028 alarm(0);
Glenn L McGrath7127b582002-12-03 21:48:15 +00004029 printf("\n\n%d: \'%c\' %s\n\n\n%s[Hit return to continue]%s",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004030 totalcmds, last_input_char, msg, SOs, SOn);
4031 fflush(stdout);
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00004032 while (safe_read(0, d, 1) > 0) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004033 if (d[0] == '\n' || d[0] == '\r')
4034 break;
4035 }
4036 alarm(3);
4037 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00004038 tim = time(NULL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004039 if (tim >= (oldtim + 3)) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00004040 sprintf(status_buffer,
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004041 "Tot=%d: M=%d N=%d I=%d D=%d Y=%d P=%d U=%d size=%d",
4042 totalcmds, M, N, I, D, Y, P, U, end - text + 1);
4043 oldtim = tim;
4044 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00004045}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00004046#endif