blob: 58c6f5a0595bb8a7c993a68d0f5619f176c6fcee [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
Denys Vlasenkoc2704542009-11-20 19:14:19 +010033//FIXME: this does not work properly for Unicode anyway
34# define Isprint(c) (isprint)(c)
Glenn L McGrath09adaca2002-12-02 21:18:10 +000035#else
Denys Vlasenkoc2704542009-11-20 19:14:19 +010036# define Isprint(c) isprint_asciionly(c)
Glenn L McGrath09adaca2002-12-02 21:18:10 +000037#endif
38
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +000039#else
40
41/* 0x9b is Meta-ESC */
42#if ENABLE_FEATURE_VI_8BIT
43#define Isprint(c) ((unsigned char)(c) >= ' ' && (c) != 0x7f && (unsigned char)(c) != 0x9b)
44#else
45#define Isprint(c) ((unsigned char)(c) >= ' ' && (unsigned char)(c) < 0x7f)
46#endif
47
48#endif
49
50
Denis Vlasenkoe8a07882007-06-10 15:08:44 +000051enum {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +000052 MAX_TABSTOP = 32, // sanity limit
Denis Vlasenko88adfcd2007-12-22 15:40:13 +000053 // User input len. Need not be extra big.
54 // Lines in file being edited *can* be bigger than this.
55 MAX_INPUT_LEN = 128,
56 // Sanity limits. We have only one buffer of this size.
57 MAX_SCR_COLS = CONFIG_FEATURE_VI_MAX_LEN,
58 MAX_SCR_ROWS = CONFIG_FEATURE_VI_MAX_LEN,
Denis Vlasenkoe8a07882007-06-10 15:08:44 +000059};
Eric Andersen3f980402001-04-04 17:31:15 +000060
Glenn L McGrath09adaca2002-12-02 21:18:10 +000061/* vt102 typical ESC sequence */
62/* terminal standout start/normal ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000063static const char SOs[] ALIGN1 = "\033[7m";
64static const char SOn[] ALIGN1 = "\033[0m";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000065/* terminal bell sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000066static const char bell[] ALIGN1 = "\007";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000067/* Clear-end-of-line and Clear-end-of-screen ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000068static const char Ceol[] ALIGN1 = "\033[0K";
69static const char Ceos[] ALIGN1 = "\033[0J";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000070/* Cursor motion arbitrary destination ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000071static const char CMrc[] ALIGN1 = "\033[%d;%dH";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000072/* Cursor motion up and down ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000073static const char CMup[] ALIGN1 = "\033[A";
74static const char CMdown[] ALIGN1 = "\n";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000075
Denis Vlasenkoded6ad32008-10-14 12:26:30 +000076#if ENABLE_FEATURE_VI_DOT_CMD || ENABLE_FEATURE_VI_YANKMARK
77// cmds modifying text[]
78// vda: removed "aAiIs" as they switch us into insert mode
79// and remembering input for replay after them makes no sense
80static const char modifying_cmds[] = "cCdDJoOpPrRxX<>~";
81#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +000082
Rob Landleybc68cd12006-03-10 19:22:06 +000083enum {
84 YANKONLY = FALSE,
85 YANKDEL = TRUE,
86 FORWARD = 1, // code depends on "1" for array index
87 BACK = -1, // code depends on "-1" for array index
88 LIMITED = 0, // how much of text[] in char_search
89 FULL = 1, // how much of text[] in char_search
Eric Andersen3f980402001-04-04 17:31:15 +000090
Rob Landleybc68cd12006-03-10 19:22:06 +000091 S_BEFORE_WS = 1, // used in skip_thing() for moving "dot"
92 S_TO_WS = 2, // used in skip_thing() for moving "dot"
93 S_OVER_WS = 3, // used in skip_thing() for moving "dot"
94 S_END_PUNCT = 4, // used in skip_thing() for moving "dot"
Denis Vlasenko8e858e22007-03-07 09:35:43 +000095 S_END_ALNUM = 5, // used in skip_thing() for moving "dot"
Rob Landleybc68cd12006-03-10 19:22:06 +000096};
Eric Andersen3f980402001-04-04 17:31:15 +000097
Denis Vlasenkob1759462008-06-20 20:20:54 +000098
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +000099/* vi.c expects chars to be unsigned. */
100/* busybox build system provides that, but it's better */
101/* to audit and fix the source */
Eric Andersen3f980402001-04-04 17:31:15 +0000102
Denis Vlasenkob1759462008-06-20 20:20:54 +0000103struct globals {
104 /* many references - keep near the top of globals */
105 char *text, *end; // pointers to the user data in memory
106 char *dot; // where all the action takes place
107 int text_size; // size of the allocated buffer
108
109 /* the rest */
110 smallint vi_setops;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000111#define VI_AUTOINDENT 1
112#define VI_SHOWMATCH 2
113#define VI_IGNORECASE 4
114#define VI_ERR_METHOD 8
115#define autoindent (vi_setops & VI_AUTOINDENT)
116#define showmatch (vi_setops & VI_SHOWMATCH )
117#define ignorecase (vi_setops & VI_IGNORECASE)
118/* indicate error with beep or flash */
119#define err_method (vi_setops & VI_ERR_METHOD)
120
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000121#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkob1759462008-06-20 20:20:54 +0000122 smallint readonly_mode;
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +0000123#define SET_READONLY_FILE(flags) ((flags) |= 0x01)
124#define SET_READONLY_MODE(flags) ((flags) |= 0x02)
125#define UNSET_READONLY_FILE(flags) ((flags) &= 0xfe)
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000126#else
Denis Vlasenkob1759462008-06-20 20:20:54 +0000127#define SET_READONLY_FILE(flags) ((void)0)
128#define SET_READONLY_MODE(flags) ((void)0)
129#define UNSET_READONLY_FILE(flags) ((void)0)
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000130#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000131
Denis Vlasenkob1759462008-06-20 20:20:54 +0000132 smallint editing; // >0 while we are editing a file
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000133 // [code audit says "can be 0, 1 or 2 only"]
Denis Vlasenkob1759462008-06-20 20:20:54 +0000134 smallint cmd_mode; // 0=command 1=insert 2=replace
135 int file_modified; // buffer contents changed (counter, not flag!)
Denis Vlasenko30cfdf92008-09-21 15:29:29 +0000136 int last_file_modified; // = -1;
Denis Vlasenkob1759462008-06-20 20:20:54 +0000137 int fn_start; // index of first cmd line file name
138 int save_argc; // how many file names on cmd line
139 int cmdcnt; // repetition count
140 unsigned rows, columns; // the terminal screen is this size
141 int crow, ccol; // cursor is on Crow x Ccol
142 int offset; // chars scrolled off the screen to the left
143 int have_status_msg; // is default edit status needed?
144 // [don't make smallint!]
145 int last_status_cksum; // hash of current status line
146 char *current_filename;
147 char *screenbegin; // index into text[], of top line on the screen
148 char *screen; // pointer to the virtual screen buffer
149 int screensize; // and its size
150 int tabstop;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000151 int last_forward_char; // last char searched for with 'f' (int because of Unicode)
Denis Vlasenkob1759462008-06-20 20:20:54 +0000152 char erase_char; // the users erase character
153 char last_input_char; // last char read from user
Denis Vlasenkob1759462008-06-20 20:20:54 +0000154
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000155#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkob1759462008-06-20 20:20:54 +0000156 smallint adding2q; // are we currently adding user input to q
157 int lmc_len; // length of last_modifying_cmd
158 char *ioq, *ioq_start; // pointer to string for get_one_char to "read"
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000159#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000160#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Denis Vlasenkob1759462008-06-20 20:20:54 +0000161 int last_row; // where the cursor was last moved to
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000162#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000163#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkob1759462008-06-20 20:20:54 +0000164 int my_pid;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000165#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000166#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkob1759462008-06-20 20:20:54 +0000167 char *last_search_pattern; // last pattern from a '/' or '?' search
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000168#endif
Denis Vlasenko0112ff52008-10-25 23:23:00 +0000169
Denis Vlasenkob1759462008-06-20 20:20:54 +0000170 /* former statics */
171#if ENABLE_FEATURE_VI_YANKMARK
172 char *edit_file__cur_line;
173#endif
174 int refresh__old_offset;
175 int format_edit_status__tot;
Eric Andersen3f980402001-04-04 17:31:15 +0000176
Denis Vlasenkob1759462008-06-20 20:20:54 +0000177 /* a few references only */
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000178#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000179 int YDreg, Ureg; // default delete register and orig line for "U"
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000180 char *reg[28]; // named register a-z, "D", and "U" 0-25,26,27
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000181 char *mark[28]; // user marks points somewhere in text[]- a-z and previous context ''
182 char *context_start, *context_end;
183#endif
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000184#if ENABLE_FEATURE_VI_USE_SIGNALS
Denis Vlasenkob1759462008-06-20 20:20:54 +0000185 sigjmp_buf restart; // catch_sig()
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000186#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000187 struct termios term_orig, term_vi; // remember what the cooked mode was
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000188#if ENABLE_FEATURE_VI_COLON
189 char *initial_cmds[3]; // currently 2 entries, NULL terminated
190#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000191 // Should be just enough to hold a key sequence,
Denis Vlasenko25497c12008-10-14 10:25:05 +0000192 // but CRASHME mode uses it as generated command buffer too
193#if ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko1dfeeeb2008-10-18 19:04:37 +0000194 char readbuffer[128];
Denis Vlasenko25497c12008-10-14 10:25:05 +0000195#else
Denis Vlasenko5f6aaf32008-10-25 23:27:29 +0000196 char readbuffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko25497c12008-10-14 10:25:05 +0000197#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000198#define STATUS_BUFFER_LEN 200
199 char status_buffer[STATUS_BUFFER_LEN]; // messages to the user
200#if ENABLE_FEATURE_VI_DOT_CMD
201 char last_modifying_cmd[MAX_INPUT_LEN]; // last modifying cmd for "."
202#endif
203 char get_input_line__buf[MAX_INPUT_LEN]; /* former static */
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000204
205 char scr_out_buf[MAX_SCR_COLS + MAX_TABSTOP * 2];
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000206};
207#define G (*ptr_to_globals)
208#define text (G.text )
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000209#define text_size (G.text_size )
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000210#define end (G.end )
211#define dot (G.dot )
212#define reg (G.reg )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000213
214#define vi_setops (G.vi_setops )
215#define editing (G.editing )
216#define cmd_mode (G.cmd_mode )
217#define file_modified (G.file_modified )
218#define last_file_modified (G.last_file_modified )
219#define fn_start (G.fn_start )
220#define save_argc (G.save_argc )
221#define cmdcnt (G.cmdcnt )
222#define rows (G.rows )
223#define columns (G.columns )
224#define crow (G.crow )
225#define ccol (G.ccol )
226#define offset (G.offset )
227#define status_buffer (G.status_buffer )
228#define have_status_msg (G.have_status_msg )
229#define last_status_cksum (G.last_status_cksum )
230#define current_filename (G.current_filename )
231#define screen (G.screen )
232#define screensize (G.screensize )
233#define screenbegin (G.screenbegin )
234#define tabstop (G.tabstop )
Denis Vlasenko0112ff52008-10-25 23:23:00 +0000235#define last_forward_char (G.last_forward_char )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000236#define erase_char (G.erase_char )
237#define last_input_char (G.last_input_char )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000238#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkob1759462008-06-20 20:20:54 +0000239#define readonly_mode (G.readonly_mode )
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000240#else
241#define readonly_mode 0
242#endif
Denis Vlasenkob1759462008-06-20 20:20:54 +0000243#define adding2q (G.adding2q )
244#define lmc_len (G.lmc_len )
245#define ioq (G.ioq )
246#define ioq_start (G.ioq_start )
247#define last_row (G.last_row )
248#define my_pid (G.my_pid )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000249#define last_search_pattern (G.last_search_pattern)
Denis Vlasenko2a210e52008-06-22 13:20:42 +0000250
Denis Vlasenkob1759462008-06-20 20:20:54 +0000251#define edit_file__cur_line (G.edit_file__cur_line)
252#define refresh__old_offset (G.refresh__old_offset)
253#define format_edit_status__tot (G.format_edit_status__tot)
254
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000255#define YDreg (G.YDreg )
256#define Ureg (G.Ureg )
257#define mark (G.mark )
258#define context_start (G.context_start )
259#define context_end (G.context_end )
260#define restart (G.restart )
261#define term_orig (G.term_orig )
262#define term_vi (G.term_vi )
263#define initial_cmds (G.initial_cmds )
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000264#define readbuffer (G.readbuffer )
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000265#define scr_out_buf (G.scr_out_buf )
Denis Vlasenkob1759462008-06-20 20:20:54 +0000266#define last_modifying_cmd (G.last_modifying_cmd )
267#define get_input_line__buf (G.get_input_line__buf)
268
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000269#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000270 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenkob1759462008-06-20 20:20:54 +0000271 last_file_modified = -1; \
Denis Vlasenko31d58e52008-10-29 13:16:28 +0000272 /* "" but has space for 2 chars: */ \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000273 IF_FEATURE_VI_SEARCH(last_search_pattern = xzalloc(2);) \
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000274} while (0)
Eric Andersen3f980402001-04-04 17:31:15 +0000275
Denis Vlasenkob1759462008-06-20 20:20:54 +0000276
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000277static int init_text_buffer(char *); // init from file or create new
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000278static void edit_file(char *); // edit one file
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000279static void do_cmd(int); // execute a command
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000280static int next_tabstop(int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000281static void sync_cursor(char *, int *, int *); // synchronize the screen cursor to dot
282static char *begin_line(char *); // return pointer to cur line B-o-l
283static char *end_line(char *); // return pointer to cur line E-o-l
284static char *prev_line(char *); // return pointer to prev line B-o-l
285static char *next_line(char *); // return pointer to next line B-o-l
286static char *end_screen(void); // get pointer to last char on screen
287static int count_lines(char *, char *); // count line from start to stop
288static char *find_line(int); // find begining of line #li
289static char *move_to_col(char *, int); // move "p" to column l
Eric Andersen3f980402001-04-04 17:31:15 +0000290static void dot_left(void); // move dot left- dont leave line
291static void dot_right(void); // move dot right- dont leave line
292static void dot_begin(void); // move dot to B-o-l
293static void dot_end(void); // move dot to E-o-l
294static void dot_next(void); // move dot to next line B-o-l
295static void dot_prev(void); // move dot to prev line B-o-l
296static void dot_scroll(int, int); // move the screen up or down
297static void dot_skip_over_ws(void); // move dot pat WS
298static void dot_delete(void); // delete the char at 'dot'
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000299static char *bound_dot(char *); // make sure text[0] <= P < "end"
300static char *new_screen(int, int); // malloc virtual screen memory
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000301static char *char_insert(char *, char); // insert the char c at 'p'
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000302// might reallocate text[]! use p += stupid_insert(p, ...),
303// and be careful to not use pointers into potentially freed text[]!
304static uintptr_t stupid_insert(char *, char); // stupidly insert the char c at 'p'
Paul Foxc51fc7b2008-03-06 01:34:23 +0000305static int find_range(char **, char **, char); // return pointers for an object
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000306static int st_test(char *, int, int, char *); // helper for skip_thing()
307static char *skip_thing(char *, int, int, int); // skip some object
308static char *find_pair(char *, char); // find matching pair () [] {}
309static char *text_hole_delete(char *, char *); // at "p", delete a 'size' byte hole
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000310// might reallocate text[]! use p += text_hole_make(p, ...),
311// and be careful to not use pointers into potentially freed text[]!
312static uintptr_t text_hole_make(char *, int); // at "p", make a 'size' byte hole
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000313static char *yank_delete(char *, char *, int, int); // yank text[] into register then delete
Eric Andersen3f980402001-04-04 17:31:15 +0000314static void show_help(void); // display some help info
Eric Andersen3f980402001-04-04 17:31:15 +0000315static void rawmode(void); // set "raw" mode on tty
316static void cookmode(void); // return to "cooked" mode on tty
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000317// sleep for 'h' 1/100 seconds, return 1/0 if stdin is (ready for read)/(not ready)
318static int mysleep(int);
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000319static int readit(void); // read (maybe cursor) key from stdin
320static int get_one_char(void); // read 1 char from stdin
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000321static int file_size(const char *); // what is the byte size of "fn"
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000322#if !ENABLE_FEATURE_VI_READONLY
323#define file_insert(fn, p, update_ro_status) file_insert(fn, p)
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000324#endif
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000325// file_insert might reallocate text[]!
326static int file_insert(const char *, char *, int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000327static int file_write(char *, char *, char *);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +0000328#if !ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
329#define place_cursor(a, b, optimize) place_cursor(a, b)
330#endif
Eric Andersen822c3832001-05-07 17:37:43 +0000331static void place_cursor(int, int, int);
Eric Andersenbff7a602001-11-17 07:15:43 +0000332static void screen_erase(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000333static void clear_to_eol(void);
334static void clear_to_eos(void);
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000335static void go_bottom_and_clear_to_eol(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000336static void standout_start(void); // send "start reverse video" sequence
337static void standout_end(void); // send "end reverse video" sequence
338static void flash(int); // flash the terminal screen
Eric Andersen3f980402001-04-04 17:31:15 +0000339static void show_status_line(void); // put a message on the bottom line
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000340static void status_line(const char *, ...); // print to status buf
341static void status_line_bold(const char *, ...);
342static void not_implemented(const char *); // display "Not implemented" message
Paul Fox8552aec2005-09-16 12:20:05 +0000343static int format_edit_status(void); // format file status on status line
Eric Andersen3f980402001-04-04 17:31:15 +0000344static void redraw(int); // force a full screen refresh
Denis Vlasenko68404f12008-03-17 09:00:54 +0000345static char* format_line(char* /*, int*/);
Eric Andersen3f980402001-04-04 17:31:15 +0000346static void refresh(int); // update the terminal from screen[]
347
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000348static void Indicate_Error(void); // use flash or beep to indicate error
349#define indicate_error(c) Indicate_Error()
Paul Fox90372ed2005-10-09 14:26:26 +0000350static void Hit_Return(void);
351
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000352#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000353static char *char_search(char *, const char *, int, int); // search for pattern starting at p
354static int mycmp(const char *, const char *, int); // string cmp based in "ignorecase"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000355#endif
356#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000357static char *get_one_address(char *, int *); // get colon addr, if present
358static char *get_address(char *, int *, int *); // get two colon addrs, if present
359static void colon(char *); // execute the "colon" mode cmds
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000360#endif
361#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000362static void winch_sig(int); // catch window size changes
363static void suspend_sig(int); // catch ctrl-Z
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000364static void catch_sig(int); // catch ctrl-C and alarm time-outs
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000365#endif
366#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000367static void start_new_cmd_q(char); // new queue for command
Eric Andersenbff7a602001-11-17 07:15:43 +0000368static void end_cmd_q(void); // stop saving input chars
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000369#else
370#define end_cmd_q() ((void)0)
371#endif
372#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000373static void showmatching(char *); // show the matching pair () [] {}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000374#endif
375#if ENABLE_FEATURE_VI_YANKMARK || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000376// might reallocate text[]! use p += string_insert(p, ...),
377// and be careful to not use pointers into potentially freed text[]!
378static uintptr_t string_insert(char *, const char *); // insert the string at 'p'
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000379#endif
380#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000381static char *text_yank(char *, char *, int); // save copy of "p" into a register
382static char what_reg(void); // what is letter of current YDreg
383static void check_context(char); // remember context for '' command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000384#endif
385#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000386static void crash_dummy();
387static void crash_test();
388static int crashme = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000389#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000390
391
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000392static void write1(const char *out)
393{
394 fputs(out, stdout);
395}
396
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000397int vi_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +0000398int vi_main(int argc, char **argv)
Eric Andersen3f980402001-04-04 17:31:15 +0000399{
Eric Andersend402edf2001-04-04 19:29:48 +0000400 int c;
Denis Vlasenkob1759462008-06-20 20:20:54 +0000401
402 INIT_G();
Eric Andersen3f980402001-04-04 17:31:15 +0000403
Denis Vlasenkocd5c7862007-05-17 16:37:22 +0000404#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000405 my_pid = getpid();
406#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000407#if ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000408 srand((long) my_pid);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000409#endif
Denis Vlasenko2414a962007-07-18 22:03:40 +0000410#ifdef NO_SUCH_APPLET_YET
411 /* If we aren't "vi", we are "view" */
412 if (ENABLE_FEATURE_VI_READONLY && applet_name[2]) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000413 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000414 }
Denis Vlasenko2414a962007-07-18 22:03:40 +0000415#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000416
Bernhard Reutner-Fischer73f56bb2007-09-22 21:18:46 +0000417 vi_setops = VI_AUTOINDENT | VI_SHOWMATCH | VI_IGNORECASE;
Denis Vlasenkof9234132007-03-21 00:03:42 +0000418 // 1- process $HOME/.exrc file (not inplemented yet)
Eric Andersen3f980402001-04-04 17:31:15 +0000419 // 2- process EXINIT variable from environment
420 // 3- process command line args
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000421#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000422 {
423 char *p = getenv("EXINIT");
424 if (p && *p)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000425 initial_cmds[0] = xstrndup(p, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000426 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000427#endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000428 while ((c = getopt(argc, argv, "hCRH" IF_FEATURE_VI_COLON("c:"))) != -1) {
Eric Andersen3f980402001-04-04 17:31:15 +0000429 switch (c) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000430#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000431 case 'C':
432 crashme = 1;
433 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000434#endif
435#if ENABLE_FEATURE_VI_READONLY
Eric Andersen3f980402001-04-04 17:31:15 +0000436 case 'R': // Read-only flag
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000437 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000438 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000439#endif
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000440#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000441 case 'c': // cmd line vi command
442 if (*optarg)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000443 initial_cmds[initial_cmds[0] != 0] = xstrndup(optarg, MAX_INPUT_LEN);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000444 break;
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000445#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000446 case 'H':
Eric Andersen3f980402001-04-04 17:31:15 +0000447 show_help();
Paul Fox35e9c5d2008-03-06 16:26:12 +0000448 /* fall through */
Paul Fox35e9c5d2008-03-06 16:26:12 +0000449 default:
Denis Vlasenkoc6938402008-03-24 02:18:03 +0000450 bb_show_usage();
Eric Andersendd8500b2001-07-02 18:06:14 +0000451 return 1;
Eric Andersen3f980402001-04-04 17:31:15 +0000452 }
453 }
454
455 // The argv array can be used by the ":next" and ":rewind" commands
456 // save optind.
457 fn_start = optind; // remember first file name for :next and :rew
458 save_argc = argc;
459
460 //----- This is the main file handling loop --------------
461 if (optind >= argc) {
Eric Andersen3f980402001-04-04 17:31:15 +0000462 edit_file(0);
463 } else {
464 for (; optind < argc; optind++) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000465 edit_file(argv[optind]);
Eric Andersen3f980402001-04-04 17:31:15 +0000466 }
467 }
468 //-----------------------------------------------------------
469
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000470 return 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000471}
472
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000473/* read text from file or create an empty buf */
474/* will also update current_filename */
475static int init_text_buffer(char *fn)
476{
477 int rc;
478 int size = file_size(fn); // file size. -1 means does not exist.
479
480 /* allocate/reallocate text buffer */
481 free(text);
Denis Vlasenkob1759462008-06-20 20:20:54 +0000482 text_size = size + 10240;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000483 screenbegin = dot = end = text = xzalloc(text_size);
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000484
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000485 if (fn != current_filename) {
486 free(current_filename);
487 current_filename = xstrdup(fn);
488 }
489 if (size < 0) {
490 // file dont exist. Start empty buf with dummy line
491 char_insert(text, '\n');
492 rc = 0;
493 } else {
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000494 rc = file_insert(fn, text, 1);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000495 }
496 file_modified = 0;
497 last_file_modified = -1;
498#if ENABLE_FEATURE_VI_YANKMARK
499 /* init the marks. */
500 memset(mark, 0, sizeof(mark));
501#endif
502 return rc;
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000503}
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000504
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000505static void edit_file(char *fn)
Eric Andersen3f980402001-04-04 17:31:15 +0000506{
Denis Vlasenkob1759462008-06-20 20:20:54 +0000507#if ENABLE_FEATURE_VI_YANKMARK
508#define cur_line edit_file__cur_line
509#endif
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000510 int c;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000511 int size;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000512#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000513 int sig;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000514#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000515
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000516 editing = 1; // 0 = exit, 1 = one file, 2 = multiple files
Eric Andersen3f980402001-04-04 17:31:15 +0000517 rawmode();
518 rows = 24;
519 columns = 80;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000520 size = 0;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000521 if (ENABLE_FEATURE_VI_WIN_RESIZE) {
Rob Landleye5e1a102006-06-21 01:15:36 +0000522 get_terminal_width_height(0, &columns, &rows);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000523 if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS;
524 if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS;
525 }
Eric Andersen3f980402001-04-04 17:31:15 +0000526 new_screen(rows, columns); // get memory for virtual screen
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000527 init_text_buffer(fn);
Eric Andersen3f980402001-04-04 17:31:15 +0000528
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000529#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000530 YDreg = 26; // default Yank/Delete reg
531 Ureg = 27; // hold orig line for "U" cmd
Eric Andersen3f980402001-04-04 17:31:15 +0000532 mark[26] = mark[27] = text; // init "previous context"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000533#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000534
Eric Andersen3f980402001-04-04 17:31:15 +0000535 last_forward_char = last_input_char = '\0';
536 crow = 0;
537 ccol = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000538
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000539#if ENABLE_FEATURE_VI_USE_SIGNALS
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000540 catch_sig(0);
Eric Andersen3f980402001-04-04 17:31:15 +0000541 signal(SIGWINCH, winch_sig);
542 signal(SIGTSTP, suspend_sig);
Paul Fox2724fa92008-03-17 15:28:07 +0000543 sig = sigsetjmp(restart, 1);
Eric Andersen3f980402001-04-04 17:31:15 +0000544 if (sig != 0) {
Eric Andersen1c0d3112001-04-16 15:46:44 +0000545 screenbegin = dot = text;
Eric Andersen3f980402001-04-04 17:31:15 +0000546 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000547#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000548
Eric Andersen3f980402001-04-04 17:31:15 +0000549 cmd_mode = 0; // 0=command 1=insert 2='R'eplace
550 cmdcnt = 0;
551 tabstop = 8;
552 offset = 0; // no horizontal offset
553 c = '\0';
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000554#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000555 free(ioq_start);
Paul Foxc51fc7b2008-03-06 01:34:23 +0000556 ioq = ioq_start = NULL;
557 lmc_len = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000558 adding2q = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000559#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000560
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000561#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000562 {
563 char *p, *q;
564 int n = 0;
565
566 while ((p = initial_cmds[n])) {
567 do {
568 q = p;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000569 p = strchr(q, '\n');
Denis Vlasenkof9234132007-03-21 00:03:42 +0000570 if (p)
Denis Vlasenko51742f42007-04-12 00:32:05 +0000571 while (*p == '\n')
Denis Vlasenkof9234132007-03-21 00:03:42 +0000572 *p++ = '\0';
573 if (*q)
574 colon(q);
575 } while (p);
576 free(initial_cmds[n]);
577 initial_cmds[n] = NULL;
578 n++;
579 }
580 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000581#endif
Paul Fox35e9c5d2008-03-06 16:26:12 +0000582 redraw(FALSE); // dont force every col re-draw
Eric Andersen3f980402001-04-04 17:31:15 +0000583 //------This is the main Vi cmd handling loop -----------------------
584 while (editing > 0) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000585#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000586 if (crashme > 0) {
587 if ((end - text) > 1) {
588 crash_dummy(); // generate a random command
589 } else {
590 crashme = 0;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000591 string_insert(text, "\n\n##### Ran out of text to work on. #####\n\n"); // insert the string
592 dot = text;
Eric Andersen3f980402001-04-04 17:31:15 +0000593 refresh(FALSE);
594 }
595 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000596#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000597 last_input_char = c = get_one_char(); // get a cmd from user
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000598#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000599 // save a copy of the current line- for the 'U" command
600 if (begin_line(dot) != cur_line) {
601 cur_line = begin_line(dot);
602 text_yank(begin_line(dot), end_line(dot), Ureg);
603 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000604#endif
605#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +0000606 // These are commands that change text[].
607 // Remember the input for the "." command
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000608 if (!adding2q && ioq_start == NULL
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +0000609 && cmd_mode == 0 // command mode
610 && c > '\0' // exclude NUL and non-ASCII chars
611 && c < 0x7f // (Unicode and such)
612 && strchr(modifying_cmds, c)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000613 ) {
Eric Andersen3f980402001-04-04 17:31:15 +0000614 start_new_cmd_q(c);
615 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000616#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000617 do_cmd(c); // execute the user command
Denis Vlasenko8ef801b2008-10-16 09:46:07 +0000618
Eric Andersen3f980402001-04-04 17:31:15 +0000619 // poll to see if there is input already waiting. if we are
620 // not able to display output fast enough to keep up, skip
621 // the display update until we catch up with input.
Denys Vlasenko020f4062009-05-17 16:44:54 +0200622 if (!readbuffer[0] && mysleep(0) == 0) {
Denis Vlasenko8ef801b2008-10-16 09:46:07 +0000623 // no input pending - so update output
Eric Andersen3f980402001-04-04 17:31:15 +0000624 refresh(FALSE);
625 show_status_line();
626 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000627#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000628 if (crashme > 0)
629 crash_test(); // test editor variables
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000630#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000631 }
632 //-------------------------------------------------------------------
633
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000634 go_bottom_and_clear_to_eol();
Eric Andersen3f980402001-04-04 17:31:15 +0000635 cookmode();
Denis Vlasenkob1759462008-06-20 20:20:54 +0000636#undef cur_line
Eric Andersen3f980402001-04-04 17:31:15 +0000637}
638
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000639//----- The Colon commands -------------------------------------
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000640#if ENABLE_FEATURE_VI_COLON
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000641static char *get_one_address(char *p, int *addr) // get colon addr, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000642{
643 int st;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000644 char *q;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000645 IF_FEATURE_VI_YANKMARK(char c;)
646 IF_FEATURE_VI_SEARCH(char *pat;)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000647
648 *addr = -1; // assume no addr
649 if (*p == '.') { // the current line
650 p++;
651 q = begin_line(dot);
652 *addr = count_lines(text, q);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000653 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000654#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000655 else if (*p == '\'') { // is this a mark addr
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000656 p++;
657 c = tolower(*p);
658 p++;
659 if (c >= 'a' && c <= 'z') {
660 // we have a mark
661 c = c - 'a';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000662 q = mark[(unsigned char) c];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000663 if (q != NULL) { // is mark valid
Denis Vlasenko00d84172008-11-24 07:34:42 +0000664 *addr = count_lines(text, q);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000665 }
666 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000667 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000668#endif
669#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000670 else if (*p == '/') { // a search pattern
671 q = strchrnul(++p, '/');
672 pat = xstrndup(p, q - p); // save copy of pattern
673 p = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000674 if (*p == '/')
675 p++;
676 q = char_search(dot, pat, FORWARD, FULL);
677 if (q != NULL) {
678 *addr = count_lines(text, q);
679 }
680 free(pat);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000681 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000682#endif
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000683 else if (*p == '$') { // the last line in file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000684 p++;
685 q = begin_line(end - 1);
686 *addr = count_lines(text, q);
687 } else if (isdigit(*p)) { // specific line number
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000688 sscanf(p, "%d%n", addr, &st);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000689 p += st;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000690 } else {
Denys Vlasenkob22bbff2009-07-04 16:50:43 +0200691 // unrecognized address - assume -1
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000692 *addr = -1;
693 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000694 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000695}
696
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000697static char *get_address(char *p, int *b, int *e) // get two colon addrs, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000698{
699 //----- get the address' i.e., 1,3 'a,'b -----
700 // get FIRST addr, if present
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000701 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000702 p++; // skip over leading spaces
703 if (*p == '%') { // alias for 1,$
704 p++;
705 *b = 1;
706 *e = count_lines(text, end-1);
707 goto ga0;
708 }
709 p = get_one_address(p, b);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000710 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000711 p++;
Eric Andersenaff114c2004-04-14 17:51:38 +0000712 if (*p == ',') { // is there a address separator
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000713 p++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000714 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000715 p++;
716 // get SECOND addr, if present
717 p = get_one_address(p, e);
718 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000719 ga0:
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000720 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000721 p++; // skip over trailing spaces
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000722 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000723}
724
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000725#if ENABLE_FEATURE_VI_SET && ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000726static void setops(const char *args, const char *opname, int flg_no,
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000727 const char *short_opname, int opt)
728{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000729 const char *a = args + flg_no;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000730 int l = strlen(opname) - 1; /* opname have + ' ' */
731
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200732 // maybe strncmp? we had tons of erroneous strncasecmp's...
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000733 if (strncasecmp(a, opname, l) == 0
734 || strncasecmp(a, short_opname, 2) == 0
735 ) {
736 if (flg_no)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000737 vi_setops &= ~opt;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000738 else
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000739 vi_setops |= opt;
740 }
741}
742#endif
743
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000744// buf must be no longer than MAX_INPUT_LEN!
745static void colon(char *buf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000746{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000747 char c, *orig_buf, *buf1, *q, *r;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000748 char *fn, cmd[MAX_INPUT_LEN], args[MAX_INPUT_LEN];
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000749 int i, l, li, ch, b, e;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000750 int useforce, forced = FALSE;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000751
752 // :3154 // if (-e line 3154) goto it else stay put
753 // :4,33w! foo // write a portion of buffer to file "foo"
754 // :w // write all of buffer to current file
755 // :q // quit
756 // :q! // quit- dont care about modified file
757 // :'a,'z!sort -u // filter block through sort
758 // :'f // goto mark "f"
759 // :'fl // list literal the mark "f" line
760 // :.r bar // read file "bar" into buffer before dot
761 // :/123/,/abc/d // delete lines from "123" line to "abc" line
762 // :/xyz/ // goto the "xyz" line
763 // :s/find/replace/ // substitute pattern "find" with "replace"
764 // :!<cmd> // run <cmd> then return
765 //
Eric Andersen165e8cb2004-07-20 06:44:46 +0000766
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000767 if (!buf[0])
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000768 goto vc1;
769 if (*buf == ':')
770 buf++; // move past the ':'
771
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000772 li = ch = i = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000773 b = e = -1;
774 q = text; // assume 1,$ for the range
775 r = end - 1;
776 li = count_lines(text, end - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000777 fn = current_filename;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000778
779 // look for optional address(es) :. :1 :1,9 :'q,'a :%
780 buf = get_address(buf, &b, &e);
781
782 // remember orig command line
783 orig_buf = buf;
784
785 // get the COMMAND into cmd[]
786 buf1 = cmd;
787 while (*buf != '\0') {
788 if (isspace(*buf))
789 break;
790 *buf1++ = *buf++;
791 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000792 *buf1 = '\0';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000793 // get any ARGuments
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000794 while (isblank(*buf))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000795 buf++;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000796 strcpy(args, buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000797 useforce = FALSE;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000798 buf1 = last_char_is(cmd, '!');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000799 if (buf1) {
800 useforce = TRUE;
801 *buf1 = '\0'; // get rid of !
802 }
803 if (b >= 0) {
804 // if there is only one addr, then the addr
805 // is the line number of the single line the
806 // user wants. So, reset the end
807 // pointer to point at end of the "b" line
808 q = find_line(b); // what line is #b
809 r = end_line(q);
810 li = 1;
811 }
812 if (e >= 0) {
813 // we were given two addrs. change the
814 // end pointer to the addr given by user.
815 r = find_line(e); // what line is #e
816 r = end_line(r);
817 li = e - b + 1;
818 }
819 // ------------ now look for the command ------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000820 i = strlen(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000821 if (i == 0) { // :123CR goto line #123
822 if (b >= 0) {
823 dot = find_line(b); // what line is #b
824 dot_skip_over_ws();
825 }
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000826 }
827#if ENABLE_FEATURE_ALLOW_EXEC
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200828 else if (cmd[0] == '!') { // run a cmd
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000829 int retcode;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000830 // :!ls run the <cmd>
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000831 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000832 cookmode();
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000833 retcode = system(orig_buf + 1); // run the cmd
834 if (retcode)
835 printf("\nshell returned %i\n\n", retcode);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000836 rawmode();
837 Hit_Return(); // let user see results
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000838 }
839#endif
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200840 else if (cmd[0] == '=' && !cmd[1]) { // where is the address
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000841 if (b < 0) { // no addr given- use defaults
842 b = e = count_lines(text, dot);
843 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000844 status_line("%d", b);
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200845 } else if (strncmp(cmd, "delete", i) == 0) { // delete lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000846 if (b < 0) { // no addr given- use defaults
847 q = begin_line(dot); // assume .,. for the range
848 r = end_line(dot);
849 }
850 dot = yank_delete(q, r, 1, YANKDEL); // save, then delete lines
851 dot_skip_over_ws();
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200852 } else if (strncmp(cmd, "edit", i) == 0) { // Edit a file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000853 // don't edit, if the current file has been modified
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000854 if (file_modified && !useforce) {
855 status_line_bold("No write since last change (:edit! overrides)");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000856 goto vc1;
857 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000858 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000859 // the user supplied a file name
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000860 fn = args;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000861 } else if (current_filename && current_filename[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000862 // no user supplied name- use the current filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000863 // fn = current_filename; was set by default
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000864 } else {
865 // no user file name, no current name- punt
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000866 status_line_bold("No current filename");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000867 goto vc1;
868 }
869
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000870 if (init_text_buffer(fn) < 0)
871 goto vc1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000872
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000873#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000874 if (Ureg >= 0 && Ureg < 28 && reg[Ureg] != 0) {
875 free(reg[Ureg]); // free orig line reg- for 'U'
876 reg[Ureg]= 0;
877 }
878 if (YDreg >= 0 && YDreg < 28 && reg[YDreg] != 0) {
879 free(reg[YDreg]); // free default yank/delete register
880 reg[YDreg]= 0;
881 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000882#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000883 // how many lines in text[]?
884 li = count_lines(text, end - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000885 status_line("\"%s\"%s"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000886 IF_FEATURE_VI_READONLY("%s")
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000887 " %dL, %dC", current_filename,
888 (file_size(fn) < 0 ? " [New file]" : ""),
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000889 IF_FEATURE_VI_READONLY(
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000890 ((readonly_mode) ? " [Readonly]" : ""),
891 )
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000892 li, ch);
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200893 } else if (strncmp(cmd, "file", i) == 0) { // what File is this
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000894 if (b != -1 || e != -1) {
Denys Vlasenkoc2704542009-11-20 19:14:19 +0100895 status_line_bold("No address allowed on this command");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000896 goto vc1;
897 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000898 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000899 // user wants a new filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000900 free(current_filename);
901 current_filename = xstrdup(args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000902 } else {
903 // user wants file status info
Paul Fox8552aec2005-09-16 12:20:05 +0000904 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000905 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200906 } else if (strncmp(cmd, "features", i) == 0) { // what features are available
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000907 // print out values of all features
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000908 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000909 cookmode();
910 show_help();
911 rawmode();
912 Hit_Return();
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200913 } else if (strncmp(cmd, "list", i) == 0) { // literal print line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000914 if (b < 0) { // no addr given- use defaults
915 q = begin_line(dot); // assume .,. for the range
916 r = end_line(dot);
917 }
Denis Vlasenko267e16c2008-10-14 10:34:41 +0000918 go_bottom_and_clear_to_eol();
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000919 puts("\r");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000920 for (; q <= r; q++) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000921 int c_is_no_print;
922
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000923 c = *q;
Denis Vlasenko2a51af22007-03-21 22:31:24 +0000924 c_is_no_print = (c & 0x80) && !Isprint(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000925 if (c_is_no_print) {
926 c = '.';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000927 standout_start();
Denis Vlasenkod3c042f2007-12-30 01:59:53 +0000928 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000929 if (c == '\n') {
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000930 write1("$\r");
931 } else if (c < ' ' || c == 127) {
Denis Vlasenko4daad902007-09-27 10:20:47 +0000932 bb_putchar('^');
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000933 if (c == 127)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000934 c = '?';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000935 else
936 c += '@';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000937 }
Denis Vlasenko4daad902007-09-27 10:20:47 +0000938 bb_putchar(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000939 if (c_is_no_print)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000940 standout_end();
941 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000942#if ENABLE_FEATURE_VI_SET
943 vc2:
944#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000945 Hit_Return();
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200946 } else if (strncmp(cmd, "quit", i) == 0 // Quit
947 || strncmp(cmd, "next", i) == 0 // edit next file
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000948 ) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000949 if (useforce) {
950 // force end of argv list
951 if (*cmd == 'q') {
952 optind = save_argc;
953 }
954 editing = 0;
955 goto vc1;
956 }
957 // don't exit if the file been modified
958 if (file_modified) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000959 status_line_bold("No write since last change (:%s! overrides)",
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000960 (*cmd == 'q' ? "quit" : "next"));
961 goto vc1;
962 }
963 // are there other file to edit
964 if (*cmd == 'q' && optind < save_argc - 1) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000965 status_line_bold("%d more file to edit", (save_argc - optind - 1));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000966 goto vc1;
967 }
968 if (*cmd == 'n' && optind >= save_argc - 1) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000969 status_line_bold("No more files to edit");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000970 goto vc1;
971 }
972 editing = 0;
Denys Vlasenko6548edd2009-06-15 12:44:11 +0200973 } else if (strncmp(cmd, "read", i) == 0) { // read file into text[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000974 fn = args;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000975 if (!fn[0]) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000976 status_line_bold("No filename given");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000977 goto vc1;
978 }
979 if (b < 0) { // no addr given- use defaults
980 q = begin_line(dot); // assume "dot"
981 }
982 // read after current line- unless user said ":0r foo"
983 if (b != 0)
984 q = next_line(q);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +0000985 { // dance around potentially-reallocated text[]
986 uintptr_t ofs = q - text;
987 ch = file_insert(fn, q, 0);
988 q = text + ofs;
989 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000990 if (ch < 0)
991 goto vc1; // nothing was inserted
992 // how many lines in text[]?
993 li = count_lines(q, q + ch - 1);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +0000994 status_line("\"%s\""
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000995 IF_FEATURE_VI_READONLY("%s")
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000996 " %dL, %dC", fn,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000997 IF_FEATURE_VI_READONLY((readonly_mode ? " [Readonly]" : ""),)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000998 li, ch);
999 if (ch > 0) {
1000 // if the insert is before "dot" then we need to update
1001 if (q <= dot)
1002 dot += ch;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001003 /*file_modified++; - done by file_insert */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001004 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001005 } else if (strncmp(cmd, "rewind", i) == 0) { // rewind cmd line args
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001006 if (file_modified && !useforce) {
1007 status_line_bold("No write since last change (:rewind! overrides)");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001008 } else {
1009 // reset the filenames to edit
1010 optind = fn_start - 1;
1011 editing = 0;
1012 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001013#if ENABLE_FEATURE_VI_SET
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001014 } else if (strncmp(cmd, "set", i) == 0) { // set or clear features
Denis Vlasenko58875ae2007-03-22 22:22:10 +00001015#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkof9234132007-03-21 00:03:42 +00001016 char *argp;
Denis Vlasenko58875ae2007-03-22 22:22:10 +00001017#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001018 i = 0; // offset into args
Denis Vlasenkof9234132007-03-21 00:03:42 +00001019 // only blank is regarded as args delmiter. What about tab '\t' ?
1020 if (!args[0] || strcasecmp(args, "all") == 0) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001021 // print out values of all options
Denis Vlasenko267e16c2008-10-14 10:34:41 +00001022 go_bottom_and_clear_to_eol();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001023 printf("----------------------------------------\r\n");
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001024#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001025 if (!autoindent)
1026 printf("no");
1027 printf("autoindent ");
1028 if (!err_method)
1029 printf("no");
1030 printf("flash ");
1031 if (!ignorecase)
1032 printf("no");
1033 printf("ignorecase ");
1034 if (!showmatch)
1035 printf("no");
1036 printf("showmatch ");
1037 printf("tabstop=%d ", tabstop);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001038#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001039 printf("\r\n");
1040 goto vc2;
1041 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001042#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001043 argp = args;
Denis Vlasenkoba2fb712007-04-01 09:39:03 +00001044 while (*argp) {
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001045 if (strncmp(argp, "no", 2) == 0)
Denis Vlasenkof9234132007-03-21 00:03:42 +00001046 i = 2; // ":set noautoindent"
1047 setops(argp, "autoindent ", i, "ai", VI_AUTOINDENT);
1048 setops(argp, "flash ", i, "fl", VI_ERR_METHOD);
1049 setops(argp, "ignorecase ", i, "ic", VI_IGNORECASE);
1050 setops(argp, "showmatch ", i, "ic", VI_SHOWMATCH);
1051 /* tabstopXXXX */
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001052 if (strncmp(argp + i, "tabstop=%d ", 7) == 0) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001053 sscanf(strchr(argp + i, '='), "tabstop=%d" + 7, &ch);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00001054 if (ch > 0 && ch <= MAX_TABSTOP)
Denis Vlasenkof9234132007-03-21 00:03:42 +00001055 tabstop = ch;
1056 }
1057 while (*argp && *argp != ' ')
1058 argp++; // skip to arg delimiter (i.e. blank)
1059 while (*argp && *argp == ' ')
1060 argp++; // skip all delimiting blanks
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001061 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001062#endif /* FEATURE_VI_SETOPTS */
1063#endif /* FEATURE_VI_SET */
1064#if ENABLE_FEATURE_VI_SEARCH
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001065 } else if (cmd[0] == 's') { // substitute a pattern with a replacement pattern
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001066 char *ls, *F, *R;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001067 int gflag;
1068
1069 // F points to the "find" pattern
1070 // R points to the "replace" pattern
1071 // replace the cmd line delimiters "/" with NULLs
1072 gflag = 0; // global replace flag
1073 c = orig_buf[1]; // what is the delimiter
1074 F = orig_buf + 2; // start of "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001075 R = strchr(F, c); // middle delimiter
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001076 if (!R)
1077 goto colon_s_fail;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001078 *R++ = '\0'; // terminate "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001079 buf1 = strchr(R, c);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001080 if (!buf1)
1081 goto colon_s_fail;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001082 *buf1++ = '\0'; // terminate "replace"
1083 if (*buf1 == 'g') { // :s/foo/bar/g
1084 buf1++;
1085 gflag++; // turn on gflag
1086 }
1087 q = begin_line(q);
1088 if (b < 0) { // maybe :s/foo/bar/
1089 q = begin_line(dot); // start with cur line
1090 b = count_lines(text, q); // cur line number
1091 }
1092 if (e < 0)
1093 e = b; // maybe :.s/foo/bar/
1094 for (i = b; i <= e; i++) { // so, :20,23 s \0 find \0 replace \0
1095 ls = q; // orig line start
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001096 vc4:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001097 buf1 = char_search(q, F, FORWARD, LIMITED); // search cur line only for "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001098 if (buf1) {
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001099 uintptr_t bias;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001100 // we found the "find" pattern - delete it
1101 text_hole_delete(buf1, buf1 + strlen(F) - 1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001102 // inset the "replace" patern
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001103 bias = string_insert(buf1, R); // insert the string
1104 buf1 += bias;
1105 ls += bias;
1106 /*q += bias; - recalculated anyway */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001107 // check for "global" :s/foo/bar/g
1108 if (gflag == 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001109 if ((buf1 + strlen(R)) < end_line(ls)) {
1110 q = buf1 + strlen(R);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001111 goto vc4; // don't let q move past cur line
1112 }
1113 }
1114 }
1115 q = next_line(ls);
1116 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001117#endif /* FEATURE_VI_SEARCH */
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001118 } else if (strncmp(cmd, "version", i) == 0) { // show software version
Denis Vlasenko33875382008-06-21 20:31:50 +00001119 status_line(BB_VER " " BB_BT);
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001120 } else if (strncmp(cmd, "write", i) == 0 // write text to file
1121 || strncmp(cmd, "wq", i) == 0
1122 || strncmp(cmd, "wn", i) == 0
1123 || (cmd[0] == 'x' && !cmd[1])
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001124 ) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001125 // is there a file name to write to?
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001126 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001127 fn = args;
1128 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001129#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001130 if (readonly_mode && !useforce) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001131 status_line_bold("\"%s\" File is read only", fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001132 goto vc3;
1133 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001134#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001135 // how many lines in text[]?
1136 li = count_lines(q, r);
1137 ch = r - q + 1;
1138 // see if file exists- if not, its just a new file request
1139 if (useforce) {
1140 // if "fn" is not write-able, chmod u+w
1141 // sprintf(syscmd, "chmod u+w %s", fn);
1142 // system(syscmd);
1143 forced = TRUE;
1144 }
1145 l = file_write(fn, q, r);
1146 if (useforce && forced) {
1147 // chmod u-w
1148 // sprintf(syscmd, "chmod u-w %s", fn);
1149 // system(syscmd);
1150 forced = FALSE;
1151 }
Paul Fox61e45db2005-10-09 14:43:22 +00001152 if (l < 0) {
1153 if (l == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001154 status_line_bold("\"%s\" %s", fn, strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00001155 } else {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001156 status_line("\"%s\" %dL, %dC", fn, li, l);
Paul Fox61e45db2005-10-09 14:43:22 +00001157 if (q == text && r == end - 1 && l == ch) {
1158 file_modified = 0;
1159 last_file_modified = -1;
1160 }
Paul Fox9360f422006-03-27 21:51:16 +00001161 if ((cmd[0] == 'x' || cmd[1] == 'q' || cmd[1] == 'n' ||
1162 cmd[0] == 'X' || cmd[1] == 'Q' || cmd[1] == 'N')
1163 && l == ch) {
Paul Fox61e45db2005-10-09 14:43:22 +00001164 editing = 0;
1165 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001166 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001167#if ENABLE_FEATURE_VI_READONLY
1168 vc3:;
1169#endif
1170#if ENABLE_FEATURE_VI_YANKMARK
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001171 } else if (strncmp(cmd, "yank", i) == 0) { // yank lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001172 if (b < 0) { // no addr given- use defaults
1173 q = begin_line(dot); // assume .,. for the range
1174 r = end_line(dot);
1175 }
1176 text_yank(q, r, YDreg);
1177 li = count_lines(q, r);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001178 status_line("Yank %d lines (%d chars) into [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001179 li, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001180#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001181 } else {
1182 // cmd unknown
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001183 not_implemented(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001184 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001185 vc1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001186 dot = bound_dot(dot); // make sure "dot" is valid
1187 return;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001188#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001189 colon_s_fail:
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001190 status_line(":s expression missing delimiters");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001191#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001192}
Paul Fox61e45db2005-10-09 14:43:22 +00001193
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001194#endif /* FEATURE_VI_COLON */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001195
1196static void Hit_Return(void)
1197{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00001198 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001199
Denis Vlasenkof882f082007-12-23 02:36:51 +00001200 standout_start();
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001201 write1("[Hit return to continue]");
Denis Vlasenkof882f082007-12-23 02:36:51 +00001202 standout_end();
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001203 while ((c = get_one_char()) != '\n' && c != '\r')
1204 continue;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001205 redraw(TRUE); // force redraw all
1206}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001207
Denis Vlasenko91afdf82007-07-17 23:22:49 +00001208static int next_tabstop(int col)
1209{
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001210 return col + ((tabstop - 1) - (col % tabstop));
1211}
1212
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001213//----- Synchronize the cursor to Dot --------------------------
Denys Vlasenkoadf922e2009-10-08 14:35:37 +02001214static NOINLINE void sync_cursor(char *d, int *row, int *col)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001215{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001216 char *beg_cur; // begin and end of "d" line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001217 char *tp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001218 int cnt, ro, co;
1219
1220 beg_cur = begin_line(d); // first char of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001221
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001222 if (beg_cur < screenbegin) {
Denis Vlasenkof882f082007-12-23 02:36:51 +00001223 // "d" is before top line on screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001224 // how many lines do we have to move
1225 cnt = count_lines(beg_cur, screenbegin);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001226 sc1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001227 screenbegin = beg_cur;
1228 if (cnt > (rows - 1) / 2) {
1229 // we moved too many lines. put "dot" in middle of screen
1230 for (cnt = 0; cnt < (rows - 1) / 2; cnt++) {
1231 screenbegin = prev_line(screenbegin);
1232 }
1233 }
Denis Vlasenkof882f082007-12-23 02:36:51 +00001234 } else {
1235 char *end_scr; // begin and end of screen
1236 end_scr = end_screen(); // last char of screen
1237 if (beg_cur > end_scr) {
1238 // "d" is after bottom line on screen
1239 // how many lines do we have to move
1240 cnt = count_lines(end_scr, beg_cur);
1241 if (cnt > (rows - 1) / 2)
1242 goto sc1; // too many lines
1243 for (ro = 0; ro < cnt - 1; ro++) {
1244 // move screen begin the same amount
1245 screenbegin = next_line(screenbegin);
1246 // now, move the end of screen
1247 end_scr = next_line(end_scr);
1248 end_scr = end_line(end_scr);
1249 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001250 }
1251 }
1252 // "d" is on screen- find out which row
1253 tp = screenbegin;
1254 for (ro = 0; ro < rows - 1; ro++) { // drive "ro" to correct row
1255 if (tp == beg_cur)
1256 break;
1257 tp = next_line(tp);
1258 }
1259
1260 // find out what col "d" is on
1261 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001262 while (tp < d) { // drive "co" to correct column
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001263 if (*tp == '\n') //vda || *tp == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001264 break;
1265 if (*tp == '\t') {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001266 // handle tabs like real vi
1267 if (d == tp && cmd_mode) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001268 break;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001269 }
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001270 co = next_tabstop(co);
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001271 } else if ((unsigned char)*tp < ' ' || *tp == 0x7f) {
1272 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001273 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001274 co++;
1275 tp++;
1276 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001277
1278 // "co" is the column where "dot" is.
1279 // The screen has "columns" columns.
1280 // The currently displayed columns are 0+offset -- columns+ofset
1281 // |-------------------------------------------------------------|
1282 // ^ ^ ^
1283 // offset | |------- columns ----------------|
1284 //
1285 // If "co" is already in this range then we do not have to adjust offset
1286 // but, we do have to subtract the "offset" bias from "co".
1287 // If "co" is outside this range then we have to change "offset".
1288 // If the first char of a line is a tab the cursor will try to stay
1289 // in column 7, but we have to set offset to 0.
1290
1291 if (co < 0 + offset) {
1292 offset = co;
1293 }
1294 if (co >= columns + offset) {
1295 offset = co - columns + 1;
1296 }
1297 // if the first char of the line is a tab, and "dot" is sitting on it
1298 // force offset to 0.
1299 if (d == beg_cur && *d == '\t') {
1300 offset = 0;
1301 }
1302 co -= offset;
1303
1304 *row = ro;
1305 *col = co;
1306}
1307
1308//----- Text Movement Routines ---------------------------------
Denis Vlasenkof882f082007-12-23 02:36:51 +00001309static char *begin_line(char *p) // return pointer to first char cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001310{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001311 if (p > text) {
1312 p = memrchr(text, '\n', p - text);
1313 if (!p)
1314 return text;
1315 return p + 1;
1316 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001317 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001318}
1319
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001320static char *end_line(char *p) // return pointer to NL of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001321{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001322 if (p < end - 1) {
1323 p = memchr(p, '\n', end - p - 1);
1324 if (!p)
1325 return end - 1;
1326 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001327 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001328}
1329
Denis Vlasenkof882f082007-12-23 02:36:51 +00001330static char *dollar_line(char *p) // return pointer to just before NL line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001331{
Denis Vlasenkof882f082007-12-23 02:36:51 +00001332 p = end_line(p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001333 // Try to stay off of the Newline
1334 if (*p == '\n' && (p - begin_line(p)) > 0)
1335 p--;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001336 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001337}
1338
Denis Vlasenkof882f082007-12-23 02:36:51 +00001339static char *prev_line(char *p) // return pointer first char prev line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001340{
1341 p = begin_line(p); // goto begining of cur line
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001342 if (p > text && p[-1] == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001343 p--; // step to prev line
1344 p = begin_line(p); // goto begining of prev line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001345 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001346}
1347
Denis Vlasenkof882f082007-12-23 02:36:51 +00001348static char *next_line(char *p) // return pointer first char next line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001349{
1350 p = end_line(p);
Denis Vlasenkoe3eae0d2008-06-22 16:38:53 +00001351 if (p < end - 1 && *p == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001352 p++; // step to next line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001353 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001354}
1355
1356//----- Text Information Routines ------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001357static char *end_screen(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001358{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001359 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001360 int cnt;
1361
1362 // find new bottom line
1363 q = screenbegin;
1364 for (cnt = 0; cnt < rows - 2; cnt++)
1365 q = next_line(q);
1366 q = end_line(q);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001367 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001368}
1369
Denis Vlasenkof882f082007-12-23 02:36:51 +00001370// count line from start to stop
1371static int count_lines(char *start, char *stop)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001372{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001373 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001374 int cnt;
1375
Denis Vlasenkof882f082007-12-23 02:36:51 +00001376 if (stop < start) { // start and stop are backwards- reverse them
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001377 q = start;
1378 start = stop;
1379 stop = q;
1380 }
1381 cnt = 0;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001382 stop = end_line(stop);
1383 while (start <= stop && start <= end - 1) {
1384 start = end_line(start);
1385 if (*start == '\n')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001386 cnt++;
Denis Vlasenkof882f082007-12-23 02:36:51 +00001387 start++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001388 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001389 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001390}
1391
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001392static char *find_line(int li) // find begining of line #li
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001393{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001394 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001395
1396 for (q = text; li > 1; li--) {
1397 q = next_line(q);
1398 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001399 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001400}
1401
1402//----- Dot Movement Routines ----------------------------------
1403static void dot_left(void)
1404{
1405 if (dot > text && dot[-1] != '\n')
1406 dot--;
1407}
1408
1409static void dot_right(void)
1410{
1411 if (dot < end - 1 && *dot != '\n')
1412 dot++;
1413}
1414
1415static void dot_begin(void)
1416{
1417 dot = begin_line(dot); // return pointer to first char cur line
1418}
1419
1420static void dot_end(void)
1421{
1422 dot = end_line(dot); // return pointer to last char cur line
1423}
1424
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001425static char *move_to_col(char *p, int l)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001426{
1427 int co;
1428
1429 p = begin_line(p);
1430 co = 0;
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001431 while (co < l && p < end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001432 if (*p == '\n') //vda || *p == '\0')
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001433 break;
1434 if (*p == '\t') {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001435 co = next_tabstop(co);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001436 } else if (*p < ' ' || *p == 127) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001437 co++; // display as ^X, use 2 columns
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001438 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00001439 co++;
1440 p++;
1441 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001442 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001443}
1444
1445static void dot_next(void)
1446{
1447 dot = next_line(dot);
1448}
1449
1450static void dot_prev(void)
1451{
1452 dot = prev_line(dot);
1453}
1454
1455static void dot_scroll(int cnt, int dir)
1456{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001457 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001458
1459 for (; cnt > 0; cnt--) {
1460 if (dir < 0) {
1461 // scroll Backwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001462 // ctrl-Y scroll up one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001463 screenbegin = prev_line(screenbegin);
1464 } else {
1465 // scroll Forwards
Denis Vlasenkof882f082007-12-23 02:36:51 +00001466 // ctrl-E scroll down one line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001467 screenbegin = next_line(screenbegin);
1468 }
1469 }
1470 // make sure "dot" stays on the screen so we dont scroll off
1471 if (dot < screenbegin)
1472 dot = screenbegin;
1473 q = end_screen(); // find new bottom line
1474 if (dot > q)
1475 dot = begin_line(q); // is dot is below bottom line?
1476 dot_skip_over_ws();
1477}
1478
1479static void dot_skip_over_ws(void)
1480{
1481 // skip WS
1482 while (isspace(*dot) && *dot != '\n' && dot < end - 1)
1483 dot++;
1484}
1485
1486static void dot_delete(void) // delete the char at 'dot'
1487{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001488 text_hole_delete(dot, dot);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001489}
1490
Denis Vlasenkof882f082007-12-23 02:36:51 +00001491static char *bound_dot(char *p) // make sure text[0] <= P < "end"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001492{
1493 if (p >= end && end > text) {
1494 p = end - 1;
1495 indicate_error('1');
1496 }
1497 if (p < text) {
1498 p = text;
1499 indicate_error('2');
1500 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001501 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001502}
1503
1504//----- Helper Utility Routines --------------------------------
1505
1506//----------------------------------------------------------------
1507//----- Char Routines --------------------------------------------
1508/* Chars that are part of a word-
1509 * 0123456789_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
1510 * Chars that are Not part of a word (stoppers)
1511 * !"#$%&'()*+,-./:;<=>?@[\]^`{|}~
1512 * Chars that are WhiteSpace
1513 * TAB NEWLINE VT FF RETURN SPACE
1514 * DO NOT COUNT NEWLINE AS WHITESPACE
1515 */
1516
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001517static char *new_screen(int ro, int co)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001518{
1519 int li;
1520
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001521 free(screen);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001522 screensize = ro * co + 8;
Denis Vlasenkob95636c2006-12-19 23:36:04 +00001523 screen = xmalloc(screensize);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001524 // initialize the new screen. assume this will be a empty file.
1525 screen_erase();
Eric Andersenaff114c2004-04-14 17:51:38 +00001526 // non-existent text[] lines start with a tilde (~).
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001527 for (li = 1; li < ro - 1; li++) {
1528 screen[(li * co) + 0] = '~';
1529 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001530 return screen;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001531}
1532
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001533#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenko33875382008-06-21 20:31:50 +00001534static int mycmp(const char *s1, const char *s2, int len)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001535{
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001536 if (ENABLE_FEATURE_VI_SETOPTS && ignorecase) {
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001537 return strncasecmp(s1, s2, len);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001538 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02001539 return strncmp(s1, s2, len);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001540}
1541
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001542// search for pattern starting at p
Denis Vlasenko33875382008-06-21 20:31:50 +00001543static char *char_search(char *p, const char *pat, int dir, int range)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001544{
1545#ifndef REGEX_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001546 char *start, *stop;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001547 int len;
1548
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001549 len = strlen(pat);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001550 if (dir == FORWARD) {
1551 stop = end - 1; // assume range is p - end-1
1552 if (range == LIMITED)
1553 stop = next_line(p); // range is to next line
1554 for (start = p; start < stop; start++) {
1555 if (mycmp(start, pat, len) == 0) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001556 return start;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001557 }
1558 }
1559 } else if (dir == BACK) {
1560 stop = text; // assume range is text - p
1561 if (range == LIMITED)
1562 stop = prev_line(p); // range is to prev line
1563 for (start = p - len; start >= stop; start--) {
1564 if (mycmp(start, pat, len) == 0) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001565 return start;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001566 }
1567 }
1568 }
1569 // pattern not found
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001570 return NULL;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001571#else /* REGEX_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001572 char *q;
1573 struct re_pattern_buffer preg;
1574 int i;
1575 int size, range;
1576
1577 re_syntax_options = RE_SYNTAX_POSIX_EXTENDED;
1578 preg.translate = 0;
1579 preg.fastmap = 0;
1580 preg.buffer = 0;
1581 preg.allocated = 0;
1582
1583 // assume a LIMITED forward search
1584 q = next_line(p);
1585 q = end_line(q);
1586 q = end - 1;
1587 if (dir == BACK) {
1588 q = prev_line(p);
1589 q = text;
1590 }
1591 // count the number of chars to search over, forward or backward
1592 size = q - p;
1593 if (size < 0)
1594 size = p - q;
1595 // RANGE could be negative if we are searching backwards
1596 range = q - p;
1597
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001598 q = re_compile_pattern(pat, strlen(pat), &preg);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001599 if (q != 0) {
1600 // The pattern was not compiled
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00001601 status_line_bold("bad search pattern: \"%s\": %s", pat, q);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001602 i = 0; // return p if pattern not compiled
1603 goto cs1;
1604 }
1605
1606 q = p;
1607 if (range < 0) {
1608 q = p - size;
1609 if (q < text)
1610 q = text;
1611 }
1612 // search for the compiled pattern, preg, in p[]
1613 // range < 0- search backward
1614 // range > 0- search forward
1615 // 0 < start < size
1616 // re_search() < 0 not found or error
1617 // re_search() > 0 index of found pattern
1618 // struct pattern char int int int struct reg
1619 // re_search (*pattern_buffer, *string, size, start, range, *regs)
1620 i = re_search(&preg, q, size, 0, range, 0);
1621 if (i == -1) {
1622 p = 0;
1623 i = 0; // return NULL if pattern not found
1624 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001625 cs1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001626 if (dir == FORWARD) {
1627 p = p + i;
1628 } else {
1629 p = p - i;
1630 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001631 return p;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001632#endif /* REGEX_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001633}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001634#endif /* FEATURE_VI_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001635
Denis Vlasenko33875382008-06-21 20:31:50 +00001636static char *char_insert(char *p, char c) // insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001637{
1638 if (c == 22) { // Is this an ctrl-V?
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001639 p += stupid_insert(p, '^'); // use ^ to indicate literal next
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001640 refresh(FALSE); // show the ^
1641 c = get_one_char();
1642 *p = c;
1643 p++;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001644 file_modified++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001645 } else if (c == 27) { // Is this an ESC?
1646 cmd_mode = 0;
1647 cmdcnt = 0;
1648 end_cmd_q(); // stop adding to q
Paul Fox8552aec2005-09-16 12:20:05 +00001649 last_status_cksum = 0; // force status update
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001650 if ((p[-1] != '\n') && (dot > text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001651 p--;
1652 }
Paul Foxd13b90b2005-07-18 22:17:25 +00001653 } else if (c == erase_char || c == 8 || c == 127) { // Is this a BS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001654 // 123456789
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001655 if ((p[-1] != '\n') && (dot>text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001656 p--;
1657 p = text_hole_delete(p, p); // shrink buffer 1 char
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001658 }
1659 } else {
1660 // insert a char into text[]
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001661 char *sp; // "save p"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001662
1663 if (c == 13)
1664 c = '\n'; // translate \r to \n
1665 sp = p; // remember addr of insert
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001666 p += 1 + stupid_insert(p, c); // insert the char
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001667#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001668 if (showmatch && strchr(")]}", *sp) != NULL) {
1669 showmatching(sp);
1670 }
1671 if (autoindent && c == '\n') { // auto indent the new line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001672 char *q;
Denis Vlasenko00d84172008-11-24 07:34:42 +00001673 size_t len;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001674 q = prev_line(p); // use prev line as template
Denis Vlasenko00d84172008-11-24 07:34:42 +00001675 len = strspn(q, " \t"); // space or tab
1676 if (len) {
Denis Vlasenko3266aa92009-04-01 11:24:04 +00001677 uintptr_t bias;
Denis Vlasenko00d84172008-11-24 07:34:42 +00001678 bias = text_hole_make(p, len);
1679 p += bias;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001680 q += bias;
Denis Vlasenko00d84172008-11-24 07:34:42 +00001681 memcpy(p, q, len);
Denis Vlasenko3266aa92009-04-01 11:24:04 +00001682 p += len;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001683 }
1684 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001685#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001686 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001687 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001688}
1689
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001690// might reallocate text[]! use p += stupid_insert(p, ...),
1691// and be careful to not use pointers into potentially freed text[]!
1692static uintptr_t stupid_insert(char *p, char c) // stupidly insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001693{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001694 uintptr_t bias;
1695 bias = text_hole_make(p, 1);
1696 p += bias;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001697 *p = c;
1698 //file_modified++; - done by text_hole_make()
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001699 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001700}
1701
Denis Vlasenko33875382008-06-21 20:31:50 +00001702static int find_range(char **start, char **stop, char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001703{
Paul Foxc51fc7b2008-03-06 01:34:23 +00001704 char *save_dot, *p, *q, *t;
1705 int cnt, multiline = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001706
1707 save_dot = dot;
1708 p = q = dot;
1709
1710 if (strchr("cdy><", c)) {
1711 // these cmds operate on whole lines
1712 p = q = begin_line(p);
1713 for (cnt = 1; cnt < cmdcnt; cnt++) {
1714 q = next_line(q);
1715 }
1716 q = end_line(q);
Paul Foxc51fc7b2008-03-06 01:34:23 +00001717 } else if (strchr("^%$0bBeEfth\b\177", c)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001718 // These cmds operate on char positions
1719 do_cmd(c); // execute movement cmd
1720 q = dot;
1721 } else if (strchr("wW", c)) {
1722 do_cmd(c); // execute movement cmd
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001723 // if we are at the next word's first char
1724 // step back one char
1725 // but check the possibilities when it is true
Eric Andersen5cc90ea2004-02-06 10:36:08 +00001726 if (dot > text && ((isspace(dot[-1]) && !isspace(dot[0]))
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001727 || (ispunct(dot[-1]) && !ispunct(dot[0]))
1728 || (isalnum(dot[-1]) && !isalnum(dot[0]))))
1729 dot--; // move back off of next word
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001730 if (dot > text && *dot == '\n')
1731 dot--; // stay off NL
1732 q = dot;
1733 } else if (strchr("H-k{", c)) {
1734 // these operate on multi-lines backwards
1735 q = end_line(dot); // find NL
1736 do_cmd(c); // execute movement cmd
1737 dot_begin();
1738 p = dot;
1739 } else if (strchr("L+j}\r\n", c)) {
1740 // these operate on multi-lines forwards
1741 p = begin_line(dot);
1742 do_cmd(c); // execute movement cmd
1743 dot_end(); // find NL
1744 q = dot;
1745 } else {
Paul Foxc51fc7b2008-03-06 01:34:23 +00001746 // nothing -- this causes any other values of c to
1747 // represent the one-character range under the
1748 // cursor. this is correct for ' ' and 'l', but
1749 // perhaps no others.
1750 //
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001751 }
Paul Foxc51fc7b2008-03-06 01:34:23 +00001752 if (q < p) {
1753 t = q;
1754 q = p;
1755 p = t;
1756 }
1757
Denis Vlasenko42cc3042008-03-24 02:05:58 +00001758 // backward char movements don't include start position
Paul Foxc51fc7b2008-03-06 01:34:23 +00001759 if (q > p && strchr("^0bBh\b\177", c)) q--;
1760
1761 multiline = 0;
1762 for (t = p; t <= q; t++) {
1763 if (*t == '\n') {
1764 multiline = 1;
1765 break;
1766 }
1767 }
1768
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001769 *start = p;
1770 *stop = q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001771 dot = save_dot;
Paul Foxc51fc7b2008-03-06 01:34:23 +00001772 return multiline;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001773}
1774
Denis Vlasenko33875382008-06-21 20:31:50 +00001775static int st_test(char *p, int type, int dir, char *tested)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001776{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001777 char c, c0, ci;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001778 int test, inc;
1779
1780 inc = dir;
1781 c = c0 = p[0];
1782 ci = p[inc];
1783 test = 0;
1784
1785 if (type == S_BEFORE_WS) {
1786 c = ci;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02001787 test = (!isspace(c) || c == '\n');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001788 }
1789 if (type == S_TO_WS) {
1790 c = c0;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02001791 test = (!isspace(c) || c == '\n');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001792 }
1793 if (type == S_OVER_WS) {
1794 c = c0;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02001795 test = isspace(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001796 }
1797 if (type == S_END_PUNCT) {
1798 c = ci;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02001799 test = ispunct(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001800 }
1801 if (type == S_END_ALNUM) {
1802 c = ci;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +02001803 test = (isalnum(c) || c == '_');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001804 }
1805 *tested = c;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001806 return test;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001807}
1808
Denis Vlasenko33875382008-06-21 20:31:50 +00001809static char *skip_thing(char *p, int linecnt, int dir, int type)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001810{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001811 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001812
1813 while (st_test(p, type, dir, &c)) {
1814 // make sure we limit search to correct number of lines
1815 if (c == '\n' && --linecnt < 1)
1816 break;
1817 if (dir >= 0 && p >= end - 1)
1818 break;
1819 if (dir < 0 && p <= text)
1820 break;
1821 p += dir; // move to next char
1822 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001823 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001824}
1825
1826// find matching char of pair () [] {}
Denis Vlasenko33875382008-06-21 20:31:50 +00001827static char *find_pair(char *p, const char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001828{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001829 char match, *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001830 int dir, level;
1831
1832 match = ')';
1833 level = 1;
1834 dir = 1; // assume forward
1835 switch (c) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00001836 case '(': match = ')'; break;
1837 case '[': match = ']'; break;
1838 case '{': match = '}'; break;
1839 case ')': match = '('; dir = -1; break;
1840 case ']': match = '['; dir = -1; break;
1841 case '}': match = '{'; dir = -1; break;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001842 }
1843 for (q = p + dir; text <= q && q < end; q += dir) {
1844 // look for match, count levels of pairs (( ))
1845 if (*q == c)
1846 level++; // increase pair levels
1847 if (*q == match)
1848 level--; // reduce pair level
1849 if (level == 0)
1850 break; // found matching pair
1851 }
1852 if (level != 0)
1853 q = NULL; // indicate no match
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001854 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001855}
1856
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001857#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001858// show the matching char of a pair, () [] {}
Denis Vlasenkof882f082007-12-23 02:36:51 +00001859static void showmatching(char *p)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001860{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001861 char *q, *save_dot;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001862
1863 // we found half of a pair
1864 q = find_pair(p, *p); // get loc of matching char
1865 if (q == NULL) {
1866 indicate_error('3'); // no matching char
1867 } else {
1868 // "q" now points to matching pair
1869 save_dot = dot; // remember where we are
1870 dot = q; // go to new loc
1871 refresh(FALSE); // let the user see it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001872 mysleep(40); // give user some time
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001873 dot = save_dot; // go back to old loc
1874 refresh(FALSE);
1875 }
1876}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001877#endif /* FEATURE_VI_SETOPTS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001878
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001879// open a hole in text[]
1880// might reallocate text[]! use p += text_hole_make(p, ...),
1881// and be careful to not use pointers into potentially freed text[]!
1882static uintptr_t text_hole_make(char *p, int size) // at "p", make a 'size' byte hole
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001883{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001884 uintptr_t bias = 0;
1885
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001886 if (size <= 0)
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001887 return bias;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001888 end += size; // adjust the new END
1889 if (end >= (text + text_size)) {
1890 char *new_text;
1891 text_size += end - (text + text_size) + 10240;
1892 new_text = xrealloc(text, text_size);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001893 bias = (new_text - text);
1894 screenbegin += bias;
1895 dot += bias;
1896 end += bias;
1897 p += bias;
Denis Vlasenkob1759462008-06-20 20:20:54 +00001898 text = new_text;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001899 }
Denis Vlasenkod6995442008-06-27 04:06:13 +00001900 memmove(p + size, p, end - size - p);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001901 memset(p, ' ', size); // clear new hole
Denis Vlasenkob1759462008-06-20 20:20:54 +00001902 file_modified++;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00001903 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001904}
1905
1906// close a hole in text[]
Denis Vlasenko33875382008-06-21 20:31:50 +00001907static char *text_hole_delete(char *p, char *q) // delete "p" through "q", inclusive
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001908{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001909 char *src, *dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001910 int cnt, hole_size;
1911
1912 // move forwards, from beginning
1913 // assume p <= q
1914 src = q + 1;
1915 dest = p;
1916 if (q < p) { // they are backward- swap them
1917 src = p + 1;
1918 dest = q;
1919 }
1920 hole_size = q - p + 1;
1921 cnt = end - src;
1922 if (src < text || src > end)
1923 goto thd0;
1924 if (dest < text || dest >= end)
1925 goto thd0;
1926 if (src >= end)
1927 goto thd_atend; // just delete the end of the buffer
Denis Vlasenkob1759462008-06-20 20:20:54 +00001928 memmove(dest, src, cnt);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001929 thd_atend:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001930 end = end - hole_size; // adjust the new END
1931 if (dest >= end)
1932 dest = end - 1; // make sure dest in below end-1
1933 if (end <= text)
1934 dest = end = text; // keep pointers valid
Denis Vlasenkob1759462008-06-20 20:20:54 +00001935 file_modified++;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001936 thd0:
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001937 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001938}
1939
1940// copy text into register, then delete text.
1941// if dist <= 0, do not include, or go past, a NewLine
1942//
Denis Vlasenko33875382008-06-21 20:31:50 +00001943static char *yank_delete(char *start, char *stop, int dist, int yf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001944{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001945 char *p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001946
1947 // make sure start <= stop
1948 if (start > stop) {
1949 // they are backwards, reverse them
1950 p = start;
1951 start = stop;
1952 stop = p;
1953 }
1954 if (dist <= 0) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +00001955 // we cannot cross NL boundaries
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001956 p = start;
1957 if (*p == '\n')
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001958 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001959 // dont go past a NewLine
1960 for (; p + 1 <= stop; p++) {
1961 if (p[1] == '\n') {
1962 stop = p; // "stop" just before NewLine
1963 break;
1964 }
1965 }
1966 }
1967 p = start;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001968#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001969 text_yank(start, stop, YDreg);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001970#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001971 if (yf == YANKDEL) {
1972 p = text_hole_delete(start, stop);
1973 } // delete lines
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001974 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001975}
1976
1977static void show_help(void)
1978{
1979 puts("These features are available:"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001980#if ENABLE_FEATURE_VI_SEARCH
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001981 "\n\tPattern searches with / and ?"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001982#endif
1983#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001984 "\n\tLast command repeat with \'.\'"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001985#endif
1986#if ENABLE_FEATURE_VI_YANKMARK
Bernhard Reutner-Fischerd24d5c82007-10-01 18:04:42 +00001987 "\n\tLine marking with 'x"
1988 "\n\tNamed buffers with \"x"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001989#endif
1990#if ENABLE_FEATURE_VI_READONLY
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001991 "\n\tReadonly if vi is called as \"view\""
1992 "\n\tReadonly with -R command line arg"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001993#endif
1994#if ENABLE_FEATURE_VI_SET
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001995 "\n\tSome colon mode commands with \':\'"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001996#endif
1997#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001998 "\n\tSettable options with \":set\""
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001999#endif
2000#if ENABLE_FEATURE_VI_USE_SIGNALS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002001 "\n\tSignal catching- ^C"
2002 "\n\tJob suspend and resume with ^Z"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002003#endif
2004#if ENABLE_FEATURE_VI_WIN_RESIZE
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002005 "\n\tAdapt to window re-sizes"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002006#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002007 );
2008}
2009
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002010#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002011static void start_new_cmd_q(char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002012{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002013 // get buffer for new cmd
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002014 // if there is a current cmd count put it in the buffer first
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002015 if (cmdcnt > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00002016 lmc_len = sprintf(last_modifying_cmd, "%d%c", cmdcnt, c);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002017 } else { // just save char c onto queue
Paul Foxd957b952005-11-28 18:07:53 +00002018 last_modifying_cmd[0] = c;
Paul Foxc51fc7b2008-03-06 01:34:23 +00002019 lmc_len = 1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002020 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002021 adding2q = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002022}
2023
2024static void end_cmd_q(void)
2025{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002026#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002027 YDreg = 26; // go back to default Yank/Delete reg
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002028#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002029 adding2q = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002030}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002031#endif /* FEATURE_VI_DOT_CMD */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002032
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002033#if ENABLE_FEATURE_VI_YANKMARK \
2034 || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) \
2035 || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002036// might reallocate text[]! use p += string_insert(p, ...),
2037// and be careful to not use pointers into potentially freed text[]!
2038static uintptr_t string_insert(char *p, const char *s) // insert the string at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002039{
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002040 uintptr_t bias;
2041 int i;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002042
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002043 i = strlen(s);
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002044 bias = text_hole_make(p, i);
2045 p += bias;
Denis Vlasenko00d84172008-11-24 07:34:42 +00002046 memcpy(p, s, i);
Denis Vlasenko33875382008-06-21 20:31:50 +00002047#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002048 {
2049 int cnt;
2050 for (cnt = 0; *s != '\0'; s++) {
2051 if (*s == '\n')
2052 cnt++;
2053 }
2054 status_line("Put %d lines (%d chars) from [%c]", cnt, i, what_reg());
2055 }
Denis Vlasenko33875382008-06-21 20:31:50 +00002056#endif
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002057 return bias;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002058}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002059#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002060
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002061#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko33875382008-06-21 20:31:50 +00002062static char *text_yank(char *p, char *q, int dest) // copy text into a register
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002063{
Denis Vlasenko00d84172008-11-24 07:34:42 +00002064 int cnt = q - p;
2065 if (cnt < 0) { // they are backwards- reverse them
2066 p = q;
2067 cnt = -cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002068 }
Denis Vlasenko00d84172008-11-24 07:34:42 +00002069 free(reg[dest]); // if already a yank register, free it
2070 reg[dest] = xstrndup(p, cnt + 1);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002071 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002072}
2073
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002074static char what_reg(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002075{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002076 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002077
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002078 c = 'D'; // default to D-reg
2079 if (0 <= YDreg && YDreg <= 25)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002080 c = 'a' + (char) YDreg;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002081 if (YDreg == 26)
2082 c = 'D';
2083 if (YDreg == 27)
2084 c = 'U';
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002085 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002086}
2087
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002088static void check_context(char cmd)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002089{
2090 // A context is defined to be "modifying text"
2091 // Any modifying command establishes a new context.
2092
2093 if (dot < context_start || dot > context_end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002094 if (strchr(modifying_cmds, cmd) != NULL) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002095 // we are trying to modify text[]- make this the current context
2096 mark[27] = mark[26]; // move cur to prev
2097 mark[26] = dot; // move local to cur
2098 context_start = prev_line(prev_line(dot));
2099 context_end = next_line(next_line(dot));
2100 //loiter= start_loiter= now;
2101 }
2102 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002103}
2104
Denis Vlasenkof882f082007-12-23 02:36:51 +00002105static char *swap_context(char *p) // goto new context for '' command make this the current context
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002106{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002107 char *tmp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002108
2109 // the current context is in mark[26]
2110 // the previous context is in mark[27]
2111 // only swap context if other context is valid
2112 if (text <= mark[27] && mark[27] <= end - 1) {
2113 tmp = mark[27];
2114 mark[27] = mark[26];
2115 mark[26] = tmp;
2116 p = mark[26]; // where we are going- previous context
2117 context_start = prev_line(prev_line(prev_line(p)));
2118 context_end = next_line(next_line(next_line(p)));
2119 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002120 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002121}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002122#endif /* FEATURE_VI_YANKMARK */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002123
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002124//----- Set terminal attributes --------------------------------
2125static void rawmode(void)
2126{
2127 tcgetattr(0, &term_orig);
2128 term_vi = term_orig;
2129 term_vi.c_lflag &= (~ICANON & ~ECHO); // leave ISIG ON- allow intr's
2130 term_vi.c_iflag &= (~IXON & ~ICRNL);
2131 term_vi.c_oflag &= (~ONLCR);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002132 term_vi.c_cc[VMIN] = 1;
2133 term_vi.c_cc[VTIME] = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002134 erase_char = term_vi.c_cc[VERASE];
Denis Vlasenko202ac502008-11-05 13:20:58 +00002135 tcsetattr_stdin_TCSANOW(&term_vi);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002136}
2137
2138static void cookmode(void)
2139{
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002140 fflush_all();
Denis Vlasenko202ac502008-11-05 13:20:58 +00002141 tcsetattr_stdin_TCSANOW(&term_orig);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002142}
2143
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002144//----- Come here when we get a window resize signal ---------
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002145#if ENABLE_FEATURE_VI_USE_SIGNALS
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002146static void winch_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002147{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002148 // FIXME: do it in main loop!!!
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002149 signal(SIGWINCH, winch_sig);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002150 if (ENABLE_FEATURE_VI_WIN_RESIZE) {
Denis Vlasenko621204b2006-10-27 09:03:24 +00002151 get_terminal_width_height(0, &columns, &rows);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002152 if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS;
2153 if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS;
2154 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002155 new_screen(rows, columns); // get memory for virtual screen
2156 redraw(TRUE); // re-draw the screen
2157}
2158
2159//----- Come here when we get a continue signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002160static void cont_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002161{
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002162 rawmode(); // terminal to "raw"
2163 last_status_cksum = 0; // force status update
2164 redraw(TRUE); // re-draw the screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002165
2166 signal(SIGTSTP, suspend_sig);
2167 signal(SIGCONT, SIG_DFL);
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002168 kill(my_pid, SIGCONT); // huh? why? we are already "continued"...
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002169}
2170
2171//----- Come here when we get a Suspend signal -------------------
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002172static void suspend_sig(int sig UNUSED_PARAM)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002173{
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002174 go_bottom_and_clear_to_eol();
Denis Vlasenko30cfdf92008-09-21 15:29:29 +00002175 cookmode(); // terminal to "cooked"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002176
2177 signal(SIGCONT, cont_sig);
2178 signal(SIGTSTP, SIG_DFL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002179 kill(my_pid, SIGTSTP);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002180}
2181
2182//----- Come here when we get a signal ---------------------------
2183static void catch_sig(int sig)
2184{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002185 signal(SIGINT, catch_sig);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002186 if (sig)
Paul Fox2724fa92008-03-17 15:28:07 +00002187 siglongjmp(restart, sig);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002188}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002189#endif /* FEATURE_VI_USE_SIGNALS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002190
Denys Vlasenko606291b2009-09-23 23:15:43 +02002191static int mysleep(int hund) // sleep for 'hund' 1/100 seconds or stdin ready
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002192{
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002193 struct pollfd pfd[1];
Denis Vlasenkocd5c7862007-05-17 16:37:22 +00002194
Denys Vlasenko606291b2009-09-23 23:15:43 +02002195 pfd[0].fd = STDIN_FILENO;
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002196 pfd[0].events = POLLIN;
Denis Vlasenko5d61e712007-09-27 10:09:59 +00002197 return safe_poll(pfd, 1, hund*10) > 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002198}
2199
2200//----- IO Routines --------------------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002201static int readit(void) // read (maybe cursor) key from stdin
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002202{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002203 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002204
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002205 fflush_all();
Denys Vlasenko020f4062009-05-17 16:44:54 +02002206 c = read_key(STDIN_FILENO, readbuffer);
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002207 if (c == -1) { // EOF/error
2208 go_bottom_and_clear_to_eol();
2209 cookmode(); // terminal to "cooked"
2210 bb_error_msg_and_die("can't read user input");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002211 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002212 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002213}
2214
2215//----- IO Routines --------------------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002216static int get_one_char(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002217{
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002218 int c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002219
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002220#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002221 if (!adding2q) {
2222 // we are not adding to the q.
2223 // but, we may be reading from a q
2224 if (ioq == 0) {
2225 // there is no current q, read from STDIN
2226 c = readit(); // get the users input
2227 } else {
2228 // there is a queue to get chars from first
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002229 // careful with correct sign expansion!
2230 c = (unsigned char)*ioq++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002231 if (c == '\0') {
2232 // the end of the q, read from STDIN
2233 free(ioq_start);
2234 ioq_start = ioq = 0;
2235 c = readit(); // get the users input
2236 }
2237 }
2238 } else {
2239 // adding STDIN chars to q
2240 c = readit(); // get the users input
Denis Vlasenkob1759462008-06-20 20:20:54 +00002241 if (lmc_len >= MAX_INPUT_LEN - 1) {
2242 status_line_bold("last_modifying_cmd overrun");
2243 } else {
2244 // add new char to q
2245 last_modifying_cmd[lmc_len++] = c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002246 }
2247 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002248#else
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002249 c = readit(); // get the users input
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002250#endif /* FEATURE_VI_DOT_CMD */
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002251 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002252}
2253
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002254// Get input line (uses "status line" area)
2255static char *get_input_line(const char *prompt)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002256{
Denis Vlasenkob1759462008-06-20 20:20:54 +00002257 // char [MAX_INPUT_LEN]
2258#define buf get_input_line__buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002259
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002260 int c;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002261 int i;
2262
2263 strcpy(buf, prompt);
Paul Fox8552aec2005-09-16 12:20:05 +00002264 last_status_cksum = 0; // force status update
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002265 go_bottom_and_clear_to_eol();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002266 write1(prompt); // write out the :, /, or ? prompt
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002267
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002268 i = strlen(buf);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002269 while (i < MAX_INPUT_LEN) {
2270 c = get_one_char();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002271 if (c == '\n' || c == '\r' || c == 27)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002272 break; // this is end of input
Paul Foxf2de0b72005-09-13 22:20:37 +00002273 if (c == erase_char || c == 8 || c == 127) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002274 // user wants to erase prev char
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002275 buf[--i] = '\0';
2276 write1("\b \b"); // erase char on screen
2277 if (i <= 0) // user backs up before b-o-l, exit
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002278 break;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002279 } else if (c > 0 && c < 256) { // exclude Unicode
2280 // (TODO: need to handle Unicode)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002281 buf[i] = c;
2282 buf[++i] = '\0';
2283 bb_putchar(c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002284 }
2285 }
2286 refresh(FALSE);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002287 return buf;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002288#undef buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002289}
2290
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002291static int file_size(const char *fn) // what is the byte size of "fn"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002292{
2293 struct stat st_buf;
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002294 int cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002295
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002296 cnt = -1;
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002297 if (fn && fn[0] && stat(fn, &st_buf) == 0) // see if file exists
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002298 cnt = (int) st_buf.st_size;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002299 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002300}
2301
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002302// might reallocate text[]!
2303static int file_insert(const char *fn, char *p, int update_ro_status)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002304{
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002305 int cnt = -1;
2306 int fd, size;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002307 struct stat statbuf;
2308
2309 /* Validate file */
2310 if (stat(fn, &statbuf) < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002311 status_line_bold("\"%s\" %s", fn, strerror(errno));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002312 goto fi0;
2313 }
Denis Vlasenko33875382008-06-21 20:31:50 +00002314 if (!S_ISREG(statbuf.st_mode)) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002315 // This is not a regular file
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002316 status_line_bold("\"%s\" Not a regular file", fn);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002317 goto fi0;
2318 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002319 if (p < text || p > end) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002320 status_line_bold("Trying to insert file outside of memory");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002321 goto fi0;
2322 }
2323
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002324 // read file to buffer
2325 fd = open(fn, O_RDONLY);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002326 if (fd < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002327 status_line_bold("\"%s\" %s", fn, strerror(errno));
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002328 goto fi0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002329 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002330 size = statbuf.st_size;
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00002331 p += text_hole_make(p, size);
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002332 cnt = safe_read(fd, p, size);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002333 if (cnt < 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002334 status_line_bold("\"%s\" %s", fn, strerror(errno));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002335 p = text_hole_delete(p, p + size - 1); // un-do buffer insert
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002336 } else if (cnt < size) {
2337 // There was a partial read, shrink unused space text[]
2338 p = text_hole_delete(p + cnt, p + (size - cnt) - 1); // un-do buffer insert
Denys Vlasenko6331cf02009-11-13 09:08:27 +01002339 status_line_bold("can't read all of file \"%s\"", fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002340 }
2341 if (cnt >= size)
Paul Fox8552aec2005-09-16 12:20:05 +00002342 file_modified++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002343 close(fd);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002344 fi0:
Denis Vlasenko856be772007-08-17 08:29:48 +00002345#if ENABLE_FEATURE_VI_READONLY
2346 if (update_ro_status
2347 && ((access(fn, W_OK) < 0) ||
2348 /* root will always have access()
2349 * so we check fileperms too */
2350 !(statbuf.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH))
2351 )
2352 ) {
Denis Vlasenko2f6ae432007-07-19 22:50:47 +00002353 SET_READONLY_FILE(readonly_mode);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002354 }
Denis Vlasenko856be772007-08-17 08:29:48 +00002355#endif
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002356 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002357}
2358
Denis Vlasenko33875382008-06-21 20:31:50 +00002359static int file_write(char *fn, char *first, char *last)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002360{
2361 int fd, cnt, charcnt;
2362
2363 if (fn == 0) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002364 status_line_bold("No current filename");
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002365 return -2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002366 }
2367 charcnt = 0;
Denis Vlasenko8abae882008-05-03 11:35:59 +00002368 /* By popular request we do not open file with O_TRUNC,
2369 * but instead ftruncate() it _after_ successful write.
2370 * Might reduce amount of data lost on power fail etc.
2371 */
2372 fd = open(fn, (O_WRONLY | O_CREAT), 0666);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002373 if (fd < 0)
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002374 return -1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002375 cnt = last - first + 1;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002376 charcnt = full_write(fd, first, cnt);
Denis Vlasenko8abae882008-05-03 11:35:59 +00002377 ftruncate(fd, charcnt);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002378 if (charcnt == cnt) {
2379 // good write
Denis Vlasenkob1759462008-06-20 20:20:54 +00002380 //file_modified = FALSE;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002381 } else {
2382 charcnt = 0;
2383 }
2384 close(fd);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002385 return charcnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002386}
2387
2388//----- Terminal Drawing ---------------------------------------
2389// The terminal is made up of 'rows' line of 'columns' columns.
Eric Andersenaff114c2004-04-14 17:51:38 +00002390// classically this would be 24 x 80.
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002391// screen coordinates
2392// 0,0 ... 0,79
2393// 1,0 ... 1,79
2394// . ... .
2395// . ... .
2396// 22,0 ... 22,79
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002397// 23,0 ... 23,79 <- status line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002398
2399//----- Move the cursor to row x col (count from 0, not 1) -------
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002400static void place_cursor(int row, int col, int optimize)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002401{
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002402 char cm1[sizeof(CMrc) + sizeof(int)*3 * 2];
Denis Vlasenko7b54dc72008-07-17 21:32:32 +00002403#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
2404 enum {
2405 SZ_UP = sizeof(CMup),
2406 SZ_DN = sizeof(CMdown),
2407 SEQ_SIZE = SZ_UP > SZ_DN ? SZ_UP : SZ_DN,
2408 };
2409 char cm2[SEQ_SIZE * 5 + 32]; // bigger than worst case size
2410#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002411 char *cm;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002412
2413 if (row < 0) row = 0;
2414 if (row >= rows) row = rows - 1;
2415 if (col < 0) col = 0;
2416 if (col >= columns) col = columns - 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002417
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002418 //----- 1. Try the standard terminal ESC sequence
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002419 sprintf(cm1, CMrc, row + 1, col + 1);
2420 cm = cm1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002421
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002422#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002423 if (optimize && col < 16) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002424 char *screenp;
2425 int Rrow = last_row;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002426 int diff = Rrow - row;
2427
2428 if (diff < -5 || diff > 5)
2429 goto skip;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002430
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002431 //----- find the minimum # of chars to move cursor -------------
2432 //----- 2. Try moving with discreet chars (Newline, [back]space, ...)
2433 cm2[0] = '\0';
2434
2435 // move to the correct row
2436 while (row < Rrow) {
2437 // the cursor has to move up
2438 strcat(cm2, CMup);
2439 Rrow--;
2440 }
2441 while (row > Rrow) {
2442 // the cursor has to move down
2443 strcat(cm2, CMdown);
2444 Rrow++;
2445 }
2446
2447 // now move to the correct column
2448 strcat(cm2, "\r"); // start at col 0
2449 // just send out orignal source char to get to correct place
2450 screenp = &screen[row * columns]; // start of screen line
2451 strncat(cm2, screenp, col);
2452
2453 // pick the shortest cursor motion to send out
2454 if (strlen(cm2) < strlen(cm)) {
2455 cm = cm2;
2456 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002457 skip: ;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002458 }
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002459 last_row = row;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002460#endif /* FEATURE_VI_OPTIMIZE_CURSOR */
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002461 write1(cm);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002462}
2463
2464//----- Erase from cursor to end of line -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002465static void clear_to_eol(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002466{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002467 write1(Ceol); // Erase from cursor to end of line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002468}
2469
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002470static void go_bottom_and_clear_to_eol(void)
2471{
2472 place_cursor(rows - 1, 0, FALSE); // go to bottom of screen
2473 clear_to_eol(); // erase to end of line
2474}
2475
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002476//----- Erase from cursor to end of screen -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002477static void clear_to_eos(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002478{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002479 write1(Ceos); // Erase from cursor to end of screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002480}
2481
2482//----- Start standout mode ------------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002483static void standout_start(void) // send "start reverse video" sequence
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002484{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002485 write1(SOs); // Start reverse video mode
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002486}
2487
2488//----- End standout mode --------------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002489static void standout_end(void) // send "end reverse video" sequence
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002490{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002491 write1(SOn); // End reverse video mode
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002492}
2493
2494//----- Flash the screen --------------------------------------
2495static void flash(int h)
2496{
2497 standout_start(); // send "start reverse video" sequence
2498 redraw(TRUE);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002499 mysleep(h);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002500 standout_end(); // send "end reverse video" sequence
2501 redraw(TRUE);
2502}
2503
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002504static void Indicate_Error(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002505{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002506#if ENABLE_FEATURE_VI_CRASHME
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002507 if (crashme > 0)
2508 return; // generate a random command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002509#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002510 if (!err_method) {
2511 write1(bell); // send out a bell character
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002512 } else {
2513 flash(10);
2514 }
2515}
2516
2517//----- Screen[] Routines --------------------------------------
2518//----- Erase the Screen[] memory ------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002519static void screen_erase(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002520{
2521 memset(screen, ' ', screensize); // clear new screen
2522}
2523
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002524static int bufsum(char *buf, int count)
Paul Fox8552aec2005-09-16 12:20:05 +00002525{
2526 int sum = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002527 char *e = buf + count;
2528
Paul Fox8552aec2005-09-16 12:20:05 +00002529 while (buf < e)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002530 sum += (unsigned char) *buf++;
Paul Fox8552aec2005-09-16 12:20:05 +00002531 return sum;
2532}
2533
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002534//----- Draw the status line at bottom of the screen -------------
2535static void show_status_line(void)
2536{
Paul Foxc3504852005-09-16 12:48:18 +00002537 int cnt = 0, cksum = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002538
Paul Fox8552aec2005-09-16 12:20:05 +00002539 // either we already have an error or status message, or we
2540 // create one.
2541 if (!have_status_msg) {
2542 cnt = format_edit_status();
2543 cksum = bufsum(status_buffer, cnt);
2544 }
2545 if (have_status_msg || ((cnt > 0 && last_status_cksum != cksum))) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002546 last_status_cksum = cksum; // remember if we have seen this line
Denis Vlasenko267e16c2008-10-14 10:34:41 +00002547 go_bottom_and_clear_to_eol();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002548 write1(status_buffer);
Paul Fox8552aec2005-09-16 12:20:05 +00002549 if (have_status_msg) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002550 if (((int)strlen(status_buffer) - (have_status_msg - 1)) >
Paul Fox8552aec2005-09-16 12:20:05 +00002551 (columns - 1) ) {
2552 have_status_msg = 0;
2553 Hit_Return();
2554 }
2555 have_status_msg = 0;
2556 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002557 place_cursor(crow, ccol, FALSE); // put cursor back in correct place
2558 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002559 fflush_all();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002560}
2561
2562//----- format the status buffer, the bottom line of screen ------
Paul Fox8552aec2005-09-16 12:20:05 +00002563// format status buffer, with STANDOUT mode
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002564static void status_line_bold(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002565{
2566 va_list args;
2567
2568 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002569 strcpy(status_buffer, SOs); // Terminal standout mode on
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002570 vsprintf(status_buffer + sizeof(SOs)-1, format, args);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002571 strcat(status_buffer, SOn); // Terminal standout mode off
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002572 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00002573
2574 have_status_msg = 1 + sizeof(SOs) + sizeof(SOn) - 2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002575}
2576
Paul Fox8552aec2005-09-16 12:20:05 +00002577// format status buffer
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002578static void status_line(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002579{
2580 va_list args;
2581
2582 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002583 vsprintf(status_buffer, format, args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002584 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00002585
2586 have_status_msg = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002587}
2588
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002589// copy s to buf, convert unprintable
2590static void print_literal(char *buf, const char *s)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002591{
Denys Vlasenkoc2704542009-11-20 19:14:19 +01002592 char *d;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002593 unsigned char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002594
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002595 buf[0] = '\0';
2596 if (!s[0])
2597 s = "(NULL)";
Denys Vlasenkoc2704542009-11-20 19:14:19 +01002598
2599 d = buf;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002600 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) {
Denys Vlasenkoc2704542009-11-20 19:14:19 +01002606 strcpy(d, SOn);
2607 d += sizeof(SOn)-1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002608 c = '.';
2609 }
Denys Vlasenkoc2704542009-11-20 19:14:19 +01002610 if (c < ' ' || c == 0x7f) {
2611 *d++ = '^';
2612 c |= '@'; /* 0x40 */
2613 if (c == 0x7f)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002614 c = '?';
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002615 }
Denys Vlasenkoc2704542009-11-20 19:14:19 +01002616 *d++ = c;
2617 *d = '\0';
2618 if (c_is_no_print) {
2619 strcpy(d, SOs);
2620 d += sizeof(SOs)-1;
2621 }
2622 if (*s == '\n') {
2623 *d++ = '$';
2624 *d = '\0';
2625 }
2626 if (d - buf > MAX_INPUT_LEN - 10) // paranoia
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002627 break;
2628 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002629}
2630
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002631static void not_implemented(const char *s)
2632{
2633 char buf[MAX_INPUT_LEN];
2634
2635 print_literal(buf, s);
2636 status_line_bold("\'%s\' is not implemented", buf);
2637}
2638
2639// show file status on status line
2640static int format_edit_status(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002641{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00002642 static const char cmd_mode_indicator[] ALIGN1 = "-IR-";
Denis Vlasenkob1759462008-06-20 20:20:54 +00002643
2644#define tot format_edit_status__tot
2645
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002646 int cur, percent, ret, trunc_at;
2647
Paul Fox8552aec2005-09-16 12:20:05 +00002648 // file_modified is now a counter rather than a flag. this
2649 // helps reduce the amount of line counting we need to do.
2650 // (this will cause a mis-reporting of modified status
2651 // once every MAXINT editing operations.)
2652
2653 // it would be nice to do a similar optimization here -- if
2654 // we haven't done a motion that could have changed which line
2655 // we're on, then we shouldn't have to do this count_lines()
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002656 cur = count_lines(text, dot);
Paul Fox8552aec2005-09-16 12:20:05 +00002657
2658 // reduce counting -- the total lines can't have
2659 // changed if we haven't done any edits.
2660 if (file_modified != last_file_modified) {
2661 tot = cur + count_lines(dot, end - 1) - 1;
2662 last_file_modified = file_modified;
2663 }
2664
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002665 // current line percent
2666 // ------------- ~~ ----------
2667 // total lines 100
2668 if (tot > 0) {
2669 percent = (100 * cur) / tot;
2670 } else {
2671 cur = tot = 0;
2672 percent = 100;
2673 }
Eric Andersen0ef24c62005-07-18 10:32:59 +00002674
Paul Fox8552aec2005-09-16 12:20:05 +00002675 trunc_at = columns < STATUS_BUFFER_LEN-1 ?
2676 columns : STATUS_BUFFER_LEN-1;
2677
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002678 ret = snprintf(status_buffer, trunc_at+1,
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002679#if ENABLE_FEATURE_VI_READONLY
Paul Fox8552aec2005-09-16 12:20:05 +00002680 "%c %s%s%s %d/%d %d%%",
2681#else
2682 "%c %s%s %d/%d %d%%",
2683#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002684 cmd_mode_indicator[cmd_mode & 3],
2685 (current_filename != NULL ? current_filename : "No file"),
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002686#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002687 (readonly_mode ? " [Readonly]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00002688#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002689 (file_modified ? " [Modified]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00002690 cur, tot, percent);
2691
2692 if (ret >= 0 && ret < trunc_at)
2693 return ret; /* it all fit */
2694
2695 return trunc_at; /* had to truncate */
Denis Vlasenkob1759462008-06-20 20:20:54 +00002696#undef tot
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002697}
2698
2699//----- Force refresh of all Lines -----------------------------
2700static void redraw(int full_screen)
2701{
2702 place_cursor(0, 0, FALSE); // put cursor in correct place
Denis Vlasenkob1759462008-06-20 20:20:54 +00002703 clear_to_eos(); // tell terminal to erase display
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002704 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00002705 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002706 refresh(full_screen); // this will redraw the entire display
Paul Fox8552aec2005-09-16 12:20:05 +00002707 show_status_line();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002708}
2709
2710//----- Format a text[] line into a buffer ---------------------
Denis Vlasenko68404f12008-03-17 09:00:54 +00002711static char* format_line(char *src /*, int li*/)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002712{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002713 unsigned char c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002714 int co;
2715 int ofs = offset;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002716 char *dest = scr_out_buf; // [MAX_SCR_COLS + MAX_TABSTOP * 2]
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002717
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002718 c = '~'; // char in col 0 in non-existent lines is '~'
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002719 co = 0;
2720 while (co < columns + tabstop) {
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002721 // have we gone past the end?
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002722 if (src < end) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002723 c = *src++;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002724 if (c == '\n')
2725 break;
2726 if ((c & 0x80) && !Isprint(c)) {
2727 c = '.';
2728 }
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002729 if (c < ' ' || c == 0x7f) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002730 if (c == '\t') {
2731 c = ' ';
2732 // co % 8 != 7
2733 while ((co % tabstop) != (tabstop - 1)) {
2734 dest[co++] = c;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002735 }
2736 } else {
2737 dest[co++] = '^';
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002738 if (c == 0x7f)
2739 c = '?';
2740 else
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002741 c += '@'; // Ctrl-X -> 'X'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002742 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002743 }
2744 }
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002745 dest[co++] = c;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002746 // discard scrolled-off-to-the-left portion,
2747 // in tabstop-sized pieces
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002748 if (ofs >= tabstop && co >= tabstop) {
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002749 memmove(dest, dest + tabstop, co);
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002750 co -= tabstop;
2751 ofs -= tabstop;
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002752 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002753 if (src >= end)
2754 break;
2755 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002756 // check "short line, gigantic offset" case
2757 if (co < ofs)
Denis Vlasenko4baed3a2007-12-22 17:31:29 +00002758 ofs = co;
2759 // discard last scrolled off part
2760 co -= ofs;
2761 dest += ofs;
2762 // fill the rest with spaces
2763 if (co < columns)
2764 memset(&dest[co], ' ', columns - co);
2765 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002766}
2767
2768//----- Refresh the changed screen lines -----------------------
2769// Copy the source line from text[] into the buffer and note
2770// if the current screenline is different from the new buffer.
2771// If they differ then that line needs redrawing on the terminal.
2772//
2773static void refresh(int full_screen)
2774{
Denis Vlasenkob1759462008-06-20 20:20:54 +00002775#define old_offset refresh__old_offset
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002776
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002777 int li, changed;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002778 char *tp, *sp; // pointer into text[] and screen[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002779
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002780 if (ENABLE_FEATURE_VI_WIN_RESIZE) {
Denis Vlasenko55995022008-05-18 22:28:26 +00002781 unsigned c = columns, r = rows;
Rob Landleye5e1a102006-06-21 01:15:36 +00002782 get_terminal_width_height(0, &columns, &rows);
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002783 if (rows > MAX_SCR_ROWS) rows = MAX_SCR_ROWS;
2784 if (columns > MAX_SCR_COLS) columns = MAX_SCR_COLS;
2785 full_screen |= (c - columns) | (r - rows);
2786 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002787 sync_cursor(dot, &crow, &ccol); // where cursor will be (on "dot")
2788 tp = screenbegin; // index into text[] of top line
2789
2790 // compare text[] to screen[] and mark screen[] lines that need updating
2791 for (li = 0; li < rows - 1; li++) {
2792 int cs, ce; // column start & end
Denis Vlasenkof882f082007-12-23 02:36:51 +00002793 char *out_buf;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002794 // format current text line
Denis Vlasenko68404f12008-03-17 09:00:54 +00002795 out_buf = format_line(tp /*, li*/);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002796
2797 // skip to the end of the current text[] line
Denis Vlasenkof882f082007-12-23 02:36:51 +00002798 if (tp < end) {
2799 char *t = memchr(tp, '\n', end - tp);
2800 if (!t) t = end - 1;
2801 tp = t + 1;
2802 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002803
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002804 // see if there are any changes between vitual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002805 changed = FALSE; // assume no change
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002806 cs = 0;
2807 ce = columns - 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002808 sp = &screen[li * columns]; // start of screen line
2809 if (full_screen) {
2810 // force re-draw of every single column from 0 - columns-1
2811 goto re0;
2812 }
2813 // compare newly formatted buffer with virtual screen
2814 // look forward for first difference between buf and screen
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002815 for (; cs <= ce; cs++) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002816 if (out_buf[cs] != sp[cs]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002817 changed = TRUE; // mark for redraw
2818 break;
2819 }
2820 }
2821
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002822 // look backward for last difference between out_buf and screen
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002823 for (; ce >= cs; ce--) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002824 if (out_buf[ce] != sp[ce]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002825 changed = TRUE; // mark for redraw
2826 break;
2827 }
2828 }
2829 // now, cs is index of first diff, and ce is index of last diff
2830
2831 // if horz offset has changed, force a redraw
2832 if (offset != old_offset) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002833 re0:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002834 changed = TRUE;
2835 }
2836
2837 // make a sanity check of columns indexes
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002838 if (cs < 0) cs = 0;
2839 if (ce > columns - 1) ce = columns - 1;
2840 if (cs > ce) { cs = 0; ce = columns - 1; }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002841 // is there a change between vitual screen and out_buf
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002842 if (changed) {
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002843 // copy changed part of buffer to virtual screen
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002844 memcpy(sp+cs, out_buf+cs, ce-cs+1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002845
2846 // move cursor to column of first change
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002847 //if (offset != old_offset) {
2848 // // place_cursor is still too stupid
2849 // // to handle offsets correctly
2850 // place_cursor(li, cs, FALSE);
2851 //} else {
2852 place_cursor(li, cs, TRUE);
2853 //}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002854
2855 // write line out to terminal
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002856 fwrite(&sp[cs], ce - cs + 1, 1, stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002857 }
2858 }
2859
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002860 place_cursor(crow, ccol, TRUE);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002861
Denis Vlasenko26b6fba2007-12-21 21:34:37 +00002862 old_offset = offset;
Denis Vlasenkob1759462008-06-20 20:20:54 +00002863#undef old_offset
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002864}
2865
Eric Andersen3f980402001-04-04 17:31:15 +00002866//---------------------------------------------------------------------
2867//----- the Ascii Chart -----------------------------------------------
2868//
2869// 00 nul 01 soh 02 stx 03 etx 04 eot 05 enq 06 ack 07 bel
2870// 08 bs 09 ht 0a nl 0b vt 0c np 0d cr 0e so 0f si
2871// 10 dle 11 dc1 12 dc2 13 dc3 14 dc4 15 nak 16 syn 17 etb
2872// 18 can 19 em 1a sub 1b esc 1c fs 1d gs 1e rs 1f us
2873// 20 sp 21 ! 22 " 23 # 24 $ 25 % 26 & 27 '
2874// 28 ( 29 ) 2a * 2b + 2c , 2d - 2e . 2f /
2875// 30 0 31 1 32 2 33 3 34 4 35 5 36 6 37 7
2876// 38 8 39 9 3a : 3b ; 3c < 3d = 3e > 3f ?
2877// 40 @ 41 A 42 B 43 C 44 D 45 E 46 F 47 G
2878// 48 H 49 I 4a J 4b K 4c L 4d M 4e N 4f O
2879// 50 P 51 Q 52 R 53 S 54 T 55 U 56 V 57 W
2880// 58 X 59 Y 5a Z 5b [ 5c \ 5d ] 5e ^ 5f _
2881// 60 ` 61 a 62 b 63 c 64 d 65 e 66 f 67 g
2882// 68 h 69 i 6a j 6b k 6c l 6d m 6e n 6f o
2883// 70 p 71 q 72 r 73 s 74 t 75 u 76 v 77 w
2884// 78 x 79 y 7a z 7b { 7c | 7d } 7e ~ 7f del
2885//---------------------------------------------------------------------
2886
2887//----- Execute a Vi Command -----------------------------------
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002888static void do_cmd(int c)
Eric Andersen3f980402001-04-04 17:31:15 +00002889{
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002890 const char *msg = msg; // for compiler
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002891 char *p, *q, *save_dot;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002892 char buf[12];
Denis Vlasenkoc3a9dc82008-10-29 00:58:04 +00002893 int dir;
Paul Foxc51fc7b2008-03-06 01:34:23 +00002894 int cnt, i, j;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00002895 int c1;
Eric Andersen3f980402001-04-04 17:31:15 +00002896
Denis Vlasenkoe3cbfb92007-12-22 17:00:11 +00002897// c1 = c; // quiet the compiler
2898// cnt = yf = 0; // quiet the compiler
2899// msg = p = q = save_dot = buf; // quiet the compiler
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002900 memset(buf, '\0', 12);
Eric Andersenbff7a602001-11-17 07:15:43 +00002901
Paul Fox8552aec2005-09-16 12:20:05 +00002902 show_status_line();
2903
Eric Andersenbff7a602001-11-17 07:15:43 +00002904 /* if this is a cursor key, skip these checks */
2905 switch (c) {
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002906 case KEYCODE_UP:
2907 case KEYCODE_DOWN:
2908 case KEYCODE_LEFT:
2909 case KEYCODE_RIGHT:
2910 case KEYCODE_HOME:
2911 case KEYCODE_END:
2912 case KEYCODE_PAGEUP:
2913 case KEYCODE_PAGEDOWN:
2914 case KEYCODE_DELETE:
Eric Andersenbff7a602001-11-17 07:15:43 +00002915 goto key_cmd_mode;
2916 }
2917
Eric Andersen3f980402001-04-04 17:31:15 +00002918 if (cmd_mode == 2) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002919 // flip-flop Insert/Replace mode
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002920 if (c == KEYCODE_INSERT)
Denis Vlasenko2a51af22007-03-21 22:31:24 +00002921 goto dc_i;
Eric Andersen3f980402001-04-04 17:31:15 +00002922 // we are 'R'eplacing the current *dot with new char
2923 if (*dot == '\n') {
2924 // don't Replace past E-o-l
2925 cmd_mode = 1; // convert to insert
2926 } else {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002927 if (1 <= c || Isprint(c)) {
Eric Andersen3f980402001-04-04 17:31:15 +00002928 if (c != 27)
2929 dot = yank_delete(dot, dot, 0, YANKDEL); // delete char
2930 dot = char_insert(dot, c); // insert new char
2931 }
2932 goto dc1;
2933 }
2934 }
2935 if (cmd_mode == 1) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00002936 // hitting "Insert" twice means "R" replace mode
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002937 if (c == KEYCODE_INSERT) goto dc5;
Eric Andersen3f980402001-04-04 17:31:15 +00002938 // insert the char c at "dot"
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002939 if (1 <= c || Isprint(c)) {
2940 dot = char_insert(dot, c);
Eric Andersen3f980402001-04-04 17:31:15 +00002941 }
2942 goto dc1;
2943 }
2944
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002945 key_cmd_mode:
Eric Andersen3f980402001-04-04 17:31:15 +00002946 switch (c) {
Eric Andersen822c3832001-05-07 17:37:43 +00002947 //case 0x01: // soh
2948 //case 0x09: // ht
2949 //case 0x0b: // vt
2950 //case 0x0e: // so
2951 //case 0x0f: // si
2952 //case 0x10: // dle
2953 //case 0x11: // dc1
2954 //case 0x13: // dc3
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002955#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen1c0d3112001-04-16 15:46:44 +00002956 case 0x14: // dc4 ctrl-T
Eric Andersen3f980402001-04-04 17:31:15 +00002957 crashme = (crashme == 0) ? 1 : 0;
Eric Andersen3f980402001-04-04 17:31:15 +00002958 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002959#endif
Eric Andersen822c3832001-05-07 17:37:43 +00002960 //case 0x16: // syn
2961 //case 0x17: // etb
2962 //case 0x18: // can
2963 //case 0x1c: // fs
2964 //case 0x1d: // gs
2965 //case 0x1e: // rs
2966 //case 0x1f: // us
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002967 //case '!': // !-
2968 //case '#': // #-
2969 //case '&': // &-
2970 //case '(': // (-
2971 //case ')': // )-
2972 //case '*': // *-
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002973 //case '=': // =-
2974 //case '@': // @-
2975 //case 'F': // F-
2976 //case 'K': // K-
2977 //case 'Q': // Q-
2978 //case 'S': // S-
2979 //case 'T': // T-
2980 //case 'V': // V-
2981 //case '[': // [-
2982 //case '\\': // \-
2983 //case ']': // ]-
2984 //case '_': // _-
2985 //case '`': // `-
Eric Andersen1c0d3112001-04-16 15:46:44 +00002986 //case 'u': // u- FIXME- there is no undo
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002987 //case 'v': // v-
Denys Vlasenkob22bbff2009-07-04 16:50:43 +02002988 default: // unrecognized command
Eric Andersen3f980402001-04-04 17:31:15 +00002989 buf[0] = c;
2990 buf[1] = '\0';
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00002991 not_implemented(buf);
Eric Andersen3f980402001-04-04 17:31:15 +00002992 end_cmd_q(); // stop adding to q
2993 case 0x00: // nul- ignore
2994 break;
2995 case 2: // ctrl-B scroll up full screen
Denis Vlasenko0112ff52008-10-25 23:23:00 +00002996 case KEYCODE_PAGEUP: // Cursor Key Page Up
Eric Andersen3f980402001-04-04 17:31:15 +00002997 dot_scroll(rows - 2, -1);
2998 break;
Eric Andersen3f980402001-04-04 17:31:15 +00002999 case 4: // ctrl-D scroll down half screen
3000 dot_scroll((rows - 2) / 2, 1);
3001 break;
3002 case 5: // ctrl-E scroll down one line
3003 dot_scroll(1, 1);
3004 break;
3005 case 6: // ctrl-F scroll down full screen
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003006 case KEYCODE_PAGEDOWN: // Cursor Key Page Down
Eric Andersen3f980402001-04-04 17:31:15 +00003007 dot_scroll(rows - 2, 1);
3008 break;
3009 case 7: // ctrl-G show current status
Paul Fox8552aec2005-09-16 12:20:05 +00003010 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003011 break;
3012 case 'h': // h- move left
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003013 case KEYCODE_LEFT: // cursor key Left
Paul Foxd13b90b2005-07-18 22:17:25 +00003014 case 8: // ctrl-H- move left (This may be ERASE char)
Denis Vlasenko2a51af22007-03-21 22:31:24 +00003015 case 0x7f: // DEL- move left (This may be ERASE char)
Eric Andersen3f980402001-04-04 17:31:15 +00003016 if (cmdcnt-- > 1) {
3017 do_cmd(c);
3018 } // repeat cnt
3019 dot_left();
3020 break;
3021 case 10: // Newline ^J
3022 case 'j': // j- goto next line, same col
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003023 case KEYCODE_DOWN: // cursor key Down
Eric Andersen3f980402001-04-04 17:31:15 +00003024 if (cmdcnt-- > 1) {
3025 do_cmd(c);
3026 } // repeat cnt
3027 dot_next(); // go to next B-o-l
3028 dot = move_to_col(dot, ccol + offset); // try stay in same col
3029 break;
3030 case 12: // ctrl-L force redraw whole screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003031 case 18: // ctrl-R force redraw
Eric Andersen822c3832001-05-07 17:37:43 +00003032 place_cursor(0, 0, FALSE); // put cursor in correct place
Eric Andersen3f980402001-04-04 17:31:15 +00003033 clear_to_eos(); // tel terminal to erase display
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003034 mysleep(10);
Eric Andersen3f980402001-04-04 17:31:15 +00003035 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00003036 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003037 refresh(TRUE); // this will redraw the entire display
3038 break;
3039 case 13: // Carriage Return ^M
3040 case '+': // +- goto next line
3041 if (cmdcnt-- > 1) {
3042 do_cmd(c);
3043 } // repeat cnt
3044 dot_next();
3045 dot_skip_over_ws();
3046 break;
3047 case 21: // ctrl-U scroll up half screen
3048 dot_scroll((rows - 2) / 2, -1);
3049 break;
3050 case 25: // ctrl-Y scroll up one line
3051 dot_scroll(1, -1);
3052 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003053 case 27: // esc
Eric Andersen3f980402001-04-04 17:31:15 +00003054 if (cmd_mode == 0)
3055 indicate_error(c);
3056 cmd_mode = 0; // stop insrting
3057 end_cmd_q();
Paul Fox8552aec2005-09-16 12:20:05 +00003058 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003059 break;
3060 case ' ': // move right
3061 case 'l': // move right
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003062 case KEYCODE_RIGHT: // Cursor Key Right
Eric Andersen3f980402001-04-04 17:31:15 +00003063 if (cmdcnt-- > 1) {
3064 do_cmd(c);
3065 } // repeat cnt
3066 dot_right();
3067 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003068#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003069 case '"': // "- name a register to use for Delete/Yank
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003070 c1 = (get_one_char() | 0x20) - 'a'; // | 0x20 is tolower()
3071 if ((unsigned)c1 <= 25) { // a-z?
3072 YDreg = c1;
Eric Andersen3f980402001-04-04 17:31:15 +00003073 } else {
3074 indicate_error(c);
3075 }
3076 break;
3077 case '\'': // '- goto a specific mark
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003078 c1 = (get_one_char() | 0x20) - 'a';
3079 if ((unsigned)c1 <= 25) { // a-z?
Eric Andersen3f980402001-04-04 17:31:15 +00003080 // get the b-o-l
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003081 q = mark[c1];
Eric Andersen3f980402001-04-04 17:31:15 +00003082 if (text <= q && q < end) {
3083 dot = q;
3084 dot_begin(); // go to B-o-l
3085 dot_skip_over_ws();
3086 }
3087 } else if (c1 == '\'') { // goto previous context
3088 dot = swap_context(dot); // swap current and previous context
3089 dot_begin(); // go to B-o-l
3090 dot_skip_over_ws();
3091 } else {
3092 indicate_error(c);
3093 }
3094 break;
3095 case 'm': // m- Mark a line
3096 // this is really stupid. If there are any inserts or deletes
3097 // between text[0] and dot then this mark will not point to the
3098 // correct location! It could be off by many lines!
3099 // Well..., at least its quick and dirty.
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003100 c1 = (get_one_char() | 0x20) - 'a';
3101 if ((unsigned)c1 <= 25) { // a-z?
Eric Andersen3f980402001-04-04 17:31:15 +00003102 // remember the line
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003103 mark[c1] = dot;
Eric Andersen3f980402001-04-04 17:31:15 +00003104 } else {
3105 indicate_error(c);
3106 }
3107 break;
3108 case 'P': // P- Put register before
3109 case 'p': // p- put register after
3110 p = reg[YDreg];
Denis Vlasenko00d84172008-11-24 07:34:42 +00003111 if (p == NULL) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003112 status_line_bold("Nothing in register %c", what_reg());
Eric Andersen3f980402001-04-04 17:31:15 +00003113 break;
3114 }
3115 // are we putting whole lines or strings
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003116 if (strchr(p, '\n') != NULL) {
Eric Andersen3f980402001-04-04 17:31:15 +00003117 if (c == 'P') {
3118 dot_begin(); // putting lines- Put above
3119 }
3120 if (c == 'p') {
3121 // are we putting after very last line?
3122 if (end_line(dot) == (end - 1)) {
3123 dot = end; // force dot to end of text[]
3124 } else {
3125 dot_next(); // next line, then put before
3126 }
3127 }
3128 } else {
3129 if (c == 'p')
3130 dot_right(); // move to right, can move to NL
3131 }
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00003132 string_insert(dot, p); // insert the string
Eric Andersen3f980402001-04-04 17:31:15 +00003133 end_cmd_q(); // stop adding to q
3134 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003135 case 'U': // U- Undo; replace current line with original version
3136 if (reg[Ureg] != 0) {
3137 p = begin_line(dot);
3138 q = end_line(dot);
3139 p = text_hole_delete(p, q); // delete cur line
Denis Vlasenko4ae1e132008-11-19 13:25:14 +00003140 p += string_insert(p, reg[Ureg]); // insert orig line
Eric Andersen3f980402001-04-04 17:31:15 +00003141 dot = p;
3142 dot_skip_over_ws();
3143 }
3144 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003145#endif /* FEATURE_VI_YANKMARK */
Eric Andersen3f980402001-04-04 17:31:15 +00003146 case '$': // $- goto end of line
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003147 case KEYCODE_END: // Cursor Key End
Eric Andersen3f980402001-04-04 17:31:15 +00003148 if (cmdcnt-- > 1) {
3149 do_cmd(c);
3150 } // repeat cnt
Glenn L McGrathee829062004-01-21 10:59:45 +00003151 dot = end_line(dot);
Eric Andersen3f980402001-04-04 17:31:15 +00003152 break;
3153 case '%': // %- find matching char of pair () [] {}
3154 for (q = dot; q < end && *q != '\n'; q++) {
3155 if (strchr("()[]{}", *q) != NULL) {
3156 // we found half of a pair
3157 p = find_pair(q, *q);
3158 if (p == NULL) {
3159 indicate_error(c);
3160 } else {
3161 dot = p;
3162 }
3163 break;
3164 }
3165 }
3166 if (*q == '\n')
3167 indicate_error(c);
3168 break;
3169 case 'f': // f- forward to a user specified char
3170 last_forward_char = get_one_char(); // get the search char
3171 //
Eric Andersenaff114c2004-04-14 17:51:38 +00003172 // dont separate these two commands. 'f' depends on ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003173 //
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003174 //**** fall through to ... ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003175 case ';': // ;- look at rest of line for last forward char
3176 if (cmdcnt-- > 1) {
Eric Andersen822c3832001-05-07 17:37:43 +00003177 do_cmd(';');
Eric Andersen3f980402001-04-04 17:31:15 +00003178 } // repeat cnt
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003179 if (last_forward_char == 0)
3180 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003181 q = dot + 1;
3182 while (q < end - 1 && *q != '\n' && *q != last_forward_char) {
3183 q++;
3184 }
3185 if (*q == last_forward_char)
3186 dot = q;
3187 break;
Paul Foxb5ee8db2008-02-14 01:17:01 +00003188 case ',': // repeat latest 'f' in opposite direction
3189 if (cmdcnt-- > 1) {
3190 do_cmd(',');
3191 } // repeat cnt
3192 if (last_forward_char == 0)
3193 break;
3194 q = dot - 1;
3195 while (q >= text && *q != '\n' && *q != last_forward_char) {
3196 q--;
3197 }
3198 if (q >= text && *q == last_forward_char)
3199 dot = q;
3200 break;
3201
Eric Andersen3f980402001-04-04 17:31:15 +00003202 case '-': // -- goto prev line
3203 if (cmdcnt-- > 1) {
3204 do_cmd(c);
3205 } // repeat cnt
3206 dot_prev();
3207 dot_skip_over_ws();
3208 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003209#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003210 case '.': // .- repeat the last modifying command
3211 // Stuff the last_modifying_cmd back into stdin
3212 // and let it be re-executed.
Denis Vlasenkob1759462008-06-20 20:20:54 +00003213 if (lmc_len > 0) {
Paul Foxc51fc7b2008-03-06 01:34:23 +00003214 last_modifying_cmd[lmc_len] = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003215 ioq = ioq_start = xstrdup(last_modifying_cmd);
Eric Andersen3f980402001-04-04 17:31:15 +00003216 }
3217 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003218#endif
3219#if ENABLE_FEATURE_VI_SEARCH
Eric Andersen3f980402001-04-04 17:31:15 +00003220 case '?': // /- search for a pattern
3221 case '/': // /- search for a pattern
3222 buf[0] = c;
3223 buf[1] = '\0';
3224 q = get_input_line(buf); // get input line- use "status line"
Paul Fox4917c112008-03-05 16:44:02 +00003225 if (q[0] && !q[1]) {
3226 if (last_search_pattern[0])
Denis Vlasenkoc3a9dc82008-10-29 00:58:04 +00003227 last_search_pattern[0] = c;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003228 goto dc3; // if no pat re-use old pat
Paul Fox4917c112008-03-05 16:44:02 +00003229 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003230 if (q[0]) { // strlen(q) > 1: new pat- save it and find
Eric Andersen3f980402001-04-04 17:31:15 +00003231 // there is a new pat
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00003232 free(last_search_pattern);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003233 last_search_pattern = xstrdup(q);
Eric Andersen3f980402001-04-04 17:31:15 +00003234 goto dc3; // now find the pattern
3235 }
3236 // user changed mind and erased the "/"- do nothing
3237 break;
3238 case 'N': // N- backward search for last pattern
3239 if (cmdcnt-- > 1) {
3240 do_cmd(c);
3241 } // repeat cnt
3242 dir = BACK; // assume BACKWARD search
3243 p = dot - 1;
3244 if (last_search_pattern[0] == '?') {
3245 dir = FORWARD;
3246 p = dot + 1;
3247 }
3248 goto dc4; // now search for pattern
3249 break;
3250 case 'n': // n- repeat search for last pattern
3251 // search rest of text[] starting at next char
3252 // if search fails return orignal "p" not the "p+1" address
3253 if (cmdcnt-- > 1) {
3254 do_cmd(c);
3255 } // repeat cnt
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003256 dc3:
Denis Vlasenkoc3a9dc82008-10-29 00:58:04 +00003257 dir = FORWARD; // assume FORWARD search
3258 p = dot + 1;
Eric Andersen3f980402001-04-04 17:31:15 +00003259 if (last_search_pattern[0] == '?') {
3260 dir = BACK;
3261 p = dot - 1;
3262 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003263 dc4:
Eric Andersen3f980402001-04-04 17:31:15 +00003264 q = char_search(p, last_search_pattern + 1, dir, FULL);
3265 if (q != NULL) {
3266 dot = q; // good search, update "dot"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003267 msg = "";
Eric Andersen3f980402001-04-04 17:31:15 +00003268 goto dc2;
3269 }
3270 // no pattern found between "dot" and "end"- continue at top
3271 p = text;
3272 if (dir == BACK) {
3273 p = end - 1;
3274 }
3275 q = char_search(p, last_search_pattern + 1, dir, FULL);
3276 if (q != NULL) { // found something
3277 dot = q; // found new pattern- goto it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003278 msg = "search hit BOTTOM, continuing at TOP";
Eric Andersen3f980402001-04-04 17:31:15 +00003279 if (dir == BACK) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003280 msg = "search hit TOP, continuing at BOTTOM";
Eric Andersen3f980402001-04-04 17:31:15 +00003281 }
3282 } else {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003283 msg = "Pattern not found";
Eric Andersen3f980402001-04-04 17:31:15 +00003284 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003285 dc2:
3286 if (*msg)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003287 status_line_bold("%s", msg);
Eric Andersen3f980402001-04-04 17:31:15 +00003288 break;
3289 case '{': // {- move backward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003290 q = char_search(dot, "\n\n", BACK, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003291 if (q != NULL) { // found blank line
3292 dot = next_line(q); // move to next blank line
3293 }
3294 break;
3295 case '}': // }- move forward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003296 q = char_search(dot, "\n\n", FORWARD, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003297 if (q != NULL) { // found blank line
3298 dot = next_line(q); // move to next blank line
3299 }
3300 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003301#endif /* FEATURE_VI_SEARCH */
Eric Andersen3f980402001-04-04 17:31:15 +00003302 case '0': // 0- goto begining of line
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003303 case '1': // 1-
3304 case '2': // 2-
3305 case '3': // 3-
3306 case '4': // 4-
3307 case '5': // 5-
3308 case '6': // 6-
3309 case '7': // 7-
3310 case '8': // 8-
3311 case '9': // 9-
Eric Andersen3f980402001-04-04 17:31:15 +00003312 if (c == '0' && cmdcnt < 1) {
3313 dot_begin(); // this was a standalone zero
3314 } else {
3315 cmdcnt = cmdcnt * 10 + (c - '0'); // this 0 is part of a number
3316 }
3317 break;
3318 case ':': // :- the colon mode commands
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003319 p = get_input_line(":"); // get input line- use "status line"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003320#if ENABLE_FEATURE_VI_COLON
Eric Andersen3f980402001-04-04 17:31:15 +00003321 colon(p); // execute the command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003322#else
Eric Andersen822c3832001-05-07 17:37:43 +00003323 if (*p == ':')
3324 p++; // move past the ':'
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003325 cnt = strlen(p);
Eric Andersen822c3832001-05-07 17:37:43 +00003326 if (cnt <= 0)
3327 break;
Denys Vlasenko6548edd2009-06-15 12:44:11 +02003328 if (strncmp(p, "quit", cnt) == 0
3329 || strncmp(p, "q!", cnt) == 0 // delete lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003330 ) {
Matt Kraai1f0c4362001-12-20 23:13:26 +00003331 if (file_modified && p[1] != '!') {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003332 status_line_bold("No write since last change (:quit! overrides)");
Eric Andersen3f980402001-04-04 17:31:15 +00003333 } else {
3334 editing = 0;
3335 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02003336 } else if (strncmp(p, "write", cnt) == 0
3337 || strncmp(p, "wq", cnt) == 0
3338 || strncmp(p, "wn", cnt) == 0
3339 || (p[0] == 'x' && !p[1])
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003340 ) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003341 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00003342 if (cnt < 0) {
3343 if (cnt == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003344 status_line_bold("Write error: %s", strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00003345 } else {
3346 file_modified = 0;
3347 last_file_modified = -1;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003348 status_line("\"%s\" %dL, %dC", current_filename, count_lines(text, end - 1), cnt);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003349 if (p[0] == 'x' || p[1] == 'q' || p[1] == 'n'
3350 || p[0] == 'X' || p[1] == 'Q' || p[1] == 'N'
3351 ) {
Paul Fox61e45db2005-10-09 14:43:22 +00003352 editing = 0;
3353 }
Eric Andersen3f980402001-04-04 17:31:15 +00003354 }
Denys Vlasenko6548edd2009-06-15 12:44:11 +02003355 } else if (strncmp(p, "file", cnt) == 0) {
Paul Fox8552aec2005-09-16 12:20:05 +00003356 last_status_cksum = 0; // force status update
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003357 } else if (sscanf(p, "%d", &j) > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003358 dot = find_line(j); // go to line # j
3359 dot_skip_over_ws();
Denys Vlasenkob22bbff2009-07-04 16:50:43 +02003360 } else { // unrecognized cmd
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003361 not_implemented(p);
Eric Andersen3f980402001-04-04 17:31:15 +00003362 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003363#endif /* !FEATURE_VI_COLON */
Eric Andersen3f980402001-04-04 17:31:15 +00003364 break;
3365 case '<': // <- Left shift something
3366 case '>': // >- Right shift something
3367 cnt = count_lines(text, dot); // remember what line we are on
3368 c1 = get_one_char(); // get the type of thing to delete
3369 find_range(&p, &q, c1);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003370 yank_delete(p, q, 1, YANKONLY); // save copy before change
Eric Andersen3f980402001-04-04 17:31:15 +00003371 p = begin_line(p);
3372 q = end_line(q);
3373 i = count_lines(p, q); // # of lines we are shifting
3374 for ( ; i > 0; i--, p = next_line(p)) {
3375 if (c == '<') {
3376 // shift left- remove tab or 8 spaces
3377 if (*p == '\t') {
3378 // shrink buffer 1 char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003379 text_hole_delete(p, p);
Eric Andersen3f980402001-04-04 17:31:15 +00003380 } else if (*p == ' ') {
3381 // we should be calculating columns, not just SPACE
3382 for (j = 0; *p == ' ' && j < tabstop; j++) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003383 text_hole_delete(p, p);
Eric Andersen3f980402001-04-04 17:31:15 +00003384 }
3385 }
3386 } else if (c == '>') {
3387 // shift right -- add tab or 8 spaces
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003388 char_insert(p, '\t');
Eric Andersen3f980402001-04-04 17:31:15 +00003389 }
3390 }
3391 dot = find_line(cnt); // what line were we on
3392 dot_skip_over_ws();
3393 end_cmd_q(); // stop adding to q
3394 break;
3395 case 'A': // A- append at e-o-l
3396 dot_end(); // go to e-o-l
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003397 //**** fall through to ... 'a'
Eric Andersen3f980402001-04-04 17:31:15 +00003398 case 'a': // a- append after current char
3399 if (*dot != '\n')
3400 dot++;
3401 goto dc_i;
3402 break;
3403 case 'B': // B- back a blank-delimited Word
3404 case 'E': // E- end of a blank-delimited word
3405 case 'W': // W- forward a blank-delimited word
3406 if (cmdcnt-- > 1) {
3407 do_cmd(c);
3408 } // repeat cnt
3409 dir = FORWARD;
3410 if (c == 'B')
3411 dir = BACK;
3412 if (c == 'W' || isspace(dot[dir])) {
3413 dot = skip_thing(dot, 1, dir, S_TO_WS);
3414 dot = skip_thing(dot, 2, dir, S_OVER_WS);
3415 }
3416 if (c != 'W')
3417 dot = skip_thing(dot, 1, dir, S_BEFORE_WS);
3418 break;
3419 case 'C': // C- Change to e-o-l
3420 case 'D': // D- delete to e-o-l
3421 save_dot = dot;
3422 dot = dollar_line(dot); // move to before NL
3423 // copy text into a register and delete
3424 dot = yank_delete(save_dot, dot, 0, YANKDEL); // delete to e-o-l
3425 if (c == 'C')
3426 goto dc_i; // start inserting
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003427#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003428 if (c == 'D')
3429 end_cmd_q(); // stop adding to q
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003430#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003431 break;
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003432 case 'g': // 'gg' goto a line number (vim) (default: very first line)
Paul Foxb5ee8db2008-02-14 01:17:01 +00003433 c1 = get_one_char();
3434 if (c1 != 'g') {
3435 buf[0] = 'g';
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003436 buf[1] = c1; // TODO: if Unicode?
Paul Foxb5ee8db2008-02-14 01:17:01 +00003437 buf[2] = '\0';
3438 not_implemented(buf);
3439 break;
3440 }
3441 if (cmdcnt == 0)
3442 cmdcnt = 1;
3443 /* fall through */
Eric Andersen822c3832001-05-07 17:37:43 +00003444 case 'G': // G- goto to a line number (default= E-O-F)
3445 dot = end - 1; // assume E-O-F
Eric Andersen1c0d3112001-04-16 15:46:44 +00003446 if (cmdcnt > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003447 dot = find_line(cmdcnt); // what line is #cmdcnt
Eric Andersen1c0d3112001-04-16 15:46:44 +00003448 }
3449 dot_skip_over_ws();
3450 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003451 case 'H': // H- goto top line on screen
3452 dot = screenbegin;
3453 if (cmdcnt > (rows - 1)) {
3454 cmdcnt = (rows - 1);
3455 }
3456 if (cmdcnt-- > 1) {
3457 do_cmd('+');
3458 } // repeat cnt
3459 dot_skip_over_ws();
3460 break;
3461 case 'I': // I- insert before first non-blank
3462 dot_begin(); // 0
3463 dot_skip_over_ws();
Bernhard Reutner-Fischera985d302008-02-11 11:44:38 +00003464 //**** fall through to ... 'i'
Eric Andersen3f980402001-04-04 17:31:15 +00003465 case 'i': // i- insert before current char
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003466 case KEYCODE_INSERT: // Cursor Key Insert
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003467 dc_i:
Eric Andersen3f980402001-04-04 17:31:15 +00003468 cmd_mode = 1; // start insrting
Eric Andersen3f980402001-04-04 17:31:15 +00003469 break;
3470 case 'J': // J- join current and next lines together
3471 if (cmdcnt-- > 2) {
3472 do_cmd(c);
3473 } // repeat cnt
3474 dot_end(); // move to NL
3475 if (dot < end - 1) { // make sure not last char in text[]
3476 *dot++ = ' '; // replace NL with space
Paul Fox8552aec2005-09-16 12:20:05 +00003477 file_modified++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003478 while (isblank(*dot)) { // delete leading WS
Eric Andersen3f980402001-04-04 17:31:15 +00003479 dot_delete();
3480 }
3481 }
3482 end_cmd_q(); // stop adding to q
3483 break;
3484 case 'L': // L- goto bottom line on screen
3485 dot = end_screen();
3486 if (cmdcnt > (rows - 1)) {
3487 cmdcnt = (rows - 1);
3488 }
3489 if (cmdcnt-- > 1) {
3490 do_cmd('-');
3491 } // repeat cnt
3492 dot_begin();
3493 dot_skip_over_ws();
3494 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003495 case 'M': // M- goto middle line on screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003496 dot = screenbegin;
3497 for (cnt = 0; cnt < (rows-1) / 2; cnt++)
3498 dot = next_line(dot);
3499 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003500 case 'O': // O- open a empty line above
Eric Andersen822c3832001-05-07 17:37:43 +00003501 // 0i\n ESC -i
Eric Andersen3f980402001-04-04 17:31:15 +00003502 p = begin_line(dot);
3503 if (p[-1] == '\n') {
3504 dot_prev();
3505 case 'o': // o- open a empty line below; Yes, I know it is in the middle of the "if (..."
3506 dot_end();
3507 dot = char_insert(dot, '\n');
3508 } else {
3509 dot_begin(); // 0
Eric Andersen822c3832001-05-07 17:37:43 +00003510 dot = char_insert(dot, '\n'); // i\n ESC
Eric Andersen3f980402001-04-04 17:31:15 +00003511 dot_prev(); // -
3512 }
3513 goto dc_i;
3514 break;
3515 case 'R': // R- continuous Replace char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003516 dc5:
Eric Andersen3f980402001-04-04 17:31:15 +00003517 cmd_mode = 2;
Eric Andersen3f980402001-04-04 17:31:15 +00003518 break;
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003519 case KEYCODE_DELETE:
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003520 c = 'x';
3521 // fall through
Eric Andersen3f980402001-04-04 17:31:15 +00003522 case 'X': // X- delete char before dot
3523 case 'x': // x- delete the current char
3524 case 's': // s- substitute the current char
3525 if (cmdcnt-- > 1) {
3526 do_cmd(c);
3527 } // repeat cnt
3528 dir = 0;
3529 if (c == 'X')
3530 dir = -1;
3531 if (dot[dir] != '\n') {
3532 if (c == 'X')
3533 dot--; // delete prev char
3534 dot = yank_delete(dot, dot, 0, YANKDEL); // delete char
3535 }
3536 if (c == 's')
3537 goto dc_i; // start insrting
3538 end_cmd_q(); // stop adding to q
3539 break;
3540 case 'Z': // Z- if modified, {write}; exit
3541 // ZZ means to save file (if necessary), then exit
3542 c1 = get_one_char();
3543 if (c1 != 'Z') {
3544 indicate_error(c);
3545 break;
3546 }
Paul Foxf0305b72006-03-28 14:18:21 +00003547 if (file_modified) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003548 if (ENABLE_FEATURE_VI_READONLY && readonly_mode) {
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003549 status_line_bold("\"%s\" File is read only", current_filename);
Denis Vlasenko92758142006-10-03 19:56:34 +00003550 break;
Paul Foxf0305b72006-03-28 14:18:21 +00003551 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003552 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00003553 if (cnt < 0) {
3554 if (cnt == -1)
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003555 status_line_bold("Write error: %s", strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00003556 } else if (cnt == (end - 1 - text + 1)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003557 editing = 0;
3558 }
3559 } else {
3560 editing = 0;
3561 }
3562 break;
3563 case '^': // ^- move to first non-blank on line
3564 dot_begin();
3565 dot_skip_over_ws();
3566 break;
3567 case 'b': // b- back a word
3568 case 'e': // e- end of word
3569 if (cmdcnt-- > 1) {
3570 do_cmd(c);
3571 } // repeat cnt
3572 dir = FORWARD;
3573 if (c == 'b')
3574 dir = BACK;
3575 if ((dot + dir) < text || (dot + dir) > end - 1)
3576 break;
3577 dot += dir;
3578 if (isspace(*dot)) {
3579 dot = skip_thing(dot, (c == 'e') ? 2 : 1, dir, S_OVER_WS);
3580 }
3581 if (isalnum(*dot) || *dot == '_') {
3582 dot = skip_thing(dot, 1, dir, S_END_ALNUM);
3583 } else if (ispunct(*dot)) {
3584 dot = skip_thing(dot, 1, dir, S_END_PUNCT);
3585 }
3586 break;
3587 case 'c': // c- change something
3588 case 'd': // d- delete something
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003589#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003590 case 'y': // y- yank something
3591 case 'Y': // Y- Yank a line
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003592#endif
Denis Vlasenkod44c1532008-10-14 12:59:42 +00003593 {
Paul Foxc51fc7b2008-03-06 01:34:23 +00003594 int yf, ml, whole = 0;
Eric Andersen3f980402001-04-04 17:31:15 +00003595 yf = YANKDEL; // assume either "c" or "d"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003596#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003597 if (c == 'y' || c == 'Y')
3598 yf = YANKONLY;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003599#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003600 c1 = 'y';
3601 if (c != 'Y')
3602 c1 = get_one_char(); // get the type of thing to delete
Paul Foxc51fc7b2008-03-06 01:34:23 +00003603 // determine range, and whether it spans lines
3604 ml = find_range(&p, &q, c1);
Eric Andersen3f980402001-04-04 17:31:15 +00003605 if (c1 == 27) { // ESC- user changed mind and wants out
3606 c = c1 = 27; // Escape- do nothing
3607 } else if (strchr("wW", c1)) {
3608 if (c == 'c') {
3609 // don't include trailing WS as part of word
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003610 while (isblank(*q)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003611 if (q <= text || q[-1] == '\n')
3612 break;
3613 q--;
3614 }
3615 }
Paul Foxc51fc7b2008-03-06 01:34:23 +00003616 dot = yank_delete(p, q, ml, yf); // delete word
3617 } else if (strchr("^0bBeEft%$ lh\b\177", c1)) {
3618 // partial line copy text into a register and delete
3619 dot = yank_delete(p, q, ml, yf); // delete word
3620 } else if (strchr("cdykjHL+-{}\r\n", c1)) {
3621 // whole line copy text into a register and delete
3622 dot = yank_delete(p, q, ml, yf); // delete lines
3623 whole = 1;
3624 } else {
3625 // could not recognize object
3626 c = c1 = 27; // error-
3627 ml = 0;
3628 indicate_error(c);
3629 }
3630 if (ml && whole) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003631 if (c == 'c') {
3632 dot = char_insert(dot, '\n');
3633 // on the last line of file don't move to prev line
Paul Foxc51fc7b2008-03-06 01:34:23 +00003634 if (whole && dot != (end-1)) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00003635 dot_prev();
3636 }
3637 } else if (c == 'd') {
Eric Andersen3f980402001-04-04 17:31:15 +00003638 dot_begin();
3639 dot_skip_over_ws();
3640 }
Eric Andersen3f980402001-04-04 17:31:15 +00003641 }
3642 if (c1 != 27) {
3643 // if CHANGING, not deleting, start inserting after the delete
3644 if (c == 'c') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003645 strcpy(buf, "Change");
Eric Andersen3f980402001-04-04 17:31:15 +00003646 goto dc_i; // start inserting
3647 }
3648 if (c == 'd') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003649 strcpy(buf, "Delete");
Eric Andersen3f980402001-04-04 17:31:15 +00003650 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003651#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003652 if (c == 'y' || c == 'Y') {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003653 strcpy(buf, "Yank");
Eric Andersen3f980402001-04-04 17:31:15 +00003654 }
3655 p = reg[YDreg];
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003656 q = p + strlen(p);
Eric Andersen3f980402001-04-04 17:31:15 +00003657 for (cnt = 0; p <= q; p++) {
3658 if (*p == '\n')
3659 cnt++;
3660 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003661 status_line("%s %d lines (%d chars) using [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003662 buf, cnt, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003663#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003664 end_cmd_q(); // stop adding to q
3665 }
3666 break;
Denis Vlasenkod44c1532008-10-14 12:59:42 +00003667 }
Eric Andersen3f980402001-04-04 17:31:15 +00003668 case 'k': // k- goto prev line, same col
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003669 case KEYCODE_UP: // cursor key Up
Eric Andersen3f980402001-04-04 17:31:15 +00003670 if (cmdcnt-- > 1) {
3671 do_cmd(c);
3672 } // repeat cnt
3673 dot_prev();
3674 dot = move_to_col(dot, ccol + offset); // try stay in same col
3675 break;
3676 case 'r': // r- replace the current char with user input
3677 c1 = get_one_char(); // get the replacement char
3678 if (*dot != '\n') {
3679 *dot = c1;
Denis Vlasenkob1759462008-06-20 20:20:54 +00003680 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003681 }
3682 end_cmd_q(); // stop adding to q
3683 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003684 case 't': // t- move to char prior to next x
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00003685 last_forward_char = get_one_char();
3686 do_cmd(';');
3687 if (*dot == last_forward_char)
3688 dot_left();
Denis Vlasenko4c9e9c42008-10-20 08:59:03 +00003689 last_forward_char = 0;
Eric Andersen822c3832001-05-07 17:37:43 +00003690 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003691 case 'w': // w- forward a word
3692 if (cmdcnt-- > 1) {
3693 do_cmd(c);
3694 } // repeat cnt
3695 if (isalnum(*dot) || *dot == '_') { // we are on ALNUM
3696 dot = skip_thing(dot, 1, FORWARD, S_END_ALNUM);
3697 } else if (ispunct(*dot)) { // we are on PUNCT
3698 dot = skip_thing(dot, 1, FORWARD, S_END_PUNCT);
3699 }
3700 if (dot < end - 1)
3701 dot++; // move over word
3702 if (isspace(*dot)) {
3703 dot = skip_thing(dot, 2, FORWARD, S_OVER_WS);
3704 }
3705 break;
3706 case 'z': // z-
3707 c1 = get_one_char(); // get the replacement char
3708 cnt = 0;
3709 if (c1 == '.')
3710 cnt = (rows - 2) / 2; // put dot at center
3711 if (c1 == '-')
3712 cnt = rows - 2; // put dot at bottom
3713 screenbegin = begin_line(dot); // start dot at top
3714 dot_scroll(cnt, -1);
3715 break;
3716 case '|': // |- move to column "cmdcnt"
3717 dot = move_to_col(dot, cmdcnt - 1); // try to move to column
3718 break;
3719 case '~': // ~- flip the case of letters a-z -> A-Z
3720 if (cmdcnt-- > 1) {
3721 do_cmd(c);
3722 } // repeat cnt
3723 if (islower(*dot)) {
3724 *dot = toupper(*dot);
Denis Vlasenkob1759462008-06-20 20:20:54 +00003725 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003726 } else if (isupper(*dot)) {
3727 *dot = tolower(*dot);
Denis Vlasenkob1759462008-06-20 20:20:54 +00003728 file_modified++;
Eric Andersen3f980402001-04-04 17:31:15 +00003729 }
3730 dot_right();
3731 end_cmd_q(); // stop adding to q
3732 break;
3733 //----- The Cursor and Function Keys -----------------------------
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003734 case KEYCODE_HOME: // Cursor Key Home
Eric Andersen3f980402001-04-04 17:31:15 +00003735 dot_begin();
3736 break;
3737 // The Fn keys could point to do_macro which could translate them
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003738#if 0
3739 case KEYCODE_FUN1: // Function Key F1
3740 case KEYCODE_FUN2: // Function Key F2
3741 case KEYCODE_FUN3: // Function Key F3
3742 case KEYCODE_FUN4: // Function Key F4
3743 case KEYCODE_FUN5: // Function Key F5
3744 case KEYCODE_FUN6: // Function Key F6
3745 case KEYCODE_FUN7: // Function Key F7
3746 case KEYCODE_FUN8: // Function Key F8
3747 case KEYCODE_FUN9: // Function Key F9
3748 case KEYCODE_FUN10: // Function Key F10
3749 case KEYCODE_FUN11: // Function Key F11
3750 case KEYCODE_FUN12: // Function Key F12
Eric Andersen3f980402001-04-04 17:31:15 +00003751 break;
Denis Vlasenko0112ff52008-10-25 23:23:00 +00003752#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003753 }
3754
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003755 dc1:
Eric Andersen3f980402001-04-04 17:31:15 +00003756 // if text[] just became empty, add back an empty line
3757 if (end == text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003758 char_insert(text, '\n'); // start empty buf with dummy line
Eric Andersen3f980402001-04-04 17:31:15 +00003759 dot = text;
3760 }
3761 // it is OK for dot to exactly equal to end, otherwise check dot validity
3762 if (dot != end) {
3763 dot = bound_dot(dot); // make sure "dot" is valid
3764 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003765#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003766 check_context(c); // update the current context
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003767#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003768
3769 if (!isdigit(c))
3770 cmdcnt = 0; // cmd was not a number, reset cmdcnt
3771 cnt = dot - begin_line(dot);
3772 // Try to stay off of the Newline
3773 if (*dot == '\n' && cnt > 0 && cmd_mode == 0)
3774 dot--;
3775}
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003776
Paul Fox35e9c5d2008-03-06 16:26:12 +00003777/* NB! the CRASHME code is unmaintained, and doesn't currently build */
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003778#if ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003779static int totalcmds = 0;
3780static int Mp = 85; // Movement command Probability
3781static int Np = 90; // Non-movement command Probability
3782static int Dp = 96; // Delete command Probability
3783static int Ip = 97; // Insert command Probability
3784static int Yp = 98; // Yank command Probability
3785static int Pp = 99; // Put command Probability
3786static int M = 0, N = 0, I = 0, D = 0, Y = 0, P = 0, U = 0;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003787static const char chars[20] = "\t012345 abcdABCD-=.$";
3788static const char *const words[20] = {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003789 "this", "is", "a", "test",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003790 "broadcast", "the", "emergency", "of",
3791 "system", "quick", "brown", "fox",
3792 "jumped", "over", "lazy", "dogs",
3793 "back", "January", "Febuary", "March"
3794};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003795static const char *const lines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003796 "You should have received a copy of the GNU General Public License\n",
3797 "char c, cm, *cmd, *cmd1;\n",
3798 "generate a command by percentages\n",
3799 "Numbers may be typed as a prefix to some commands.\n",
3800 "Quit, discarding changes!\n",
3801 "Forced write, if permission originally not valid.\n",
3802 "In general, any ex or ed command (such as substitute or delete).\n",
3803 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
3804 "Please get w/ me and I will go over it with you.\n",
3805 "The following is a list of scheduled, committed changes.\n",
3806 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
3807 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
3808 "Any question about transactions please contact Sterling Huxley.\n",
3809 "I will try to get back to you by Friday, December 31.\n",
3810 "This Change will be implemented on Friday.\n",
3811 "Let me know if you have problems accessing this;\n",
3812 "Sterling Huxley recently added you to the access list.\n",
3813 "Would you like to go to lunch?\n",
3814 "The last command will be automatically run.\n",
3815 "This is too much english for a computer geek.\n",
3816};
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003817static char *multilines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003818 "You should have received a copy of the GNU General Public License\n",
3819 "char c, cm, *cmd, *cmd1;\n",
3820 "generate a command by percentages\n",
3821 "Numbers may be typed as a prefix to some commands.\n",
3822 "Quit, discarding changes!\n",
3823 "Forced write, if permission originally not valid.\n",
3824 "In general, any ex or ed command (such as substitute or delete).\n",
3825 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
3826 "Please get w/ me and I will go over it with you.\n",
3827 "The following is a list of scheduled, committed changes.\n",
3828 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
3829 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
3830 "Any question about transactions please contact Sterling Huxley.\n",
3831 "I will try to get back to you by Friday, December 31.\n",
3832 "This Change will be implemented on Friday.\n",
3833 "Let me know if you have problems accessing this;\n",
3834 "Sterling Huxley recently added you to the access list.\n",
3835 "Would you like to go to lunch?\n",
3836 "The last command will be automatically run.\n",
3837 "This is too much english for a computer geek.\n",
3838};
3839
3840// create a random command to execute
3841static void crash_dummy()
3842{
3843 static int sleeptime; // how long to pause between commands
3844 char c, cm, *cmd, *cmd1;
3845 int i, cnt, thing, rbi, startrbi, percent;
3846
3847 // "dot" movement commands
3848 cmd1 = " \n\r\002\004\005\006\025\0310^$-+wWeEbBhjklHL";
3849
3850 // is there already a command running?
Denys Vlasenko020f4062009-05-17 16:44:54 +02003851 if (readbuffer[0] > 0)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003852 goto cd1;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003853 cd0:
Denys Vlasenko020f4062009-05-17 16:44:54 +02003854 readbuffer[0] = 'X';
3855 startrbi = rbi = 1;
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003856 sleeptime = 0; // how long to pause between commands
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003857 memset(readbuffer, '\0', sizeof(readbuffer));
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003858 // generate a command by percentages
3859 percent = (int) lrand48() % 100; // get a number from 0-99
3860 if (percent < Mp) { // Movement commands
3861 // available commands
3862 cmd = cmd1;
3863 M++;
3864 } else if (percent < Np) { // non-movement commands
3865 cmd = "mz<>\'\""; // available commands
3866 N++;
3867 } else if (percent < Dp) { // Delete commands
3868 cmd = "dx"; // available commands
3869 D++;
3870 } else if (percent < Ip) { // Inset commands
3871 cmd = "iIaAsrJ"; // available commands
3872 I++;
3873 } else if (percent < Yp) { // Yank commands
3874 cmd = "yY"; // available commands
3875 Y++;
3876 } else if (percent < Pp) { // Put commands
3877 cmd = "pP"; // available commands
3878 P++;
3879 } else {
3880 // We do not know how to handle this command, try again
3881 U++;
3882 goto cd0;
3883 }
3884 // randomly pick one of the available cmds from "cmd[]"
3885 i = (int) lrand48() % strlen(cmd);
3886 cm = cmd[i];
3887 if (strchr(":\024", cm))
3888 goto cd0; // dont allow colon or ctrl-T commands
3889 readbuffer[rbi++] = cm; // put cmd into input buffer
3890
3891 // now we have the command-
3892 // there are 1, 2, and multi char commands
3893 // find out which and generate the rest of command as necessary
3894 if (strchr("dmryz<>\'\"", cm)) { // 2-char commands
3895 cmd1 = " \n\r0$^-+wWeEbBhjklHL";
3896 if (cm == 'm' || cm == '\'' || cm == '\"') { // pick a reg[]
3897 cmd1 = "abcdefghijklmnopqrstuvwxyz";
3898 }
3899 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
3900 c = cmd1[thing];
3901 readbuffer[rbi++] = c; // add movement to input buffer
3902 }
3903 if (strchr("iIaAsc", cm)) { // multi-char commands
3904 if (cm == 'c') {
3905 // change some thing
3906 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
3907 c = cmd1[thing];
3908 readbuffer[rbi++] = c; // add movement to input buffer
3909 }
3910 thing = (int) lrand48() % 4; // what thing to insert
3911 cnt = (int) lrand48() % 10; // how many to insert
3912 for (i = 0; i < cnt; i++) {
3913 if (thing == 0) { // insert chars
3914 readbuffer[rbi++] = chars[((int) lrand48() % strlen(chars))];
3915 } else if (thing == 1) { // insert words
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003916 strcat(readbuffer, words[(int) lrand48() % 20]);
3917 strcat(readbuffer, " ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003918 sleeptime = 0; // how fast to type
3919 } else if (thing == 2) { // insert lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003920 strcat(readbuffer, lines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003921 sleeptime = 0; // how fast to type
3922 } else { // insert multi-lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003923 strcat(readbuffer, multilines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003924 sleeptime = 0; // how fast to type
3925 }
3926 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003927 strcat(readbuffer, "\033");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003928 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02003929 readbuffer[0] = strlen(readbuffer + 1);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003930 cd1:
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003931 totalcmds++;
3932 if (sleeptime > 0)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003933 mysleep(sleeptime); // sleep 1/100 sec
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003934}
3935
3936// test to see if there are any errors
3937static void crash_test()
3938{
3939 static time_t oldtim;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003940
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003941 time_t tim;
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003942 char d[2], msg[80];
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003943
3944 msg[0] = '\0';
3945 if (end < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003946 strcat(msg, "end<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003947 }
3948 if (end > textend) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003949 strcat(msg, "end>textend ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003950 }
3951 if (dot < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003952 strcat(msg, "dot<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003953 }
3954 if (dot > end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003955 strcat(msg, "dot>end ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003956 }
3957 if (screenbegin < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003958 strcat(msg, "screenbegin<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003959 }
3960 if (screenbegin > end - 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003961 strcat(msg, "screenbegin>end-1 ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003962 }
3963
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003964 if (msg[0]) {
Glenn L McGrath7127b582002-12-03 21:48:15 +00003965 printf("\n\n%d: \'%c\' %s\n\n\n%s[Hit return to continue]%s",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003966 totalcmds, last_input_char, msg, SOs, SOn);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01003967 fflush_all();
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00003968 while (safe_read(STDIN_FILENO, d, 1) > 0) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003969 if (d[0] == '\n' || d[0] == '\r')
3970 break;
3971 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003972 }
Denis Vlasenko88adfcd2007-12-22 15:40:13 +00003973 tim = time(NULL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003974 if (tim >= (oldtim + 3)) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003975 sprintf(status_buffer,
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003976 "Tot=%d: M=%d N=%d I=%d D=%d Y=%d P=%d U=%d size=%d",
3977 totalcmds, M, N, I, D, Y, P, U, end - text + 1);
3978 oldtim = tim;
3979 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003980}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003981#endif