blob: ee5b5d98ac4b50ffee32fb8593307cf8ccad7f2f [file] [log] [blame]
Rob Landleye5e1a102006-06-21 01:15:36 +00001/* vi: set sw=4 ts=4: */
Eric Andersen3f980402001-04-04 17:31:15 +00002/*
3 * tiny vi.c: A small 'vi' clone
4 * Copyright (C) 2000, 2001 Sterling Huxley <sterling@europa.com>
5 *
Paul Foxdbf935d2006-03-27 20:29:33 +00006 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen3f980402001-04-04 17:31:15 +00007 */
8
Eric Andersen3f980402001-04-04 17:31:15 +00009/*
Eric Andersen3f980402001-04-04 17:31:15 +000010 * Things To Do:
11 * EXINIT
Eric Andersen1c0d3112001-04-16 15:46:44 +000012 * $HOME/.exrc and ./.exrc
Eric Andersen3f980402001-04-04 17:31:15 +000013 * add magic to search /foo.*bar
14 * add :help command
15 * :map macros
Eric Andersen3f980402001-04-04 17:31:15 +000016 * if mark[] values were line numbers rather than pointers
17 * it would be easier to change the mark when add/delete lines
Eric Andersen1c0d3112001-04-16 15:46:44 +000018 * More intelligence in refresh()
19 * ":r !cmd" and "!cmd" to filter text through an external command
20 * A true "undo" facility
21 * An "ex" line oriented mode- maybe using "cmdedit"
Eric Andersen3f980402001-04-04 17:31:15 +000022 */
23
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000024#include "libbb.h"
Eric Andersen3f980402001-04-04 17:31:15 +000025
Paul Fox35e9c5d2008-03-06 16:26:12 +000026/* the CRASHME code is unmaintained, and doesn't currently build */
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +000027#define ENABLE_FEATURE_VI_CRASHME 0
28
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000029
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +000030#if ENABLE_LOCALE_SUPPORT
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000031
32#if ENABLE_FEATURE_VI_8BIT
33#define Isprint(c) isprint(c)
Glenn L McGrath09adaca2002-12-02 21:18:10 +000034#else
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000035#define Isprint(c) (isprint(c) && (unsigned char)(c) < 0x7f)
Glenn L McGrath09adaca2002-12-02 21:18:10 +000036#endif
37
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000038#else
39
40/* 0x9b is Meta-ESC */
41#if ENABLE_FEATURE_VI_8BIT
42#define Isprint(c) ((unsigned char)(c) >= ' ' && (c) != 0x7f && (unsigned char)(c) != 0x9b)
43#else
44#define Isprint(c) ((unsigned char)(c) >= ' ' && (unsigned char)(c) < 0x7f)
45#endif
46
47#endif
48
49
Denis Vlasenkoe8a07882007-06-10 15:08:44 +000050enum {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +000051 MAX_TABSTOP = 32, // sanity limit
Denis Vlasenko88adfcd2007-12-22 15:40:13 +000052 // User input len. Need not be extra big.
53 // Lines in file being edited *can* be bigger than this.
54 MAX_INPUT_LEN = 128,
55 // Sanity limits. We have only one buffer of this size.
56 MAX_SCR_COLS = CONFIG_FEATURE_VI_MAX_LEN,
57 MAX_SCR_ROWS = CONFIG_FEATURE_VI_MAX_LEN,
Denis Vlasenkoe8a07882007-06-10 15:08:44 +000058};
Eric Andersen3f980402001-04-04 17:31:15 +000059
Glenn L McGrath09adaca2002-12-02 21:18:10 +000060/* vt102 typical ESC sequence */
61/* terminal standout start/normal ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000062static const char SOs[] ALIGN1 = "\033[7m";
63static const char SOn[] ALIGN1 = "\033[0m";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000064/* terminal bell sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000065static const char bell[] ALIGN1 = "\007";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000066/* Clear-end-of-line and Clear-end-of-screen ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000067static const char Ceol[] ALIGN1 = "\033[0K";
68static const char Ceos[] ALIGN1 = "\033[0J";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000069/* Cursor motion arbitrary destination ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000070static const char CMrc[] ALIGN1 = "\033[%d;%dH";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000071/* Cursor motion up and down ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000072static const char CMup[] ALIGN1 = "\033[A";
73static const char CMdown[] ALIGN1 = "\n";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000074
Denis Vlasenkoded6ad32008-10-14 12:26:30 +000075#if ENABLE_FEATURE_VI_DOT_CMD || ENABLE_FEATURE_VI_YANKMARK
76// cmds modifying text[]
77// vda: removed "aAiIs" as they switch us into insert mode
78// and remembering input for replay after them makes no sense
79static const char modifying_cmds[] = "cCdDJoOpPrRxX<>~";
80#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +000081
Rob Landleybc68cd12006-03-10 19:22:06 +000082enum {
83 YANKONLY = FALSE,
84 YANKDEL = TRUE,
85 FORWARD = 1, // code depends on "1" for array index
86 BACK = -1, // code depends on "-1" for array index
87 LIMITED = 0, // how much of text[] in char_search
88 FULL = 1, // how much of text[] in char_search
Eric Andersen3f980402001-04-04 17:31:15 +000089
Rob Landleybc68cd12006-03-10 19:22:06 +000090 S_BEFORE_WS = 1, // used in skip_thing() for moving "dot"
91 S_TO_WS = 2, // used in skip_thing() for moving "dot"
92 S_OVER_WS = 3, // used in skip_thing() for moving "dot"
93 S_END_PUNCT = 4, // used in skip_thing() for moving "dot"
Denis Vlasenko8e858e22007-03-07 09:35:43 +000094 S_END_ALNUM = 5, // used in skip_thing() for moving "dot"
Rob Landleybc68cd12006-03-10 19:22:06 +000095};
Eric Andersen3f980402001-04-04 17:31:15 +000096
Denis Vlasenkob1759462008-06-20 20:20:54 +000097
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +000098/* vi.c expects chars to be unsigned. */
99/* busybox build system provides that, but it's better */
100/* to audit and fix the source */
Eric Andersen3f980402001-04-04 17:31:15 +0000101
Denis Vlasenkob1759462008-06-20 20:20:54 +0000102struct globals {
103 /* many references - keep near the top of globals */
104 char *text, *end; // pointers to the user data in memory
105 char *dot; // where all the action takes place
106 int text_size; // size of the allocated buffer
107
108 /* the rest */
109 smallint vi_setops;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000110#define VI_AUTOINDENT 1
111#define VI_SHOWMATCH 2
112#define VI_IGNORECASE 4
113#define VI_ERR_METHOD 8
114#define autoindent (vi_setops & VI_AUTOINDENT)
115#define showmatch (vi_setops & VI_SHOWMATCH )
116#define ignorecase (vi_setops & VI_IGNORECASE)
117/* indicate error with beep or flash */
118#define err_method (vi_setops & VI_ERR_METHOD)
119
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000120#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkob1759462008-06-20 20:20:54 +0000121 smallint readonly_mode;
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +0000122#define SET_READONLY_FILE(flags) ((flags) |= 0x01)
123#define SET_READONLY_MODE(flags) ((flags) |= 0x02)
124#define UNSET_READONLY_FILE(flags) ((flags) &= 0xfe)
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000125#else
Denis Vlasenkob1759462008-06-20 20:20:54 +0000126#define SET_READONLY_FILE(flags) ((void)0)
127#define SET_READONLY_MODE(flags) ((void)0)
128#define UNSET_READONLY_FILE(flags) ((void)0)
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000129#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000130
Denis Vlasenkob1759462008-06-20 20:20:54 +0000131 smallint editing; // >0 while we are editing a file
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000132 // [code audit says "can be 0, 1 or 2 only"]
Denis Vlasenkob1759462008-06-20 20:20:54 +0000133 smallint cmd_mode; // 0=command 1=insert 2=replace
134 int file_modified; // buffer contents changed (counter, not flag!)
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000135 int last_file_modified; // = -1;
Denis Vlasenkob1759462008-06-20 20:20:54 +0000136 int fn_start; // index of first cmd line file name
137 int save_argc; // how many file names on cmd line
138 int cmdcnt; // repetition count
139 unsigned rows, columns; // the terminal screen is this size
140 int crow, ccol; // cursor is on Crow x Ccol
141 int offset; // chars scrolled off the screen to the left
142 int have_status_msg; // is default edit status needed?
143 // [don't make smallint!]
144 int last_status_cksum; // hash of current status line
145 char *current_filename;
146 char *screenbegin; // index into text[], of top line on the screen
147 char *screen; // pointer to the virtual screen buffer
148 int screensize; // and its size
149 int tabstop;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000150 int last_forward_char; // last char searched for with 'f' (int because of Unicode)
Denis Vlasenkob1759462008-06-20 20:20:54 +0000151 char erase_char; // the users erase character
152 char last_input_char; // last char read from user
Denis Vlasenkob1759462008-06-20 20:20:54 +0000153
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000154#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkob1759462008-06-20 20:20:54 +0000155 smallint adding2q; // are we currently adding user input to q
156 int lmc_len; // length of last_modifying_cmd
157 char *ioq, *ioq_start; // pointer to string for get_one_char to "read"
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000158#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000159#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Denis Vlasenkob1759462008-06-20 20:20:54 +0000160 int last_row; // where the cursor was last moved to
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000161#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000162#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkob1759462008-06-20 20:20:54 +0000163 int my_pid;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000164#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000165#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkob1759462008-06-20 20:20:54 +0000166 char *last_search_pattern; // last pattern from a '/' or '?' search
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000167#endif
Denis Vlasenko0112ff52008-10-25 23:23:00 +0000168
Denis Vlasenkob1759462008-06-20 20:20:54 +0000169 /* former statics */
170#if ENABLE_FEATURE_VI_YANKMARK
171 char *edit_file__cur_line;
172#endif
173 int refresh__old_offset;
174 int format_edit_status__tot;
Eric Andersen3f980402001-04-04 17:31:15 +0000175
Denis Vlasenkob1759462008-06-20 20:20:54 +0000176 /* a few references only */
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000177#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000178 int YDreg, Ureg; // default delete register and orig line for "U"
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000179 char *reg[28]; // named register a-z, "D", and "U" 0-25,26,27
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000180 char *mark[28]; // user marks points somewhere in text[]- a-z and previous context ''
181 char *context_start, *context_end;
182#endif
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000183#if ENABLE_FEATURE_VI_USE_SIGNALS
Denis Vlasenkob1759462008-06-20 20:20:54 +0000184 sigjmp_buf restart; // catch_sig()
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000185#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000186 struct termios term_orig, term_vi; // remember what the cooked mode was
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000187#if ENABLE_FEATURE_VI_COLON
188 char *initial_cmds[3]; // currently 2 entries, NULL terminated
189#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000190 // Should be just enough to hold a key sequence,
Denis Vlasenko25497c12008-10-14 10:25:05 +0000191 // but CRASHME mode uses it as generated command buffer too
192#if ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko1dfeeeb2008-10-18 19:04:37 +0000193 char readbuffer[128];
Denis Vlasenko25497c12008-10-14 10:25:05 +0000194#else
Denis Vlasenko5f6aaf32008-10-25 23:27:29 +0000195 char readbuffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko25497c12008-10-14 10:25:05 +0000196#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000197#define STATUS_BUFFER_LEN 200
198 char status_buffer[STATUS_BUFFER_LEN]; // messages to the user
199#if ENABLE_FEATURE_VI_DOT_CMD
200 char last_modifying_cmd[MAX_INPUT_LEN]; // last modifying cmd for "."
201#endif
202 char get_input_line__buf[MAX_INPUT_LEN]; /* former static */
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000203
204 char scr_out_buf[MAX_SCR_COLS + MAX_TABSTOP * 2];
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000205};
206#define G (*ptr_to_globals)
207#define text (G.text )
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000208#define text_size (G.text_size )
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000209#define end (G.end )
210#define dot (G.dot )
211#define reg (G.reg )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000212
213#define vi_setops (G.vi_setops )
214#define editing (G.editing )
215#define cmd_mode (G.cmd_mode )
216#define file_modified (G.file_modified )
217#define last_file_modified (G.last_file_modified )
218#define fn_start (G.fn_start )
219#define save_argc (G.save_argc )
220#define cmdcnt (G.cmdcnt )
221#define rows (G.rows )
222#define columns (G.columns )
223#define crow (G.crow )
224#define ccol (G.ccol )
225#define offset (G.offset )
226#define status_buffer (G.status_buffer )
227#define have_status_msg (G.have_status_msg )
228#define last_status_cksum (G.last_status_cksum )
229#define current_filename (G.current_filename )
230#define screen (G.screen )
231#define screensize (G.screensize )
232#define screenbegin (G.screenbegin )
233#define tabstop (G.tabstop )
Denis Vlasenko0112ff52008-10-25 23:23:00 +0000234#define last_forward_char (G.last_forward_char )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000235#define erase_char (G.erase_char )
236#define last_input_char (G.last_input_char )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000237#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkob1759462008-06-20 20:20:54 +0000238#define readonly_mode (G.readonly_mode )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000239#else
240#define readonly_mode 0
241#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000242#define adding2q (G.adding2q )
243#define lmc_len (G.lmc_len )
244#define ioq (G.ioq )
245#define ioq_start (G.ioq_start )
246#define last_row (G.last_row )
247#define my_pid (G.my_pid )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000248#define last_search_pattern (G.last_search_pattern)
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000249
Denis Vlasenkob1759462008-06-20 20:20:54 +0000250#define edit_file__cur_line (G.edit_file__cur_line)
251#define refresh__old_offset (G.refresh__old_offset)
252#define format_edit_status__tot (G.format_edit_status__tot)
253
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000254#define YDreg (G.YDreg )
255#define Ureg (G.Ureg )
256#define mark (G.mark )
257#define context_start (G.context_start )
258#define context_end (G.context_end )
259#define restart (G.restart )
260#define term_orig (G.term_orig )
261#define term_vi (G.term_vi )
262#define initial_cmds (G.initial_cmds )
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000263#define readbuffer (G.readbuffer )
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000264#define scr_out_buf (G.scr_out_buf )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000265#define last_modifying_cmd (G.last_modifying_cmd )
266#define get_input_line__buf (G.get_input_line__buf)
267
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000268#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000269 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenkob1759462008-06-20 20:20:54 +0000270 last_file_modified = -1; \
Denis Vlasenko31d58e52008-10-29 13:16:28 +0000271 /* "" but has space for 2 chars: */ \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000272 IF_FEATURE_VI_SEARCH(last_search_pattern = xzalloc(2);) \
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000273} while (0)
Eric Andersen3f980402001-04-04 17:31:15 +0000274
Denis Vlasenkob1759462008-06-20 20:20:54 +0000275
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000276static int init_text_buffer(char *); // init from file or create new
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000277static void edit_file(char *); // edit one file
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000278static void do_cmd(int); // execute a command
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000279static int next_tabstop(int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000280static void sync_cursor(char *, int *, int *); // synchronize the screen cursor to dot
281static char *begin_line(char *); // return pointer to cur line B-o-l
282static char *end_line(char *); // return pointer to cur line E-o-l
283static char *prev_line(char *); // return pointer to prev line B-o-l
284static char *next_line(char *); // return pointer to next line B-o-l
285static char *end_screen(void); // get pointer to last char on screen
286static int count_lines(char *, char *); // count line from start to stop
287static char *find_line(int); // find begining of line #li
288static char *move_to_col(char *, int); // move "p" to column l
Eric Andersen3f980402001-04-04 17:31:15 +0000289static void dot_left(void); // move dot left- dont leave line
290static void dot_right(void); // move dot right- dont leave line
291static void dot_begin(void); // move dot to B-o-l
292static void dot_end(void); // move dot to E-o-l
293static void dot_next(void); // move dot to next line B-o-l
294static void dot_prev(void); // move dot to prev line B-o-l
295static void dot_scroll(int, int); // move the screen up or down
296static void dot_skip_over_ws(void); // move dot pat WS
297static void dot_delete(void); // delete the char at 'dot'
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000298static char *bound_dot(char *); // make sure text[0] <= P < "end"
299static char *new_screen(int, int); // malloc virtual screen memory
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000300static char *char_insert(char *, char); // insert the char c at 'p'
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000301// might reallocate text[]! use p += stupid_insert(p, ...),
302// and be careful to not use pointers into potentially freed text[]!
303static uintptr_t stupid_insert(char *, char); // stupidly insert the char c at 'p'
Paul Foxc51fc7b2008-03-06 01:34:23 +0000304static int find_range(char **, char **, char); // return pointers for an object
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000305static int st_test(char *, int, int, char *); // helper for skip_thing()
306static char *skip_thing(char *, int, int, int); // skip some object
307static char *find_pair(char *, char); // find matching pair () [] {}
308static char *text_hole_delete(char *, char *); // at "p", delete a 'size' byte hole
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000309// might reallocate text[]! use p += text_hole_make(p, ...),
310// and be careful to not use pointers into potentially freed text[]!
311static uintptr_t text_hole_make(char *, int); // at "p", make a 'size' byte hole
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000312static char *yank_delete(char *, char *, int, int); // yank text[] into register then delete
Eric Andersen3f980402001-04-04 17:31:15 +0000313static void show_help(void); // display some help info
Eric Andersen3f980402001-04-04 17:31:15 +0000314static void rawmode(void); // set "raw" mode on tty
315static void cookmode(void); // return to "cooked" mode on tty
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000316// sleep for 'h' 1/100 seconds, return 1/0 if stdin is (ready for read)/(not ready)
317static int mysleep(int);
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000318static int readit(void); // read (maybe cursor) key from stdin
319static int get_one_char(void); // read 1 char from stdin
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000320static int file_size(const char *); // what is the byte size of "fn"
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000321#if !ENABLE_FEATURE_VI_READONLY
322#define file_insert(fn, p, update_ro_status) file_insert(fn, p)
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000323#endif
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000324// file_insert might reallocate text[]!
325static int file_insert(const char *, char *, int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000326static int file_write(char *, char *, char *);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +0000327#if !ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
328#define place_cursor(a, b, optimize) place_cursor(a, b)
329#endif
Eric Andersen822c3832001-05-07 17:37:43 +0000330static void place_cursor(int, int, int);
Eric Andersenbff7a602001-11-17 07:15:43 +0000331static void screen_erase(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000332static void clear_to_eol(void);
333static void clear_to_eos(void);
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000334static void go_bottom_and_clear_to_eol(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000335static void standout_start(void); // send "start reverse video" sequence
336static void standout_end(void); // send "end reverse video" sequence
337static void flash(int); // flash the terminal screen
Eric Andersen3f980402001-04-04 17:31:15 +0000338static void show_status_line(void); // put a message on the bottom line
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000339static void status_line(const char *, ...); // print to status buf
340static void status_line_bold(const char *, ...);
341static void not_implemented(const char *); // display "Not implemented" message
Paul Fox8552aec2005-09-16 12:20:05 +0000342static int format_edit_status(void); // format file status on status line
Eric Andersen3f980402001-04-04 17:31:15 +0000343static void redraw(int); // force a full screen refresh
Denis Vlasenko68404f12008-03-17 09:00:54 +0000344static char* format_line(char* /*, int*/);
Eric Andersen3f980402001-04-04 17:31:15 +0000345static void refresh(int); // update the terminal from screen[]
346
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000347static void Indicate_Error(void); // use flash or beep to indicate error
348#define indicate_error(c) Indicate_Error()
Paul Fox90372ed2005-10-09 14:26:26 +0000349static void Hit_Return(void);
350
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000351#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000352static char *char_search(char *, const char *, int, int); // search for pattern starting at p
353static int mycmp(const char *, const char *, int); // string cmp based in "ignorecase"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000354#endif
355#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000356static char *get_one_address(char *, int *); // get colon addr, if present
357static char *get_address(char *, int *, int *); // get two colon addrs, if present
358static void colon(char *); // execute the "colon" mode cmds
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000359#endif
360#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000361static void winch_sig(int); // catch window size changes
362static void suspend_sig(int); // catch ctrl-Z
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000363static void catch_sig(int); // catch ctrl-C and alarm time-outs
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000364#endif
365#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000366static void start_new_cmd_q(char); // new queue for command
Eric Andersenbff7a602001-11-17 07:15:43 +0000367static void end_cmd_q(void); // stop saving input chars
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000368#else
369#define end_cmd_q() ((void)0)
370#endif
371#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000372static void showmatching(char *); // show the matching pair () [] {}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000373#endif
374#if ENABLE_FEATURE_VI_YANKMARK || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000375// might reallocate text[]! use p += string_insert(p, ...),
376// and be careful to not use pointers into potentially freed text[]!
377static uintptr_t string_insert(char *, const char *); // insert the string at 'p'
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000378#endif
379#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000380static char *text_yank(char *, char *, int); // save copy of "p" into a register
381static char what_reg(void); // what is letter of current YDreg
382static void check_context(char); // remember context for '' command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000383#endif
384#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000385static void crash_dummy();
386static void crash_test();
387static int crashme = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000388#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000389
390
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000391static void write1(const char *out)
392{
393 fputs(out, stdout);
394}
395
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000396int vi_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +0000397int vi_main(int argc, char **argv)
Eric Andersen3f980402001-04-04 17:31:15 +0000398{
Eric Andersend402edf2001-04-04 19:29:48 +0000399 int c;
Denis Vlasenkob1759462008-06-20 20:20:54 +0000400
401 INIT_G();
Eric Andersen3f980402001-04-04 17:31:15 +0000402
Denis Vlasenkocd5c7862007-05-17 16:37:22 +0000403#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000404 my_pid = getpid();
405#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000406#if ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000407 srand((long) my_pid);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000408#endif
Denis Vlasenko2414a962007-07-18 22:03:40 +0000409#ifdef NO_SUCH_APPLET_YET
410 /* If we aren't "vi", we are "view" */
411 if (ENABLE_FEATURE_VI_READONLY && applet_name[2]) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000412 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000413 }
Denis Vlasenko2414a962007-07-18 22:03:40 +0000414#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000415
Bernhard Reutner-Fischer73f56bb2007-09-22 21:18:46 +0000416 vi_setops = VI_AUTOINDENT | VI_SHOWMATCH | VI_IGNORECASE;
Denis Vlasenkof9234132007-03-21 00:03:42 +0000417 // 1- process $HOME/.exrc file (not inplemented yet)
Eric Andersen3f980402001-04-04 17:31:15 +0000418 // 2- process EXINIT variable from environment
419 // 3- process command line args
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000420#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000421 {
422 char *p = getenv("EXINIT");
423 if (p && *p)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000424 initial_cmds[0] = xstrndup(p, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000425 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000426#endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000427 while ((c = getopt(argc, argv, "hCRH" IF_FEATURE_VI_COLON("c:"))) != -1) {
Eric Andersen3f980402001-04-04 17:31:15 +0000428 switch (c) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000429#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000430 case 'C':
431 crashme = 1;
432 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000433#endif
434#if ENABLE_FEATURE_VI_READONLY
Eric Andersen3f980402001-04-04 17:31:15 +0000435 case 'R': // Read-only flag
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000436 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000437 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000438#endif
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000439#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000440 case 'c': // cmd line vi command
441 if (*optarg)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000442 initial_cmds[initial_cmds[0] != 0] = xstrndup(optarg, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000443 break;
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000444#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000445 case 'H':
Eric Andersen3f980402001-04-04 17:31:15 +0000446 show_help();
Paul Fox35e9c5d2008-03-06 16:26:12 +0000447 /* fall through */
Paul Fox35e9c5d2008-03-06 16:26:12 +0000448 default:
Denis Vlasenkoc6938402008-03-24 02:18:03 +0000449 bb_show_usage();
Eric Andersendd8500b2001-07-02 18:06:14 +0000450 return 1;
Eric Andersen3f980402001-04-04 17:31:15 +0000451 }
452 }
453
454 // The argv array can be used by the ":next" and ":rewind" commands
455 // save optind.
456 fn_start = optind; // remember first file name for :next and :rew
457 save_argc = argc;
458
459 //----- This is the main file handling loop --------------
460 if (optind >= argc) {
Eric Andersen3f980402001-04-04 17:31:15 +0000461 edit_file(0);
462 } else {
463 for (; optind < argc; optind++) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000464 edit_file(argv[optind]);
Eric Andersen3f980402001-04-04 17:31:15 +0000465 }
466 }
467 //-----------------------------------------------------------
468
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000469 return 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000470}
471
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000472/* read text from file or create an empty buf */
473/* will also update current_filename */
474static int init_text_buffer(char *fn)
475{
476 int rc;
477 int size = file_size(fn); // file size. -1 means does not exist.
478
479 /* allocate/reallocate text buffer */
480 free(text);
Denis Vlasenkob1759462008-06-20 20:20:54 +0000481 text_size = size + 10240;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000482 screenbegin = dot = end = text = xzalloc(text_size);
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000483
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000484 if (fn != current_filename) {
485 free(current_filename);
486 current_filename = xstrdup(fn);
487 }
488 if (size < 0) {
489 // file dont exist. Start empty buf with dummy line
490 char_insert(text, '\n');
491 rc = 0;
492 } else {
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000493 rc = file_insert(fn, text, 1);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000494 }
495 file_modified = 0;
496 last_file_modified = -1;
497#if ENABLE_FEATURE_VI_YANKMARK
498 /* init the marks. */
499 memset(mark, 0, sizeof(mark));
500#endif
501 return rc;
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000502}
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000503
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000504static void edit_file(char *fn)
Eric Andersen3f980402001-04-04 17:31:15 +0000505{
Denis Vlasenkob1759462008-06-20 20:20:54 +0000506#if ENABLE_FEATURE_VI_YANKMARK
507#define cur_line edit_file__cur_line
508#endif
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000509 int c;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000510 int size;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000511#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000512 int sig;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000513#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000514
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000515 editing = 1; // 0 = exit, 1 = one file, 2 = multiple files
Eric Andersen3f980402001-04-04 17:31:15 +0000516 rawmode();
517 rows = 24;
518 columns = 80;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000519 size = 0;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000520 if (ENABLE_FEATURE_VI_WIN_RESIZE) {
Rob Landleye5e1a102006-06-21 01:15:36 +0000521 get_terminal_width_height(0, &columns, &rows);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000522 if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS;
523 if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS;
524 }
Eric Andersen3f980402001-04-04 17:31:15 +0000525 new_screen(rows, columns); // get memory for virtual screen
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000526 init_text_buffer(fn);
Eric Andersen3f980402001-04-04 17:31:15 +0000527
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000528#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000529 YDreg = 26; // default Yank/Delete reg
530 Ureg = 27; // hold orig line for "U" cmd
Eric Andersen3f980402001-04-04 17:31:15 +0000531 mark[26] = mark[27] = text; // init "previous context"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000532#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000533
Eric Andersen3f980402001-04-04 17:31:15 +0000534 last_forward_char = last_input_char = '\0';
535 crow = 0;
536 ccol = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000537
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000538#if ENABLE_FEATURE_VI_USE_SIGNALS
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000539 catch_sig(0);
Eric Andersen3f980402001-04-04 17:31:15 +0000540 signal(SIGWINCH, winch_sig);
541 signal(SIGTSTP, suspend_sig);
Paul Fox2724fa92008-03-17 15:28:07 +0000542 sig = sigsetjmp(restart, 1);
Eric Andersen3f980402001-04-04 17:31:15 +0000543 if (sig != 0) {
Eric Andersen1c0d3112001-04-16 15:46:44 +0000544 screenbegin = dot = text;
Eric Andersen3f980402001-04-04 17:31:15 +0000545 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000546#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000547
Eric Andersen3f980402001-04-04 17:31:15 +0000548 cmd_mode = 0; // 0=command 1=insert 2='R'eplace
549 cmdcnt = 0;
550 tabstop = 8;
551 offset = 0; // no horizontal offset
552 c = '\0';
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000553#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000554 free(ioq_start);
Paul Foxc51fc7b2008-03-06 01:34:23 +0000555 ioq = ioq_start = NULL;
556 lmc_len = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000557 adding2q = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000558#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000559
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000560#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000561 {
562 char *p, *q;
563 int n = 0;
564
565 while ((p = initial_cmds[n])) {
566 do {
567 q = p;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000568 p = strchr(q, '\n');
Denis Vlasenkof9234132007-03-21 00:03:42 +0000569 if (p)
Denis Vlasenko51742f42007-04-12 00:32:05 +0000570 while (*p == '\n')
Denis Vlasenkof9234132007-03-21 00:03:42 +0000571 *p++ = '\0';
572 if (*q)
573 colon(q);
574 } while (p);
575 free(initial_cmds[n]);
576 initial_cmds[n] = NULL;
577 n++;
578 }
579 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000580#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000581 redraw(FALSE); // dont force every col re-draw
Eric Andersen3f980402001-04-04 17:31:15 +0000582 //------This is the main Vi cmd handling loop -----------------------
583 while (editing > 0) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000584#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000585 if (crashme > 0) {
586 if ((end - text) > 1) {
587 crash_dummy(); // generate a random command
588 } else {
589 crashme = 0;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000590 string_insert(text, "\n\n##### Ran out of text to work on. #####\n\n"); // insert the string
591 dot = text;
Eric Andersen3f980402001-04-04 17:31:15 +0000592 refresh(FALSE);
593 }
594 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000595#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000596 last_input_char = c = get_one_char(); // get a cmd from user
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000597#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000598 // save a copy of the current line- for the 'U" command
599 if (begin_line(dot) != cur_line) {
600 cur_line = begin_line(dot);
601 text_yank(begin_line(dot), end_line(dot), Ureg);
602 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000603#endif
604#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +0000605 // These are commands that change text[].
606 // Remember the input for the "." command
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000607 if (!adding2q && ioq_start == NULL
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000608 && cmd_mode == 0 // command mode
609 && c > '\0' // exclude NUL and non-ASCII chars
610 && c < 0x7f // (Unicode and such)
611 && strchr(modifying_cmds, c)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000612 ) {
Eric Andersen3f980402001-04-04 17:31:15 +0000613 start_new_cmd_q(c);
614 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000615#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000616 do_cmd(c); // execute the user command
Denis Vlasenko8ef801b2008-10-16 09:46:07 +0000617
Eric Andersen3f980402001-04-04 17:31:15 +0000618 // poll to see if there is input already waiting. if we are
619 // not able to display output fast enough to keep up, skip
620 // the display update until we catch up with input.
Denys Vlasenko020f4062009-05-17 16:44:54 +0200621 if (!readbuffer[0] && mysleep(0) == 0) {
Denis Vlasenko8ef801b2008-10-16 09:46:07 +0000622 // no input pending - so update output
Eric Andersen3f980402001-04-04 17:31:15 +0000623 refresh(FALSE);
624 show_status_line();
625 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000626#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000627 if (crashme > 0)
628 crash_test(); // test editor variables
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000629#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000630 }
631 //-------------------------------------------------------------------
632
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000633 go_bottom_and_clear_to_eol();
Eric Andersen3f980402001-04-04 17:31:15 +0000634 cookmode();
Denis Vlasenkob1759462008-06-20 20:20:54 +0000635#undef cur_line
Eric Andersen3f980402001-04-04 17:31:15 +0000636}
637
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000638//----- The Colon commands -------------------------------------
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000639#if ENABLE_FEATURE_VI_COLON
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000640static char *get_one_address(char *p, int *addr) // get colon addr, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000641{
642 int st;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000643 char *q;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000644 IF_FEATURE_VI_YANKMARK(char c;)
645 IF_FEATURE_VI_SEARCH(char *pat;)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000646
647 *addr = -1; // assume no addr
648 if (*p == '.') { // the current line
649 p++;
650 q = begin_line(dot);
651 *addr = count_lines(text, q);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000652 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000653#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000654 else if (*p == '\'') { // is this a mark addr
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000655 p++;
656 c = tolower(*p);
657 p++;
658 if (c >= 'a' && c <= 'z') {
659 // we have a mark
660 c = c - 'a';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000661 q = mark[(unsigned char) c];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000662 if (q != NULL) { // is mark valid
Denis Vlasenko00d84172008-11-24 07:34:42 +0000663 *addr = count_lines(text, q);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000664 }
665 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000666 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000667#endif
668#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000669 else if (*p == '/') { // a search pattern
670 q = strchrnul(++p, '/');
671 pat = xstrndup(p, q - p); // save copy of pattern
672 p = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000673 if (*p == '/')
674 p++;
675 q = char_search(dot, pat, FORWARD, FULL);
676 if (q != NULL) {
677 *addr = count_lines(text, q);
678 }
679 free(pat);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000680 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000681#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000682 else if (*p == '$') { // the last line in file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000683 p++;
684 q = begin_line(end - 1);
685 *addr = count_lines(text, q);
686 } else if (isdigit(*p)) { // specific line number
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000687 sscanf(p, "%d%n", addr, &st);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000688 p += st;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000689 } else {
690 // unrecognised address - assume -1
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000691 *addr = -1;
692 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000693 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000694}
695
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000696static char *get_address(char *p, int *b, int *e) // get two colon addrs, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000697{
698 //----- get the address' i.e., 1,3 'a,'b -----
699 // get FIRST addr, if present
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000700 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000701 p++; // skip over leading spaces
702 if (*p == '%') { // alias for 1,$
703 p++;
704 *b = 1;
705 *e = count_lines(text, end-1);
706 goto ga0;
707 }
708 p = get_one_address(p, b);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000709 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000710 p++;
Eric Andersenaff114c2004-04-14 17:51:38 +0000711 if (*p == ',') { // is there a address separator
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000712 p++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000713 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000714 p++;
715 // get SECOND addr, if present
716 p = get_one_address(p, e);
717 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000718 ga0:
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000719 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000720 p++; // skip over trailing spaces
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000721 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000722}
723
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000724#if ENABLE_FEATURE_VI_SET && ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000725static void setops(const char *args, const char *opname, int flg_no,
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000726 const char *short_opname, int opt)
727{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000728 const char *a = args + flg_no;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000729 int l = strlen(opname) - 1; /* opname have + ' ' */
730
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000731 if (strncasecmp(a, opname, l) == 0
732 || strncasecmp(a, short_opname, 2) == 0
733 ) {
734 if (flg_no)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000735 vi_setops &= ~opt;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000736 else
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000737 vi_setops |= opt;
738 }
739}
740#endif
741
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000742// buf must be no longer than MAX_INPUT_LEN!
743static void colon(char *buf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000744{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000745 char c, *orig_buf, *buf1, *q, *r;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000746 char *fn, cmd[MAX_INPUT_LEN], args[MAX_INPUT_LEN];
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000747 int i, l, li, ch, b, e;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000748 int useforce, forced = FALSE;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000749
750 // :3154 // if (-e line 3154) goto it else stay put
751 // :4,33w! foo // write a portion of buffer to file "foo"
752 // :w // write all of buffer to current file
753 // :q // quit
754 // :q! // quit- dont care about modified file
755 // :'a,'z!sort -u // filter block through sort
756 // :'f // goto mark "f"
757 // :'fl // list literal the mark "f" line
758 // :.r bar // read file "bar" into buffer before dot
759 // :/123/,/abc/d // delete lines from "123" line to "abc" line
760 // :/xyz/ // goto the "xyz" line
761 // :s/find/replace/ // substitute pattern "find" with "replace"
762 // :!<cmd> // run <cmd> then return
763 //
Eric Andersen165e8cb2004-07-20 06:44:46 +0000764
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000765 if (!buf[0])
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000766 goto vc1;
767 if (*buf == ':')
768 buf++; // move past the ':'
769
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000770 li = ch = i = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000771 b = e = -1;
772 q = text; // assume 1,$ for the range
773 r = end - 1;
774 li = count_lines(text, end - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000775 fn = current_filename;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000776
777 // look for optional address(es) :. :1 :1,9 :'q,'a :%
778 buf = get_address(buf, &b, &e);
779
780 // remember orig command line
781 orig_buf = buf;
782
783 // get the COMMAND into cmd[]
784 buf1 = cmd;
785 while (*buf != '\0') {
786 if (isspace(*buf))
787 break;
788 *buf1++ = *buf++;
789 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000790 *buf1 = '\0';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000791 // get any ARGuments
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000792 while (isblank(*buf))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000793 buf++;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000794 strcpy(args, buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000795 useforce = FALSE;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000796 buf1 = last_char_is(cmd, '!');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000797 if (buf1) {
798 useforce = TRUE;
799 *buf1 = '\0'; // get rid of !
800 }
801 if (b >= 0) {
802 // if there is only one addr, then the addr
803 // is the line number of the single line the
804 // user wants. So, reset the end
805 // pointer to point at end of the "b" line
806 q = find_line(b); // what line is #b
807 r = end_line(q);
808 li = 1;
809 }
810 if (e >= 0) {
811 // we were given two addrs. change the
812 // end pointer to the addr given by user.
813 r = find_line(e); // what line is #e
814 r = end_line(r);
815 li = e - b + 1;
816 }
817 // ------------ now look for the command ------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000818 i = strlen(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000819 if (i == 0) { // :123CR goto line #123
820 if (b >= 0) {
821 dot = find_line(b); // what line is #b
822 dot_skip_over_ws();
823 }
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000824 }
825#if ENABLE_FEATURE_ALLOW_EXEC
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000826 else if (strncmp(cmd, "!", 1) == 0) { // run a cmd
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000827 int retcode;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000828 // :!ls run the <cmd>
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000829 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000830 cookmode();
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000831 retcode = system(orig_buf + 1); // run the cmd
832 if (retcode)
833 printf("\nshell returned %i\n\n", retcode);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000834 rawmode();
835 Hit_Return(); // let user see results
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000836 }
837#endif
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000838 else if (strncmp(cmd, "=", i) == 0) { // where is the address
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000839 if (b < 0) { // no addr given- use defaults
840 b = e = count_lines(text, dot);
841 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000842 status_line("%d", b);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000843 } else if (strncasecmp(cmd, "delete", i) == 0) { // delete lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000844 if (b < 0) { // no addr given- use defaults
845 q = begin_line(dot); // assume .,. for the range
846 r = end_line(dot);
847 }
848 dot = yank_delete(q, r, 1, YANKDEL); // save, then delete lines
849 dot_skip_over_ws();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000850 } else if (strncasecmp(cmd, "edit", i) == 0) { // Edit a file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000851 // don't edit, if the current file has been modified
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000852 if (file_modified && !useforce) {
853 status_line_bold("No write since last change (:edit! overrides)");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000854 goto vc1;
855 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000856 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000857 // the user supplied a file name
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000858 fn = args;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000859 } else if (current_filename && current_filename[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000860 // no user supplied name- use the current filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000861 // fn = current_filename; was set by default
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000862 } else {
863 // no user file name, no current name- punt
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000864 status_line_bold("No current filename");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000865 goto vc1;
866 }
867
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000868 if (init_text_buffer(fn) < 0)
869 goto vc1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000870
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000871#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000872 if (Ureg >= 0 && Ureg < 28 && reg[Ureg] != 0) {
873 free(reg[Ureg]); // free orig line reg- for 'U'
874 reg[Ureg]= 0;
875 }
876 if (YDreg >= 0 && YDreg < 28 && reg[YDreg] != 0) {
877 free(reg[YDreg]); // free default yank/delete register
878 reg[YDreg]= 0;
879 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000880#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000881 // how many lines in text[]?
882 li = count_lines(text, end - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000883 status_line("\"%s\"%s"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000884 IF_FEATURE_VI_READONLY("%s")
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000885 " %dL, %dC", current_filename,
886 (file_size(fn) < 0 ? " [New file]" : ""),
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000887 IF_FEATURE_VI_READONLY(
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000888 ((readonly_mode) ? " [Readonly]" : ""),
889 )
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000890 li, ch);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000891 } else if (strncasecmp(cmd, "file", i) == 0) { // what File is this
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000892 if (b != -1 || e != -1) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000893 not_implemented("No address allowed on this command");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000894 goto vc1;
895 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000896 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000897 // user wants a new filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000898 free(current_filename);
899 current_filename = xstrdup(args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000900 } else {
901 // user wants file status info
Paul Fox8552aec2005-09-16 12:20:05 +0000902 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000903 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000904 } else if (strncasecmp(cmd, "features", i) == 0) { // what features are available
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000905 // print out values of all features
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000906 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000907 cookmode();
908 show_help();
909 rawmode();
910 Hit_Return();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000911 } else if (strncasecmp(cmd, "list", i) == 0) { // literal print line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000912 if (b < 0) { // no addr given- use defaults
913 q = begin_line(dot); // assume .,. for the range
914 r = end_line(dot);
915 }
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000916 go_bottom_and_clear_to_eol();
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000917 puts("\r");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000918 for (; q <= r; q++) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000919 int c_is_no_print;
920
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000921 c = *q;
Denis Vlasenko2a51af22007-03-21 22:31:24 +0000922 c_is_no_print = (c & 0x80) && !Isprint(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000923 if (c_is_no_print) {
924 c = '.';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000925 standout_start();
Denis Vlasenkod3c042f2007-12-30 01:59:53 +0000926 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000927 if (c == '\n') {
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000928 write1("$\r");
929 } else if (c < ' ' || c == 127) {
Denis Vlasenko4daad902007-09-27 10:20:47 +0000930 bb_putchar('^');
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000931 if (c == 127)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000932 c = '?';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000933 else
934 c += '@';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000935 }
Denis Vlasenko4daad902007-09-27 10:20:47 +0000936 bb_putchar(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000937 if (c_is_no_print)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000938 standout_end();
939 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000940#if ENABLE_FEATURE_VI_SET
941 vc2:
942#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000943 Hit_Return();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000944 } else if (strncasecmp(cmd, "quit", i) == 0 // Quit
945 || strncasecmp(cmd, "next", i) == 0 // edit next file
946 ) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000947 if (useforce) {
948 // force end of argv list
949 if (*cmd == 'q') {
950 optind = save_argc;
951 }
952 editing = 0;
953 goto vc1;
954 }
955 // don't exit if the file been modified
956 if (file_modified) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000957 status_line_bold("No write since last change (:%s! overrides)",
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000958 (*cmd == 'q' ? "quit" : "next"));
959 goto vc1;
960 }
961 // are there other file to edit
962 if (*cmd == 'q' && optind < save_argc - 1) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000963 status_line_bold("%d more file to edit", (save_argc - optind - 1));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000964 goto vc1;
965 }
966 if (*cmd == 'n' && optind >= save_argc - 1) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000967 status_line_bold("No more files to edit");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000968 goto vc1;
969 }
970 editing = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000971 } else if (strncasecmp(cmd, "read", i) == 0) { // read file into text[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000972 fn = args;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000973 if (!fn[0]) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000974 status_line_bold("No filename given");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000975 goto vc1;
976 }
977 if (b < 0) { // no addr given- use defaults
978 q = begin_line(dot); // assume "dot"
979 }
980 // read after current line- unless user said ":0r foo"
981 if (b != 0)
982 q = next_line(q);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000983 { // dance around potentially-reallocated text[]
984 uintptr_t ofs = q - text;
985 ch = file_insert(fn, q, 0);
986 q = text + ofs;
987 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000988 if (ch < 0)
989 goto vc1; // nothing was inserted
990 // how many lines in text[]?
991 li = count_lines(q, q + ch - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000992 status_line("\"%s\""
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000993 IF_FEATURE_VI_READONLY("%s")
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000994 " %dL, %dC", fn,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000995 IF_FEATURE_VI_READONLY((readonly_mode ? " [Readonly]" : ""),)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000996 li, ch);
997 if (ch > 0) {
998 // if the insert is before "dot" then we need to update
999 if (q <= dot)
1000 dot += ch;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001001 /*file_modified++; - done by file_insert */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001002 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001003 } else if (strncasecmp(cmd, "rewind", i) == 0) { // rewind cmd line args
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001004 if (file_modified && !useforce) {
1005 status_line_bold("No write since last change (:rewind! overrides)");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001006 } else {
1007 // reset the filenames to edit
1008 optind = fn_start - 1;
1009 editing = 0;
1010 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001011#if ENABLE_FEATURE_VI_SET
Denis Vlasenkof9234132007-03-21 00:03:42 +00001012 } else if (strncasecmp(cmd, "set", i) == 0) { // set or clear features
Denis Vlasenko58875ae2007-03-22 22:22:10 +00001013#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkof9234132007-03-21 00:03:42 +00001014 char *argp;
Denis Vlasenko58875ae2007-03-22 22:22:10 +00001015#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001016 i = 0; // offset into args
Denis Vlasenkof9234132007-03-21 00:03:42 +00001017 // only blank is regarded as args delmiter. What about tab '\t' ?
1018 if (!args[0] || strcasecmp(args, "all") == 0) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001019 // print out values of all options
Denis Vlasenko267e16c2008-10-14 10:34:41 +00001020 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001021 printf("----------------------------------------\r\n");
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001022#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001023 if (!autoindent)
1024 printf("no");
1025 printf("autoindent ");
1026 if (!err_method)
1027 printf("no");
1028 printf("flash ");
1029 if (!ignorecase)
1030 printf("no");
1031 printf("ignorecase ");
1032 if (!showmatch)
1033 printf("no");
1034 printf("showmatch ");
1035 printf("tabstop=%d ", tabstop);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001036#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001037 printf("\r\n");
1038 goto vc2;
1039 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001040#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001041 argp = args;
Denis Vlasenkoba2fb712007-04-01 09:39:03 +00001042 while (*argp) {
Denis Vlasenkof9234132007-03-21 00:03:42 +00001043 if (strncasecmp(argp, "no", 2) == 0)
1044 i = 2; // ":set noautoindent"
1045 setops(argp, "autoindent ", i, "ai", VI_AUTOINDENT);
1046 setops(argp, "flash ", i, "fl", VI_ERR_METHOD);
1047 setops(argp, "ignorecase ", i, "ic", VI_IGNORECASE);
1048 setops(argp, "showmatch ", i, "ic", VI_SHOWMATCH);
1049 /* tabstopXXXX */
1050 if (strncasecmp(argp + i, "tabstop=%d ", 7) == 0) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001051 sscanf(strchr(argp + i, '='), "tabstop=%d" + 7, &ch);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00001052 if (ch > 0 && ch <= MAX_TABSTOP)
Denis Vlasenkof9234132007-03-21 00:03:42 +00001053 tabstop = ch;
1054 }
1055 while (*argp && *argp != ' ')
1056 argp++; // skip to arg delimiter (i.e. blank)
1057 while (*argp && *argp == ' ')
1058 argp++; // skip all delimiting blanks
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001059 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001060#endif /* FEATURE_VI_SETOPTS */
1061#endif /* FEATURE_VI_SET */
1062#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001063 } else if (strncasecmp(cmd, "s", 1) == 0) { // substitute a pattern with a replacement pattern
1064 char *ls, *F, *R;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001065 int gflag;
1066
1067 // F points to the "find" pattern
1068 // R points to the "replace" pattern
1069 // replace the cmd line delimiters "/" with NULLs
1070 gflag = 0; // global replace flag
1071 c = orig_buf[1]; // what is the delimiter
1072 F = orig_buf + 2; // start of "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001073 R = strchr(F, c); // middle delimiter
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001074 if (!R)
1075 goto colon_s_fail;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001076 *R++ = '\0'; // terminate "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001077 buf1 = strchr(R, c);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001078 if (!buf1)
1079 goto colon_s_fail;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001080 *buf1++ = '\0'; // terminate "replace"
1081 if (*buf1 == 'g') { // :s/foo/bar/g
1082 buf1++;
1083 gflag++; // turn on gflag
1084 }
1085 q = begin_line(q);
1086 if (b < 0) { // maybe :s/foo/bar/
1087 q = begin_line(dot); // start with cur line
1088 b = count_lines(text, q); // cur line number
1089 }
1090 if (e < 0)
1091 e = b; // maybe :.s/foo/bar/
1092 for (i = b; i <= e; i++) { // so, :20,23 s \0 find \0 replace \0
1093 ls = q; // orig line start
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001094 vc4:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001095 buf1 = char_search(q, F, FORWARD, LIMITED); // search cur line only for "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001096 if (buf1) {
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001097 uintptr_t bias;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001098 // we found the "find" pattern - delete it
1099 text_hole_delete(buf1, buf1 + strlen(F) - 1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001100 // inset the "replace" patern
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001101 bias = string_insert(buf1, R); // insert the string
1102 buf1 += bias;
1103 ls += bias;
1104 /*q += bias; - recalculated anyway */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001105 // check for "global" :s/foo/bar/g
1106 if (gflag == 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001107 if ((buf1 + strlen(R)) < end_line(ls)) {
1108 q = buf1 + strlen(R);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001109 goto vc4; // don't let q move past cur line
1110 }
1111 }
1112 }
1113 q = next_line(ls);
1114 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001115#endif /* FEATURE_VI_SEARCH */
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001116 } else if (strncasecmp(cmd, "version", i) == 0) { // show software version
Denis Vlasenko33875382008-06-21 20:31:50 +00001117 status_line(BB_VER " " BB_BT);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001118 } else if (strncasecmp(cmd, "write", i) == 0 // write text to file
1119 || strncasecmp(cmd, "wq", i) == 0
1120 || strncasecmp(cmd, "wn", i) == 0
1121 || strncasecmp(cmd, "x", i) == 0
1122 ) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001123 // is there a file name to write to?
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001124 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001125 fn = args;
1126 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001127#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001128 if (readonly_mode && !useforce) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001129 status_line_bold("\"%s\" File is read only", fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001130 goto vc3;
1131 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001132#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001133 // how many lines in text[]?
1134 li = count_lines(q, r);
1135 ch = r - q + 1;
1136 // see if file exists- if not, its just a new file request
1137 if (useforce) {
1138 // if "fn" is not write-able, chmod u+w
1139 // sprintf(syscmd, "chmod u+w %s", fn);
1140 // system(syscmd);
1141 forced = TRUE;
1142 }
1143 l = file_write(fn, q, r);
1144 if (useforce && forced) {
1145 // chmod u-w
1146 // sprintf(syscmd, "chmod u-w %s", fn);
1147 // system(syscmd);
1148 forced = FALSE;
1149 }
Paul Fox61e45db2005-10-09 14:43:22 +00001150 if (l < 0) {
1151 if (l == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001152 status_line_bold("\"%s\" %s", fn, strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00001153 } else {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001154 status_line("\"%s\" %dL, %dC", fn, li, l);
Paul Fox61e45db2005-10-09 14:43:22 +00001155 if (q == text && r == end - 1 && l == ch) {
1156 file_modified = 0;
1157 last_file_modified = -1;
1158 }
Paul Fox9360f422006-03-27 21:51:16 +00001159 if ((cmd[0] == 'x' || cmd[1] == 'q' || cmd[1] == 'n' ||
1160 cmd[0] == 'X' || cmd[1] == 'Q' || cmd[1] == 'N')
1161 && l == ch) {
Paul Fox61e45db2005-10-09 14:43:22 +00001162 editing = 0;
1163 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001164 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001165#if ENABLE_FEATURE_VI_READONLY
1166 vc3:;
1167#endif
1168#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001169 } else if (strncasecmp(cmd, "yank", i) == 0) { // yank lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001170 if (b < 0) { // no addr given- use defaults
1171 q = begin_line(dot); // assume .,. for the range
1172 r = end_line(dot);
1173 }
1174 text_yank(q, r, YDreg);
1175 li = count_lines(q, r);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001176 status_line("Yank %d lines (%d chars) into [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001177 li, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001178#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001179 } else {
1180 // cmd unknown
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001181 not_implemented(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001182 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001183 vc1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001184 dot = bound_dot(dot); // make sure "dot" is valid
1185 return;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001186#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001187 colon_s_fail:
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001188 status_line(":s expression missing delimiters");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001189#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001190}
Paul Fox61e45db2005-10-09 14:43:22 +00001191
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001192#endif /* FEATURE_VI_COLON */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001193
1194static void Hit_Return(void)
1195{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00001196 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001197
Denis Vlasenkof882f082007-12-23 02:36:51 +00001198 standout_start();
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001199 write1("[Hit return to continue]");
Denis Vlasenkof882f082007-12-23 02:36:51 +00001200 standout_end();
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001201 while ((c = get_one_char()) != '\n' && c != '\r')
1202 continue;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001203 redraw(TRUE); // force redraw all
1204}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001205
Denis Vlasenko91afdf82007-07-17 23:22:49 +00001206static int next_tabstop(int col)
1207{
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001208 return col + ((tabstop - 1) - (col % tabstop));
1209}
1210
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001211//----- Synchronize the cursor to Dot --------------------------
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001212static void sync_cursor(char *d, int *row, int *col)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001213{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001214 char *beg_cur; // begin and end of "d" line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001215 char *tp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001216 int cnt, ro, co;
1217
1218 beg_cur = begin_line(d); // first char of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001219
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001220 if (beg_cur < screenbegin) {
Denis Vlasenkof882f082007-12-23 02:36:51 +00001221 // "d" is before top line on screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001222 // how many lines do we have to move
1223 cnt = count_lines(beg_cur, screenbegin);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001224 sc1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001225 screenbegin = beg_cur;
1226 if (cnt > (rows - 1) / 2) {
1227 // we moved too many lines. put "dot" in middle of screen
1228 for (cnt = 0; cnt < (rows - 1) / 2; cnt++) {
1229 screenbegin = prev_line(screenbegin);
1230 }
1231 }
Denis Vlasenkof882f082007-12-23 02:36:51 +00001232 } else {
1233 char *end_scr; // begin and end of screen
1234 end_scr = end_screen(); // last char of screen
1235 if (beg_cur > end_scr) {
1236 // "d" is after bottom line on screen
1237 // how many lines do we have to move
1238 cnt = count_lines(end_scr, beg_cur);
1239 if (cnt > (rows - 1) / 2)
1240 goto sc1; // too many lines
1241 for (ro = 0; ro < cnt - 1; ro++) {
1242 // move screen begin the same amount
1243 screenbegin = next_line(screenbegin);
1244 // now, move the end of screen
1245 end_scr = next_line(end_scr);
1246 end_scr = end_line(end_scr);
1247 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001248 }
1249 }
1250 // "d" is on screen- find out which row
1251 tp = screenbegin;
1252 for (ro = 0; ro < rows - 1; ro++) { // drive "ro" to correct row
1253 if (tp == beg_cur)
1254 break;
1255 tp = next_line(tp);
1256 }
1257
1258 // find out what col "d" is on
1259 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001260 while (tp < d) { // drive "co" to correct column
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001261 if (*tp == '\n') //vda || *tp == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001262 break;
1263 if (*tp == '\t') {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001264 // handle tabs like real vi
1265 if (d == tp && cmd_mode) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001266 break;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001267 }
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001268 co = next_tabstop(co);
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001269 } else if ((unsigned char)*tp < ' ' || *tp == 0x7f) {
1270 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001271 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001272 co++;
1273 tp++;
1274 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001275
1276 // "co" is the column where "dot" is.
1277 // The screen has "columns" columns.
1278 // The currently displayed columns are 0+offset -- columns+ofset
1279 // |-------------------------------------------------------------|
1280 // ^ ^ ^
1281 // offset | |------- columns ----------------|
1282 //
1283 // If "co" is already in this range then we do not have to adjust offset
1284 // but, we do have to subtract the "offset" bias from "co".
1285 // If "co" is outside this range then we have to change "offset".
1286 // If the first char of a line is a tab the cursor will try to stay
1287 // in column 7, but we have to set offset to 0.
1288
1289 if (co < 0 + offset) {
1290 offset = co;
1291 }
1292 if (co >= columns + offset) {
1293 offset = co - columns + 1;
1294 }
1295 // if the first char of the line is a tab, and "dot" is sitting on it
1296 // force offset to 0.
1297 if (d == beg_cur && *d == '\t') {
1298 offset = 0;
1299 }
1300 co -= offset;
1301
1302 *row = ro;
1303 *col = co;
1304}
1305
1306//----- Text Movement Routines ---------------------------------
Denis Vlasenkof882f082007-12-23 02:36:51 +00001307static char *begin_line(char *p) // return pointer to first char cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001308{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001309 if (p > text) {
1310 p = memrchr(text, '\n', p - text);
1311 if (!p)
1312 return text;
1313 return p + 1;
1314 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001315 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001316}
1317
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001318static char *end_line(char *p) // return pointer to NL of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001319{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001320 if (p < end - 1) {
1321 p = memchr(p, '\n', end - p - 1);
1322 if (!p)
1323 return end - 1;
1324 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001325 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001326}
1327
Denis Vlasenkof882f082007-12-23 02:36:51 +00001328static char *dollar_line(char *p) // return pointer to just before NL line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001329{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001330 p = end_line(p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001331 // Try to stay off of the Newline
1332 if (*p == '\n' && (p - begin_line(p)) > 0)
1333 p--;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001334 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001335}
1336
Denis Vlasenkof882f082007-12-23 02:36:51 +00001337static char *prev_line(char *p) // return pointer first char prev line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001338{
1339 p = begin_line(p); // goto begining of cur line
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001340 if (p > text && p[-1] == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001341 p--; // step to prev line
1342 p = begin_line(p); // goto begining of prev line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001343 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001344}
1345
Denis Vlasenkof882f082007-12-23 02:36:51 +00001346static char *next_line(char *p) // return pointer first char next line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001347{
1348 p = end_line(p);
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001349 if (p < end - 1 && *p == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001350 p++; // step to next line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001351 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001352}
1353
1354//----- Text Information Routines ------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001355static char *end_screen(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001356{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001357 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001358 int cnt;
1359
1360 // find new bottom line
1361 q = screenbegin;
1362 for (cnt = 0; cnt < rows - 2; cnt++)
1363 q = next_line(q);
1364 q = end_line(q);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001365 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001366}
1367
Denis Vlasenkof882f082007-12-23 02:36:51 +00001368// count line from start to stop
1369static int count_lines(char *start, char *stop)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001370{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001371 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001372 int cnt;
1373
Denis Vlasenkof882f082007-12-23 02:36:51 +00001374 if (stop < start) { // start and stop are backwards- reverse them
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001375 q = start;
1376 start = stop;
1377 stop = q;
1378 }
1379 cnt = 0;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001380 stop = end_line(stop);
1381 while (start <= stop && start <= end - 1) {
1382 start = end_line(start);
1383 if (*start == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001384 cnt++;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001385 start++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001386 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001387 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001388}
1389
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001390static char *find_line(int li) // find begining of line #li
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001391{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001392 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001393
1394 for (q = text; li > 1; li--) {
1395 q = next_line(q);
1396 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001397 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001398}
1399
1400//----- Dot Movement Routines ----------------------------------
1401static void dot_left(void)
1402{
1403 if (dot > text && dot[-1] != '\n')
1404 dot--;
1405}
1406
1407static void dot_right(void)
1408{
1409 if (dot < end - 1 && *dot != '\n')
1410 dot++;
1411}
1412
1413static void dot_begin(void)
1414{
1415 dot = begin_line(dot); // return pointer to first char cur line
1416}
1417
1418static void dot_end(void)
1419{
1420 dot = end_line(dot); // return pointer to last char cur line
1421}
1422
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001423static char *move_to_col(char *p, int l)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001424{
1425 int co;
1426
1427 p = begin_line(p);
1428 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001429 while (co < l && p < end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001430 if (*p == '\n') //vda || *p == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001431 break;
1432 if (*p == '\t') {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001433 co = next_tabstop(co);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001434 } else if (*p < ' ' || *p == 127) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001435 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001436 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001437 co++;
1438 p++;
1439 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001440 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001441}
1442
1443static void dot_next(void)
1444{
1445 dot = next_line(dot);
1446}
1447
1448static void dot_prev(void)
1449{
1450 dot = prev_line(dot);
1451}
1452
1453static void dot_scroll(int cnt, int dir)
1454{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001455 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001456
1457 for (; cnt > 0; cnt--) {
1458 if (dir < 0) {
1459 // scroll Backwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001460 // ctrl-Y scroll up one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001461 screenbegin = prev_line(screenbegin);
1462 } else {
1463 // scroll Forwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001464 // ctrl-E scroll down one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001465 screenbegin = next_line(screenbegin);
1466 }
1467 }
1468 // make sure "dot" stays on the screen so we dont scroll off
1469 if (dot < screenbegin)
1470 dot = screenbegin;
1471 q = end_screen(); // find new bottom line
1472 if (dot > q)
1473 dot = begin_line(q); // is dot is below bottom line?
1474 dot_skip_over_ws();
1475}
1476
1477static void dot_skip_over_ws(void)
1478{
1479 // skip WS
1480 while (isspace(*dot) && *dot != '\n' && dot < end - 1)
1481 dot++;
1482}
1483
1484static void dot_delete(void) // delete the char at 'dot'
1485{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001486 text_hole_delete(dot, dot);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001487}
1488
Denis Vlasenkof882f082007-12-23 02:36:51 +00001489static char *bound_dot(char *p) // make sure text[0] <= P < "end"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001490{
1491 if (p >= end && end > text) {
1492 p = end - 1;
1493 indicate_error('1');
1494 }
1495 if (p < text) {
1496 p = text;
1497 indicate_error('2');
1498 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001499 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001500}
1501
1502//----- Helper Utility Routines --------------------------------
1503
1504//----------------------------------------------------------------
1505//----- Char Routines --------------------------------------------
1506/* Chars that are part of a word-
1507 * 0123456789_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
1508 * Chars that are Not part of a word (stoppers)
1509 * !"#$%&'()*+,-./:;<=>?@[\]^`{|}~
1510 * Chars that are WhiteSpace
1511 * TAB NEWLINE VT FF RETURN SPACE
1512 * DO NOT COUNT NEWLINE AS WHITESPACE
1513 */
1514
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001515static char *new_screen(int ro, int co)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001516{
1517 int li;
1518
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001519 free(screen);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001520 screensize = ro * co + 8;
Denis Vlasenkob95636c2006-12-19 23:36:04 +00001521 screen = xmalloc(screensize);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001522 // initialize the new screen. assume this will be a empty file.
1523 screen_erase();
Eric Andersenaff114c2004-04-14 17:51:38 +00001524 // non-existent text[] lines start with a tilde (~).
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001525 for (li = 1; li < ro - 1; li++) {
1526 screen[(li * co) + 0] = '~';
1527 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001528 return screen;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001529}
1530
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001531#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenko33875382008-06-21 20:31:50 +00001532static int mycmp(const char *s1, const char *s2, int len)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001533{
1534 int i;
1535
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001536 i = strncmp(s1, s2, len);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001537 if (ENABLE_FEATURE_VI_SETOPTS && ignorecase) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001538 i = strncasecmp(s1, s2, len);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001539 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001540 return i;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001541}
1542
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001543// search for pattern starting at p
Denis Vlasenko33875382008-06-21 20:31:50 +00001544static char *char_search(char *p, const char *pat, int dir, int range)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001545{
1546#ifndef REGEX_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001547 char *start, *stop;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001548 int len;
1549
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001550 len = strlen(pat);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001551 if (dir == FORWARD) {
1552 stop = end - 1; // assume range is p - end-1
1553 if (range == LIMITED)
1554 stop = next_line(p); // range is to next line
1555 for (start = p; start < stop; start++) {
1556 if (mycmp(start, pat, len) == 0) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001557 return start;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001558 }
1559 }
1560 } else if (dir == BACK) {
1561 stop = text; // assume range is text - p
1562 if (range == LIMITED)
1563 stop = prev_line(p); // range is to prev line
1564 for (start = p - len; start >= stop; start--) {
1565 if (mycmp(start, pat, len) == 0) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001566 return start;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001567 }
1568 }
1569 }
1570 // pattern not found
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001571 return NULL;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001572#else /* REGEX_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001573 char *q;
1574 struct re_pattern_buffer preg;
1575 int i;
1576 int size, range;
1577
1578 re_syntax_options = RE_SYNTAX_POSIX_EXTENDED;
1579 preg.translate = 0;
1580 preg.fastmap = 0;
1581 preg.buffer = 0;
1582 preg.allocated = 0;
1583
1584 // assume a LIMITED forward search
1585 q = next_line(p);
1586 q = end_line(q);
1587 q = end - 1;
1588 if (dir == BACK) {
1589 q = prev_line(p);
1590 q = text;
1591 }
1592 // count the number of chars to search over, forward or backward
1593 size = q - p;
1594 if (size < 0)
1595 size = p - q;
1596 // RANGE could be negative if we are searching backwards
1597 range = q - p;
1598
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001599 q = re_compile_pattern(pat, strlen(pat), &preg);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001600 if (q != 0) {
1601 // The pattern was not compiled
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001602 status_line_bold("bad search pattern: \"%s\": %s", pat, q);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001603 i = 0; // return p if pattern not compiled
1604 goto cs1;
1605 }
1606
1607 q = p;
1608 if (range < 0) {
1609 q = p - size;
1610 if (q < text)
1611 q = text;
1612 }
1613 // search for the compiled pattern, preg, in p[]
1614 // range < 0- search backward
1615 // range > 0- search forward
1616 // 0 < start < size
1617 // re_search() < 0 not found or error
1618 // re_search() > 0 index of found pattern
1619 // struct pattern char int int int struct reg
1620 // re_search (*pattern_buffer, *string, size, start, range, *regs)
1621 i = re_search(&preg, q, size, 0, range, 0);
1622 if (i == -1) {
1623 p = 0;
1624 i = 0; // return NULL if pattern not found
1625 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001626 cs1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001627 if (dir == FORWARD) {
1628 p = p + i;
1629 } else {
1630 p = p - i;
1631 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001632 return p;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001633#endif /* REGEX_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001634}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001635#endif /* FEATURE_VI_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001636
Denis Vlasenko33875382008-06-21 20:31:50 +00001637static char *char_insert(char *p, char c) // insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001638{
1639 if (c == 22) { // Is this an ctrl-V?
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001640 p += stupid_insert(p, '^'); // use ^ to indicate literal next
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001641 refresh(FALSE); // show the ^
1642 c = get_one_char();
1643 *p = c;
1644 p++;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001645 file_modified++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001646 } else if (c == 27) { // Is this an ESC?
1647 cmd_mode = 0;
1648 cmdcnt = 0;
1649 end_cmd_q(); // stop adding to q
Paul Fox8552aec2005-09-16 12:20:05 +00001650 last_status_cksum = 0; // force status update
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001651 if ((p[-1] != '\n') && (dot > text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001652 p--;
1653 }
Paul Foxd13b90b2005-07-18 22:17:25 +00001654 } else if (c == erase_char || c == 8 || c == 127) { // Is this a BS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001655 // 123456789
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001656 if ((p[-1] != '\n') && (dot>text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001657 p--;
1658 p = text_hole_delete(p, p); // shrink buffer 1 char
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001659 }
1660 } else {
1661 // insert a char into text[]
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001662 char *sp; // "save p"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001663
1664 if (c == 13)
1665 c = '\n'; // translate \r to \n
1666 sp = p; // remember addr of insert
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001667 p += 1 + stupid_insert(p, c); // insert the char
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001668#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001669 if (showmatch && strchr(")]}", *sp) != NULL) {
1670 showmatching(sp);
1671 }
1672 if (autoindent && c == '\n') { // auto indent the new line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001673 char *q;
Denis Vlasenko00d84172008-11-24 07:34:42 +00001674 size_t len;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001675 q = prev_line(p); // use prev line as template
Denis Vlasenko00d84172008-11-24 07:34:42 +00001676 len = strspn(q, " \t"); // space or tab
1677 if (len) {
Denis Vlasenko3266aa92009-04-01 11:24:04 +00001678 uintptr_t bias;
Denis Vlasenko00d84172008-11-24 07:34:42 +00001679 bias = text_hole_make(p, len);
1680 p += bias;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001681 q += bias;
Denis Vlasenko00d84172008-11-24 07:34:42 +00001682 memcpy(p, q, len);
Denis Vlasenko3266aa92009-04-01 11:24:04 +00001683 p += len;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001684 }
1685 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001686#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001687 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001688 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001689}
1690
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001691// might reallocate text[]! use p += stupid_insert(p, ...),
1692// and be careful to not use pointers into potentially freed text[]!
1693static uintptr_t stupid_insert(char *p, char c) // stupidly insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001694{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001695 uintptr_t bias;
1696 bias = text_hole_make(p, 1);
1697 p += bias;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001698 *p = c;
1699 //file_modified++; - done by text_hole_make()
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001700 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001701}
1702
Denis Vlasenko33875382008-06-21 20:31:50 +00001703static int find_range(char **start, char **stop, char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001704{
Paul Foxc51fc7b2008-03-06 01:34:23 +00001705 char *save_dot, *p, *q, *t;
1706 int cnt, multiline = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001707
1708 save_dot = dot;
1709 p = q = dot;
1710
1711 if (strchr("cdy><", c)) {
1712 // these cmds operate on whole lines
1713 p = q = begin_line(p);
1714 for (cnt = 1; cnt < cmdcnt; cnt++) {
1715 q = next_line(q);
1716 }
1717 q = end_line(q);
Paul Foxc51fc7b2008-03-06 01:34:23 +00001718 } else if (strchr("^%$0bBeEfth\b\177", c)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001719 // These cmds operate on char positions
1720 do_cmd(c); // execute movement cmd
1721 q = dot;
1722 } else if (strchr("wW", c)) {
1723 do_cmd(c); // execute movement cmd
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001724 // if we are at the next word's first char
1725 // step back one char
1726 // but check the possibilities when it is true
Eric Andersen5cc90ea2004-02-06 10:36:08 +00001727 if (dot > text && ((isspace(dot[-1]) && !isspace(dot[0]))
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001728 || (ispunct(dot[-1]) && !ispunct(dot[0]))
1729 || (isalnum(dot[-1]) && !isalnum(dot[0]))))
1730 dot--; // move back off of next word
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001731 if (dot > text && *dot == '\n')
1732 dot--; // stay off NL
1733 q = dot;
1734 } else if (strchr("H-k{", c)) {
1735 // these operate on multi-lines backwards
1736 q = end_line(dot); // find NL
1737 do_cmd(c); // execute movement cmd
1738 dot_begin();
1739 p = dot;
1740 } else if (strchr("L+j}\r\n", c)) {
1741 // these operate on multi-lines forwards
1742 p = begin_line(dot);
1743 do_cmd(c); // execute movement cmd
1744 dot_end(); // find NL
1745 q = dot;
1746 } else {
Paul Foxc51fc7b2008-03-06 01:34:23 +00001747 // nothing -- this causes any other values of c to
1748 // represent the one-character range under the
1749 // cursor. this is correct for ' ' and 'l', but
1750 // perhaps no others.
1751 //
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001752 }
Paul Foxc51fc7b2008-03-06 01:34:23 +00001753 if (q < p) {
1754 t = q;
1755 q = p;
1756 p = t;
1757 }
1758
Denis Vlasenko42cc3042008-03-24 02:05:58 +00001759 // backward char movements don't include start position
Paul Foxc51fc7b2008-03-06 01:34:23 +00001760 if (q > p && strchr("^0bBh\b\177", c)) q--;
1761
1762 multiline = 0;
1763 for (t = p; t <= q; t++) {
1764 if (*t == '\n') {
1765 multiline = 1;
1766 break;
1767 }
1768 }
1769
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001770 *start = p;
1771 *stop = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001772 dot = save_dot;
Paul Foxc51fc7b2008-03-06 01:34:23 +00001773 return multiline;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001774}
1775
Denis Vlasenko33875382008-06-21 20:31:50 +00001776static int st_test(char *p, int type, int dir, char *tested)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001777{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001778 char c, c0, ci;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001779 int test, inc;
1780
1781 inc = dir;
1782 c = c0 = p[0];
1783 ci = p[inc];
1784 test = 0;
1785
1786 if (type == S_BEFORE_WS) {
1787 c = ci;
1788 test = ((!isspace(c)) || c == '\n');
1789 }
1790 if (type == S_TO_WS) {
1791 c = c0;
1792 test = ((!isspace(c)) || c == '\n');
1793 }
1794 if (type == S_OVER_WS) {
1795 c = c0;
1796 test = ((isspace(c)));
1797 }
1798 if (type == S_END_PUNCT) {
1799 c = ci;
1800 test = ((ispunct(c)));
1801 }
1802 if (type == S_END_ALNUM) {
1803 c = ci;
1804 test = ((isalnum(c)) || c == '_');
1805 }
1806 *tested = c;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001807 return test;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001808}
1809
Denis Vlasenko33875382008-06-21 20:31:50 +00001810static char *skip_thing(char *p, int linecnt, int dir, int type)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001811{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001812 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001813
1814 while (st_test(p, type, dir, &c)) {
1815 // make sure we limit search to correct number of lines
1816 if (c == '\n' && --linecnt < 1)
1817 break;
1818 if (dir >= 0 && p >= end - 1)
1819 break;
1820 if (dir < 0 && p <= text)
1821 break;
1822 p += dir; // move to next char
1823 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001824 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001825}
1826
1827// find matching char of pair () [] {}
Denis Vlasenko33875382008-06-21 20:31:50 +00001828static char *find_pair(char *p, const char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001829{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001830 char match, *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001831 int dir, level;
1832
1833 match = ')';
1834 level = 1;
1835 dir = 1; // assume forward
1836 switch (c) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00001837 case '(': match = ')'; break;
1838 case '[': match = ']'; break;
1839 case '{': match = '}'; break;
1840 case ')': match = '('; dir = -1; break;
1841 case ']': match = '['; dir = -1; break;
1842 case '}': match = '{'; dir = -1; break;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001843 }
1844 for (q = p + dir; text <= q && q < end; q += dir) {
1845 // look for match, count levels of pairs (( ))
1846 if (*q == c)
1847 level++; // increase pair levels
1848 if (*q == match)
1849 level--; // reduce pair level
1850 if (level == 0)
1851 break; // found matching pair
1852 }
1853 if (level != 0)
1854 q = NULL; // indicate no match
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001855 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001856}
1857
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001858#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001859// show the matching char of a pair, () [] {}
Denis Vlasenkof882f082007-12-23 02:36:51 +00001860static void showmatching(char *p)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001861{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001862 char *q, *save_dot;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001863
1864 // we found half of a pair
1865 q = find_pair(p, *p); // get loc of matching char
1866 if (q == NULL) {
1867 indicate_error('3'); // no matching char
1868 } else {
1869 // "q" now points to matching pair
1870 save_dot = dot; // remember where we are
1871 dot = q; // go to new loc
1872 refresh(FALSE); // let the user see it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001873 mysleep(40); // give user some time
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001874 dot = save_dot; // go back to old loc
1875 refresh(FALSE);
1876 }
1877}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001878#endif /* FEATURE_VI_SETOPTS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001879
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001880// open a hole in text[]
1881// might reallocate text[]! use p += text_hole_make(p, ...),
1882// and be careful to not use pointers into potentially freed text[]!
1883static uintptr_t text_hole_make(char *p, int size) // at "p", make a 'size' byte hole
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001884{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001885 uintptr_t bias = 0;
1886
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001887 if (size <= 0)
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001888 return bias;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001889 end += size; // adjust the new END
1890 if (end >= (text + text_size)) {
1891 char *new_text;
1892 text_size += end - (text + text_size) + 10240;
1893 new_text = xrealloc(text, text_size);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001894 bias = (new_text - text);
1895 screenbegin += bias;
1896 dot += bias;
1897 end += bias;
1898 p += bias;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001899 text = new_text;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001900 }
Denis Vlasenkod6995442008-06-27 04:06:13 +00001901 memmove(p + size, p, end - size - p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001902 memset(p, ' ', size); // clear new hole
Denis Vlasenkob1759462008-06-20 20:20:54 +00001903 file_modified++;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001904 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001905}
1906
1907// close a hole in text[]
Denis Vlasenko33875382008-06-21 20:31:50 +00001908static char *text_hole_delete(char *p, char *q) // delete "p" through "q", inclusive
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001909{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001910 char *src, *dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001911 int cnt, hole_size;
1912
1913 // move forwards, from beginning
1914 // assume p <= q
1915 src = q + 1;
1916 dest = p;
1917 if (q < p) { // they are backward- swap them
1918 src = p + 1;
1919 dest = q;
1920 }
1921 hole_size = q - p + 1;
1922 cnt = end - src;
1923 if (src < text || src > end)
1924 goto thd0;
1925 if (dest < text || dest >= end)
1926 goto thd0;
1927 if (src >= end)
1928 goto thd_atend; // just delete the end of the buffer
Denis Vlasenkob1759462008-06-20 20:20:54 +00001929 memmove(dest, src, cnt);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001930 thd_atend:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001931 end = end - hole_size; // adjust the new END
1932 if (dest >= end)
1933 dest = end - 1; // make sure dest in below end-1
1934 if (end <= text)
1935 dest = end = text; // keep pointers valid
Denis Vlasenkob1759462008-06-20 20:20:54 +00001936 file_modified++;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001937 thd0:
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001938 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001939}
1940
1941// copy text into register, then delete text.
1942// if dist <= 0, do not include, or go past, a NewLine
1943//
Denis Vlasenko33875382008-06-21 20:31:50 +00001944static char *yank_delete(char *start, char *stop, int dist, int yf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001945{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001946 char *p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001947
1948 // make sure start <= stop
1949 if (start > stop) {
1950 // they are backwards, reverse them
1951 p = start;
1952 start = stop;
1953 stop = p;
1954 }
1955 if (dist <= 0) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +00001956 // we cannot cross NL boundaries
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001957 p = start;
1958 if (*p == '\n')
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001959 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001960 // dont go past a NewLine
1961 for (; p + 1 <= stop; p++) {
1962 if (p[1] == '\n') {
1963 stop = p; // "stop" just before NewLine
1964 break;
1965 }
1966 }
1967 }
1968 p = start;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001969#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001970 text_yank(start, stop, YDreg);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001971#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001972 if (yf == YANKDEL) {
1973 p = text_hole_delete(start, stop);
1974 } // delete lines
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001975 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001976}
1977
1978static void show_help(void)
1979{
1980 puts("These features are available:"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001981#if ENABLE_FEATURE_VI_SEARCH
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001982 "\n\tPattern searches with / and ?"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001983#endif
1984#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001985 "\n\tLast command repeat with \'.\'"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001986#endif
1987#if ENABLE_FEATURE_VI_YANKMARK
Bernhard Reutner-Fischerd24d5c82007-10-01 18:04:42 +00001988 "\n\tLine marking with 'x"
1989 "\n\tNamed buffers with \"x"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001990#endif
1991#if ENABLE_FEATURE_VI_READONLY
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001992 "\n\tReadonly if vi is called as \"view\""
1993 "\n\tReadonly with -R command line arg"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001994#endif
1995#if ENABLE_FEATURE_VI_SET
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001996 "\n\tSome colon mode commands with \':\'"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001997#endif
1998#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001999 "\n\tSettable options with \":set\""
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002000#endif
2001#if ENABLE_FEATURE_VI_USE_SIGNALS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002002 "\n\tSignal catching- ^C"
2003 "\n\tJob suspend and resume with ^Z"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002004#endif
2005#if ENABLE_FEATURE_VI_WIN_RESIZE
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002006 "\n\tAdapt to window re-sizes"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002007#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002008 );
2009}
2010
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002011#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002012static void start_new_cmd_q(char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002013{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002014 // get buffer for new cmd
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002015 // if there is a current cmd count put it in the buffer first
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002016 if (cmdcnt > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00002017 lmc_len = sprintf(last_modifying_cmd, "%d%c", cmdcnt, c);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002018 } else { // just save char c onto queue
Paul Foxd957b952005-11-28 18:07:53 +00002019 last_modifying_cmd[0] = c;
Paul Foxc51fc7b2008-03-06 01:34:23 +00002020 lmc_len = 1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002021 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002022 adding2q = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002023}
2024
2025static void end_cmd_q(void)
2026{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002027#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002028 YDreg = 26; // go back to default Yank/Delete reg
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002029#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002030 adding2q = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002031}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002032#endif /* FEATURE_VI_DOT_CMD */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002033
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002034#if ENABLE_FEATURE_VI_YANKMARK \
2035 || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) \
2036 || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002037// might reallocate text[]! use p += string_insert(p, ...),
2038// and be careful to not use pointers into potentially freed text[]!
2039static uintptr_t string_insert(char *p, const char *s) // insert the string at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002040{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002041 uintptr_t bias;
2042 int i;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002043
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002044 i = strlen(s);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002045 bias = text_hole_make(p, i);
2046 p += bias;
Denis Vlasenko00d84172008-11-24 07:34:42 +00002047 memcpy(p, s, i);
Denis Vlasenko33875382008-06-21 20:31:50 +00002048#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002049 {
2050 int cnt;
2051 for (cnt = 0; *s != '\0'; s++) {
2052 if (*s == '\n')
2053 cnt++;
2054 }
2055 status_line("Put %d lines (%d chars) from [%c]", cnt, i, what_reg());
2056 }
Denis Vlasenko33875382008-06-21 20:31:50 +00002057#endif
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002058 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002059}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002060#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002061
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002062#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko33875382008-06-21 20:31:50 +00002063static char *text_yank(char *p, char *q, int dest) // copy text into a register
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002064{
Denis Vlasenko00d84172008-11-24 07:34:42 +00002065 int cnt = q - p;
2066 if (cnt < 0) { // they are backwards- reverse them
2067 p = q;
2068 cnt = -cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002069 }
Denis Vlasenko00d84172008-11-24 07:34:42 +00002070 free(reg[dest]); // if already a yank register, free it
2071 reg[dest] = xstrndup(p, cnt + 1);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002072 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002073}
2074
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002075static char what_reg(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002076{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002077 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002078
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002079 c = 'D'; // default to D-reg
2080 if (0 <= YDreg && YDreg <= 25)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002081 c = 'a' + (char) YDreg;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002082 if (YDreg == 26)
2083 c = 'D';
2084 if (YDreg == 27)
2085 c = 'U';
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002086 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002087}
2088
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002089static void check_context(char cmd)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002090{
2091 // A context is defined to be "modifying text"
2092 // Any modifying command establishes a new context.
2093
2094 if (dot < context_start || dot > context_end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002095 if (strchr(modifying_cmds, cmd) != NULL) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002096 // we are trying to modify text[]- make this the current context
2097 mark[27] = mark[26]; // move cur to prev
2098 mark[26] = dot; // move local to cur
2099 context_start = prev_line(prev_line(dot));
2100 context_end = next_line(next_line(dot));
2101 //loiter= start_loiter= now;
2102 }
2103 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002104}
2105
Denis Vlasenkof882f082007-12-23 02:36:51 +00002106static char *swap_context(char *p) // goto new context for '' command make this the current context
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002107{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002108 char *tmp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002109
2110 // the current context is in mark[26]
2111 // the previous context is in mark[27]
2112 // only swap context if other context is valid
2113 if (text <= mark[27] && mark[27] <= end - 1) {
2114 tmp = mark[27];
2115 mark[27] = mark[26];
2116 mark[26] = tmp;
2117 p = mark[26]; // where we are going- previous context
2118 context_start = prev_line(prev_line(prev_line(p)));
2119 context_end = next_line(next_line(next_line(p)));
2120 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002121 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002122}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002123#endif /* FEATURE_VI_YANKMARK */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002124
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002125//----- Set terminal attributes --------------------------------
2126static void rawmode(void)
2127{
2128 tcgetattr(0, &term_orig);
2129 term_vi = term_orig;
2130 term_vi.c_lflag &= (~ICANON & ~ECHO); // leave ISIG ON- allow intr's
2131 term_vi.c_iflag &= (~IXON & ~ICRNL);
2132 term_vi.c_oflag &= (~ONLCR);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002133 term_vi.c_cc[VMIN] = 1;
2134 term_vi.c_cc[VTIME] = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002135 erase_char = term_vi.c_cc[VERASE];
Denis Vlasenko202ac502008-11-05 13:20:58 +00002136 tcsetattr_stdin_TCSANOW(&term_vi);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002137}
2138
2139static void cookmode(void)
2140{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002141 fflush(stdout);
Denis Vlasenko202ac502008-11-05 13:20:58 +00002142 tcsetattr_stdin_TCSANOW(&term_orig);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002143}
2144
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002145//----- Come here when we get a window resize signal ---------
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002146#if ENABLE_FEATURE_VI_USE_SIGNALS
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002147static void winch_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002148{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002149 // FIXME: do it in main loop!!!
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002150 signal(SIGWINCH, winch_sig);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002151 if (ENABLE_FEATURE_VI_WIN_RESIZE) {
Denis Vlasenko621204b2006-10-27 09:03:24 +00002152 get_terminal_width_height(0, &columns, &rows);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002153 if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS;
2154 if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS;
2155 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002156 new_screen(rows, columns); // get memory for virtual screen
2157 redraw(TRUE); // re-draw the screen
2158}
2159
2160//----- Come here when we get a continue signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002161static void cont_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002162{
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002163 rawmode(); // terminal to "raw"
2164 last_status_cksum = 0; // force status update
2165 redraw(TRUE); // re-draw the screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002166
2167 signal(SIGTSTP, suspend_sig);
2168 signal(SIGCONT, SIG_DFL);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002169 kill(my_pid, SIGCONT); // huh? why? we are already "continued"...
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002170}
2171
2172//----- Come here when we get a Suspend signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002173static void suspend_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002174{
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002175 go_bottom_and_clear_to_eol();
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002176 cookmode(); // terminal to "cooked"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002177
2178 signal(SIGCONT, cont_sig);
2179 signal(SIGTSTP, SIG_DFL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002180 kill(my_pid, SIGTSTP);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002181}
2182
2183//----- Come here when we get a signal ---------------------------
2184static void catch_sig(int sig)
2185{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002186 signal(SIGINT, catch_sig);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002187 if (sig)
Paul Fox2724fa92008-03-17 15:28:07 +00002188 siglongjmp(restart, sig);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002189}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002190#endif /* FEATURE_VI_USE_SIGNALS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002191
2192static int mysleep(int hund) // sleep for 'h' 1/100 seconds
2193{
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002194 struct pollfd pfd[1];
Denis Vlasenkocd5c7862007-05-17 16:37:22 +00002195
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002196 pfd[0].fd = 0;
2197 pfd[0].events = POLLIN;
Denis Vlasenko5d61e712007-09-27 10:09:59 +00002198 return safe_poll(pfd, 1, hund*10) > 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002199}
2200
2201//----- IO Routines --------------------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002202static int readit(void) // read (maybe cursor) key from stdin
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002203{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002204 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002205
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002206 fflush(stdout);
Denys Vlasenko020f4062009-05-17 16:44:54 +02002207 c = read_key(STDIN_FILENO, readbuffer);
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002208 if (c == -1) { // EOF/error
2209 go_bottom_and_clear_to_eol();
2210 cookmode(); // terminal to "cooked"
2211 bb_error_msg_and_die("can't read user input");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002212 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002213 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002214}
2215
2216//----- IO Routines --------------------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002217static int get_one_char(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002218{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002219 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002220
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002221#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002222 if (!adding2q) {
2223 // we are not adding to the q.
2224 // but, we may be reading from a q
2225 if (ioq == 0) {
2226 // there is no current q, read from STDIN
2227 c = readit(); // get the users input
2228 } else {
2229 // there is a queue to get chars from first
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002230 // careful with correct sign expansion!
2231 c = (unsigned char)*ioq++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002232 if (c == '\0') {
2233 // the end of the q, read from STDIN
2234 free(ioq_start);
2235 ioq_start = ioq = 0;
2236 c = readit(); // get the users input
2237 }
2238 }
2239 } else {
2240 // adding STDIN chars to q
2241 c = readit(); // get the users input
Denis Vlasenkob1759462008-06-20 20:20:54 +00002242 if (lmc_len >= MAX_INPUT_LEN - 1) {
2243 status_line_bold("last_modifying_cmd overrun");
2244 } else {
2245 // add new char to q
2246 last_modifying_cmd[lmc_len++] = c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002247 }
2248 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002249#else
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002250 c = readit(); // get the users input
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002251#endif /* FEATURE_VI_DOT_CMD */
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002252 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002253}
2254
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002255// Get input line (uses "status line" area)
2256static char *get_input_line(const char *prompt)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002257{
Denis Vlasenkob1759462008-06-20 20:20:54 +00002258 // char [MAX_INPUT_LEN]
2259#define buf get_input_line__buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002260
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002261 int c;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002262 int i;
2263
2264 strcpy(buf, prompt);
Paul Fox8552aec2005-09-16 12:20:05 +00002265 last_status_cksum = 0; // force status update
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002266 go_bottom_and_clear_to_eol();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002267 write1(prompt); // write out the :, /, or ? prompt
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002268
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002269 i = strlen(buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002270 while (i < MAX_INPUT_LEN) {
2271 c = get_one_char();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002272 if (c == '\n' || c == '\r' || c == 27)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002273 break; // this is end of input
Paul Foxf2de0b72005-09-13 22:20:37 +00002274 if (c == erase_char || c == 8 || c == 127) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002275 // user wants to erase prev char
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002276 buf[--i] = '\0';
2277 write1("\b \b"); // erase char on screen
2278 if (i <= 0) // user backs up before b-o-l, exit
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002279 break;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002280 } else if (c > 0 && c < 256) { // exclude Unicode
2281 // (TODO: need to handle Unicode)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002282 buf[i] = c;
2283 buf[++i] = '\0';
2284 bb_putchar(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002285 }
2286 }
2287 refresh(FALSE);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002288 return buf;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002289#undef buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002290}
2291
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002292static int file_size(const char *fn) // what is the byte size of "fn"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002293{
2294 struct stat st_buf;
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002295 int cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002296
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002297 cnt = -1;
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002298 if (fn && fn[0] && stat(fn, &st_buf) == 0) // see if file exists
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002299 cnt = (int) st_buf.st_size;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002300 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002301}
2302
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002303// might reallocate text[]!
2304static int file_insert(const char *fn, char *p, int update_ro_status)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002305{
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002306 int cnt = -1;
2307 int fd, size;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002308 struct stat statbuf;
2309
2310 /* Validate file */
2311 if (stat(fn, &statbuf) < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002312 status_line_bold("\"%s\" %s", fn, strerror(errno));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002313 goto fi0;
2314 }
Denis Vlasenko33875382008-06-21 20:31:50 +00002315 if (!S_ISREG(statbuf.st_mode)) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002316 // This is not a regular file
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002317 status_line_bold("\"%s\" Not a regular file", fn);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002318 goto fi0;
2319 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002320 if (p < text || p > end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002321 status_line_bold("Trying to insert file outside of memory");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002322 goto fi0;
2323 }
2324
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002325 // read file to buffer
2326 fd = open(fn, O_RDONLY);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002327 if (fd < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002328 status_line_bold("\"%s\" %s", fn, strerror(errno));
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002329 goto fi0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002330 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002331 size = statbuf.st_size;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002332 p += text_hole_make(p, size);
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002333 cnt = safe_read(fd, p, size);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002334 if (cnt < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002335 status_line_bold("\"%s\" %s", fn, strerror(errno));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002336 p = text_hole_delete(p, p + size - 1); // un-do buffer insert
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002337 } else if (cnt < size) {
2338 // There was a partial read, shrink unused space text[]
2339 p = text_hole_delete(p + cnt, p + (size - cnt) - 1); // un-do buffer insert
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002340 status_line_bold("cannot read all of file \"%s\"", fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002341 }
2342 if (cnt >= size)
Paul Fox8552aec2005-09-16 12:20:05 +00002343 file_modified++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002344 close(fd);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002345 fi0:
Denis Vlasenko856be772007-08-17 08:29:48 +00002346#if ENABLE_FEATURE_VI_READONLY
2347 if (update_ro_status
2348 && ((access(fn, W_OK) < 0) ||
2349 /* root will always have access()
2350 * so we check fileperms too */
2351 !(statbuf.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH))
2352 )
2353 ) {
Denis Vlasenko2f6ae432007-07-19 22:50:47 +00002354 SET_READONLY_FILE(readonly_mode);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002355 }
Denis Vlasenko856be772007-08-17 08:29:48 +00002356#endif
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002357 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002358}
2359
Denis Vlasenko33875382008-06-21 20:31:50 +00002360static int file_write(char *fn, char *first, char *last)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002361{
2362 int fd, cnt, charcnt;
2363
2364 if (fn == 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002365 status_line_bold("No current filename");
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002366 return -2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002367 }
2368 charcnt = 0;
Denis Vlasenko8abae882008-05-03 11:35:59 +00002369 /* By popular request we do not open file with O_TRUNC,
2370 * but instead ftruncate() it _after_ successful write.
2371 * Might reduce amount of data lost on power fail etc.
2372 */
2373 fd = open(fn, (O_WRONLY | O_CREAT), 0666);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002374 if (fd < 0)
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002375 return -1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002376 cnt = last - first + 1;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002377 charcnt = full_write(fd, first, cnt);
Denis Vlasenko8abae882008-05-03 11:35:59 +00002378 ftruncate(fd, charcnt);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002379 if (charcnt == cnt) {
2380 // good write
Denis Vlasenkob1759462008-06-20 20:20:54 +00002381 //file_modified = FALSE;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002382 } else {
2383 charcnt = 0;
2384 }
2385 close(fd);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002386 return charcnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002387}
2388
2389//----- Terminal Drawing ---------------------------------------
2390// The terminal is made up of 'rows' line of 'columns' columns.
Eric Andersenaff114c2004-04-14 17:51:38 +00002391// classically this would be 24 x 80.
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002392// screen coordinates
2393// 0,0 ... 0,79
2394// 1,0 ... 1,79
2395// . ... .
2396// . ... .
2397// 22,0 ... 22,79
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002398// 23,0 ... 23,79 <- status line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002399
2400//----- Move the cursor to row x col (count from 0, not 1) -------
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002401static void place_cursor(int row, int col, int optimize)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002402{
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002403 char cm1[sizeof(CMrc) + sizeof(int)*3 * 2];
Denis Vlasenko7b54dc72008-07-17 21:32:32 +00002404#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
2405 enum {
2406 SZ_UP = sizeof(CMup),
2407 SZ_DN = sizeof(CMdown),
2408 SEQ_SIZE = SZ_UP > SZ_DN ? SZ_UP : SZ_DN,
2409 };
2410 char cm2[SEQ_SIZE * 5 + 32]; // bigger than worst case size
2411#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002412 char *cm;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002413
2414 if (row < 0) row = 0;
2415 if (row >= rows) row = rows - 1;
2416 if (col < 0) col = 0;
2417 if (col >= columns) col = columns - 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002418
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002419 //----- 1. Try the standard terminal ESC sequence
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002420 sprintf(cm1, CMrc, row + 1, col + 1);
2421 cm = cm1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002422
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002423#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002424 if (optimize && col < 16) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002425 char *screenp;
2426 int Rrow = last_row;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002427 int diff = Rrow - row;
2428
2429 if (diff < -5 || diff > 5)
2430 goto skip;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002431
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002432 //----- find the minimum # of chars to move cursor -------------
2433 //----- 2. Try moving with discreet chars (Newline, [back]space, ...)
2434 cm2[0] = '\0';
2435
2436 // move to the correct row
2437 while (row < Rrow) {
2438 // the cursor has to move up
2439 strcat(cm2, CMup);
2440 Rrow--;
2441 }
2442 while (row > Rrow) {
2443 // the cursor has to move down
2444 strcat(cm2, CMdown);
2445 Rrow++;
2446 }
2447
2448 // now move to the correct column
2449 strcat(cm2, "\r"); // start at col 0
2450 // just send out orignal source char to get to correct place
2451 screenp = &screen[row * columns]; // start of screen line
2452 strncat(cm2, screenp, col);
2453
2454 // pick the shortest cursor motion to send out
2455 if (strlen(cm2) < strlen(cm)) {
2456 cm = cm2;
2457 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002458 skip: ;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002459 }
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002460 last_row = row;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002461#endif /* FEATURE_VI_OPTIMIZE_CURSOR */
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002462 write1(cm);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002463}
2464
2465//----- Erase from cursor to end of line -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002466static void clear_to_eol(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002467{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002468 write1(Ceol); // Erase from cursor to end of line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002469}
2470
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002471static void go_bottom_and_clear_to_eol(void)
2472{
2473 place_cursor(rows - 1, 0, FALSE); // go to bottom of screen
2474 clear_to_eol(); // erase to end of line
2475}
2476
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002477//----- Erase from cursor to end of screen -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002478static void clear_to_eos(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002479{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002480 write1(Ceos); // Erase from cursor to end of screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002481}
2482
2483//----- Start standout mode ------------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002484static void standout_start(void) // send "start reverse video" sequence
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002485{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002486 write1(SOs); // Start reverse video mode
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002487}
2488
2489//----- End standout mode --------------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002490static void standout_end(void) // send "end reverse video" sequence
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002491{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002492 write1(SOn); // End reverse video mode
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002493}
2494
2495//----- Flash the screen --------------------------------------
2496static void flash(int h)
2497{
2498 standout_start(); // send "start reverse video" sequence
2499 redraw(TRUE);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002500 mysleep(h);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002501 standout_end(); // send "end reverse video" sequence
2502 redraw(TRUE);
2503}
2504
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002505static void Indicate_Error(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002506{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002507#if ENABLE_FEATURE_VI_CRASHME
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002508 if (crashme > 0)
2509 return; // generate a random command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002510#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002511 if (!err_method) {
2512 write1(bell); // send out a bell character
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002513 } else {
2514 flash(10);
2515 }
2516}
2517
2518//----- Screen[] Routines --------------------------------------
2519//----- Erase the Screen[] memory ------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002520static void screen_erase(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002521{
2522 memset(screen, ' ', screensize); // clear new screen
2523}
2524
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002525static int bufsum(char *buf, int count)
Paul Fox8552aec2005-09-16 12:20:05 +00002526{
2527 int sum = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002528 char *e = buf + count;
2529
Paul Fox8552aec2005-09-16 12:20:05 +00002530 while (buf < e)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002531 sum += (unsigned char) *buf++;
Paul Fox8552aec2005-09-16 12:20:05 +00002532 return sum;
2533}
2534
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002535//----- Draw the status line at bottom of the screen -------------
2536static void show_status_line(void)
2537{
Paul Foxc3504852005-09-16 12:48:18 +00002538 int cnt = 0, cksum = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002539
Paul Fox8552aec2005-09-16 12:20:05 +00002540 // either we already have an error or status message, or we
2541 // create one.
2542 if (!have_status_msg) {
2543 cnt = format_edit_status();
2544 cksum = bufsum(status_buffer, cnt);
2545 }
2546 if (have_status_msg || ((cnt > 0 && last_status_cksum != cksum))) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002547 last_status_cksum = cksum; // remember if we have seen this line
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002548 go_bottom_and_clear_to_eol();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002549 write1(status_buffer);
Paul Fox8552aec2005-09-16 12:20:05 +00002550 if (have_status_msg) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002551 if (((int)strlen(status_buffer) - (have_status_msg - 1)) >
Paul Fox8552aec2005-09-16 12:20:05 +00002552 (columns - 1) ) {
2553 have_status_msg = 0;
2554 Hit_Return();
2555 }
2556 have_status_msg = 0;
2557 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002558 place_cursor(crow, ccol, FALSE); // put cursor back in correct place
2559 }
Eric Andersena9eb33d2004-08-19 19:15:06 +00002560 fflush(stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002561}
2562
2563//----- format the status buffer, the bottom line of screen ------
Paul Fox8552aec2005-09-16 12:20:05 +00002564// format status buffer, with STANDOUT mode
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002565static void status_line_bold(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002566{
2567 va_list args;
2568
2569 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002570 strcpy(status_buffer, SOs); // Terminal standout mode on
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002571 vsprintf(status_buffer + sizeof(SOs)-1, format, args);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002572 strcat(status_buffer, SOn); // Terminal standout mode off
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002573 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00002574
2575 have_status_msg = 1 + sizeof(SOs) + sizeof(SOn) - 2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002576}
2577
Paul Fox8552aec2005-09-16 12:20:05 +00002578// format status buffer
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002579static void status_line(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002580{
2581 va_list args;
2582
2583 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002584 vsprintf(status_buffer, format, args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002585 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00002586
2587 have_status_msg = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002588}
2589
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002590// copy s to buf, convert unprintable
2591static void print_literal(char *buf, const char *s)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002592{
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002593 unsigned char c;
2594 char b[2];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002595
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002596 b[1] = '\0';
2597 buf[0] = '\0';
2598 if (!s[0])
2599 s = "(NULL)";
2600 for (; *s; s++) {
2601 int c_is_no_print;
2602
2603 c = *s;
2604 c_is_no_print = (c & 0x80) && !Isprint(c);
2605 if (c_is_no_print) {
2606 strcat(buf, SOn);
2607 c = '.';
2608 }
2609 if (c < ' ' || c == 127) {
2610 strcat(buf, "^");
2611 if (c == 127)
2612 c = '?';
2613 else
2614 c += '@';
2615 }
2616 b[0] = c;
2617 strcat(buf, b);
2618 if (c_is_no_print)
2619 strcat(buf, SOs);
2620 if (*s == '\n')
2621 strcat(buf, "$");
2622 if (strlen(buf) > MAX_INPUT_LEN - 10) // paranoia
2623 break;
2624 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002625}
2626
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002627static void not_implemented(const char *s)
2628{
2629 char buf[MAX_INPUT_LEN];
2630
2631 print_literal(buf, s);
2632 status_line_bold("\'%s\' is not implemented", buf);
2633}
2634
2635// show file status on status line
2636static int format_edit_status(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002637{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00002638 static const char cmd_mode_indicator[] ALIGN1 = "-IR-";
Denis Vlasenkob1759462008-06-20 20:20:54 +00002639
2640#define tot format_edit_status__tot
2641
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002642 int cur, percent, ret, trunc_at;
2643
Paul Fox8552aec2005-09-16 12:20:05 +00002644 // file_modified is now a counter rather than a flag. this
2645 // helps reduce the amount of line counting we need to do.
2646 // (this will cause a mis-reporting of modified status
2647 // once every MAXINT editing operations.)
2648
2649 // it would be nice to do a similar optimization here -- if
2650 // we haven't done a motion that could have changed which line
2651 // we're on, then we shouldn't have to do this count_lines()
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002652 cur = count_lines(text, dot);
Paul Fox8552aec2005-09-16 12:20:05 +00002653
2654 // reduce counting -- the total lines can't have
2655 // changed if we haven't done any edits.
2656 if (file_modified != last_file_modified) {
2657 tot = cur + count_lines(dot, end - 1) - 1;
2658 last_file_modified = file_modified;
2659 }
2660
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002661 // current line percent
2662 // ------------- ~~ ----------
2663 // total lines 100
2664 if (tot > 0) {
2665 percent = (100 * cur) / tot;
2666 } else {
2667 cur = tot = 0;
2668 percent = 100;
2669 }
Eric Andersen0ef24c62005-07-18 10:32:59 +00002670
Paul Fox8552aec2005-09-16 12:20:05 +00002671 trunc_at = columns < STATUS_BUFFER_LEN-1 ?
2672 columns : STATUS_BUFFER_LEN-1;
2673
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002674 ret = snprintf(status_buffer, trunc_at+1,
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002675#if ENABLE_FEATURE_VI_READONLY
Paul Fox8552aec2005-09-16 12:20:05 +00002676 "%c %s%s%s %d/%d %d%%",
2677#else
2678 "%c %s%s %d/%d %d%%",
2679#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002680 cmd_mode_indicator[cmd_mode & 3],
2681 (current_filename != NULL ? current_filename : "No file"),
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002682#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002683 (readonly_mode ? " [Readonly]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00002684#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002685 (file_modified ? " [Modified]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00002686 cur, tot, percent);
2687
2688 if (ret >= 0 && ret < trunc_at)
2689 return ret; /* it all fit */
2690
2691 return trunc_at; /* had to truncate */
Denis Vlasenkob1759462008-06-20 20:20:54 +00002692#undef tot
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002693}
2694
2695//----- Force refresh of all Lines -----------------------------
2696static void redraw(int full_screen)
2697{
2698 place_cursor(0, 0, FALSE); // put cursor in correct place
Denis Vlasenkob1759462008-06-20 20:20:54 +00002699 clear_to_eos(); // tell terminal to erase display
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002700 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00002701 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002702 refresh(full_screen); // this will redraw the entire display
Paul Fox8552aec2005-09-16 12:20:05 +00002703 show_status_line();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002704}
2705
2706//----- Format a text[] line into a buffer ---------------------
Denis Vlasenko68404f12008-03-17 09:00:54 +00002707static char* format_line(char *src /*, int li*/)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002708{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002709 unsigned char c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002710 int co;
2711 int ofs = offset;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002712 char *dest = scr_out_buf; // [MAX_SCR_COLS + MAX_TABSTOP * 2]
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002713
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002714 c = '~'; // char in col 0 in non-existent lines is '~'
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002715 co = 0;
2716 while (co < columns + tabstop) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002717 // have we gone past the end?
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002718 if (src < end) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002719 c = *src++;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002720 if (c == '\n')
2721 break;
2722 if ((c & 0x80) && !Isprint(c)) {
2723 c = '.';
2724 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002725 if (c < ' ' || c == 0x7f) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002726 if (c == '\t') {
2727 c = ' ';
2728 // co % 8 != 7
2729 while ((co % tabstop) != (tabstop - 1)) {
2730 dest[co++] = c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002731 }
2732 } else {
2733 dest[co++] = '^';
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002734 if (c == 0x7f)
2735 c = '?';
2736 else
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002737 c += '@'; // Ctrl-X -> 'X'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002738 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002739 }
2740 }
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002741 dest[co++] = c;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002742 // discard scrolled-off-to-the-left portion,
2743 // in tabstop-sized pieces
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002744 if (ofs >= tabstop && co >= tabstop) {
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002745 memmove(dest, dest + tabstop, co);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002746 co -= tabstop;
2747 ofs -= tabstop;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002748 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002749 if (src >= end)
2750 break;
2751 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002752 // check "short line, gigantic offset" case
2753 if (co < ofs)
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002754 ofs = co;
2755 // discard last scrolled off part
2756 co -= ofs;
2757 dest += ofs;
2758 // fill the rest with spaces
2759 if (co < columns)
2760 memset(&dest[co], ' ', columns - co);
2761 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002762}
2763
2764//----- Refresh the changed screen lines -----------------------
2765// Copy the source line from text[] into the buffer and note
2766// if the current screenline is different from the new buffer.
2767// If they differ then that line needs redrawing on the terminal.
2768//
2769static void refresh(int full_screen)
2770{
Denis Vlasenkob1759462008-06-20 20:20:54 +00002771#define old_offset refresh__old_offset
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002772
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002773 int li, changed;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002774 char *tp, *sp; // pointer into text[] and screen[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002775
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002776 if (ENABLE_FEATURE_VI_WIN_RESIZE) {
Denis Vlasenko55995022008-05-18 22:28:26 +00002777 unsigned c = columns, r = rows;
Rob Landleye5e1a102006-06-21 01:15:36 +00002778 get_terminal_width_height(0, &columns, &rows);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002779 if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS;
2780 if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS;
2781 full_screen |= (c - columns) | (r - rows);
2782 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002783 sync_cursor(dot, &crow, &ccol); // where cursor will be (on "dot")
2784 tp = screenbegin; // index into text[] of top line
2785
2786 // compare text[] to screen[] and mark screen[] lines that need updating
2787 for (li = 0; li < rows - 1; li++) {
2788 int cs, ce; // column start & end
Denis Vlasenkof882f082007-12-23 02:36:51 +00002789 char *out_buf;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002790 // format current text line
Denis Vlasenko68404f12008-03-17 09:00:54 +00002791 out_buf = format_line(tp /*, li*/);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002792
2793 // skip to the end of the current text[] line
Denis Vlasenkof882f082007-12-23 02:36:51 +00002794 if (tp < end) {
2795 char *t = memchr(tp, '\n', end - tp);
2796 if (!t) t = end - 1;
2797 tp = t + 1;
2798 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002799
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002800 // see if there are any changes between vitual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002801 changed = FALSE; // assume no change
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002802 cs = 0;
2803 ce = columns - 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002804 sp = &screen[li * columns]; // start of screen line
2805 if (full_screen) {
2806 // force re-draw of every single column from 0 - columns-1
2807 goto re0;
2808 }
2809 // compare newly formatted buffer with virtual screen
2810 // look forward for first difference between buf and screen
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002811 for (; cs <= ce; cs++) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002812 if (out_buf[cs] != sp[cs]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002813 changed = TRUE; // mark for redraw
2814 break;
2815 }
2816 }
2817
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002818 // look backward for last difference between out_buf and screen
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002819 for (; ce >= cs; ce--) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002820 if (out_buf[ce] != sp[ce]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002821 changed = TRUE; // mark for redraw
2822 break;
2823 }
2824 }
2825 // now, cs is index of first diff, and ce is index of last diff
2826
2827 // if horz offset has changed, force a redraw
2828 if (offset != old_offset) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002829 re0:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002830 changed = TRUE;
2831 }
2832
2833 // make a sanity check of columns indexes
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002834 if (cs < 0) cs = 0;
2835 if (ce > columns - 1) ce = columns - 1;
2836 if (cs > ce) { cs = 0; ce = columns - 1; }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002837 // is there a change between vitual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002838 if (changed) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002839 // copy changed part of buffer to virtual screen
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002840 memcpy(sp+cs, out_buf+cs, ce-cs+1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002841
2842 // move cursor to column of first change
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002843 //if (offset != old_offset) {
2844 // // place_cursor is still too stupid
2845 // // to handle offsets correctly
2846 // place_cursor(li, cs, FALSE);
2847 //} else {
2848 place_cursor(li, cs, TRUE);
2849 //}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002850
2851 // write line out to terminal
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002852 fwrite(&sp[cs], ce - cs + 1, 1, stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002853 }
2854 }
2855
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002856 place_cursor(crow, ccol, TRUE);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002857
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002858 old_offset = offset;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002859#undef old_offset
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002860}
2861
Eric Andersen3f980402001-04-04 17:31:15 +00002862//---------------------------------------------------------------------
2863//----- the Ascii Chart -----------------------------------------------
2864//
2865// 00 nul 01 soh 02 stx 03 etx 04 eot 05 enq 06 ack 07 bel
2866// 08 bs 09 ht 0a nl 0b vt 0c np 0d cr 0e so 0f si
2867// 10 dle 11 dc1 12 dc2 13 dc3 14 dc4 15 nak 16 syn 17 etb
2868// 18 can 19 em 1a sub 1b esc 1c fs 1d gs 1e rs 1f us
2869// 20 sp 21 ! 22 " 23 # 24 $ 25 % 26 & 27 '
2870// 28 ( 29 ) 2a * 2b + 2c , 2d - 2e . 2f /
2871// 30 0 31 1 32 2 33 3 34 4 35 5 36 6 37 7
2872// 38 8 39 9 3a : 3b ; 3c < 3d = 3e > 3f ?
2873// 40 @ 41 A 42 B 43 C 44 D 45 E 46 F 47 G
2874// 48 H 49 I 4a J 4b K 4c L 4d M 4e N 4f O
2875// 50 P 51 Q 52 R 53 S 54 T 55 U 56 V 57 W
2876// 58 X 59 Y 5a Z 5b [ 5c \ 5d ] 5e ^ 5f _
2877// 60 ` 61 a 62 b 63 c 64 d 65 e 66 f 67 g
2878// 68 h 69 i 6a j 6b k 6c l 6d m 6e n 6f o
2879// 70 p 71 q 72 r 73 s 74 t 75 u 76 v 77 w
2880// 78 x 79 y 7a z 7b { 7c | 7d } 7e ~ 7f del
2881//---------------------------------------------------------------------
2882
2883//----- Execute a Vi Command -----------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002884static void do_cmd(int c)
Eric Andersen3f980402001-04-04 17:31:15 +00002885{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002886 const char *msg = msg; // for compiler
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002887 char *p, *q, *save_dot;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002888 char buf[12];
Denis Vlasenkoc3a9dc82008-10-29 00:58:04 +00002889 int dir;
Paul Foxc51fc7b2008-03-06 01:34:23 +00002890 int cnt, i, j;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002891 int c1;
Eric Andersen3f980402001-04-04 17:31:15 +00002892
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002893// c1 = c; // quiet the compiler
2894// cnt = yf = 0; // quiet the compiler
2895// msg = p = q = save_dot = buf; // quiet the compiler
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002896 memset(buf, '\0', 12);
Eric Andersenbff7a602001-11-17 07:15:43 +00002897
Paul Fox8552aec2005-09-16 12:20:05 +00002898 show_status_line();
2899
Eric Andersenbff7a602001-11-17 07:15:43 +00002900 /* if this is a cursor key, skip these checks */
2901 switch (c) {
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002902 case KEYCODE_UP:
2903 case KEYCODE_DOWN:
2904 case KEYCODE_LEFT:
2905 case KEYCODE_RIGHT:
2906 case KEYCODE_HOME:
2907 case KEYCODE_END:
2908 case KEYCODE_PAGEUP:
2909 case KEYCODE_PAGEDOWN:
2910 case KEYCODE_DELETE:
Eric Andersenbff7a602001-11-17 07:15:43 +00002911 goto key_cmd_mode;
2912 }
2913
Eric Andersen3f980402001-04-04 17:31:15 +00002914 if (cmd_mode == 2) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002915 // flip-flop Insert/Replace mode
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002916 if (c == KEYCODE_INSERT)
Denis Vlasenko2a51af22007-03-21 22:31:24 +00002917 goto dc_i;
Eric Andersen3f980402001-04-04 17:31:15 +00002918 // we are 'R'eplacing the current *dot with new char
2919 if (*dot == '\n') {
2920 // don't Replace past E-o-l
2921 cmd_mode = 1; // convert to insert
2922 } else {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002923 if (1 <= c || Isprint(c)) {
Eric Andersen3f980402001-04-04 17:31:15 +00002924 if (c != 27)
2925 dot = yank_delete(dot, dot, 0, YANKDEL); // delete char
2926 dot = char_insert(dot, c); // insert new char
2927 }
2928 goto dc1;
2929 }
2930 }
2931 if (cmd_mode == 1) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00002932 // hitting "Insert" twice means "R" replace mode
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002933 if (c == KEYCODE_INSERT) goto dc5;
Eric Andersen3f980402001-04-04 17:31:15 +00002934 // insert the char c at "dot"
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002935 if (1 <= c || Isprint(c)) {
2936 dot = char_insert(dot, c);
Eric Andersen3f980402001-04-04 17:31:15 +00002937 }
2938 goto dc1;
2939 }
2940
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002941 key_cmd_mode:
Eric Andersen3f980402001-04-04 17:31:15 +00002942 switch (c) {
Eric Andersen822c3832001-05-07 17:37:43 +00002943 //case 0x01: // soh
2944 //case 0x09: // ht
2945 //case 0x0b: // vt
2946 //case 0x0e: // so
2947 //case 0x0f: // si
2948 //case 0x10: // dle
2949 //case 0x11: // dc1
2950 //case 0x13: // dc3
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002951#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen1c0d3112001-04-16 15:46:44 +00002952 case 0x14: // dc4 ctrl-T
Eric Andersen3f980402001-04-04 17:31:15 +00002953 crashme = (crashme == 0) ? 1 : 0;
Eric Andersen3f980402001-04-04 17:31:15 +00002954 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002955#endif
Eric Andersen822c3832001-05-07 17:37:43 +00002956 //case 0x16: // syn
2957 //case 0x17: // etb
2958 //case 0x18: // can
2959 //case 0x1c: // fs
2960 //case 0x1d: // gs
2961 //case 0x1e: // rs
2962 //case 0x1f: // us
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002963 //case '!': // !-
2964 //case '#': // #-
2965 //case '&': // &-
2966 //case '(': // (-
2967 //case ')': // )-
2968 //case '*': // *-
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002969 //case '=': // =-
2970 //case '@': // @-
2971 //case 'F': // F-
2972 //case 'K': // K-
2973 //case 'Q': // Q-
2974 //case 'S': // S-
2975 //case 'T': // T-
2976 //case 'V': // V-
2977 //case '[': // [-
2978 //case '\\': // \-
2979 //case ']': // ]-
2980 //case '_': // _-
2981 //case '`': // `-
Eric Andersen1c0d3112001-04-16 15:46:44 +00002982 //case 'u': // u- FIXME- there is no undo
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002983 //case 'v': // v-
Eric Andersen3f980402001-04-04 17:31:15 +00002984 default: // unrecognised command
2985 buf[0] = c;
2986 buf[1] = '\0';
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002987 if (c < ' ') {
Eric Andersen3f980402001-04-04 17:31:15 +00002988 buf[0] = '^';
2989 buf[1] = c + '@';
2990 buf[2] = '\0';
2991 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002992 not_implemented(buf);
Eric Andersen3f980402001-04-04 17:31:15 +00002993 end_cmd_q(); // stop adding to q
2994 case 0x00: // nul- ignore
2995 break;
2996 case 2: // ctrl-B scroll up full screen
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002997 case KEYCODE_PAGEUP: // Cursor Key Page Up
Eric Andersen3f980402001-04-04 17:31:15 +00002998 dot_scroll(rows - 2, -1);
2999 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003000 case 4: // ctrl-D scroll down half screen
3001 dot_scroll((rows - 2) / 2, 1);
3002 break;
3003 case 5: // ctrl-E scroll down one line
3004 dot_scroll(1, 1);
3005 break;
3006 case 6: // ctrl-F scroll down full screen
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003007 case KEYCODE_PAGEDOWN: // Cursor Key Page Down
Eric Andersen3f980402001-04-04 17:31:15 +00003008 dot_scroll(rows - 2, 1);
3009 break;
3010 case 7: // ctrl-G show current status
Paul Fox8552aec2005-09-16 12:20:05 +00003011 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003012 break;
3013 case 'h': // h- move left
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003014 case KEYCODE_LEFT: // cursor key Left
Paul Foxd13b90b2005-07-18 22:17:25 +00003015 case 8: // ctrl-H- move left (This may be ERASE char)
Denis Vlasenko2a51af22007-03-21 22:31:24 +00003016 case 0x7f: // DEL- move left (This may be ERASE char)
Eric Andersen3f980402001-04-04 17:31:15 +00003017 if (cmdcnt-- > 1) {
3018 do_cmd(c);
3019 } // repeat cnt
3020 dot_left();
3021 break;
3022 case 10: // Newline ^J
3023 case 'j': // j- goto next line, same col
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003024 case KEYCODE_DOWN: // cursor key Down
Eric Andersen3f980402001-04-04 17:31:15 +00003025 if (cmdcnt-- > 1) {
3026 do_cmd(c);
3027 } // repeat cnt
3028 dot_next(); // go to next B-o-l
3029 dot = move_to_col(dot, ccol + offset); // try stay in same col
3030 break;
3031 case 12: // ctrl-L force redraw whole screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003032 case 18: // ctrl-R force redraw
Eric Andersen822c3832001-05-07 17:37:43 +00003033 place_cursor(0, 0, FALSE); // put cursor in correct place
Eric Andersen3f980402001-04-04 17:31:15 +00003034 clear_to_eos(); // tel terminal to erase display
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003035 mysleep(10);
Eric Andersen3f980402001-04-04 17:31:15 +00003036 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00003037 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003038 refresh(TRUE); // this will redraw the entire display
3039 break;
3040 case 13: // Carriage Return ^M
3041 case '+': // +- goto next line
3042 if (cmdcnt-- > 1) {
3043 do_cmd(c);
3044 } // repeat cnt
3045 dot_next();
3046 dot_skip_over_ws();
3047 break;
3048 case 21: // ctrl-U scroll up half screen
3049 dot_scroll((rows - 2) / 2, -1);
3050 break;
3051 case 25: // ctrl-Y scroll up one line
3052 dot_scroll(1, -1);
3053 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003054 case 27: // esc
Eric Andersen3f980402001-04-04 17:31:15 +00003055 if (cmd_mode == 0)
3056 indicate_error(c);
3057 cmd_mode = 0; // stop insrting
3058 end_cmd_q();
Paul Fox8552aec2005-09-16 12:20:05 +00003059 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003060 break;
3061 case ' ': // move right
3062 case 'l': // move right
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003063 case KEYCODE_RIGHT: // Cursor Key Right
Eric Andersen3f980402001-04-04 17:31:15 +00003064 if (cmdcnt-- > 1) {
3065 do_cmd(c);
3066 } // repeat cnt
3067 dot_right();
3068 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003069#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003070 case '"': // "- name a register to use for Delete/Yank
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003071 c1 = (get_one_char() | 0x20) - 'a'; // | 0x20 is tolower()
3072 if ((unsigned)c1 <= 25) { // a-z?
3073 YDreg = c1;
Eric Andersen3f980402001-04-04 17:31:15 +00003074 } else {
3075 indicate_error(c);
3076 }
3077 break;
3078 case '\'': // '- goto a specific mark
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003079 c1 = (get_one_char() | 0x20) - 'a';
3080 if ((unsigned)c1 <= 25) { // a-z?
Eric Andersen3f980402001-04-04 17:31:15 +00003081 // get the b-o-l
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003082 q = mark[c1];
Eric Andersen3f980402001-04-04 17:31:15 +00003083 if (text <= q && q < end) {
3084 dot = q;
3085 dot_begin(); // go to B-o-l
3086 dot_skip_over_ws();
3087 }
3088 } else if (c1 == '\'') { // goto previous context
3089 dot = swap_context(dot); // swap current and previous context
3090 dot_begin(); // go to B-o-l
3091 dot_skip_over_ws();
3092 } else {
3093 indicate_error(c);
3094 }
3095 break;
3096 case 'm': // m- Mark a line
3097 // this is really stupid. If there are any inserts or deletes
3098 // between text[0] and dot then this mark will not point to the
3099 // correct location! It could be off by many lines!
3100 // Well..., at least its quick and dirty.
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003101 c1 = (get_one_char() | 0x20) - 'a';
3102 if ((unsigned)c1 <= 25) { // a-z?
Eric Andersen3f980402001-04-04 17:31:15 +00003103 // remember the line
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003104 mark[c1] = dot;
Eric Andersen3f980402001-04-04 17:31:15 +00003105 } else {
3106 indicate_error(c);
3107 }
3108 break;
3109 case 'P': // P- Put register before
3110 case 'p': // p- put register after
3111 p = reg[YDreg];
Denis Vlasenko00d84172008-11-24 07:34:42 +00003112 if (p == NULL) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003113 status_line_bold("Nothing in register %c", what_reg());
Eric Andersen3f980402001-04-04 17:31:15 +00003114 break;
3115 }
3116 // are we putting whole lines or strings
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003117 if (strchr(p, '\n') != NULL) {
Eric Andersen3f980402001-04-04 17:31:15 +00003118 if (c == 'P') {
3119 dot_begin(); // putting lines- Put above
3120 }
3121 if (c == 'p') {
3122 // are we putting after very last line?
3123 if (end_line(dot) == (end - 1)) {
3124 dot = end; // force dot to end of text[]
3125 } else {
3126 dot_next(); // next line, then put before
3127 }
3128 }
3129 } else {
3130 if (c == 'p')
3131 dot_right(); // move to right, can move to NL
3132 }
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00003133 string_insert(dot, p); // insert the string
Eric Andersen3f980402001-04-04 17:31:15 +00003134 end_cmd_q(); // stop adding to q
3135 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003136 case 'U': // U- Undo; replace current line with original version
3137 if (reg[Ureg] != 0) {
3138 p = begin_line(dot);
3139 q = end_line(dot);
3140 p = text_hole_delete(p, q); // delete cur line
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00003141 p += string_insert(p, reg[Ureg]); // insert orig line
Eric Andersen3f980402001-04-04 17:31:15 +00003142 dot = p;
3143 dot_skip_over_ws();
3144 }
3145 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003146#endif /* FEATURE_VI_YANKMARK */
Eric Andersen3f980402001-04-04 17:31:15 +00003147 case '$': // $- goto end of line
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003148 case KEYCODE_END: // Cursor Key End
Eric Andersen3f980402001-04-04 17:31:15 +00003149 if (cmdcnt-- > 1) {
3150 do_cmd(c);
3151 } // repeat cnt
Glenn L McGrathee829062004-01-21 10:59:45 +00003152 dot = end_line(dot);
Eric Andersen3f980402001-04-04 17:31:15 +00003153 break;
3154 case '%': // %- find matching char of pair () [] {}
3155 for (q = dot; q < end && *q != '\n'; q++) {
3156 if (strchr("()[]{}", *q) != NULL) {
3157 // we found half of a pair
3158 p = find_pair(q, *q);
3159 if (p == NULL) {
3160 indicate_error(c);
3161 } else {
3162 dot = p;
3163 }
3164 break;
3165 }
3166 }
3167 if (*q == '\n')
3168 indicate_error(c);
3169 break;
3170 case 'f': // f- forward to a user specified char
3171 last_forward_char = get_one_char(); // get the search char
3172 //
Eric Andersenaff114c2004-04-14 17:51:38 +00003173 // dont separate these two commands. 'f' depends on ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003174 //
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003175 //**** fall through to ... ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003176 case ';': // ;- look at rest of line for last forward char
3177 if (cmdcnt-- > 1) {
Eric Andersen822c3832001-05-07 17:37:43 +00003178 do_cmd(';');
Eric Andersen3f980402001-04-04 17:31:15 +00003179 } // repeat cnt
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003180 if (last_forward_char == 0)
3181 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003182 q = dot + 1;
3183 while (q < end - 1 && *q != '\n' && *q != last_forward_char) {
3184 q++;
3185 }
3186 if (*q == last_forward_char)
3187 dot = q;
3188 break;
Paul Foxb5ee8db2008-02-14 01:17:01 +00003189 case ',': // repeat latest 'f' in opposite direction
3190 if (cmdcnt-- > 1) {
3191 do_cmd(',');
3192 } // repeat cnt
3193 if (last_forward_char == 0)
3194 break;
3195 q = dot - 1;
3196 while (q >= text && *q != '\n' && *q != last_forward_char) {
3197 q--;
3198 }
3199 if (q >= text && *q == last_forward_char)
3200 dot = q;
3201 break;
3202
Eric Andersen3f980402001-04-04 17:31:15 +00003203 case '-': // -- goto prev line
3204 if (cmdcnt-- > 1) {
3205 do_cmd(c);
3206 } // repeat cnt
3207 dot_prev();
3208 dot_skip_over_ws();
3209 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003210#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003211 case '.': // .- repeat the last modifying command
3212 // Stuff the last_modifying_cmd back into stdin
3213 // and let it be re-executed.
Denis Vlasenkob1759462008-06-20 20:20:54 +00003214 if (lmc_len > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00003215 last_modifying_cmd[lmc_len] = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003216 ioq = ioq_start = xstrdup(last_modifying_cmd);
Eric Andersen3f980402001-04-04 17:31:15 +00003217 }
3218 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003219#endif
3220#if ENABLE_FEATURE_VI_SEARCH
Eric Andersen3f980402001-04-04 17:31:15 +00003221 case '?': // /- search for a pattern
3222 case '/': // /- search for a pattern
3223 buf[0] = c;
3224 buf[1] = '\0';
3225 q = get_input_line(buf); // get input line- use "status line"
Paul Fox4917c112008-03-05 16:44:02 +00003226 if (q[0] && !q[1]) {
3227 if (last_search_pattern[0])
Denis Vlasenkoc3a9dc82008-10-29 00:58:04 +00003228 last_search_pattern[0] = c;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003229 goto dc3; // if no pat re-use old pat
Paul Fox4917c112008-03-05 16:44:02 +00003230 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003231 if (q[0]) { // strlen(q) > 1: new pat- save it and find
Eric Andersen3f980402001-04-04 17:31:15 +00003232 // there is a new pat
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00003233 free(last_search_pattern);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003234 last_search_pattern = xstrdup(q);
Eric Andersen3f980402001-04-04 17:31:15 +00003235 goto dc3; // now find the pattern
3236 }
3237 // user changed mind and erased the "/"- do nothing
3238 break;
3239 case 'N': // N- backward search for last pattern
3240 if (cmdcnt-- > 1) {
3241 do_cmd(c);
3242 } // repeat cnt
3243 dir = BACK; // assume BACKWARD search
3244 p = dot - 1;
3245 if (last_search_pattern[0] == '?') {
3246 dir = FORWARD;
3247 p = dot + 1;
3248 }
3249 goto dc4; // now search for pattern
3250 break;
3251 case 'n': // n- repeat search for last pattern
3252 // search rest of text[] starting at next char
3253 // if search fails return orignal "p" not the "p+1" address
3254 if (cmdcnt-- > 1) {
3255 do_cmd(c);
3256 } // repeat cnt
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003257 dc3:
Denis Vlasenkoc3a9dc82008-10-29 00:58:04 +00003258 dir = FORWARD; // assume FORWARD search
3259 p = dot + 1;
Eric Andersen3f980402001-04-04 17:31:15 +00003260 if (last_search_pattern[0] == '?') {
3261 dir = BACK;
3262 p = dot - 1;
3263 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003264 dc4:
Eric Andersen3f980402001-04-04 17:31:15 +00003265 q = char_search(p, last_search_pattern + 1, dir, FULL);
3266 if (q != NULL) {
3267 dot = q; // good search, update "dot"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003268 msg = "";
Eric Andersen3f980402001-04-04 17:31:15 +00003269 goto dc2;
3270 }
3271 // no pattern found between "dot" and "end"- continue at top
3272 p = text;
3273 if (dir == BACK) {
3274 p = end - 1;
3275 }
3276 q = char_search(p, last_search_pattern + 1, dir, FULL);
3277 if (q != NULL) { // found something
3278 dot = q; // found new pattern- goto it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003279 msg = "search hit BOTTOM, continuing at TOP";
Eric Andersen3f980402001-04-04 17:31:15 +00003280 if (dir == BACK) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003281 msg = "search hit TOP, continuing at BOTTOM";
Eric Andersen3f980402001-04-04 17:31:15 +00003282 }
3283 } else {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003284 msg = "Pattern not found";
Eric Andersen3f980402001-04-04 17:31:15 +00003285 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003286 dc2:
3287 if (*msg)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003288 status_line_bold("%s", msg);
Eric Andersen3f980402001-04-04 17:31:15 +00003289 break;
3290 case '{': // {- move backward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003291 q = char_search(dot, "\n\n", BACK, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003292 if (q != NULL) { // found blank line
3293 dot = next_line(q); // move to next blank line
3294 }
3295 break;
3296 case '}': // }- move forward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003297 q = char_search(dot, "\n\n", FORWARD, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003298 if (q != NULL) { // found blank line
3299 dot = next_line(q); // move to next blank line
3300 }
3301 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003302#endif /* FEATURE_VI_SEARCH */
Eric Andersen3f980402001-04-04 17:31:15 +00003303 case '0': // 0- goto begining of line
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003304 case '1': // 1-
3305 case '2': // 2-
3306 case '3': // 3-
3307 case '4': // 4-
3308 case '5': // 5-
3309 case '6': // 6-
3310 case '7': // 7-
3311 case '8': // 8-
3312 case '9': // 9-
Eric Andersen3f980402001-04-04 17:31:15 +00003313 if (c == '0' && cmdcnt < 1) {
3314 dot_begin(); // this was a standalone zero
3315 } else {
3316 cmdcnt = cmdcnt * 10 + (c - '0'); // this 0 is part of a number
3317 }
3318 break;
3319 case ':': // :- the colon mode commands
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003320 p = get_input_line(":"); // get input line- use "status line"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003321#if ENABLE_FEATURE_VI_COLON
Eric Andersen3f980402001-04-04 17:31:15 +00003322 colon(p); // execute the command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003323#else
Eric Andersen822c3832001-05-07 17:37:43 +00003324 if (*p == ':')
3325 p++; // move past the ':'
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003326 cnt = strlen(p);
Eric Andersen822c3832001-05-07 17:37:43 +00003327 if (cnt <= 0)
3328 break;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003329 if (strncasecmp(p, "quit", cnt) == 0
3330 || strncasecmp(p, "q!", cnt) == 0 // delete lines
3331 ) {
Matt Kraai1f0c4362001-12-20 23:13:26 +00003332 if (file_modified && p[1] != '!') {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003333 status_line_bold("No write since last change (:quit! overrides)");
Eric Andersen3f980402001-04-04 17:31:15 +00003334 } else {
3335 editing = 0;
3336 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003337 } else if (strncasecmp(p, "write", cnt) == 0
3338 || strncasecmp(p, "wq", cnt) == 0
3339 || strncasecmp(p, "wn", cnt) == 0
3340 || strncasecmp(p, "x", cnt) == 0
3341 ) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003342 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00003343 if (cnt < 0) {
3344 if (cnt == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003345 status_line_bold("Write error: %s", strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00003346 } else {
3347 file_modified = 0;
3348 last_file_modified = -1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003349 status_line("\"%s\" %dL, %dC", current_filename, count_lines(text, end - 1), cnt);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003350 if (p[0] == 'x' || p[1] == 'q' || p[1] == 'n'
3351 || p[0] == 'X' || p[1] == 'Q' || p[1] == 'N'
3352 ) {
Paul Fox61e45db2005-10-09 14:43:22 +00003353 editing = 0;
3354 }
Eric Andersen3f980402001-04-04 17:31:15 +00003355 }
Denis Vlasenko219d14d2007-03-24 15:40:16 +00003356 } else if (strncasecmp(p, "file", cnt) == 0) {
Paul Fox8552aec2005-09-16 12:20:05 +00003357 last_status_cksum = 0; // force status update
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003358 } else if (sscanf(p, "%d", &j) > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003359 dot = find_line(j); // go to line # j
3360 dot_skip_over_ws();
Eric Andersen3f980402001-04-04 17:31:15 +00003361 } else { // unrecognised cmd
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003362 not_implemented(p);
Eric Andersen3f980402001-04-04 17:31:15 +00003363 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003364#endif /* !FEATURE_VI_COLON */
Eric Andersen3f980402001-04-04 17:31:15 +00003365 break;
3366 case '<': // <- Left shift something
3367 case '>': // >- Right shift something
3368 cnt = count_lines(text, dot); // remember what line we are on
3369 c1 = get_one_char(); // get the type of thing to delete
3370 find_range(&p, &q, c1);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003371 yank_delete(p, q, 1, YANKONLY); // save copy before change
Eric Andersen3f980402001-04-04 17:31:15 +00003372 p = begin_line(p);
3373 q = end_line(q);
3374 i = count_lines(p, q); // # of lines we are shifting
3375 for ( ; i > 0; i--, p = next_line(p)) {
3376 if (c == '<') {
3377 // shift left- remove tab or 8 spaces
3378 if (*p == '\t') {
3379 // shrink buffer 1 char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003380 text_hole_delete(p, p);
Eric Andersen3f980402001-04-04 17:31:15 +00003381 } else if (*p == ' ') {
3382 // we should be calculating columns, not just SPACE
3383 for (j = 0; *p == ' ' && j < tabstop; j++) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003384 text_hole_delete(p, p);
Eric Andersen3f980402001-04-04 17:31:15 +00003385 }
3386 }
3387 } else if (c == '>') {
3388 // shift right -- add tab or 8 spaces
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003389 char_insert(p, '\t');
Eric Andersen3f980402001-04-04 17:31:15 +00003390 }
3391 }
3392 dot = find_line(cnt); // what line were we on
3393 dot_skip_over_ws();
3394 end_cmd_q(); // stop adding to q
3395 break;
3396 case 'A': // A- append at e-o-l
3397 dot_end(); // go to e-o-l
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003398 //**** fall through to ... 'a'
Eric Andersen3f980402001-04-04 17:31:15 +00003399 case 'a': // a- append after current char
3400 if (*dot != '\n')
3401 dot++;
3402 goto dc_i;
3403 break;
3404 case 'B': // B- back a blank-delimited Word
3405 case 'E': // E- end of a blank-delimited word
3406 case 'W': // W- forward a blank-delimited word
3407 if (cmdcnt-- > 1) {
3408 do_cmd(c);
3409 } // repeat cnt
3410 dir = FORWARD;
3411 if (c == 'B')
3412 dir = BACK;
3413 if (c == 'W' || isspace(dot[dir])) {
3414 dot = skip_thing(dot, 1, dir, S_TO_WS);
3415 dot = skip_thing(dot, 2, dir, S_OVER_WS);
3416 }
3417 if (c != 'W')
3418 dot = skip_thing(dot, 1, dir, S_BEFORE_WS);
3419 break;
3420 case 'C': // C- Change to e-o-l
3421 case 'D': // D- delete to e-o-l
3422 save_dot = dot;
3423 dot = dollar_line(dot); // move to before NL
3424 // copy text into a register and delete
3425 dot = yank_delete(save_dot, dot, 0, YANKDEL); // delete to e-o-l
3426 if (c == 'C')
3427 goto dc_i; // start inserting
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003428#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003429 if (c == 'D')
3430 end_cmd_q(); // stop adding to q
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003431#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003432 break;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003433 case 'g': // 'gg' goto a line number (vim) (default: very first line)
Paul Foxb5ee8db2008-02-14 01:17:01 +00003434 c1 = get_one_char();
3435 if (c1 != 'g') {
3436 buf[0] = 'g';
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003437 buf[1] = c1; // TODO: if Unicode?
Paul Foxb5ee8db2008-02-14 01:17:01 +00003438 buf[2] = '\0';
3439 not_implemented(buf);
3440 break;
3441 }
3442 if (cmdcnt == 0)
3443 cmdcnt = 1;
3444 /* fall through */
Eric Andersen822c3832001-05-07 17:37:43 +00003445 case 'G': // G- goto to a line number (default= E-O-F)
3446 dot = end - 1; // assume E-O-F
Eric Andersen1c0d3112001-04-16 15:46:44 +00003447 if (cmdcnt > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003448 dot = find_line(cmdcnt); // what line is #cmdcnt
Eric Andersen1c0d3112001-04-16 15:46:44 +00003449 }
3450 dot_skip_over_ws();
3451 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003452 case 'H': // H- goto top line on screen
3453 dot = screenbegin;
3454 if (cmdcnt > (rows - 1)) {
3455 cmdcnt = (rows - 1);
3456 }
3457 if (cmdcnt-- > 1) {
3458 do_cmd('+');
3459 } // repeat cnt
3460 dot_skip_over_ws();
3461 break;
3462 case 'I': // I- insert before first non-blank
3463 dot_begin(); // 0
3464 dot_skip_over_ws();
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003465 //**** fall through to ... 'i'
Eric Andersen3f980402001-04-04 17:31:15 +00003466 case 'i': // i- insert before current char
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003467 case KEYCODE_INSERT: // Cursor Key Insert
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003468 dc_i:
Eric Andersen3f980402001-04-04 17:31:15 +00003469 cmd_mode = 1; // start insrting
Eric Andersen3f980402001-04-04 17:31:15 +00003470 break;
3471 case 'J': // J- join current and next lines together
3472 if (cmdcnt-- > 2) {
3473 do_cmd(c);
3474 } // repeat cnt
3475 dot_end(); // move to NL
3476 if (dot < end - 1) { // make sure not last char in text[]
3477 *dot++ = ' '; // replace NL with space
Paul Fox8552aec2005-09-16 12:20:05 +00003478 file_modified++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003479 while (isblank(*dot)) { // delete leading WS
Eric Andersen3f980402001-04-04 17:31:15 +00003480 dot_delete();
3481 }
3482 }
3483 end_cmd_q(); // stop adding to q
3484 break;
3485 case 'L': // L- goto bottom line on screen
3486 dot = end_screen();
3487 if (cmdcnt > (rows - 1)) {
3488 cmdcnt = (rows - 1);
3489 }
3490 if (cmdcnt-- > 1) {
3491 do_cmd('-');
3492 } // repeat cnt
3493 dot_begin();
3494 dot_skip_over_ws();
3495 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003496 case 'M': // M- goto middle line on screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003497 dot = screenbegin;
3498 for (cnt = 0; cnt < (rows-1) / 2; cnt++)
3499 dot = next_line(dot);
3500 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003501 case 'O': // O- open a empty line above
Eric Andersen822c3832001-05-07 17:37:43 +00003502 // 0i\n ESC -i
Eric Andersen3f980402001-04-04 17:31:15 +00003503 p = begin_line(dot);
3504 if (p[-1] == '\n') {
3505 dot_prev();
3506 case 'o': // o- open a empty line below; Yes, I know it is in the middle of the "if (..."
3507 dot_end();
3508 dot = char_insert(dot, '\n');
3509 } else {
3510 dot_begin(); // 0
Eric Andersen822c3832001-05-07 17:37:43 +00003511 dot = char_insert(dot, '\n'); // i\n ESC
Eric Andersen3f980402001-04-04 17:31:15 +00003512 dot_prev(); // -
3513 }
3514 goto dc_i;
3515 break;
3516 case 'R': // R- continuous Replace char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003517 dc5:
Eric Andersen3f980402001-04-04 17:31:15 +00003518 cmd_mode = 2;
Eric Andersen3f980402001-04-04 17:31:15 +00003519 break;
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003520 case KEYCODE_DELETE:
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003521 c = 'x';
3522 // fall through
Eric Andersen3f980402001-04-04 17:31:15 +00003523 case 'X': // X- delete char before dot
3524 case 'x': // x- delete the current char
3525 case 's': // s- substitute the current char
3526 if (cmdcnt-- > 1) {
3527 do_cmd(c);
3528 } // repeat cnt
3529 dir = 0;
3530 if (c == 'X')
3531 dir = -1;
3532 if (dot[dir] != '\n') {
3533 if (c == 'X')
3534 dot--; // delete prev char
3535 dot = yank_delete(dot, dot, 0, YANKDEL); // delete char
3536 }
3537 if (c == 's')
3538 goto dc_i; // start insrting
3539 end_cmd_q(); // stop adding to q
3540 break;
3541 case 'Z': // Z- if modified, {write}; exit
3542 // ZZ means to save file (if necessary), then exit
3543 c1 = get_one_char();
3544 if (c1 != 'Z') {
3545 indicate_error(c);
3546 break;
3547 }
Paul Foxf0305b72006-03-28 14:18:21 +00003548 if (file_modified) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003549 if (ENABLE_FEATURE_VI_READONLY && readonly_mode) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003550 status_line_bold("\"%s\" File is read only", current_filename);
Denis Vlasenko92758142006-10-03 19:56:34 +00003551 break;
Paul Foxf0305b72006-03-28 14:18:21 +00003552 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003553 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00003554 if (cnt < 0) {
3555 if (cnt == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003556 status_line_bold("Write error: %s", strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00003557 } else if (cnt == (end - 1 - text + 1)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003558 editing = 0;
3559 }
3560 } else {
3561 editing = 0;
3562 }
3563 break;
3564 case '^': // ^- move to first non-blank on line
3565 dot_begin();
3566 dot_skip_over_ws();
3567 break;
3568 case 'b': // b- back a word
3569 case 'e': // e- end of word
3570 if (cmdcnt-- > 1) {
3571 do_cmd(c);
3572 } // repeat cnt
3573 dir = FORWARD;
3574 if (c == 'b')
3575 dir = BACK;
3576 if ((dot + dir) < text || (dot + dir) > end - 1)
3577 break;
3578 dot += dir;
3579 if (isspace(*dot)) {
3580 dot = skip_thing(dot, (c == 'e') ? 2 : 1, dir, S_OVER_WS);
3581 }
3582 if (isalnum(*dot) || *dot == '_') {
3583 dot = skip_thing(dot, 1, dir, S_END_ALNUM);
3584 } else if (ispunct(*dot)) {
3585 dot = skip_thing(dot, 1, dir, S_END_PUNCT);
3586 }
3587 break;
3588 case 'c': // c- change something
3589 case 'd': // d- delete something
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003590#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003591 case 'y': // y- yank something
3592 case 'Y': // Y- Yank a line
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003593#endif
Denis Vlasenkod44c1532008-10-14 12:59:42 +00003594 {
Paul Foxc51fc7b2008-03-06 01:34:23 +00003595 int yf, ml, whole = 0;
Eric Andersen3f980402001-04-04 17:31:15 +00003596 yf = YANKDEL; // assume either "c" or "d"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003597#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003598 if (c == 'y' || c == 'Y')
3599 yf = YANKONLY;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003600#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003601 c1 = 'y';
3602 if (c != 'Y')
3603 c1 = get_one_char(); // get the type of thing to delete
Paul Foxc51fc7b2008-03-06 01:34:23 +00003604 // determine range, and whether it spans lines
3605 ml = find_range(&p, &q, c1);
Eric Andersen3f980402001-04-04 17:31:15 +00003606 if (c1 == 27) { // ESC- user changed mind and wants out
3607 c = c1 = 27; // Escape- do nothing
3608 } else if (strchr("wW", c1)) {
3609 if (c == 'c') {
3610 // don't include trailing WS as part of word
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003611 while (isblank(*q)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003612 if (q <= text || q[-1] == '\n')
3613 break;
3614 q--;
3615 }
3616 }
Paul Foxc51fc7b2008-03-06 01:34:23 +00003617 dot = yank_delete(p, q, ml, yf); // delete word
3618 } else if (strchr("^0bBeEft%$ lh\b\177", c1)) {
3619 // partial line copy text into a register and delete
3620 dot = yank_delete(p, q, ml, yf); // delete word
3621 } else if (strchr("cdykjHL+-{}\r\n", c1)) {
3622 // whole line copy text into a register and delete
3623 dot = yank_delete(p, q, ml, yf); // delete lines
3624 whole = 1;
3625 } else {
3626 // could not recognize object
3627 c = c1 = 27; // error-
3628 ml = 0;
3629 indicate_error(c);
3630 }
3631 if (ml && whole) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003632 if (c == 'c') {
3633 dot = char_insert(dot, '\n');
3634 // on the last line of file don't move to prev line
Paul Foxc51fc7b2008-03-06 01:34:23 +00003635 if (whole && dot != (end-1)) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003636 dot_prev();
3637 }
3638 } else if (c == 'd') {
Eric Andersen3f980402001-04-04 17:31:15 +00003639 dot_begin();
3640 dot_skip_over_ws();
3641 }
Eric Andersen3f980402001-04-04 17:31:15 +00003642 }
3643 if (c1 != 27) {
3644 // if CHANGING, not deleting, start inserting after the delete
3645 if (c == 'c') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003646 strcpy(buf, "Change");
Eric Andersen3f980402001-04-04 17:31:15 +00003647 goto dc_i; // start inserting
3648 }
3649 if (c == 'd') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003650 strcpy(buf, "Delete");
Eric Andersen3f980402001-04-04 17:31:15 +00003651 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003652#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003653 if (c == 'y' || c == 'Y') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003654 strcpy(buf, "Yank");
Eric Andersen3f980402001-04-04 17:31:15 +00003655 }
3656 p = reg[YDreg];
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003657 q = p + strlen(p);
Eric Andersen3f980402001-04-04 17:31:15 +00003658 for (cnt = 0; p <= q; p++) {
3659 if (*p == '\n')
3660 cnt++;
3661 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003662 status_line("%s %d lines (%d chars) using [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003663 buf, cnt, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003664#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003665 end_cmd_q(); // stop adding to q
3666 }
3667 break;
Denis Vlasenkod44c1532008-10-14 12:59:42 +00003668 }
Eric Andersen3f980402001-04-04 17:31:15 +00003669 case 'k': // k- goto prev line, same col
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003670 case KEYCODE_UP: // cursor key Up
Eric Andersen3f980402001-04-04 17:31:15 +00003671 if (cmdcnt-- > 1) {
3672 do_cmd(c);
3673 } // repeat cnt
3674 dot_prev();
3675 dot = move_to_col(dot, ccol + offset); // try stay in same col
3676 break;
3677 case 'r': // r- replace the current char with user input
3678 c1 = get_one_char(); // get the replacement char
3679 if (*dot != '\n') {
3680 *dot = c1;
Denis Vlasenkob1759462008-06-20 20:20:54 +00003681 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003682 }
3683 end_cmd_q(); // stop adding to q
3684 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003685 case 't': // t- move to char prior to next x
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00003686 last_forward_char = get_one_char();
3687 do_cmd(';');
3688 if (*dot == last_forward_char)
3689 dot_left();
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003690 last_forward_char = 0;
Eric Andersen822c3832001-05-07 17:37:43 +00003691 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003692 case 'w': // w- forward a word
3693 if (cmdcnt-- > 1) {
3694 do_cmd(c);
3695 } // repeat cnt
3696 if (isalnum(*dot) || *dot == '_') { // we are on ALNUM
3697 dot = skip_thing(dot, 1, FORWARD, S_END_ALNUM);
3698 } else if (ispunct(*dot)) { // we are on PUNCT
3699 dot = skip_thing(dot, 1, FORWARD, S_END_PUNCT);
3700 }
3701 if (dot < end - 1)
3702 dot++; // move over word
3703 if (isspace(*dot)) {
3704 dot = skip_thing(dot, 2, FORWARD, S_OVER_WS);
3705 }
3706 break;
3707 case 'z': // z-
3708 c1 = get_one_char(); // get the replacement char
3709 cnt = 0;
3710 if (c1 == '.')
3711 cnt = (rows - 2) / 2; // put dot at center
3712 if (c1 == '-')
3713 cnt = rows - 2; // put dot at bottom
3714 screenbegin = begin_line(dot); // start dot at top
3715 dot_scroll(cnt, -1);
3716 break;
3717 case '|': // |- move to column "cmdcnt"
3718 dot = move_to_col(dot, cmdcnt - 1); // try to move to column
3719 break;
3720 case '~': // ~- flip the case of letters a-z -> A-Z
3721 if (cmdcnt-- > 1) {
3722 do_cmd(c);
3723 } // repeat cnt
3724 if (islower(*dot)) {
3725 *dot = toupper(*dot);
Denis Vlasenkob1759462008-06-20 20:20:54 +00003726 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003727 } else if (isupper(*dot)) {
3728 *dot = tolower(*dot);
Denis Vlasenkob1759462008-06-20 20:20:54 +00003729 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003730 }
3731 dot_right();
3732 end_cmd_q(); // stop adding to q
3733 break;
3734 //----- The Cursor and Function Keys -----------------------------
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003735 case KEYCODE_HOME: // Cursor Key Home
Eric Andersen3f980402001-04-04 17:31:15 +00003736 dot_begin();
3737 break;
3738 // The Fn keys could point to do_macro which could translate them
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003739#if 0
3740 case KEYCODE_FUN1: // Function Key F1
3741 case KEYCODE_FUN2: // Function Key F2
3742 case KEYCODE_FUN3: // Function Key F3
3743 case KEYCODE_FUN4: // Function Key F4
3744 case KEYCODE_FUN5: // Function Key F5
3745 case KEYCODE_FUN6: // Function Key F6
3746 case KEYCODE_FUN7: // Function Key F7
3747 case KEYCODE_FUN8: // Function Key F8
3748 case KEYCODE_FUN9: // Function Key F9
3749 case KEYCODE_FUN10: // Function Key F10
3750 case KEYCODE_FUN11: // Function Key F11
3751 case KEYCODE_FUN12: // Function Key F12
Eric Andersen3f980402001-04-04 17:31:15 +00003752 break;
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003753#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003754 }
3755
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003756 dc1:
Eric Andersen3f980402001-04-04 17:31:15 +00003757 // if text[] just became empty, add back an empty line
3758 if (end == text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003759 char_insert(text, '\n'); // start empty buf with dummy line
Eric Andersen3f980402001-04-04 17:31:15 +00003760 dot = text;
3761 }
3762 // it is OK for dot to exactly equal to end, otherwise check dot validity
3763 if (dot != end) {
3764 dot = bound_dot(dot); // make sure "dot" is valid
3765 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003766#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003767 check_context(c); // update the current context
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003768#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003769
3770 if (!isdigit(c))
3771 cmdcnt = 0; // cmd was not a number, reset cmdcnt
3772 cnt = dot - begin_line(dot);
3773 // Try to stay off of the Newline
3774 if (*dot == '\n' && cnt > 0 && cmd_mode == 0)
3775 dot--;
3776}
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003777
Paul Fox35e9c5d2008-03-06 16:26:12 +00003778/* NB! the CRASHME code is unmaintained, and doesn't currently build */
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003779#if ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003780static int totalcmds = 0;
3781static int Mp = 85; // Movement command Probability
3782static int Np = 90; // Non-movement command Probability
3783static int Dp = 96; // Delete command Probability
3784static int Ip = 97; // Insert command Probability
3785static int Yp = 98; // Yank command Probability
3786static int Pp = 99; // Put command Probability
3787static int M = 0, N = 0, I = 0, D = 0, Y = 0, P = 0, U = 0;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003788static const char chars[20] = "\t012345 abcdABCD-=.$";
3789static const char *const words[20] = {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003790 "this", "is", "a", "test",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003791 "broadcast", "the", "emergency", "of",
3792 "system", "quick", "brown", "fox",
3793 "jumped", "over", "lazy", "dogs",
3794 "back", "January", "Febuary", "March"
3795};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003796static const char *const lines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003797 "You should have received a copy of the GNU General Public License\n",
3798 "char c, cm, *cmd, *cmd1;\n",
3799 "generate a command by percentages\n",
3800 "Numbers may be typed as a prefix to some commands.\n",
3801 "Quit, discarding changes!\n",
3802 "Forced write, if permission originally not valid.\n",
3803 "In general, any ex or ed command (such as substitute or delete).\n",
3804 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
3805 "Please get w/ me and I will go over it with you.\n",
3806 "The following is a list of scheduled, committed changes.\n",
3807 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
3808 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
3809 "Any question about transactions please contact Sterling Huxley.\n",
3810 "I will try to get back to you by Friday, December 31.\n",
3811 "This Change will be implemented on Friday.\n",
3812 "Let me know if you have problems accessing this;\n",
3813 "Sterling Huxley recently added you to the access list.\n",
3814 "Would you like to go to lunch?\n",
3815 "The last command will be automatically run.\n",
3816 "This is too much english for a computer geek.\n",
3817};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003818static char *multilines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003819 "You should have received a copy of the GNU General Public License\n",
3820 "char c, cm, *cmd, *cmd1;\n",
3821 "generate a command by percentages\n",
3822 "Numbers may be typed as a prefix to some commands.\n",
3823 "Quit, discarding changes!\n",
3824 "Forced write, if permission originally not valid.\n",
3825 "In general, any ex or ed command (such as substitute or delete).\n",
3826 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
3827 "Please get w/ me and I will go over it with you.\n",
3828 "The following is a list of scheduled, committed changes.\n",
3829 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
3830 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
3831 "Any question about transactions please contact Sterling Huxley.\n",
3832 "I will try to get back to you by Friday, December 31.\n",
3833 "This Change will be implemented on Friday.\n",
3834 "Let me know if you have problems accessing this;\n",
3835 "Sterling Huxley recently added you to the access list.\n",
3836 "Would you like to go to lunch?\n",
3837 "The last command will be automatically run.\n",
3838 "This is too much english for a computer geek.\n",
3839};
3840
3841// create a random command to execute
3842static void crash_dummy()
3843{
3844 static int sleeptime; // how long to pause between commands
3845 char c, cm, *cmd, *cmd1;
3846 int i, cnt, thing, rbi, startrbi, percent;
3847
3848 // "dot" movement commands
3849 cmd1 = " \n\r\002\004\005\006\025\0310^$-+wWeEbBhjklHL";
3850
3851 // is there already a command running?
Denys Vlasenko020f4062009-05-17 16:44:54 +02003852 if (readbuffer[0] > 0)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003853 goto cd1;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003854 cd0:
Denys Vlasenko020f4062009-05-17 16:44:54 +02003855 readbuffer[0] = 'X';
3856 startrbi = rbi = 1;
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003857 sleeptime = 0; // how long to pause between commands
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003858 memset(readbuffer, '\0', sizeof(readbuffer));
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003859 // generate a command by percentages
3860 percent = (int) lrand48() % 100; // get a number from 0-99
3861 if (percent < Mp) { // Movement commands
3862 // available commands
3863 cmd = cmd1;
3864 M++;
3865 } else if (percent < Np) { // non-movement commands
3866 cmd = "mz<>\'\""; // available commands
3867 N++;
3868 } else if (percent < Dp) { // Delete commands
3869 cmd = "dx"; // available commands
3870 D++;
3871 } else if (percent < Ip) { // Inset commands
3872 cmd = "iIaAsrJ"; // available commands
3873 I++;
3874 } else if (percent < Yp) { // Yank commands
3875 cmd = "yY"; // available commands
3876 Y++;
3877 } else if (percent < Pp) { // Put commands
3878 cmd = "pP"; // available commands
3879 P++;
3880 } else {
3881 // We do not know how to handle this command, try again
3882 U++;
3883 goto cd0;
3884 }
3885 // randomly pick one of the available cmds from "cmd[]"
3886 i = (int) lrand48() % strlen(cmd);
3887 cm = cmd[i];
3888 if (strchr(":\024", cm))
3889 goto cd0; // dont allow colon or ctrl-T commands
3890 readbuffer[rbi++] = cm; // put cmd into input buffer
3891
3892 // now we have the command-
3893 // there are 1, 2, and multi char commands
3894 // find out which and generate the rest of command as necessary
3895 if (strchr("dmryz<>\'\"", cm)) { // 2-char commands
3896 cmd1 = " \n\r0$^-+wWeEbBhjklHL";
3897 if (cm == 'm' || cm == '\'' || cm == '\"') { // pick a reg[]
3898 cmd1 = "abcdefghijklmnopqrstuvwxyz";
3899 }
3900 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
3901 c = cmd1[thing];
3902 readbuffer[rbi++] = c; // add movement to input buffer
3903 }
3904 if (strchr("iIaAsc", cm)) { // multi-char commands
3905 if (cm == 'c') {
3906 // change some thing
3907 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
3908 c = cmd1[thing];
3909 readbuffer[rbi++] = c; // add movement to input buffer
3910 }
3911 thing = (int) lrand48() % 4; // what thing to insert
3912 cnt = (int) lrand48() % 10; // how many to insert
3913 for (i = 0; i < cnt; i++) {
3914 if (thing == 0) { // insert chars
3915 readbuffer[rbi++] = chars[((int) lrand48() % strlen(chars))];
3916 } else if (thing == 1) { // insert words
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003917 strcat(readbuffer, words[(int) lrand48() % 20]);
3918 strcat(readbuffer, " ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003919 sleeptime = 0; // how fast to type
3920 } else if (thing == 2) { // insert lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003921 strcat(readbuffer, lines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003922 sleeptime = 0; // how fast to type
3923 } else { // insert multi-lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003924 strcat(readbuffer, multilines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003925 sleeptime = 0; // how fast to type
3926 }
3927 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003928 strcat(readbuffer, "\033");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003929 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02003930 readbuffer[0] = strlen(readbuffer + 1);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003931 cd1:
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003932 totalcmds++;
3933 if (sleeptime > 0)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003934 mysleep(sleeptime); // sleep 1/100 sec
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003935}
3936
3937// test to see if there are any errors
3938static void crash_test()
3939{
3940 static time_t oldtim;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003941
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003942 time_t tim;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003943 char d[2], msg[80];
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003944
3945 msg[0] = '\0';
3946 if (end < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003947 strcat(msg, "end<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003948 }
3949 if (end > textend) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003950 strcat(msg, "end>textend ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003951 }
3952 if (dot < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003953 strcat(msg, "dot<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003954 }
3955 if (dot > end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003956 strcat(msg, "dot>end ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003957 }
3958 if (screenbegin < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003959 strcat(msg, "screenbegin<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003960 }
3961 if (screenbegin > end - 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003962 strcat(msg, "screenbegin>end-1 ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003963 }
3964
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003965 if (msg[0]) {
Glenn L McGrath7127b582002-12-03 21:48:15 +00003966 printf("\n\n%d: \'%c\' %s\n\n\n%s[Hit return to continue]%s",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003967 totalcmds, last_input_char, msg, SOs, SOn);
3968 fflush(stdout);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00003969 while (safe_read(STDIN_FILENO, d, 1) > 0) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003970 if (d[0] == '\n' || d[0] == '\r')
3971 break;
3972 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003973 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003974 tim = time(NULL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003975 if (tim >= (oldtim + 3)) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003976 sprintf(status_buffer,
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003977 "Tot=%d: M=%d N=%d I=%d D=%d Y=%d P=%d U=%d size=%d",
3978 totalcmds, M, N, I, D, Y, P, U, end - text + 1);
3979 oldtim = tim;
3980 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003981}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003982#endif