blob: 9426ab855588e34f496bf04917debbac36d4ac0e [file] [log] [blame]
Rob Landleye5e1a102006-06-21 01:15:36 +00001/* vi: set sw=4 ts=4: */
Eric Andersen3f980402001-04-04 17:31:15 +00002/*
3 * tiny vi.c: A small 'vi' clone
4 * Copyright (C) 2000, 2001 Sterling Huxley <sterling@europa.com>
5 *
Paul Foxdbf935d2006-03-27 20:29:33 +00006 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen3f980402001-04-04 17:31:15 +00007 */
8
Eric Andersen3f980402001-04-04 17:31:15 +00009/*
Eric Andersen3f980402001-04-04 17:31:15 +000010 * Things To Do:
11 * EXINIT
Eric Andersen1c0d3112001-04-16 15:46:44 +000012 * $HOME/.exrc and ./.exrc
Eric Andersen3f980402001-04-04 17:31:15 +000013 * add magic to search /foo.*bar
14 * add :help command
15 * :map macros
Eric Andersen3f980402001-04-04 17:31:15 +000016 * if mark[] values were line numbers rather than pointers
17 * it would be easier to change the mark when add/delete lines
Eric Andersen1c0d3112001-04-16 15:46:44 +000018 * More intelligence in refresh()
19 * ":r !cmd" and "!cmd" to filter text through an external command
20 * A true "undo" facility
21 * An "ex" line oriented mode- maybe using "cmdedit"
Eric Andersen3f980402001-04-04 17:31:15 +000022 */
23
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000024#include "libbb.h"
Eric Andersen3f980402001-04-04 17:31:15 +000025
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +000026#define ENABLE_FEATURE_VI_CRASHME 0
27
28#if ENABLE_LOCALE_SUPPORT
Glenn L McGrath09adaca2002-12-02 21:18:10 +000029#define Isprint(c) isprint((c))
30#else
Denis Vlasenko2a51af22007-03-21 22:31:24 +000031/* 0x9b is Meta-ESC */
32#define Isprint(c) ((unsigned char)(c) >= ' ' && (c) != 0x7f && (unsigned char)(c) != 0x9b)
Glenn L McGrath09adaca2002-12-02 21:18:10 +000033#endif
34
Denis Vlasenkoe8a07882007-06-10 15:08:44 +000035enum {
36 MAX_LINELEN = CONFIG_FEATURE_VI_MAX_LEN,
37 MAX_SCR_COLS = CONFIG_FEATURE_VI_MAX_LEN,
38};
Eric Andersen3f980402001-04-04 17:31:15 +000039
40// Misc. non-Ascii keys that report an escape sequence
Denis Vlasenko2a51af22007-03-21 22:31:24 +000041#define VI_K_UP (char)128 // cursor key Up
42#define VI_K_DOWN (char)129 // cursor key Down
43#define VI_K_RIGHT (char)130 // Cursor Key Right
44#define VI_K_LEFT (char)131 // cursor key Left
45#define VI_K_HOME (char)132 // Cursor Key Home
46#define VI_K_END (char)133 // Cursor Key End
47#define VI_K_INSERT (char)134 // Cursor Key Insert
48#define VI_K_PAGEUP (char)135 // Cursor Key Page Up
49#define VI_K_PAGEDOWN (char)136 // Cursor Key Page Down
50#define VI_K_FUN1 (char)137 // Function Key F1
51#define VI_K_FUN2 (char)138 // Function Key F2
52#define VI_K_FUN3 (char)139 // Function Key F3
53#define VI_K_FUN4 (char)140 // Function Key F4
54#define VI_K_FUN5 (char)141 // Function Key F5
55#define VI_K_FUN6 (char)142 // Function Key F6
56#define VI_K_FUN7 (char)143 // Function Key F7
57#define VI_K_FUN8 (char)144 // Function Key F8
58#define VI_K_FUN9 (char)145 // Function Key F9
59#define VI_K_FUN10 (char)146 // Function Key F10
60#define VI_K_FUN11 (char)147 // Function Key F11
61#define VI_K_FUN12 (char)148 // Function Key F12
Eric Andersen3f980402001-04-04 17:31:15 +000062
Glenn L McGrath09adaca2002-12-02 21:18:10 +000063/* vt102 typical ESC sequence */
64/* terminal standout start/normal ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000065static const char SOs[] ALIGN1 = "\033[7m";
66static const char SOn[] ALIGN1 = "\033[0m";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000067/* terminal bell sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000068static const char bell[] ALIGN1 = "\007";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000069/* Clear-end-of-line and Clear-end-of-screen ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000070static const char Ceol[] ALIGN1 = "\033[0K";
71static const char Ceos[] ALIGN1 = "\033[0J";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000072/* Cursor motion arbitrary destination ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000073static const char CMrc[] ALIGN1 = "\033[%d;%dH";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000074/* Cursor motion up and down ESC sequence */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000075static const char CMup[] ALIGN1 = "\033[A";
76static const char CMdown[] ALIGN1 = "\n";
Glenn L McGrath09adaca2002-12-02 21:18:10 +000077
78
Rob Landleybc68cd12006-03-10 19:22:06 +000079enum {
80 YANKONLY = FALSE,
81 YANKDEL = TRUE,
82 FORWARD = 1, // code depends on "1" for array index
83 BACK = -1, // code depends on "-1" for array index
84 LIMITED = 0, // how much of text[] in char_search
85 FULL = 1, // how much of text[] in char_search
Eric Andersen3f980402001-04-04 17:31:15 +000086
Rob Landleybc68cd12006-03-10 19:22:06 +000087 S_BEFORE_WS = 1, // used in skip_thing() for moving "dot"
88 S_TO_WS = 2, // used in skip_thing() for moving "dot"
89 S_OVER_WS = 3, // used in skip_thing() for moving "dot"
90 S_END_PUNCT = 4, // used in skip_thing() for moving "dot"
Denis Vlasenko8e858e22007-03-07 09:35:43 +000091 S_END_ALNUM = 5, // used in skip_thing() for moving "dot"
Rob Landleybc68cd12006-03-10 19:22:06 +000092};
Eric Andersen3f980402001-04-04 17:31:15 +000093
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +000094/* vi.c expects chars to be unsigned. */
95/* busybox build system provides that, but it's better */
96/* to audit and fix the source */
Eric Andersen3f980402001-04-04 17:31:15 +000097
Denis Vlasenkoeaabf062007-07-17 23:14:07 +000098static smallint vi_setops;
Glenn L McGrath09adaca2002-12-02 21:18:10 +000099#define VI_AUTOINDENT 1
100#define VI_SHOWMATCH 2
101#define VI_IGNORECASE 4
102#define VI_ERR_METHOD 8
103#define autoindent (vi_setops & VI_AUTOINDENT)
104#define showmatch (vi_setops & VI_SHOWMATCH )
105#define ignorecase (vi_setops & VI_IGNORECASE)
106/* indicate error with beep or flash */
107#define err_method (vi_setops & VI_ERR_METHOD)
108
Eric Andersen3f980402001-04-04 17:31:15 +0000109
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000110static smallint editing; // >0 while we are editing a file
111 // [code audit says "can be 0 or 1 only"]
112static smallint cmd_mode; // 0=command 1=insert 2=replace
113static smallint file_modified; // buffer contents changed
114static smallint last_file_modified = -1;
115static int fn_start; // index of first cmd line file name
116static int save_argc; // how many file names on cmd line
117static int cmdcnt; // repetition count
118static int rows, columns; // the terminal screen is this size
119static int crow, ccol, offset; // cursor is on Crow x Ccol with Horz Ofset
120static char *status_buffer; // mesages to the user
Paul Fox8552aec2005-09-16 12:20:05 +0000121#define STATUS_BUFFER_LEN 200
122static int have_status_msg; // is default edit status needed?
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000123 // [don't make smallint!]
Paul Fox8552aec2005-09-16 12:20:05 +0000124static int last_status_cksum; // hash of current status line
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000125static char *current_filename; // current file name
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000126//static char *text, *end; // pointers to the user data in memory
127static char *screen; // pointer to the virtual screen buffer
128static int screensize; // and its size
129static char *screenbegin; // index into text[], of top line on the screen
130//static char *dot; // where all the action takes place
Eric Andersen3f980402001-04-04 17:31:15 +0000131static int tabstop;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000132static char erase_char; // the users erase character
133static char last_input_char; // last char read from user
134static char last_forward_char; // last char searched for with 'f'
Eric Andersen3f980402001-04-04 17:31:15 +0000135
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000136#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000137//static smallint vi_readonly, readonly;
138static smallint readonly_mode = 0;
Denis Vlasenko6a2f7f42007-08-16 10:35:17 +0000139#define SET_READONLY_FILE(flags) ((flags) |= 0x01)
140#define SET_READONLY_MODE(flags) ((flags) |= 0x02)
141#define UNSET_READONLY_FILE(flags) ((flags) &= 0xfe)
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000142#else
143#define readonly_mode 0
144#define SET_READONLY_FILE(flags)
145#define SET_READONLY_MODE(flags)
146#define UNSET_READONLY_FILE(flags)
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000147#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000148
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000149#if ENABLE_FEATURE_VI_DOT_CMD
150static smallint adding2q; // are we currently adding user input to q
151static char *last_modifying_cmd; // last modifying cmd for "."
152static char *ioq, *ioq_start; // pointer to string for get_one_char to "read"
153#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000154#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Eric Andersen822c3832001-05-07 17:37:43 +0000155static int last_row; // where the cursor was last moved to
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000156#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000157#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000158static int my_pid;
159#endif
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000160#if ENABLE_FEATURE_VI_DOT_CMD || ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000161static char *modifying_cmds; // cmds that modify text[]
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000162#endif
163#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000164static char *last_search_pattern; // last pattern from a '/' or '?' search
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000165#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000166
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000167/* Moving biggest data to malloced space... */
168struct globals {
169 /* many references - keep near the top of globals */
170 char *text, *end; // pointers to the user data in memory
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000171 int text_size; // size of the allocated buffer
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000172 char *dot; // where all the action takes place
173#if ENABLE_FEATURE_VI_YANKMARK
174 char *reg[28]; // named register a-z, "D", and "U" 0-25,26,27
175 int YDreg, Ureg; // default delete register and orig line for "U"
176 char *mark[28]; // user marks points somewhere in text[]- a-z and previous context ''
177 char *context_start, *context_end;
178#endif
179 /* a few references only */
180#if ENABLE_FEATURE_VI_USE_SIGNALS
181 jmp_buf restart; // catch_sig()
182#endif
183 struct termios term_orig, term_vi; // remember what the cooked mode was
184#if ENABLE_FEATURE_VI_COLON
185 char *initial_cmds[3]; // currently 2 entries, NULL terminated
186#endif
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000187 char readbuffer[MAX_LINELEN];
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000188};
189#define G (*ptr_to_globals)
190#define text (G.text )
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000191#define text_size (G.text_size )
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000192#define end (G.end )
193#define dot (G.dot )
194#define reg (G.reg )
195#define YDreg (G.YDreg )
196#define Ureg (G.Ureg )
197#define mark (G.mark )
198#define context_start (G.context_start )
199#define context_end (G.context_end )
200#define restart (G.restart )
201#define term_orig (G.term_orig )
202#define term_vi (G.term_vi )
203#define initial_cmds (G.initial_cmds )
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000204#define readbuffer (G.readbuffer )
205#define INIT_G() do { \
206 PTR_TO_GLOBALS = xzalloc(sizeof(G)); \
207} while (0)
Eric Andersen3f980402001-04-04 17:31:15 +0000208
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000209static int init_text_buffer(char *); // init from file or create new
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000210static void edit_file(char *); // edit one file
211static void do_cmd(char); // execute a command
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000212static int next_tabstop(int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000213static void sync_cursor(char *, int *, int *); // synchronize the screen cursor to dot
214static char *begin_line(char *); // return pointer to cur line B-o-l
215static char *end_line(char *); // return pointer to cur line E-o-l
216static char *prev_line(char *); // return pointer to prev line B-o-l
217static char *next_line(char *); // return pointer to next line B-o-l
218static char *end_screen(void); // get pointer to last char on screen
219static int count_lines(char *, char *); // count line from start to stop
220static char *find_line(int); // find begining of line #li
221static char *move_to_col(char *, int); // move "p" to column l
Eric Andersen3f980402001-04-04 17:31:15 +0000222static void dot_left(void); // move dot left- dont leave line
223static void dot_right(void); // move dot right- dont leave line
224static void dot_begin(void); // move dot to B-o-l
225static void dot_end(void); // move dot to E-o-l
226static void dot_next(void); // move dot to next line B-o-l
227static void dot_prev(void); // move dot to prev line B-o-l
228static void dot_scroll(int, int); // move the screen up or down
229static void dot_skip_over_ws(void); // move dot pat WS
230static void dot_delete(void); // delete the char at 'dot'
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000231static char *bound_dot(char *); // make sure text[0] <= P < "end"
232static char *new_screen(int, int); // malloc virtual screen memory
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000233static char *char_insert(char *, char); // insert the char c at 'p'
234static char *stupid_insert(char *, char); // stupidly insert the char c at 'p'
235static char find_range(char **, char **, char); // return pointers for an object
236static int st_test(char *, int, int, char *); // helper for skip_thing()
237static char *skip_thing(char *, int, int, int); // skip some object
238static char *find_pair(char *, char); // find matching pair () [] {}
239static char *text_hole_delete(char *, char *); // at "p", delete a 'size' byte hole
240static char *text_hole_make(char *, int); // at "p", make a 'size' byte hole
241static char *yank_delete(char *, char *, int, int); // yank text[] into register then delete
Eric Andersen3f980402001-04-04 17:31:15 +0000242static void show_help(void); // display some help info
Eric Andersen3f980402001-04-04 17:31:15 +0000243static void rawmode(void); // set "raw" mode on tty
244static void cookmode(void); // return to "cooked" mode on tty
Denis Vlasenko87f3b262007-09-07 13:43:28 +0000245// sleep for 'h' 1/100 seconds, return 1/0 if stdin is (ready for read)/(not ready)
246static int mysleep(int);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000247static char readit(void); // read (maybe cursor) key from stdin
248static char get_one_char(void); // read 1 char from stdin
249static int file_size(const char *); // what is the byte size of "fn"
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000250#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000251static int file_insert(const char *, char *, int);
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000252#else
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000253static int file_insert(const char *, char *);
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000254#endif
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000255static int file_write(char *, char *, char *);
Eric Andersen822c3832001-05-07 17:37:43 +0000256static void place_cursor(int, int, int);
Eric Andersenbff7a602001-11-17 07:15:43 +0000257static void screen_erase(void);
Eric Andersen3f980402001-04-04 17:31:15 +0000258static void clear_to_eol(void);
259static void clear_to_eos(void);
260static void standout_start(void); // send "start reverse video" sequence
261static void standout_end(void); // send "end reverse video" sequence
262static void flash(int); // flash the terminal screen
Eric Andersen3f980402001-04-04 17:31:15 +0000263static void show_status_line(void); // put a message on the bottom line
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000264static void psb(const char *, ...); // Print Status Buf
265static void psbs(const char *, ...); // Print Status Buf in standout mode
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000266static void ni(const char *); // display messages
Paul Fox8552aec2005-09-16 12:20:05 +0000267static int format_edit_status(void); // format file status on status line
Eric Andersen3f980402001-04-04 17:31:15 +0000268static void redraw(int); // force a full screen refresh
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000269static void format_line(char*, char*, int);
Eric Andersen3f980402001-04-04 17:31:15 +0000270static void refresh(int); // update the terminal from screen[]
271
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000272static void Indicate_Error(void); // use flash or beep to indicate error
273#define indicate_error(c) Indicate_Error()
Paul Fox90372ed2005-10-09 14:26:26 +0000274static void Hit_Return(void);
275
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000276#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000277static char *char_search(char *, const char *, int, int); // search for pattern starting at p
278static int mycmp(const char *, const char *, int); // string cmp based in "ignorecase"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000279#endif
280#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000281static char *get_one_address(char *, int *); // get colon addr, if present
282static char *get_address(char *, int *, int *); // get two colon addrs, if present
283static void colon(char *); // execute the "colon" mode cmds
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000284#endif
285#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000286static void winch_sig(int); // catch window size changes
287static void suspend_sig(int); // catch ctrl-Z
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000288static void catch_sig(int); // catch ctrl-C and alarm time-outs
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000289#endif
290#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000291static void start_new_cmd_q(char); // new queue for command
Eric Andersenbff7a602001-11-17 07:15:43 +0000292static void end_cmd_q(void); // stop saving input chars
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000293#else
294#define end_cmd_q() ((void)0)
295#endif
296#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000297static void showmatching(char *); // show the matching pair () [] {}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000298#endif
299#if ENABLE_FEATURE_VI_YANKMARK || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000300static char *string_insert(char *, char *); // insert the string at 'p'
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000301#endif
302#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000303static char *text_yank(char *, char *, int); // save copy of "p" into a register
304static char what_reg(void); // what is letter of current YDreg
305static void check_context(char); // remember context for '' command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000306#endif
307#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000308static void crash_dummy();
309static void crash_test();
310static int crashme = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000311#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000312
313
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000314static void write1(const char *out)
315{
316 fputs(out, stdout);
317}
318
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000319int vi_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +0000320int vi_main(int argc, char **argv)
Eric Andersen3f980402001-04-04 17:31:15 +0000321{
Eric Andersend402edf2001-04-04 19:29:48 +0000322 int c;
Paul Fox8552aec2005-09-16 12:20:05 +0000323 RESERVE_CONFIG_BUFFER(STATUS_BUFFER, STATUS_BUFFER_LEN);
Eric Andersen3f980402001-04-04 17:31:15 +0000324
Denis Vlasenkocd5c7862007-05-17 16:37:22 +0000325#if ENABLE_FEATURE_VI_USE_SIGNALS || ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000326 my_pid = getpid();
327#endif
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000328
Denis Vlasenkoa96425f2007-12-09 04:13:43 +0000329 INIT_G();
Denis Vlasenko0b3b41b2007-05-30 02:01:40 +0000330
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000331#if ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000332 srand((long) my_pid);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000333#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000334
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000335 status_buffer = STATUS_BUFFER;
Paul Fox8552aec2005-09-16 12:20:05 +0000336 last_status_cksum = 0;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000337 text = NULL;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000338
Denis Vlasenko2414a962007-07-18 22:03:40 +0000339#ifdef NO_SUCH_APPLET_YET
340 /* If we aren't "vi", we are "view" */
341 if (ENABLE_FEATURE_VI_READONLY && applet_name[2]) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000342 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000343 }
Denis Vlasenko2414a962007-07-18 22:03:40 +0000344#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000345
Bernhard Reutner-Fischer73f56bb2007-09-22 21:18:46 +0000346 vi_setops = VI_AUTOINDENT | VI_SHOWMATCH | VI_IGNORECASE;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000347#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenko2414a962007-07-18 22:03:40 +0000348 memset(reg, 0, sizeof(reg)); // init the yank regs
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000349#endif
350#if ENABLE_FEATURE_VI_DOT_CMD || ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000351 modifying_cmds = (char *) "aAcCdDiIJoOpPrRsxX<>~"; // cmds modifying text[]
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000352#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000353
Denis Vlasenkof9234132007-03-21 00:03:42 +0000354 // 1- process $HOME/.exrc file (not inplemented yet)
Eric Andersen3f980402001-04-04 17:31:15 +0000355 // 2- process EXINIT variable from environment
356 // 3- process command line args
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000357#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000358 {
359 char *p = getenv("EXINIT");
360 if (p && *p)
361 initial_cmds[0] = xstrdup(p);
362 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000363#endif
364 while ((c = getopt(argc, argv, "hCR" USE_FEATURE_VI_COLON("c:"))) != -1) {
Eric Andersen3f980402001-04-04 17:31:15 +0000365 switch (c) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000366#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000367 case 'C':
368 crashme = 1;
369 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000370#endif
371#if ENABLE_FEATURE_VI_READONLY
Eric Andersen3f980402001-04-04 17:31:15 +0000372 case 'R': // Read-only flag
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000373 SET_READONLY_MODE(readonly_mode);
Eric Andersen3f980402001-04-04 17:31:15 +0000374 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000375#endif
Eric Andersen822c3832001-05-07 17:37:43 +0000376 //case 'r': // recover flag- ignore- we don't use tmp file
377 //case 'x': // encryption flag- ignore
378 //case 'c': // execute command first
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000379#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000380 case 'c': // cmd line vi command
381 if (*optarg)
382 initial_cmds[initial_cmds[0] != 0] = xstrdup(optarg);
383 break;
Eric Andersen822c3832001-05-07 17:37:43 +0000384 //case 'h': // help -- just use default
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000385#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000386 default:
387 show_help();
Eric Andersendd8500b2001-07-02 18:06:14 +0000388 return 1;
Eric Andersen3f980402001-04-04 17:31:15 +0000389 }
390 }
391
392 // The argv array can be used by the ":next" and ":rewind" commands
393 // save optind.
394 fn_start = optind; // remember first file name for :next and :rew
395 save_argc = argc;
396
397 //----- This is the main file handling loop --------------
398 if (optind >= argc) {
Eric Andersen3f980402001-04-04 17:31:15 +0000399 edit_file(0);
400 } else {
401 for (; optind < argc; optind++) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000402 edit_file(argv[optind]);
Eric Andersen3f980402001-04-04 17:31:15 +0000403 }
404 }
405 //-----------------------------------------------------------
406
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000407 return 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000408}
409
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000410/* read text from file or create an empty buf */
411/* will also update current_filename */
412static int init_text_buffer(char *fn)
413{
414 int rc;
415 int size = file_size(fn); // file size. -1 means does not exist.
416
417 /* allocate/reallocate text buffer */
418 free(text);
419 text_size = size * 2;
420 if (text_size < 10240)
421 text_size = 10240; // have a minimum size for new files
422 screenbegin = dot = end = text = xzalloc(text_size);
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000423
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000424 if (fn != current_filename) {
425 free(current_filename);
426 current_filename = xstrdup(fn);
427 }
428 if (size < 0) {
429 // file dont exist. Start empty buf with dummy line
430 char_insert(text, '\n');
431 rc = 0;
432 } else {
433 rc = file_insert(fn, text
434 USE_FEATURE_VI_READONLY(, 1));
435 }
436 file_modified = 0;
437 last_file_modified = -1;
438#if ENABLE_FEATURE_VI_YANKMARK
439 /* init the marks. */
440 memset(mark, 0, sizeof(mark));
441#endif
442 return rc;
Denis Vlasenko2f6ae432007-07-19 22:50:47 +0000443}
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000444
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000445static void edit_file(char * fn)
Eric Andersen3f980402001-04-04 17:31:15 +0000446{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000447 char c;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000448 int size;
Eric Andersen3f980402001-04-04 17:31:15 +0000449
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000450#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +0000451 int sig;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000452#endif
453#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000454 static char *cur_line;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000455#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000456
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000457 editing = 1; // 0= exit, 1= one file, 2= multiple files
Eric Andersen3f980402001-04-04 17:31:15 +0000458 rawmode();
459 rows = 24;
460 columns = 80;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000461 size = 0;
Rob Landleye5e1a102006-06-21 01:15:36 +0000462 if (ENABLE_FEATURE_VI_WIN_RESIZE)
463 get_terminal_width_height(0, &columns, &rows);
Eric Andersen3f980402001-04-04 17:31:15 +0000464 new_screen(rows, columns); // get memory for virtual screen
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000465 init_text_buffer(fn);
Eric Andersen3f980402001-04-04 17:31:15 +0000466
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000467#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000468 YDreg = 26; // default Yank/Delete reg
469 Ureg = 27; // hold orig line for "U" cmd
Eric Andersen3f980402001-04-04 17:31:15 +0000470 mark[26] = mark[27] = text; // init "previous context"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000471#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000472
Eric Andersen3f980402001-04-04 17:31:15 +0000473 last_forward_char = last_input_char = '\0';
474 crow = 0;
475 ccol = 0;
Eric Andersen3f980402001-04-04 17:31:15 +0000476
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000477#if ENABLE_FEATURE_VI_USE_SIGNALS
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000478 catch_sig(0);
Eric Andersen3f980402001-04-04 17:31:15 +0000479 signal(SIGWINCH, winch_sig);
480 signal(SIGTSTP, suspend_sig);
481 sig = setjmp(restart);
482 if (sig != 0) {
Eric Andersen1c0d3112001-04-16 15:46:44 +0000483 screenbegin = dot = text;
Eric Andersen3f980402001-04-04 17:31:15 +0000484 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000485#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000486
Eric Andersen3f980402001-04-04 17:31:15 +0000487 cmd_mode = 0; // 0=command 1=insert 2='R'eplace
488 cmdcnt = 0;
489 tabstop = 8;
490 offset = 0; // no horizontal offset
491 c = '\0';
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000492#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000493 free(last_modifying_cmd);
494 free(ioq_start);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000495 ioq = ioq_start = last_modifying_cmd = NULL;
Eric Andersen3f980402001-04-04 17:31:15 +0000496 adding2q = 0;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000497#endif
Eric Andersen822c3832001-05-07 17:37:43 +0000498 redraw(FALSE); // dont force every col re-draw
Eric Andersen3f980402001-04-04 17:31:15 +0000499
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000500#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkof9234132007-03-21 00:03:42 +0000501 {
502 char *p, *q;
503 int n = 0;
504
505 while ((p = initial_cmds[n])) {
506 do {
507 q = p;
508 p = strchr(q,'\n');
509 if (p)
Denis Vlasenko51742f42007-04-12 00:32:05 +0000510 while (*p == '\n')
Denis Vlasenkof9234132007-03-21 00:03:42 +0000511 *p++ = '\0';
512 if (*q)
513 colon(q);
514 } while (p);
515 free(initial_cmds[n]);
516 initial_cmds[n] = NULL;
517 n++;
518 }
519 }
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000520#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000521 //------This is the main Vi cmd handling loop -----------------------
522 while (editing > 0) {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000523#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000524 if (crashme > 0) {
525 if ((end - text) > 1) {
526 crash_dummy(); // generate a random command
527 } else {
528 crashme = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000529 dot = string_insert(text, "\n\n##### Ran out of text to work on. #####\n\n"); // insert the string
Eric Andersen3f980402001-04-04 17:31:15 +0000530 refresh(FALSE);
531 }
532 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000533#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000534 last_input_char = c = get_one_char(); // get a cmd from user
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000535#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +0000536 // save a copy of the current line- for the 'U" command
537 if (begin_line(dot) != cur_line) {
538 cur_line = begin_line(dot);
539 text_yank(begin_line(dot), end_line(dot), Ureg);
540 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000541#endif
542#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +0000543 // These are commands that change text[].
544 // Remember the input for the "." command
545 if (!adding2q && ioq_start == 0
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000546 && strchr(modifying_cmds, c)
547 ) {
Eric Andersen3f980402001-04-04 17:31:15 +0000548 start_new_cmd_q(c);
549 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000550#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000551 do_cmd(c); // execute the user command
552 //
553 // poll to see if there is input already waiting. if we are
554 // not able to display output fast enough to keep up, skip
555 // the display update until we catch up with input.
556 if (mysleep(0) == 0) {
557 // no input pending- so update output
558 refresh(FALSE);
559 show_status_line();
560 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000561#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen3f980402001-04-04 17:31:15 +0000562 if (crashme > 0)
563 crash_test(); // test editor variables
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000564#endif
Eric Andersen3f980402001-04-04 17:31:15 +0000565 }
566 //-------------------------------------------------------------------
567
Eric Andersen822c3832001-05-07 17:37:43 +0000568 place_cursor(rows, 0, FALSE); // go to bottom of screen
Eric Andersen3f980402001-04-04 17:31:15 +0000569 clear_to_eol(); // Erase to end of line
570 cookmode();
571}
572
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000573//----- The Colon commands -------------------------------------
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000574#if ENABLE_FEATURE_VI_COLON
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000575static char *get_one_address(char * p, int *addr) // get colon addr, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000576{
577 int st;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000578 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000579
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000580#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000581 char c;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000582#endif
583#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000584 char *pat, buf[MAX_LINELEN];
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000585#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000586
587 *addr = -1; // assume no addr
588 if (*p == '.') { // the current line
589 p++;
590 q = begin_line(dot);
591 *addr = count_lines(text, q);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000592#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000593 } else if (*p == '\'') { // is this a mark addr
594 p++;
595 c = tolower(*p);
596 p++;
597 if (c >= 'a' && c <= 'z') {
598 // we have a mark
599 c = c - 'a';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000600 q = mark[(unsigned char) c];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000601 if (q != NULL) { // is mark valid
602 *addr = count_lines(text, q); // count lines
603 }
604 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000605#endif
606#if ENABLE_FEATURE_VI_SEARCH
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000607 } else if (*p == '/') { // a search pattern
608 q = buf;
609 for (p++; *p; p++) {
610 if (*p == '/')
611 break;
612 *q++ = *p;
613 *q = '\0';
614 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000615 pat = xstrdup(buf); // save copy of pattern
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000616 if (*p == '/')
617 p++;
618 q = char_search(dot, pat, FORWARD, FULL);
619 if (q != NULL) {
620 *addr = count_lines(text, q);
621 }
622 free(pat);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000623#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000624 } else if (*p == '$') { // the last line in file
625 p++;
626 q = begin_line(end - 1);
627 *addr = count_lines(text, q);
628 } else if (isdigit(*p)) { // specific line number
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000629 sscanf(p, "%d%n", addr, &st);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000630 p += st;
631 } else { // I don't reconise this
632 // unrecognised address- assume -1
633 *addr = -1;
634 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000635 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000636}
637
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000638static char *get_address(char *p, int *b, int *e) // get two colon addrs, if present
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000639{
640 //----- get the address' i.e., 1,3 'a,'b -----
641 // get FIRST addr, if present
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000642 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000643 p++; // skip over leading spaces
644 if (*p == '%') { // alias for 1,$
645 p++;
646 *b = 1;
647 *e = count_lines(text, end-1);
648 goto ga0;
649 }
650 p = get_one_address(p, b);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000651 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000652 p++;
Eric Andersenaff114c2004-04-14 17:51:38 +0000653 if (*p == ',') { // is there a address separator
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000654 p++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000655 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000656 p++;
657 // get SECOND addr, if present
658 p = get_one_address(p, e);
659 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000660 ga0:
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000661 while (isblank(*p))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000662 p++; // skip over trailing spaces
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000663 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000664}
665
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000666#if ENABLE_FEATURE_VI_SET && ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000667static void setops(const char *args, const char *opname, int flg_no,
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000668 const char *short_opname, int opt)
669{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000670 const char *a = args + flg_no;
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000671 int l = strlen(opname) - 1; /* opname have + ' ' */
672
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000673 if (strncasecmp(a, opname, l) == 0
674 || strncasecmp(a, short_opname, 2) == 0
675 ) {
676 if (flg_no)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000677 vi_setops &= ~opt;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000678 else
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000679 vi_setops |= opt;
680 }
681}
682#endif
683
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000684static void colon(char * buf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000685{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000686 char c, *orig_buf, *buf1, *q, *r;
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000687 char *fn, cmd[MAX_LINELEN], args[MAX_LINELEN];
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000688 int i, l, li, ch, b, e;
Eric Andersena9eb33d2004-08-19 19:15:06 +0000689 int useforce = FALSE, forced = FALSE;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000690
691 // :3154 // if (-e line 3154) goto it else stay put
692 // :4,33w! foo // write a portion of buffer to file "foo"
693 // :w // write all of buffer to current file
694 // :q // quit
695 // :q! // quit- dont care about modified file
696 // :'a,'z!sort -u // filter block through sort
697 // :'f // goto mark "f"
698 // :'fl // list literal the mark "f" line
699 // :.r bar // read file "bar" into buffer before dot
700 // :/123/,/abc/d // delete lines from "123" line to "abc" line
701 // :/xyz/ // goto the "xyz" line
702 // :s/find/replace/ // substitute pattern "find" with "replace"
703 // :!<cmd> // run <cmd> then return
704 //
Eric Andersen165e8cb2004-07-20 06:44:46 +0000705
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000706 if (!buf[0])
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000707 goto vc1;
708 if (*buf == ':')
709 buf++; // move past the ':'
710
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000711 li = ch = i = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000712 b = e = -1;
713 q = text; // assume 1,$ for the range
714 r = end - 1;
715 li = count_lines(text, end - 1);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000716 fn = current_filename; // default to current file
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000717 memset(cmd, '\0', MAX_LINELEN); // clear cmd[]
718 memset(args, '\0', MAX_LINELEN); // clear args[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000719
720 // look for optional address(es) :. :1 :1,9 :'q,'a :%
721 buf = get_address(buf, &b, &e);
722
723 // remember orig command line
724 orig_buf = buf;
725
726 // get the COMMAND into cmd[]
727 buf1 = cmd;
728 while (*buf != '\0') {
729 if (isspace(*buf))
730 break;
731 *buf1++ = *buf++;
732 }
733 // get any ARGuments
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000734 while (isblank(*buf))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000735 buf++;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000736 strcpy(args, buf);
737 buf1 = last_char_is(cmd, '!');
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000738 if (buf1) {
739 useforce = TRUE;
740 *buf1 = '\0'; // get rid of !
741 }
742 if (b >= 0) {
743 // if there is only one addr, then the addr
744 // is the line number of the single line the
745 // user wants. So, reset the end
746 // pointer to point at end of the "b" line
747 q = find_line(b); // what line is #b
748 r = end_line(q);
749 li = 1;
750 }
751 if (e >= 0) {
752 // we were given two addrs. change the
753 // end pointer to the addr given by user.
754 r = find_line(e); // what line is #e
755 r = end_line(r);
756 li = e - b + 1;
757 }
758 // ------------ now look for the command ------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000759 i = strlen(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000760 if (i == 0) { // :123CR goto line #123
761 if (b >= 0) {
762 dot = find_line(b); // what line is #b
763 dot_skip_over_ws();
764 }
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000765 }
766#if ENABLE_FEATURE_ALLOW_EXEC
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000767 else if (strncmp(cmd, "!", 1) == 0) { // run a cmd
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000768 int retcode;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000769 // :!ls run the <cmd>
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000770 alarm(0); // wait for input- no alarms
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000771 place_cursor(rows - 1, 0, FALSE); // go to Status line
772 clear_to_eol(); // clear the line
773 cookmode();
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000774 retcode = system(orig_buf + 1); // run the cmd
775 if (retcode)
776 printf("\nshell returned %i\n\n", retcode);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000777 rawmode();
778 Hit_Return(); // let user see results
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000779 alarm(3); // done waiting for input
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000780 }
781#endif
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000782 else if (strncmp(cmd, "=", i) == 0) { // where is the address
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000783 if (b < 0) { // no addr given- use defaults
784 b = e = count_lines(text, dot);
785 }
786 psb("%d", b);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000787 } else if (strncasecmp(cmd, "delete", i) == 0) { // delete lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000788 if (b < 0) { // no addr given- use defaults
789 q = begin_line(dot); // assume .,. for the range
790 r = end_line(dot);
791 }
792 dot = yank_delete(q, r, 1, YANKDEL); // save, then delete lines
793 dot_skip_over_ws();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000794 } else if (strncasecmp(cmd, "edit", i) == 0) { // Edit a file
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000795 // don't edit, if the current file has been modified
796 if (file_modified && ! useforce) {
797 psbs("No write since last change (:edit! overrides)");
798 goto vc1;
799 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000800 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000801 // the user supplied a file name
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000802 fn = args;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000803 } else if (current_filename && current_filename[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000804 // no user supplied name- use the current filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000805 // fn = current_filename; was set by default
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000806 } else {
807 // no user file name, no current name- punt
808 psbs("No current filename");
809 goto vc1;
810 }
811
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000812 if (init_text_buffer(fn) < 0)
813 goto vc1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000814
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000815#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000816 if (Ureg >= 0 && Ureg < 28 && reg[Ureg] != 0) {
817 free(reg[Ureg]); // free orig line reg- for 'U'
818 reg[Ureg]= 0;
819 }
820 if (YDreg >= 0 && YDreg < 28 && reg[YDreg] != 0) {
821 free(reg[YDreg]); // free default yank/delete register
822 reg[YDreg]= 0;
823 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000824#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000825 // how many lines in text[]?
826 li = count_lines(text, end - 1);
827 psb("\"%s\"%s"
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000828 USE_FEATURE_VI_READONLY("%s")
829 " %dL, %dC", current_filename,
830 (file_size(fn) < 0 ? " [New file]" : ""),
831 USE_FEATURE_VI_READONLY(
832 ((readonly_mode) ? " [Readonly]" : ""),
833 )
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000834 li, ch);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000835 } else if (strncasecmp(cmd, "file", i) == 0) { // what File is this
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000836 if (b != -1 || e != -1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000837 ni("No address allowed on this command");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000838 goto vc1;
839 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000840 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000841 // user wants a new filename
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000842 free(current_filename);
843 current_filename = xstrdup(args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000844 } else {
845 // user wants file status info
Paul Fox8552aec2005-09-16 12:20:05 +0000846 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000847 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000848 } else if (strncasecmp(cmd, "features", i) == 0) { // what features are available
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000849 // print out values of all features
850 place_cursor(rows - 1, 0, FALSE); // go to Status line, bottom of screen
851 clear_to_eol(); // clear the line
852 cookmode();
853 show_help();
854 rawmode();
855 Hit_Return();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000856 } else if (strncasecmp(cmd, "list", i) == 0) { // literal print line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000857 if (b < 0) { // no addr given- use defaults
858 q = begin_line(dot); // assume .,. for the range
859 r = end_line(dot);
860 }
861 place_cursor(rows - 1, 0, FALSE); // go to Status line, bottom of screen
862 clear_to_eol(); // clear the line
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000863 puts("\r");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000864 for (; q <= r; q++) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000865 int c_is_no_print;
866
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000867 c = *q;
Denis Vlasenko2a51af22007-03-21 22:31:24 +0000868 c_is_no_print = (c & 0x80) && !Isprint(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000869 if (c_is_no_print) {
870 c = '.';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000871 standout_start();
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000872 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000873 if (c == '\n') {
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000874 write1("$\r");
875 } else if (c < ' ' || c == 127) {
Denis Vlasenko4daad902007-09-27 10:20:47 +0000876 bb_putchar('^');
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000877 if (c == 127)
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000878 c = '?';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000879 else
880 c += '@';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000881 }
Denis Vlasenko4daad902007-09-27 10:20:47 +0000882 bb_putchar(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +0000883 if (c_is_no_print)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000884 standout_end();
885 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000886#if ENABLE_FEATURE_VI_SET
887 vc2:
888#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000889 Hit_Return();
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000890 } else if (strncasecmp(cmd, "quit", i) == 0 // Quit
891 || strncasecmp(cmd, "next", i) == 0 // edit next file
892 ) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000893 if (useforce) {
894 // force end of argv list
895 if (*cmd == 'q') {
896 optind = save_argc;
897 }
898 editing = 0;
899 goto vc1;
900 }
901 // don't exit if the file been modified
902 if (file_modified) {
903 psbs("No write since last change (:%s! overrides)",
904 (*cmd == 'q' ? "quit" : "next"));
905 goto vc1;
906 }
907 // are there other file to edit
908 if (*cmd == 'q' && optind < save_argc - 1) {
909 psbs("%d more file to edit", (save_argc - optind - 1));
910 goto vc1;
911 }
912 if (*cmd == 'n' && optind >= save_argc - 1) {
913 psbs("No more files to edit");
914 goto vc1;
915 }
916 editing = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000917 } else if (strncasecmp(cmd, "read", i) == 0) { // read file into text[]
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000918 fn = args;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000919 if (!fn[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000920 psbs("No filename given");
921 goto vc1;
922 }
923 if (b < 0) { // no addr given- use defaults
924 q = begin_line(dot); // assume "dot"
925 }
926 // read after current line- unless user said ":0r foo"
927 if (b != 0)
928 q = next_line(q);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000929 ch = file_insert(fn, q USE_FEATURE_VI_READONLY(, 0));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000930 if (ch < 0)
931 goto vc1; // nothing was inserted
932 // how many lines in text[]?
933 li = count_lines(q, q + ch - 1);
934 psb("\"%s\""
Denis Vlasenko59a1f302007-07-14 22:43:10 +0000935 USE_FEATURE_VI_READONLY("%s")
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000936 " %dL, %dC", fn,
Denis Vlasenkoeaabf062007-07-17 23:14:07 +0000937 USE_FEATURE_VI_READONLY((readonly_mode ? " [Readonly]" : ""),)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000938 li, ch);
939 if (ch > 0) {
940 // if the insert is before "dot" then we need to update
941 if (q <= dot)
942 dot += ch;
Paul Fox8552aec2005-09-16 12:20:05 +0000943 file_modified++;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000944 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000945 } else if (strncasecmp(cmd, "rewind", i) == 0) { // rewind cmd line args
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000946 if (file_modified && ! useforce) {
947 psbs("No write since last change (:rewind! overrides)");
948 } else {
949 // reset the filenames to edit
950 optind = fn_start - 1;
951 editing = 0;
952 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000953#if ENABLE_FEATURE_VI_SET
Denis Vlasenkof9234132007-03-21 00:03:42 +0000954 } else if (strncasecmp(cmd, "set", i) == 0) { // set or clear features
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000955#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkof9234132007-03-21 00:03:42 +0000956 char *argp;
Denis Vlasenko58875ae2007-03-22 22:22:10 +0000957#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000958 i = 0; // offset into args
Denis Vlasenkof9234132007-03-21 00:03:42 +0000959 // only blank is regarded as args delmiter. What about tab '\t' ?
960 if (!args[0] || strcasecmp(args, "all") == 0) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000961 // print out values of all options
962 place_cursor(rows - 1, 0, FALSE); // go to Status line, bottom of screen
963 clear_to_eol(); // clear the line
964 printf("----------------------------------------\r\n");
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000965#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000966 if (!autoindent)
967 printf("no");
968 printf("autoindent ");
969 if (!err_method)
970 printf("no");
971 printf("flash ");
972 if (!ignorecase)
973 printf("no");
974 printf("ignorecase ");
975 if (!showmatch)
976 printf("no");
977 printf("showmatch ");
978 printf("tabstop=%d ", tabstop);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000979#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +0000980 printf("\r\n");
981 goto vc2;
982 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +0000983#if ENABLE_FEATURE_VI_SETOPTS
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000984 argp = args;
Denis Vlasenkoba2fb712007-04-01 09:39:03 +0000985 while (*argp) {
Denis Vlasenkof9234132007-03-21 00:03:42 +0000986 if (strncasecmp(argp, "no", 2) == 0)
987 i = 2; // ":set noautoindent"
988 setops(argp, "autoindent ", i, "ai", VI_AUTOINDENT);
989 setops(argp, "flash ", i, "fl", VI_ERR_METHOD);
990 setops(argp, "ignorecase ", i, "ic", VI_IGNORECASE);
991 setops(argp, "showmatch ", i, "ic", VI_SHOWMATCH);
992 /* tabstopXXXX */
993 if (strncasecmp(argp + i, "tabstop=%d ", 7) == 0) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +0000994 sscanf(strchr(argp + i, '='), "tabstop=%d" + 7, &ch);
Denis Vlasenkof9234132007-03-21 00:03:42 +0000995 if (ch > 0 && ch < columns - 1)
996 tabstop = ch;
997 }
998 while (*argp && *argp != ' ')
999 argp++; // skip to arg delimiter (i.e. blank)
1000 while (*argp && *argp == ' ')
1001 argp++; // skip all delimiting blanks
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001002 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001003#endif /* FEATURE_VI_SETOPTS */
1004#endif /* FEATURE_VI_SET */
1005#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001006 } else if (strncasecmp(cmd, "s", 1) == 0) { // substitute a pattern with a replacement pattern
1007 char *ls, *F, *R;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001008 int gflag;
1009
1010 // F points to the "find" pattern
1011 // R points to the "replace" pattern
1012 // replace the cmd line delimiters "/" with NULLs
1013 gflag = 0; // global replace flag
1014 c = orig_buf[1]; // what is the delimiter
1015 F = orig_buf + 2; // start of "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001016 R = strchr(F, c); // middle delimiter
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001017 if (!R) goto colon_s_fail;
1018 *R++ = '\0'; // terminate "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001019 buf1 = strchr(R, c);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001020 if (!buf1) goto colon_s_fail;
1021 *buf1++ = '\0'; // terminate "replace"
1022 if (*buf1 == 'g') { // :s/foo/bar/g
1023 buf1++;
1024 gflag++; // turn on gflag
1025 }
1026 q = begin_line(q);
1027 if (b < 0) { // maybe :s/foo/bar/
1028 q = begin_line(dot); // start with cur line
1029 b = count_lines(text, q); // cur line number
1030 }
1031 if (e < 0)
1032 e = b; // maybe :.s/foo/bar/
1033 for (i = b; i <= e; i++) { // so, :20,23 s \0 find \0 replace \0
1034 ls = q; // orig line start
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001035 vc4:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001036 buf1 = char_search(q, F, FORWARD, LIMITED); // search cur line only for "find"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001037 if (buf1) {
1038 // we found the "find" pattern - delete it
1039 text_hole_delete(buf1, buf1 + strlen(F) - 1);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001040 // inset the "replace" patern
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001041 string_insert(buf1, R); // insert the string
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001042 // check for "global" :s/foo/bar/g
1043 if (gflag == 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001044 if ((buf1 + strlen(R)) < end_line(ls)) {
1045 q = buf1 + strlen(R);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001046 goto vc4; // don't let q move past cur line
1047 }
1048 }
1049 }
1050 q = next_line(ls);
1051 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001052#endif /* FEATURE_VI_SEARCH */
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001053 } else if (strncasecmp(cmd, "version", i) == 0) { // show software version
Rob Landleyd921b2e2006-08-03 15:41:12 +00001054 psb("%s", BB_VER " " BB_BT);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001055 } else if (strncasecmp(cmd, "write", i) == 0 // write text to file
1056 || strncasecmp(cmd, "wq", i) == 0
1057 || strncasecmp(cmd, "wn", i) == 0
1058 || strncasecmp(cmd, "x", i) == 0
1059 ) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001060 // is there a file name to write to?
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001061 if (args[0]) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001062 fn = args;
1063 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001064#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001065 if (readonly_mode && !useforce) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001066 psbs("\"%s\" File is read only", fn);
1067 goto vc3;
1068 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001069#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001070 // how many lines in text[]?
1071 li = count_lines(q, r);
1072 ch = r - q + 1;
1073 // see if file exists- if not, its just a new file request
1074 if (useforce) {
1075 // if "fn" is not write-able, chmod u+w
1076 // sprintf(syscmd, "chmod u+w %s", fn);
1077 // system(syscmd);
1078 forced = TRUE;
1079 }
1080 l = file_write(fn, q, r);
1081 if (useforce && forced) {
1082 // chmod u-w
1083 // sprintf(syscmd, "chmod u-w %s", fn);
1084 // system(syscmd);
1085 forced = FALSE;
1086 }
Paul Fox61e45db2005-10-09 14:43:22 +00001087 if (l < 0) {
1088 if (l == -1)
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001089 psbs("\"%s\" %s", fn, strerror(errno));
Paul Fox61e45db2005-10-09 14:43:22 +00001090 } else {
1091 psb("\"%s\" %dL, %dC", fn, li, l);
1092 if (q == text && r == end - 1 && l == ch) {
1093 file_modified = 0;
1094 last_file_modified = -1;
1095 }
Paul Fox9360f422006-03-27 21:51:16 +00001096 if ((cmd[0] == 'x' || cmd[1] == 'q' || cmd[1] == 'n' ||
1097 cmd[0] == 'X' || cmd[1] == 'Q' || cmd[1] == 'N')
1098 && l == ch) {
Paul Fox61e45db2005-10-09 14:43:22 +00001099 editing = 0;
1100 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001101 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001102#if ENABLE_FEATURE_VI_READONLY
1103 vc3:;
1104#endif
1105#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001106 } else if (strncasecmp(cmd, "yank", i) == 0) { // yank lines
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001107 if (b < 0) { // no addr given- use defaults
1108 q = begin_line(dot); // assume .,. for the range
1109 r = end_line(dot);
1110 }
1111 text_yank(q, r, YDreg);
1112 li = count_lines(q, r);
1113 psb("Yank %d lines (%d chars) into [%c]",
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001114 li, strlen(reg[YDreg]), what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001115#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001116 } else {
1117 // cmd unknown
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001118 ni(cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001119 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001120 vc1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001121 dot = bound_dot(dot); // make sure "dot" is valid
1122 return;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001123#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001124 colon_s_fail:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001125 psb(":s expression missing delimiters");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001126#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001127}
Paul Fox61e45db2005-10-09 14:43:22 +00001128
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001129#endif /* FEATURE_VI_COLON */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001130
1131static void Hit_Return(void)
1132{
1133 char c;
1134
1135 standout_start(); // start reverse video
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001136 write1("[Hit return to continue]");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001137 standout_end(); // end reverse video
1138 while ((c = get_one_char()) != '\n' && c != '\r') /*do nothing */
1139 ;
1140 redraw(TRUE); // force redraw all
1141}
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001142
Denis Vlasenko91afdf82007-07-17 23:22:49 +00001143static int next_tabstop(int col)
1144{
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001145 return col + ((tabstop - 1) - (col % tabstop));
1146}
1147
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001148//----- Synchronize the cursor to Dot --------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001149static void sync_cursor(char * d, int *row, int *col)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001150{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001151 char *beg_cur; // begin and end of "d" line
1152 char *end_scr; // begin and end of screen
1153 char *tp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001154 int cnt, ro, co;
1155
1156 beg_cur = begin_line(d); // first char of cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001157
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001158 end_scr = end_screen(); // last char of screen
1159
1160 if (beg_cur < screenbegin) {
1161 // "d" is before top line on screen
1162 // how many lines do we have to move
1163 cnt = count_lines(beg_cur, screenbegin);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001164 sc1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001165 screenbegin = beg_cur;
1166 if (cnt > (rows - 1) / 2) {
1167 // we moved too many lines. put "dot" in middle of screen
1168 for (cnt = 0; cnt < (rows - 1) / 2; cnt++) {
1169 screenbegin = prev_line(screenbegin);
1170 }
1171 }
1172 } else if (beg_cur > end_scr) {
1173 // "d" is after bottom line on screen
1174 // how many lines do we have to move
1175 cnt = count_lines(end_scr, beg_cur);
1176 if (cnt > (rows - 1) / 2)
1177 goto sc1; // too many lines
1178 for (ro = 0; ro < cnt - 1; ro++) {
1179 // move screen begin the same amount
1180 screenbegin = next_line(screenbegin);
1181 // now, move the end of screen
1182 end_scr = next_line(end_scr);
1183 end_scr = end_line(end_scr);
1184 }
1185 }
1186 // "d" is on screen- find out which row
1187 tp = screenbegin;
1188 for (ro = 0; ro < rows - 1; ro++) { // drive "ro" to correct row
1189 if (tp == beg_cur)
1190 break;
1191 tp = next_line(tp);
1192 }
1193
1194 // find out what col "d" is on
1195 co = 0;
1196 do { // drive "co" to correct column
1197 if (*tp == '\n' || *tp == '\0')
1198 break;
1199 if (*tp == '\t') {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001200 if (d == tp && cmd_mode) { /* handle tabs like real vi */
1201 break;
1202 } else {
1203 co = next_tabstop(co);
1204 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001205 } else if (*tp < ' ' || *tp == 127) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001206 co++; // display as ^X, use 2 columns
1207 }
1208 } while (tp++ < d && ++co);
1209
1210 // "co" is the column where "dot" is.
1211 // The screen has "columns" columns.
1212 // The currently displayed columns are 0+offset -- columns+ofset
1213 // |-------------------------------------------------------------|
1214 // ^ ^ ^
1215 // offset | |------- columns ----------------|
1216 //
1217 // If "co" is already in this range then we do not have to adjust offset
1218 // but, we do have to subtract the "offset" bias from "co".
1219 // If "co" is outside this range then we have to change "offset".
1220 // If the first char of a line is a tab the cursor will try to stay
1221 // in column 7, but we have to set offset to 0.
1222
1223 if (co < 0 + offset) {
1224 offset = co;
1225 }
1226 if (co >= columns + offset) {
1227 offset = co - columns + 1;
1228 }
1229 // if the first char of the line is a tab, and "dot" is sitting on it
1230 // force offset to 0.
1231 if (d == beg_cur && *d == '\t') {
1232 offset = 0;
1233 }
1234 co -= offset;
1235
1236 *row = ro;
1237 *col = co;
1238}
1239
1240//----- Text Movement Routines ---------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001241static char *begin_line(char * p) // return pointer to first char cur line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001242{
1243 while (p > text && p[-1] != '\n')
1244 p--; // go to cur line B-o-l
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001245 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001246}
1247
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001248static char *end_line(char * p) // return pointer to NL of cur line line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001249{
1250 while (p < end - 1 && *p != '\n')
1251 p++; // go to cur line E-o-l
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001252 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001253}
1254
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001255static inline char *dollar_line(char * p) // return pointer to just before NL line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001256{
1257 while (p < end - 1 && *p != '\n')
1258 p++; // go to cur line E-o-l
1259 // Try to stay off of the Newline
1260 if (*p == '\n' && (p - begin_line(p)) > 0)
1261 p--;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001262 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001263}
1264
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001265static char *prev_line(char * p) // return pointer first char prev line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001266{
1267 p = begin_line(p); // goto begining of cur line
1268 if (p[-1] == '\n' && p > text)
1269 p--; // step to prev line
1270 p = begin_line(p); // goto begining of prev line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001271 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001272}
1273
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001274static char *next_line(char * p) // return pointer first char next line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001275{
1276 p = end_line(p);
1277 if (*p == '\n' && p < end - 1)
1278 p++; // step to next line
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001279 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001280}
1281
1282//----- Text Information Routines ------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001283static char *end_screen(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001284{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001285 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001286 int cnt;
1287
1288 // find new bottom line
1289 q = screenbegin;
1290 for (cnt = 0; cnt < rows - 2; cnt++)
1291 q = next_line(q);
1292 q = end_line(q);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001293 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001294}
1295
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001296static int count_lines(char * start, char * stop) // count line from start to stop
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001297{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001298 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001299 int cnt;
1300
1301 if (stop < start) { // start and stop are backwards- reverse them
1302 q = start;
1303 start = stop;
1304 stop = q;
1305 }
1306 cnt = 0;
1307 stop = end_line(stop); // get to end of this line
1308 for (q = start; q <= stop && q <= end - 1; q++) {
1309 if (*q == '\n')
1310 cnt++;
1311 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001312 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001313}
1314
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001315static char *find_line(int li) // find begining of line #li
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001316{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001317 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001318
1319 for (q = text; li > 1; li--) {
1320 q = next_line(q);
1321 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001322 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001323}
1324
1325//----- Dot Movement Routines ----------------------------------
1326static void dot_left(void)
1327{
1328 if (dot > text && dot[-1] != '\n')
1329 dot--;
1330}
1331
1332static void dot_right(void)
1333{
1334 if (dot < end - 1 && *dot != '\n')
1335 dot++;
1336}
1337
1338static void dot_begin(void)
1339{
1340 dot = begin_line(dot); // return pointer to first char cur line
1341}
1342
1343static void dot_end(void)
1344{
1345 dot = end_line(dot); // return pointer to last char cur line
1346}
1347
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001348static char *move_to_col(char * p, int l)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001349{
1350 int co;
1351
1352 p = begin_line(p);
1353 co = 0;
1354 do {
1355 if (*p == '\n' || *p == '\0')
1356 break;
1357 if (*p == '\t') {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001358 co = next_tabstop(co);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001359 } else if (*p < ' ' || *p == 127) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001360 co++; // display as ^X, use 2 columns
1361 }
1362 } while (++co <= l && p++ < end);
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001363 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001364}
1365
1366static void dot_next(void)
1367{
1368 dot = next_line(dot);
1369}
1370
1371static void dot_prev(void)
1372{
1373 dot = prev_line(dot);
1374}
1375
1376static void dot_scroll(int cnt, int dir)
1377{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001378 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001379
1380 for (; cnt > 0; cnt--) {
1381 if (dir < 0) {
1382 // scroll Backwards
1383 // ctrl-Y scroll up one line
1384 screenbegin = prev_line(screenbegin);
1385 } else {
1386 // scroll Forwards
1387 // ctrl-E scroll down one line
1388 screenbegin = next_line(screenbegin);
1389 }
1390 }
1391 // make sure "dot" stays on the screen so we dont scroll off
1392 if (dot < screenbegin)
1393 dot = screenbegin;
1394 q = end_screen(); // find new bottom line
1395 if (dot > q)
1396 dot = begin_line(q); // is dot is below bottom line?
1397 dot_skip_over_ws();
1398}
1399
1400static void dot_skip_over_ws(void)
1401{
1402 // skip WS
1403 while (isspace(*dot) && *dot != '\n' && dot < end - 1)
1404 dot++;
1405}
1406
1407static void dot_delete(void) // delete the char at 'dot'
1408{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001409 text_hole_delete(dot, dot);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001410}
1411
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001412static char *bound_dot(char * p) // make sure text[0] <= P < "end"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001413{
1414 if (p >= end && end > text) {
1415 p = end - 1;
1416 indicate_error('1');
1417 }
1418 if (p < text) {
1419 p = text;
1420 indicate_error('2');
1421 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001422 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001423}
1424
1425//----- Helper Utility Routines --------------------------------
1426
1427//----------------------------------------------------------------
1428//----- Char Routines --------------------------------------------
1429/* Chars that are part of a word-
1430 * 0123456789_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
1431 * Chars that are Not part of a word (stoppers)
1432 * !"#$%&'()*+,-./:;<=>?@[\]^`{|}~
1433 * Chars that are WhiteSpace
1434 * TAB NEWLINE VT FF RETURN SPACE
1435 * DO NOT COUNT NEWLINE AS WHITESPACE
1436 */
1437
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001438static char *new_screen(int ro, int co)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001439{
1440 int li;
1441
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001442 free(screen);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001443 screensize = ro * co + 8;
Denis Vlasenkob95636c2006-12-19 23:36:04 +00001444 screen = xmalloc(screensize);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001445 // initialize the new screen. assume this will be a empty file.
1446 screen_erase();
Eric Andersenaff114c2004-04-14 17:51:38 +00001447 // non-existent text[] lines start with a tilde (~).
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001448 for (li = 1; li < ro - 1; li++) {
1449 screen[(li * co) + 0] = '~';
1450 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001451 return screen;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001452}
1453
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001454#if ENABLE_FEATURE_VI_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001455static int mycmp(const char * s1, const char * s2, int len)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001456{
1457 int i;
1458
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001459 i = strncmp(s1, s2, len);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001460 if (ENABLE_FEATURE_VI_SETOPTS && ignorecase) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001461 i = strncasecmp(s1, s2, len);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001462 }
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001463 return i;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001464}
1465
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001466// search for pattern starting at p
1467static char *char_search(char * p, const char * pat, int dir, int range)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001468{
1469#ifndef REGEX_SEARCH
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001470 char *start, *stop;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001471 int len;
1472
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001473 len = strlen(pat);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001474 if (dir == FORWARD) {
1475 stop = end - 1; // assume range is p - end-1
1476 if (range == LIMITED)
1477 stop = next_line(p); // range is to next line
1478 for (start = p; start < stop; start++) {
1479 if (mycmp(start, pat, len) == 0) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001480 return start;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001481 }
1482 }
1483 } else if (dir == BACK) {
1484 stop = text; // assume range is text - p
1485 if (range == LIMITED)
1486 stop = prev_line(p); // range is to prev line
1487 for (start = p - len; start >= stop; start--) {
1488 if (mycmp(start, pat, len) == 0) {
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001489 return start;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001490 }
1491 }
1492 }
1493 // pattern not found
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001494 return NULL;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001495#else /* REGEX_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001496 char *q;
1497 struct re_pattern_buffer preg;
1498 int i;
1499 int size, range;
1500
1501 re_syntax_options = RE_SYNTAX_POSIX_EXTENDED;
1502 preg.translate = 0;
1503 preg.fastmap = 0;
1504 preg.buffer = 0;
1505 preg.allocated = 0;
1506
1507 // assume a LIMITED forward search
1508 q = next_line(p);
1509 q = end_line(q);
1510 q = end - 1;
1511 if (dir == BACK) {
1512 q = prev_line(p);
1513 q = text;
1514 }
1515 // count the number of chars to search over, forward or backward
1516 size = q - p;
1517 if (size < 0)
1518 size = p - q;
1519 // RANGE could be negative if we are searching backwards
1520 range = q - p;
1521
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001522 q = re_compile_pattern(pat, strlen(pat), &preg);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001523 if (q != 0) {
1524 // The pattern was not compiled
1525 psbs("bad search pattern: \"%s\": %s", pat, q);
1526 i = 0; // return p if pattern not compiled
1527 goto cs1;
1528 }
1529
1530 q = p;
1531 if (range < 0) {
1532 q = p - size;
1533 if (q < text)
1534 q = text;
1535 }
1536 // search for the compiled pattern, preg, in p[]
1537 // range < 0- search backward
1538 // range > 0- search forward
1539 // 0 < start < size
1540 // re_search() < 0 not found or error
1541 // re_search() > 0 index of found pattern
1542 // struct pattern char int int int struct reg
1543 // re_search (*pattern_buffer, *string, size, start, range, *regs)
1544 i = re_search(&preg, q, size, 0, range, 0);
1545 if (i == -1) {
1546 p = 0;
1547 i = 0; // return NULL if pattern not found
1548 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001549 cs1:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001550 if (dir == FORWARD) {
1551 p = p + i;
1552 } else {
1553 p = p - i;
1554 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001555 return p;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001556#endif /* REGEX_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001557}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001558#endif /* FEATURE_VI_SEARCH */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001559
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001560static char *char_insert(char * p, char c) // insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001561{
1562 if (c == 22) { // Is this an ctrl-V?
1563 p = stupid_insert(p, '^'); // use ^ to indicate literal next
1564 p--; // backup onto ^
1565 refresh(FALSE); // show the ^
1566 c = get_one_char();
1567 *p = c;
1568 p++;
Paul Fox8552aec2005-09-16 12:20:05 +00001569 file_modified++; // has the file been modified
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001570 } else if (c == 27) { // Is this an ESC?
1571 cmd_mode = 0;
1572 cmdcnt = 0;
1573 end_cmd_q(); // stop adding to q
Paul Fox8552aec2005-09-16 12:20:05 +00001574 last_status_cksum = 0; // force status update
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001575 if ((p[-1] != '\n') && (dot > text)) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001576 p--;
1577 }
Paul Foxd13b90b2005-07-18 22:17:25 +00001578 } else if (c == erase_char || c == 8 || c == 127) { // Is this a BS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001579 // 123456789
1580 if ((p[-1] != '\n') && (dot>text)) {
1581 p--;
1582 p = text_hole_delete(p, p); // shrink buffer 1 char
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001583 }
1584 } else {
1585 // insert a char into text[]
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001586 char *sp; // "save p"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001587
1588 if (c == 13)
1589 c = '\n'; // translate \r to \n
1590 sp = p; // remember addr of insert
1591 p = stupid_insert(p, c); // insert the char
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001592#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001593 if (showmatch && strchr(")]}", *sp) != NULL) {
1594 showmatching(sp);
1595 }
1596 if (autoindent && c == '\n') { // auto indent the new line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001597 char *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001598
1599 q = prev_line(p); // use prev line as templet
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001600 for (; isblank(*q); q++) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001601 p = stupid_insert(p, *q); // insert the char
1602 }
1603 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001604#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001605 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001606 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001607}
1608
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001609static char *stupid_insert(char * p, char c) // stupidly insert the char c at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001610{
1611 p = text_hole_make(p, 1);
1612 if (p != 0) {
1613 *p = c;
Paul Fox8552aec2005-09-16 12:20:05 +00001614 file_modified++; // has the file been modified
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001615 p++;
1616 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001617 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001618}
1619
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001620static char find_range(char ** start, char ** stop, char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001621{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001622 char *save_dot, *p, *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001623 int cnt;
1624
1625 save_dot = dot;
1626 p = q = dot;
1627
1628 if (strchr("cdy><", c)) {
1629 // these cmds operate on whole lines
1630 p = q = begin_line(p);
1631 for (cnt = 1; cnt < cmdcnt; cnt++) {
1632 q = next_line(q);
1633 }
1634 q = end_line(q);
1635 } else if (strchr("^%$0bBeEft", c)) {
1636 // These cmds operate on char positions
1637 do_cmd(c); // execute movement cmd
1638 q = dot;
1639 } else if (strchr("wW", c)) {
1640 do_cmd(c); // execute movement cmd
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001641 // if we are at the next word's first char
1642 // step back one char
1643 // but check the possibilities when it is true
Eric Andersen5cc90ea2004-02-06 10:36:08 +00001644 if (dot > text && ((isspace(dot[-1]) && !isspace(dot[0]))
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001645 || (ispunct(dot[-1]) && !ispunct(dot[0]))
1646 || (isalnum(dot[-1]) && !isalnum(dot[0]))))
1647 dot--; // move back off of next word
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001648 if (dot > text && *dot == '\n')
1649 dot--; // stay off NL
1650 q = dot;
1651 } else if (strchr("H-k{", c)) {
1652 // these operate on multi-lines backwards
1653 q = end_line(dot); // find NL
1654 do_cmd(c); // execute movement cmd
1655 dot_begin();
1656 p = dot;
1657 } else if (strchr("L+j}\r\n", c)) {
1658 // these operate on multi-lines forwards
1659 p = begin_line(dot);
1660 do_cmd(c); // execute movement cmd
1661 dot_end(); // find NL
1662 q = dot;
1663 } else {
1664 c = 27; // error- return an ESC char
1665 //break;
1666 }
1667 *start = p;
1668 *stop = q;
1669 if (q < p) {
1670 *start = q;
1671 *stop = p;
1672 }
1673 dot = save_dot;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001674 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001675}
1676
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001677static int st_test(char * p, int type, int dir, char * tested)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001678{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001679 char c, c0, ci;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001680 int test, inc;
1681
1682 inc = dir;
1683 c = c0 = p[0];
1684 ci = p[inc];
1685 test = 0;
1686
1687 if (type == S_BEFORE_WS) {
1688 c = ci;
1689 test = ((!isspace(c)) || c == '\n');
1690 }
1691 if (type == S_TO_WS) {
1692 c = c0;
1693 test = ((!isspace(c)) || c == '\n');
1694 }
1695 if (type == S_OVER_WS) {
1696 c = c0;
1697 test = ((isspace(c)));
1698 }
1699 if (type == S_END_PUNCT) {
1700 c = ci;
1701 test = ((ispunct(c)));
1702 }
1703 if (type == S_END_ALNUM) {
1704 c = ci;
1705 test = ((isalnum(c)) || c == '_');
1706 }
1707 *tested = c;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001708 return test;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001709}
1710
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001711static char *skip_thing(char * p, int linecnt, int dir, int type)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001712{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001713 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001714
1715 while (st_test(p, type, dir, &c)) {
1716 // make sure we limit search to correct number of lines
1717 if (c == '\n' && --linecnt < 1)
1718 break;
1719 if (dir >= 0 && p >= end - 1)
1720 break;
1721 if (dir < 0 && p <= text)
1722 break;
1723 p += dir; // move to next char
1724 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001725 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001726}
1727
1728// find matching char of pair () [] {}
Bernhard Reutner-Fischerd24d5c82007-10-01 18:04:42 +00001729static char *find_pair(char * p, const char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001730{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001731 char match, *q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001732 int dir, level;
1733
1734 match = ')';
1735 level = 1;
1736 dir = 1; // assume forward
1737 switch (c) {
1738 case '(':
1739 match = ')';
1740 break;
1741 case '[':
1742 match = ']';
1743 break;
1744 case '{':
1745 match = '}';
1746 break;
1747 case ')':
1748 match = '(';
1749 dir = -1;
1750 break;
1751 case ']':
1752 match = '[';
1753 dir = -1;
1754 break;
1755 case '}':
1756 match = '{';
1757 dir = -1;
1758 break;
1759 }
1760 for (q = p + dir; text <= q && q < end; q += dir) {
1761 // look for match, count levels of pairs (( ))
1762 if (*q == c)
1763 level++; // increase pair levels
1764 if (*q == match)
1765 level--; // reduce pair level
1766 if (level == 0)
1767 break; // found matching pair
1768 }
1769 if (level != 0)
1770 q = NULL; // indicate no match
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001771 return q;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001772}
1773
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001774#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001775// show the matching char of a pair, () [] {}
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001776static void showmatching(char * p)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001777{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001778 char *q, *save_dot;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001779
1780 // we found half of a pair
1781 q = find_pair(p, *p); // get loc of matching char
1782 if (q == NULL) {
1783 indicate_error('3'); // no matching char
1784 } else {
1785 // "q" now points to matching pair
1786 save_dot = dot; // remember where we are
1787 dot = q; // go to new loc
1788 refresh(FALSE); // let the user see it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001789 mysleep(40); // give user some time
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001790 dot = save_dot; // go back to old loc
1791 refresh(FALSE);
1792 }
1793}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001794#endif /* FEATURE_VI_SETOPTS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001795
1796// open a hole in text[]
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001797static char *text_hole_make(char * p, int size) // at "p", make a 'size' byte hole
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001798{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001799 char *src, *dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001800 int cnt;
1801
1802 if (size <= 0)
1803 goto thm0;
1804 src = p;
1805 dest = p + size;
1806 cnt = end - src; // the rest of buffer
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001807 if ( ((end + size) >= (text + text_size)) // TODO: realloc here
1808 || memmove(dest, src, cnt) != dest) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001809 psbs("can't create room for new characters");
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001810 p = NULL;
1811 goto thm0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001812 }
1813 memset(p, ' ', size); // clear new hole
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001814 end += size; // adjust the new END
Paul Fox8552aec2005-09-16 12:20:05 +00001815 file_modified++; // has the file been modified
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001816 thm0:
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001817 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001818}
1819
1820// close a hole in text[]
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001821static char *text_hole_delete(char * p, char * q) // delete "p" thru "q", inclusive
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001822{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001823 char *src, *dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001824 int cnt, hole_size;
1825
1826 // move forwards, from beginning
1827 // assume p <= q
1828 src = q + 1;
1829 dest = p;
1830 if (q < p) { // they are backward- swap them
1831 src = p + 1;
1832 dest = q;
1833 }
1834 hole_size = q - p + 1;
1835 cnt = end - src;
1836 if (src < text || src > end)
1837 goto thd0;
1838 if (dest < text || dest >= end)
1839 goto thd0;
1840 if (src >= end)
1841 goto thd_atend; // just delete the end of the buffer
1842 if (memmove(dest, src, cnt) != dest) {
1843 psbs("can't delete the character");
1844 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001845 thd_atend:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001846 end = end - hole_size; // adjust the new END
1847 if (dest >= end)
1848 dest = end - 1; // make sure dest in below end-1
1849 if (end <= text)
1850 dest = end = text; // keep pointers valid
Paul Fox8552aec2005-09-16 12:20:05 +00001851 file_modified++; // has the file been modified
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001852 thd0:
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00001853 return dest;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001854}
1855
1856// copy text into register, then delete text.
1857// if dist <= 0, do not include, or go past, a NewLine
1858//
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001859static char *yank_delete(char * start, char * stop, int dist, int yf)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001860{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001861 char *p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001862
1863 // make sure start <= stop
1864 if (start > stop) {
1865 // they are backwards, reverse them
1866 p = start;
1867 start = stop;
1868 stop = p;
1869 }
1870 if (dist <= 0) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +00001871 // we cannot cross NL boundaries
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001872 p = start;
1873 if (*p == '\n')
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001874 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001875 // dont go past a NewLine
1876 for (; p + 1 <= stop; p++) {
1877 if (p[1] == '\n') {
1878 stop = p; // "stop" just before NewLine
1879 break;
1880 }
1881 }
1882 }
1883 p = start;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001884#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001885 text_yank(start, stop, YDreg);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001886#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001887 if (yf == YANKDEL) {
1888 p = text_hole_delete(start, stop);
1889 } // delete lines
Denis Vlasenko079f8af2006-11-27 16:49:31 +00001890 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001891}
1892
1893static void show_help(void)
1894{
1895 puts("These features are available:"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001896#if ENABLE_FEATURE_VI_SEARCH
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001897 "\n\tPattern searches with / and ?"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001898#endif
1899#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001900 "\n\tLast command repeat with \'.\'"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001901#endif
1902#if ENABLE_FEATURE_VI_YANKMARK
Bernhard Reutner-Fischerd24d5c82007-10-01 18:04:42 +00001903 "\n\tLine marking with 'x"
1904 "\n\tNamed buffers with \"x"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001905#endif
1906#if ENABLE_FEATURE_VI_READONLY
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001907 "\n\tReadonly if vi is called as \"view\""
1908 "\n\tReadonly with -R command line arg"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001909#endif
1910#if ENABLE_FEATURE_VI_SET
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001911 "\n\tSome colon mode commands with \':\'"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001912#endif
1913#if ENABLE_FEATURE_VI_SETOPTS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001914 "\n\tSettable options with \":set\""
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001915#endif
1916#if ENABLE_FEATURE_VI_USE_SIGNALS
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001917 "\n\tSignal catching- ^C"
1918 "\n\tJob suspend and resume with ^Z"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001919#endif
1920#if ENABLE_FEATURE_VI_WIN_RESIZE
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001921 "\n\tAdapt to window re-sizes"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001922#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001923 );
1924}
1925
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001926static inline void print_literal(char * buf, const char * s) // copy s to buf, convert unprintable
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001927{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001928 unsigned char c;
1929 char b[2];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001930
1931 b[1] = '\0';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001932 buf[0] = '\0';
1933 if (!s[0])
1934 s = "(NULL)";
1935 for (; *s; s++) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001936 int c_is_no_print;
1937
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001938 c = *s;
Denis Vlasenko2a51af22007-03-21 22:31:24 +00001939 c_is_no_print = (c & 0x80) && !Isprint(c);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001940 if (c_is_no_print) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001941 strcat(buf, SOn);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001942 c = '.';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001943 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001944 if (c < ' ' || c == 127) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001945 strcat(buf, "^");
1946 if (c == 127)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001947 c = '?';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001948 else
1949 c += '@';
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001950 }
1951 b[0] = c;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001952 strcat(buf, b);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00001953 if (c_is_no_print)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001954 strcat(buf, SOs);
1955 if (*s == '\n')
1956 strcat(buf, "$");
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001957 }
1958}
1959
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001960#if ENABLE_FEATURE_VI_DOT_CMD
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001961static void start_new_cmd_q(char c)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001962{
1963 // release old cmd
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001964 free(last_modifying_cmd);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001965 // get buffer for new cmd
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001966 last_modifying_cmd = xzalloc(MAX_LINELEN);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001967 // if there is a current cmd count put it in the buffer first
1968 if (cmdcnt > 0)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001969 sprintf(last_modifying_cmd, "%d%c", cmdcnt, c);
Paul Foxd957b952005-11-28 18:07:53 +00001970 else // just save char c onto queue
1971 last_modifying_cmd[0] = c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001972 adding2q = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001973}
1974
1975static void end_cmd_q(void)
1976{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001977#if ENABLE_FEATURE_VI_YANKMARK
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001978 YDreg = 26; // go back to default Yank/Delete reg
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001979#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001980 adding2q = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001981}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001982#endif /* FEATURE_VI_DOT_CMD */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001983
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001984#if ENABLE_FEATURE_VI_YANKMARK \
1985 || (ENABLE_FEATURE_VI_COLON && ENABLE_FEATURE_VI_SEARCH) \
1986 || ENABLE_FEATURE_VI_CRASHME
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001987static char *string_insert(char * p, char * s) // insert the string at 'p'
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00001988{
1989 int cnt, i;
1990
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00001991 i = strlen(s);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001992 if (text_hole_make(p, i)) {
1993 strncpy(p, s, i);
1994 for (cnt = 0; *s != '\0'; s++) {
1995 if (*s == '\n')
1996 cnt++;
1997 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00001998#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00001999 psb("Put %d lines (%d chars) from [%c]", cnt, i, what_reg());
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002000#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002001 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002002 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002003}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002004#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002005
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002006#if ENABLE_FEATURE_VI_YANKMARK
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002007static char *text_yank(char * p, char * q, int dest) // copy text into a register
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002008{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002009 char *t;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002010 int cnt;
2011
2012 if (q < p) { // they are backwards- reverse them
2013 t = q;
2014 q = p;
2015 p = t;
2016 }
2017 cnt = q - p + 1;
2018 t = reg[dest];
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00002019 free(t); // if already a yank register, free it
Denis Vlasenkob95636c2006-12-19 23:36:04 +00002020 t = xmalloc(cnt + 1); // get a new register
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002021 memset(t, '\0', cnt + 1); // clear new text[]
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002022 strncpy(t, p, cnt); // copy text[] into bufer
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002023 reg[dest] = t;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002024 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002025}
2026
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002027static char what_reg(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002028{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002029 char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002030
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002031 c = 'D'; // default to D-reg
2032 if (0 <= YDreg && YDreg <= 25)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002033 c = 'a' + (char) YDreg;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002034 if (YDreg == 26)
2035 c = 'D';
2036 if (YDreg == 27)
2037 c = 'U';
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002038 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002039}
2040
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002041static void check_context(char cmd)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002042{
2043 // A context is defined to be "modifying text"
2044 // Any modifying command establishes a new context.
2045
2046 if (dot < context_start || dot > context_end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002047 if (strchr(modifying_cmds, cmd) != NULL) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002048 // we are trying to modify text[]- make this the current context
2049 mark[27] = mark[26]; // move cur to prev
2050 mark[26] = dot; // move local to cur
2051 context_start = prev_line(prev_line(dot));
2052 context_end = next_line(next_line(dot));
2053 //loiter= start_loiter= now;
2054 }
2055 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002056}
2057
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002058static inline char *swap_context(char * p) // goto new context for '' command make this the current context
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002059{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002060 char *tmp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002061
2062 // the current context is in mark[26]
2063 // the previous context is in mark[27]
2064 // only swap context if other context is valid
2065 if (text <= mark[27] && mark[27] <= end - 1) {
2066 tmp = mark[27];
2067 mark[27] = mark[26];
2068 mark[26] = tmp;
2069 p = mark[26]; // where we are going- previous context
2070 context_start = prev_line(prev_line(prev_line(p)));
2071 context_end = next_line(next_line(next_line(p)));
2072 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002073 return p;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002074}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002075#endif /* FEATURE_VI_YANKMARK */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002076
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002077//----- Set terminal attributes --------------------------------
2078static void rawmode(void)
2079{
2080 tcgetattr(0, &term_orig);
2081 term_vi = term_orig;
2082 term_vi.c_lflag &= (~ICANON & ~ECHO); // leave ISIG ON- allow intr's
2083 term_vi.c_iflag &= (~IXON & ~ICRNL);
2084 term_vi.c_oflag &= (~ONLCR);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002085 term_vi.c_cc[VMIN] = 1;
2086 term_vi.c_cc[VTIME] = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002087 erase_char = term_vi.c_cc[VERASE];
2088 tcsetattr(0, TCSANOW, &term_vi);
2089}
2090
2091static void cookmode(void)
2092{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002093 fflush(stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002094 tcsetattr(0, TCSANOW, &term_orig);
2095}
2096
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002097//----- Come here when we get a window resize signal ---------
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002098#if ENABLE_FEATURE_VI_USE_SIGNALS
"Vladimir N. Oleynik"cd473dd2006-01-30 13:41:53 +00002099static void winch_sig(int sig ATTRIBUTE_UNUSED)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002100{
2101 signal(SIGWINCH, winch_sig);
Rob Landleye5e1a102006-06-21 01:15:36 +00002102 if (ENABLE_FEATURE_VI_WIN_RESIZE)
Denis Vlasenko621204b2006-10-27 09:03:24 +00002103 get_terminal_width_height(0, &columns, &rows);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002104 new_screen(rows, columns); // get memory for virtual screen
2105 redraw(TRUE); // re-draw the screen
2106}
2107
2108//----- Come here when we get a continue signal -------------------
"Vladimir N. Oleynik"cd473dd2006-01-30 13:41:53 +00002109static void cont_sig(int sig ATTRIBUTE_UNUSED)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002110{
2111 rawmode(); // terminal to "raw"
Paul Fox8552aec2005-09-16 12:20:05 +00002112 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002113 redraw(TRUE); // re-draw the screen
2114
2115 signal(SIGTSTP, suspend_sig);
2116 signal(SIGCONT, SIG_DFL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002117 kill(my_pid, SIGCONT);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002118}
2119
2120//----- Come here when we get a Suspend signal -------------------
"Vladimir N. Oleynik"cd473dd2006-01-30 13:41:53 +00002121static void suspend_sig(int sig ATTRIBUTE_UNUSED)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002122{
2123 place_cursor(rows - 1, 0, FALSE); // go to bottom of screen
2124 clear_to_eol(); // Erase to end of line
2125 cookmode(); // terminal to "cooked"
2126
2127 signal(SIGCONT, cont_sig);
2128 signal(SIGTSTP, SIG_DFL);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002129 kill(my_pid, SIGTSTP);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002130}
2131
2132//----- Come here when we get a signal ---------------------------
2133static void catch_sig(int sig)
2134{
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002135 signal(SIGINT, catch_sig);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002136 if (sig)
"Vladimir N. Oleynik"cd473dd2006-01-30 13:41:53 +00002137 longjmp(restart, sig);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002138}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002139#endif /* FEATURE_VI_USE_SIGNALS */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002140
2141static int mysleep(int hund) // sleep for 'h' 1/100 seconds
2142{
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002143 struct pollfd pfd[1];
Denis Vlasenkocd5c7862007-05-17 16:37:22 +00002144
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002145 pfd[0].fd = 0;
2146 pfd[0].events = POLLIN;
Denis Vlasenko5d61e712007-09-27 10:09:59 +00002147 return safe_poll(pfd, 1, hund*10) > 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002148}
2149
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002150static int readed_for_parse;
2151
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002152//----- IO Routines --------------------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002153static char readit(void) // read (maybe cursor) key from stdin
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002154{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002155 char c;
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002156 int n;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002157 struct esc_cmds {
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002158 const char seq[4];
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002159 char val;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002160 };
2161
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002162 static const struct esc_cmds esccmds[] = {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002163 {"OA", VI_K_UP}, // cursor key Up
2164 {"OB", VI_K_DOWN}, // cursor key Down
2165 {"OC", VI_K_RIGHT}, // Cursor Key Right
2166 {"OD", VI_K_LEFT}, // cursor key Left
2167 {"OH", VI_K_HOME}, // Cursor Key Home
2168 {"OF", VI_K_END}, // Cursor Key End
2169 {"[A", VI_K_UP}, // cursor key Up
2170 {"[B", VI_K_DOWN}, // cursor key Down
2171 {"[C", VI_K_RIGHT}, // Cursor Key Right
2172 {"[D", VI_K_LEFT}, // cursor key Left
2173 {"[H", VI_K_HOME}, // Cursor Key Home
2174 {"[F", VI_K_END}, // Cursor Key End
2175 {"[1~", VI_K_HOME}, // Cursor Key Home
2176 {"[2~", VI_K_INSERT}, // Cursor Key Insert
2177 {"[4~", VI_K_END}, // Cursor Key End
2178 {"[5~", VI_K_PAGEUP}, // Cursor Key Page Up
2179 {"[6~", VI_K_PAGEDOWN},// Cursor Key Page Down
2180 {"OP", VI_K_FUN1}, // Function Key F1
2181 {"OQ", VI_K_FUN2}, // Function Key F2
2182 {"OR", VI_K_FUN3}, // Function Key F3
2183 {"OS", VI_K_FUN4}, // Function Key F4
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002184 // careful: these have no terminating NUL!
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002185 {"[15~", VI_K_FUN5}, // Function Key F5
2186 {"[17~", VI_K_FUN6}, // Function Key F6
2187 {"[18~", VI_K_FUN7}, // Function Key F7
2188 {"[19~", VI_K_FUN8}, // Function Key F8
2189 {"[20~", VI_K_FUN9}, // Function Key F9
2190 {"[21~", VI_K_FUN10}, // Function Key F10
2191 {"[23~", VI_K_FUN11}, // Function Key F11
2192 {"[24~", VI_K_FUN12}, // Function Key F12
2193 {"[11~", VI_K_FUN1}, // Function Key F1
2194 {"[12~", VI_K_FUN2}, // Function Key F2
2195 {"[13~", VI_K_FUN3}, // Function Key F3
2196 {"[14~", VI_K_FUN4}, // Function Key F4
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002197 };
Denis Vlasenko80b8b392007-06-25 10:55:35 +00002198 enum { ESCCMDS_COUNT = ARRAY_SIZE(esccmds) };
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002199
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002200 alarm(0); // turn alarm OFF while we wait for input
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002201 fflush(stdout);
2202 n = readed_for_parse;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002203 // get input from User- are there already input chars in Q?
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002204 if (n <= 0) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002205 // the Q is empty, wait for a typed char
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002206 n = safe_read(0, readbuffer, MAX_LINELEN - 1);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002207 if (n < 0) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002208 if (errno == EBADF || errno == EFAULT || errno == EINVAL
Denis Vlasenko2f6ae432007-07-19 22:50:47 +00002209 || errno == EIO)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002210 editing = 0;
2211 errno = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002212 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002213 if (n <= 0)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002214 return 0; // error
2215 if (readbuffer[0] == 27) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002216 // This is an ESC char. Is this Esc sequence?
2217 // Could be bare Esc key. See if there are any
2218 // more chars to read after the ESC. This would
2219 // be a Function or Cursor Key sequence.
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002220 struct pollfd pfd[1];
2221 pfd[0].fd = 0;
2222 pfd[0].events = POLLIN;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002223 // keep reading while there are input chars and room in buffer
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002224 while (safe_poll(pfd, 1, 0) > 0 && n <= (MAX_LINELEN - 5)) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002225 // read the rest of the ESC string
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002226 int r = safe_read(0, readbuffer + n, MAX_LINELEN - n);
Denis Vlasenko87f3b262007-09-07 13:43:28 +00002227 if (r > 0)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002228 n += r;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002229 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002230 }
2231 readed_for_parse = n;
2232 }
2233 c = readbuffer[0];
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002234 if (c == 27 && n > 1) {
2235 // Maybe cursor or function key?
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002236 const struct esc_cmds *eindex;
2237
2238 for (eindex = esccmds; eindex < &esccmds[ESCCMDS_COUNT]; eindex++) {
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002239 int cnt = strnlen(eindex->seq, 4);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002240
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002241 if (n <= cnt)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002242 continue;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002243 if (strncmp(eindex->seq, readbuffer + 1, cnt))
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002244 continue;
2245 // is a Cursor key- put derived value back into Q
2246 c = eindex->val;
2247 // for squeeze out the ESC sequence
2248 n = cnt + 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002249 break;
2250 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002251 if (eindex == &esccmds[ESCCMDS_COUNT]) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002252 /* defined ESC sequence not found, set only one ESC */
2253 n = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002254 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002255 } else {
2256 n = 1;
2257 }
2258 // remove key sequence from Q
2259 readed_for_parse -= n;
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002260 memmove(readbuffer, readbuffer + n, MAX_LINELEN - n);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002261 alarm(3); // we are done waiting for input, turn alarm ON
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002262 return c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002263}
2264
2265//----- IO Routines --------------------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002266static char get_one_char(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002267{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002268 static char c;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002269
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002270#if ENABLE_FEATURE_VI_DOT_CMD
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002271 // ! adding2q && ioq == 0 read()
2272 // ! adding2q && ioq != 0 *ioq
2273 // adding2q *last_modifying_cmd= read()
2274 if (!adding2q) {
2275 // we are not adding to the q.
2276 // but, we may be reading from a q
2277 if (ioq == 0) {
2278 // there is no current q, read from STDIN
2279 c = readit(); // get the users input
2280 } else {
2281 // there is a queue to get chars from first
2282 c = *ioq++;
2283 if (c == '\0') {
2284 // the end of the q, read from STDIN
2285 free(ioq_start);
2286 ioq_start = ioq = 0;
2287 c = readit(); // get the users input
2288 }
2289 }
2290 } else {
2291 // adding STDIN chars to q
2292 c = readit(); // get the users input
2293 if (last_modifying_cmd != 0) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002294 int len = strlen(last_modifying_cmd);
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002295 if (len >= MAX_LINELEN - 1) {
Eric Andersenfda2b7f2002-10-26 10:19:19 +00002296 psbs("last_modifying_cmd overrun");
2297 } else {
2298 // add new char to q
2299 last_modifying_cmd[len] = c;
2300 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002301 }
2302 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002303#else
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002304 c = readit(); // get the users input
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002305#endif /* FEATURE_VI_DOT_CMD */
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002306 return c; // return the char, where ever it came from
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002307}
2308
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002309static char *get_input_line(const char * prompt) // get input line- use "status line"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002310{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002311 static char *obufp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002312
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002313 char buf[MAX_LINELEN];
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002314 char c;
2315 int i;
2316
2317 strcpy(buf, prompt);
Paul Fox8552aec2005-09-16 12:20:05 +00002318 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002319 place_cursor(rows - 1, 0, FALSE); // go to Status line, bottom of screen
2320 clear_to_eol(); // clear the line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002321 write1(prompt); // write out the :, /, or ? prompt
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002322
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002323 i = strlen(buf);
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002324 while (i < MAX_LINELEN) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002325 c = get_one_char(); // read user input
2326 if (c == '\n' || c == '\r' || c == 27)
2327 break; // is this end of input
Paul Foxf2de0b72005-09-13 22:20:37 +00002328 if (c == erase_char || c == 8 || c == 127) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00002329 // user wants to erase prev char
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002330 i--; // backup to prev char
2331 buf[i] = '\0'; // erase the char
2332 buf[i + 1] = '\0'; // null terminate buffer
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002333 write1("\b \b"); // erase char on screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002334 if (i <= 0) { // user backs up before b-o-l, exit
2335 break;
2336 }
2337 } else {
2338 buf[i] = c; // save char in buffer
2339 buf[i + 1] = '\0'; // make sure buffer is null terminated
Denis Vlasenko4daad902007-09-27 10:20:47 +00002340 bb_putchar(c); // echo the char back to user
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002341 i++;
2342 }
2343 }
2344 refresh(FALSE);
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00002345 free(obufp);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002346 obufp = xstrdup(buf);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002347 return obufp;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002348}
2349
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002350static int file_size(const char *fn) // what is the byte size of "fn"
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002351{
2352 struct stat st_buf;
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002353 int cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002354
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002355 cnt = -1;
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002356 if (fn && fn[0] && stat(fn, &st_buf) == 0) // see if file exists
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002357 cnt = (int) st_buf.st_size;
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002358 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002359}
2360
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002361static int file_insert(const char * fn, char *p
2362 USE_FEATURE_VI_READONLY(, int update_ro_status))
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002363{
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002364 int cnt = -1;
2365 int fd, size;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002366 struct stat statbuf;
2367
2368 /* Validate file */
2369 if (stat(fn, &statbuf) < 0) {
2370 psbs("\"%s\" %s", fn, strerror(errno));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002371 goto fi0;
2372 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002373 if ((statbuf.st_mode & S_IFREG) == 0) {
2374 // This is not a regular file
2375 psbs("\"%s\" Not a regular file", fn);
2376 goto fi0;
2377 }
2378 /* // this check is done by open()
2379 if ((statbuf.st_mode & (S_IRUSR | S_IRGRP | S_IROTH)) == 0) {
2380 // dont have any read permissions
2381 psbs("\"%s\" Not readable", fn);
2382 goto fi0;
2383 }
2384 */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002385 if (p < text || p > end) {
2386 psbs("Trying to insert file outside of memory");
2387 goto fi0;
2388 }
2389
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002390 // read file to buffer
2391 fd = open(fn, O_RDONLY);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002392 if (fd < 0) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002393 psbs("\"%s\" %s", fn, strerror(errno));
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002394 goto fi0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002395 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002396 size = statbuf.st_size;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002397 p = text_hole_make(p, size);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002398 if (p == NULL)
2399 goto fi0;
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00002400 cnt = safe_read(fd, p, size);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002401 if (cnt < 0) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002402 psbs("\"%s\" %s", fn, strerror(errno));
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002403 p = text_hole_delete(p, p + size - 1); // un-do buffer insert
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002404 } else if (cnt < size) {
2405 // There was a partial read, shrink unused space text[]
2406 p = text_hole_delete(p + cnt, p + (size - cnt) - 1); // un-do buffer insert
Denis Vlasenkoea620772006-10-14 02:23:43 +00002407 psbs("cannot read all of file \"%s\"", fn);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002408 }
2409 if (cnt >= size)
Paul Fox8552aec2005-09-16 12:20:05 +00002410 file_modified++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002411 close(fd);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002412 fi0:
Denis Vlasenko856be772007-08-17 08:29:48 +00002413#if ENABLE_FEATURE_VI_READONLY
2414 if (update_ro_status
2415 && ((access(fn, W_OK) < 0) ||
2416 /* root will always have access()
2417 * so we check fileperms too */
2418 !(statbuf.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH))
2419 )
2420 ) {
Denis Vlasenko2f6ae432007-07-19 22:50:47 +00002421 SET_READONLY_FILE(readonly_mode);
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002422 }
Denis Vlasenko856be772007-08-17 08:29:48 +00002423#endif
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002424 return cnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002425}
2426
Denis Vlasenko59a1f302007-07-14 22:43:10 +00002427
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002428static int file_write(char * fn, char * first, char * last)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002429{
2430 int fd, cnt, charcnt;
2431
2432 if (fn == 0) {
2433 psbs("No current filename");
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002434 return -2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002435 }
2436 charcnt = 0;
2437 // FIXIT- use the correct umask()
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002438 fd = open(fn, (O_WRONLY | O_CREAT | O_TRUNC), 0664);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002439 if (fd < 0)
Denis Vlasenko079f8af2006-11-27 16:49:31 +00002440 return -1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002441 cnt = last - first + 1;
2442 charcnt = write(fd, first, cnt);
2443 if (charcnt == cnt) {
2444 // good write
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002445 //file_modified = FALSE; // the file has not been modified
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002446 } else {
2447 charcnt = 0;
2448 }
2449 close(fd);
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00002450 return charcnt;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002451}
2452
2453//----- Terminal Drawing ---------------------------------------
2454// The terminal is made up of 'rows' line of 'columns' columns.
Eric Andersenaff114c2004-04-14 17:51:38 +00002455// classically this would be 24 x 80.
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002456// screen coordinates
2457// 0,0 ... 0,79
2458// 1,0 ... 1,79
2459// . ... .
2460// . ... .
2461// 22,0 ... 22,79
2462// 23,0 ... 23,79 status line
2463//
2464
2465//----- Move the cursor to row x col (count from 0, not 1) -------
2466static void place_cursor(int row, int col, int opti)
2467{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002468 char cm1[MAX_LINELEN];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002469 char *cm;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002470#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002471 char cm2[MAX_LINELEN];
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002472 char *screenp;
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002473 // char cm3[MAX_LINELEN];
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002474 int Rrow = last_row;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002475#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002476
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002477 memset(cm1, '\0', MAX_LINELEN); // clear the buffer
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002478
2479 if (row < 0) row = 0;
2480 if (row >= rows) row = rows - 1;
2481 if (col < 0) col = 0;
2482 if (col >= columns) col = columns - 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002483
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002484 //----- 1. Try the standard terminal ESC sequence
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002485 sprintf(cm1, CMrc, row + 1, col + 1);
2486 cm = cm1;
2487 if (!opti)
2488 goto pc0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002489
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002490#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002491 //----- find the minimum # of chars to move cursor -------------
2492 //----- 2. Try moving with discreet chars (Newline, [back]space, ...)
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002493 memset(cm2, '\0', MAX_LINELEN); // clear the buffer
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002494
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002495 // move to the correct row
2496 while (row < Rrow) {
2497 // the cursor has to move up
2498 strcat(cm2, CMup);
2499 Rrow--;
2500 }
2501 while (row > Rrow) {
2502 // the cursor has to move down
2503 strcat(cm2, CMdown);
2504 Rrow++;
2505 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002506
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002507 // now move to the correct column
2508 strcat(cm2, "\r"); // start at col 0
2509 // just send out orignal source char to get to correct place
2510 screenp = &screen[row * columns]; // start of screen line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002511 strncat(cm2, screenp, col);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002512
2513 //----- 3. Try some other way of moving cursor
2514 //---------------------------------------------
2515
2516 // pick the shortest cursor motion to send out
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002517 cm = cm1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002518 if (strlen(cm2) < strlen(cm)) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002519 cm = cm2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002520 } /* else if (strlen(cm3) < strlen(cm)) {
2521 cm= cm3;
2522 } */
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002523#endif /* FEATURE_VI_OPTIMIZE_CURSOR */
2524 pc0:
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002525 write1(cm); // move the cursor
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002526}
2527
2528//----- Erase from cursor to end of line -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002529static void clear_to_eol(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002530{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002531 write1(Ceol); // Erase from cursor to end of line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002532}
2533
2534//----- Erase from cursor to end of screen -----------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002535static void clear_to_eos(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002536{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002537 write1(Ceos); // Erase from cursor to end of screen
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002538}
2539
2540//----- Start standout mode ------------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002541static void standout_start(void) // send "start reverse video" sequence
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002542{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002543 write1(SOs); // Start reverse video mode
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002544}
2545
2546//----- End standout mode --------------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002547static void standout_end(void) // send "end reverse video" sequence
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002548{
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002549 write1(SOn); // End reverse video mode
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002550}
2551
2552//----- Flash the screen --------------------------------------
2553static void flash(int h)
2554{
2555 standout_start(); // send "start reverse video" sequence
2556 redraw(TRUE);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002557 mysleep(h);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002558 standout_end(); // send "end reverse video" sequence
2559 redraw(TRUE);
2560}
2561
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002562static void Indicate_Error(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002563{
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002564#if ENABLE_FEATURE_VI_CRASHME
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002565 if (crashme > 0)
2566 return; // generate a random command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002567#endif
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002568 if (!err_method) {
2569 write1(bell); // send out a bell character
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002570 } else {
2571 flash(10);
2572 }
2573}
2574
2575//----- Screen[] Routines --------------------------------------
2576//----- Erase the Screen[] memory ------------------------------
Mike Frysinger4e5936e2005-04-16 04:30:38 +00002577static void screen_erase(void)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002578{
2579 memset(screen, ' ', screensize); // clear new screen
2580}
2581
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002582static int bufsum(char *buf, int count)
Paul Fox8552aec2005-09-16 12:20:05 +00002583{
2584 int sum = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002585 char *e = buf + count;
2586
Paul Fox8552aec2005-09-16 12:20:05 +00002587 while (buf < e)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002588 sum += (unsigned char) *buf++;
Paul Fox8552aec2005-09-16 12:20:05 +00002589 return sum;
2590}
2591
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002592//----- Draw the status line at bottom of the screen -------------
2593static void show_status_line(void)
2594{
Paul Foxc3504852005-09-16 12:48:18 +00002595 int cnt = 0, cksum = 0;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002596
Paul Fox8552aec2005-09-16 12:20:05 +00002597 // either we already have an error or status message, or we
2598 // create one.
2599 if (!have_status_msg) {
2600 cnt = format_edit_status();
2601 cksum = bufsum(status_buffer, cnt);
2602 }
2603 if (have_status_msg || ((cnt > 0 && last_status_cksum != cksum))) {
2604 last_status_cksum= cksum; // remember if we have seen this line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002605 place_cursor(rows - 1, 0, FALSE); // put cursor on status line
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002606 write1(status_buffer);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002607 clear_to_eol();
Paul Fox8552aec2005-09-16 12:20:05 +00002608 if (have_status_msg) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002609 if (((int)strlen(status_buffer) - (have_status_msg - 1)) >
Paul Fox8552aec2005-09-16 12:20:05 +00002610 (columns - 1) ) {
2611 have_status_msg = 0;
2612 Hit_Return();
2613 }
2614 have_status_msg = 0;
2615 }
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002616 place_cursor(crow, ccol, FALSE); // put cursor back in correct place
2617 }
Eric Andersena9eb33d2004-08-19 19:15:06 +00002618 fflush(stdout);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002619}
2620
2621//----- format the status buffer, the bottom line of screen ------
Paul Fox8552aec2005-09-16 12:20:05 +00002622// format status buffer, with STANDOUT mode
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002623static void psbs(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002624{
2625 va_list args;
2626
2627 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002628 strcpy(status_buffer, SOs); // Terminal standout mode on
2629 vsprintf(status_buffer + strlen(status_buffer), format, args);
2630 strcat(status_buffer, SOn); // Terminal standout mode off
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002631 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00002632
2633 have_status_msg = 1 + sizeof(SOs) + sizeof(SOn) - 2;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002634}
2635
Paul Fox8552aec2005-09-16 12:20:05 +00002636// format status buffer
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002637static void psb(const char *format, ...)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002638{
2639 va_list args;
2640
2641 va_start(args, format);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002642 vsprintf(status_buffer, format, args);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002643 va_end(args);
Paul Fox8552aec2005-09-16 12:20:05 +00002644
2645 have_status_msg = 1;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002646}
2647
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002648static void ni(const char * s) // display messages
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002649{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002650 char buf[MAX_LINELEN];
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002651
2652 print_literal(buf, s);
2653 psbs("\'%s\' is not implemented", buf);
2654}
2655
Paul Fox8552aec2005-09-16 12:20:05 +00002656static int format_edit_status(void) // show file status on status line
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002657{
Paul Fox8552aec2005-09-16 12:20:05 +00002658 static int tot;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00002659 static const char cmd_mode_indicator[] ALIGN1 = "-IR-";
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002660 int cur, percent, ret, trunc_at;
2661
Paul Fox8552aec2005-09-16 12:20:05 +00002662 // file_modified is now a counter rather than a flag. this
2663 // helps reduce the amount of line counting we need to do.
2664 // (this will cause a mis-reporting of modified status
2665 // once every MAXINT editing operations.)
2666
2667 // it would be nice to do a similar optimization here -- if
2668 // we haven't done a motion that could have changed which line
2669 // we're on, then we shouldn't have to do this count_lines()
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002670 cur = count_lines(text, dot);
Paul Fox8552aec2005-09-16 12:20:05 +00002671
2672 // reduce counting -- the total lines can't have
2673 // changed if we haven't done any edits.
2674 if (file_modified != last_file_modified) {
2675 tot = cur + count_lines(dot, end - 1) - 1;
2676 last_file_modified = file_modified;
2677 }
2678
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002679 // current line percent
2680 // ------------- ~~ ----------
2681 // total lines 100
2682 if (tot > 0) {
2683 percent = (100 * cur) / tot;
2684 } else {
2685 cur = tot = 0;
2686 percent = 100;
2687 }
Eric Andersen0ef24c62005-07-18 10:32:59 +00002688
Paul Fox8552aec2005-09-16 12:20:05 +00002689 trunc_at = columns < STATUS_BUFFER_LEN-1 ?
2690 columns : STATUS_BUFFER_LEN-1;
2691
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002692 ret = snprintf(status_buffer, trunc_at+1,
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002693#if ENABLE_FEATURE_VI_READONLY
Paul Fox8552aec2005-09-16 12:20:05 +00002694 "%c %s%s%s %d/%d %d%%",
2695#else
2696 "%c %s%s %d/%d %d%%",
2697#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002698 cmd_mode_indicator[cmd_mode & 3],
2699 (current_filename != NULL ? current_filename : "No file"),
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002700#if ENABLE_FEATURE_VI_READONLY
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002701 (readonly_mode ? " [Readonly]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00002702#endif
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00002703 (file_modified ? " [Modified]" : ""),
Paul Fox8552aec2005-09-16 12:20:05 +00002704 cur, tot, percent);
2705
2706 if (ret >= 0 && ret < trunc_at)
2707 return ret; /* it all fit */
2708
2709 return trunc_at; /* had to truncate */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002710}
2711
2712//----- Force refresh of all Lines -----------------------------
2713static void redraw(int full_screen)
2714{
2715 place_cursor(0, 0, FALSE); // put cursor in correct place
2716 clear_to_eos(); // tel terminal to erase display
2717 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00002718 last_status_cksum = 0; // force status update
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002719 refresh(full_screen); // this will redraw the entire display
Paul Fox8552aec2005-09-16 12:20:05 +00002720 show_status_line();
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002721}
2722
2723//----- Format a text[] line into a buffer ---------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002724static void format_line(char *dest, char *src, int li)
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002725{
2726 int co;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002727 char c;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002728
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002729 for (co = 0; co < MAX_SCR_COLS; co++) {
Denis Vlasenko2a51af22007-03-21 22:31:24 +00002730 c = ' '; // assume blank
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002731 if (li > 0 && co == 0) {
2732 c = '~'; // not first line, assume Tilde
2733 }
2734 // are there chars in text[] and have we gone past the end
2735 if (text < end && src < end) {
2736 c = *src++;
2737 }
2738 if (c == '\n')
2739 break;
Denis Vlasenko2a51af22007-03-21 22:31:24 +00002740 if ((c & 0x80) && !Isprint(c)) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002741 c = '.';
2742 }
Denis Vlasenko2a51af22007-03-21 22:31:24 +00002743 if ((unsigned char)(c) < ' ' || c == 0x7f) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002744 if (c == '\t') {
2745 c = ' ';
2746 // co % 8 != 7
2747 for (; (co % tabstop) != (tabstop - 1); co++) {
2748 dest[co] = c;
2749 }
2750 } else {
2751 dest[co++] = '^';
Denis Vlasenko2a51af22007-03-21 22:31:24 +00002752 if (c == 0x7f)
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002753 c = '?';
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002754 else
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002755 c += '@'; // make it visible
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002756 }
2757 }
2758 // the co++ is done here so that the column will
2759 // not be overwritten when we blank-out the rest of line
2760 dest[co] = c;
2761 if (src >= end)
2762 break;
2763 }
2764}
2765
2766//----- Refresh the changed screen lines -----------------------
2767// Copy the source line from text[] into the buffer and note
2768// if the current screenline is different from the new buffer.
2769// If they differ then that line needs redrawing on the terminal.
2770//
2771static void refresh(int full_screen)
2772{
2773 static int old_offset;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002774
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002775 int li, changed;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002776 char buf[MAX_SCR_COLS];
2777 char *tp, *sp; // pointer into text[] and screen[]
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002778#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002779 int last_li = -2; // last line that changed- for optimizing cursor movement
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002780#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002781
Rob Landleye5e1a102006-06-21 01:15:36 +00002782 if (ENABLE_FEATURE_VI_WIN_RESIZE)
2783 get_terminal_width_height(0, &columns, &rows);
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002784 sync_cursor(dot, &crow, &ccol); // where cursor will be (on "dot")
2785 tp = screenbegin; // index into text[] of top line
2786
2787 // compare text[] to screen[] and mark screen[] lines that need updating
2788 for (li = 0; li < rows - 1; li++) {
2789 int cs, ce; // column start & end
2790 memset(buf, ' ', MAX_SCR_COLS); // blank-out the buffer
2791 buf[MAX_SCR_COLS-1] = 0; // NULL terminate the buffer
2792 // format current text line into buf
2793 format_line(buf, tp, li);
2794
2795 // skip to the end of the current text[] line
Denis Vlasenkob71c6682007-07-21 15:08:09 +00002796 while (tp < end && *tp++ != '\n') /*no-op*/;
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002797
2798 // see if there are any changes between vitual screen and buf
2799 changed = FALSE; // assume no change
2800 cs= 0;
2801 ce= columns-1;
2802 sp = &screen[li * columns]; // start of screen line
2803 if (full_screen) {
2804 // force re-draw of every single column from 0 - columns-1
2805 goto re0;
2806 }
2807 // compare newly formatted buffer with virtual screen
2808 // look forward for first difference between buf and screen
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002809 for (; cs <= ce; cs++) {
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002810 if (buf[cs + offset] != sp[cs]) {
2811 changed = TRUE; // mark for redraw
2812 break;
2813 }
2814 }
2815
2816 // look backward for last difference between buf and screen
2817 for ( ; ce >= cs; ce--) {
2818 if (buf[ce + offset] != sp[ce]) {
2819 changed = TRUE; // mark for redraw
2820 break;
2821 }
2822 }
2823 // now, cs is index of first diff, and ce is index of last diff
2824
2825 // if horz offset has changed, force a redraw
2826 if (offset != old_offset) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002827 re0:
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002828 changed = TRUE;
2829 }
2830
2831 // make a sanity check of columns indexes
2832 if (cs < 0) cs= 0;
2833 if (ce > columns-1) ce= columns-1;
2834 if (cs > ce) { cs= 0; ce= columns-1; }
2835 // is there a change between vitual screen and buf
2836 if (changed) {
2837 // copy changed part of buffer to virtual screen
2838 memmove(sp+cs, buf+(cs+offset), ce-cs+1);
2839
2840 // move cursor to column of first change
2841 if (offset != old_offset) {
2842 // opti_cur_move is still too stupid
2843 // to handle offsets correctly
2844 place_cursor(li, cs, FALSE);
2845 } else {
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002846#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002847 // if this just the next line
2848 // try to optimize cursor movement
2849 // otherwise, use standard ESC sequence
2850 place_cursor(li, cs, li == (last_li+1) ? TRUE : FALSE);
2851 last_li= li;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002852#else
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002853 place_cursor(li, cs, FALSE); // use standard ESC sequence
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002854#endif /* FEATURE_VI_OPTIMIZE_CURSOR */
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002855 }
2856
2857 // write line out to terminal
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002858 {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002859 int nic = ce - cs + 1;
2860 char *out = sp + cs;
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002861
Denis Vlasenkobf0a2012006-12-26 10:42:51 +00002862 while (nic-- > 0) {
Denis Vlasenko4daad902007-09-27 10:20:47 +00002863 bb_putchar(*out);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002864 out++;
2865 }
2866 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002867#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002868 last_row = li;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002869#endif
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002870 }
2871 }
2872
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002873#if ENABLE_FEATURE_VI_OPTIMIZE_CURSOR
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002874 place_cursor(crow, ccol, (crow == last_row) ? TRUE : FALSE);
2875 last_row = crow;
2876#else
2877 place_cursor(crow, ccol, FALSE);
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002878#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002879
Aaron Lehmann6fdacc72002-08-21 13:02:24 +00002880 if (offset != old_offset)
2881 old_offset = offset;
2882}
2883
Eric Andersen3f980402001-04-04 17:31:15 +00002884//---------------------------------------------------------------------
2885//----- the Ascii Chart -----------------------------------------------
2886//
2887// 00 nul 01 soh 02 stx 03 etx 04 eot 05 enq 06 ack 07 bel
2888// 08 bs 09 ht 0a nl 0b vt 0c np 0d cr 0e so 0f si
2889// 10 dle 11 dc1 12 dc2 13 dc3 14 dc4 15 nak 16 syn 17 etb
2890// 18 can 19 em 1a sub 1b esc 1c fs 1d gs 1e rs 1f us
2891// 20 sp 21 ! 22 " 23 # 24 $ 25 % 26 & 27 '
2892// 28 ( 29 ) 2a * 2b + 2c , 2d - 2e . 2f /
2893// 30 0 31 1 32 2 33 3 34 4 35 5 36 6 37 7
2894// 38 8 39 9 3a : 3b ; 3c < 3d = 3e > 3f ?
2895// 40 @ 41 A 42 B 43 C 44 D 45 E 46 F 47 G
2896// 48 H 49 I 4a J 4b K 4c L 4d M 4e N 4f O
2897// 50 P 51 Q 52 R 53 S 54 T 55 U 56 V 57 W
2898// 58 X 59 Y 5a Z 5b [ 5c \ 5d ] 5e ^ 5f _
2899// 60 ` 61 a 62 b 63 c 64 d 65 e 66 f 67 g
2900// 68 h 69 i 6a j 6b k 6c l 6d m 6e n 6f o
2901// 70 p 71 q 72 r 73 s 74 t 75 u 76 v 77 w
2902// 78 x 79 y 7a z 7b { 7c | 7d } 7e ~ 7f del
2903//---------------------------------------------------------------------
2904
2905//----- Execute a Vi Command -----------------------------------
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002906static void do_cmd(char c)
Eric Andersen3f980402001-04-04 17:31:15 +00002907{
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002908 const char *msg;
2909 char c1, *p, *q, buf[9], *save_dot;
Eric Andersen3f980402001-04-04 17:31:15 +00002910 int cnt, i, j, dir, yf;
2911
2912 c1 = c; // quiet the compiler
2913 cnt = yf = dir = 0; // quiet the compiler
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002914 msg = p = q = save_dot = buf; // quiet the compiler
Eric Andersen3f980402001-04-04 17:31:15 +00002915 memset(buf, '\0', 9); // clear buf
Eric Andersenbff7a602001-11-17 07:15:43 +00002916
Paul Fox8552aec2005-09-16 12:20:05 +00002917 show_status_line();
2918
Eric Andersenbff7a602001-11-17 07:15:43 +00002919 /* if this is a cursor key, skip these checks */
2920 switch (c) {
2921 case VI_K_UP:
2922 case VI_K_DOWN:
2923 case VI_K_LEFT:
2924 case VI_K_RIGHT:
2925 case VI_K_HOME:
2926 case VI_K_END:
2927 case VI_K_PAGEUP:
2928 case VI_K_PAGEDOWN:
2929 goto key_cmd_mode;
2930 }
2931
Eric Andersen3f980402001-04-04 17:31:15 +00002932 if (cmd_mode == 2) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002933 // flip-flop Insert/Replace mode
Denis Vlasenko2a51af22007-03-21 22:31:24 +00002934 if (c == VI_K_INSERT)
2935 goto dc_i;
Eric Andersen3f980402001-04-04 17:31:15 +00002936 // we are 'R'eplacing the current *dot with new char
2937 if (*dot == '\n') {
2938 // don't Replace past E-o-l
2939 cmd_mode = 1; // convert to insert
2940 } else {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002941 if (1 <= c || Isprint(c)) {
Eric Andersen3f980402001-04-04 17:31:15 +00002942 if (c != 27)
2943 dot = yank_delete(dot, dot, 0, YANKDEL); // delete char
2944 dot = char_insert(dot, c); // insert new char
2945 }
2946 goto dc1;
2947 }
2948 }
2949 if (cmd_mode == 1) {
Eric Andersen1c0d3112001-04-16 15:46:44 +00002950 // hitting "Insert" twice means "R" replace mode
2951 if (c == VI_K_INSERT) goto dc5;
Eric Andersen3f980402001-04-04 17:31:15 +00002952 // insert the char c at "dot"
Glenn L McGrath09adaca2002-12-02 21:18:10 +00002953 if (1 <= c || Isprint(c)) {
2954 dot = char_insert(dot, c);
Eric Andersen3f980402001-04-04 17:31:15 +00002955 }
2956 goto dc1;
2957 }
2958
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00002959 key_cmd_mode:
Eric Andersen3f980402001-04-04 17:31:15 +00002960 switch (c) {
Eric Andersen822c3832001-05-07 17:37:43 +00002961 //case 0x01: // soh
2962 //case 0x09: // ht
2963 //case 0x0b: // vt
2964 //case 0x0e: // so
2965 //case 0x0f: // si
2966 //case 0x10: // dle
2967 //case 0x11: // dc1
2968 //case 0x13: // dc3
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002969#if ENABLE_FEATURE_VI_CRASHME
Eric Andersen1c0d3112001-04-16 15:46:44 +00002970 case 0x14: // dc4 ctrl-T
Eric Andersen3f980402001-04-04 17:31:15 +00002971 crashme = (crashme == 0) ? 1 : 0;
Eric Andersen3f980402001-04-04 17:31:15 +00002972 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00002973#endif
Eric Andersen822c3832001-05-07 17:37:43 +00002974 //case 0x16: // syn
2975 //case 0x17: // etb
2976 //case 0x18: // can
2977 //case 0x1c: // fs
2978 //case 0x1d: // gs
2979 //case 0x1e: // rs
2980 //case 0x1f: // us
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002981 //case '!': // !-
2982 //case '#': // #-
2983 //case '&': // &-
2984 //case '(': // (-
2985 //case ')': // )-
2986 //case '*': // *-
2987 //case ',': // ,-
2988 //case '=': // =-
2989 //case '@': // @-
2990 //case 'F': // F-
2991 //case 'K': // K-
2992 //case 'Q': // Q-
2993 //case 'S': // S-
2994 //case 'T': // T-
2995 //case 'V': // V-
2996 //case '[': // [-
2997 //case '\\': // \-
2998 //case ']': // ]-
2999 //case '_': // _-
3000 //case '`': // `-
3001 //case 'g': // g-
Eric Andersen1c0d3112001-04-16 15:46:44 +00003002 //case 'u': // u- FIXME- there is no undo
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003003 //case 'v': // v-
Eric Andersen3f980402001-04-04 17:31:15 +00003004 default: // unrecognised command
3005 buf[0] = c;
3006 buf[1] = '\0';
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003007 if (c < ' ') {
Eric Andersen3f980402001-04-04 17:31:15 +00003008 buf[0] = '^';
3009 buf[1] = c + '@';
3010 buf[2] = '\0';
3011 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003012 ni(buf);
Eric Andersen3f980402001-04-04 17:31:15 +00003013 end_cmd_q(); // stop adding to q
3014 case 0x00: // nul- ignore
3015 break;
3016 case 2: // ctrl-B scroll up full screen
3017 case VI_K_PAGEUP: // Cursor Key Page Up
3018 dot_scroll(rows - 2, -1);
3019 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003020#if ENABLE_FEATURE_VI_USE_SIGNALS
Eric Andersen3f980402001-04-04 17:31:15 +00003021 case 0x03: // ctrl-C interrupt
3022 longjmp(restart, 1);
3023 break;
3024 case 26: // ctrl-Z suspend
3025 suspend_sig(SIGTSTP);
3026 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003027#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003028 case 4: // ctrl-D scroll down half screen
3029 dot_scroll((rows - 2) / 2, 1);
3030 break;
3031 case 5: // ctrl-E scroll down one line
3032 dot_scroll(1, 1);
3033 break;
3034 case 6: // ctrl-F scroll down full screen
3035 case VI_K_PAGEDOWN: // Cursor Key Page Down
3036 dot_scroll(rows - 2, 1);
3037 break;
3038 case 7: // ctrl-G show current status
Paul Fox8552aec2005-09-16 12:20:05 +00003039 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003040 break;
3041 case 'h': // h- move left
3042 case VI_K_LEFT: // cursor key Left
Paul Foxd13b90b2005-07-18 22:17:25 +00003043 case 8: // ctrl-H- move left (This may be ERASE char)
Denis Vlasenko2a51af22007-03-21 22:31:24 +00003044 case 0x7f: // DEL- move left (This may be ERASE char)
Eric Andersen3f980402001-04-04 17:31:15 +00003045 if (cmdcnt-- > 1) {
3046 do_cmd(c);
3047 } // repeat cnt
3048 dot_left();
3049 break;
3050 case 10: // Newline ^J
3051 case 'j': // j- goto next line, same col
3052 case VI_K_DOWN: // cursor key Down
3053 if (cmdcnt-- > 1) {
3054 do_cmd(c);
3055 } // repeat cnt
3056 dot_next(); // go to next B-o-l
3057 dot = move_to_col(dot, ccol + offset); // try stay in same col
3058 break;
3059 case 12: // ctrl-L force redraw whole screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003060 case 18: // ctrl-R force redraw
Eric Andersen822c3832001-05-07 17:37:43 +00003061 place_cursor(0, 0, FALSE); // put cursor in correct place
Eric Andersen3f980402001-04-04 17:31:15 +00003062 clear_to_eos(); // tel terminal to erase display
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003063 mysleep(10);
Eric Andersen3f980402001-04-04 17:31:15 +00003064 screen_erase(); // erase the internal screen buffer
Paul Fox8552aec2005-09-16 12:20:05 +00003065 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003066 refresh(TRUE); // this will redraw the entire display
3067 break;
3068 case 13: // Carriage Return ^M
3069 case '+': // +- goto next line
3070 if (cmdcnt-- > 1) {
3071 do_cmd(c);
3072 } // repeat cnt
3073 dot_next();
3074 dot_skip_over_ws();
3075 break;
3076 case 21: // ctrl-U scroll up half screen
3077 dot_scroll((rows - 2) / 2, -1);
3078 break;
3079 case 25: // ctrl-Y scroll up one line
3080 dot_scroll(1, -1);
3081 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003082 case 27: // esc
Eric Andersen3f980402001-04-04 17:31:15 +00003083 if (cmd_mode == 0)
3084 indicate_error(c);
3085 cmd_mode = 0; // stop insrting
3086 end_cmd_q();
Paul Fox8552aec2005-09-16 12:20:05 +00003087 last_status_cksum = 0; // force status update
Eric Andersen3f980402001-04-04 17:31:15 +00003088 break;
3089 case ' ': // move right
3090 case 'l': // move right
3091 case VI_K_RIGHT: // Cursor Key Right
3092 if (cmdcnt-- > 1) {
3093 do_cmd(c);
3094 } // repeat cnt
3095 dot_right();
3096 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003097#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003098 case '"': // "- name a register to use for Delete/Yank
3099 c1 = get_one_char();
3100 c1 = tolower(c1);
3101 if (islower(c1)) {
3102 YDreg = c1 - 'a';
3103 } else {
3104 indicate_error(c);
3105 }
3106 break;
3107 case '\'': // '- goto a specific mark
3108 c1 = get_one_char();
3109 c1 = tolower(c1);
3110 if (islower(c1)) {
3111 c1 = c1 - 'a';
3112 // get the b-o-l
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003113 q = mark[(unsigned char) c1];
Eric Andersen3f980402001-04-04 17:31:15 +00003114 if (text <= q && q < end) {
3115 dot = q;
3116 dot_begin(); // go to B-o-l
3117 dot_skip_over_ws();
3118 }
3119 } else if (c1 == '\'') { // goto previous context
3120 dot = swap_context(dot); // swap current and previous context
3121 dot_begin(); // go to B-o-l
3122 dot_skip_over_ws();
3123 } else {
3124 indicate_error(c);
3125 }
3126 break;
3127 case 'm': // m- Mark a line
3128 // this is really stupid. If there are any inserts or deletes
3129 // between text[0] and dot then this mark will not point to the
3130 // correct location! It could be off by many lines!
3131 // Well..., at least its quick and dirty.
3132 c1 = get_one_char();
3133 c1 = tolower(c1);
3134 if (islower(c1)) {
3135 c1 = c1 - 'a';
3136 // remember the line
3137 mark[(int) c1] = dot;
3138 } else {
3139 indicate_error(c);
3140 }
3141 break;
3142 case 'P': // P- Put register before
3143 case 'p': // p- put register after
3144 p = reg[YDreg];
3145 if (p == 0) {
3146 psbs("Nothing in register %c", what_reg());
3147 break;
3148 }
3149 // are we putting whole lines or strings
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003150 if (strchr(p, '\n') != NULL) {
Eric Andersen3f980402001-04-04 17:31:15 +00003151 if (c == 'P') {
3152 dot_begin(); // putting lines- Put above
3153 }
3154 if (c == 'p') {
3155 // are we putting after very last line?
3156 if (end_line(dot) == (end - 1)) {
3157 dot = end; // force dot to end of text[]
3158 } else {
3159 dot_next(); // next line, then put before
3160 }
3161 }
3162 } else {
3163 if (c == 'p')
3164 dot_right(); // move to right, can move to NL
3165 }
3166 dot = string_insert(dot, p); // insert the string
3167 end_cmd_q(); // stop adding to q
3168 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003169 case 'U': // U- Undo; replace current line with original version
3170 if (reg[Ureg] != 0) {
3171 p = begin_line(dot);
3172 q = end_line(dot);
3173 p = text_hole_delete(p, q); // delete cur line
3174 p = string_insert(p, reg[Ureg]); // insert orig line
3175 dot = p;
3176 dot_skip_over_ws();
3177 }
3178 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003179#endif /* FEATURE_VI_YANKMARK */
Eric Andersen3f980402001-04-04 17:31:15 +00003180 case '$': // $- goto end of line
3181 case VI_K_END: // Cursor Key End
3182 if (cmdcnt-- > 1) {
3183 do_cmd(c);
3184 } // repeat cnt
Glenn L McGrathee829062004-01-21 10:59:45 +00003185 dot = end_line(dot);
Eric Andersen3f980402001-04-04 17:31:15 +00003186 break;
3187 case '%': // %- find matching char of pair () [] {}
3188 for (q = dot; q < end && *q != '\n'; q++) {
3189 if (strchr("()[]{}", *q) != NULL) {
3190 // we found half of a pair
3191 p = find_pair(q, *q);
3192 if (p == NULL) {
3193 indicate_error(c);
3194 } else {
3195 dot = p;
3196 }
3197 break;
3198 }
3199 }
3200 if (*q == '\n')
3201 indicate_error(c);
3202 break;
3203 case 'f': // f- forward to a user specified char
3204 last_forward_char = get_one_char(); // get the search char
3205 //
Eric Andersenaff114c2004-04-14 17:51:38 +00003206 // dont separate these two commands. 'f' depends on ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003207 //
Paul Foxd13b90b2005-07-18 22:17:25 +00003208 //**** fall thru to ... ';'
Eric Andersen3f980402001-04-04 17:31:15 +00003209 case ';': // ;- look at rest of line for last forward char
3210 if (cmdcnt-- > 1) {
Eric Andersen822c3832001-05-07 17:37:43 +00003211 do_cmd(';');
Eric Andersen3f980402001-04-04 17:31:15 +00003212 } // repeat cnt
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003213 if (last_forward_char == 0)
3214 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003215 q = dot + 1;
3216 while (q < end - 1 && *q != '\n' && *q != last_forward_char) {
3217 q++;
3218 }
3219 if (*q == last_forward_char)
3220 dot = q;
3221 break;
3222 case '-': // -- goto prev line
3223 if (cmdcnt-- > 1) {
3224 do_cmd(c);
3225 } // repeat cnt
3226 dot_prev();
3227 dot_skip_over_ws();
3228 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003229#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003230 case '.': // .- repeat the last modifying command
3231 // Stuff the last_modifying_cmd back into stdin
3232 // and let it be re-executed.
3233 if (last_modifying_cmd != 0) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003234 ioq = ioq_start = xstrdup(last_modifying_cmd);
Eric Andersen3f980402001-04-04 17:31:15 +00003235 }
3236 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003237#endif
3238#if ENABLE_FEATURE_VI_SEARCH
Eric Andersen3f980402001-04-04 17:31:15 +00003239 case '?': // /- search for a pattern
3240 case '/': // /- search for a pattern
3241 buf[0] = c;
3242 buf[1] = '\0';
3243 q = get_input_line(buf); // get input line- use "status line"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003244 if (q[0] && !q[1])
3245 goto dc3; // if no pat re-use old pat
3246 if (q[0]) { // strlen(q) > 1: new pat- save it and find
Eric Andersen3f980402001-04-04 17:31:15 +00003247 // there is a new pat
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00003248 free(last_search_pattern);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003249 last_search_pattern = xstrdup(q);
Eric Andersen3f980402001-04-04 17:31:15 +00003250 goto dc3; // now find the pattern
3251 }
3252 // user changed mind and erased the "/"- do nothing
3253 break;
3254 case 'N': // N- backward search for last pattern
3255 if (cmdcnt-- > 1) {
3256 do_cmd(c);
3257 } // repeat cnt
3258 dir = BACK; // assume BACKWARD search
3259 p = dot - 1;
3260 if (last_search_pattern[0] == '?') {
3261 dir = FORWARD;
3262 p = dot + 1;
3263 }
3264 goto dc4; // now search for pattern
3265 break;
3266 case 'n': // n- repeat search for last pattern
3267 // search rest of text[] starting at next char
3268 // if search fails return orignal "p" not the "p+1" address
3269 if (cmdcnt-- > 1) {
3270 do_cmd(c);
3271 } // repeat cnt
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003272 dc3:
Eric Andersen3f980402001-04-04 17:31:15 +00003273 if (last_search_pattern == 0) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003274 msg = "No previous regular expression";
Eric Andersen3f980402001-04-04 17:31:15 +00003275 goto dc2;
3276 }
3277 if (last_search_pattern[0] == '/') {
3278 dir = FORWARD; // assume FORWARD search
3279 p = dot + 1;
3280 }
3281 if (last_search_pattern[0] == '?') {
3282 dir = BACK;
3283 p = dot - 1;
3284 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003285 dc4:
Eric Andersen3f980402001-04-04 17:31:15 +00003286 q = char_search(p, last_search_pattern + 1, dir, FULL);
3287 if (q != NULL) {
3288 dot = q; // good search, update "dot"
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003289 msg = "";
Eric Andersen3f980402001-04-04 17:31:15 +00003290 goto dc2;
3291 }
3292 // no pattern found between "dot" and "end"- continue at top
3293 p = text;
3294 if (dir == BACK) {
3295 p = end - 1;
3296 }
3297 q = char_search(p, last_search_pattern + 1, dir, FULL);
3298 if (q != NULL) { // found something
3299 dot = q; // found new pattern- goto it
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003300 msg = "search hit BOTTOM, continuing at TOP";
Eric Andersen3f980402001-04-04 17:31:15 +00003301 if (dir == BACK) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003302 msg = "search hit TOP, continuing at BOTTOM";
Eric Andersen3f980402001-04-04 17:31:15 +00003303 }
3304 } else {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003305 msg = "Pattern not found";
Eric Andersen3f980402001-04-04 17:31:15 +00003306 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003307 dc2:
3308 if (*msg)
3309 psbs("%s", msg);
Eric Andersen3f980402001-04-04 17:31:15 +00003310 break;
3311 case '{': // {- move backward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003312 q = char_search(dot, "\n\n", BACK, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003313 if (q != NULL) { // found blank line
3314 dot = next_line(q); // move to next blank line
3315 }
3316 break;
3317 case '}': // }- move forward paragraph
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003318 q = char_search(dot, "\n\n", FORWARD, FULL);
Eric Andersen3f980402001-04-04 17:31:15 +00003319 if (q != NULL) { // found blank line
3320 dot = next_line(q); // move to next blank line
3321 }
3322 break;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003323#endif /* FEATURE_VI_SEARCH */
Eric Andersen3f980402001-04-04 17:31:15 +00003324 case '0': // 0- goto begining of line
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003325 case '1': // 1-
3326 case '2': // 2-
3327 case '3': // 3-
3328 case '4': // 4-
3329 case '5': // 5-
3330 case '6': // 6-
3331 case '7': // 7-
3332 case '8': // 8-
3333 case '9': // 9-
Eric Andersen3f980402001-04-04 17:31:15 +00003334 if (c == '0' && cmdcnt < 1) {
3335 dot_begin(); // this was a standalone zero
3336 } else {
3337 cmdcnt = cmdcnt * 10 + (c - '0'); // this 0 is part of a number
3338 }
3339 break;
3340 case ':': // :- the colon mode commands
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003341 p = get_input_line(":"); // get input line- use "status line"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003342#if ENABLE_FEATURE_VI_COLON
Eric Andersen3f980402001-04-04 17:31:15 +00003343 colon(p); // execute the command
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003344#else
Eric Andersen822c3832001-05-07 17:37:43 +00003345 if (*p == ':')
3346 p++; // move past the ':'
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003347 cnt = strlen(p);
Eric Andersen822c3832001-05-07 17:37:43 +00003348 if (cnt <= 0)
3349 break;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003350 if (strncasecmp(p, "quit", cnt) == 0
3351 || strncasecmp(p, "q!", cnt) == 0 // delete lines
3352 ) {
Matt Kraai1f0c4362001-12-20 23:13:26 +00003353 if (file_modified && p[1] != '!') {
Eric Andersen3f980402001-04-04 17:31:15 +00003354 psbs("No write since last change (:quit! overrides)");
3355 } else {
3356 editing = 0;
3357 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003358 } else if (strncasecmp(p, "write", cnt) == 0
3359 || strncasecmp(p, "wq", cnt) == 0
3360 || strncasecmp(p, "wn", cnt) == 0
3361 || strncasecmp(p, "x", cnt) == 0
3362 ) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003363 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00003364 if (cnt < 0) {
3365 if (cnt == -1)
3366 psbs("Write error: %s", strerror(errno));
3367 } else {
3368 file_modified = 0;
3369 last_file_modified = -1;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003370 psb("\"%s\" %dL, %dC", current_filename, count_lines(text, end - 1), cnt);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003371 if (p[0] == 'x' || p[1] == 'q' || p[1] == 'n'
3372 || p[0] == 'X' || p[1] == 'Q' || p[1] == 'N'
3373 ) {
Paul Fox61e45db2005-10-09 14:43:22 +00003374 editing = 0;
3375 }
Eric Andersen3f980402001-04-04 17:31:15 +00003376 }
Denis Vlasenko219d14d2007-03-24 15:40:16 +00003377 } else if (strncasecmp(p, "file", cnt) == 0) {
Paul Fox8552aec2005-09-16 12:20:05 +00003378 last_status_cksum = 0; // force status update
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003379 } else if (sscanf(p, "%d", &j) > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003380 dot = find_line(j); // go to line # j
3381 dot_skip_over_ws();
Eric Andersen3f980402001-04-04 17:31:15 +00003382 } else { // unrecognised cmd
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003383 ni(p);
Eric Andersen3f980402001-04-04 17:31:15 +00003384 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003385#endif /* !FEATURE_VI_COLON */
Eric Andersen3f980402001-04-04 17:31:15 +00003386 break;
3387 case '<': // <- Left shift something
3388 case '>': // >- Right shift something
3389 cnt = count_lines(text, dot); // remember what line we are on
3390 c1 = get_one_char(); // get the type of thing to delete
3391 find_range(&p, &q, c1);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003392 yank_delete(p, q, 1, YANKONLY); // save copy before change
Eric Andersen3f980402001-04-04 17:31:15 +00003393 p = begin_line(p);
3394 q = end_line(q);
3395 i = count_lines(p, q); // # of lines we are shifting
3396 for ( ; i > 0; i--, p = next_line(p)) {
3397 if (c == '<') {
3398 // shift left- remove tab or 8 spaces
3399 if (*p == '\t') {
3400 // shrink buffer 1 char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003401 text_hole_delete(p, p);
Eric Andersen3f980402001-04-04 17:31:15 +00003402 } else if (*p == ' ') {
3403 // we should be calculating columns, not just SPACE
3404 for (j = 0; *p == ' ' && j < tabstop; j++) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003405 text_hole_delete(p, p);
Eric Andersen3f980402001-04-04 17:31:15 +00003406 }
3407 }
3408 } else if (c == '>') {
3409 // shift right -- add tab or 8 spaces
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003410 char_insert(p, '\t');
Eric Andersen3f980402001-04-04 17:31:15 +00003411 }
3412 }
3413 dot = find_line(cnt); // what line were we on
3414 dot_skip_over_ws();
3415 end_cmd_q(); // stop adding to q
3416 break;
3417 case 'A': // A- append at e-o-l
3418 dot_end(); // go to e-o-l
3419 //**** fall thru to ... 'a'
3420 case 'a': // a- append after current char
3421 if (*dot != '\n')
3422 dot++;
3423 goto dc_i;
3424 break;
3425 case 'B': // B- back a blank-delimited Word
3426 case 'E': // E- end of a blank-delimited word
3427 case 'W': // W- forward a blank-delimited word
3428 if (cmdcnt-- > 1) {
3429 do_cmd(c);
3430 } // repeat cnt
3431 dir = FORWARD;
3432 if (c == 'B')
3433 dir = BACK;
3434 if (c == 'W' || isspace(dot[dir])) {
3435 dot = skip_thing(dot, 1, dir, S_TO_WS);
3436 dot = skip_thing(dot, 2, dir, S_OVER_WS);
3437 }
3438 if (c != 'W')
3439 dot = skip_thing(dot, 1, dir, S_BEFORE_WS);
3440 break;
3441 case 'C': // C- Change to e-o-l
3442 case 'D': // D- delete to e-o-l
3443 save_dot = dot;
3444 dot = dollar_line(dot); // move to before NL
3445 // copy text into a register and delete
3446 dot = yank_delete(save_dot, dot, 0, YANKDEL); // delete to e-o-l
3447 if (c == 'C')
3448 goto dc_i; // start inserting
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003449#if ENABLE_FEATURE_VI_DOT_CMD
Eric Andersen3f980402001-04-04 17:31:15 +00003450 if (c == 'D')
3451 end_cmd_q(); // stop adding to q
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003452#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003453 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003454 case 'G': // G- goto to a line number (default= E-O-F)
3455 dot = end - 1; // assume E-O-F
Eric Andersen1c0d3112001-04-16 15:46:44 +00003456 if (cmdcnt > 0) {
Eric Andersen822c3832001-05-07 17:37:43 +00003457 dot = find_line(cmdcnt); // what line is #cmdcnt
Eric Andersen1c0d3112001-04-16 15:46:44 +00003458 }
3459 dot_skip_over_ws();
3460 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003461 case 'H': // H- goto top line on screen
3462 dot = screenbegin;
3463 if (cmdcnt > (rows - 1)) {
3464 cmdcnt = (rows - 1);
3465 }
3466 if (cmdcnt-- > 1) {
3467 do_cmd('+');
3468 } // repeat cnt
3469 dot_skip_over_ws();
3470 break;
3471 case 'I': // I- insert before first non-blank
3472 dot_begin(); // 0
3473 dot_skip_over_ws();
3474 //**** fall thru to ... 'i'
3475 case 'i': // i- insert before current char
3476 case VI_K_INSERT: // Cursor Key Insert
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003477 dc_i:
Eric Andersen3f980402001-04-04 17:31:15 +00003478 cmd_mode = 1; // start insrting
Eric Andersen3f980402001-04-04 17:31:15 +00003479 break;
3480 case 'J': // J- join current and next lines together
3481 if (cmdcnt-- > 2) {
3482 do_cmd(c);
3483 } // repeat cnt
3484 dot_end(); // move to NL
3485 if (dot < end - 1) { // make sure not last char in text[]
3486 *dot++ = ' '; // replace NL with space
Paul Fox8552aec2005-09-16 12:20:05 +00003487 file_modified++;
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003488 while (isblank(*dot)) { // delete leading WS
Eric Andersen3f980402001-04-04 17:31:15 +00003489 dot_delete();
3490 }
3491 }
3492 end_cmd_q(); // stop adding to q
3493 break;
3494 case 'L': // L- goto bottom line on screen
3495 dot = end_screen();
3496 if (cmdcnt > (rows - 1)) {
3497 cmdcnt = (rows - 1);
3498 }
3499 if (cmdcnt-- > 1) {
3500 do_cmd('-');
3501 } // repeat cnt
3502 dot_begin();
3503 dot_skip_over_ws();
3504 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003505 case 'M': // M- goto middle line on screen
Eric Andersen1c0d3112001-04-16 15:46:44 +00003506 dot = screenbegin;
3507 for (cnt = 0; cnt < (rows-1) / 2; cnt++)
3508 dot = next_line(dot);
3509 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003510 case 'O': // O- open a empty line above
Eric Andersen822c3832001-05-07 17:37:43 +00003511 // 0i\n ESC -i
Eric Andersen3f980402001-04-04 17:31:15 +00003512 p = begin_line(dot);
3513 if (p[-1] == '\n') {
3514 dot_prev();
3515 case 'o': // o- open a empty line below; Yes, I know it is in the middle of the "if (..."
3516 dot_end();
3517 dot = char_insert(dot, '\n');
3518 } else {
3519 dot_begin(); // 0
Eric Andersen822c3832001-05-07 17:37:43 +00003520 dot = char_insert(dot, '\n'); // i\n ESC
Eric Andersen3f980402001-04-04 17:31:15 +00003521 dot_prev(); // -
3522 }
3523 goto dc_i;
3524 break;
3525 case 'R': // R- continuous Replace char
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003526 dc5:
Eric Andersen3f980402001-04-04 17:31:15 +00003527 cmd_mode = 2;
Eric Andersen3f980402001-04-04 17:31:15 +00003528 break;
3529 case 'X': // X- delete char before dot
3530 case 'x': // x- delete the current char
3531 case 's': // s- substitute the current char
3532 if (cmdcnt-- > 1) {
3533 do_cmd(c);
3534 } // repeat cnt
3535 dir = 0;
3536 if (c == 'X')
3537 dir = -1;
3538 if (dot[dir] != '\n') {
3539 if (c == 'X')
3540 dot--; // delete prev char
3541 dot = yank_delete(dot, dot, 0, YANKDEL); // delete char
3542 }
3543 if (c == 's')
3544 goto dc_i; // start insrting
3545 end_cmd_q(); // stop adding to q
3546 break;
3547 case 'Z': // Z- if modified, {write}; exit
3548 // ZZ means to save file (if necessary), then exit
3549 c1 = get_one_char();
3550 if (c1 != 'Z') {
3551 indicate_error(c);
3552 break;
3553 }
Paul Foxf0305b72006-03-28 14:18:21 +00003554 if (file_modified) {
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003555 if (ENABLE_FEATURE_VI_READONLY && readonly_mode) {
3556 psbs("\"%s\" File is read only", current_filename);
Denis Vlasenko92758142006-10-03 19:56:34 +00003557 break;
Paul Foxf0305b72006-03-28 14:18:21 +00003558 }
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003559 cnt = file_write(current_filename, text, end - 1);
Paul Fox61e45db2005-10-09 14:43:22 +00003560 if (cnt < 0) {
3561 if (cnt == -1)
3562 psbs("Write error: %s", strerror(errno));
3563 } else if (cnt == (end - 1 - text + 1)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003564 editing = 0;
3565 }
3566 } else {
3567 editing = 0;
3568 }
3569 break;
3570 case '^': // ^- move to first non-blank on line
3571 dot_begin();
3572 dot_skip_over_ws();
3573 break;
3574 case 'b': // b- back a word
3575 case 'e': // e- end of word
3576 if (cmdcnt-- > 1) {
3577 do_cmd(c);
3578 } // repeat cnt
3579 dir = FORWARD;
3580 if (c == 'b')
3581 dir = BACK;
3582 if ((dot + dir) < text || (dot + dir) > end - 1)
3583 break;
3584 dot += dir;
3585 if (isspace(*dot)) {
3586 dot = skip_thing(dot, (c == 'e') ? 2 : 1, dir, S_OVER_WS);
3587 }
3588 if (isalnum(*dot) || *dot == '_') {
3589 dot = skip_thing(dot, 1, dir, S_END_ALNUM);
3590 } else if (ispunct(*dot)) {
3591 dot = skip_thing(dot, 1, dir, S_END_PUNCT);
3592 }
3593 break;
3594 case 'c': // c- change something
3595 case 'd': // d- delete something
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003596#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003597 case 'y': // y- yank something
3598 case 'Y': // Y- Yank a line
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003599#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003600 yf = YANKDEL; // assume either "c" or "d"
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003601#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003602 if (c == 'y' || c == 'Y')
3603 yf = YANKONLY;
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003604#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003605 c1 = 'y';
3606 if (c != 'Y')
3607 c1 = get_one_char(); // get the type of thing to delete
3608 find_range(&p, &q, c1);
3609 if (c1 == 27) { // ESC- user changed mind and wants out
3610 c = c1 = 27; // Escape- do nothing
3611 } else if (strchr("wW", c1)) {
3612 if (c == 'c') {
3613 // don't include trailing WS as part of word
Denis Vlasenkoeaabf062007-07-17 23:14:07 +00003614 while (isblank(*q)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003615 if (q <= text || q[-1] == '\n')
3616 break;
3617 q--;
3618 }
3619 }
3620 dot = yank_delete(p, q, 0, yf); // delete word
Eric Andersen822c3832001-05-07 17:37:43 +00003621 } else if (strchr("^0bBeEft$", c1)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003622 // single line copy text into a register and delete
3623 dot = yank_delete(p, q, 0, yf); // delete word
Eric Andersen1c0d3112001-04-16 15:46:44 +00003624 } else if (strchr("cdykjHL%+-{}\r\n", c1)) {
Eric Andersen3f980402001-04-04 17:31:15 +00003625 // multiple line copy text into a register and delete
3626 dot = yank_delete(p, q, 1, yf); // delete lines
Eric Andersen1c0d3112001-04-16 15:46:44 +00003627 if (c == 'c') {
3628 dot = char_insert(dot, '\n');
3629 // on the last line of file don't move to prev line
3630 if (dot != (end-1)) {
3631 dot_prev();
3632 }
3633 } else if (c == 'd') {
Eric Andersen3f980402001-04-04 17:31:15 +00003634 dot_begin();
3635 dot_skip_over_ws();
3636 }
3637 } else {
3638 // could not recognize object
3639 c = c1 = 27; // error-
3640 indicate_error(c);
3641 }
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 }
3661 psb("%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;
3667 case 'k': // k- goto prev line, same col
3668 case VI_K_UP: // cursor key Up
3669 if (cmdcnt-- > 1) {
3670 do_cmd(c);
3671 } // repeat cnt
3672 dot_prev();
3673 dot = move_to_col(dot, ccol + offset); // try stay in same col
3674 break;
3675 case 'r': // r- replace the current char with user input
3676 c1 = get_one_char(); // get the replacement char
3677 if (*dot != '\n') {
3678 *dot = c1;
Paul Fox8552aec2005-09-16 12:20:05 +00003679 file_modified++; // has the file been modified
Eric Andersen3f980402001-04-04 17:31:15 +00003680 }
3681 end_cmd_q(); // stop adding to q
3682 break;
Eric Andersen822c3832001-05-07 17:37:43 +00003683 case 't': // t- move to char prior to next x
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00003684 last_forward_char = get_one_char();
3685 do_cmd(';');
3686 if (*dot == last_forward_char)
3687 dot_left();
3688 last_forward_char= 0;
Eric Andersen822c3832001-05-07 17:37:43 +00003689 break;
Eric Andersen3f980402001-04-04 17:31:15 +00003690 case 'w': // w- forward a word
3691 if (cmdcnt-- > 1) {
3692 do_cmd(c);
3693 } // repeat cnt
3694 if (isalnum(*dot) || *dot == '_') { // we are on ALNUM
3695 dot = skip_thing(dot, 1, FORWARD, S_END_ALNUM);
3696 } else if (ispunct(*dot)) { // we are on PUNCT
3697 dot = skip_thing(dot, 1, FORWARD, S_END_PUNCT);
3698 }
3699 if (dot < end - 1)
3700 dot++; // move over word
3701 if (isspace(*dot)) {
3702 dot = skip_thing(dot, 2, FORWARD, S_OVER_WS);
3703 }
3704 break;
3705 case 'z': // z-
3706 c1 = get_one_char(); // get the replacement char
3707 cnt = 0;
3708 if (c1 == '.')
3709 cnt = (rows - 2) / 2; // put dot at center
3710 if (c1 == '-')
3711 cnt = rows - 2; // put dot at bottom
3712 screenbegin = begin_line(dot); // start dot at top
3713 dot_scroll(cnt, -1);
3714 break;
3715 case '|': // |- move to column "cmdcnt"
3716 dot = move_to_col(dot, cmdcnt - 1); // try to move to column
3717 break;
3718 case '~': // ~- flip the case of letters a-z -> A-Z
3719 if (cmdcnt-- > 1) {
3720 do_cmd(c);
3721 } // repeat cnt
3722 if (islower(*dot)) {
3723 *dot = toupper(*dot);
Paul Fox8552aec2005-09-16 12:20:05 +00003724 file_modified++; // has the file been modified
Eric Andersen3f980402001-04-04 17:31:15 +00003725 } else if (isupper(*dot)) {
3726 *dot = tolower(*dot);
Paul Fox8552aec2005-09-16 12:20:05 +00003727 file_modified++; // has the file been modified
Eric Andersen3f980402001-04-04 17:31:15 +00003728 }
3729 dot_right();
3730 end_cmd_q(); // stop adding to q
3731 break;
3732 //----- The Cursor and Function Keys -----------------------------
3733 case VI_K_HOME: // Cursor Key Home
3734 dot_begin();
3735 break;
3736 // The Fn keys could point to do_macro which could translate them
3737 case VI_K_FUN1: // Function Key F1
3738 case VI_K_FUN2: // Function Key F2
3739 case VI_K_FUN3: // Function Key F3
3740 case VI_K_FUN4: // Function Key F4
3741 case VI_K_FUN5: // Function Key F5
3742 case VI_K_FUN6: // Function Key F6
3743 case VI_K_FUN7: // Function Key F7
3744 case VI_K_FUN8: // Function Key F8
3745 case VI_K_FUN9: // Function Key F9
3746 case VI_K_FUN10: // Function Key F10
3747 case VI_K_FUN11: // Function Key F11
3748 case VI_K_FUN12: // Function Key F12
3749 break;
3750 }
3751
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003752 dc1:
Eric Andersen3f980402001-04-04 17:31:15 +00003753 // if text[] just became empty, add back an empty line
3754 if (end == text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003755 char_insert(text, '\n'); // start empty buf with dummy line
Eric Andersen3f980402001-04-04 17:31:15 +00003756 dot = text;
3757 }
3758 // it is OK for dot to exactly equal to end, otherwise check dot validity
3759 if (dot != end) {
3760 dot = bound_dot(dot); // make sure "dot" is valid
3761 }
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003762#if ENABLE_FEATURE_VI_YANKMARK
Eric Andersen3f980402001-04-04 17:31:15 +00003763 check_context(c); // update the current context
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003764#endif
Eric Andersen3f980402001-04-04 17:31:15 +00003765
3766 if (!isdigit(c))
3767 cmdcnt = 0; // cmd was not a number, reset cmdcnt
3768 cnt = dot - begin_line(dot);
3769 // Try to stay off of the Newline
3770 if (*dot == '\n' && cnt > 0 && cmd_mode == 0)
3771 dot--;
3772}
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003773
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003774#if ENABLE_FEATURE_VI_CRASHME
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003775static int totalcmds = 0;
3776static int Mp = 85; // Movement command Probability
3777static int Np = 90; // Non-movement command Probability
3778static int Dp = 96; // Delete command Probability
3779static int Ip = 97; // Insert command Probability
3780static int Yp = 98; // Yank command Probability
3781static int Pp = 99; // Put command Probability
3782static int M = 0, N = 0, I = 0, D = 0, Y = 0, P = 0, U = 0;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003783const char chars[20] = "\t012345 abcdABCD-=.$";
3784const char *const words[20] = {
3785 "this", "is", "a", "test",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003786 "broadcast", "the", "emergency", "of",
3787 "system", "quick", "brown", "fox",
3788 "jumped", "over", "lazy", "dogs",
3789 "back", "January", "Febuary", "March"
3790};
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003791const char *const lines[20] = {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003792 "You should have received a copy of the GNU General Public License\n",
3793 "char c, cm, *cmd, *cmd1;\n",
3794 "generate a command by percentages\n",
3795 "Numbers may be typed as a prefix to some commands.\n",
3796 "Quit, discarding changes!\n",
3797 "Forced write, if permission originally not valid.\n",
3798 "In general, any ex or ed command (such as substitute or delete).\n",
3799 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
3800 "Please get w/ me and I will go over it with you.\n",
3801 "The following is a list of scheduled, committed changes.\n",
3802 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
3803 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
3804 "Any question about transactions please contact Sterling Huxley.\n",
3805 "I will try to get back to you by Friday, December 31.\n",
3806 "This Change will be implemented on Friday.\n",
3807 "Let me know if you have problems accessing this;\n",
3808 "Sterling Huxley recently added you to the access list.\n",
3809 "Would you like to go to lunch?\n",
3810 "The last command will be automatically run.\n",
3811 "This is too much english for a computer geek.\n",
3812};
3813char *multilines[20] = {
3814 "You should have received a copy of the GNU General Public License\n",
3815 "char c, cm, *cmd, *cmd1;\n",
3816 "generate a command by percentages\n",
3817 "Numbers may be typed as a prefix to some commands.\n",
3818 "Quit, discarding changes!\n",
3819 "Forced write, if permission originally not valid.\n",
3820 "In general, any ex or ed command (such as substitute or delete).\n",
3821 "I have tickets available for the Blazers vs LA Clippers for Monday, Janurary 1 at 1:00pm.\n",
3822 "Please get w/ me and I will go over it with you.\n",
3823 "The following is a list of scheduled, committed changes.\n",
3824 "1. Launch Norton Antivirus (Start, Programs, Norton Antivirus)\n",
3825 "Reminder....Town Meeting in Central Perk cafe today at 3:00pm.\n",
3826 "Any question about transactions please contact Sterling Huxley.\n",
3827 "I will try to get back to you by Friday, December 31.\n",
3828 "This Change will be implemented on Friday.\n",
3829 "Let me know if you have problems accessing this;\n",
3830 "Sterling Huxley recently added you to the access list.\n",
3831 "Would you like to go to lunch?\n",
3832 "The last command will be automatically run.\n",
3833 "This is too much english for a computer geek.\n",
3834};
3835
3836// create a random command to execute
3837static void crash_dummy()
3838{
3839 static int sleeptime; // how long to pause between commands
3840 char c, cm, *cmd, *cmd1;
3841 int i, cnt, thing, rbi, startrbi, percent;
3842
3843 // "dot" movement commands
3844 cmd1 = " \n\r\002\004\005\006\025\0310^$-+wWeEbBhjklHL";
3845
3846 // is there already a command running?
3847 if (readed_for_parse > 0)
3848 goto cd1;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003849 cd0:
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003850 startrbi = rbi = 0;
3851 sleeptime = 0; // how long to pause between commands
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00003852 memset(readbuffer, '\0', MAX_LINELEN); // clear the read buffer
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003853 // generate a command by percentages
3854 percent = (int) lrand48() % 100; // get a number from 0-99
3855 if (percent < Mp) { // Movement commands
3856 // available commands
3857 cmd = cmd1;
3858 M++;
3859 } else if (percent < Np) { // non-movement commands
3860 cmd = "mz<>\'\""; // available commands
3861 N++;
3862 } else if (percent < Dp) { // Delete commands
3863 cmd = "dx"; // available commands
3864 D++;
3865 } else if (percent < Ip) { // Inset commands
3866 cmd = "iIaAsrJ"; // available commands
3867 I++;
3868 } else if (percent < Yp) { // Yank commands
3869 cmd = "yY"; // available commands
3870 Y++;
3871 } else if (percent < Pp) { // Put commands
3872 cmd = "pP"; // available commands
3873 P++;
3874 } else {
3875 // We do not know how to handle this command, try again
3876 U++;
3877 goto cd0;
3878 }
3879 // randomly pick one of the available cmds from "cmd[]"
3880 i = (int) lrand48() % strlen(cmd);
3881 cm = cmd[i];
3882 if (strchr(":\024", cm))
3883 goto cd0; // dont allow colon or ctrl-T commands
3884 readbuffer[rbi++] = cm; // put cmd into input buffer
3885
3886 // now we have the command-
3887 // there are 1, 2, and multi char commands
3888 // find out which and generate the rest of command as necessary
3889 if (strchr("dmryz<>\'\"", cm)) { // 2-char commands
3890 cmd1 = " \n\r0$^-+wWeEbBhjklHL";
3891 if (cm == 'm' || cm == '\'' || cm == '\"') { // pick a reg[]
3892 cmd1 = "abcdefghijklmnopqrstuvwxyz";
3893 }
3894 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
3895 c = cmd1[thing];
3896 readbuffer[rbi++] = c; // add movement to input buffer
3897 }
3898 if (strchr("iIaAsc", cm)) { // multi-char commands
3899 if (cm == 'c') {
3900 // change some thing
3901 thing = (int) lrand48() % strlen(cmd1); // pick a movement command
3902 c = cmd1[thing];
3903 readbuffer[rbi++] = c; // add movement to input buffer
3904 }
3905 thing = (int) lrand48() % 4; // what thing to insert
3906 cnt = (int) lrand48() % 10; // how many to insert
3907 for (i = 0; i < cnt; i++) {
3908 if (thing == 0) { // insert chars
3909 readbuffer[rbi++] = chars[((int) lrand48() % strlen(chars))];
3910 } else if (thing == 1) { // insert words
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003911 strcat(readbuffer, words[(int) lrand48() % 20]);
3912 strcat(readbuffer, " ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003913 sleeptime = 0; // how fast to type
3914 } else if (thing == 2) { // insert lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003915 strcat(readbuffer, lines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003916 sleeptime = 0; // how fast to type
3917 } else { // insert multi-lines
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003918 strcat(readbuffer, multilines[(int) lrand48() % 20]);
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003919 sleeptime = 0; // how fast to type
3920 }
3921 }
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003922 strcat(readbuffer, "\033");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003923 }
3924 readed_for_parse = strlen(readbuffer);
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003925 cd1:
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003926 totalcmds++;
3927 if (sleeptime > 0)
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003928 mysleep(sleeptime); // sleep 1/100 sec
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003929}
3930
3931// test to see if there are any errors
3932static void crash_test()
3933{
3934 static time_t oldtim;
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003935
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003936 time_t tim;
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00003937 char d[2], msg[MAX_LINELEN];
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003938
3939 msg[0] = '\0';
3940 if (end < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003941 strcat(msg, "end<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003942 }
3943 if (end > textend) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003944 strcat(msg, "end>textend ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003945 }
3946 if (dot < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003947 strcat(msg, "dot<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003948 }
3949 if (dot > end) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003950 strcat(msg, "dot>end ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003951 }
3952 if (screenbegin < text) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003953 strcat(msg, "screenbegin<text ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003954 }
3955 if (screenbegin > end - 1) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003956 strcat(msg, "screenbegin>end-1 ");
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003957 }
3958
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003959 if (msg[0]) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003960 alarm(0);
Glenn L McGrath7127b582002-12-03 21:48:15 +00003961 printf("\n\n%d: \'%c\' %s\n\n\n%s[Hit return to continue]%s",
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003962 totalcmds, last_input_char, msg, SOs, SOn);
3963 fflush(stdout);
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00003964 while (safe_read(0, d, 1) > 0) {
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003965 if (d[0] == '\n' || d[0] == '\r')
3966 break;
3967 }
3968 alarm(3);
3969 }
3970 tim = (time_t) time((time_t *) 0);
3971 if (tim >= (oldtim + 3)) {
Denis Vlasenkoafa37cf2007-03-21 00:05:35 +00003972 sprintf(status_buffer,
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003973 "Tot=%d: M=%d N=%d I=%d D=%d Y=%d P=%d U=%d size=%d",
3974 totalcmds, M, N, I, D, Y, P, U, end - text + 1);
3975 oldtim = tim;
3976 }
Glenn L McGrath09adaca2002-12-02 21:18:10 +00003977}
Denis Vlasenko6a5dc5d2006-12-30 18:42:29 +00003978#endif