blob: 259de9ab2dcf290f3a43c7b79126c1941d488d75 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * undo.c: multi level undo facility
12 *
13 * The saved lines are stored in a list of lists (one for each buffer):
14 *
15 * b_u_oldhead------------------------------------------------+
16 * |
17 * V
18 * +--------------+ +--------------+ +--------------+
19 * b_u_newhead--->| u_header | | u_header | | u_header |
20 * | uh_next------>| uh_next------>| uh_next---->NULL
21 * NULL<--------uh_prev |<---------uh_prev |<---------uh_prev |
22 * | uh_entry | | uh_entry | | uh_entry |
23 * +--------|-----+ +--------|-----+ +--------|-----+
24 * | | |
25 * V V V
26 * +--------------+ +--------------+ +--------------+
27 * | u_entry | | u_entry | | u_entry |
28 * | ue_next | | ue_next | | ue_next |
29 * +--------|-----+ +--------|-----+ +--------|-----+
30 * | | |
31 * V V V
32 * +--------------+ NULL NULL
33 * | u_entry |
34 * | ue_next |
35 * +--------|-----+
36 * |
37 * V
38 * etc.
39 *
40 * Each u_entry list contains the information for one undo or redo.
41 * curbuf->b_u_curhead points to the header of the last undo (the next redo),
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +000042 * or is NULL if nothing has been undone (end of the branch).
Bram Moolenaar071d4272004-06-13 20:20:40 +000043 *
Bram Moolenaar1e607892006-03-13 22:15:53 +000044 * For keeping alternate undo/redo branches the uh_alt field is used. Thus at
45 * each point in the list a branch may appear for an alternate to redo. The
46 * uh_seq field is numbered sequentially to be able to find a newer or older
47 * branch.
48 *
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +000049 * +---------------+ +---------------+
50 * b_u_oldhead --->| u_header | | u_header |
51 * | uh_alt_next ---->| uh_alt_next ----> NULL
52 * NULL <----- uh_alt_prev |<------ uh_alt_prev |
53 * | uh_prev | | uh_prev |
54 * +-----|---------+ +-----|---------+
55 * | |
56 * V V
57 * +---------------+ +---------------+
58 * | u_header | | u_header |
59 * | uh_alt_next | | uh_alt_next |
60 * b_u_newhead --->| uh_alt_prev | | uh_alt_prev |
61 * | uh_prev | | uh_prev |
62 * +-----|---------+ +-----|---------+
63 * | |
64 * V V
65 * NULL +---------------+ +---------------+
66 * | u_header | | u_header |
67 * | uh_alt_next ---->| uh_alt_next |
68 * | uh_alt_prev |<------ uh_alt_prev |
69 * | uh_prev | | uh_prev |
70 * +-----|---------+ +-----|---------+
71 * | |
72 * etc. etc.
73 *
74 *
Bram Moolenaarf05e3b02010-05-29 15:40:47 +020075 * All data is allocated and will all be freed when the buffer is unloaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +000076 */
77
Bram Moolenaare38eab22019-12-05 21:50:01 +010078// Uncomment the next line for including the u_check() function. This warns
79// for errors in the debug information.
80// #define U_DEBUG 1
81#define UH_MAGIC 0x18dade // value for uh_magic when in use
82#define UE_MAGIC 0xabc123 // value for ue_magic when in use
Bram Moolenaarfecb6602007-10-01 20:54:15 +000083
Bram Moolenaare38eab22019-12-05 21:50:01 +010084// Size of buffer used for encryption.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +020085#define CRYPT_BUF_SIZE 8192
86
Bram Moolenaar071d4272004-06-13 20:20:40 +000087#include "vim.h"
88
Bram Moolenaare38eab22019-12-05 21:50:01 +010089// Structure passed around between functions.
90// Avoids passing cryptstate_T when encryption not available.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +020091typedef struct {
92 buf_T *bi_buf;
93 FILE *bi_fp;
94#ifdef FEAT_CRYPT
95 cryptstate_T *bi_state;
Bram Moolenaare38eab22019-12-05 21:50:01 +010096 char_u *bi_buffer; // CRYPT_BUF_SIZE, NULL when not buffering
97 size_t bi_used; // bytes written to/read from bi_buffer
98 size_t bi_avail; // bytes available in bi_buffer
Bram Moolenaar8f4ac012014-08-10 13:38:34 +020099#endif
100} bufinfo_T;
101
102
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100103static void u_unch_branch(u_header_T *uhp);
104static u_entry_T *u_get_headentry(void);
105static void u_getbot(void);
106static void u_doit(int count);
107static void u_undoredo(int undo);
108static void u_undo_end(int did_undo, int absolute);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100109static void u_freeheader(buf_T *buf, u_header_T *uhp, u_header_T **uhpp);
110static void u_freebranch(buf_T *buf, u_header_T *uhp, u_header_T **uhpp);
111static void u_freeentries(buf_T *buf, u_header_T *uhp, u_header_T **uhpp);
112static void u_freeentry(u_entry_T *, long);
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200113#ifdef FEAT_PERSISTENT_UNDO
Bram Moolenaar1d6fbe62016-02-19 22:46:34 +0100114# ifdef FEAT_CRYPT
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100115static int undo_flush(bufinfo_T *bi);
Bram Moolenaar1d6fbe62016-02-19 22:46:34 +0100116# endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100117static int undo_read(bufinfo_T *bi, char_u *buffer, size_t size);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100118static int serialize_uep(bufinfo_T *bi, u_entry_T *uep);
119static u_entry_T *unserialize_uep(bufinfo_T *bi, int *error, char_u *file_name);
120static void serialize_pos(bufinfo_T *bi, pos_T pos);
121static void unserialize_pos(bufinfo_T *bi, pos_T *pos);
122static void serialize_visualinfo(bufinfo_T *bi, visualinfo_T *info);
123static void unserialize_visualinfo(bufinfo_T *bi, visualinfo_T *info);
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200124#endif
Bram Moolenaar5843f5f2019-08-20 20:13:45 +0200125static void u_saveline(linenr_T lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126
Bram Moolenaar18a4ba22019-05-24 19:39:03 +0200127#define U_ALLOC_LINE(size) lalloc(size, FALSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128
Bram Moolenaare38eab22019-12-05 21:50:01 +0100129// used in undo_end() to report number of added and deleted lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130static long u_newcount, u_oldcount;
131
132/*
133 * When 'u' flag included in 'cpoptions', we behave like vi. Need to remember
134 * the action that "u" should do.
135 */
136static int undo_undoes = FALSE;
137
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200138static int lastmark = 0;
139
Bram Moolenaar9db58062010-05-29 20:33:07 +0200140#if defined(U_DEBUG) || defined(PROTO)
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000141/*
142 * Check the undo structures for being valid. Print a warning when something
143 * looks wrong.
144 */
145static int seen_b_u_curhead;
146static int seen_b_u_newhead;
147static int header_count;
148
149 static void
150u_check_tree(u_header_T *uhp,
151 u_header_T *exp_uh_next,
152 u_header_T *exp_uh_alt_prev)
153{
154 u_entry_T *uep;
155
156 if (uhp == NULL)
157 return;
158 ++header_count;
159 if (uhp == curbuf->b_u_curhead && ++seen_b_u_curhead > 1)
160 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100161 emsg("b_u_curhead found twice (looping?)");
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000162 return;
163 }
164 if (uhp == curbuf->b_u_newhead && ++seen_b_u_newhead > 1)
165 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100166 emsg("b_u_newhead found twice (looping?)");
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000167 return;
168 }
169
170 if (uhp->uh_magic != UH_MAGIC)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100171 emsg("uh_magic wrong (may be using freed memory)");
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000172 else
173 {
Bram Moolenaare38eab22019-12-05 21:50:01 +0100174 // Check pointers back are correct.
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200175 if (uhp->uh_next.ptr != exp_uh_next)
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000176 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100177 emsg("uh_next wrong");
178 smsg("expected: 0x%x, actual: 0x%x",
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200179 exp_uh_next, uhp->uh_next.ptr);
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000180 }
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200181 if (uhp->uh_alt_prev.ptr != exp_uh_alt_prev)
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000182 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100183 emsg("uh_alt_prev wrong");
184 smsg("expected: 0x%x, actual: 0x%x",
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200185 exp_uh_alt_prev, uhp->uh_alt_prev.ptr);
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000186 }
187
Bram Moolenaare38eab22019-12-05 21:50:01 +0100188 // Check the undo tree at this header.
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000189 for (uep = uhp->uh_entry; uep != NULL; uep = uep->ue_next)
190 {
191 if (uep->ue_magic != UE_MAGIC)
192 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100193 emsg("ue_magic wrong (may be using freed memory)");
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000194 break;
195 }
196 }
197
Bram Moolenaare38eab22019-12-05 21:50:01 +0100198 // Check the next alt tree.
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200199 u_check_tree(uhp->uh_alt_next.ptr, uhp->uh_next.ptr, uhp);
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000200
Bram Moolenaare38eab22019-12-05 21:50:01 +0100201 // Check the next header in this branch.
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200202 u_check_tree(uhp->uh_prev.ptr, uhp, NULL);
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000203 }
204}
205
Bram Moolenaarb0b50882010-07-07 18:26:28 +0200206 static void
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000207u_check(int newhead_may_be_NULL)
208{
209 seen_b_u_newhead = 0;
210 seen_b_u_curhead = 0;
211 header_count = 0;
212
213 u_check_tree(curbuf->b_u_oldhead, NULL, NULL);
214
215 if (seen_b_u_newhead == 0 && curbuf->b_u_oldhead != NULL
216 && !(newhead_may_be_NULL && curbuf->b_u_newhead == NULL))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100217 semsg("b_u_newhead invalid: 0x%x", curbuf->b_u_newhead);
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000218 if (curbuf->b_u_curhead != NULL && seen_b_u_curhead == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100219 semsg("b_u_curhead invalid: 0x%x", curbuf->b_u_curhead);
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000220 if (header_count != curbuf->b_u_numhead)
221 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100222 emsg("b_u_numhead invalid");
223 smsg("expected: %ld, actual: %ld",
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000224 (long)header_count, (long)curbuf->b_u_numhead);
225 }
226}
227#endif
228
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000230 * Save the current line for both the "u" and "U" command.
Bram Moolenaar687a29c2013-04-15 15:47:12 +0200231 * Careful: may trigger autocommands that reload the buffer.
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000232 * Returns OK or FAIL.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233 */
234 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100235u_save_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236{
237 return (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
238 (linenr_T)(curwin->w_cursor.lnum + 1)));
239}
240
241/*
242 * Save the lines between "top" and "bot" for both the "u" and "U" command.
243 * "top" may be 0 and bot may be curbuf->b_ml.ml_line_count + 1.
Bram Moolenaard04b7502010-07-08 22:27:55 +0200244 * Careful: may trigger autocommands that reload the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245 * Returns FAIL when lines could not be saved, OK otherwise.
246 */
247 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100248u_save(linenr_T top, linenr_T bot)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249{
250 if (undo_off)
251 return OK;
252
Bram Moolenaarefc81332018-07-13 16:31:19 +0200253 if (top >= bot || bot > curbuf->b_ml.ml_line_count + 1)
254 return FAIL; // rely on caller to give an error message
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255
256 if (top + 2 == bot)
257 u_saveline((linenr_T)(top + 1));
258
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200259 return (u_savecommon(top, bot, (linenr_T)0, FALSE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260}
261
262/*
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200263 * Save the line "lnum" (used by ":s" and "~" command).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264 * The line is replaced, so the new bottom line is lnum + 1.
Bram Moolenaard04b7502010-07-08 22:27:55 +0200265 * Careful: may trigger autocommands that reload the buffer.
266 * Returns FAIL when lines could not be saved, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000267 */
268 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100269u_savesub(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270{
271 if (undo_off)
272 return OK;
273
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200274 return (u_savecommon(lnum - 1, lnum + 1, lnum + 1, FALSE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275}
276
277/*
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200278 * A new line is inserted before line "lnum" (used by :s command).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279 * The line is inserted, so the new bottom line is lnum + 1.
Bram Moolenaard04b7502010-07-08 22:27:55 +0200280 * Careful: may trigger autocommands that reload the buffer.
281 * Returns FAIL when lines could not be saved, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282 */
283 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100284u_inssub(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000285{
286 if (undo_off)
287 return OK;
288
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200289 return (u_savecommon(lnum - 1, lnum, lnum + 1, FALSE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290}
291
292/*
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200293 * Save the lines "lnum" - "lnum" + nlines (used by delete command).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294 * The lines are deleted, so the new bottom line is lnum, unless the buffer
295 * becomes empty.
Bram Moolenaard04b7502010-07-08 22:27:55 +0200296 * Careful: may trigger autocommands that reload the buffer.
297 * Returns FAIL when lines could not be saved, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298 */
299 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100300u_savedel(linenr_T lnum, long nlines)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301{
302 if (undo_off)
303 return OK;
304
305 return (u_savecommon(lnum - 1, lnum + nlines,
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200306 nlines == curbuf->b_ml.ml_line_count ? 2 : lnum, FALSE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307}
308
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000309/*
310 * Return TRUE when undo is allowed. Otherwise give an error message and
311 * return FALSE.
312 */
Bram Moolenaarce6ef252006-07-12 19:49:41 +0000313 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100314undo_allowed(void)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000315{
Bram Moolenaare38eab22019-12-05 21:50:01 +0100316 // Don't allow changes when 'modifiable' is off.
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000317 if (!curbuf->b_p_ma)
318 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100319 emsg(_(e_modifiable));
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000320 return FALSE;
321 }
322
323#ifdef HAVE_SANDBOX
Bram Moolenaare38eab22019-12-05 21:50:01 +0100324 // In the sandbox it's not allowed to change the text.
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000325 if (sandbox != 0)
326 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100327 emsg(_(e_sandbox));
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000328 return FALSE;
329 }
330#endif
331
Bram Moolenaare38eab22019-12-05 21:50:01 +0100332 // Don't allow changes in the buffer while editing the cmdline. The
333 // caller of getcmdline() may get confused.
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +0200334 if (textwinlock != 0 || textlock != 0)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000335 {
Bram Moolenaarff06f282020-04-21 22:01:14 +0200336 emsg(_(e_textlock));
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000337 return FALSE;
338 }
339
340 return TRUE;
341}
342
Bram Moolenaarb0b50882010-07-07 18:26:28 +0200343/*
Bram Moolenaar32aa1022019-11-02 22:54:41 +0100344 * Get the undolevel value for the current buffer.
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +0100345 */
346 static long
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100347get_undolevel(void)
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +0100348{
349 if (curbuf->b_p_ul == NO_LOCAL_UNDOLEVEL)
350 return p_ul;
351 return curbuf->b_p_ul;
352}
353
354/*
Bram Moolenaarccae4672019-01-04 15:09:57 +0100355 * u_save_line(): save an allocated copy of line "lnum" into "ul".
356 * Returns FAIL when out of memory.
357 */
358 static int
359u_save_line(undoline_T *ul, linenr_T lnum)
360{
361 char_u *line = ml_get(lnum);
362
363 if (curbuf->b_ml.ml_line_len == 0)
364 {
365 ul->ul_len = 1;
366 ul->ul_line = vim_strsave((char_u *)"");
367 }
368 else
369 {
Bram Moolenaar964b3742019-05-24 18:54:09 +0200370 // This uses the length in the memline, thus text properties are
371 // included.
Bram Moolenaarccae4672019-01-04 15:09:57 +0100372 ul->ul_len = curbuf->b_ml.ml_line_len;
373 ul->ul_line = vim_memsave(line, ul->ul_len);
374 }
375 return ul->ul_line == NULL ? FAIL : OK;
376}
377
378/*
Bram Moolenaara9d4b842020-05-30 14:46:52 +0200379 * return TRUE if line "lnum" has text property "flags".
380 */
381 static int
382has_prop_w_flags(linenr_T lnum, int flags)
383{
384 char_u *props;
385 int i;
386 int proplen = get_text_props(curbuf, lnum, &props, FALSE);
387
388 for (i = 0; i < proplen; ++i)
389 {
390 textprop_T prop;
391
392 mch_memmove(&prop, props + i * sizeof prop, sizeof prop);
393 if (prop.tp_flags & flags)
394 return TRUE;
395 }
396 return FALSE;
397}
398
399/*
Bram Moolenaarb0b50882010-07-07 18:26:28 +0200400 * Common code for various ways to save text before a change.
Bram Moolenaard04b7502010-07-08 22:27:55 +0200401 * "top" is the line above the first changed line.
402 * "bot" is the line below the last changed line.
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200403 * "newbot" is the new bottom line. Use zero when not known.
404 * "reload" is TRUE when saving for a buffer reload.
Bram Moolenaard04b7502010-07-08 22:27:55 +0200405 * Careful: may trigger autocommands that reload the buffer.
406 * Returns FAIL when lines could not be saved, OK otherwise.
Bram Moolenaarb0b50882010-07-07 18:26:28 +0200407 */
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200408 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100409u_savecommon(
410 linenr_T top,
411 linenr_T bot,
412 linenr_T newbot,
413 int reload)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414{
Bram Moolenaar1e607892006-03-13 22:15:53 +0000415 linenr_T lnum;
416 long i;
417 u_header_T *uhp;
418 u_header_T *old_curhead;
419 u_entry_T *uep;
420 u_entry_T *prev_uep;
421 long size;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200423 if (!reload)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424 {
Bram Moolenaare38eab22019-12-05 21:50:01 +0100425 // When making changes is not allowed return FAIL. It's a crude way
426 // to make all change commands fail.
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200427 if (!undo_allowed())
Bram Moolenaar009b2592004-10-24 19:18:58 +0000428 return FAIL;
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200429
430#ifdef FEAT_NETBEANS_INTG
431 /*
432 * Netbeans defines areas that cannot be modified. Bail out here when
433 * trying to change text in a guarded area.
434 */
435 if (netbeans_active())
Bram Moolenaar009b2592004-10-24 19:18:58 +0000436 {
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200437 if (netbeans_is_guarded(top, bot))
438 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100439 emsg(_(e_guarded));
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200440 return FAIL;
441 }
442 if (curbuf->b_p_ro)
443 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100444 emsg(_(e_nbreadonly));
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200445 return FAIL;
446 }
Bram Moolenaar009b2592004-10-24 19:18:58 +0000447 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448#endif
Bram Moolenaar63ecdda2017-07-28 22:29:35 +0200449#ifdef FEAT_TERMINAL
Bram Moolenaare38eab22019-12-05 21:50:01 +0100450 // A change in a terminal buffer removes the highlighting.
Bram Moolenaar63ecdda2017-07-28 22:29:35 +0200451 term_change_in_curbuf();
452#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200454 /*
455 * Saving text for undo means we are going to make a change. Give a
456 * warning for a read-only file before making the change, so that the
457 * FileChangedRO event can replace the buffer with a read-write version
458 * (e.g., obtained from a source control system).
459 */
460 change_warning(0);
461 if (bot > curbuf->b_ml.ml_line_count + 1)
462 {
Bram Moolenaare38eab22019-12-05 21:50:01 +0100463 // This happens when the FileChangedRO autocommand changes the
464 // file in a way it becomes shorter.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100465 emsg(_("E881: Line count changed unexpectedly"));
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200466 return FAIL;
467 }
Bram Moolenaard04b7502010-07-08 22:27:55 +0200468 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200469
470#ifdef U_DEBUG
471 u_check(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472#endif
473
Bram Moolenaara9d4b842020-05-30 14:46:52 +0200474#ifdef FEAT_PROP_POPUP
475 // Include the line above if a text property continues from it.
476 // Include the line below if a text property continues to it.
477 if (bot - top > 1)
478 {
479 if (top > 0 && has_prop_w_flags(top + 1, TP_FLAG_CONT_PREV))
480 --top;
481 if (bot <= curbuf->b_ml.ml_line_count
482 && has_prop_w_flags(bot - 1, TP_FLAG_CONT_NEXT))
483 {
484 ++bot;
485 if (newbot != 0)
486 ++newbot;
487 }
488 }
489#endif
490
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491 size = bot - top - 1;
492
493 /*
Bram Moolenaarb0b50882010-07-07 18:26:28 +0200494 * If curbuf->b_u_synced == TRUE make a new header.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495 */
496 if (curbuf->b_u_synced)
497 {
498#ifdef FEAT_JUMPLIST
Bram Moolenaare38eab22019-12-05 21:50:01 +0100499 // Need to create new entry in b_changelist.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500 curbuf->b_new_change = TRUE;
501#endif
502
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +0100503 if (get_undolevel() >= 0)
Bram Moolenaar1e607892006-03-13 22:15:53 +0000504 {
505 /*
506 * Make a new header entry. Do this first so that we don't mess
507 * up the undo info when out of memory.
508 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200509 uhp = U_ALLOC_LINE(sizeof(u_header_T));
Bram Moolenaar1e607892006-03-13 22:15:53 +0000510 if (uhp == NULL)
511 goto nomem;
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000512#ifdef U_DEBUG
513 uhp->uh_magic = UH_MAGIC;
514#endif
Bram Moolenaar1e607892006-03-13 22:15:53 +0000515 }
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000516 else
517 uhp = NULL;
Bram Moolenaar1e607892006-03-13 22:15:53 +0000518
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519 /*
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000520 * If we undid more than we redid, move the entry lists before and
521 * including curbuf->b_u_curhead to an alternate branch.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522 */
Bram Moolenaar1e607892006-03-13 22:15:53 +0000523 old_curhead = curbuf->b_u_curhead;
524 if (old_curhead != NULL)
525 {
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200526 curbuf->b_u_newhead = old_curhead->uh_next.ptr;
Bram Moolenaar1e607892006-03-13 22:15:53 +0000527 curbuf->b_u_curhead = NULL;
528 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529
530 /*
531 * free headers to keep the size right
532 */
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +0100533 while (curbuf->b_u_numhead > get_undolevel()
534 && curbuf->b_u_oldhead != NULL)
Bram Moolenaar1e607892006-03-13 22:15:53 +0000535 {
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000536 u_header_T *uhfree = curbuf->b_u_oldhead;
Bram Moolenaar1e607892006-03-13 22:15:53 +0000537
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000538 if (uhfree == old_curhead)
Bram Moolenaare38eab22019-12-05 21:50:01 +0100539 // Can't reconnect the branch, delete all of it.
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000540 u_freebranch(curbuf, uhfree, &old_curhead);
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200541 else if (uhfree->uh_alt_next.ptr == NULL)
Bram Moolenaare38eab22019-12-05 21:50:01 +0100542 // There is no branch, only free one header.
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000543 u_freeheader(curbuf, uhfree, &old_curhead);
Bram Moolenaar1e607892006-03-13 22:15:53 +0000544 else
545 {
Bram Moolenaare38eab22019-12-05 21:50:01 +0100546 // Free the oldest alternate branch as a whole.
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200547 while (uhfree->uh_alt_next.ptr != NULL)
548 uhfree = uhfree->uh_alt_next.ptr;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000549 u_freebranch(curbuf, uhfree, &old_curhead);
Bram Moolenaar1e607892006-03-13 22:15:53 +0000550 }
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000551#ifdef U_DEBUG
552 u_check(TRUE);
553#endif
Bram Moolenaar1e607892006-03-13 22:15:53 +0000554 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555
Bram Moolenaare38eab22019-12-05 21:50:01 +0100556 if (uhp == NULL) // no undo at all
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557 {
Bram Moolenaar1e607892006-03-13 22:15:53 +0000558 if (old_curhead != NULL)
559 u_freebranch(curbuf, old_curhead, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560 curbuf->b_u_synced = FALSE;
561 return OK;
562 }
563
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200564 uhp->uh_prev.ptr = NULL;
565 uhp->uh_next.ptr = curbuf->b_u_newhead;
566 uhp->uh_alt_next.ptr = old_curhead;
Bram Moolenaar1e607892006-03-13 22:15:53 +0000567 if (old_curhead != NULL)
568 {
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200569 uhp->uh_alt_prev.ptr = old_curhead->uh_alt_prev.ptr;
570 if (uhp->uh_alt_prev.ptr != NULL)
571 uhp->uh_alt_prev.ptr->uh_alt_next.ptr = uhp;
572 old_curhead->uh_alt_prev.ptr = uhp;
Bram Moolenaar1e607892006-03-13 22:15:53 +0000573 if (curbuf->b_u_oldhead == old_curhead)
574 curbuf->b_u_oldhead = uhp;
575 }
Bram Moolenaar89ed3df2007-01-09 19:23:12 +0000576 else
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200577 uhp->uh_alt_prev.ptr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578 if (curbuf->b_u_newhead != NULL)
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200579 curbuf->b_u_newhead->uh_prev.ptr = uhp;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000580
Bram Moolenaarca003e12006-03-17 23:19:38 +0000581 uhp->uh_seq = ++curbuf->b_u_seq_last;
582 curbuf->b_u_seq_cur = uhp->uh_seq;
Bram Moolenaar170b10b2016-07-29 16:15:27 +0200583 uhp->uh_time = vim_time();
Bram Moolenaara800b422010-06-27 01:15:55 +0200584 uhp->uh_save_nr = 0;
585 curbuf->b_u_time_cur = uhp->uh_time + 1;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000586
Bram Moolenaar1e607892006-03-13 22:15:53 +0000587 uhp->uh_walk = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588 uhp->uh_entry = NULL;
589 uhp->uh_getbot_entry = NULL;
Bram Moolenaare38eab22019-12-05 21:50:01 +0100590 uhp->uh_cursor = curwin->w_cursor; // save cursor pos. for undo
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591 if (virtual_active() && curwin->w_cursor.coladd > 0)
592 uhp->uh_cursor_vcol = getviscol();
593 else
594 uhp->uh_cursor_vcol = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595
Bram Moolenaare38eab22019-12-05 21:50:01 +0100596 // save changed and buffer empty flag for undo
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597 uhp->uh_flags = (curbuf->b_changed ? UH_CHANGED : 0) +
598 ((curbuf->b_ml.ml_flags & ML_EMPTY) ? UH_EMPTYBUF : 0);
599
Bram Moolenaare38eab22019-12-05 21:50:01 +0100600 // save named marks and Visual marks for undo
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601 mch_memmove(uhp->uh_namedm, curbuf->b_namedm, sizeof(pos_T) * NMARKS);
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000602 uhp->uh_visual = curbuf->b_visual;
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000603
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604 curbuf->b_u_newhead = uhp;
605 if (curbuf->b_u_oldhead == NULL)
606 curbuf->b_u_oldhead = uhp;
607 ++curbuf->b_u_numhead;
608 }
609 else
610 {
Bram Moolenaare38eab22019-12-05 21:50:01 +0100611 if (get_undolevel() < 0) // no undo at all
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612 return OK;
613
614 /*
615 * When saving a single line, and it has been saved just before, it
616 * doesn't make sense saving it again. Saves a lot of memory when
617 * making lots of changes inside the same line.
618 * This is only possible if the previous change didn't increase or
619 * decrease the number of lines.
620 * Check the ten last changes. More doesn't make sense and takes too
621 * long.
622 */
623 if (size == 1)
624 {
625 uep = u_get_headentry();
626 prev_uep = NULL;
627 for (i = 0; i < 10; ++i)
628 {
629 if (uep == NULL)
630 break;
631
Bram Moolenaare38eab22019-12-05 21:50:01 +0100632 // If lines have been inserted/deleted we give up.
633 // Also when the line was included in a multi-line save.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634 if ((curbuf->b_u_newhead->uh_getbot_entry != uep
635 ? (uep->ue_top + uep->ue_size + 1
636 != (uep->ue_bot == 0
637 ? curbuf->b_ml.ml_line_count + 1
638 : uep->ue_bot))
639 : uep->ue_lcount != curbuf->b_ml.ml_line_count)
640 || (uep->ue_size > 1
641 && top >= uep->ue_top
642 && top + 2 <= uep->ue_top + uep->ue_size + 1))
643 break;
644
Bram Moolenaare38eab22019-12-05 21:50:01 +0100645 // If it's the same line we can skip saving it again.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646 if (uep->ue_size == 1 && uep->ue_top == top)
647 {
648 if (i > 0)
649 {
Bram Moolenaare38eab22019-12-05 21:50:01 +0100650 // It's not the last entry: get ue_bot for the last
651 // entry now. Following deleted/inserted lines go to
652 // the re-used entry.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653 u_getbot();
654 curbuf->b_u_synced = FALSE;
655
Bram Moolenaare38eab22019-12-05 21:50:01 +0100656 // Move the found entry to become the last entry. The
657 // order of undo/redo doesn't matter for the entries
658 // we move it over, since they don't change the line
659 // count and don't include this line. It does matter
660 // for the found entry if the line count is changed by
661 // the executed command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 prev_uep->ue_next = uep->ue_next;
663 uep->ue_next = curbuf->b_u_newhead->uh_entry;
664 curbuf->b_u_newhead->uh_entry = uep;
665 }
666
Bram Moolenaare38eab22019-12-05 21:50:01 +0100667 // The executed command may change the line count.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668 if (newbot != 0)
669 uep->ue_bot = newbot;
670 else if (bot > curbuf->b_ml.ml_line_count)
671 uep->ue_bot = 0;
672 else
673 {
674 uep->ue_lcount = curbuf->b_ml.ml_line_count;
675 curbuf->b_u_newhead->uh_getbot_entry = uep;
676 }
677 return OK;
678 }
679 prev_uep = uep;
680 uep = uep->ue_next;
681 }
682 }
683
Bram Moolenaare38eab22019-12-05 21:50:01 +0100684 // find line number for ue_bot for previous u_save()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685 u_getbot();
686 }
687
Bram Moolenaar4f974752019-02-17 17:44:42 +0100688#if !defined(UNIX) && !defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689 /*
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100690 * With Amiga we can't handle big undo's, because
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691 * then u_alloc_line would have to allocate a block larger than 32K
692 */
693 if (size >= 8000)
694 goto nomem;
695#endif
696
697 /*
698 * add lines in front of entry list
699 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200700 uep = U_ALLOC_LINE(sizeof(u_entry_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701 if (uep == NULL)
702 goto nomem;
Bram Moolenaara80faa82020-04-12 19:37:17 +0200703 CLEAR_POINTER(uep);
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000704#ifdef U_DEBUG
705 uep->ue_magic = UE_MAGIC;
706#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707
708 uep->ue_size = size;
709 uep->ue_top = top;
710 if (newbot != 0)
711 uep->ue_bot = newbot;
712 /*
713 * Use 0 for ue_bot if bot is below last line.
714 * Otherwise we have to compute ue_bot later.
715 */
716 else if (bot > curbuf->b_ml.ml_line_count)
717 uep->ue_bot = 0;
718 else
719 {
720 uep->ue_lcount = curbuf->b_ml.ml_line_count;
721 curbuf->b_u_newhead->uh_getbot_entry = uep;
722 }
723
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000724 if (size > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200726 if ((uep->ue_array = U_ALLOC_LINE(sizeof(undoline_T) * size)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727 {
728 u_freeentry(uep, 0L);
729 goto nomem;
730 }
731 for (i = 0, lnum = top + 1; i < size; ++i)
732 {
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000733 fast_breakcheck();
734 if (got_int)
735 {
736 u_freeentry(uep, i);
737 return FAIL;
738 }
Bram Moolenaarccae4672019-01-04 15:09:57 +0100739 if (u_save_line(&uep->ue_array[i], lnum++) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 {
741 u_freeentry(uep, i);
742 goto nomem;
743 }
744 }
745 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000746 else
747 uep->ue_array = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748 uep->ue_next = curbuf->b_u_newhead->uh_entry;
749 curbuf->b_u_newhead->uh_entry = uep;
750 curbuf->b_u_synced = FALSE;
751 undo_undoes = FALSE;
752
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000753#ifdef U_DEBUG
754 u_check(FALSE);
755#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756 return OK;
757
758nomem:
Bram Moolenaare38eab22019-12-05 21:50:01 +0100759 msg_silent = 0; // must display the prompt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760 if (ask_yesno((char_u *)_("No undo possible; continue anyway"), TRUE)
761 == 'y')
762 {
Bram Moolenaare38eab22019-12-05 21:50:01 +0100763 undo_off = TRUE; // will be reset when character typed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764 return OK;
765 }
766 do_outofmem_msg((long_u)0);
767 return FAIL;
768}
769
Bram Moolenaar191e0a22010-06-14 01:39:13 +0200770#if defined(FEAT_PERSISTENT_UNDO) || defined(PROTO)
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200771
Bram Moolenaare38eab22019-12-05 21:50:01 +0100772# define UF_START_MAGIC "Vim\237UnDo\345" // magic at start of undofile
Bram Moolenaar9db58062010-05-29 20:33:07 +0200773# define UF_START_MAGIC_LEN 9
Bram Moolenaare38eab22019-12-05 21:50:01 +0100774# define UF_HEADER_MAGIC 0x5fd0 // magic at start of header
775# define UF_HEADER_END_MAGIC 0xe7aa // magic after last header
776# define UF_ENTRY_MAGIC 0xf518 // magic at start of entry
777# define UF_ENTRY_END_MAGIC 0x3581 // magic after last entry
778# define UF_VERSION 2 // 2-byte undofile version number
779# define UF_VERSION_CRYPT 0x8002 // idem, encrypted
Bram Moolenaara800b422010-06-27 01:15:55 +0200780
Bram Moolenaare38eab22019-12-05 21:50:01 +0100781// extra fields for header
Bram Moolenaara800b422010-06-27 01:15:55 +0200782# define UF_LAST_SAVE_NR 1
783
Bram Moolenaare38eab22019-12-05 21:50:01 +0100784// extra fields for uhp
Bram Moolenaara800b422010-06-27 01:15:55 +0200785# define UHP_SAVE_NR 1
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200786
Bram Moolenaarcdf04202010-05-29 15:11:47 +0200787static char_u e_not_open[] = N_("E828: Cannot open undo file for writing: %s");
Bram Moolenaarcdf04202010-05-29 15:11:47 +0200788
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200789/*
790 * Compute the hash for the current buffer text into hash[UNDO_HASH_SIZE].
791 */
792 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100793u_compute_hash(char_u *hash)
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200794{
795 context_sha256_T ctx;
796 linenr_T lnum;
797 char_u *p;
798
799 sha256_start(&ctx);
Bram Moolenaarae7ba982011-12-08 15:14:09 +0100800 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200801 {
802 p = ml_get(lnum);
Bram Moolenaar442b4222010-05-24 21:34:22 +0200803 sha256_update(&ctx, p, (UINT32_T)(STRLEN(p) + 1));
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200804 }
805 sha256_finish(&ctx, hash);
806}
807
808/*
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200809 * Return an allocated string of the full path of the target undofile.
810 * When "reading" is TRUE find the file to read, go over all directories in
811 * 'undodir'.
812 * When "reading" is FALSE use the first name where the directory exists.
Bram Moolenaar9db58062010-05-29 20:33:07 +0200813 * Returns NULL when there is no place to write or no file to read.
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200814 */
Bram Moolenaar840d16f2019-09-10 21:27:18 +0200815 static char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100816u_get_undo_file_name(char_u *buf_ffname, int reading)
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200817{
818 char_u *dirp;
819 char_u dir_name[IOSIZE + 1];
820 char_u *munged_name = NULL;
821 char_u *undo_file_name = NULL;
822 int dir_len;
823 char_u *p;
Bram Moolenaar8767f522016-07-01 17:17:39 +0200824 stat_T st;
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200825 char_u *ffname = buf_ffname;
826#ifdef HAVE_READLINK
827 char_u fname_buf[MAXPATHL];
828#endif
829
830 if (ffname == NULL)
831 return NULL;
832
833#ifdef HAVE_READLINK
Bram Moolenaare38eab22019-12-05 21:50:01 +0100834 // Expand symlink in the file name, so that we put the undo file with the
835 // actual file instead of with the symlink.
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200836 if (resolve_symlink(ffname, fname_buf) == OK)
837 ffname = fname_buf;
838#endif
839
Bram Moolenaare38eab22019-12-05 21:50:01 +0100840 // Loop over 'undodir'. When reading find the first file that exists.
841 // When not reading use the first directory that exists or ".".
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200842 dirp = p_udir;
843 while (*dirp != NUL)
844 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +0200845 dir_len = copy_option_part(&dirp, dir_name, IOSIZE, ",");
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200846 if (dir_len == 1 && dir_name[0] == '.')
847 {
Bram Moolenaare38eab22019-12-05 21:50:01 +0100848 // Use same directory as the ffname,
849 // "dir/name" -> "dir/.name.un~"
Bram Moolenaar442b4222010-05-24 21:34:22 +0200850 undo_file_name = vim_strnsave(ffname, (int)(STRLEN(ffname) + 5));
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200851 if (undo_file_name == NULL)
852 break;
853 p = gettail(undo_file_name);
Bram Moolenaar206f0112014-03-12 16:51:55 +0100854#ifdef VMS
Bram Moolenaare38eab22019-12-05 21:50:01 +0100855 // VMS can not handle more than one dot in the filenames
856 // use "dir/name" -> "dir/_un_name" - add _un_
857 // at the beginning to keep the extension
Bram Moolenaar206f0112014-03-12 16:51:55 +0100858 mch_memmove(p + 4, p, STRLEN(p) + 1);
859 mch_memmove(p, "_un_", 4);
860
861#else
Bram Moolenaare38eab22019-12-05 21:50:01 +0100862 // Use same directory as the ffname,
863 // "dir/name" -> "dir/.name.un~"
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200864 mch_memmove(p + 1, p, STRLEN(p) + 1);
865 *p = '.';
866 STRCAT(p, ".un~");
Bram Moolenaar206f0112014-03-12 16:51:55 +0100867#endif
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200868 }
869 else
870 {
871 dir_name[dir_len] = NUL;
872 if (mch_isdir(dir_name))
873 {
874 if (munged_name == NULL)
875 {
876 munged_name = vim_strsave(ffname);
877 if (munged_name == NULL)
878 return NULL;
Bram Moolenaar91acfff2017-03-12 19:22:36 +0100879 for (p = munged_name; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200880 if (vim_ispathsep(*p))
881 *p = '%';
882 }
883 undo_file_name = concat_fnames(dir_name, munged_name, TRUE);
884 }
885 }
886
Bram Moolenaare38eab22019-12-05 21:50:01 +0100887 // When reading check if the file exists.
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200888 if (undo_file_name != NULL && (!reading
889 || mch_stat((char *)undo_file_name, &st) >= 0))
890 break;
Bram Moolenaard23a8232018-02-10 18:45:26 +0100891 VIM_CLEAR(undo_file_name);
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200892 }
893
894 vim_free(munged_name);
895 return undo_file_name;
896}
897
Bram Moolenaar9db58062010-05-29 20:33:07 +0200898 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100899corruption_error(char *mesg, char_u *file_name)
Bram Moolenaar9db58062010-05-29 20:33:07 +0200900{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100901 semsg(_("E825: Corrupted undo file (%s): %s"), mesg, file_name);
Bram Moolenaar9db58062010-05-29 20:33:07 +0200902}
903
904 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100905u_free_uhp(u_header_T *uhp)
Bram Moolenaar9db58062010-05-29 20:33:07 +0200906{
907 u_entry_T *nuep;
908 u_entry_T *uep;
909
910 uep = uhp->uh_entry;
911 while (uep != NULL)
912 {
913 nuep = uep->ue_next;
914 u_freeentry(uep, uep->ue_size);
915 uep = nuep;
916 }
917 vim_free(uhp);
918}
919
Bram Moolenaar191e0a22010-06-14 01:39:13 +0200920/*
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200921 * Write a sequence of bytes to the undo file.
922 * Buffers and encrypts as needed.
923 * Returns OK or FAIL.
Bram Moolenaar191e0a22010-06-14 01:39:13 +0200924 */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200925 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100926undo_write(bufinfo_T *bi, char_u *ptr, size_t len)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200927{
928#ifdef FEAT_CRYPT
929 if (bi->bi_buffer != NULL)
930 {
931 size_t len_todo = len;
932 char_u *p = ptr;
933
934 while (bi->bi_used + len_todo >= CRYPT_BUF_SIZE)
935 {
936 size_t n = CRYPT_BUF_SIZE - bi->bi_used;
937
938 mch_memmove(bi->bi_buffer + bi->bi_used, p, n);
939 len_todo -= n;
940 p += n;
941 bi->bi_used = CRYPT_BUF_SIZE;
942 if (undo_flush(bi) == FAIL)
943 return FAIL;
944 }
945 if (len_todo > 0)
946 {
947 mch_memmove(bi->bi_buffer + bi->bi_used, p, len_todo);
948 bi->bi_used += len_todo;
949 }
950 return OK;
951 }
952#endif
953 if (fwrite(ptr, len, (size_t)1, bi->bi_fp) != 1)
954 return FAIL;
955 return OK;
956}
957
958#ifdef FEAT_CRYPT
959 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100960undo_flush(bufinfo_T *bi)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200961{
Bram Moolenaar829aa642017-08-23 22:32:35 +0200962 if (bi->bi_buffer != NULL && bi->bi_state != NULL && bi->bi_used > 0)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200963 {
964 crypt_encode_inplace(bi->bi_state, bi->bi_buffer, bi->bi_used);
965 if (fwrite(bi->bi_buffer, bi->bi_used, (size_t)1, bi->bi_fp) != 1)
966 return FAIL;
967 bi->bi_used = 0;
968 }
969 return OK;
970}
971#endif
972
973/*
974 * Write "ptr[len]" and crypt the bytes when needed.
975 * Returns OK or FAIL.
976 */
977 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +0100978fwrite_crypt(bufinfo_T *bi, char_u *ptr, size_t len)
Bram Moolenaar191e0a22010-06-14 01:39:13 +0200979{
980#ifdef FEAT_CRYPT
981 char_u *copy;
982 char_u small_buf[100];
983 size_t i;
984
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200985 if (bi->bi_state != NULL && bi->bi_buffer == NULL)
Bram Moolenaar191e0a22010-06-14 01:39:13 +0200986 {
Bram Moolenaare38eab22019-12-05 21:50:01 +0100987 // crypting every piece of text separately
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200988 if (len < 100)
Bram Moolenaare38eab22019-12-05 21:50:01 +0100989 copy = small_buf; // no malloc()/free() for short strings
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200990 else
991 {
992 copy = lalloc(len, FALSE);
993 if (copy == NULL)
994 return 0;
995 }
996 crypt_encode(bi->bi_state, ptr, len, copy);
997 i = fwrite(copy, len, (size_t)1, bi->bi_fp);
998 if (copy != small_buf)
999 vim_free(copy);
1000 return i == 1 ? OK : FAIL;
Bram Moolenaar191e0a22010-06-14 01:39:13 +02001001 }
Bram Moolenaar191e0a22010-06-14 01:39:13 +02001002#endif
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001003 return undo_write(bi, ptr, len);
Bram Moolenaar191e0a22010-06-14 01:39:13 +02001004}
1005
1006/*
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001007 * Write a number, MSB first, in "len" bytes.
1008 * Must match with undo_read_?c() functions.
1009 * Returns OK or FAIL.
Bram Moolenaar191e0a22010-06-14 01:39:13 +02001010 */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001011 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001012undo_write_bytes(bufinfo_T *bi, long_u nr, int len)
Bram Moolenaar191e0a22010-06-14 01:39:13 +02001013{
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001014 char_u buf[8];
1015 int i;
1016 int bufi = 0;
Bram Moolenaar191e0a22010-06-14 01:39:13 +02001017
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001018 for (i = len - 1; i >= 0; --i)
Bram Moolenaar9b8f0212014-08-13 22:05:53 +02001019 buf[bufi++] = (char_u)(nr >> (i * 8));
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001020 return undo_write(bi, buf, (size_t)len);
1021}
1022
1023/*
1024 * Write the pointer to an undo header. Instead of writing the pointer itself
1025 * we use the sequence number of the header. This is converted back to
1026 * pointers when reading. */
1027 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001028put_header_ptr(bufinfo_T *bi, u_header_T *uhp)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001029{
1030 undo_write_bytes(bi, (long_u)(uhp != NULL ? uhp->uh_seq : 0), 4);
Bram Moolenaar191e0a22010-06-14 01:39:13 +02001031}
1032
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001033 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001034undo_read_4c(bufinfo_T *bi)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001035{
1036#ifdef FEAT_CRYPT
1037 if (bi->bi_buffer != NULL)
1038 {
1039 char_u buf[4];
1040 int n;
1041
1042 undo_read(bi, buf, (size_t)4);
Bram Moolenaar35169282014-09-11 22:50:09 +02001043 n = ((unsigned)buf[0] << 24) + (buf[1] << 16) + (buf[2] << 8) + buf[3];
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001044 return n;
1045 }
1046#endif
1047 return get4c(bi->bi_fp);
1048}
1049
1050 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001051undo_read_2c(bufinfo_T *bi)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001052{
1053#ifdef FEAT_CRYPT
1054 if (bi->bi_buffer != NULL)
1055 {
1056 char_u buf[2];
1057 int n;
1058
1059 undo_read(bi, buf, (size_t)2);
1060 n = (buf[0] << 8) + buf[1];
1061 return n;
1062 }
1063#endif
1064 return get2c(bi->bi_fp);
1065}
1066
1067 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001068undo_read_byte(bufinfo_T *bi)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001069{
1070#ifdef FEAT_CRYPT
1071 if (bi->bi_buffer != NULL)
1072 {
1073 char_u buf[1];
1074
1075 undo_read(bi, buf, (size_t)1);
1076 return buf[0];
1077 }
1078#endif
1079 return getc(bi->bi_fp);
1080}
1081
1082 static time_t
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001083undo_read_time(bufinfo_T *bi)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001084{
1085#ifdef FEAT_CRYPT
1086 if (bi->bi_buffer != NULL)
1087 {
1088 char_u buf[8];
1089 time_t n = 0;
1090 int i;
1091
1092 undo_read(bi, buf, (size_t)8);
1093 for (i = 0; i < 8; ++i)
1094 n = (n << 8) + buf[i];
1095 return n;
1096 }
1097#endif
1098 return get8ctime(bi->bi_fp);
1099}
1100
1101/*
1102 * Read "buffer[size]" from the undo file.
1103 * Return OK or FAIL.
1104 */
1105 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001106undo_read(bufinfo_T *bi, char_u *buffer, size_t size)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001107{
Bram Moolenaar56f2db52017-06-11 23:09:15 +02001108 int retval = OK;
1109
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001110#ifdef FEAT_CRYPT
1111 if (bi->bi_buffer != NULL)
1112 {
Bram Moolenaar9b8f0212014-08-13 22:05:53 +02001113 int size_todo = (int)size;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001114 char_u *p = buffer;
1115
1116 while (size_todo > 0)
1117 {
1118 size_t n;
1119
1120 if (bi->bi_used >= bi->bi_avail)
1121 {
1122 n = fread(bi->bi_buffer, 1, (size_t)CRYPT_BUF_SIZE, bi->bi_fp);
Bram Moolenaar55952d42016-11-05 14:58:34 +01001123 if (n == 0)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001124 {
Bram Moolenaar56f2db52017-06-11 23:09:15 +02001125 retval = FAIL;
1126 break;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001127 }
1128 bi->bi_avail = n;
1129 bi->bi_used = 0;
1130 crypt_decode_inplace(bi->bi_state, bi->bi_buffer, bi->bi_avail);
1131 }
1132 n = size_todo;
1133 if (n > bi->bi_avail - bi->bi_used)
1134 n = bi->bi_avail - bi->bi_used;
1135 mch_memmove(p, bi->bi_buffer + bi->bi_used, n);
1136 bi->bi_used += n;
Bram Moolenaar9b8f0212014-08-13 22:05:53 +02001137 size_todo -= (int)n;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001138 p += n;
1139 }
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001140 }
Bram Moolenaar56f2db52017-06-11 23:09:15 +02001141 else
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001142#endif
1143 if (fread(buffer, (size_t)size, 1, bi->bi_fp) != 1)
Bram Moolenaar56f2db52017-06-11 23:09:15 +02001144 retval = FAIL;
1145
1146 if (retval == FAIL)
Bram Moolenaare38eab22019-12-05 21:50:01 +01001147 // Error may be checked for only later. Fill with zeros,
1148 // so that the reader won't use garbage.
Bram Moolenaar56f2db52017-06-11 23:09:15 +02001149 vim_memset(buffer, 0, size);
1150 return retval;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001151}
1152
1153/*
1154 * Read a string of length "len" from "bi->bi_fd".
1155 * "len" can be zero to allocate an empty line.
1156 * Decrypt the bytes if needed.
1157 * Append a NUL.
1158 * Returns a pointer to allocated memory or NULL for failure.
1159 */
1160 static char_u *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001161read_string_decrypt(bufinfo_T *bi, int len)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001162{
Bram Moolenaar964b3742019-05-24 18:54:09 +02001163 char_u *ptr = alloc(len + 1);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001164
1165 if (ptr != NULL)
1166 {
1167 if (len > 0 && undo_read(bi, ptr, len) == FAIL)
1168 {
1169 vim_free(ptr);
1170 return NULL;
1171 }
Bram Moolenaarccae4672019-01-04 15:09:57 +01001172 // In case there are text properties there already is a NUL, but
1173 // checking for that is more expensive than just adding a dummy byte.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001174 ptr[len] = NUL;
1175#ifdef FEAT_CRYPT
1176 if (bi->bi_state != NULL && bi->bi_buffer == NULL)
1177 crypt_decode_inplace(bi->bi_state, ptr, len);
1178#endif
1179 }
1180 return ptr;
1181}
1182
1183/*
1184 * Writes the (not encrypted) header and initializes encryption if needed.
1185 */
1186 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001187serialize_header(bufinfo_T *bi, char_u *hash)
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001188{
Bram Moolenaarccae4672019-01-04 15:09:57 +01001189 long len;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001190 buf_T *buf = bi->bi_buf;
1191 FILE *fp = bi->bi_fp;
1192 char_u time_buf[8];
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001193
Bram Moolenaare38eab22019-12-05 21:50:01 +01001194 // Start writing, first the magic marker and undo info version.
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001195 if (fwrite(UF_START_MAGIC, (size_t)UF_START_MAGIC_LEN, (size_t)1, fp) != 1)
1196 return FAIL;
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001197
Bram Moolenaare38eab22019-12-05 21:50:01 +01001198 // If the buffer is encrypted then all text bytes following will be
1199 // encrypted. Numbers and other info is not crypted.
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001200#ifdef FEAT_CRYPT
Bram Moolenaarfa0ff9a2010-07-25 16:05:19 +02001201 if (*buf->b_p_key != NUL)
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001202 {
1203 char_u *header;
1204 int header_len;
1205
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001206 undo_write_bytes(bi, (long_u)UF_VERSION_CRYPT, 2);
1207 bi->bi_state = crypt_create_for_writing(crypt_get_method_nr(buf),
1208 buf->b_p_key, &header, &header_len);
1209 if (bi->bi_state == NULL)
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001210 return FAIL;
Bram Moolenaarccae4672019-01-04 15:09:57 +01001211 len = (long)fwrite(header, (size_t)header_len, (size_t)1, fp);
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001212 vim_free(header);
1213 if (len != 1)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001214 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001215 crypt_free_state(bi->bi_state);
1216 bi->bi_state = NULL;
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001217 return FAIL;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001218 }
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001219
1220 if (crypt_whole_undofile(crypt_get_method_nr(buf)))
1221 {
1222 bi->bi_buffer = alloc(CRYPT_BUF_SIZE);
1223 if (bi->bi_buffer == NULL)
1224 {
1225 crypt_free_state(bi->bi_state);
1226 bi->bi_state = NULL;
1227 return FAIL;
1228 }
1229 bi->bi_used = 0;
1230 }
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001231 }
1232 else
1233#endif
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001234 undo_write_bytes(bi, (long_u)UF_VERSION, 2);
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001235
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001236
Bram Moolenaare38eab22019-12-05 21:50:01 +01001237 // Write a hash of the buffer text, so that we can verify it is still the
1238 // same when reading the buffer text.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001239 if (undo_write(bi, hash, (size_t)UNDO_HASH_SIZE) == FAIL)
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001240 return FAIL;
1241
Bram Moolenaare38eab22019-12-05 21:50:01 +01001242 // buffer-specific data
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001243 undo_write_bytes(bi, (long_u)buf->b_ml.ml_line_count, 4);
Bram Moolenaarccae4672019-01-04 15:09:57 +01001244 len = buf->b_u_line_ptr.ul_line == NULL
Bram Moolenaar8aef43b2019-01-08 20:14:35 +01001245 ? 0L : (long)STRLEN(buf->b_u_line_ptr.ul_line);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001246 undo_write_bytes(bi, (long_u)len, 4);
Bram Moolenaar8aef43b2019-01-08 20:14:35 +01001247 if (len > 0 && fwrite_crypt(bi, buf->b_u_line_ptr.ul_line, (size_t)len)
1248 == FAIL)
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001249 return FAIL;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001250 undo_write_bytes(bi, (long_u)buf->b_u_line_lnum, 4);
1251 undo_write_bytes(bi, (long_u)buf->b_u_line_colnr, 4);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001252
Bram Moolenaare38eab22019-12-05 21:50:01 +01001253 // Undo structures header data
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001254 put_header_ptr(bi, buf->b_u_oldhead);
1255 put_header_ptr(bi, buf->b_u_newhead);
1256 put_header_ptr(bi, buf->b_u_curhead);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001257
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001258 undo_write_bytes(bi, (long_u)buf->b_u_numhead, 4);
1259 undo_write_bytes(bi, (long_u)buf->b_u_seq_last, 4);
1260 undo_write_bytes(bi, (long_u)buf->b_u_seq_cur, 4);
1261 time_to_bytes(buf->b_u_time_cur, time_buf);
1262 undo_write(bi, time_buf, 8);
Bram Moolenaara800b422010-06-27 01:15:55 +02001263
Bram Moolenaare38eab22019-12-05 21:50:01 +01001264 // Optional fields.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001265 undo_write_bytes(bi, 4, 1);
1266 undo_write_bytes(bi, UF_LAST_SAVE_NR, 1);
1267 undo_write_bytes(bi, (long_u)buf->b_u_save_nr_last, 4);
Bram Moolenaara800b422010-06-27 01:15:55 +02001268
Bram Moolenaare38eab22019-12-05 21:50:01 +01001269 undo_write_bytes(bi, 0, 1); // end marker
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001270
1271 return OK;
1272}
1273
1274 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001275serialize_uhp(bufinfo_T *bi, u_header_T *uhp)
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001276{
1277 int i;
1278 u_entry_T *uep;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001279 char_u time_buf[8];
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001280
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001281 if (undo_write_bytes(bi, (long_u)UF_HEADER_MAGIC, 2) == FAIL)
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001282 return FAIL;
1283
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001284 put_header_ptr(bi, uhp->uh_next.ptr);
1285 put_header_ptr(bi, uhp->uh_prev.ptr);
1286 put_header_ptr(bi, uhp->uh_alt_next.ptr);
1287 put_header_ptr(bi, uhp->uh_alt_prev.ptr);
1288 undo_write_bytes(bi, uhp->uh_seq, 4);
1289 serialize_pos(bi, uhp->uh_cursor);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001290 undo_write_bytes(bi, (long_u)uhp->uh_cursor_vcol, 4);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001291 undo_write_bytes(bi, (long_u)uhp->uh_flags, 2);
Bram Moolenaare38eab22019-12-05 21:50:01 +01001292 // Assume NMARKS will stay the same.
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001293 for (i = 0; i < NMARKS; ++i)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001294 serialize_pos(bi, uhp->uh_namedm[i]);
1295 serialize_visualinfo(bi, &uhp->uh_visual);
1296 time_to_bytes(uhp->uh_time, time_buf);
1297 undo_write(bi, time_buf, 8);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001298
Bram Moolenaare38eab22019-12-05 21:50:01 +01001299 // Optional fields.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001300 undo_write_bytes(bi, 4, 1);
1301 undo_write_bytes(bi, UHP_SAVE_NR, 1);
1302 undo_write_bytes(bi, (long_u)uhp->uh_save_nr, 4);
Bram Moolenaara800b422010-06-27 01:15:55 +02001303
Bram Moolenaare38eab22019-12-05 21:50:01 +01001304 undo_write_bytes(bi, 0, 1); // end marker
Bram Moolenaara800b422010-06-27 01:15:55 +02001305
Bram Moolenaare38eab22019-12-05 21:50:01 +01001306 // Write all the entries.
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001307 for (uep = uhp->uh_entry; uep != NULL; uep = uep->ue_next)
1308 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001309 undo_write_bytes(bi, (long_u)UF_ENTRY_MAGIC, 2);
1310 if (serialize_uep(bi, uep) == FAIL)
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001311 return FAIL;
1312 }
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001313 undo_write_bytes(bi, (long_u)UF_ENTRY_END_MAGIC, 2);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001314 return OK;
1315}
1316
1317 static u_header_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001318unserialize_uhp(bufinfo_T *bi, char_u *file_name)
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001319{
1320 u_header_T *uhp;
1321 int i;
1322 u_entry_T *uep, *last_uep;
1323 int c;
1324 int error;
1325
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001326 uhp = U_ALLOC_LINE(sizeof(u_header_T));
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001327 if (uhp == NULL)
1328 return NULL;
Bram Moolenaara80faa82020-04-12 19:37:17 +02001329 CLEAR_POINTER(uhp);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001330#ifdef U_DEBUG
1331 uhp->uh_magic = UH_MAGIC;
1332#endif
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001333 uhp->uh_next.seq = undo_read_4c(bi);
1334 uhp->uh_prev.seq = undo_read_4c(bi);
1335 uhp->uh_alt_next.seq = undo_read_4c(bi);
1336 uhp->uh_alt_prev.seq = undo_read_4c(bi);
1337 uhp->uh_seq = undo_read_4c(bi);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001338 if (uhp->uh_seq <= 0)
1339 {
1340 corruption_error("uh_seq", file_name);
1341 vim_free(uhp);
1342 return NULL;
1343 }
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001344 unserialize_pos(bi, &uhp->uh_cursor);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001345 uhp->uh_cursor_vcol = undo_read_4c(bi);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001346 uhp->uh_flags = undo_read_2c(bi);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001347 for (i = 0; i < NMARKS; ++i)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001348 unserialize_pos(bi, &uhp->uh_namedm[i]);
1349 unserialize_visualinfo(bi, &uhp->uh_visual);
1350 uhp->uh_time = undo_read_time(bi);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001351
Bram Moolenaare38eab22019-12-05 21:50:01 +01001352 // Optional fields.
Bram Moolenaar69154f22010-07-18 21:42:34 +02001353 for (;;)
1354 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001355 int len = undo_read_byte(bi);
Bram Moolenaar69154f22010-07-18 21:42:34 +02001356 int what;
Bram Moolenaara800b422010-06-27 01:15:55 +02001357
Bram Moolenaarfb06d762019-08-04 18:55:35 +02001358 if (len == EOF)
1359 {
1360 corruption_error("truncated", file_name);
1361 u_free_uhp(uhp);
1362 return NULL;
1363 }
Bram Moolenaar69154f22010-07-18 21:42:34 +02001364 if (len == 0)
1365 break;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001366 what = undo_read_byte(bi);
Bram Moolenaar69154f22010-07-18 21:42:34 +02001367 switch (what)
1368 {
1369 case UHP_SAVE_NR:
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001370 uhp->uh_save_nr = undo_read_4c(bi);
Bram Moolenaara800b422010-06-27 01:15:55 +02001371 break;
Bram Moolenaar69154f22010-07-18 21:42:34 +02001372 default:
Bram Moolenaare38eab22019-12-05 21:50:01 +01001373 // field not supported, skip
Bram Moolenaar69154f22010-07-18 21:42:34 +02001374 while (--len >= 0)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001375 (void)undo_read_byte(bi);
Bram Moolenaara800b422010-06-27 01:15:55 +02001376 }
Bram Moolenaar69154f22010-07-18 21:42:34 +02001377 }
Bram Moolenaara800b422010-06-27 01:15:55 +02001378
Bram Moolenaare38eab22019-12-05 21:50:01 +01001379 // Unserialize the uep list.
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001380 last_uep = NULL;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001381 while ((c = undo_read_2c(bi)) == UF_ENTRY_MAGIC)
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001382 {
1383 error = FALSE;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001384 uep = unserialize_uep(bi, &error, file_name);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001385 if (last_uep == NULL)
1386 uhp->uh_entry = uep;
1387 else
1388 last_uep->ue_next = uep;
1389 last_uep = uep;
1390 if (uep == NULL || error)
1391 {
1392 u_free_uhp(uhp);
1393 return NULL;
1394 }
1395 }
1396 if (c != UF_ENTRY_END_MAGIC)
1397 {
1398 corruption_error("entry end", file_name);
1399 u_free_uhp(uhp);
1400 return NULL;
1401 }
1402
1403 return uhp;
1404}
1405
Bram Moolenaar9db58062010-05-29 20:33:07 +02001406/*
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001407 * Serialize "uep".
Bram Moolenaar9db58062010-05-29 20:33:07 +02001408 */
1409 static int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001410serialize_uep(
1411 bufinfo_T *bi,
1412 u_entry_T *uep)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001413{
1414 int i;
1415 size_t len;
1416
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001417 undo_write_bytes(bi, (long_u)uep->ue_top, 4);
1418 undo_write_bytes(bi, (long_u)uep->ue_bot, 4);
1419 undo_write_bytes(bi, (long_u)uep->ue_lcount, 4);
1420 undo_write_bytes(bi, (long_u)uep->ue_size, 4);
Bram Moolenaar9db58062010-05-29 20:33:07 +02001421 for (i = 0; i < uep->ue_size; ++i)
1422 {
Bram Moolenaarccae4672019-01-04 15:09:57 +01001423 // Text is written without the text properties, since we cannot restore
1424 // the text property types.
1425 len = STRLEN(uep->ue_array[i].ul_line);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001426 if (undo_write_bytes(bi, (long_u)len, 4) == FAIL)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001427 return FAIL;
Bram Moolenaarccae4672019-01-04 15:09:57 +01001428 if (len > 0 && fwrite_crypt(bi, uep->ue_array[i].ul_line, len) == FAIL)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001429 return FAIL;
1430 }
1431 return OK;
1432}
1433
1434 static u_entry_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001435unserialize_uep(bufinfo_T *bi, int *error, char_u *file_name)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001436{
1437 int i;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001438 u_entry_T *uep;
Bram Moolenaarccae4672019-01-04 15:09:57 +01001439 undoline_T *array = NULL;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001440 char_u *line;
1441 int line_len;
1442
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001443 uep = U_ALLOC_LINE(sizeof(u_entry_T));
Bram Moolenaar9db58062010-05-29 20:33:07 +02001444 if (uep == NULL)
1445 return NULL;
Bram Moolenaara80faa82020-04-12 19:37:17 +02001446 CLEAR_POINTER(uep);
Bram Moolenaar9db58062010-05-29 20:33:07 +02001447#ifdef U_DEBUG
1448 uep->ue_magic = UE_MAGIC;
1449#endif
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001450 uep->ue_top = undo_read_4c(bi);
1451 uep->ue_bot = undo_read_4c(bi);
1452 uep->ue_lcount = undo_read_4c(bi);
1453 uep->ue_size = undo_read_4c(bi);
Bram Moolenaar9db58062010-05-29 20:33:07 +02001454 if (uep->ue_size > 0)
1455 {
Bram Moolenaar0c8485f2017-02-26 18:17:10 +01001456 if (uep->ue_size < LONG_MAX / (int)sizeof(char_u *))
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001457 array = U_ALLOC_LINE(sizeof(undoline_T) * uep->ue_size);
Bram Moolenaar9db58062010-05-29 20:33:07 +02001458 if (array == NULL)
1459 {
1460 *error = TRUE;
1461 return uep;
1462 }
Bram Moolenaarccae4672019-01-04 15:09:57 +01001463 vim_memset(array, 0, sizeof(undoline_T) * uep->ue_size);
Bram Moolenaar9db58062010-05-29 20:33:07 +02001464 }
1465 uep->ue_array = array;
1466
1467 for (i = 0; i < uep->ue_size; ++i)
1468 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001469 line_len = undo_read_4c(bi);
Bram Moolenaar9db58062010-05-29 20:33:07 +02001470 if (line_len >= 0)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001471 line = read_string_decrypt(bi, line_len);
Bram Moolenaar9db58062010-05-29 20:33:07 +02001472 else
1473 {
1474 line = NULL;
1475 corruption_error("line length", file_name);
1476 }
1477 if (line == NULL)
1478 {
1479 *error = TRUE;
1480 return uep;
1481 }
Bram Moolenaarccae4672019-01-04 15:09:57 +01001482 array[i].ul_line = line;
1483 array[i].ul_len = line_len + 1;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001484 }
1485 return uep;
1486}
1487
1488/*
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001489 * Serialize "pos".
Bram Moolenaar9db58062010-05-29 20:33:07 +02001490 */
1491 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001492serialize_pos(bufinfo_T *bi, pos_T pos)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001493{
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001494 undo_write_bytes(bi, (long_u)pos.lnum, 4);
1495 undo_write_bytes(bi, (long_u)pos.col, 4);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001496 undo_write_bytes(bi, (long_u)pos.coladd, 4);
Bram Moolenaar9db58062010-05-29 20:33:07 +02001497}
1498
1499/*
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001500 * Unserialize the pos_T at the current position.
Bram Moolenaar9db58062010-05-29 20:33:07 +02001501 */
1502 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001503unserialize_pos(bufinfo_T *bi, pos_T *pos)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001504{
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001505 pos->lnum = undo_read_4c(bi);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001506 if (pos->lnum < 0)
1507 pos->lnum = 0;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001508 pos->col = undo_read_4c(bi);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001509 if (pos->col < 0)
1510 pos->col = 0;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001511 pos->coladd = undo_read_4c(bi);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001512 if (pos->coladd < 0)
1513 pos->coladd = 0;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001514}
1515
1516/*
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001517 * Serialize "info".
Bram Moolenaar9db58062010-05-29 20:33:07 +02001518 */
1519 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001520serialize_visualinfo(bufinfo_T *bi, visualinfo_T *info)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001521{
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001522 serialize_pos(bi, info->vi_start);
1523 serialize_pos(bi, info->vi_end);
1524 undo_write_bytes(bi, (long_u)info->vi_mode, 4);
1525 undo_write_bytes(bi, (long_u)info->vi_curswant, 4);
Bram Moolenaar9db58062010-05-29 20:33:07 +02001526}
1527
1528/*
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001529 * Unserialize the visualinfo_T at the current position.
Bram Moolenaar9db58062010-05-29 20:33:07 +02001530 */
1531 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001532unserialize_visualinfo(bufinfo_T *bi, visualinfo_T *info)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001533{
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001534 unserialize_pos(bi, &info->vi_start);
1535 unserialize_pos(bi, &info->vi_end);
1536 info->vi_mode = undo_read_4c(bi);
1537 info->vi_curswant = undo_read_4c(bi);
Bram Moolenaar9db58062010-05-29 20:33:07 +02001538}
1539
1540/*
1541 * Write the undo tree in an undo file.
1542 * When "name" is not NULL, use it as the name of the undo file.
1543 * Otherwise use buf->b_ffname to generate the undo file name.
1544 * "buf" must never be null, buf->b_ffname is used to obtain the original file
1545 * permissions.
1546 * "forceit" is TRUE for ":wundo!", FALSE otherwise.
1547 * "hash[UNDO_HASH_SIZE]" must be the hash value of the buffer text.
1548 */
1549 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01001550u_write_undo(
1551 char_u *name,
1552 int forceit,
1553 buf_T *buf,
1554 char_u *hash)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001555{
1556 u_header_T *uhp;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001557 char_u *file_name;
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001558 int mark;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001559#ifdef U_DEBUG
1560 int headers_written = 0;
1561#endif
1562 int fd;
1563 FILE *fp = NULL;
1564 int perm;
1565 int write_ok = FALSE;
1566#ifdef UNIX
1567 int st_old_valid = FALSE;
Bram Moolenaar8767f522016-07-01 17:17:39 +02001568 stat_T st_old;
1569 stat_T st_new;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001570#endif
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001571 bufinfo_T bi;
1572
Bram Moolenaara80faa82020-04-12 19:37:17 +02001573 CLEAR_FIELD(bi);
Bram Moolenaar9db58062010-05-29 20:33:07 +02001574
1575 if (name == NULL)
1576 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001577 file_name = u_get_undo_file_name(buf->b_ffname, FALSE);
Bram Moolenaar9db58062010-05-29 20:33:07 +02001578 if (file_name == NULL)
1579 {
1580 if (p_verbose > 0)
Bram Moolenaar504a8212010-05-30 17:17:42 +02001581 {
1582 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001583 smsg(
Bram Moolenaar504a8212010-05-30 17:17:42 +02001584 _("Cannot write undo file in any directory in 'undodir'"));
1585 verbose_leave();
1586 }
Bram Moolenaar9db58062010-05-29 20:33:07 +02001587 return;
1588 }
1589 }
1590 else
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001591 file_name = name;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001592
1593 /*
1594 * Decide about the permission to use for the undo file. If the buffer
1595 * has a name use the permission of the original file. Otherwise only
1596 * allow the user to access the undo file.
1597 */
1598 perm = 0600;
1599 if (buf->b_ffname != NULL)
1600 {
1601#ifdef UNIX
1602 if (mch_stat((char *)buf->b_ffname, &st_old) >= 0)
1603 {
1604 perm = st_old.st_mode;
1605 st_old_valid = TRUE;
1606 }
1607#else
1608 perm = mch_getperm(buf->b_ffname);
1609 if (perm < 0)
1610 perm = 0600;
1611#endif
1612 }
1613
Bram Moolenaare38eab22019-12-05 21:50:01 +01001614 // strip any s-bit and executable bit
Bram Moolenaar3cbac302015-04-21 16:12:06 +02001615 perm = perm & 0666;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001616
Bram Moolenaare38eab22019-12-05 21:50:01 +01001617 // If the undo file already exists, verify that it actually is an undo
1618 // file, and delete it.
Bram Moolenaar9db58062010-05-29 20:33:07 +02001619 if (mch_getperm(file_name) >= 0)
1620 {
1621 if (name == NULL || !forceit)
1622 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001623 // Check we can read it and it's an undo file.
Bram Moolenaar9db58062010-05-29 20:33:07 +02001624 fd = mch_open((char *)file_name, O_RDONLY|O_EXTRA, 0);
1625 if (fd < 0)
1626 {
1627 if (name != NULL || p_verbose > 0)
Bram Moolenaar504a8212010-05-30 17:17:42 +02001628 {
1629 if (name == NULL)
1630 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001631 smsg(
Bram Moolenaar504a8212010-05-30 17:17:42 +02001632 _("Will not overwrite with undo file, cannot read: %s"),
Bram Moolenaar9db58062010-05-29 20:33:07 +02001633 file_name);
Bram Moolenaar504a8212010-05-30 17:17:42 +02001634 if (name == NULL)
1635 verbose_leave();
1636 }
Bram Moolenaar9db58062010-05-29 20:33:07 +02001637 goto theend;
1638 }
1639 else
1640 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001641 char_u mbuf[UF_START_MAGIC_LEN];
Bram Moolenaar9db58062010-05-29 20:33:07 +02001642 int len;
1643
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01001644 len = read_eintr(fd, mbuf, UF_START_MAGIC_LEN);
Bram Moolenaar9db58062010-05-29 20:33:07 +02001645 close(fd);
1646 if (len < UF_START_MAGIC_LEN
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001647 || memcmp(mbuf, UF_START_MAGIC, UF_START_MAGIC_LEN) != 0)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001648 {
1649 if (name != NULL || p_verbose > 0)
Bram Moolenaar504a8212010-05-30 17:17:42 +02001650 {
1651 if (name == NULL)
1652 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001653 smsg(
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001654 _("Will not overwrite, this is not an undo file: %s"),
Bram Moolenaar9db58062010-05-29 20:33:07 +02001655 file_name);
Bram Moolenaar504a8212010-05-30 17:17:42 +02001656 if (name == NULL)
1657 verbose_leave();
1658 }
Bram Moolenaar9db58062010-05-29 20:33:07 +02001659 goto theend;
1660 }
1661 }
1662 }
1663 mch_remove(file_name);
1664 }
1665
Bram Moolenaare38eab22019-12-05 21:50:01 +01001666 // If there is no undo information at all, quit here after deleting any
1667 // existing undo file.
Bram Moolenaarccae4672019-01-04 15:09:57 +01001668 if (buf->b_u_numhead == 0 && buf->b_u_line_ptr.ul_line == NULL)
Bram Moolenaar504a8212010-05-30 17:17:42 +02001669 {
1670 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001671 verb_msg(_("Skipping undo file write, nothing to undo"));
Bram Moolenaar504a8212010-05-30 17:17:42 +02001672 goto theend;
1673 }
1674
Bram Moolenaar9db58062010-05-29 20:33:07 +02001675 fd = mch_open((char *)file_name,
1676 O_CREAT|O_EXTRA|O_WRONLY|O_EXCL|O_NOFOLLOW, perm);
1677 if (fd < 0)
1678 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001679 semsg(_(e_not_open), file_name);
Bram Moolenaar9db58062010-05-29 20:33:07 +02001680 goto theend;
1681 }
1682 (void)mch_setperm(file_name, perm);
1683 if (p_verbose > 0)
Bram Moolenaar504a8212010-05-30 17:17:42 +02001684 {
1685 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001686 smsg(_("Writing undo file: %s"), file_name);
Bram Moolenaar504a8212010-05-30 17:17:42 +02001687 verbose_leave();
1688 }
Bram Moolenaar9db58062010-05-29 20:33:07 +02001689
Bram Moolenaar6773b2b2010-05-30 16:01:37 +02001690#ifdef U_DEBUG
Bram Moolenaare38eab22019-12-05 21:50:01 +01001691 // Check there is no problem in undo info before writing.
Bram Moolenaar6773b2b2010-05-30 16:01:37 +02001692 u_check(FALSE);
1693#endif
1694
Bram Moolenaar9db58062010-05-29 20:33:07 +02001695#ifdef UNIX
1696 /*
1697 * Try to set the group of the undo file same as the original file. If
1698 * this fails, set the protection bits for the group same as the
1699 * protection bits for others.
1700 */
Bram Moolenaarce69e822010-07-21 20:31:07 +02001701 if (st_old_valid
1702 && mch_stat((char *)file_name, &st_new) >= 0
1703 && st_new.st_gid != st_old.st_gid
Bram Moolenaare38eab22019-12-05 21:50:01 +01001704# ifdef HAVE_FCHOWN // sequent-ptx lacks fchown()
Bram Moolenaarce69e822010-07-21 20:31:07 +02001705 && fchown(fd, (uid_t)-1, st_old.st_gid) != 0
Bram Moolenaar9db58062010-05-29 20:33:07 +02001706# endif
1707 )
1708 mch_setperm(file_name, (perm & 0707) | ((perm & 07) << 3));
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02001709# if defined(HAVE_SELINUX) || defined(HAVE_SMACK)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001710 if (buf->b_ffname != NULL)
1711 mch_copy_sec(buf->b_ffname, file_name);
1712# endif
1713#endif
1714
1715 fp = fdopen(fd, "w");
1716 if (fp == NULL)
1717 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001718 semsg(_(e_not_open), file_name);
Bram Moolenaar9db58062010-05-29 20:33:07 +02001719 close(fd);
1720 mch_remove(file_name);
1721 goto theend;
1722 }
1723
Bram Moolenaare38eab22019-12-05 21:50:01 +01001724 // Undo must be synced.
Bram Moolenaar6773b2b2010-05-30 16:01:37 +02001725 u_sync(TRUE);
1726
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001727 /*
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001728 * Write the header. Initializes encryption, if enabled.
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001729 */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001730 bi.bi_buf = buf;
1731 bi.bi_fp = fp;
1732 if (serialize_header(&bi, hash) == FAIL)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001733 goto write_error;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001734
1735 /*
1736 * Iteratively serialize UHPs and their UEPs from the top down.
1737 */
1738 mark = ++lastmark;
1739 uhp = buf->b_u_oldhead;
1740 while (uhp != NULL)
1741 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01001742 // Serialize current UHP if we haven't seen it
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001743 if (uhp->uh_walk != mark)
1744 {
1745 uhp->uh_walk = mark;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001746#ifdef U_DEBUG
1747 ++headers_written;
1748#endif
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001749 if (serialize_uhp(&bi, uhp) == FAIL)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001750 goto write_error;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001751 }
Bram Moolenaar9db58062010-05-29 20:33:07 +02001752
Bram Moolenaare38eab22019-12-05 21:50:01 +01001753 // Now walk through the tree - algorithm from undo_time().
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001754 if (uhp->uh_prev.ptr != NULL && uhp->uh_prev.ptr->uh_walk != mark)
1755 uhp = uhp->uh_prev.ptr;
1756 else if (uhp->uh_alt_next.ptr != NULL
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02001757 && uhp->uh_alt_next.ptr->uh_walk != mark)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001758 uhp = uhp->uh_alt_next.ptr;
1759 else if (uhp->uh_next.ptr != NULL && uhp->uh_alt_prev.ptr == NULL
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02001760 && uhp->uh_next.ptr->uh_walk != mark)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001761 uhp = uhp->uh_next.ptr;
1762 else if (uhp->uh_alt_prev.ptr != NULL)
1763 uhp = uhp->uh_alt_prev.ptr;
1764 else
1765 uhp = uhp->uh_next.ptr;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001766 }
1767
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001768 if (undo_write_bytes(&bi, (long_u)UF_HEADER_END_MAGIC, 2) == OK)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001769 write_ok = TRUE;
1770#ifdef U_DEBUG
1771 if (headers_written != buf->b_u_numhead)
Bram Moolenaar570064c2013-06-10 20:25:10 +02001772 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001773 semsg("Written %ld headers, ...", headers_written);
1774 semsg("... but numhead is %ld", buf->b_u_numhead);
Bram Moolenaar570064c2013-06-10 20:25:10 +02001775 }
Bram Moolenaar9db58062010-05-29 20:33:07 +02001776#endif
1777
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001778#ifdef FEAT_CRYPT
1779 if (bi.bi_state != NULL && undo_flush(&bi) == FAIL)
1780 write_ok = FALSE;
1781#endif
1782
Bram Moolenaar9db58062010-05-29 20:33:07 +02001783write_error:
1784 fclose(fp);
1785 if (!write_ok)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001786 semsg(_("E829: write error in undo file: %s"), file_name);
Bram Moolenaar9db58062010-05-29 20:33:07 +02001787
Bram Moolenaar4f974752019-02-17 17:44:42 +01001788#if defined(MSWIN)
Bram Moolenaare38eab22019-12-05 21:50:01 +01001789 // Copy file attributes; for systems where this can only be done after
1790 // closing the file.
Bram Moolenaar9db58062010-05-29 20:33:07 +02001791 if (buf->b_ffname != NULL)
1792 (void)mch_copy_file_attribute(buf->b_ffname, file_name);
1793#endif
1794#ifdef HAVE_ACL
1795 if (buf->b_ffname != NULL)
1796 {
1797 vim_acl_T acl;
1798
Bram Moolenaare38eab22019-12-05 21:50:01 +01001799 // For systems that support ACL: get the ACL from the original file.
Bram Moolenaar9db58062010-05-29 20:33:07 +02001800 acl = mch_get_acl(buf->b_ffname);
1801 mch_set_acl(file_name, acl);
Bram Moolenaard2aed442012-06-01 13:46:12 +02001802 mch_free_acl(acl);
Bram Moolenaar9db58062010-05-29 20:33:07 +02001803 }
1804#endif
1805
1806theend:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001807#ifdef FEAT_CRYPT
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001808 if (bi.bi_state != NULL)
1809 crypt_free_state(bi.bi_state);
1810 vim_free(bi.bi_buffer);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001811#endif
Bram Moolenaar9db58062010-05-29 20:33:07 +02001812 if (file_name != name)
1813 vim_free(file_name);
1814}
1815
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001816/*
1817 * Load the undo tree from an undo file.
1818 * If "name" is not NULL use it as the undo file name. This also means being
1819 * a bit more verbose.
1820 * Otherwise use curbuf->b_ffname to generate the undo file name.
1821 * "hash[UNDO_HASH_SIZE]" must be the hash value of the buffer text.
1822 */
1823 void
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02001824u_read_undo(char_u *name, char_u *hash, char_u *orig_name UNUSED)
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001825{
1826 char_u *file_name;
1827 FILE *fp;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001828 long version, str_len;
Bram Moolenaarccae4672019-01-04 15:09:57 +01001829 undoline_T line_ptr;
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001830 linenr_T line_lnum;
1831 colnr_T line_colnr;
1832 linenr_T line_count;
Bram Moolenaar3eb16372017-02-26 18:11:36 +01001833 long num_head = 0;
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001834 long old_header_seq, new_header_seq, cur_header_seq;
1835 long seq_last, seq_cur;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001836 long last_save_nr = 0;
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001837 short old_idx = -1, new_idx = -1, cur_idx = -1;
1838 long num_read_uhps = 0;
1839 time_t seq_time;
1840 int i, j;
1841 int c;
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001842 u_header_T *uhp;
1843 u_header_T **uhp_table = NULL;
1844 char_u read_hash[UNDO_HASH_SIZE];
Bram Moolenaar9db58062010-05-29 20:33:07 +02001845 char_u magic_buf[UF_START_MAGIC_LEN];
1846#ifdef U_DEBUG
1847 int *uhp_table_used;
1848#endif
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001849#ifdef UNIX
Bram Moolenaar8767f522016-07-01 17:17:39 +02001850 stat_T st_orig;
1851 stat_T st_undo;
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001852#endif
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001853 bufinfo_T bi;
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001854
Bram Moolenaara80faa82020-04-12 19:37:17 +02001855 CLEAR_FIELD(bi);
Bram Moolenaarccae4672019-01-04 15:09:57 +01001856 line_ptr.ul_len = 0;
1857 line_ptr.ul_line = NULL;
1858
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001859 if (name == NULL)
1860 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001861 file_name = u_get_undo_file_name(curbuf->b_ffname, TRUE);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001862 if (file_name == NULL)
1863 return;
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001864
1865#ifdef UNIX
Bram Moolenaare38eab22019-12-05 21:50:01 +01001866 // For safety we only read an undo file if the owner is equal to the
1867 // owner of the text file or equal to the current user.
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001868 if (mch_stat((char *)orig_name, &st_orig) >= 0
1869 && mch_stat((char *)file_name, &st_undo) >= 0
Bram Moolenaar3b262392013-09-08 15:40:49 +02001870 && st_orig.st_uid != st_undo.st_uid
1871 && st_undo.st_uid != getuid())
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001872 {
1873 if (p_verbose > 0)
1874 {
1875 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001876 smsg(_("Not reading undo file, owner differs: %s"),
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001877 file_name);
1878 verbose_leave();
1879 }
1880 return;
1881 }
1882#endif
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001883 }
1884 else
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001885 file_name = name;
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001886
1887 if (p_verbose > 0)
Bram Moolenaar504a8212010-05-30 17:17:42 +02001888 {
1889 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001890 smsg(_("Reading undo file: %s"), file_name);
Bram Moolenaar504a8212010-05-30 17:17:42 +02001891 verbose_leave();
1892 }
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001893
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001894 fp = mch_fopen((char *)file_name, "r");
1895 if (fp == NULL)
1896 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001897 if (name != NULL || p_verbose > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001898 semsg(_("E822: Cannot open undo file for reading: %s"), file_name);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001899 goto error;
1900 }
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001901 bi.bi_buf = curbuf;
1902 bi.bi_fp = fp;
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001903
Bram Moolenaar9db58062010-05-29 20:33:07 +02001904 /*
1905 * Read the undo file header.
1906 */
1907 if (fread(magic_buf, UF_START_MAGIC_LEN, 1, fp) != 1
1908 || memcmp(magic_buf, UF_START_MAGIC, UF_START_MAGIC_LEN) != 0)
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001909 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001910 semsg(_("E823: Not an undo file: %s"), file_name);
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001911 goto error;
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001912 }
1913 version = get2c(fp);
Bram Moolenaar69154f22010-07-18 21:42:34 +02001914 if (version == UF_VERSION_CRYPT)
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001915 {
1916#ifdef FEAT_CRYPT
Bram Moolenaar56be9502010-06-06 14:20:26 +02001917 if (*curbuf->b_p_key == NUL)
1918 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001919 semsg(_("E832: Non-encrypted file has encrypted undo file: %s"),
Bram Moolenaar56be9502010-06-06 14:20:26 +02001920 file_name);
1921 goto error;
1922 }
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001923 bi.bi_state = crypt_create_from_file(fp, curbuf->b_p_key);
1924 if (bi.bi_state == NULL)
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001925 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001926 semsg(_("E826: Undo file decryption failed: %s"), file_name);
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001927 goto error;
1928 }
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001929 if (crypt_whole_undofile(bi.bi_state->method_nr))
1930 {
1931 bi.bi_buffer = alloc(CRYPT_BUF_SIZE);
1932 if (bi.bi_buffer == NULL)
1933 {
1934 crypt_free_state(bi.bi_state);
1935 bi.bi_state = NULL;
1936 goto error;
1937 }
1938 bi.bi_avail = 0;
1939 bi.bi_used = 0;
1940 }
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001941#else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001942 semsg(_("E827: Undo file is encrypted: %s"), file_name);
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001943 goto error;
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001944#endif
1945 }
Bram Moolenaar69154f22010-07-18 21:42:34 +02001946 else if (version != UF_VERSION)
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001947 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001948 semsg(_("E824: Incompatible undo file: %s"), file_name);
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001949 goto error;
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001950 }
1951
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001952 if (undo_read(&bi, read_hash, (size_t)UNDO_HASH_SIZE) == FAIL)
Bram Moolenaarcdf04202010-05-29 15:11:47 +02001953 {
Bram Moolenaar9db58062010-05-29 20:33:07 +02001954 corruption_error("hash", file_name);
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001955 goto error;
Bram Moolenaarcdf04202010-05-29 15:11:47 +02001956 }
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001957 line_count = (linenr_T)undo_read_4c(&bi);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001958 if (memcmp(hash, read_hash, UNDO_HASH_SIZE) != 0
1959 || line_count != curbuf->b_ml.ml_line_count)
1960 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001961 if (p_verbose > 0 || name != NULL)
1962 {
Bram Moolenaar504a8212010-05-30 17:17:42 +02001963 if (name == NULL)
1964 verbose_enter();
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001965 give_warning((char_u *)
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001966 _("File contents changed, cannot use undo info"), TRUE);
Bram Moolenaar504a8212010-05-30 17:17:42 +02001967 if (name == NULL)
1968 verbose_leave();
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001969 }
1970 goto error;
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001971 }
1972
Bram Moolenaare38eab22019-12-05 21:50:01 +01001973 // Read undo data for "U" command.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001974 str_len = undo_read_4c(&bi);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001975 if (str_len < 0)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02001976 goto error;
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001977 if (str_len > 0)
Bram Moolenaarccae4672019-01-04 15:09:57 +01001978 {
1979 line_ptr.ul_line = read_string_decrypt(&bi, str_len);
1980 line_ptr.ul_len = str_len + 1;
1981 }
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001982 line_lnum = (linenr_T)undo_read_4c(&bi);
1983 line_colnr = (colnr_T)undo_read_4c(&bi);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001984 if (line_lnum < 0 || line_colnr < 0)
1985 {
1986 corruption_error("line lnum/col", file_name);
1987 goto error;
1988 }
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001989
Bram Moolenaare38eab22019-12-05 21:50:01 +01001990 // Begin general undo data
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001991 old_header_seq = undo_read_4c(&bi);
1992 new_header_seq = undo_read_4c(&bi);
1993 cur_header_seq = undo_read_4c(&bi);
1994 num_head = undo_read_4c(&bi);
1995 seq_last = undo_read_4c(&bi);
1996 seq_cur = undo_read_4c(&bi);
1997 seq_time = undo_read_time(&bi);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001998
Bram Moolenaare38eab22019-12-05 21:50:01 +01001999 // Optional header fields.
Bram Moolenaar69154f22010-07-18 21:42:34 +02002000 for (;;)
2001 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02002002 int len = undo_read_byte(&bi);
Bram Moolenaar69154f22010-07-18 21:42:34 +02002003 int what;
Bram Moolenaara800b422010-06-27 01:15:55 +02002004
Bram Moolenaar69154f22010-07-18 21:42:34 +02002005 if (len == 0 || len == EOF)
2006 break;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02002007 what = undo_read_byte(&bi);
Bram Moolenaar69154f22010-07-18 21:42:34 +02002008 switch (what)
2009 {
2010 case UF_LAST_SAVE_NR:
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02002011 last_save_nr = undo_read_4c(&bi);
Bram Moolenaara800b422010-06-27 01:15:55 +02002012 break;
Bram Moolenaar69154f22010-07-18 21:42:34 +02002013 default:
Bram Moolenaare38eab22019-12-05 21:50:01 +01002014 // field not supported, skip
Bram Moolenaar69154f22010-07-18 21:42:34 +02002015 while (--len >= 0)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02002016 (void)undo_read_byte(&bi);
Bram Moolenaara800b422010-06-27 01:15:55 +02002017 }
Bram Moolenaar69154f22010-07-18 21:42:34 +02002018 }
Bram Moolenaara800b422010-06-27 01:15:55 +02002019
Bram Moolenaare38eab22019-12-05 21:50:01 +01002020 // uhp_table will store the freshly created undo headers we allocate
2021 // until we insert them into curbuf. The table remains sorted by the
2022 // sequence numbers of the headers.
2023 // When there are no headers uhp_table is NULL.
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02002024 if (num_head > 0)
2025 {
Bram Moolenaar3eb16372017-02-26 18:11:36 +01002026 if (num_head < LONG_MAX / (long)sizeof(u_header_T *))
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002027 uhp_table = U_ALLOC_LINE(num_head * sizeof(u_header_T *));
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02002028 if (uhp_table == NULL)
2029 goto error;
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02002030 }
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002031
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02002032 while ((c = undo_read_2c(&bi)) == UF_HEADER_MAGIC)
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002033 {
Bram Moolenaar6a18eb62010-05-26 21:21:00 +02002034 if (num_read_uhps >= num_head)
2035 {
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02002036 corruption_error("num_head too small", file_name);
Bram Moolenaar6a18eb62010-05-26 21:21:00 +02002037 goto error;
2038 }
2039
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02002040 uhp = unserialize_uhp(&bi, file_name);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02002041 if (uhp == NULL)
2042 goto error;
Bram Moolenaar6773b2b2010-05-30 16:01:37 +02002043 uhp_table[num_read_uhps++] = uhp;
2044 }
2045
2046 if (num_read_uhps != num_head)
2047 {
2048 corruption_error("num_head", file_name);
2049 goto error;
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002050 }
Bram Moolenaar9db58062010-05-29 20:33:07 +02002051 if (c != UF_HEADER_END_MAGIC)
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002052 {
Bram Moolenaar9db58062010-05-29 20:33:07 +02002053 corruption_error("end marker", file_name);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002054 goto error;
2055 }
2056
Bram Moolenaar9db58062010-05-29 20:33:07 +02002057#ifdef U_DEBUG
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002058 uhp_table_used = alloc_clear(sizeof(int) * num_head + 1);
Bram Moolenaar9db58062010-05-29 20:33:07 +02002059# define SET_FLAG(j) ++uhp_table_used[j]
2060#else
2061# define SET_FLAG(j)
2062#endif
2063
Bram Moolenaare38eab22019-12-05 21:50:01 +01002064 // We have put all of the headers into a table. Now we iterate through the
2065 // table and swizzle each sequence number we have stored in uh_*_seq into
2066 // a pointer corresponding to the header with that sequence number.
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002067 for (i = 0; i < num_head; i++)
2068 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002069 uhp = uhp_table[i];
2070 if (uhp == NULL)
2071 continue;
2072 for (j = 0; j < num_head; j++)
2073 if (uhp_table[j] != NULL && i != j
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002074 && uhp_table[i]->uh_seq == uhp_table[j]->uh_seq)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002075 {
Bram Moolenaar6773b2b2010-05-30 16:01:37 +02002076 corruption_error("duplicate uh_seq", file_name);
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002077 goto error;
Bram Moolenaar6773b2b2010-05-30 16:01:37 +02002078 }
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002079 for (j = 0; j < num_head; j++)
2080 if (uhp_table[j] != NULL
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002081 && uhp_table[j]->uh_seq == uhp->uh_next.seq)
Bram Moolenaar9db58062010-05-29 20:33:07 +02002082 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002083 uhp->uh_next.ptr = uhp_table[j];
Bram Moolenaar9db58062010-05-29 20:33:07 +02002084 SET_FLAG(j);
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002085 break;
Bram Moolenaar9db58062010-05-29 20:33:07 +02002086 }
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002087 for (j = 0; j < num_head; j++)
2088 if (uhp_table[j] != NULL
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002089 && uhp_table[j]->uh_seq == uhp->uh_prev.seq)
Bram Moolenaar9db58062010-05-29 20:33:07 +02002090 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002091 uhp->uh_prev.ptr = uhp_table[j];
Bram Moolenaar9db58062010-05-29 20:33:07 +02002092 SET_FLAG(j);
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002093 break;
Bram Moolenaar9db58062010-05-29 20:33:07 +02002094 }
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002095 for (j = 0; j < num_head; j++)
2096 if (uhp_table[j] != NULL
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002097 && uhp_table[j]->uh_seq == uhp->uh_alt_next.seq)
Bram Moolenaar9db58062010-05-29 20:33:07 +02002098 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002099 uhp->uh_alt_next.ptr = uhp_table[j];
Bram Moolenaar9db58062010-05-29 20:33:07 +02002100 SET_FLAG(j);
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002101 break;
Bram Moolenaar9db58062010-05-29 20:33:07 +02002102 }
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002103 for (j = 0; j < num_head; j++)
2104 if (uhp_table[j] != NULL
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002105 && uhp_table[j]->uh_seq == uhp->uh_alt_prev.seq)
Bram Moolenaar9db58062010-05-29 20:33:07 +02002106 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002107 uhp->uh_alt_prev.ptr = uhp_table[j];
Bram Moolenaar9db58062010-05-29 20:33:07 +02002108 SET_FLAG(j);
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002109 break;
Bram Moolenaar9db58062010-05-29 20:33:07 +02002110 }
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002111 if (old_header_seq > 0 && old_idx < 0 && uhp->uh_seq == old_header_seq)
Bram Moolenaar9db58062010-05-29 20:33:07 +02002112 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002113 old_idx = i;
Bram Moolenaar9db58062010-05-29 20:33:07 +02002114 SET_FLAG(i);
2115 }
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002116 if (new_header_seq > 0 && new_idx < 0 && uhp->uh_seq == new_header_seq)
Bram Moolenaar9db58062010-05-29 20:33:07 +02002117 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002118 new_idx = i;
Bram Moolenaar9db58062010-05-29 20:33:07 +02002119 SET_FLAG(i);
2120 }
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002121 if (cur_header_seq > 0 && cur_idx < 0 && uhp->uh_seq == cur_header_seq)
Bram Moolenaar9db58062010-05-29 20:33:07 +02002122 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002123 cur_idx = i;
Bram Moolenaar9db58062010-05-29 20:33:07 +02002124 SET_FLAG(i);
2125 }
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002126 }
Bram Moolenaar9db58062010-05-29 20:33:07 +02002127
Bram Moolenaare38eab22019-12-05 21:50:01 +01002128 // Now that we have read the undo info successfully, free the current undo
2129 // info and use the info from the file.
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002130 u_blockfree(curbuf);
Bram Moolenaar9db58062010-05-29 20:33:07 +02002131 curbuf->b_u_oldhead = old_idx < 0 ? NULL : uhp_table[old_idx];
2132 curbuf->b_u_newhead = new_idx < 0 ? NULL : uhp_table[new_idx];
2133 curbuf->b_u_curhead = cur_idx < 0 ? NULL : uhp_table[cur_idx];
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002134 curbuf->b_u_line_ptr = line_ptr;
2135 curbuf->b_u_line_lnum = line_lnum;
2136 curbuf->b_u_line_colnr = line_colnr;
2137 curbuf->b_u_numhead = num_head;
2138 curbuf->b_u_seq_last = seq_last;
2139 curbuf->b_u_seq_cur = seq_cur;
Bram Moolenaara800b422010-06-27 01:15:55 +02002140 curbuf->b_u_time_cur = seq_time;
Bram Moolenaar730cde92010-06-27 05:18:54 +02002141 curbuf->b_u_save_nr_last = last_save_nr;
Bram Moolenaardba01a02010-11-03 19:32:42 +01002142 curbuf->b_u_save_nr_cur = last_save_nr;
Bram Moolenaar6773b2b2010-05-30 16:01:37 +02002143
2144 curbuf->b_u_synced = TRUE;
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02002145 vim_free(uhp_table);
Bram Moolenaar9db58062010-05-29 20:33:07 +02002146
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002147#ifdef U_DEBUG
Bram Moolenaar9db58062010-05-29 20:33:07 +02002148 for (i = 0; i < num_head; ++i)
2149 if (uhp_table_used[i] == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002150 semsg("uhp_table entry %ld not used, leaking memory", i);
Bram Moolenaar9db58062010-05-29 20:33:07 +02002151 vim_free(uhp_table_used);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002152 u_check(TRUE);
2153#endif
Bram Moolenaar9db58062010-05-29 20:33:07 +02002154
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002155 if (name != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002156 smsg(_("Finished reading undo file %s"), file_name);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002157 goto theend;
2158
2159error:
Bram Moolenaarccae4672019-01-04 15:09:57 +01002160 vim_free(line_ptr.ul_line);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002161 if (uhp_table != NULL)
2162 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002163 for (i = 0; i < num_read_uhps; i++)
2164 if (uhp_table[i] != NULL)
Bram Moolenaar6a18eb62010-05-26 21:21:00 +02002165 u_free_uhp(uhp_table[i]);
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002166 vim_free(uhp_table);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002167 }
2168
2169theend:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002170#ifdef FEAT_CRYPT
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02002171 if (bi.bi_state != NULL)
2172 crypt_free_state(bi.bi_state);
2173 vim_free(bi.bi_buffer);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002174#endif
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002175 if (fp != NULL)
Bram Moolenaarcc448b32010-07-14 16:52:17 +02002176 fclose(fp);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002177 if (file_name != name)
2178 vim_free(file_name);
2179 return;
2180}
2181
Bram Moolenaare38eab22019-12-05 21:50:01 +01002182#endif // FEAT_PERSISTENT_UNDO
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002183
2184
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185/*
2186 * If 'cpoptions' contains 'u': Undo the previous undo or redo (vi compatible).
2187 * If 'cpoptions' does not contain 'u': Always undo.
2188 */
2189 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002190u_undo(int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191{
2192 /*
2193 * If we get an undo command while executing a macro, we behave like the
2194 * original vi. If this happens twice in one macro the result will not
2195 * be compatible.
2196 */
2197 if (curbuf->b_u_synced == FALSE)
2198 {
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002199 u_sync(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 count = 1;
2201 }
2202
2203 if (vim_strchr(p_cpo, CPO_UNDO) == NULL)
2204 undo_undoes = TRUE;
2205 else
2206 undo_undoes = !undo_undoes;
2207 u_doit(count);
2208}
2209
2210/*
2211 * If 'cpoptions' contains 'u': Repeat the previous undo or redo.
2212 * If 'cpoptions' does not contain 'u': Always redo.
2213 */
2214 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002215u_redo(int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216{
2217 if (vim_strchr(p_cpo, CPO_UNDO) == NULL)
2218 undo_undoes = FALSE;
2219 u_doit(count);
2220}
2221
2222/*
2223 * Undo or redo, depending on 'undo_undoes', 'count' times.
2224 */
2225 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002226u_doit(int startcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227{
Bram Moolenaarca003e12006-03-17 23:19:38 +00002228 int count = startcount;
2229
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00002230 if (!undo_allowed())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232
2233 u_newcount = 0;
2234 u_oldcount = 0;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002235 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2236 u_oldcount = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237 while (count--)
2238 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002239 // Do the change warning now, so that it triggers FileChangedRO when
2240 // needed. This may cause the file to be reloaded, that must happen
2241 // before we do anything, because it may change curbuf->b_u_curhead
2242 // and more.
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002243 change_warning(0);
2244
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245 if (undo_undoes)
2246 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002247 if (curbuf->b_u_curhead == NULL) // first undo
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248 curbuf->b_u_curhead = curbuf->b_u_newhead;
Bram Moolenaare38eab22019-12-05 21:50:01 +01002249 else if (get_undolevel() > 0) // multi level undo
2250 // get next undo
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002251 curbuf->b_u_curhead = curbuf->b_u_curhead->uh_next.ptr;
Bram Moolenaare38eab22019-12-05 21:50:01 +01002252 // nothing to undo
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253 if (curbuf->b_u_numhead == 0 || curbuf->b_u_curhead == NULL)
2254 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002255 // stick curbuf->b_u_curhead at end
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 curbuf->b_u_curhead = curbuf->b_u_oldhead;
2257 beep_flush();
Bram Moolenaarca003e12006-03-17 23:19:38 +00002258 if (count == startcount - 1)
2259 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002260 msg(_("Already at oldest change"));
Bram Moolenaarca003e12006-03-17 23:19:38 +00002261 return;
2262 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263 break;
2264 }
2265
Bram Moolenaarca003e12006-03-17 23:19:38 +00002266 u_undoredo(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267 }
2268 else
2269 {
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01002270 if (curbuf->b_u_curhead == NULL || get_undolevel() <= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002272 beep_flush(); // nothing to redo
Bram Moolenaarca003e12006-03-17 23:19:38 +00002273 if (count == startcount - 1)
2274 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002275 msg(_("Already at newest change"));
Bram Moolenaarca003e12006-03-17 23:19:38 +00002276 return;
2277 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 break;
2279 }
2280
Bram Moolenaarca003e12006-03-17 23:19:38 +00002281 u_undoredo(FALSE);
Bram Moolenaar1e607892006-03-13 22:15:53 +00002282
Bram Moolenaare38eab22019-12-05 21:50:01 +01002283 // Advance for next redo. Set "newhead" when at the end of the
2284 // redoable changes.
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002285 if (curbuf->b_u_curhead->uh_prev.ptr == NULL)
Bram Moolenaar1e607892006-03-13 22:15:53 +00002286 curbuf->b_u_newhead = curbuf->b_u_curhead;
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002287 curbuf->b_u_curhead = curbuf->b_u_curhead->uh_prev.ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 }
2289 }
Bram Moolenaardb552d602006-03-23 22:59:57 +00002290 u_undo_end(undo_undoes, FALSE);
Bram Moolenaar1e607892006-03-13 22:15:53 +00002291}
2292
Bram Moolenaar1e607892006-03-13 22:15:53 +00002293/*
2294 * Undo or redo over the timeline.
2295 * When "step" is negative go back in time, otherwise goes forward in time.
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002296 * When "sec" is FALSE make "step" steps, when "sec" is TRUE use "step" as
2297 * seconds.
Bram Moolenaar730cde92010-06-27 05:18:54 +02002298 * When "file" is TRUE use "step" as a number of file writes.
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002299 * When "absolute" is TRUE use "step" as the sequence number to jump to.
2300 * "sec" must be FALSE then.
Bram Moolenaar1e607892006-03-13 22:15:53 +00002301 */
2302 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002303undo_time(
2304 long step,
2305 int sec,
2306 int file,
2307 int absolute)
Bram Moolenaar1e607892006-03-13 22:15:53 +00002308{
2309 long target;
2310 long closest;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002311 long closest_start;
2312 long closest_seq = 0;
2313 long val;
Bram Moolenaarce46d932018-01-30 22:46:06 +01002314 u_header_T *uhp = NULL;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002315 u_header_T *last;
2316 int mark;
Bram Moolenaar1f3601e2019-04-26 20:33:00 +02002317 int nomark = 0; // shut up compiler
Bram Moolenaar1e607892006-03-13 22:15:53 +00002318 int round;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002319 int dosec = sec;
Bram Moolenaar730cde92010-06-27 05:18:54 +02002320 int dofile = file;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002321 int above = FALSE;
Bram Moolenaar433f7c82006-03-21 21:29:36 +00002322 int did_undo = TRUE;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002323
Bram Moolenaare38eab22019-12-05 21:50:01 +01002324 // First make sure the current undoable change is synced.
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00002325 if (curbuf->b_u_synced == FALSE)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002326 u_sync(TRUE);
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00002327
Bram Moolenaar1e607892006-03-13 22:15:53 +00002328 u_newcount = 0;
2329 u_oldcount = 0;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002330 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar1e607892006-03-13 22:15:53 +00002331 u_oldcount = -1;
2332
Bram Moolenaare38eab22019-12-05 21:50:01 +01002333 // "target" is the node below which we want to be.
2334 // Init "closest" to a value we can't reach.
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002335 if (absolute)
2336 {
Bram Moolenaarce46d932018-01-30 22:46:06 +01002337 target = step;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002338 closest = -1;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002339 }
Bram Moolenaarca003e12006-03-17 23:19:38 +00002340 else
Bram Moolenaar1e607892006-03-13 22:15:53 +00002341 {
Bram Moolenaar730cde92010-06-27 05:18:54 +02002342 if (dosec)
Bram Moolenaarcbd4de42017-01-07 16:14:57 +01002343 target = (long)(curbuf->b_u_time_cur) + step;
Bram Moolenaar730cde92010-06-27 05:18:54 +02002344 else if (dofile)
2345 {
2346 if (step < 0)
2347 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002348 // Going back to a previous write. If there were changes after
2349 // the last write, count that as moving one file-write, so
2350 // that ":earlier 1f" undoes all changes since the last save.
Bram Moolenaar730cde92010-06-27 05:18:54 +02002351 uhp = curbuf->b_u_curhead;
2352 if (uhp != NULL)
2353 uhp = uhp->uh_next.ptr;
2354 else
2355 uhp = curbuf->b_u_newhead;
2356 if (uhp != NULL && uhp->uh_save_nr != 0)
Bram Moolenaare38eab22019-12-05 21:50:01 +01002357 // "uh_save_nr" was set in the last block, that means
2358 // there were no changes since the last write
Bram Moolenaar730cde92010-06-27 05:18:54 +02002359 target = curbuf->b_u_save_nr_cur + step;
2360 else
Bram Moolenaare38eab22019-12-05 21:50:01 +01002361 // count the changes since the last write as one step
Bram Moolenaar730cde92010-06-27 05:18:54 +02002362 target = curbuf->b_u_save_nr_cur + step + 1;
2363 if (target <= 0)
Bram Moolenaare38eab22019-12-05 21:50:01 +01002364 // Go to before first write: before the oldest change. Use
2365 // the sequence number for that.
Bram Moolenaar730cde92010-06-27 05:18:54 +02002366 dofile = FALSE;
2367 }
2368 else
2369 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002370 // Moving forward to a newer write.
Bram Moolenaar730cde92010-06-27 05:18:54 +02002371 target = curbuf->b_u_save_nr_cur + step;
2372 if (target > curbuf->b_u_save_nr_last)
2373 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002374 // Go to after last write: after the latest change. Use
2375 // the sequence number for that.
Bram Moolenaar730cde92010-06-27 05:18:54 +02002376 target = curbuf->b_u_seq_last + 1;
2377 dofile = FALSE;
2378 }
2379 }
2380 }
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002381 else
2382 target = curbuf->b_u_seq_cur + step;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002383 if (step < 0)
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002384 {
Bram Moolenaarca003e12006-03-17 23:19:38 +00002385 if (target < 0)
2386 target = 0;
2387 closest = -1;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002388 }
2389 else
2390 {
Bram Moolenaar730cde92010-06-27 05:18:54 +02002391 if (dosec)
Bram Moolenaarcbd4de42017-01-07 16:14:57 +01002392 closest = (long)(vim_time() + 1);
Bram Moolenaar730cde92010-06-27 05:18:54 +02002393 else if (dofile)
2394 closest = curbuf->b_u_save_nr_last + 2;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002395 else
2396 closest = curbuf->b_u_seq_last + 2;
2397 if (target >= closest)
2398 target = closest - 1;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002399 }
Bram Moolenaar1e607892006-03-13 22:15:53 +00002400 }
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002401 closest_start = closest;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002402 closest_seq = curbuf->b_u_seq_cur;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002403
Bram Moolenaare38eab22019-12-05 21:50:01 +01002404 // When "target" is 0; Back to origin.
Bram Moolenaarce46d932018-01-30 22:46:06 +01002405 if (target == 0)
Bram Moolenaar059fd012018-01-31 14:25:53 +01002406 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002407 mark = lastmark; // avoid that GCC complains
Bram Moolenaar059fd012018-01-31 14:25:53 +01002408 goto target_zero;
2409 }
Bram Moolenaarce46d932018-01-30 22:46:06 +01002410
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002411 /*
2412 * May do this twice:
Bram Moolenaar1e607892006-03-13 22:15:53 +00002413 * 1. Search for "target", update "closest" to the best match found.
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002414 * 2. If "target" not found search for "closest".
2415 *
2416 * When using the closest time we use the sequence number in the second
2417 * round, because there may be several entries with the same time.
2418 */
Bram Moolenaar1e607892006-03-13 22:15:53 +00002419 for (round = 1; round <= 2; ++round)
2420 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002421 // Find the path from the current state to where we want to go. The
2422 // desired state can be anywhere in the undo tree, need to go all over
2423 // it. We put "nomark" in uh_walk where we have been without success,
2424 // "mark" where it could possibly be.
Bram Moolenaar1e607892006-03-13 22:15:53 +00002425 mark = ++lastmark;
2426 nomark = ++lastmark;
2427
Bram Moolenaare38eab22019-12-05 21:50:01 +01002428 if (curbuf->b_u_curhead == NULL) // at leaf of the tree
Bram Moolenaar1e607892006-03-13 22:15:53 +00002429 uhp = curbuf->b_u_newhead;
2430 else
2431 uhp = curbuf->b_u_curhead;
2432
2433 while (uhp != NULL)
2434 {
2435 uhp->uh_walk = mark;
Bram Moolenaar730cde92010-06-27 05:18:54 +02002436 if (dosec)
Bram Moolenaarcbd4de42017-01-07 16:14:57 +01002437 val = (long)(uhp->uh_time);
Bram Moolenaar730cde92010-06-27 05:18:54 +02002438 else if (dofile)
2439 val = uhp->uh_save_nr;
2440 else
2441 val = uhp->uh_seq;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002442
Bram Moolenaar730cde92010-06-27 05:18:54 +02002443 if (round == 1 && !(dofile && val == 0))
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002444 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002445 // Remember the header that is closest to the target.
2446 // It must be at least in the right direction (checked with
2447 // "b_u_seq_cur"). When the timestamp is equal find the
2448 // highest/lowest sequence number.
Bram Moolenaarca003e12006-03-17 23:19:38 +00002449 if ((step < 0 ? uhp->uh_seq <= curbuf->b_u_seq_cur
2450 : uhp->uh_seq > curbuf->b_u_seq_cur)
2451 && ((dosec && val == closest)
2452 ? (step < 0
2453 ? uhp->uh_seq < closest_seq
2454 : uhp->uh_seq > closest_seq)
2455 : closest == closest_start
2456 || (val > target
2457 ? (closest > target
2458 ? val - target <= closest - target
2459 : val - target <= target - closest)
2460 : (closest > target
2461 ? target - val <= closest - target
2462 : target - val <= target - closest))))
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002463 {
2464 closest = val;
2465 closest_seq = uhp->uh_seq;
2466 }
2467 }
2468
Bram Moolenaare38eab22019-12-05 21:50:01 +01002469 // Quit searching when we found a match. But when searching for a
2470 // time we need to continue looking for the best uh_seq.
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002471 if (target == val && !dosec)
Bram Moolenaar730cde92010-06-27 05:18:54 +02002472 {
2473 target = uhp->uh_seq;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002474 break;
Bram Moolenaar730cde92010-06-27 05:18:54 +02002475 }
Bram Moolenaar1e607892006-03-13 22:15:53 +00002476
Bram Moolenaare38eab22019-12-05 21:50:01 +01002477 // go down in the tree if we haven't been there
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002478 if (uhp->uh_prev.ptr != NULL && uhp->uh_prev.ptr->uh_walk != nomark
2479 && uhp->uh_prev.ptr->uh_walk != mark)
2480 uhp = uhp->uh_prev.ptr;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002481
Bram Moolenaare38eab22019-12-05 21:50:01 +01002482 // go to alternate branch if we haven't been there
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002483 else if (uhp->uh_alt_next.ptr != NULL
2484 && uhp->uh_alt_next.ptr->uh_walk != nomark
2485 && uhp->uh_alt_next.ptr->uh_walk != mark)
2486 uhp = uhp->uh_alt_next.ptr;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002487
Bram Moolenaare38eab22019-12-05 21:50:01 +01002488 // go up in the tree if we haven't been there and we are at the
2489 // start of alternate branches
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002490 else if (uhp->uh_next.ptr != NULL && uhp->uh_alt_prev.ptr == NULL
2491 && uhp->uh_next.ptr->uh_walk != nomark
2492 && uhp->uh_next.ptr->uh_walk != mark)
Bram Moolenaardb552d602006-03-23 22:59:57 +00002493 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002494 // If still at the start we don't go through this change.
Bram Moolenaardb552d602006-03-23 22:59:57 +00002495 if (uhp == curbuf->b_u_curhead)
2496 uhp->uh_walk = nomark;
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002497 uhp = uhp->uh_next.ptr;
Bram Moolenaardb552d602006-03-23 22:59:57 +00002498 }
Bram Moolenaar1e607892006-03-13 22:15:53 +00002499
2500 else
2501 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002502 // need to backtrack; mark this node as useless
Bram Moolenaar1e607892006-03-13 22:15:53 +00002503 uhp->uh_walk = nomark;
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002504 if (uhp->uh_alt_prev.ptr != NULL)
2505 uhp = uhp->uh_alt_prev.ptr;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002506 else
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002507 uhp = uhp->uh_next.ptr;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002508 }
2509 }
2510
Bram Moolenaare38eab22019-12-05 21:50:01 +01002511 if (uhp != NULL) // found it
Bram Moolenaar1e607892006-03-13 22:15:53 +00002512 break;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002513
2514 if (absolute)
2515 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002516 semsg(_("E830: Undo number %ld not found"), step);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002517 return;
2518 }
2519
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002520 if (closest == closest_start)
Bram Moolenaar1e607892006-03-13 22:15:53 +00002521 {
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002522 if (step < 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002523 msg(_("Already at oldest change"));
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002524 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002525 msg(_("Already at newest change"));
Bram Moolenaar1e607892006-03-13 22:15:53 +00002526 return;
2527 }
2528
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002529 target = closest_seq;
2530 dosec = FALSE;
Bram Moolenaar730cde92010-06-27 05:18:54 +02002531 dofile = FALSE;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002532 if (step < 0)
Bram Moolenaare38eab22019-12-05 21:50:01 +01002533 above = TRUE; // stop above the header
Bram Moolenaar1e607892006-03-13 22:15:53 +00002534 }
2535
Bram Moolenaar059fd012018-01-31 14:25:53 +01002536target_zero:
Bram Moolenaare38eab22019-12-05 21:50:01 +01002537 // If we found it: Follow the path to go to where we want to be.
Bram Moolenaarce46d932018-01-30 22:46:06 +01002538 if (uhp != NULL || target == 0)
Bram Moolenaar1e607892006-03-13 22:15:53 +00002539 {
2540 /*
2541 * First go up the tree as much as needed.
2542 */
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002543 while (!got_int)
Bram Moolenaar1e607892006-03-13 22:15:53 +00002544 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002545 // Do the change warning now, for the same reason as above.
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002546 change_warning(0);
2547
Bram Moolenaar1e607892006-03-13 22:15:53 +00002548 uhp = curbuf->b_u_curhead;
2549 if (uhp == NULL)
2550 uhp = curbuf->b_u_newhead;
2551 else
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002552 uhp = uhp->uh_next.ptr;
Bram Moolenaarce46d932018-01-30 22:46:06 +01002553 if (uhp == NULL || (target > 0 && uhp->uh_walk != mark)
Bram Moolenaarca003e12006-03-17 23:19:38 +00002554 || (uhp->uh_seq == target && !above))
Bram Moolenaar1e607892006-03-13 22:15:53 +00002555 break;
2556 curbuf->b_u_curhead = uhp;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002557 u_undoredo(TRUE);
Bram Moolenaarce46d932018-01-30 22:46:06 +01002558 if (target > 0)
Bram Moolenaare38eab22019-12-05 21:50:01 +01002559 uhp->uh_walk = nomark; // don't go back down here
Bram Moolenaar1e607892006-03-13 22:15:53 +00002560 }
2561
Bram Moolenaare38eab22019-12-05 21:50:01 +01002562 // When back to origin, redo is not needed.
Bram Moolenaarce46d932018-01-30 22:46:06 +01002563 if (target > 0)
Bram Moolenaar1e607892006-03-13 22:15:53 +00002564 {
Bram Moolenaarce46d932018-01-30 22:46:06 +01002565 /*
2566 * And now go down the tree (redo), branching off where needed.
2567 */
2568 while (!got_int)
2569 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002570 // Do the change warning now, for the same reason as above.
Bram Moolenaarce46d932018-01-30 22:46:06 +01002571 change_warning(0);
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002572
Bram Moolenaarce46d932018-01-30 22:46:06 +01002573 uhp = curbuf->b_u_curhead;
2574 if (uhp == NULL)
2575 break;
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002576
Bram Moolenaare38eab22019-12-05 21:50:01 +01002577 // Go back to the first branch with a mark.
Bram Moolenaarce46d932018-01-30 22:46:06 +01002578 while (uhp->uh_alt_prev.ptr != NULL
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002579 && uhp->uh_alt_prev.ptr->uh_walk == mark)
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002580 uhp = uhp->uh_alt_prev.ptr;
Bram Moolenaarce46d932018-01-30 22:46:06 +01002581
Bram Moolenaare38eab22019-12-05 21:50:01 +01002582 // Find the last branch with a mark, that's the one.
Bram Moolenaarce46d932018-01-30 22:46:06 +01002583 last = uhp;
2584 while (last->uh_alt_next.ptr != NULL
2585 && last->uh_alt_next.ptr->uh_walk == mark)
2586 last = last->uh_alt_next.ptr;
2587 if (last != uhp)
2588 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002589 // Make the used branch the first entry in the list of
2590 // alternatives to make "u" and CTRL-R take this branch.
Bram Moolenaarce46d932018-01-30 22:46:06 +01002591 while (uhp->uh_alt_prev.ptr != NULL)
2592 uhp = uhp->uh_alt_prev.ptr;
2593 if (last->uh_alt_next.ptr != NULL)
2594 last->uh_alt_next.ptr->uh_alt_prev.ptr =
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002595 last->uh_alt_prev.ptr;
Bram Moolenaarce46d932018-01-30 22:46:06 +01002596 last->uh_alt_prev.ptr->uh_alt_next.ptr =
2597 last->uh_alt_next.ptr;
2598 last->uh_alt_prev.ptr = NULL;
2599 last->uh_alt_next.ptr = uhp;
2600 uhp->uh_alt_prev.ptr = last;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002601
Bram Moolenaarce46d932018-01-30 22:46:06 +01002602 if (curbuf->b_u_oldhead == uhp)
2603 curbuf->b_u_oldhead = last;
2604 uhp = last;
2605 if (uhp->uh_next.ptr != NULL)
2606 uhp->uh_next.ptr->uh_prev.ptr = uhp;
2607 }
2608 curbuf->b_u_curhead = uhp;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002609
Bram Moolenaarce46d932018-01-30 22:46:06 +01002610 if (uhp->uh_walk != mark)
Bram Moolenaare38eab22019-12-05 21:50:01 +01002611 break; // must have reached the target
Bram Moolenaar1e607892006-03-13 22:15:53 +00002612
Bram Moolenaare38eab22019-12-05 21:50:01 +01002613 // Stop when going backwards in time and didn't find the exact
2614 // header we were looking for.
Bram Moolenaarce46d932018-01-30 22:46:06 +01002615 if (uhp->uh_seq == target && above)
2616 {
2617 curbuf->b_u_seq_cur = target - 1;
2618 break;
2619 }
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002620
Bram Moolenaarce46d932018-01-30 22:46:06 +01002621 u_undoredo(FALSE);
Bram Moolenaar1e607892006-03-13 22:15:53 +00002622
Bram Moolenaare38eab22019-12-05 21:50:01 +01002623 // Advance "curhead" to below the header we last used. If it
2624 // becomes NULL then we need to set "newhead" to this leaf.
Bram Moolenaarce46d932018-01-30 22:46:06 +01002625 if (uhp->uh_prev.ptr == NULL)
2626 curbuf->b_u_newhead = uhp;
2627 curbuf->b_u_curhead = uhp->uh_prev.ptr;
2628 did_undo = FALSE;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002629
Bram Moolenaare38eab22019-12-05 21:50:01 +01002630 if (uhp->uh_seq == target) // found it!
Bram Moolenaarce46d932018-01-30 22:46:06 +01002631 break;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002632
Bram Moolenaarce46d932018-01-30 22:46:06 +01002633 uhp = uhp->uh_prev.ptr;
2634 if (uhp == NULL || uhp->uh_walk != mark)
2635 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002636 // Need to redo more but can't find it...
Bram Moolenaarce46d932018-01-30 22:46:06 +01002637 internal_error("undo_time()");
2638 break;
2639 }
Bram Moolenaar1e607892006-03-13 22:15:53 +00002640 }
2641 }
2642 }
Bram Moolenaardb552d602006-03-23 22:59:57 +00002643 u_undo_end(did_undo, absolute);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644}
2645
2646/*
2647 * u_undoredo: common code for undo and redo
2648 *
2649 * The lines in the file are replaced by the lines in the entry list at
2650 * curbuf->b_u_curhead. The replaced lines in the file are saved in the entry
2651 * list for the next undo/redo.
Bram Moolenaarca003e12006-03-17 23:19:38 +00002652 *
2653 * When "undo" is TRUE we go up in the tree, when FALSE we go down.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654 */
2655 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002656u_undoredo(int undo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002657{
Bram Moolenaarccae4672019-01-04 15:09:57 +01002658 undoline_T *newarray = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 linenr_T oldsize;
2660 linenr_T newsize;
2661 linenr_T top, bot;
2662 linenr_T lnum;
2663 linenr_T newlnum = MAXLNUM;
Bram Moolenaar4544bd22019-09-08 15:27:21 +02002664 pos_T new_curpos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 long i;
2666 u_entry_T *uep, *nuep;
2667 u_entry_T *newlist = NULL;
2668 int old_flags;
2669 int new_flags;
2670 pos_T namedm[NMARKS];
Bram Moolenaara23ccb82006-02-27 00:08:02 +00002671 visualinfo_T visualinfo;
Bram Moolenaare38eab22019-12-05 21:50:01 +01002672 int empty_buffer; // buffer became empty
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002673 u_header_T *curhead = curbuf->b_u_curhead;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002674
Bram Moolenaare38eab22019-12-05 21:50:01 +01002675 // Don't want autocommands using the undo structures here, they are
2676 // invalid till the end.
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002677 block_autocmds();
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002678
Bram Moolenaarfecb6602007-10-01 20:54:15 +00002679#ifdef U_DEBUG
2680 u_check(FALSE);
2681#endif
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002682 old_flags = curhead->uh_flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683 new_flags = (curbuf->b_changed ? UH_CHANGED : 0) +
2684 ((curbuf->b_ml.ml_flags & ML_EMPTY) ? UH_EMPTYBUF : 0);
2685 setpcmark();
2686
2687 /*
2688 * save marks before undo/redo
2689 */
2690 mch_memmove(namedm, curbuf->b_namedm, sizeof(pos_T) * NMARKS);
Bram Moolenaara23ccb82006-02-27 00:08:02 +00002691 visualinfo = curbuf->b_visual;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692 curbuf->b_op_start.lnum = curbuf->b_ml.ml_line_count;
2693 curbuf->b_op_start.col = 0;
2694 curbuf->b_op_end.lnum = 0;
2695 curbuf->b_op_end.col = 0;
2696
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002697 for (uep = curhead->uh_entry; uep != NULL; uep = nuep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 {
2699 top = uep->ue_top;
2700 bot = uep->ue_bot;
2701 if (bot == 0)
2702 bot = curbuf->b_ml.ml_line_count + 1;
2703 if (top > curbuf->b_ml.ml_line_count || top >= bot
2704 || bot > curbuf->b_ml.ml_line_count + 1)
2705 {
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002706 unblock_autocmds();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002707 iemsg(_("E438: u_undo: line numbers wrong"));
Bram Moolenaar4544bd22019-09-08 15:27:21 +02002708 changed(); // don't want UNCHANGED now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 return;
2710 }
2711
Bram Moolenaar4544bd22019-09-08 15:27:21 +02002712 oldsize = bot - top - 1; // number of lines before undo
2713 newsize = uep->ue_size; // number of lines after undo
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714
Bram Moolenaar4544bd22019-09-08 15:27:21 +02002715 // Decide about the cursor position, depending on what text changed.
2716 // Don't set it yet, it may be invalid if lines are going to be added.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717 if (top < newlnum)
2718 {
Bram Moolenaar4544bd22019-09-08 15:27:21 +02002719 // If the saved cursor is somewhere in this undo block, move it to
2720 // the remembered position. Makes "gwap" put the cursor back
2721 // where it was.
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002722 lnum = curhead->uh_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723 if (lnum >= top && lnum <= top + newsize + 1)
2724 {
Bram Moolenaar4544bd22019-09-08 15:27:21 +02002725 new_curpos = curhead->uh_cursor;
2726 newlnum = new_curpos.lnum - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 }
2728 else
2729 {
Bram Moolenaar4544bd22019-09-08 15:27:21 +02002730 // Use the first line that actually changed. Avoids that
2731 // undoing auto-formatting puts the cursor in the previous
2732 // line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733 for (i = 0; i < newsize && i < oldsize; ++i)
Bram Moolenaarccae4672019-01-04 15:09:57 +01002734 {
2735 char_u *p = ml_get(top + 1 + i);
2736
2737 if (curbuf->b_ml.ml_line_len != uep->ue_array[i].ul_len
Bram Moolenaar964b3742019-05-24 18:54:09 +02002738 || memcmp(uep->ue_array[i].ul_line, p,
2739 curbuf->b_ml.ml_line_len) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740 break;
Bram Moolenaarccae4672019-01-04 15:09:57 +01002741 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742 if (i == newsize && newlnum == MAXLNUM && uep->ue_next == NULL)
2743 {
2744 newlnum = top;
Bram Moolenaar4544bd22019-09-08 15:27:21 +02002745 new_curpos.lnum = newlnum + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002746 }
2747 else if (i < newsize)
2748 {
2749 newlnum = top + i;
Bram Moolenaar4544bd22019-09-08 15:27:21 +02002750 new_curpos.lnum = newlnum + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 }
2752 }
2753 }
2754
2755 empty_buffer = FALSE;
2756
Bram Moolenaar4544bd22019-09-08 15:27:21 +02002757 /*
2758 * Delete the lines between top and bot and save them in newarray.
2759 */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002760 if (oldsize > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002762 if ((newarray = U_ALLOC_LINE(sizeof(undoline_T) * oldsize)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763 {
Bram Moolenaarccae4672019-01-04 15:09:57 +01002764 do_outofmem_msg((long_u)(sizeof(undoline_T) * oldsize));
Bram Moolenaar4544bd22019-09-08 15:27:21 +02002765
2766 // We have messed up the entry list, repair is impossible.
2767 // we have to free the rest of the list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768 while (uep != NULL)
2769 {
2770 nuep = uep->ue_next;
2771 u_freeentry(uep, uep->ue_size);
2772 uep = nuep;
2773 }
2774 break;
2775 }
Bram Moolenaar4544bd22019-09-08 15:27:21 +02002776 // delete backwards, it goes faster in most cases
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777 for (lnum = bot - 1, i = oldsize; --i >= 0; --lnum)
2778 {
Bram Moolenaar4544bd22019-09-08 15:27:21 +02002779 // what can we do when we run out of memory?
Bram Moolenaarccae4672019-01-04 15:09:57 +01002780 if (u_save_line(&newarray[i], lnum) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781 do_outofmem_msg((long_u)0);
Bram Moolenaar4544bd22019-09-08 15:27:21 +02002782 // remember we deleted the last line in the buffer, and a
2783 // dummy empty line will be inserted
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784 if (curbuf->b_ml.ml_line_count == 1)
2785 empty_buffer = TRUE;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002786 ml_delete_flags(lnum, ML_DEL_UNDO);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 }
2788 }
Bram Moolenaar8d343302005-07-12 22:46:17 +00002789 else
2790 newarray = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791
Bram Moolenaar4544bd22019-09-08 15:27:21 +02002792 // make sure the cursor is on a valid line after the deletions
2793 check_cursor_lnum();
2794
2795 /*
2796 * Insert the lines in u_array between top and bot.
2797 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798 if (newsize)
2799 {
2800 for (lnum = top, i = 0; i < newsize; ++i, ++lnum)
2801 {
Bram Moolenaarccae4672019-01-04 15:09:57 +01002802 // If the file is empty, there is an empty line 1 that we
2803 // should get rid of, by replacing it with the new line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804 if (empty_buffer && lnum == 0)
Bram Moolenaar964b3742019-05-24 18:54:09 +02002805 ml_replace_len((linenr_T)1, uep->ue_array[i].ul_line,
2806 uep->ue_array[i].ul_len, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807 else
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002808 ml_append_flags(lnum, uep->ue_array[i].ul_line,
2809 (colnr_T)uep->ue_array[i].ul_len, ML_APPEND_UNDO);
Bram Moolenaarccae4672019-01-04 15:09:57 +01002810 vim_free(uep->ue_array[i].ul_line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811 }
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02002812 vim_free((char_u *)uep->ue_array);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813 }
2814
Bram Moolenaar4544bd22019-09-08 15:27:21 +02002815 // adjust marks
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816 if (oldsize != newsize)
2817 {
2818 mark_adjust(top + 1, top + oldsize, (long)MAXLNUM,
2819 (long)newsize - (long)oldsize);
2820 if (curbuf->b_op_start.lnum > top + oldsize)
2821 curbuf->b_op_start.lnum += newsize - oldsize;
2822 if (curbuf->b_op_end.lnum > top + oldsize)
2823 curbuf->b_op_end.lnum += newsize - oldsize;
2824 }
2825
2826 changed_lines(top + 1, 0, bot, newsize - oldsize);
2827
Bram Moolenaar4544bd22019-09-08 15:27:21 +02002828 // set '[ and '] mark
Bram Moolenaar071d4272004-06-13 20:20:40 +00002829 if (top + 1 < curbuf->b_op_start.lnum)
2830 curbuf->b_op_start.lnum = top + 1;
2831 if (newsize == 0 && top + 1 > curbuf->b_op_end.lnum)
2832 curbuf->b_op_end.lnum = top + 1;
2833 else if (top + newsize > curbuf->b_op_end.lnum)
2834 curbuf->b_op_end.lnum = top + newsize;
2835
2836 u_newcount += newsize;
2837 u_oldcount += oldsize;
2838 uep->ue_size = oldsize;
2839 uep->ue_array = newarray;
2840 uep->ue_bot = top + newsize + 1;
2841
2842 /*
2843 * insert this entry in front of the new entry list
2844 */
2845 nuep = uep->ue_next;
2846 uep->ue_next = newlist;
2847 newlist = uep;
2848 }
2849
Bram Moolenaar4544bd22019-09-08 15:27:21 +02002850 // Set the cursor to the desired position. Check that the line is valid.
2851 curwin->w_cursor = new_curpos;
2852 check_cursor_lnum();
2853
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002854 curhead->uh_entry = newlist;
2855 curhead->uh_flags = new_flags;
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01002856 if ((old_flags & UH_EMPTYBUF) && BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 curbuf->b_ml.ml_flags |= ML_EMPTY;
2858 if (old_flags & UH_CHANGED)
2859 changed();
2860 else
Bram Moolenaar009b2592004-10-24 19:18:58 +00002861#ifdef FEAT_NETBEANS_INTG
Bram Moolenaare38eab22019-12-05 21:50:01 +01002862 // per netbeans undo rules, keep it as modified
Bram Moolenaar009b2592004-10-24 19:18:58 +00002863 if (!isNetbeansModified(curbuf))
2864#endif
Bram Moolenaarc024b462019-06-08 18:07:21 +02002865 unchanged(curbuf, FALSE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866
2867 /*
2868 * restore marks from before undo/redo
2869 */
2870 for (i = 0; i < NMARKS; ++i)
Bram Moolenaarf65aad52015-02-17 13:43:40 +01002871 {
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002872 if (curhead->uh_namedm[i].lnum != 0)
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002873 curbuf->b_namedm[i] = curhead->uh_namedm[i];
Bram Moolenaarf65aad52015-02-17 13:43:40 +01002874 if (namedm[i].lnum != 0)
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002875 curhead->uh_namedm[i] = namedm[i];
Bram Moolenaarf65aad52015-02-17 13:43:40 +01002876 else
2877 curhead->uh_namedm[i].lnum = 0;
2878 }
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002879 if (curhead->uh_visual.vi_start.lnum != 0)
Bram Moolenaara23ccb82006-02-27 00:08:02 +00002880 {
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002881 curbuf->b_visual = curhead->uh_visual;
2882 curhead->uh_visual = visualinfo;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00002883 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002884
2885 /*
2886 * If the cursor is only off by one line, put it at the same position as
2887 * before starting the change (for the "o" command).
2888 * Otherwise the cursor should go to the first undone line.
2889 */
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002890 if (curhead->uh_cursor.lnum + 1 == curwin->w_cursor.lnum
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 && curwin->w_cursor.lnum > 1)
2892 --curwin->w_cursor.lnum;
Bram Moolenaar0390ded2010-08-07 12:54:12 +02002893 if (curwin->w_cursor.lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894 {
Bram Moolenaar0390ded2010-08-07 12:54:12 +02002895 if (curhead->uh_cursor.lnum == curwin->w_cursor.lnum)
2896 {
2897 curwin->w_cursor.col = curhead->uh_cursor.col;
Bram Moolenaar0390ded2010-08-07 12:54:12 +02002898 if (virtual_active() && curhead->uh_cursor_vcol >= 0)
2899 coladvance((colnr_T)curhead->uh_cursor_vcol);
2900 else
2901 curwin->w_cursor.coladd = 0;
Bram Moolenaar0390ded2010-08-07 12:54:12 +02002902 }
2903 else
2904 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002906 else
2907 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002908 // We get here with the current cursor line being past the end (eg
2909 // after adding lines at the end of the file, and then undoing it).
2910 // check_cursor() will move the cursor to the last line. Move it to
2911 // the first column here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002912 curwin->w_cursor.col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914 }
2915
Bram Moolenaare38eab22019-12-05 21:50:01 +01002916 // Make sure the cursor is on an existing line and column.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917 check_cursor();
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002918
Bram Moolenaare38eab22019-12-05 21:50:01 +01002919 // Remember where we are for "g-" and ":earlier 10s".
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002920 curbuf->b_u_seq_cur = curhead->uh_seq;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002921 if (undo)
Bram Moolenaar80eaddd2017-11-11 23:37:08 +01002922 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002923 // We are below the previous undo. However, to make ":earlier 1s"
2924 // work we compute this as being just above the just undone change.
Bram Moolenaar80eaddd2017-11-11 23:37:08 +01002925 if (curhead->uh_next.ptr != NULL)
2926 curbuf->b_u_seq_cur = curhead->uh_next.ptr->uh_seq;
2927 else
2928 curbuf->b_u_seq_cur = 0;
2929 }
Bram Moolenaarca003e12006-03-17 23:19:38 +00002930
Bram Moolenaare38eab22019-12-05 21:50:01 +01002931 // Remember where we are for ":earlier 1f" and ":later 1f".
Bram Moolenaar730cde92010-06-27 05:18:54 +02002932 if (curhead->uh_save_nr != 0)
2933 {
2934 if (undo)
2935 curbuf->b_u_save_nr_cur = curhead->uh_save_nr - 1;
2936 else
2937 curbuf->b_u_save_nr_cur = curhead->uh_save_nr;
2938 }
2939
Bram Moolenaare38eab22019-12-05 21:50:01 +01002940 // The timestamp can be the same for multiple changes, just use the one of
2941 // the undone/redone change.
Bram Moolenaara800b422010-06-27 01:15:55 +02002942 curbuf->b_u_time_cur = curhead->uh_time;
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002943
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002944 unblock_autocmds();
Bram Moolenaarfecb6602007-10-01 20:54:15 +00002945#ifdef U_DEBUG
2946 u_check(FALSE);
2947#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948}
2949
2950/*
2951 * If we deleted or added lines, report the number of less/more lines.
2952 * Otherwise, report the number of changes (this may be incorrect
2953 * in some cases, but it's better than nothing).
2954 */
2955 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01002956u_undo_end(
Bram Moolenaare38eab22019-12-05 21:50:01 +01002957 int did_undo, // just did an undo
2958 int absolute) // used ":undo N"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002959{
Bram Moolenaar89d40322006-08-29 15:30:07 +00002960 char *msgstr;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002961 u_header_T *uhp;
2962 char_u msgbuf[80];
Bram Moolenaar1e607892006-03-13 22:15:53 +00002963
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964#ifdef FEAT_FOLDING
2965 if ((fdo_flags & FDO_UNDO) && KeyTyped)
2966 foldOpenCursor();
2967#endif
Bram Moolenaar1e607892006-03-13 22:15:53 +00002968
Bram Moolenaare38eab22019-12-05 21:50:01 +01002969 if (global_busy // no messages now, wait until global is finished
2970 || !messaging()) // 'lazyredraw' set, don't do messages now
Bram Moolenaar1e607892006-03-13 22:15:53 +00002971 return;
2972
2973 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2974 --u_newcount;
2975
2976 u_oldcount -= u_newcount;
2977 if (u_oldcount == -1)
Bram Moolenaar89d40322006-08-29 15:30:07 +00002978 msgstr = N_("more line");
Bram Moolenaar1e607892006-03-13 22:15:53 +00002979 else if (u_oldcount < 0)
Bram Moolenaar89d40322006-08-29 15:30:07 +00002980 msgstr = N_("more lines");
Bram Moolenaar1e607892006-03-13 22:15:53 +00002981 else if (u_oldcount == 1)
Bram Moolenaar89d40322006-08-29 15:30:07 +00002982 msgstr = N_("line less");
Bram Moolenaar1e607892006-03-13 22:15:53 +00002983 else if (u_oldcount > 1)
Bram Moolenaar89d40322006-08-29 15:30:07 +00002984 msgstr = N_("fewer lines");
Bram Moolenaar1e607892006-03-13 22:15:53 +00002985 else
2986 {
2987 u_oldcount = u_newcount;
2988 if (u_newcount == 1)
Bram Moolenaar89d40322006-08-29 15:30:07 +00002989 msgstr = N_("change");
Bram Moolenaar1e607892006-03-13 22:15:53 +00002990 else
Bram Moolenaar89d40322006-08-29 15:30:07 +00002991 msgstr = N_("changes");
Bram Moolenaar1e607892006-03-13 22:15:53 +00002992 }
2993
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002994 if (curbuf->b_u_curhead != NULL)
Bram Moolenaar433f7c82006-03-21 21:29:36 +00002995 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01002996 // For ":undo N" we prefer a "after #N" message.
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002997 if (absolute && curbuf->b_u_curhead->uh_next.ptr != NULL)
Bram Moolenaardb552d602006-03-23 22:59:57 +00002998 {
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002999 uhp = curbuf->b_u_curhead->uh_next.ptr;
Bram Moolenaardb552d602006-03-23 22:59:57 +00003000 did_undo = FALSE;
3001 }
3002 else if (did_undo)
Bram Moolenaar433f7c82006-03-21 21:29:36 +00003003 uhp = curbuf->b_u_curhead;
3004 else
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003005 uhp = curbuf->b_u_curhead->uh_next.ptr;
Bram Moolenaar433f7c82006-03-21 21:29:36 +00003006 }
Bram Moolenaar1e607892006-03-13 22:15:53 +00003007 else
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003008 uhp = curbuf->b_u_newhead;
Bram Moolenaar1e607892006-03-13 22:15:53 +00003009
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003010 if (uhp == NULL)
3011 *msgbuf = NUL;
3012 else
Bram Moolenaar52410572019-10-27 05:12:45 +01003013 add_time(msgbuf, sizeof(msgbuf), uhp->uh_time);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003014
Bram Moolenaarb2c03502010-07-02 20:20:09 +02003015#ifdef FEAT_CONCEAL
3016 {
3017 win_T *wp;
3018
3019 FOR_ALL_WINDOWS(wp)
3020 {
Bram Moolenaarf5963f72010-07-23 22:10:27 +02003021 if (wp->w_buffer == curbuf && wp->w_p_cole > 0)
Bram Moolenaarb2c03502010-07-02 20:20:09 +02003022 redraw_win_later(wp, NOT_VALID);
3023 }
3024 }
3025#endif
3026
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003027 smsg_attr_keep(0, _("%ld %s; %s #%ld %s"),
Bram Moolenaarca003e12006-03-17 23:19:38 +00003028 u_oldcount < 0 ? -u_oldcount : u_oldcount,
Bram Moolenaar89d40322006-08-29 15:30:07 +00003029 _(msgstr),
Bram Moolenaar433f7c82006-03-21 21:29:36 +00003030 did_undo ? _("before") : _("after"),
3031 uhp == NULL ? 0L : uhp->uh_seq,
3032 msgbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033}
3034
3035/*
3036 * u_sync: stop adding to the current entry list
3037 */
3038 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003039u_sync(
Bram Moolenaare38eab22019-12-05 21:50:01 +01003040 int force) // Also sync when no_u_sync is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041{
Bram Moolenaare38eab22019-12-05 21:50:01 +01003042 // Skip it when already synced or syncing is disabled.
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003043 if (curbuf->b_u_synced || (!force && no_u_sync > 0))
3044 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
Bram Moolenaar5c6dbcb2017-08-30 22:00:20 +02003046 if (p_imst == IM_ON_THE_SPOT && im_is_preediting())
Bram Moolenaare38eab22019-12-05 21:50:01 +01003047 return; // XIM is busy, don't break an undo sequence
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048#endif
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01003049 if (get_undolevel() < 0)
Bram Moolenaare38eab22019-12-05 21:50:01 +01003050 curbuf->b_u_synced = TRUE; // no entries, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051 else
3052 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003053 u_getbot(); // compute ue_bot of previous u_save
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054 curbuf->b_u_curhead = NULL;
3055 }
3056}
3057
3058/*
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003059 * ":undolist": List the leafs of the undo tree
3060 */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003061 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003062ex_undolist(exarg_T *eap UNUSED)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003063{
3064 garray_T ga;
3065 u_header_T *uhp;
3066 int mark;
3067 int nomark;
3068 int changes = 1;
3069 int i;
3070
3071 /*
3072 * 1: walk the tree to find all leafs, put the info in "ga".
3073 * 2: sort the lines
3074 * 3: display the list
3075 */
3076 mark = ++lastmark;
3077 nomark = ++lastmark;
3078 ga_init2(&ga, (int)sizeof(char *), 20);
3079
3080 uhp = curbuf->b_u_oldhead;
3081 while (uhp != NULL)
3082 {
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003083 if (uhp->uh_prev.ptr == NULL && uhp->uh_walk != nomark
Bram Moolenaarca003e12006-03-17 23:19:38 +00003084 && uhp->uh_walk != mark)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003085 {
3086 if (ga_grow(&ga, 1) == FAIL)
3087 break;
Bram Moolenaarea391762018-04-08 13:07:22 +02003088 vim_snprintf((char *)IObuff, IOSIZE, "%6ld %7d ",
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003089 uhp->uh_seq, changes);
Bram Moolenaar52410572019-10-27 05:12:45 +01003090 add_time(IObuff + STRLEN(IObuff), IOSIZE - STRLEN(IObuff),
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003091 uhp->uh_time);
Bram Moolenaara800b422010-06-27 01:15:55 +02003092 if (uhp->uh_save_nr > 0)
3093 {
Bram Moolenaardba01a02010-11-03 19:32:42 +01003094 while (STRLEN(IObuff) < 33)
Bram Moolenaara800b422010-06-27 01:15:55 +02003095 STRCAT(IObuff, " ");
3096 vim_snprintf_add((char *)IObuff, IOSIZE,
3097 " %3ld", uhp->uh_save_nr);
3098 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003099 ((char_u **)(ga.ga_data))[ga.ga_len++] = vim_strsave(IObuff);
3100 }
3101
3102 uhp->uh_walk = mark;
3103
Bram Moolenaare38eab22019-12-05 21:50:01 +01003104 // go down in the tree if we haven't been there
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003105 if (uhp->uh_prev.ptr != NULL && uhp->uh_prev.ptr->uh_walk != nomark
3106 && uhp->uh_prev.ptr->uh_walk != mark)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003107 {
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003108 uhp = uhp->uh_prev.ptr;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003109 ++changes;
3110 }
3111
Bram Moolenaare38eab22019-12-05 21:50:01 +01003112 // go to alternate branch if we haven't been there
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003113 else if (uhp->uh_alt_next.ptr != NULL
3114 && uhp->uh_alt_next.ptr->uh_walk != nomark
3115 && uhp->uh_alt_next.ptr->uh_walk != mark)
3116 uhp = uhp->uh_alt_next.ptr;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003117
Bram Moolenaare38eab22019-12-05 21:50:01 +01003118 // go up in the tree if we haven't been there and we are at the
3119 // start of alternate branches
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003120 else if (uhp->uh_next.ptr != NULL && uhp->uh_alt_prev.ptr == NULL
3121 && uhp->uh_next.ptr->uh_walk != nomark
3122 && uhp->uh_next.ptr->uh_walk != mark)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003123 {
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003124 uhp = uhp->uh_next.ptr;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003125 --changes;
3126 }
3127
3128 else
3129 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003130 // need to backtrack; mark this node as done
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003131 uhp->uh_walk = nomark;
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003132 if (uhp->uh_alt_prev.ptr != NULL)
3133 uhp = uhp->uh_alt_prev.ptr;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003134 else
3135 {
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003136 uhp = uhp->uh_next.ptr;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003137 --changes;
3138 }
3139 }
3140 }
3141
3142 if (ga.ga_len == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003143 msg(_("Nothing to undo"));
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003144 else
3145 {
3146 sort_strings((char_u **)ga.ga_data, ga.ga_len);
3147
3148 msg_start();
Bram Moolenaar32526b32019-01-19 17:43:09 +01003149 msg_puts_attr(_("number changes when saved"),
Bram Moolenaar8820b482017-03-16 17:23:31 +01003150 HL_ATTR(HLF_T));
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003151 for (i = 0; i < ga.ga_len && !got_int; ++i)
3152 {
3153 msg_putchar('\n');
3154 if (got_int)
3155 break;
Bram Moolenaar32526b32019-01-19 17:43:09 +01003156 msg_puts(((char **)ga.ga_data)[i]);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00003157 }
3158 msg_end();
3159
3160 ga_clear_strings(&ga);
3161 }
3162}
3163
3164/*
Bram Moolenaare224ffa2006-03-01 00:01:28 +00003165 * ":undojoin": continue adding to the last entry list
3166 */
Bram Moolenaare224ffa2006-03-01 00:01:28 +00003167 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003168ex_undojoin(exarg_T *eap UNUSED)
Bram Moolenaare224ffa2006-03-01 00:01:28 +00003169{
Bram Moolenaare224ffa2006-03-01 00:01:28 +00003170 if (curbuf->b_u_newhead == NULL)
Bram Moolenaare38eab22019-12-05 21:50:01 +01003171 return; // nothing changed before
Bram Moolenaar57657d82006-04-21 22:12:41 +00003172 if (curbuf->b_u_curhead != NULL)
3173 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003174 emsg(_("E790: undojoin is not allowed after undo"));
Bram Moolenaar57657d82006-04-21 22:12:41 +00003175 return;
3176 }
3177 if (!curbuf->b_u_synced)
Bram Moolenaare38eab22019-12-05 21:50:01 +01003178 return; // already unsynced
Bram Moolenaarf5a2fd82013-11-06 05:26:15 +01003179 if (get_undolevel() < 0)
Bram Moolenaare38eab22019-12-05 21:50:01 +01003180 return; // no entries, nothing to do
Bram Moolenaare224ffa2006-03-01 00:01:28 +00003181 else
Bram Moolenaare38eab22019-12-05 21:50:01 +01003182 // Append next change to the last entry
Bram Moolenaar5e4e1b12017-01-17 22:09:45 +01003183 curbuf->b_u_synced = FALSE;
Bram Moolenaare224ffa2006-03-01 00:01:28 +00003184}
3185
3186/*
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003187 * Called after writing or reloading the file and setting b_changed to FALSE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188 * Now an undo means that the buffer is modified.
3189 */
3190 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003191u_unchanged(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192{
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00003193 u_unch_branch(buf->b_u_oldhead);
3194 buf->b_did_warn = FALSE;
3195}
3196
Bram Moolenaar730cde92010-06-27 05:18:54 +02003197/*
Bram Moolenaarf9bb7342010-08-04 14:29:54 +02003198 * After reloading a buffer which was saved for 'undoreload': Find the first
3199 * line that was changed and set the cursor there.
3200 */
3201 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003202u_find_first_changed(void)
Bram Moolenaarf9bb7342010-08-04 14:29:54 +02003203{
3204 u_header_T *uhp = curbuf->b_u_newhead;
3205 u_entry_T *uep;
3206 linenr_T lnum;
3207
3208 if (curbuf->b_u_curhead != NULL || uhp == NULL)
Bram Moolenaare38eab22019-12-05 21:50:01 +01003209 return; // undid something in an autocmd?
Bram Moolenaarf9bb7342010-08-04 14:29:54 +02003210
Bram Moolenaare38eab22019-12-05 21:50:01 +01003211 // Check that the last undo block was for the whole file.
Bram Moolenaarf9bb7342010-08-04 14:29:54 +02003212 uep = uhp->uh_entry;
3213 if (uep->ue_top != 0 || uep->ue_bot != 0)
3214 return;
3215
3216 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count
3217 && lnum <= uep->ue_size; ++lnum)
Bram Moolenaarccae4672019-01-04 15:09:57 +01003218 {
3219 char_u *p = ml_get_buf(curbuf, lnum, FALSE);
3220
3221 if (uep->ue_array[lnum - 1].ul_len != curbuf->b_ml.ml_line_len
3222 || memcmp(p, uep->ue_array[lnum - 1].ul_line, uep->ue_array[lnum - 1].ul_len) != 0)
Bram Moolenaarf9bb7342010-08-04 14:29:54 +02003223 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003224 CLEAR_POS(&(uhp->uh_cursor));
Bram Moolenaarf9bb7342010-08-04 14:29:54 +02003225 uhp->uh_cursor.lnum = lnum;
3226 return;
3227 }
Bram Moolenaarccae4672019-01-04 15:09:57 +01003228 }
Bram Moolenaarf9bb7342010-08-04 14:29:54 +02003229 if (curbuf->b_ml.ml_line_count != uep->ue_size)
3230 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003231 // lines added or deleted at the end, put the cursor there
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01003232 CLEAR_POS(&(uhp->uh_cursor));
Bram Moolenaarf9bb7342010-08-04 14:29:54 +02003233 uhp->uh_cursor.lnum = lnum;
3234 }
3235}
3236
3237/*
Bram Moolenaar730cde92010-06-27 05:18:54 +02003238 * Increase the write count, store it in the last undo header, what would be
3239 * used for "u".
3240 */
3241 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003242u_update_save_nr(buf_T *buf)
Bram Moolenaar730cde92010-06-27 05:18:54 +02003243{
3244 u_header_T *uhp;
3245
3246 ++buf->b_u_save_nr_last;
3247 buf->b_u_save_nr_cur = buf->b_u_save_nr_last;
3248 uhp = buf->b_u_curhead;
3249 if (uhp != NULL)
3250 uhp = uhp->uh_next.ptr;
3251 else
3252 uhp = buf->b_u_newhead;
3253 if (uhp != NULL)
3254 uhp->uh_save_nr = buf->b_u_save_nr_last;
3255}
3256
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00003257 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003258u_unch_branch(u_header_T *uhp)
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00003259{
Bram Moolenaar1e607892006-03-13 22:15:53 +00003260 u_header_T *uh;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003262 for (uh = uhp; uh != NULL; uh = uh->uh_prev.ptr)
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00003263 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264 uh->uh_flags |= UH_CHANGED;
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003265 if (uh->uh_alt_next.ptr != NULL)
Bram Moolenaare38eab22019-12-05 21:50:01 +01003266 u_unch_branch(uh->uh_alt_next.ptr); // recursive
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00003267 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268}
3269
3270/*
3271 * Get pointer to last added entry.
3272 * If it's not valid, give an error message and return NULL.
3273 */
3274 static u_entry_T *
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003275u_get_headentry(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003276{
3277 if (curbuf->b_u_newhead == NULL || curbuf->b_u_newhead->uh_entry == NULL)
3278 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003279 iemsg(_("E439: undo list corrupt"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003280 return NULL;
3281 }
3282 return curbuf->b_u_newhead->uh_entry;
3283}
3284
3285/*
3286 * u_getbot(): compute the line number of the previous u_save
3287 * It is called only when b_u_synced is FALSE.
3288 */
3289 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003290u_getbot(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291{
3292 u_entry_T *uep;
3293 linenr_T extra;
3294
Bram Moolenaare38eab22019-12-05 21:50:01 +01003295 uep = u_get_headentry(); // check for corrupt undo list
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296 if (uep == NULL)
3297 return;
3298
3299 uep = curbuf->b_u_newhead->uh_getbot_entry;
3300 if (uep != NULL)
3301 {
3302 /*
3303 * the new ue_bot is computed from the number of lines that has been
3304 * inserted (0 - deleted) since calling u_save. This is equal to the
3305 * old line count subtracted from the current line count.
3306 */
3307 extra = curbuf->b_ml.ml_line_count - uep->ue_lcount;
3308 uep->ue_bot = uep->ue_top + uep->ue_size + 1 + extra;
3309 if (uep->ue_bot < 1 || uep->ue_bot > curbuf->b_ml.ml_line_count)
3310 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003311 iemsg(_("E440: undo line missing"));
Bram Moolenaare38eab22019-12-05 21:50:01 +01003312 uep->ue_bot = uep->ue_top + 1; // assume all lines deleted, will
3313 // get all the old lines back
3314 // without deleting the current
3315 // ones
Bram Moolenaar071d4272004-06-13 20:20:40 +00003316 }
3317
3318 curbuf->b_u_newhead->uh_getbot_entry = NULL;
3319 }
3320
3321 curbuf->b_u_synced = TRUE;
3322}
3323
3324/*
Bram Moolenaarfecb6602007-10-01 20:54:15 +00003325 * Free one header "uhp" and its entry list and adjust the pointers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326 */
3327 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003328u_freeheader(
3329 buf_T *buf,
3330 u_header_T *uhp,
Bram Moolenaare38eab22019-12-05 21:50:01 +01003331 u_header_T **uhpp) // if not NULL reset when freeing this header
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332{
Bram Moolenaarfecb6602007-10-01 20:54:15 +00003333 u_header_T *uhap;
3334
Bram Moolenaare38eab22019-12-05 21:50:01 +01003335 // When there is an alternate redo list free that branch completely,
3336 // because we can never go there.
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003337 if (uhp->uh_alt_next.ptr != NULL)
3338 u_freebranch(buf, uhp->uh_alt_next.ptr, uhpp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003340 if (uhp->uh_alt_prev.ptr != NULL)
3341 uhp->uh_alt_prev.ptr->uh_alt_next.ptr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003342
Bram Moolenaare38eab22019-12-05 21:50:01 +01003343 // Update the links in the list to remove the header.
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003344 if (uhp->uh_next.ptr == NULL)
3345 buf->b_u_oldhead = uhp->uh_prev.ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346 else
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003347 uhp->uh_next.ptr->uh_prev.ptr = uhp->uh_prev.ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003349 if (uhp->uh_prev.ptr == NULL)
3350 buf->b_u_newhead = uhp->uh_next.ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 else
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003352 for (uhap = uhp->uh_prev.ptr; uhap != NULL;
3353 uhap = uhap->uh_alt_next.ptr)
3354 uhap->uh_next.ptr = uhp->uh_next.ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355
Bram Moolenaar1e607892006-03-13 22:15:53 +00003356 u_freeentries(buf, uhp, uhpp);
3357}
3358
3359/*
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00003360 * Free an alternate branch and any following alternate branches.
Bram Moolenaar1e607892006-03-13 22:15:53 +00003361 */
3362 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003363u_freebranch(
3364 buf_T *buf,
3365 u_header_T *uhp,
Bram Moolenaare38eab22019-12-05 21:50:01 +01003366 u_header_T **uhpp) // if not NULL reset when freeing this header
Bram Moolenaar1e607892006-03-13 22:15:53 +00003367{
3368 u_header_T *tofree, *next;
3369
Bram Moolenaare38eab22019-12-05 21:50:01 +01003370 // If this is the top branch we may need to use u_freeheader() to update
3371 // all the pointers.
Bram Moolenaar07d06772007-11-10 21:51:15 +00003372 if (uhp == buf->b_u_oldhead)
3373 {
Bram Moolenaaraa887322013-11-07 03:04:11 +01003374 while (buf->b_u_oldhead != NULL)
3375 u_freeheader(buf, buf->b_u_oldhead, uhpp);
Bram Moolenaar07d06772007-11-10 21:51:15 +00003376 return;
3377 }
3378
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003379 if (uhp->uh_alt_prev.ptr != NULL)
3380 uhp->uh_alt_prev.ptr->uh_alt_next.ptr = NULL;
Bram Moolenaar1e607892006-03-13 22:15:53 +00003381
3382 next = uhp;
3383 while (next != NULL)
3384 {
3385 tofree = next;
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003386 if (tofree->uh_alt_next.ptr != NULL)
Bram Moolenaare38eab22019-12-05 21:50:01 +01003387 u_freebranch(buf, tofree->uh_alt_next.ptr, uhpp); // recursive
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003388 next = tofree->uh_prev.ptr;
Bram Moolenaar1e607892006-03-13 22:15:53 +00003389 u_freeentries(buf, tofree, uhpp);
3390 }
3391}
3392
3393/*
3394 * Free all the undo entries for one header and the header itself.
3395 * This means that "uhp" is invalid when returning.
3396 */
3397 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003398u_freeentries(
3399 buf_T *buf,
3400 u_header_T *uhp,
Bram Moolenaare38eab22019-12-05 21:50:01 +01003401 u_header_T **uhpp) // if not NULL reset when freeing this header
Bram Moolenaar1e607892006-03-13 22:15:53 +00003402{
3403 u_entry_T *uep, *nuep;
3404
Bram Moolenaare38eab22019-12-05 21:50:01 +01003405 // Check for pointers to the header that become invalid now.
Bram Moolenaar1e607892006-03-13 22:15:53 +00003406 if (buf->b_u_curhead == uhp)
3407 buf->b_u_curhead = NULL;
Bram Moolenaarfecb6602007-10-01 20:54:15 +00003408 if (buf->b_u_newhead == uhp)
Bram Moolenaare38eab22019-12-05 21:50:01 +01003409 buf->b_u_newhead = NULL; // freeing the newest entry
Bram Moolenaar1e607892006-03-13 22:15:53 +00003410 if (uhpp != NULL && uhp == *uhpp)
3411 *uhpp = NULL;
3412
3413 for (uep = uhp->uh_entry; uep != NULL; uep = nuep)
3414 {
3415 nuep = uep->ue_next;
3416 u_freeentry(uep, uep->ue_size);
3417 }
3418
Bram Moolenaarfecb6602007-10-01 20:54:15 +00003419#ifdef U_DEBUG
3420 uhp->uh_magic = 0;
3421#endif
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02003422 vim_free((char_u *)uhp);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003423 --buf->b_u_numhead;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424}
3425
3426/*
3427 * free entry 'uep' and 'n' lines in uep->ue_array[]
3428 */
3429 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003430u_freeentry(u_entry_T *uep, long n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431{
Bram Moolenaar8d343302005-07-12 22:46:17 +00003432 while (n > 0)
Bram Moolenaarccae4672019-01-04 15:09:57 +01003433 vim_free(uep->ue_array[--n].ul_line);
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02003434 vim_free((char_u *)uep->ue_array);
Bram Moolenaarfecb6602007-10-01 20:54:15 +00003435#ifdef U_DEBUG
3436 uep->ue_magic = 0;
3437#endif
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02003438 vim_free((char_u *)uep);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439}
3440
3441/*
3442 * invalidate the undo buffer; called when storage has already been released
3443 */
3444 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003445u_clearall(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003446{
3447 buf->b_u_newhead = buf->b_u_oldhead = buf->b_u_curhead = NULL;
3448 buf->b_u_synced = TRUE;
3449 buf->b_u_numhead = 0;
Bram Moolenaarccae4672019-01-04 15:09:57 +01003450 buf->b_u_line_ptr.ul_line = NULL;
3451 buf->b_u_line_ptr.ul_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452 buf->b_u_line_lnum = 0;
3453}
3454
3455/*
Bram Moolenaarccae4672019-01-04 15:09:57 +01003456 * Save the line "lnum" for the "U" command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457 */
Bram Moolenaar5843f5f2019-08-20 20:13:45 +02003458 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003459u_saveline(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003460{
Bram Moolenaare38eab22019-12-05 21:50:01 +01003461 if (lnum == curbuf->b_u_line_lnum) // line is already saved
Bram Moolenaar071d4272004-06-13 20:20:40 +00003462 return;
Bram Moolenaare38eab22019-12-05 21:50:01 +01003463 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count) // should never happen
Bram Moolenaar071d4272004-06-13 20:20:40 +00003464 return;
3465 u_clearline();
3466 curbuf->b_u_line_lnum = lnum;
3467 if (curwin->w_cursor.lnum == lnum)
3468 curbuf->b_u_line_colnr = curwin->w_cursor.col;
3469 else
3470 curbuf->b_u_line_colnr = 0;
Bram Moolenaarccae4672019-01-04 15:09:57 +01003471 if (u_save_line(&curbuf->b_u_line_ptr, lnum) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472 do_outofmem_msg((long_u)0);
3473}
3474
3475/*
3476 * clear the line saved for the "U" command
3477 * (this is used externally for crossing a line while in insert mode)
3478 */
3479 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003480u_clearline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481{
Bram Moolenaarccae4672019-01-04 15:09:57 +01003482 if (curbuf->b_u_line_ptr.ul_line != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483 {
Bram Moolenaarccae4672019-01-04 15:09:57 +01003484 VIM_CLEAR(curbuf->b_u_line_ptr.ul_line);
3485 curbuf->b_u_line_ptr.ul_len = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003486 curbuf->b_u_line_lnum = 0;
3487 }
3488}
3489
3490/*
3491 * Implementation of the "U" command.
3492 * Differentiation from vi: "U" can be undone with the next "U".
3493 * We also allow the cursor to be in another line.
Bram Moolenaard04b7502010-07-08 22:27:55 +02003494 * Careful: may trigger autocommands that reload the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495 */
3496 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003497u_undoline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498{
Bram Moolenaarccae4672019-01-04 15:09:57 +01003499 colnr_T t;
3500 undoline_T oldp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501
3502 if (undo_off)
3503 return;
3504
Bram Moolenaarccae4672019-01-04 15:09:57 +01003505 if (curbuf->b_u_line_ptr.ul_line == NULL
Bram Moolenaare3300c82008-02-13 14:21:38 +00003506 || curbuf->b_u_line_lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003507 {
3508 beep_flush();
3509 return;
3510 }
Bram Moolenaare3300c82008-02-13 14:21:38 +00003511
Bram Moolenaarccae4672019-01-04 15:09:57 +01003512 // first save the line for the 'u' command
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513 if (u_savecommon(curbuf->b_u_line_lnum - 1,
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003514 curbuf->b_u_line_lnum + 1, (linenr_T)0, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003515 return;
Bram Moolenaarccae4672019-01-04 15:09:57 +01003516 if (u_save_line(&oldp, curbuf->b_u_line_lnum) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517 {
3518 do_outofmem_msg((long_u)0);
3519 return;
3520 }
Bram Moolenaarccae4672019-01-04 15:09:57 +01003521 ml_replace_len(curbuf->b_u_line_lnum, curbuf->b_u_line_ptr.ul_line, curbuf->b_u_line_ptr.ul_len, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003522 changed_bytes(curbuf->b_u_line_lnum, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003523 curbuf->b_u_line_ptr = oldp;
3524
3525 t = curbuf->b_u_line_colnr;
3526 if (curwin->w_cursor.lnum == curbuf->b_u_line_lnum)
3527 curbuf->b_u_line_colnr = curwin->w_cursor.col;
3528 curwin->w_cursor.col = t;
3529 curwin->w_cursor.lnum = curbuf->b_u_line_lnum;
Bram Moolenaare3300c82008-02-13 14:21:38 +00003530 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003531}
3532
3533/*
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003534 * Free all allocated memory blocks for the buffer 'buf'.
3535 */
3536 void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003537u_blockfree(buf_T *buf)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003538{
Bram Moolenaar1e607892006-03-13 22:15:53 +00003539 while (buf->b_u_oldhead != NULL)
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00003540 u_freeheader(buf, buf->b_u_oldhead, NULL);
Bram Moolenaarccae4672019-01-04 15:09:57 +01003541 vim_free(buf->b_u_line_ptr.ul_line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542}
3543
3544/*
3545 * Check if the 'modified' flag is set, or 'ff' has changed (only need to
3546 * check the first character, because it can only be "dos", "unix" or "mac").
3547 * "nofile" and "scratch" type buffers are considered to always be unchanged.
Bram Moolenaarf405c8f2017-12-09 19:51:49 +01003548 * Also considers a buffer changed when a terminal window contains a running
3549 * job.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550 */
3551 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003552bufIsChanged(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553{
Bram Moolenaareb44a682017-08-03 22:44:55 +02003554#ifdef FEAT_TERMINAL
3555 if (term_job_running(buf->b_term))
3556 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557#endif
Bram Moolenaarf405c8f2017-12-09 19:51:49 +01003558 return bufIsChangedNotTerm(buf);
3559}
3560
3561/*
Bram Moolenaara84a3dd2019-03-25 22:21:24 +01003562 * Return TRUE if any buffer has changes. Also buffers that are not written.
3563 */
3564 int
3565anyBufIsChanged(void)
3566{
3567 buf_T *buf;
3568
3569 FOR_ALL_BUFFERS(buf)
3570 if (bufIsChanged(buf))
3571 return TRUE;
Bram Moolenaard6c3f1f2019-03-26 00:31:21 +01003572 return FALSE;
Bram Moolenaara84a3dd2019-03-25 22:21:24 +01003573}
3574
3575/*
Bram Moolenaarf405c8f2017-12-09 19:51:49 +01003576 * Like bufIsChanged() but ignoring a terminal window.
3577 */
3578 int
3579bufIsChangedNotTerm(buf_T *buf)
3580{
Bram Moolenaar4551c0a2018-06-20 22:38:21 +02003581 // In a "prompt" buffer we do respect 'modified', so that we can control
3582 // closing the window by setting or resetting that option.
3583 return (!bt_dontwrite(buf) || bt_prompt(buf))
Bram Moolenaareb44a682017-08-03 22:44:55 +02003584 && (buf->b_changed || file_ff_differs(buf, TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585}
3586
3587 int
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003588curbufIsChanged(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003589{
Bram Moolenaareb44a682017-08-03 22:44:55 +02003590 return bufIsChanged(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591}
Bram Moolenaara800b422010-06-27 01:15:55 +02003592
3593#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar08c308a2019-09-04 17:48:15 +02003594
Bram Moolenaara800b422010-06-27 01:15:55 +02003595/*
3596 * For undotree(): Append the list of undo blocks at "first_uhp" to "list".
3597 * Recursive.
3598 */
Bram Moolenaar840d16f2019-09-10 21:27:18 +02003599 static void
Bram Moolenaar764b23c2016-01-30 21:10:09 +01003600u_eval_tree(u_header_T *first_uhp, list_T *list)
Bram Moolenaara800b422010-06-27 01:15:55 +02003601{
3602 u_header_T *uhp = first_uhp;
3603 dict_T *dict;
3604
3605 while (uhp != NULL)
3606 {
3607 dict = dict_alloc();
3608 if (dict == NULL)
3609 return;
Bram Moolenaare0be1672018-07-08 16:50:37 +02003610 dict_add_number(dict, "seq", uhp->uh_seq);
3611 dict_add_number(dict, "time", (long)uhp->uh_time);
Bram Moolenaara800b422010-06-27 01:15:55 +02003612 if (uhp == curbuf->b_u_newhead)
Bram Moolenaare0be1672018-07-08 16:50:37 +02003613 dict_add_number(dict, "newhead", 1);
Bram Moolenaara800b422010-06-27 01:15:55 +02003614 if (uhp == curbuf->b_u_curhead)
Bram Moolenaare0be1672018-07-08 16:50:37 +02003615 dict_add_number(dict, "curhead", 1);
Bram Moolenaara800b422010-06-27 01:15:55 +02003616 if (uhp->uh_save_nr > 0)
Bram Moolenaare0be1672018-07-08 16:50:37 +02003617 dict_add_number(dict, "save", uhp->uh_save_nr);
Bram Moolenaara800b422010-06-27 01:15:55 +02003618
3619 if (uhp->uh_alt_next.ptr != NULL)
3620 {
3621 list_T *alt_list = list_alloc();
3622
3623 if (alt_list != NULL)
3624 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003625 // Recursive call to add alternate undo tree.
Bram Moolenaara800b422010-06-27 01:15:55 +02003626 u_eval_tree(uhp->uh_alt_next.ptr, alt_list);
3627 dict_add_list(dict, "alt", alt_list);
3628 }
3629 }
3630
3631 list_append_dict(list, dict);
3632 uhp = uhp->uh_prev.ptr;
3633 }
3634}
Bram Moolenaar08c308a2019-09-04 17:48:15 +02003635
3636/*
3637 * "undofile(name)" function
3638 */
3639 void
3640f_undofile(typval_T *argvars UNUSED, typval_T *rettv)
3641{
3642 rettv->v_type = VAR_STRING;
3643#ifdef FEAT_PERSISTENT_UNDO
3644 {
3645 char_u *fname = tv_get_string(&argvars[0]);
3646
3647 if (*fname == NUL)
3648 {
Bram Moolenaare38eab22019-12-05 21:50:01 +01003649 // If there is no file name there will be no undo file.
Bram Moolenaar08c308a2019-09-04 17:48:15 +02003650 rettv->vval.v_string = NULL;
3651 }
3652 else
3653 {
3654 char_u *ffname = FullName_save(fname, TRUE);
3655
3656 if (ffname != NULL)
3657 rettv->vval.v_string = u_get_undo_file_name(ffname, FALSE);
3658 vim_free(ffname);
3659 }
3660 }
3661#else
3662 rettv->vval.v_string = NULL;
3663#endif
3664}
3665
3666/*
3667 * "undotree()" function
3668 */
3669 void
3670f_undotree(typval_T *argvars UNUSED, typval_T *rettv)
3671{
3672 if (rettv_dict_alloc(rettv) == OK)
3673 {
3674 dict_T *dict = rettv->vval.v_dict;
3675 list_T *list;
3676
3677 dict_add_number(dict, "synced", (long)curbuf->b_u_synced);
3678 dict_add_number(dict, "seq_last", curbuf->b_u_seq_last);
3679 dict_add_number(dict, "save_last", (long)curbuf->b_u_save_nr_last);
3680 dict_add_number(dict, "seq_cur", curbuf->b_u_seq_cur);
3681 dict_add_number(dict, "time_cur", (long)curbuf->b_u_time_cur);
3682 dict_add_number(dict, "save_cur", (long)curbuf->b_u_save_nr_cur);
3683
3684 list = list_alloc();
3685 if (list != NULL)
3686 {
3687 u_eval_tree(curbuf->b_u_oldhead, list);
3688 dict_add_list(dict, "entries", list);
3689 }
3690 }
3691}
3692
Bram Moolenaara800b422010-06-27 01:15:55 +02003693#endif