blob: 66a9ea08b4139709d038673abc6e93ebfdcc8cab [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
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 Moolenaarfecb6602007-10-01 20:54:15 +000078/* 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 */
83
Bram Moolenaar442b4222010-05-24 21:34:22 +020084#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
85# include "vimio.h" /* for vim_read(), must be before vim.h */
86#endif
87
Bram Moolenaar071d4272004-06-13 20:20:40 +000088#include "vim.h"
89
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +000090static void u_unch_branch __ARGS((u_header_T *uhp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000091static u_entry_T *u_get_headentry __ARGS((void));
92static void u_getbot __ARGS((void));
93static int u_savecommon __ARGS((linenr_T, linenr_T, linenr_T));
94static void u_doit __ARGS((int count));
Bram Moolenaarca003e12006-03-17 23:19:38 +000095static void u_undoredo __ARGS((int undo));
Bram Moolenaardb552d602006-03-23 22:59:57 +000096static void u_undo_end __ARGS((int did_undo, int absolute));
Bram Moolenaarefd2bf12006-03-16 21:41:35 +000097static void u_add_time __ARGS((char_u *buf, size_t buflen, time_t tt));
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +000098static void u_freeheader __ARGS((buf_T *buf, u_header_T *uhp, u_header_T **uhpp));
Bram Moolenaar1e607892006-03-13 22:15:53 +000099static void u_freebranch __ARGS((buf_T *buf, u_header_T *uhp, u_header_T **uhpp));
100static void u_freeentries __ARGS((buf_T *buf, u_header_T *uhp, u_header_T **uhpp));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101static void u_freeentry __ARGS((u_entry_T *, long));
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200102#ifdef FEAT_PERSISTENT_UNDO
Bram Moolenaarf506c5b2010-06-22 06:28:58 +0200103static void corruption_error __ARGS((char *mesg, char_u *file_name));
Bram Moolenaar6a18eb62010-05-26 21:21:00 +0200104static void u_free_uhp __ARGS((u_header_T *uhp));
Bram Moolenaar191e0a22010-06-14 01:39:13 +0200105static size_t fwrite_crypt __ARGS((buf_T *buf UNUSED, char_u *ptr, size_t len, FILE *fp));
106static char_u *read_string_decrypt __ARGS((buf_T *buf UNUSED, FILE *fd, int len));
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +0200107static int serialize_header __ARGS((FILE *fp, buf_T *buf, char_u *hash));
Bram Moolenaara3ff49f2010-05-30 22:48:02 +0200108static int serialize_uhp __ARGS((FILE *fp, buf_T *buf, u_header_T *uhp));
Bram Moolenaara800b422010-06-27 01:15:55 +0200109static u_header_T *unserialize_uhp __ARGS((FILE *fp, char_u *file_name, int new_version));
Bram Moolenaara3ff49f2010-05-30 22:48:02 +0200110static int serialize_uep __ARGS((FILE *fp, buf_T *buf, u_entry_T *uep));
Bram Moolenaar9db58062010-05-29 20:33:07 +0200111static u_entry_T *unserialize_uep __ARGS((FILE *fp, int *error, char_u *file_name));
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200112static void serialize_pos __ARGS((pos_T pos, FILE *fp));
Bram Moolenaar9db58062010-05-29 20:33:07 +0200113static void unserialize_pos __ARGS((pos_T *pos, FILE *fp));
Bram Moolenaarcdf04202010-05-29 15:11:47 +0200114static void serialize_visualinfo __ARGS((visualinfo_T *info, FILE *fp));
Bram Moolenaar9db58062010-05-29 20:33:07 +0200115static void unserialize_visualinfo __ARGS((visualinfo_T *info, FILE *fp));
116static void put_header_ptr __ARGS((FILE *fp, u_header_T *uhp));
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200117#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118
Bram Moolenaarf05e3b02010-05-29 15:40:47 +0200119#define U_ALLOC_LINE(size) lalloc((long_u)(size), FALSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120static char_u *u_save_line __ARGS((linenr_T));
121
Bram Moolenaar730cde92010-06-27 05:18:54 +0200122/* used in undo_end() to report number of added and deleted lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123static long u_newcount, u_oldcount;
124
125/*
126 * When 'u' flag included in 'cpoptions', we behave like vi. Need to remember
127 * the action that "u" should do.
128 */
129static int undo_undoes = FALSE;
130
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200131static int lastmark = 0;
132
Bram Moolenaar9db58062010-05-29 20:33:07 +0200133#if defined(U_DEBUG) || defined(PROTO)
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000134/*
135 * Check the undo structures for being valid. Print a warning when something
136 * looks wrong.
137 */
138static int seen_b_u_curhead;
139static int seen_b_u_newhead;
140static int header_count;
141
142 static void
143u_check_tree(u_header_T *uhp,
144 u_header_T *exp_uh_next,
145 u_header_T *exp_uh_alt_prev)
146{
147 u_entry_T *uep;
148
149 if (uhp == NULL)
150 return;
151 ++header_count;
152 if (uhp == curbuf->b_u_curhead && ++seen_b_u_curhead > 1)
153 {
154 EMSG("b_u_curhead found twice (looping?)");
155 return;
156 }
157 if (uhp == curbuf->b_u_newhead && ++seen_b_u_newhead > 1)
158 {
159 EMSG("b_u_newhead found twice (looping?)");
160 return;
161 }
162
163 if (uhp->uh_magic != UH_MAGIC)
164 EMSG("uh_magic wrong (may be using freed memory)");
165 else
166 {
167 /* Check pointers back are correct. */
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200168 if (uhp->uh_next.ptr != exp_uh_next)
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000169 {
170 EMSG("uh_next wrong");
171 smsg((char_u *)"expected: 0x%x, actual: 0x%x",
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200172 exp_uh_next, uhp->uh_next.ptr);
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000173 }
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200174 if (uhp->uh_alt_prev.ptr != exp_uh_alt_prev)
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000175 {
176 EMSG("uh_alt_prev wrong");
177 smsg((char_u *)"expected: 0x%x, actual: 0x%x",
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200178 exp_uh_alt_prev, uhp->uh_alt_prev.ptr);
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000179 }
180
181 /* Check the undo tree at this header. */
182 for (uep = uhp->uh_entry; uep != NULL; uep = uep->ue_next)
183 {
184 if (uep->ue_magic != UE_MAGIC)
185 {
186 EMSG("ue_magic wrong (may be using freed memory)");
187 break;
188 }
189 }
190
191 /* Check the next alt tree. */
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200192 u_check_tree(uhp->uh_alt_next.ptr, uhp->uh_next.ptr, uhp);
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000193
194 /* Check the next header in this branch. */
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200195 u_check_tree(uhp->uh_prev.ptr, uhp, NULL);
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000196 }
197}
198
Bram Moolenaarb0b50882010-07-07 18:26:28 +0200199 static void
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000200u_check(int newhead_may_be_NULL)
201{
202 seen_b_u_newhead = 0;
203 seen_b_u_curhead = 0;
204 header_count = 0;
205
206 u_check_tree(curbuf->b_u_oldhead, NULL, NULL);
207
208 if (seen_b_u_newhead == 0 && curbuf->b_u_oldhead != NULL
209 && !(newhead_may_be_NULL && curbuf->b_u_newhead == NULL))
210 EMSGN("b_u_newhead invalid: 0x%x", curbuf->b_u_newhead);
211 if (curbuf->b_u_curhead != NULL && seen_b_u_curhead == 0)
212 EMSGN("b_u_curhead invalid: 0x%x", curbuf->b_u_curhead);
213 if (header_count != curbuf->b_u_numhead)
214 {
215 EMSG("b_u_numhead invalid");
216 smsg((char_u *)"expected: %ld, actual: %ld",
217 (long)header_count, (long)curbuf->b_u_numhead);
218 }
219}
220#endif
221
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000223 * Save the current line for both the "u" and "U" command.
224 * Returns OK or FAIL.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225 */
226 int
227u_save_cursor()
228{
229 return (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
230 (linenr_T)(curwin->w_cursor.lnum + 1)));
231}
232
233/*
234 * Save the lines between "top" and "bot" for both the "u" and "U" command.
235 * "top" may be 0 and bot may be curbuf->b_ml.ml_line_count + 1.
Bram Moolenaard04b7502010-07-08 22:27:55 +0200236 * Careful: may trigger autocommands that reload the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237 * Returns FAIL when lines could not be saved, OK otherwise.
238 */
239 int
240u_save(top, bot)
241 linenr_T top, bot;
242{
243 if (undo_off)
244 return OK;
245
246 if (top > curbuf->b_ml.ml_line_count ||
247 top >= bot || bot > curbuf->b_ml.ml_line_count + 1)
248 return FALSE; /* rely on caller to do error messages */
249
250 if (top + 2 == bot)
251 u_saveline((linenr_T)(top + 1));
252
253 return (u_savecommon(top, bot, (linenr_T)0));
254}
255
256/*
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200257 * Save the line "lnum" (used by ":s" and "~" command).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000258 * The line is replaced, so the new bottom line is lnum + 1.
Bram Moolenaard04b7502010-07-08 22:27:55 +0200259 * Careful: may trigger autocommands that reload the buffer.
260 * Returns FAIL when lines could not be saved, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261 */
262 int
263u_savesub(lnum)
264 linenr_T lnum;
265{
266 if (undo_off)
267 return OK;
268
269 return (u_savecommon(lnum - 1, lnum + 1, lnum + 1));
270}
271
272/*
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200273 * A new line is inserted before line "lnum" (used by :s command).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274 * The line is inserted, so the new bottom line is lnum + 1.
Bram Moolenaard04b7502010-07-08 22:27:55 +0200275 * Careful: may trigger autocommands that reload the buffer.
276 * Returns FAIL when lines could not be saved, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277 */
278 int
279u_inssub(lnum)
280 linenr_T lnum;
281{
282 if (undo_off)
283 return OK;
284
285 return (u_savecommon(lnum - 1, lnum, lnum + 1));
286}
287
288/*
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200289 * Save the lines "lnum" - "lnum" + nlines (used by delete command).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290 * The lines are deleted, so the new bottom line is lnum, unless the buffer
291 * becomes empty.
Bram Moolenaard04b7502010-07-08 22:27:55 +0200292 * Careful: may trigger autocommands that reload the buffer.
293 * Returns FAIL when lines could not be saved, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294 */
295 int
296u_savedel(lnum, nlines)
297 linenr_T lnum;
298 long nlines;
299{
300 if (undo_off)
301 return OK;
302
303 return (u_savecommon(lnum - 1, lnum + nlines,
304 nlines == curbuf->b_ml.ml_line_count ? 2 : lnum));
305}
306
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000307/*
308 * Return TRUE when undo is allowed. Otherwise give an error message and
309 * return FALSE.
310 */
Bram Moolenaarce6ef252006-07-12 19:49:41 +0000311 int
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000312undo_allowed()
313{
314 /* Don't allow changes when 'modifiable' is off. */
315 if (!curbuf->b_p_ma)
316 {
317 EMSG(_(e_modifiable));
318 return FALSE;
319 }
320
321#ifdef HAVE_SANDBOX
322 /* In the sandbox it's not allowed to change the text. */
323 if (sandbox != 0)
324 {
325 EMSG(_(e_sandbox));
326 return FALSE;
327 }
328#endif
329
330 /* Don't allow changes in the buffer while editing the cmdline. The
331 * caller of getcmdline() may get confused. */
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000332 if (textlock != 0)
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000333 {
334 EMSG(_(e_secure));
335 return FALSE;
336 }
337
338 return TRUE;
339}
340
Bram Moolenaarb0b50882010-07-07 18:26:28 +0200341/*
342 * Common code for various ways to save text before a change.
Bram Moolenaard04b7502010-07-08 22:27:55 +0200343 * "top" is the line above the first changed line.
344 * "bot" is the line below the last changed line.
345 * Careful: may trigger autocommands that reload the buffer.
346 * Returns FAIL when lines could not be saved, OK otherwise.
Bram Moolenaarb0b50882010-07-07 18:26:28 +0200347 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348 static int
349u_savecommon(top, bot, newbot)
350 linenr_T top, bot;
351 linenr_T newbot;
352{
Bram Moolenaar1e607892006-03-13 22:15:53 +0000353 linenr_T lnum;
354 long i;
355 u_header_T *uhp;
356 u_header_T *old_curhead;
357 u_entry_T *uep;
358 u_entry_T *prev_uep;
359 long size;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000361 /* When making changes is not allowed return FAIL. It's a crude way to
362 * make all change commands fail. */
363 if (!undo_allowed())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000366#ifdef U_DEBUG
367 u_check(FALSE);
368#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369#ifdef FEAT_NETBEANS_INTG
370 /*
371 * Netbeans defines areas that cannot be modified. Bail out here when
372 * trying to change text in a guarded area.
373 */
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200374 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375 {
Bram Moolenaar009b2592004-10-24 19:18:58 +0000376 if (netbeans_is_guarded(top, bot))
377 {
378 EMSG(_(e_guarded));
379 return FAIL;
380 }
381 if (curbuf->b_p_ro)
382 {
383 EMSG(_(e_nbreadonly));
384 return FAIL;
385 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386 }
387#endif
388
389#ifdef FEAT_AUTOCMD
390 /*
391 * Saving text for undo means we are going to make a change. Give a
392 * warning for a read-only file before making the change, so that the
393 * FileChangedRO event can replace the buffer with a read-write version
394 * (e.g., obtained from a source control system).
395 */
396 change_warning(0);
Bram Moolenaard04b7502010-07-08 22:27:55 +0200397 if (bot > curbuf->b_ml.ml_line_count + 1)
398 {
399 /* This happens when the FileChangedRO autocommand changes the file in
400 * a way it becomes shorter. */
401 EMSG(_("E834: Line count changed unexpectedly"));
402 return FAIL;
403 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404#endif
405
406 size = bot - top - 1;
407
408 /*
Bram Moolenaarb0b50882010-07-07 18:26:28 +0200409 * If curbuf->b_u_synced == TRUE make a new header.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410 */
411 if (curbuf->b_u_synced)
412 {
413#ifdef FEAT_JUMPLIST
414 /* Need to create new entry in b_changelist. */
415 curbuf->b_new_change = TRUE;
416#endif
417
Bram Moolenaar1e607892006-03-13 22:15:53 +0000418 if (p_ul >= 0)
419 {
420 /*
421 * Make a new header entry. Do this first so that we don't mess
422 * up the undo info when out of memory.
423 */
Bram Moolenaarf05e3b02010-05-29 15:40:47 +0200424 uhp = (u_header_T *)U_ALLOC_LINE(sizeof(u_header_T));
Bram Moolenaar1e607892006-03-13 22:15:53 +0000425 if (uhp == NULL)
426 goto nomem;
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000427#ifdef U_DEBUG
428 uhp->uh_magic = UH_MAGIC;
429#endif
Bram Moolenaar1e607892006-03-13 22:15:53 +0000430 }
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000431 else
432 uhp = NULL;
Bram Moolenaar1e607892006-03-13 22:15:53 +0000433
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434 /*
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000435 * If we undid more than we redid, move the entry lists before and
436 * including curbuf->b_u_curhead to an alternate branch.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437 */
Bram Moolenaar1e607892006-03-13 22:15:53 +0000438 old_curhead = curbuf->b_u_curhead;
439 if (old_curhead != NULL)
440 {
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200441 curbuf->b_u_newhead = old_curhead->uh_next.ptr;
Bram Moolenaar1e607892006-03-13 22:15:53 +0000442 curbuf->b_u_curhead = NULL;
443 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444
445 /*
446 * free headers to keep the size right
447 */
448 while (curbuf->b_u_numhead > p_ul && curbuf->b_u_oldhead != NULL)
Bram Moolenaar1e607892006-03-13 22:15:53 +0000449 {
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000450 u_header_T *uhfree = curbuf->b_u_oldhead;
Bram Moolenaar1e607892006-03-13 22:15:53 +0000451
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000452 if (uhfree == old_curhead)
453 /* Can't reconnect the branch, delete all of it. */
454 u_freebranch(curbuf, uhfree, &old_curhead);
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200455 else if (uhfree->uh_alt_next.ptr == NULL)
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000456 /* There is no branch, only free one header. */
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000457 u_freeheader(curbuf, uhfree, &old_curhead);
Bram Moolenaar1e607892006-03-13 22:15:53 +0000458 else
459 {
460 /* Free the oldest alternate branch as a whole. */
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200461 while (uhfree->uh_alt_next.ptr != NULL)
462 uhfree = uhfree->uh_alt_next.ptr;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000463 u_freebranch(curbuf, uhfree, &old_curhead);
Bram Moolenaar1e607892006-03-13 22:15:53 +0000464 }
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000465#ifdef U_DEBUG
466 u_check(TRUE);
467#endif
Bram Moolenaar1e607892006-03-13 22:15:53 +0000468 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000470 if (uhp == NULL) /* no undo at all */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471 {
Bram Moolenaar1e607892006-03-13 22:15:53 +0000472 if (old_curhead != NULL)
473 u_freebranch(curbuf, old_curhead, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474 curbuf->b_u_synced = FALSE;
475 return OK;
476 }
477
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200478 uhp->uh_prev.ptr = NULL;
479 uhp->uh_next.ptr = curbuf->b_u_newhead;
480 uhp->uh_alt_next.ptr = old_curhead;
Bram Moolenaar1e607892006-03-13 22:15:53 +0000481 if (old_curhead != NULL)
482 {
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200483 uhp->uh_alt_prev.ptr = old_curhead->uh_alt_prev.ptr;
484 if (uhp->uh_alt_prev.ptr != NULL)
485 uhp->uh_alt_prev.ptr->uh_alt_next.ptr = uhp;
486 old_curhead->uh_alt_prev.ptr = uhp;
Bram Moolenaar1e607892006-03-13 22:15:53 +0000487 if (curbuf->b_u_oldhead == old_curhead)
488 curbuf->b_u_oldhead = uhp;
489 }
Bram Moolenaar89ed3df2007-01-09 19:23:12 +0000490 else
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200491 uhp->uh_alt_prev.ptr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000492 if (curbuf->b_u_newhead != NULL)
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200493 curbuf->b_u_newhead->uh_prev.ptr = uhp;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000494
Bram Moolenaarca003e12006-03-17 23:19:38 +0000495 uhp->uh_seq = ++curbuf->b_u_seq_last;
496 curbuf->b_u_seq_cur = uhp->uh_seq;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000497 uhp->uh_time = time(NULL);
Bram Moolenaara800b422010-06-27 01:15:55 +0200498 uhp->uh_save_nr = 0;
499 curbuf->b_u_time_cur = uhp->uh_time + 1;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000500
Bram Moolenaar1e607892006-03-13 22:15:53 +0000501 uhp->uh_walk = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502 uhp->uh_entry = NULL;
503 uhp->uh_getbot_entry = NULL;
504 uhp->uh_cursor = curwin->w_cursor; /* save cursor pos. for undo */
505#ifdef FEAT_VIRTUALEDIT
506 if (virtual_active() && curwin->w_cursor.coladd > 0)
507 uhp->uh_cursor_vcol = getviscol();
508 else
509 uhp->uh_cursor_vcol = -1;
510#endif
511
512 /* save changed and buffer empty flag for undo */
513 uhp->uh_flags = (curbuf->b_changed ? UH_CHANGED : 0) +
514 ((curbuf->b_ml.ml_flags & ML_EMPTY) ? UH_EMPTYBUF : 0);
515
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000516 /* save named marks and Visual marks for undo */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517 mch_memmove(uhp->uh_namedm, curbuf->b_namedm, sizeof(pos_T) * NMARKS);
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000518#ifdef FEAT_VISUAL
519 uhp->uh_visual = curbuf->b_visual;
520#endif
521
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522 curbuf->b_u_newhead = uhp;
523 if (curbuf->b_u_oldhead == NULL)
524 curbuf->b_u_oldhead = uhp;
525 ++curbuf->b_u_numhead;
526 }
527 else
528 {
529 if (p_ul < 0) /* no undo at all */
530 return OK;
531
532 /*
533 * When saving a single line, and it has been saved just before, it
534 * doesn't make sense saving it again. Saves a lot of memory when
535 * making lots of changes inside the same line.
536 * This is only possible if the previous change didn't increase or
537 * decrease the number of lines.
538 * Check the ten last changes. More doesn't make sense and takes too
539 * long.
540 */
541 if (size == 1)
542 {
543 uep = u_get_headentry();
544 prev_uep = NULL;
545 for (i = 0; i < 10; ++i)
546 {
547 if (uep == NULL)
548 break;
549
550 /* If lines have been inserted/deleted we give up.
551 * Also when the line was included in a multi-line save. */
552 if ((curbuf->b_u_newhead->uh_getbot_entry != uep
553 ? (uep->ue_top + uep->ue_size + 1
554 != (uep->ue_bot == 0
555 ? curbuf->b_ml.ml_line_count + 1
556 : uep->ue_bot))
557 : uep->ue_lcount != curbuf->b_ml.ml_line_count)
558 || (uep->ue_size > 1
559 && top >= uep->ue_top
560 && top + 2 <= uep->ue_top + uep->ue_size + 1))
561 break;
562
563 /* If it's the same line we can skip saving it again. */
564 if (uep->ue_size == 1 && uep->ue_top == top)
565 {
566 if (i > 0)
567 {
568 /* It's not the last entry: get ue_bot for the last
569 * entry now. Following deleted/inserted lines go to
570 * the re-used entry. */
571 u_getbot();
572 curbuf->b_u_synced = FALSE;
573
574 /* Move the found entry to become the last entry. The
575 * order of undo/redo doesn't matter for the entries
576 * we move it over, since they don't change the line
577 * count and don't include this line. It does matter
578 * for the found entry if the line count is changed by
579 * the executed command. */
580 prev_uep->ue_next = uep->ue_next;
581 uep->ue_next = curbuf->b_u_newhead->uh_entry;
582 curbuf->b_u_newhead->uh_entry = uep;
583 }
584
585 /* The executed command may change the line count. */
586 if (newbot != 0)
587 uep->ue_bot = newbot;
588 else if (bot > curbuf->b_ml.ml_line_count)
589 uep->ue_bot = 0;
590 else
591 {
592 uep->ue_lcount = curbuf->b_ml.ml_line_count;
593 curbuf->b_u_newhead->uh_getbot_entry = uep;
594 }
595 return OK;
596 }
597 prev_uep = uep;
598 uep = uep->ue_next;
599 }
600 }
601
602 /* find line number for ue_bot for previous u_save() */
603 u_getbot();
604 }
605
606#if !defined(UNIX) && !defined(DJGPP) && !defined(WIN32) && !defined(__EMX__)
607 /*
608 * With Amiga and MSDOS 16 bit we can't handle big undo's, because
609 * then u_alloc_line would have to allocate a block larger than 32K
610 */
611 if (size >= 8000)
612 goto nomem;
613#endif
614
615 /*
616 * add lines in front of entry list
617 */
Bram Moolenaarf05e3b02010-05-29 15:40:47 +0200618 uep = (u_entry_T *)U_ALLOC_LINE(sizeof(u_entry_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000619 if (uep == NULL)
620 goto nomem;
Bram Moolenaar7db5fc82010-05-24 11:59:29 +0200621 vim_memset(uep, 0, sizeof(u_entry_T));
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000622#ifdef U_DEBUG
623 uep->ue_magic = UE_MAGIC;
624#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000625
626 uep->ue_size = size;
627 uep->ue_top = top;
628 if (newbot != 0)
629 uep->ue_bot = newbot;
630 /*
631 * Use 0 for ue_bot if bot is below last line.
632 * Otherwise we have to compute ue_bot later.
633 */
634 else if (bot > curbuf->b_ml.ml_line_count)
635 uep->ue_bot = 0;
636 else
637 {
638 uep->ue_lcount = curbuf->b_ml.ml_line_count;
639 curbuf->b_u_newhead->uh_getbot_entry = uep;
640 }
641
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000642 if (size > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000644 if ((uep->ue_array = (char_u **)U_ALLOC_LINE(
Bram Moolenaarf05e3b02010-05-29 15:40:47 +0200645 sizeof(char_u *) * size)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646 {
647 u_freeentry(uep, 0L);
648 goto nomem;
649 }
650 for (i = 0, lnum = top + 1; i < size; ++i)
651 {
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000652 fast_breakcheck();
653 if (got_int)
654 {
655 u_freeentry(uep, i);
656 return FAIL;
657 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658 if ((uep->ue_array[i] = u_save_line(lnum++)) == NULL)
659 {
660 u_freeentry(uep, i);
661 goto nomem;
662 }
663 }
664 }
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000665 else
666 uep->ue_array = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667 uep->ue_next = curbuf->b_u_newhead->uh_entry;
668 curbuf->b_u_newhead->uh_entry = uep;
669 curbuf->b_u_synced = FALSE;
670 undo_undoes = FALSE;
671
Bram Moolenaarfecb6602007-10-01 20:54:15 +0000672#ifdef U_DEBUG
673 u_check(FALSE);
674#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675 return OK;
676
677nomem:
678 msg_silent = 0; /* must display the prompt */
679 if (ask_yesno((char_u *)_("No undo possible; continue anyway"), TRUE)
680 == 'y')
681 {
682 undo_off = TRUE; /* will be reset when character typed */
683 return OK;
684 }
685 do_outofmem_msg((long_u)0);
686 return FAIL;
687}
688
Bram Moolenaar191e0a22010-06-14 01:39:13 +0200689#if defined(FEAT_PERSISTENT_UNDO) || defined(PROTO)
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200690
Bram Moolenaar9db58062010-05-29 20:33:07 +0200691# define UF_START_MAGIC "Vim\237UnDo\345" /* magic at start of undofile */
692# define UF_START_MAGIC_LEN 9
693# define UF_HEADER_MAGIC 0x5fd0 /* magic at start of header */
694# define UF_HEADER_END_MAGIC 0xe7aa /* magic after last header */
695# define UF_ENTRY_MAGIC 0xf518 /* magic at start of entry */
696# define UF_ENTRY_END_MAGIC 0x3581 /* magic after last entry */
Bram Moolenaara800b422010-06-27 01:15:55 +0200697# define UF_VERSION_PREV 1 /* 2-byte undofile version number */
698# define UF_VERSION 2 /* 2-byte undofile version number */
699# define UF_VERSION_CRYPT_PREV 0x8001 /* idem, encrypted */
700# define UF_VERSION_CRYPT 0x8002 /* idem, encrypted */
701
702/* extra fields for header */
703# define UF_LAST_SAVE_NR 1
704
705/* extra fields for uhp */
706# define UHP_SAVE_NR 1
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200707
Bram Moolenaarcdf04202010-05-29 15:11:47 +0200708static char_u e_not_open[] = N_("E828: Cannot open undo file for writing: %s");
Bram Moolenaarcdf04202010-05-29 15:11:47 +0200709
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200710/*
711 * Compute the hash for the current buffer text into hash[UNDO_HASH_SIZE].
712 */
713 void
714u_compute_hash(hash)
715 char_u *hash;
716{
717 context_sha256_T ctx;
718 linenr_T lnum;
719 char_u *p;
720
721 sha256_start(&ctx);
722 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum)
723 {
724 p = ml_get(lnum);
Bram Moolenaar442b4222010-05-24 21:34:22 +0200725 sha256_update(&ctx, p, (UINT32_T)(STRLEN(p) + 1));
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200726 }
727 sha256_finish(&ctx, hash);
728}
729
730/*
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200731 * Return an allocated string of the full path of the target undofile.
732 * When "reading" is TRUE find the file to read, go over all directories in
733 * 'undodir'.
734 * When "reading" is FALSE use the first name where the directory exists.
Bram Moolenaar9db58062010-05-29 20:33:07 +0200735 * Returns NULL when there is no place to write or no file to read.
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200736 */
Bram Moolenaara17d4c12010-05-30 18:30:36 +0200737 char_u *
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200738u_get_undo_file_name(buf_ffname, reading)
739 char_u *buf_ffname;
740 int reading;
741{
742 char_u *dirp;
743 char_u dir_name[IOSIZE + 1];
744 char_u *munged_name = NULL;
745 char_u *undo_file_name = NULL;
746 int dir_len;
747 char_u *p;
748 struct stat st;
749 char_u *ffname = buf_ffname;
750#ifdef HAVE_READLINK
751 char_u fname_buf[MAXPATHL];
752#endif
753
754 if (ffname == NULL)
755 return NULL;
756
757#ifdef HAVE_READLINK
758 /* Expand symlink in the file name, so that we put the undo file with the
759 * actual file instead of with the symlink. */
760 if (resolve_symlink(ffname, fname_buf) == OK)
761 ffname = fname_buf;
762#endif
763
764 /* Loop over 'undodir'. When reading find the first file that exists.
765 * When not reading use the first directory that exists or ".". */
766 dirp = p_udir;
767 while (*dirp != NUL)
768 {
769 dir_len = copy_option_part(&dirp, dir_name, IOSIZE, ",");
770 if (dir_len == 1 && dir_name[0] == '.')
771 {
772 /* Use same directory as the ffname,
773 * "dir/name" -> "dir/.name.un~" */
Bram Moolenaar442b4222010-05-24 21:34:22 +0200774 undo_file_name = vim_strnsave(ffname, (int)(STRLEN(ffname) + 5));
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200775 if (undo_file_name == NULL)
776 break;
777 p = gettail(undo_file_name);
778 mch_memmove(p + 1, p, STRLEN(p) + 1);
779 *p = '.';
780 STRCAT(p, ".un~");
781 }
782 else
783 {
784 dir_name[dir_len] = NUL;
785 if (mch_isdir(dir_name))
786 {
787 if (munged_name == NULL)
788 {
789 munged_name = vim_strsave(ffname);
790 if (munged_name == NULL)
791 return NULL;
792 for (p = munged_name; *p != NUL; mb_ptr_adv(p))
793 if (vim_ispathsep(*p))
794 *p = '%';
795 }
796 undo_file_name = concat_fnames(dir_name, munged_name, TRUE);
797 }
798 }
799
800 /* When reading check if the file exists. */
801 if (undo_file_name != NULL && (!reading
802 || mch_stat((char *)undo_file_name, &st) >= 0))
803 break;
804 vim_free(undo_file_name);
805 undo_file_name = NULL;
806 }
807
808 vim_free(munged_name);
809 return undo_file_name;
810}
811
Bram Moolenaar9db58062010-05-29 20:33:07 +0200812 static void
Bram Moolenaarf506c5b2010-06-22 06:28:58 +0200813corruption_error(mesg, file_name)
814 char *mesg;
Bram Moolenaar9db58062010-05-29 20:33:07 +0200815 char_u *file_name;
816{
Bram Moolenaarf506c5b2010-06-22 06:28:58 +0200817 EMSG3(_("E825: Corrupted undo file (%s): %s"), mesg, file_name);
Bram Moolenaar9db58062010-05-29 20:33:07 +0200818}
819
820 static void
821u_free_uhp(uhp)
822 u_header_T *uhp;
823{
824 u_entry_T *nuep;
825 u_entry_T *uep;
826
827 uep = uhp->uh_entry;
828 while (uep != NULL)
829 {
830 nuep = uep->ue_next;
831 u_freeentry(uep, uep->ue_size);
832 uep = nuep;
833 }
834 vim_free(uhp);
835}
836
Bram Moolenaar191e0a22010-06-14 01:39:13 +0200837/*
838 * Like fwrite() but crypt the bytes when 'key' is set.
839 * Returns 1 if successful.
840 */
841 static size_t
842fwrite_crypt(buf, ptr, len, fp)
843 buf_T *buf UNUSED;
844 char_u *ptr;
845 size_t len;
846 FILE *fp;
847{
848#ifdef FEAT_CRYPT
849 char_u *copy;
850 char_u small_buf[100];
851 size_t i;
852
853 if (*buf->b_p_key == NUL)
854 return fwrite(ptr, len, (size_t)1, fp);
855 if (len < 100)
856 copy = small_buf; /* no malloc()/free() for short strings */
857 else
858 {
859 copy = lalloc(len, FALSE);
860 if (copy == NULL)
861 return 0;
862 }
863 crypt_encode(ptr, len, copy);
864 i = fwrite(copy, len, (size_t)1, fp);
865 if (copy != small_buf)
866 vim_free(copy);
867 return i;
868#else
869 return fwrite(ptr, len, (size_t)1, fp);
870#endif
871}
872
873/*
874 * Read a string of length "len" from "fd".
875 * When 'key' is set decrypt the bytes.
876 */
877 static char_u *
878read_string_decrypt(buf, fd, len)
879 buf_T *buf UNUSED;
880 FILE *fd;
881 int len;
882{
883 char_u *ptr;
884
885 ptr = read_string(fd, len);
886#ifdef FEAT_CRYPT
887 if (ptr != NULL || *buf->b_p_key != NUL)
888 crypt_decode(ptr, len);
889#endif
890 return ptr;
891}
892
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +0200893 static int
894serialize_header(fp, buf, hash)
895 FILE *fp;
896 buf_T *buf;
897 char_u *hash;
898{
899 int len;
900
901 /* Start writing, first the magic marker and undo info version. */
902 if (fwrite(UF_START_MAGIC, (size_t)UF_START_MAGIC_LEN, (size_t)1, fp) != 1)
903 return FAIL;
Bram Moolenaara3ff49f2010-05-30 22:48:02 +0200904
905 /* If the buffer is encrypted then all text bytes following will be
906 * encrypted. Numbers and other info is not crypted. */
907#ifdef FEAT_CRYPT
908 if (*buf->b_p_key)
909 {
910 char_u *header;
911 int header_len;
912
913 put_bytes(fp, (long_u)UF_VERSION_CRYPT, 2);
914 header = prepare_crypt_write(buf, &header_len);
915 if (header == NULL)
916 return FAIL;
Bram Moolenaarbbd6afe2010-06-02 20:32:23 +0200917 len = (int)fwrite(header, (size_t)header_len, (size_t)1, fp);
Bram Moolenaara3ff49f2010-05-30 22:48:02 +0200918 vim_free(header);
919 if (len != 1)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200920 {
921 crypt_pop_state();
Bram Moolenaara3ff49f2010-05-30 22:48:02 +0200922 return FAIL;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200923 }
Bram Moolenaara3ff49f2010-05-30 22:48:02 +0200924 }
925 else
926#endif
927 put_bytes(fp, (long_u)UF_VERSION, 2);
928
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +0200929
930 /* Write a hash of the buffer text, so that we can verify it is still the
931 * same when reading the buffer text. */
932 if (fwrite(hash, (size_t)UNDO_HASH_SIZE, (size_t)1, fp) != 1)
933 return FAIL;
934
935 /* buffer-specific data */
936 put_bytes(fp, (long_u)buf->b_ml.ml_line_count, 4);
937 len = buf->b_u_line_ptr != NULL ? (int)STRLEN(buf->b_u_line_ptr) : 0;
938 put_bytes(fp, (long_u)len, 4);
Bram Moolenaara3ff49f2010-05-30 22:48:02 +0200939 if (len > 0 && fwrite_crypt(buf, buf->b_u_line_ptr, (size_t)len, fp) != 1)
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +0200940 return FAIL;
941 put_bytes(fp, (long_u)buf->b_u_line_lnum, 4);
942 put_bytes(fp, (long_u)buf->b_u_line_colnr, 4);
943
944 /* Undo structures header data */
945 put_header_ptr(fp, buf->b_u_oldhead);
946 put_header_ptr(fp, buf->b_u_newhead);
947 put_header_ptr(fp, buf->b_u_curhead);
948
949 put_bytes(fp, (long_u)buf->b_u_numhead, 4);
950 put_bytes(fp, (long_u)buf->b_u_seq_last, 4);
951 put_bytes(fp, (long_u)buf->b_u_seq_cur, 4);
Bram Moolenaara800b422010-06-27 01:15:55 +0200952 put_time(fp, buf->b_u_time_cur);
953
954 /* Optional fields. */
955 putc(4, fp);
956 putc(UF_LAST_SAVE_NR, fp);
Bram Moolenaar730cde92010-06-27 05:18:54 +0200957 put_bytes(fp, (long_u)buf->b_u_save_nr_last, 4);
Bram Moolenaara800b422010-06-27 01:15:55 +0200958
959 putc(0, fp); /* end marker */
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +0200960
961 return OK;
962}
963
964 static int
Bram Moolenaara3ff49f2010-05-30 22:48:02 +0200965serialize_uhp(fp, buf, uhp)
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +0200966 FILE *fp;
Bram Moolenaara3ff49f2010-05-30 22:48:02 +0200967 buf_T *buf;
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +0200968 u_header_T *uhp;
969{
970 int i;
971 u_entry_T *uep;
972
973 if (put_bytes(fp, (long_u)UF_HEADER_MAGIC, 2) == FAIL)
974 return FAIL;
975
Bram Moolenaar83d09bb2010-06-01 19:58:08 +0200976 put_header_ptr(fp, uhp->uh_next.ptr);
977 put_header_ptr(fp, uhp->uh_prev.ptr);
978 put_header_ptr(fp, uhp->uh_alt_next.ptr);
979 put_header_ptr(fp, uhp->uh_alt_prev.ptr);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +0200980 put_bytes(fp, uhp->uh_seq, 4);
981 serialize_pos(uhp->uh_cursor, fp);
982#ifdef FEAT_VIRTUALEDIT
983 put_bytes(fp, (long_u)uhp->uh_cursor_vcol, 4);
984#else
985 put_bytes(fp, (long_u)0, 4);
986#endif
987 put_bytes(fp, (long_u)uhp->uh_flags, 2);
988 /* Assume NMARKS will stay the same. */
989 for (i = 0; i < NMARKS; ++i)
990 serialize_pos(uhp->uh_namedm[i], fp);
991#ifdef FEAT_VISUAL
992 serialize_visualinfo(&uhp->uh_visual, fp);
993#else
994 {
995 visualinfo_T info;
996
997 memset(&info, 0, sizeof(visualinfo_T));
998 serialize_visualinfo(&info, fp);
999 }
1000#endif
1001 put_time(fp, uhp->uh_time);
1002
Bram Moolenaara800b422010-06-27 01:15:55 +02001003 /* Optional fields. */
1004 putc(4, fp);
1005 putc(UHP_SAVE_NR, fp);
1006 put_bytes(fp, (long_u)uhp->uh_save_nr, 4);
1007
1008 putc(0, fp); /* end marker */
1009
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001010 /* Write all the entries. */
1011 for (uep = uhp->uh_entry; uep != NULL; uep = uep->ue_next)
1012 {
1013 put_bytes(fp, (long_u)UF_ENTRY_MAGIC, 2);
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001014 if (serialize_uep(fp, buf, uep) == FAIL)
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001015 return FAIL;
1016 }
1017 put_bytes(fp, (long_u)UF_ENTRY_END_MAGIC, 2);
1018 return OK;
1019}
1020
1021 static u_header_T *
Bram Moolenaara800b422010-06-27 01:15:55 +02001022unserialize_uhp(fp, file_name, new_version)
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001023 FILE *fp;
1024 char_u *file_name;
Bram Moolenaara800b422010-06-27 01:15:55 +02001025 int new_version;
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001026{
1027 u_header_T *uhp;
1028 int i;
1029 u_entry_T *uep, *last_uep;
1030 int c;
1031 int error;
1032
1033 uhp = (u_header_T *)U_ALLOC_LINE(sizeof(u_header_T));
1034 if (uhp == NULL)
1035 return NULL;
1036 vim_memset(uhp, 0, sizeof(u_header_T));
1037#ifdef U_DEBUG
1038 uhp->uh_magic = UH_MAGIC;
1039#endif
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02001040 uhp->uh_next.seq = get4c(fp);
1041 uhp->uh_prev.seq = get4c(fp);
1042 uhp->uh_alt_next.seq = get4c(fp);
1043 uhp->uh_alt_prev.seq = get4c(fp);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001044 uhp->uh_seq = get4c(fp);
1045 if (uhp->uh_seq <= 0)
1046 {
1047 corruption_error("uh_seq", file_name);
1048 vim_free(uhp);
1049 return NULL;
1050 }
1051 unserialize_pos(&uhp->uh_cursor, fp);
1052#ifdef FEAT_VIRTUALEDIT
1053 uhp->uh_cursor_vcol = get4c(fp);
1054#else
1055 (void)get4c(fp);
1056#endif
1057 uhp->uh_flags = get2c(fp);
1058 for (i = 0; i < NMARKS; ++i)
1059 unserialize_pos(&uhp->uh_namedm[i], fp);
1060#ifdef FEAT_VISUAL
1061 unserialize_visualinfo(&uhp->uh_visual, fp);
1062#else
1063 {
1064 visualinfo_T info;
1065 unserialize_visualinfo(&info, fp);
1066 }
1067#endif
1068 uhp->uh_time = get8ctime(fp);
1069
Bram Moolenaara800b422010-06-27 01:15:55 +02001070 /* Optional fields. */
1071 if (new_version)
1072 for (;;)
1073 {
1074 int len = getc(fp);
1075 int what;
1076
1077 if (len == 0)
1078 break;
1079 what = getc(fp);
1080 switch (what)
1081 {
1082 case UHP_SAVE_NR:
1083 uhp->uh_save_nr = get4c(fp);
1084 break;
1085 default:
1086 /* field not supported, skip */
1087 while (--len >= 0)
1088 (void)getc(fp);
1089 }
1090 }
1091
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001092 /* Unserialize the uep list. */
1093 last_uep = NULL;
1094 while ((c = get2c(fp)) == UF_ENTRY_MAGIC)
1095 {
1096 error = FALSE;
1097 uep = unserialize_uep(fp, &error, file_name);
1098 if (last_uep == NULL)
1099 uhp->uh_entry = uep;
1100 else
1101 last_uep->ue_next = uep;
1102 last_uep = uep;
1103 if (uep == NULL || error)
1104 {
1105 u_free_uhp(uhp);
1106 return NULL;
1107 }
1108 }
1109 if (c != UF_ENTRY_END_MAGIC)
1110 {
1111 corruption_error("entry end", file_name);
1112 u_free_uhp(uhp);
1113 return NULL;
1114 }
1115
1116 return uhp;
1117}
1118
Bram Moolenaar9db58062010-05-29 20:33:07 +02001119/*
1120 * Serialize "uep" to "fp".
1121 */
1122 static int
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001123serialize_uep(fp, buf, uep)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001124 FILE *fp;
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001125 buf_T *buf;
1126 u_entry_T *uep;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001127{
1128 int i;
1129 size_t len;
1130
1131 put_bytes(fp, (long_u)uep->ue_top, 4);
1132 put_bytes(fp, (long_u)uep->ue_bot, 4);
1133 put_bytes(fp, (long_u)uep->ue_lcount, 4);
1134 put_bytes(fp, (long_u)uep->ue_size, 4);
1135 for (i = 0; i < uep->ue_size; ++i)
1136 {
1137 len = STRLEN(uep->ue_array[i]);
1138 if (put_bytes(fp, (long_u)len, 4) == FAIL)
1139 return FAIL;
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001140 if (len > 0 && fwrite_crypt(buf, uep->ue_array[i], len, fp) != 1)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001141 return FAIL;
1142 }
1143 return OK;
1144}
1145
1146 static u_entry_T *
1147unserialize_uep(fp, error, file_name)
1148 FILE *fp;
1149 int *error;
1150 char_u *file_name;
1151{
1152 int i;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001153 u_entry_T *uep;
1154 char_u **array;
1155 char_u *line;
1156 int line_len;
1157
1158 uep = (u_entry_T *)U_ALLOC_LINE(sizeof(u_entry_T));
1159 if (uep == NULL)
1160 return NULL;
1161 vim_memset(uep, 0, sizeof(u_entry_T));
1162#ifdef U_DEBUG
1163 uep->ue_magic = UE_MAGIC;
1164#endif
1165 uep->ue_top = get4c(fp);
1166 uep->ue_bot = get4c(fp);
1167 uep->ue_lcount = get4c(fp);
1168 uep->ue_size = get4c(fp);
1169 if (uep->ue_size > 0)
1170 {
1171 array = (char_u **)U_ALLOC_LINE(sizeof(char_u *) * uep->ue_size);
1172 if (array == NULL)
1173 {
1174 *error = TRUE;
1175 return uep;
1176 }
1177 vim_memset(array, 0, sizeof(char_u *) * uep->ue_size);
1178 }
Bram Moolenaar644fdff2010-05-30 13:26:21 +02001179 else
1180 array = NULL;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001181 uep->ue_array = array;
1182
1183 for (i = 0; i < uep->ue_size; ++i)
1184 {
1185 line_len = get4c(fp);
1186 if (line_len >= 0)
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001187 line = read_string_decrypt(curbuf, fp, line_len);
Bram Moolenaar9db58062010-05-29 20:33:07 +02001188 else
1189 {
1190 line = NULL;
1191 corruption_error("line length", file_name);
1192 }
1193 if (line == NULL)
1194 {
1195 *error = TRUE;
1196 return uep;
1197 }
Bram Moolenaar9db58062010-05-29 20:33:07 +02001198 array[i] = line;
1199 }
1200 return uep;
1201}
1202
1203/*
1204 * Serialize "pos" to "fp".
1205 */
1206 static void
1207serialize_pos(pos, fp)
1208 pos_T pos;
1209 FILE *fp;
1210{
1211 put_bytes(fp, (long_u)pos.lnum, 4);
1212 put_bytes(fp, (long_u)pos.col, 4);
1213#ifdef FEAT_VIRTUALEDIT
1214 put_bytes(fp, (long_u)pos.coladd, 4);
1215#else
1216 put_bytes(fp, (long_u)0, 4);
1217#endif
1218}
1219
1220/*
1221 * Unserialize the pos_T at the current position in fp.
1222 */
1223 static void
1224unserialize_pos(pos, fp)
1225 pos_T *pos;
1226 FILE *fp;
1227{
1228 pos->lnum = get4c(fp);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001229 if (pos->lnum < 0)
1230 pos->lnum = 0;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001231 pos->col = get4c(fp);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001232 if (pos->col < 0)
1233 pos->col = 0;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001234#ifdef FEAT_VIRTUALEDIT
1235 pos->coladd = get4c(fp);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001236 if (pos->coladd < 0)
1237 pos->coladd = 0;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001238#else
1239 (void)get4c(fp);
1240#endif
1241}
1242
1243/*
1244 * Serialize "info" to "fp".
1245 */
1246 static void
1247serialize_visualinfo(info, fp)
1248 visualinfo_T *info;
1249 FILE *fp;
1250{
1251 serialize_pos(info->vi_start, fp);
1252 serialize_pos(info->vi_end, fp);
1253 put_bytes(fp, (long_u)info->vi_mode, 4);
1254 put_bytes(fp, (long_u)info->vi_curswant, 4);
1255}
1256
1257/*
1258 * Unserialize the visualinfo_T at the current position in fp.
1259 */
1260 static void
1261unserialize_visualinfo(info, fp)
1262 visualinfo_T *info;
1263 FILE *fp;
1264{
1265 unserialize_pos(&info->vi_start, fp);
1266 unserialize_pos(&info->vi_end, fp);
1267 info->vi_mode = get4c(fp);
1268 info->vi_curswant = get4c(fp);
1269}
1270
1271/*
1272 * Write the pointer to an undo header. Instead of writing the pointer itself
1273 * we use the sequence number of the header. This is converted back to
1274 * pointers when reading. */
1275 static void
1276put_header_ptr(fp, uhp)
1277 FILE *fp;
1278 u_header_T *uhp;
1279{
1280 put_bytes(fp, (long_u)(uhp != NULL ? uhp->uh_seq : 0), 4);
1281}
1282
1283/*
1284 * Write the undo tree in an undo file.
1285 * When "name" is not NULL, use it as the name of the undo file.
1286 * Otherwise use buf->b_ffname to generate the undo file name.
1287 * "buf" must never be null, buf->b_ffname is used to obtain the original file
1288 * permissions.
1289 * "forceit" is TRUE for ":wundo!", FALSE otherwise.
1290 * "hash[UNDO_HASH_SIZE]" must be the hash value of the buffer text.
1291 */
1292 void
1293u_write_undo(name, forceit, buf, hash)
1294 char_u *name;
1295 int forceit;
1296 buf_T *buf;
1297 char_u *hash;
1298{
1299 u_header_T *uhp;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001300 char_u *file_name;
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001301 int mark;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001302#ifdef U_DEBUG
1303 int headers_written = 0;
1304#endif
1305 int fd;
1306 FILE *fp = NULL;
1307 int perm;
1308 int write_ok = FALSE;
1309#ifdef UNIX
1310 int st_old_valid = FALSE;
1311 struct stat st_old;
1312 struct stat st_new;
1313#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001314#ifdef FEAT_CRYPT
1315 int do_crypt = FALSE;
1316#endif
Bram Moolenaar9db58062010-05-29 20:33:07 +02001317
1318 if (name == NULL)
1319 {
1320 file_name = u_get_undo_file_name(buf->b_ffname, FALSE);
1321 if (file_name == NULL)
1322 {
1323 if (p_verbose > 0)
Bram Moolenaar504a8212010-05-30 17:17:42 +02001324 {
1325 verbose_enter();
1326 smsg((char_u *)
1327 _("Cannot write undo file in any directory in 'undodir'"));
1328 verbose_leave();
1329 }
Bram Moolenaar9db58062010-05-29 20:33:07 +02001330 return;
1331 }
1332 }
1333 else
1334 file_name = name;
1335
1336 /*
1337 * Decide about the permission to use for the undo file. If the buffer
1338 * has a name use the permission of the original file. Otherwise only
1339 * allow the user to access the undo file.
1340 */
1341 perm = 0600;
1342 if (buf->b_ffname != NULL)
1343 {
1344#ifdef UNIX
1345 if (mch_stat((char *)buf->b_ffname, &st_old) >= 0)
1346 {
1347 perm = st_old.st_mode;
1348 st_old_valid = TRUE;
1349 }
1350#else
1351 perm = mch_getperm(buf->b_ffname);
1352 if (perm < 0)
1353 perm = 0600;
1354#endif
1355 }
1356
1357 /* strip any s-bit */
1358 perm = perm & 0777;
1359
1360 /* If the undo file already exists, verify that it actually is an undo
1361 * file, and delete it. */
1362 if (mch_getperm(file_name) >= 0)
1363 {
1364 if (name == NULL || !forceit)
1365 {
1366 /* Check we can read it and it's an undo file. */
1367 fd = mch_open((char *)file_name, O_RDONLY|O_EXTRA, 0);
1368 if (fd < 0)
1369 {
1370 if (name != NULL || p_verbose > 0)
Bram Moolenaar504a8212010-05-30 17:17:42 +02001371 {
1372 if (name == NULL)
1373 verbose_enter();
1374 smsg((char_u *)
1375 _("Will not overwrite with undo file, cannot read: %s"),
Bram Moolenaar9db58062010-05-29 20:33:07 +02001376 file_name);
Bram Moolenaar504a8212010-05-30 17:17:42 +02001377 if (name == NULL)
1378 verbose_leave();
1379 }
Bram Moolenaar9db58062010-05-29 20:33:07 +02001380 goto theend;
1381 }
1382 else
1383 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001384 char_u mbuf[UF_START_MAGIC_LEN];
Bram Moolenaar9db58062010-05-29 20:33:07 +02001385 int len;
1386
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001387 len = vim_read(fd, mbuf, UF_START_MAGIC_LEN);
Bram Moolenaar9db58062010-05-29 20:33:07 +02001388 close(fd);
1389 if (len < UF_START_MAGIC_LEN
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001390 || memcmp(mbuf, UF_START_MAGIC, UF_START_MAGIC_LEN) != 0)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001391 {
1392 if (name != NULL || p_verbose > 0)
Bram Moolenaar504a8212010-05-30 17:17:42 +02001393 {
1394 if (name == NULL)
1395 verbose_enter();
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001396 smsg((char_u *)
1397 _("Will not overwrite, this is not an undo file: %s"),
Bram Moolenaar9db58062010-05-29 20:33:07 +02001398 file_name);
Bram Moolenaar504a8212010-05-30 17:17:42 +02001399 if (name == NULL)
1400 verbose_leave();
1401 }
Bram Moolenaar9db58062010-05-29 20:33:07 +02001402 goto theend;
1403 }
1404 }
1405 }
1406 mch_remove(file_name);
1407 }
1408
Bram Moolenaar504a8212010-05-30 17:17:42 +02001409 /* If there is no undo information at all, quit here after deleting any
1410 * existing undo file. */
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001411 if (buf->b_u_numhead == 0 && buf->b_u_line_ptr == NULL)
Bram Moolenaar504a8212010-05-30 17:17:42 +02001412 {
1413 if (p_verbose > 0)
Bram Moolenaar97ea5112010-06-12 06:46:44 +02001414 verb_msg((char_u *)_("Skipping undo file write, nothing to undo"));
Bram Moolenaar504a8212010-05-30 17:17:42 +02001415 goto theend;
1416 }
1417
Bram Moolenaar9db58062010-05-29 20:33:07 +02001418 fd = mch_open((char *)file_name,
1419 O_CREAT|O_EXTRA|O_WRONLY|O_EXCL|O_NOFOLLOW, perm);
1420 if (fd < 0)
1421 {
1422 EMSG2(_(e_not_open), file_name);
1423 goto theend;
1424 }
1425 (void)mch_setperm(file_name, perm);
1426 if (p_verbose > 0)
Bram Moolenaar504a8212010-05-30 17:17:42 +02001427 {
1428 verbose_enter();
Bram Moolenaar9db58062010-05-29 20:33:07 +02001429 smsg((char_u *)_("Writing undo file: %s"), file_name);
Bram Moolenaar504a8212010-05-30 17:17:42 +02001430 verbose_leave();
1431 }
Bram Moolenaar9db58062010-05-29 20:33:07 +02001432
Bram Moolenaar6773b2b2010-05-30 16:01:37 +02001433#ifdef U_DEBUG
Bram Moolenaar504a8212010-05-30 17:17:42 +02001434 /* Check there is no problem in undo info before writing. */
Bram Moolenaar6773b2b2010-05-30 16:01:37 +02001435 u_check(FALSE);
1436#endif
1437
Bram Moolenaar9db58062010-05-29 20:33:07 +02001438#ifdef UNIX
1439 /*
1440 * Try to set the group of the undo file same as the original file. If
1441 * this fails, set the protection bits for the group same as the
1442 * protection bits for others.
1443 */
1444 if (st_old_valid && (mch_stat((char *)file_name, &st_new) >= 0
1445 && st_new.st_gid != st_old.st_gid
1446# ifdef HAVE_FCHOWN /* sequent-ptx lacks fchown() */
1447 && fchown(fd, (uid_t)-1, st_old.st_gid) != 0)
1448# endif
1449 )
1450 mch_setperm(file_name, (perm & 0707) | ((perm & 07) << 3));
1451# ifdef HAVE_SELINUX
1452 if (buf->b_ffname != NULL)
1453 mch_copy_sec(buf->b_ffname, file_name);
1454# endif
1455#endif
1456
1457 fp = fdopen(fd, "w");
1458 if (fp == NULL)
1459 {
1460 EMSG2(_(e_not_open), file_name);
1461 close(fd);
1462 mch_remove(file_name);
1463 goto theend;
1464 }
1465
Bram Moolenaar6773b2b2010-05-30 16:01:37 +02001466 /* Undo must be synced. */
1467 u_sync(TRUE);
1468
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001469 /*
1470 * Write the header.
1471 */
1472 if (serialize_header(fp, buf, hash) == FAIL)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001473 goto write_error;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001474#ifdef FEAT_CRYPT
1475 if (*buf->b_p_key)
1476 do_crypt = TRUE;
1477#endif
Bram Moolenaar9db58062010-05-29 20:33:07 +02001478
1479 /*
1480 * Iteratively serialize UHPs and their UEPs from the top down.
1481 */
1482 mark = ++lastmark;
1483 uhp = buf->b_u_oldhead;
1484 while (uhp != NULL)
1485 {
1486 /* Serialize current UHP if we haven't seen it */
1487 if (uhp->uh_walk != mark)
1488 {
1489 uhp->uh_walk = mark;
1490#ifdef U_DEBUG
1491 ++headers_written;
1492#endif
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001493 if (serialize_uhp(fp, buf, uhp) == FAIL)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001494 goto write_error;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001495 }
1496
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001497 /* Now walk through the tree - algorithm from undo_time(). */
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02001498 if (uhp->uh_prev.ptr != NULL && uhp->uh_prev.ptr->uh_walk != mark)
1499 uhp = uhp->uh_prev.ptr;
1500 else if (uhp->uh_alt_next.ptr != NULL
1501 && uhp->uh_alt_next.ptr->uh_walk != mark)
1502 uhp = uhp->uh_alt_next.ptr;
1503 else if (uhp->uh_next.ptr != NULL && uhp->uh_alt_prev.ptr == NULL
1504 && uhp->uh_next.ptr->uh_walk != mark)
1505 uhp = uhp->uh_next.ptr;
1506 else if (uhp->uh_alt_prev.ptr != NULL)
1507 uhp = uhp->uh_alt_prev.ptr;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001508 else
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02001509 uhp = uhp->uh_next.ptr;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001510 }
1511
1512 if (put_bytes(fp, (long_u)UF_HEADER_END_MAGIC, 2) == OK)
1513 write_ok = TRUE;
1514#ifdef U_DEBUG
1515 if (headers_written != buf->b_u_numhead)
1516 EMSG3("Written %ld headers, but numhead is %ld",
1517 headers_written, buf->b_u_numhead);
1518#endif
1519
1520write_error:
1521 fclose(fp);
1522 if (!write_ok)
1523 EMSG2(_("E829: write error in undo file: %s"), file_name);
1524
1525#if defined(MACOS_CLASSIC) || defined(WIN3264)
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001526 /* Copy file attributes; for systems where this can only be done after
1527 * closing the file. */
Bram Moolenaar9db58062010-05-29 20:33:07 +02001528 if (buf->b_ffname != NULL)
1529 (void)mch_copy_file_attribute(buf->b_ffname, file_name);
1530#endif
1531#ifdef HAVE_ACL
1532 if (buf->b_ffname != NULL)
1533 {
1534 vim_acl_T acl;
1535
1536 /* For systems that support ACL: get the ACL from the original file. */
1537 acl = mch_get_acl(buf->b_ffname);
1538 mch_set_acl(file_name, acl);
1539 }
1540#endif
1541
1542theend:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001543#ifdef FEAT_CRYPT
1544 if (do_crypt)
1545 crypt_pop_state();
1546#endif
Bram Moolenaar9db58062010-05-29 20:33:07 +02001547 if (file_name != name)
1548 vim_free(file_name);
1549}
1550
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001551/*
1552 * Load the undo tree from an undo file.
1553 * If "name" is not NULL use it as the undo file name. This also means being
1554 * a bit more verbose.
1555 * Otherwise use curbuf->b_ffname to generate the undo file name.
1556 * "hash[UNDO_HASH_SIZE]" must be the hash value of the buffer text.
1557 */
1558 void
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001559u_read_undo(name, hash, orig_name)
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001560 char_u *name;
1561 char_u *hash;
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001562 char_u *orig_name;
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001563{
1564 char_u *file_name;
1565 FILE *fp;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001566 long version, str_len;
Bram Moolenaara800b422010-06-27 01:15:55 +02001567 int new_version;
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001568 char_u *line_ptr = NULL;
1569 linenr_T line_lnum;
1570 colnr_T line_colnr;
1571 linenr_T line_count;
Bram Moolenaar442b4222010-05-24 21:34:22 +02001572 int num_head = 0;
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001573 long old_header_seq, new_header_seq, cur_header_seq;
1574 long seq_last, seq_cur;
Bram Moolenaarb2c03502010-07-02 20:20:09 +02001575 long last_save_nr = 0;
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001576 short old_idx = -1, new_idx = -1, cur_idx = -1;
1577 long num_read_uhps = 0;
1578 time_t seq_time;
1579 int i, j;
1580 int c;
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001581 u_header_T *uhp;
1582 u_header_T **uhp_table = NULL;
1583 char_u read_hash[UNDO_HASH_SIZE];
Bram Moolenaar9db58062010-05-29 20:33:07 +02001584 char_u magic_buf[UF_START_MAGIC_LEN];
1585#ifdef U_DEBUG
1586 int *uhp_table_used;
1587#endif
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001588#ifdef UNIX
1589 struct stat st_orig;
1590 struct stat st_undo;
1591#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001592#ifdef FEAT_CRYPT
1593 int do_decrypt = FALSE;
1594#endif
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001595
1596 if (name == NULL)
1597 {
1598 file_name = u_get_undo_file_name(curbuf->b_ffname, TRUE);
1599 if (file_name == NULL)
1600 return;
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001601
1602#ifdef UNIX
1603 /* For safety we only read an undo file if the owner is equal to the
1604 * owner of the text file. */
1605 if (mch_stat((char *)orig_name, &st_orig) >= 0
1606 && mch_stat((char *)file_name, &st_undo) >= 0
1607 && st_orig.st_uid != st_undo.st_uid)
1608 {
1609 if (p_verbose > 0)
1610 {
1611 verbose_enter();
1612 smsg((char_u *)_("Not reading undo file, owner differs: %s"),
1613 file_name);
1614 verbose_leave();
1615 }
1616 return;
1617 }
1618#endif
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001619 }
1620 else
1621 file_name = name;
1622
1623 if (p_verbose > 0)
Bram Moolenaar504a8212010-05-30 17:17:42 +02001624 {
1625 verbose_enter();
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001626 smsg((char_u *)_("Reading undo file: %s"), file_name);
Bram Moolenaar504a8212010-05-30 17:17:42 +02001627 verbose_leave();
1628 }
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001629
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001630 fp = mch_fopen((char *)file_name, "r");
1631 if (fp == NULL)
1632 {
1633 if (name != NULL || p_verbose > 0)
1634 EMSG2(_("E822: Cannot open undo file for reading: %s"), file_name);
1635 goto error;
1636 }
1637
Bram Moolenaar9db58062010-05-29 20:33:07 +02001638 /*
1639 * Read the undo file header.
1640 */
1641 if (fread(magic_buf, UF_START_MAGIC_LEN, 1, fp) != 1
1642 || memcmp(magic_buf, UF_START_MAGIC, UF_START_MAGIC_LEN) != 0)
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001643 {
Bram Moolenaar9db58062010-05-29 20:33:07 +02001644 EMSG2(_("E823: Not an undo file: %s"), file_name);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001645 goto error;
1646 }
1647 version = get2c(fp);
Bram Moolenaara800b422010-06-27 01:15:55 +02001648 if (version == UF_VERSION_CRYPT || version == UF_VERSION_CRYPT_PREV)
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001649 {
1650#ifdef FEAT_CRYPT
Bram Moolenaar56be9502010-06-06 14:20:26 +02001651 if (*curbuf->b_p_key == NUL)
1652 {
1653 EMSG2(_("E832: Non-encrypted file has encrypted undo file: %s"),
1654 file_name);
1655 goto error;
1656 }
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001657 if (prepare_crypt_read(fp) == FAIL)
1658 {
1659 EMSG2(_("E826: Undo file decryption failed: %s"), file_name);
1660 goto error;
1661 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001662 do_decrypt = TRUE;
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001663#else
Bram Moolenaar56be9502010-06-06 14:20:26 +02001664 EMSG2(_("E827: Undo file is encrypted: %s"), file_name);
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001665 goto error;
1666#endif
1667 }
Bram Moolenaara800b422010-06-27 01:15:55 +02001668 else if (version != UF_VERSION && version != UF_VERSION_PREV)
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001669 {
1670 EMSG2(_("E824: Incompatible undo file: %s"), file_name);
1671 goto error;
1672 }
Bram Moolenaara800b422010-06-27 01:15:55 +02001673 new_version = (version == UF_VERSION || version == UF_VERSION_CRYPT);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001674
Bram Moolenaarcdf04202010-05-29 15:11:47 +02001675 if (fread(read_hash, UNDO_HASH_SIZE, 1, fp) != 1)
1676 {
Bram Moolenaar9db58062010-05-29 20:33:07 +02001677 corruption_error("hash", file_name);
Bram Moolenaarcdf04202010-05-29 15:11:47 +02001678 goto error;
1679 }
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001680 line_count = (linenr_T)get4c(fp);
1681 if (memcmp(hash, read_hash, UNDO_HASH_SIZE) != 0
1682 || line_count != curbuf->b_ml.ml_line_count)
1683 {
1684 if (p_verbose > 0 || name != NULL)
1685 {
Bram Moolenaar504a8212010-05-30 17:17:42 +02001686 if (name == NULL)
1687 verbose_enter();
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001688 give_warning((char_u *)
1689 _("File contents changed, cannot use undo info"), TRUE);
Bram Moolenaar504a8212010-05-30 17:17:42 +02001690 if (name == NULL)
1691 verbose_leave();
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001692 }
1693 goto error;
1694 }
1695
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001696 /* Read undo data for "U" command. */
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001697 str_len = get4c(fp);
1698 if (str_len < 0)
1699 goto error;
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001700 if (str_len > 0)
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02001701 line_ptr = read_string_decrypt(curbuf, fp, str_len);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001702 line_lnum = (linenr_T)get4c(fp);
1703 line_colnr = (colnr_T)get4c(fp);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001704 if (line_lnum < 0 || line_colnr < 0)
1705 {
1706 corruption_error("line lnum/col", file_name);
1707 goto error;
1708 }
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001709
1710 /* Begin general undo data */
1711 old_header_seq = get4c(fp);
1712 new_header_seq = get4c(fp);
1713 cur_header_seq = get4c(fp);
1714 num_head = get4c(fp);
1715 seq_last = get4c(fp);
1716 seq_cur = get4c(fp);
Bram Moolenaarcdf04202010-05-29 15:11:47 +02001717 seq_time = get8ctime(fp);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001718
Bram Moolenaara800b422010-06-27 01:15:55 +02001719 /* Optional header fields, not in previous version. */
1720 if (new_version)
1721 for (;;)
1722 {
1723 int len = getc(fp);
1724 int what;
1725
1726 if (len == 0 || len == EOF)
1727 break;
1728 what = getc(fp);
1729 switch (what)
1730 {
1731 case UF_LAST_SAVE_NR:
1732 last_save_nr = get4c(fp);
1733 break;
1734 default:
1735 /* field not supported, skip */
1736 while (--len >= 0)
1737 (void)getc(fp);
1738 }
1739 }
1740
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001741 /* uhp_table will store the freshly created undo headers we allocate
1742 * until we insert them into curbuf. The table remains sorted by the
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02001743 * sequence numbers of the headers.
1744 * When there are no headers uhp_table is NULL. */
1745 if (num_head > 0)
1746 {
1747 uhp_table = (u_header_T **)U_ALLOC_LINE(
1748 num_head * sizeof(u_header_T *));
1749 if (uhp_table == NULL)
1750 goto error;
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02001751 }
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001752
Bram Moolenaar9db58062010-05-29 20:33:07 +02001753 while ((c = get2c(fp)) == UF_HEADER_MAGIC)
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001754 {
Bram Moolenaar6a18eb62010-05-26 21:21:00 +02001755 if (num_read_uhps >= num_head)
1756 {
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001757 corruption_error("num_head too small", file_name);
Bram Moolenaar6a18eb62010-05-26 21:21:00 +02001758 goto error;
1759 }
1760
Bram Moolenaara800b422010-06-27 01:15:55 +02001761 uhp = unserialize_uhp(fp, file_name, new_version);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001762 if (uhp == NULL)
1763 goto error;
Bram Moolenaar6773b2b2010-05-30 16:01:37 +02001764 uhp_table[num_read_uhps++] = uhp;
1765 }
1766
1767 if (num_read_uhps != num_head)
1768 {
1769 corruption_error("num_head", file_name);
1770 goto error;
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001771 }
Bram Moolenaar9db58062010-05-29 20:33:07 +02001772 if (c != UF_HEADER_END_MAGIC)
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001773 {
Bram Moolenaar9db58062010-05-29 20:33:07 +02001774 corruption_error("end marker", file_name);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001775 goto error;
1776 }
1777
Bram Moolenaar9db58062010-05-29 20:33:07 +02001778#ifdef U_DEBUG
1779 uhp_table_used = (int *)alloc_clear(
1780 (unsigned)(sizeof(int) * num_head + 1));
1781# define SET_FLAG(j) ++uhp_table_used[j]
1782#else
1783# define SET_FLAG(j)
1784#endif
1785
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02001786 /* We have put all of the headers into a table. Now we iterate through the
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02001787 * table and swizzle each sequence number we have stored in uh_*_seq into
1788 * a pointer corresponding to the header with that sequence number. */
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001789 for (i = 0; i < num_head; i++)
1790 {
1791 uhp = uhp_table[i];
1792 if (uhp == NULL)
1793 continue;
1794 for (j = 0; j < num_head; j++)
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02001795 if (uhp_table[j] != NULL && i != j
1796 && uhp_table[i]->uh_seq == uhp_table[j]->uh_seq)
Bram Moolenaar6773b2b2010-05-30 16:01:37 +02001797 {
1798 corruption_error("duplicate uh_seq", file_name);
1799 goto error;
1800 }
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02001801 for (j = 0; j < num_head; j++)
1802 if (uhp_table[j] != NULL
1803 && uhp_table[j]->uh_seq == uhp->uh_next.seq)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001804 {
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02001805 uhp->uh_next.ptr = uhp_table[j];
Bram Moolenaar9db58062010-05-29 20:33:07 +02001806 SET_FLAG(j);
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02001807 break;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001808 }
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02001809 for (j = 0; j < num_head; j++)
1810 if (uhp_table[j] != NULL
1811 && uhp_table[j]->uh_seq == uhp->uh_prev.seq)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001812 {
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02001813 uhp->uh_prev.ptr = uhp_table[j];
Bram Moolenaar9db58062010-05-29 20:33:07 +02001814 SET_FLAG(j);
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02001815 break;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001816 }
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02001817 for (j = 0; j < num_head; j++)
1818 if (uhp_table[j] != NULL
1819 && uhp_table[j]->uh_seq == uhp->uh_alt_next.seq)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001820 {
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02001821 uhp->uh_alt_next.ptr = uhp_table[j];
Bram Moolenaar9db58062010-05-29 20:33:07 +02001822 SET_FLAG(j);
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02001823 break;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001824 }
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02001825 for (j = 0; j < num_head; j++)
1826 if (uhp_table[j] != NULL
1827 && uhp_table[j]->uh_seq == uhp->uh_alt_prev.seq)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001828 {
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02001829 uhp->uh_alt_prev.ptr = uhp_table[j];
Bram Moolenaar9db58062010-05-29 20:33:07 +02001830 SET_FLAG(j);
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02001831 break;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001832 }
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001833 if (old_header_seq > 0 && old_idx < 0 && uhp->uh_seq == old_header_seq)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001834 {
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001835 old_idx = i;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001836 SET_FLAG(i);
1837 }
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001838 if (new_header_seq > 0 && new_idx < 0 && uhp->uh_seq == new_header_seq)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001839 {
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001840 new_idx = i;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001841 SET_FLAG(i);
1842 }
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001843 if (cur_header_seq > 0 && cur_idx < 0 && uhp->uh_seq == cur_header_seq)
Bram Moolenaar9db58062010-05-29 20:33:07 +02001844 {
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001845 cur_idx = i;
Bram Moolenaar9db58062010-05-29 20:33:07 +02001846 SET_FLAG(i);
1847 }
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001848 }
Bram Moolenaar9db58062010-05-29 20:33:07 +02001849
1850 /* Now that we have read the undo info successfully, free the current undo
1851 * info and use the info from the file. */
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001852 u_blockfree(curbuf);
Bram Moolenaar9db58062010-05-29 20:33:07 +02001853 curbuf->b_u_oldhead = old_idx < 0 ? NULL : uhp_table[old_idx];
1854 curbuf->b_u_newhead = new_idx < 0 ? NULL : uhp_table[new_idx];
1855 curbuf->b_u_curhead = cur_idx < 0 ? NULL : uhp_table[cur_idx];
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001856 curbuf->b_u_line_ptr = line_ptr;
1857 curbuf->b_u_line_lnum = line_lnum;
1858 curbuf->b_u_line_colnr = line_colnr;
1859 curbuf->b_u_numhead = num_head;
1860 curbuf->b_u_seq_last = seq_last;
1861 curbuf->b_u_seq_cur = seq_cur;
Bram Moolenaara800b422010-06-27 01:15:55 +02001862 curbuf->b_u_time_cur = seq_time;
Bram Moolenaar730cde92010-06-27 05:18:54 +02001863 curbuf->b_u_save_nr_last = last_save_nr;
Bram Moolenaar6773b2b2010-05-30 16:01:37 +02001864
1865 curbuf->b_u_synced = TRUE;
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02001866 vim_free(uhp_table);
Bram Moolenaar9db58062010-05-29 20:33:07 +02001867
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001868#ifdef U_DEBUG
Bram Moolenaar9db58062010-05-29 20:33:07 +02001869 for (i = 0; i < num_head; ++i)
1870 if (uhp_table_used[i] == 0)
1871 EMSGN("uhp_table entry %ld not used, leaking memory", i);
1872 vim_free(uhp_table_used);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001873 u_check(TRUE);
1874#endif
Bram Moolenaar9db58062010-05-29 20:33:07 +02001875
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001876 if (name != NULL)
1877 smsg((char_u *)_("Finished reading undo file %s"), file_name);
1878 goto theend;
1879
1880error:
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02001881 vim_free(line_ptr);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001882 if (uhp_table != NULL)
1883 {
Bram Moolenaar6773b2b2010-05-30 16:01:37 +02001884 for (i = 0; i < num_read_uhps; i++)
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001885 if (uhp_table[i] != NULL)
Bram Moolenaar6a18eb62010-05-26 21:21:00 +02001886 u_free_uhp(uhp_table[i]);
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02001887 vim_free(uhp_table);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001888 }
1889
1890theend:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001891#ifdef FEAT_CRYPT
1892 if (do_decrypt)
1893 crypt_pop_state();
1894#endif
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001895 if (fp != NULL)
1896 fclose(fp);
1897 if (file_name != name)
1898 vim_free(file_name);
1899 return;
1900}
1901
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001902#endif /* FEAT_PERSISTENT_UNDO */
1903
1904
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905/*
1906 * If 'cpoptions' contains 'u': Undo the previous undo or redo (vi compatible).
1907 * If 'cpoptions' does not contain 'u': Always undo.
1908 */
1909 void
1910u_undo(count)
1911 int count;
1912{
1913 /*
1914 * If we get an undo command while executing a macro, we behave like the
1915 * original vi. If this happens twice in one macro the result will not
1916 * be compatible.
1917 */
1918 if (curbuf->b_u_synced == FALSE)
1919 {
Bram Moolenaar779b74b2006-04-10 14:55:34 +00001920 u_sync(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921 count = 1;
1922 }
1923
1924 if (vim_strchr(p_cpo, CPO_UNDO) == NULL)
1925 undo_undoes = TRUE;
1926 else
1927 undo_undoes = !undo_undoes;
1928 u_doit(count);
1929}
1930
1931/*
1932 * If 'cpoptions' contains 'u': Repeat the previous undo or redo.
1933 * If 'cpoptions' does not contain 'u': Always redo.
1934 */
1935 void
1936u_redo(count)
1937 int count;
1938{
1939 if (vim_strchr(p_cpo, CPO_UNDO) == NULL)
1940 undo_undoes = FALSE;
1941 u_doit(count);
1942}
1943
1944/*
1945 * Undo or redo, depending on 'undo_undoes', 'count' times.
1946 */
1947 static void
Bram Moolenaarca003e12006-03-17 23:19:38 +00001948u_doit(startcount)
1949 int startcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950{
Bram Moolenaarca003e12006-03-17 23:19:38 +00001951 int count = startcount;
1952
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00001953 if (!undo_allowed())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955
1956 u_newcount = 0;
1957 u_oldcount = 0;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001958 if (curbuf->b_ml.ml_flags & ML_EMPTY)
1959 u_oldcount = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960 while (count--)
1961 {
Bram Moolenaarb0b50882010-07-07 18:26:28 +02001962 /* Do the change warning now, so that it triggers FileChangedRO when
1963 * needed. This may cause the file to be reloaded, that must happen
1964 * before we do anything, because it may change curbuf->b_u_curhead
1965 * and more. */
1966 change_warning(0);
1967
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 if (undo_undoes)
1969 {
1970 if (curbuf->b_u_curhead == NULL) /* first undo */
1971 curbuf->b_u_curhead = curbuf->b_u_newhead;
1972 else if (p_ul > 0) /* multi level undo */
1973 /* get next undo */
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02001974 curbuf->b_u_curhead = curbuf->b_u_curhead->uh_next.ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975 /* nothing to undo */
1976 if (curbuf->b_u_numhead == 0 || curbuf->b_u_curhead == NULL)
1977 {
1978 /* stick curbuf->b_u_curhead at end */
1979 curbuf->b_u_curhead = curbuf->b_u_oldhead;
1980 beep_flush();
Bram Moolenaarca003e12006-03-17 23:19:38 +00001981 if (count == startcount - 1)
1982 {
1983 MSG(_("Already at oldest change"));
1984 return;
1985 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986 break;
1987 }
1988
Bram Moolenaarca003e12006-03-17 23:19:38 +00001989 u_undoredo(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990 }
1991 else
1992 {
1993 if (curbuf->b_u_curhead == NULL || p_ul <= 0)
1994 {
1995 beep_flush(); /* nothing to redo */
Bram Moolenaarca003e12006-03-17 23:19:38 +00001996 if (count == startcount - 1)
1997 {
1998 MSG(_("Already at newest change"));
1999 return;
2000 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 break;
2002 }
2003
Bram Moolenaarca003e12006-03-17 23:19:38 +00002004 u_undoredo(FALSE);
Bram Moolenaar1e607892006-03-13 22:15:53 +00002005
2006 /* Advance for next redo. Set "newhead" when at the end of the
2007 * redoable changes. */
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002008 if (curbuf->b_u_curhead->uh_prev.ptr == NULL)
Bram Moolenaar1e607892006-03-13 22:15:53 +00002009 curbuf->b_u_newhead = curbuf->b_u_curhead;
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002010 curbuf->b_u_curhead = curbuf->b_u_curhead->uh_prev.ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 }
2012 }
Bram Moolenaardb552d602006-03-23 22:59:57 +00002013 u_undo_end(undo_undoes, FALSE);
Bram Moolenaar1e607892006-03-13 22:15:53 +00002014}
2015
Bram Moolenaar1e607892006-03-13 22:15:53 +00002016/*
2017 * Undo or redo over the timeline.
2018 * When "step" is negative go back in time, otherwise goes forward in time.
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002019 * When "sec" is FALSE make "step" steps, when "sec" is TRUE use "step" as
2020 * seconds.
Bram Moolenaar730cde92010-06-27 05:18:54 +02002021 * When "file" is TRUE use "step" as a number of file writes.
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002022 * When "absolute" is TRUE use "step" as the sequence number to jump to.
2023 * "sec" must be FALSE then.
Bram Moolenaar1e607892006-03-13 22:15:53 +00002024 */
2025 void
Bram Moolenaar730cde92010-06-27 05:18:54 +02002026undo_time(step, sec, file, absolute)
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002027 long step;
2028 int sec;
Bram Moolenaar730cde92010-06-27 05:18:54 +02002029 int file;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002030 int absolute;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002031{
2032 long target;
2033 long closest;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002034 long closest_start;
2035 long closest_seq = 0;
2036 long val;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002037 u_header_T *uhp;
2038 u_header_T *last;
2039 int mark;
2040 int nomark;
2041 int round;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002042 int dosec = sec;
Bram Moolenaar730cde92010-06-27 05:18:54 +02002043 int dofile = file;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002044 int above = FALSE;
Bram Moolenaar433f7c82006-03-21 21:29:36 +00002045 int did_undo = TRUE;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002046
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00002047 /* First make sure the current undoable change is synced. */
2048 if (curbuf->b_u_synced == FALSE)
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002049 u_sync(TRUE);
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00002050
Bram Moolenaar1e607892006-03-13 22:15:53 +00002051 u_newcount = 0;
2052 u_oldcount = 0;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002053 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaar1e607892006-03-13 22:15:53 +00002054 u_oldcount = -1;
2055
Bram Moolenaarca003e12006-03-17 23:19:38 +00002056 /* "target" is the node below which we want to be.
2057 * Init "closest" to a value we can't reach. */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002058 if (absolute)
2059 {
2060 target = step;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002061 closest = -1;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002062 }
Bram Moolenaarca003e12006-03-17 23:19:38 +00002063 else
Bram Moolenaar1e607892006-03-13 22:15:53 +00002064 {
Bram Moolenaarca003e12006-03-17 23:19:38 +00002065 /* When doing computations with time_t subtract starttime, because
2066 * time_t converted to a long may result in a wrong number. */
Bram Moolenaar730cde92010-06-27 05:18:54 +02002067 if (dosec)
Bram Moolenaara800b422010-06-27 01:15:55 +02002068 target = (long)(curbuf->b_u_time_cur - starttime) + step;
Bram Moolenaar730cde92010-06-27 05:18:54 +02002069 else if (dofile)
2070 {
2071 if (step < 0)
2072 {
2073 /* Going back to a previous write. If there were changes after
2074 * the last write, count that as moving one file-write, so
2075 * that ":earlier 1f" undoes all changes since the last save. */
2076 uhp = curbuf->b_u_curhead;
2077 if (uhp != NULL)
2078 uhp = uhp->uh_next.ptr;
2079 else
2080 uhp = curbuf->b_u_newhead;
2081 if (uhp != NULL && uhp->uh_save_nr != 0)
2082 /* "uh_save_nr" was set in the last block, that means
2083 * there were no changes since the last write */
2084 target = curbuf->b_u_save_nr_cur + step;
2085 else
2086 /* count the changes since the last write as one step */
2087 target = curbuf->b_u_save_nr_cur + step + 1;
2088 if (target <= 0)
2089 /* Go to before first write: before the oldest change. Use
2090 * the sequence number for that. */
2091 dofile = FALSE;
2092 }
2093 else
2094 {
2095 /* Moving forward to a newer write. */
2096 target = curbuf->b_u_save_nr_cur + step;
2097 if (target > curbuf->b_u_save_nr_last)
2098 {
2099 /* Go to after last write: after the latest change. Use
2100 * the sequence number for that. */
2101 target = curbuf->b_u_seq_last + 1;
2102 dofile = FALSE;
2103 }
2104 }
2105 }
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002106 else
2107 target = curbuf->b_u_seq_cur + step;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002108 if (step < 0)
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002109 {
Bram Moolenaarca003e12006-03-17 23:19:38 +00002110 if (target < 0)
2111 target = 0;
2112 closest = -1;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002113 }
2114 else
2115 {
Bram Moolenaar730cde92010-06-27 05:18:54 +02002116 if (dosec)
Bram Moolenaardb552d602006-03-23 22:59:57 +00002117 closest = (long)(time(NULL) - starttime + 1);
Bram Moolenaar730cde92010-06-27 05:18:54 +02002118 else if (dofile)
2119 closest = curbuf->b_u_save_nr_last + 2;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002120 else
2121 closest = curbuf->b_u_seq_last + 2;
2122 if (target >= closest)
2123 target = closest - 1;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002124 }
Bram Moolenaar1e607892006-03-13 22:15:53 +00002125 }
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002126 closest_start = closest;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002127 closest_seq = curbuf->b_u_seq_cur;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002128
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002129 /*
2130 * May do this twice:
Bram Moolenaar1e607892006-03-13 22:15:53 +00002131 * 1. Search for "target", update "closest" to the best match found.
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002132 * 2. If "target" not found search for "closest".
2133 *
2134 * When using the closest time we use the sequence number in the second
2135 * round, because there may be several entries with the same time.
2136 */
Bram Moolenaar1e607892006-03-13 22:15:53 +00002137 for (round = 1; round <= 2; ++round)
2138 {
2139 /* Find the path from the current state to where we want to go. The
2140 * desired state can be anywhere in the undo tree, need to go all over
2141 * it. We put "nomark" in uh_walk where we have been without success,
2142 * "mark" where it could possibly be. */
2143 mark = ++lastmark;
2144 nomark = ++lastmark;
2145
2146 if (curbuf->b_u_curhead == NULL) /* at leaf of the tree */
2147 uhp = curbuf->b_u_newhead;
2148 else
2149 uhp = curbuf->b_u_curhead;
2150
2151 while (uhp != NULL)
2152 {
2153 uhp->uh_walk = mark;
Bram Moolenaar730cde92010-06-27 05:18:54 +02002154 if (dosec)
2155 val = (long)(uhp->uh_time - starttime);
2156 else if (dofile)
2157 val = uhp->uh_save_nr;
2158 else
2159 val = uhp->uh_seq;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002160
Bram Moolenaar730cde92010-06-27 05:18:54 +02002161 if (round == 1 && !(dofile && val == 0))
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002162 {
2163 /* Remember the header that is closest to the target.
2164 * It must be at least in the right direction (checked with
Bram Moolenaarca003e12006-03-17 23:19:38 +00002165 * "b_u_seq_cur"). When the timestamp is equal find the
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002166 * highest/lowest sequence number. */
Bram Moolenaarca003e12006-03-17 23:19:38 +00002167 if ((step < 0 ? uhp->uh_seq <= curbuf->b_u_seq_cur
2168 : uhp->uh_seq > curbuf->b_u_seq_cur)
2169 && ((dosec && val == closest)
2170 ? (step < 0
2171 ? uhp->uh_seq < closest_seq
2172 : uhp->uh_seq > closest_seq)
2173 : closest == closest_start
2174 || (val > target
2175 ? (closest > target
2176 ? val - target <= closest - target
2177 : val - target <= target - closest)
2178 : (closest > target
2179 ? target - val <= closest - target
2180 : target - val <= target - closest))))
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002181 {
2182 closest = val;
2183 closest_seq = uhp->uh_seq;
2184 }
2185 }
2186
2187 /* Quit searching when we found a match. But when searching for a
2188 * time we need to continue looking for the best uh_seq. */
2189 if (target == val && !dosec)
Bram Moolenaar730cde92010-06-27 05:18:54 +02002190 {
2191 target = uhp->uh_seq;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002192 break;
Bram Moolenaar730cde92010-06-27 05:18:54 +02002193 }
Bram Moolenaar1e607892006-03-13 22:15:53 +00002194
2195 /* go down in the tree if we haven't been there */
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002196 if (uhp->uh_prev.ptr != NULL && uhp->uh_prev.ptr->uh_walk != nomark
2197 && uhp->uh_prev.ptr->uh_walk != mark)
2198 uhp = uhp->uh_prev.ptr;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002199
2200 /* go to alternate branch if we haven't been there */
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002201 else if (uhp->uh_alt_next.ptr != NULL
2202 && uhp->uh_alt_next.ptr->uh_walk != nomark
2203 && uhp->uh_alt_next.ptr->uh_walk != mark)
2204 uhp = uhp->uh_alt_next.ptr;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002205
2206 /* go up in the tree if we haven't been there and we are at the
2207 * start of alternate branches */
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002208 else if (uhp->uh_next.ptr != NULL && uhp->uh_alt_prev.ptr == NULL
2209 && uhp->uh_next.ptr->uh_walk != nomark
2210 && uhp->uh_next.ptr->uh_walk != mark)
Bram Moolenaardb552d602006-03-23 22:59:57 +00002211 {
2212 /* If still at the start we don't go through this change. */
2213 if (uhp == curbuf->b_u_curhead)
2214 uhp->uh_walk = nomark;
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002215 uhp = uhp->uh_next.ptr;
Bram Moolenaardb552d602006-03-23 22:59:57 +00002216 }
Bram Moolenaar1e607892006-03-13 22:15:53 +00002217
2218 else
2219 {
2220 /* need to backtrack; mark this node as useless */
2221 uhp->uh_walk = nomark;
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002222 if (uhp->uh_alt_prev.ptr != NULL)
2223 uhp = uhp->uh_alt_prev.ptr;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002224 else
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002225 uhp = uhp->uh_next.ptr;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002226 }
2227 }
2228
2229 if (uhp != NULL) /* found it */
2230 break;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002231
2232 if (absolute)
2233 {
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002234 EMSGN(_("E830: Undo number %ld not found"), step);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002235 return;
2236 }
2237
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002238 if (closest == closest_start)
Bram Moolenaar1e607892006-03-13 22:15:53 +00002239 {
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002240 if (step < 0)
2241 MSG(_("Already at oldest change"));
2242 else
2243 MSG(_("Already at newest change"));
Bram Moolenaar1e607892006-03-13 22:15:53 +00002244 return;
2245 }
2246
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002247 target = closest_seq;
2248 dosec = FALSE;
Bram Moolenaar730cde92010-06-27 05:18:54 +02002249 dofile = FALSE;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002250 if (step < 0)
2251 above = TRUE; /* stop above the header */
Bram Moolenaar1e607892006-03-13 22:15:53 +00002252 }
2253
2254 /* If we found it: Follow the path to go to where we want to be. */
2255 if (uhp != NULL)
2256 {
2257 /*
2258 * First go up the tree as much as needed.
2259 */
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002260 while (!got_int)
Bram Moolenaar1e607892006-03-13 22:15:53 +00002261 {
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002262 /* Do the change warning now, for the same reason as above. */
2263 change_warning(0);
2264
Bram Moolenaar1e607892006-03-13 22:15:53 +00002265 uhp = curbuf->b_u_curhead;
2266 if (uhp == NULL)
2267 uhp = curbuf->b_u_newhead;
2268 else
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002269 uhp = uhp->uh_next.ptr;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002270 if (uhp == NULL || uhp->uh_walk != mark
2271 || (uhp->uh_seq == target && !above))
Bram Moolenaar1e607892006-03-13 22:15:53 +00002272 break;
2273 curbuf->b_u_curhead = uhp;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002274 u_undoredo(TRUE);
Bram Moolenaar1e607892006-03-13 22:15:53 +00002275 uhp->uh_walk = nomark; /* don't go back down here */
Bram Moolenaar1e607892006-03-13 22:15:53 +00002276 }
2277
2278 /*
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002279 * And now go down the tree (redo), branching off where needed.
Bram Moolenaar1e607892006-03-13 22:15:53 +00002280 */
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002281 while (!got_int)
Bram Moolenaar1e607892006-03-13 22:15:53 +00002282 {
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002283 /* Do the change warning now, for the same reason as above. */
2284 change_warning(0);
2285
2286 uhp = curbuf->b_u_curhead;
2287 if (uhp == NULL)
2288 break;
2289
Bram Moolenaar89ed3df2007-01-09 19:23:12 +00002290 /* Go back to the first branch with a mark. */
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002291 while (uhp->uh_alt_prev.ptr != NULL
2292 && uhp->uh_alt_prev.ptr->uh_walk == mark)
2293 uhp = uhp->uh_alt_prev.ptr;
Bram Moolenaar89ed3df2007-01-09 19:23:12 +00002294
Bram Moolenaar1e607892006-03-13 22:15:53 +00002295 /* Find the last branch with a mark, that's the one. */
2296 last = uhp;
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002297 while (last->uh_alt_next.ptr != NULL
2298 && last->uh_alt_next.ptr->uh_walk == mark)
2299 last = last->uh_alt_next.ptr;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002300 if (last != uhp)
2301 {
2302 /* Make the used branch the first entry in the list of
2303 * alternatives to make "u" and CTRL-R take this branch. */
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002304 while (uhp->uh_alt_prev.ptr != NULL)
2305 uhp = uhp->uh_alt_prev.ptr;
2306 if (last->uh_alt_next.ptr != NULL)
2307 last->uh_alt_next.ptr->uh_alt_prev.ptr =
2308 last->uh_alt_prev.ptr;
2309 last->uh_alt_prev.ptr->uh_alt_next.ptr = last->uh_alt_next.ptr;
2310 last->uh_alt_prev.ptr = NULL;
2311 last->uh_alt_next.ptr = uhp;
2312 uhp->uh_alt_prev.ptr = last;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002313
Bram Moolenaar8f1f6292010-05-30 16:55:22 +02002314 if (curbuf->b_u_oldhead == uhp)
2315 curbuf->b_u_oldhead = last;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002316 uhp = last;
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002317 if (uhp->uh_next.ptr != NULL)
2318 uhp->uh_next.ptr->uh_prev.ptr = uhp;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002319 }
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002320 curbuf->b_u_curhead = uhp;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002321
2322 if (uhp->uh_walk != mark)
2323 break; /* must have reached the target */
2324
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002325 /* Stop when going backwards in time and didn't find the exact
2326 * header we were looking for. */
2327 if (uhp->uh_seq == target && above)
Bram Moolenaardb552d602006-03-23 22:59:57 +00002328 {
2329 curbuf->b_u_seq_cur = target - 1;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002330 break;
Bram Moolenaardb552d602006-03-23 22:59:57 +00002331 }
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002332
Bram Moolenaarca003e12006-03-17 23:19:38 +00002333 u_undoredo(FALSE);
Bram Moolenaar1e607892006-03-13 22:15:53 +00002334
2335 /* Advance "curhead" to below the header we last used. If it
2336 * becomes NULL then we need to set "newhead" to this leaf. */
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002337 if (uhp->uh_prev.ptr == NULL)
Bram Moolenaar1e607892006-03-13 22:15:53 +00002338 curbuf->b_u_newhead = uhp;
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002339 curbuf->b_u_curhead = uhp->uh_prev.ptr;
Bram Moolenaar433f7c82006-03-21 21:29:36 +00002340 did_undo = FALSE;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002341
2342 if (uhp->uh_seq == target) /* found it! */
2343 break;
2344
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002345 uhp = uhp->uh_prev.ptr;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002346 if (uhp == NULL || uhp->uh_walk != mark)
2347 {
Bram Moolenaarca003e12006-03-17 23:19:38 +00002348 /* Need to redo more but can't find it... */
Bram Moolenaar1e607892006-03-13 22:15:53 +00002349 EMSG2(_(e_intern2), "undo_time()");
2350 break;
2351 }
2352 }
2353 }
Bram Moolenaardb552d602006-03-23 22:59:57 +00002354 u_undo_end(did_undo, absolute);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355}
2356
2357/*
2358 * u_undoredo: common code for undo and redo
2359 *
2360 * The lines in the file are replaced by the lines in the entry list at
2361 * curbuf->b_u_curhead. The replaced lines in the file are saved in the entry
2362 * list for the next undo/redo.
Bram Moolenaarca003e12006-03-17 23:19:38 +00002363 *
2364 * When "undo" is TRUE we go up in the tree, when FALSE we go down.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365 */
2366 static void
Bram Moolenaarca003e12006-03-17 23:19:38 +00002367u_undoredo(undo)
2368 int undo;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369{
2370 char_u **newarray = NULL;
2371 linenr_T oldsize;
2372 linenr_T newsize;
2373 linenr_T top, bot;
2374 linenr_T lnum;
2375 linenr_T newlnum = MAXLNUM;
2376 long i;
2377 u_entry_T *uep, *nuep;
2378 u_entry_T *newlist = NULL;
2379 int old_flags;
2380 int new_flags;
2381 pos_T namedm[NMARKS];
Bram Moolenaara23ccb82006-02-27 00:08:02 +00002382#ifdef FEAT_VISUAL
2383 visualinfo_T visualinfo;
2384#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385 int empty_buffer; /* buffer became empty */
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002386 u_header_T *curhead = curbuf->b_u_curhead;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002388#ifdef FEAT_AUTOCMD
2389 /* Don't want autocommands using the undo structures here, they are
2390 * invalid till the end. */
2391 block_autocmds();
2392#endif
2393
Bram Moolenaarfecb6602007-10-01 20:54:15 +00002394#ifdef U_DEBUG
2395 u_check(FALSE);
2396#endif
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002397 old_flags = curhead->uh_flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398 new_flags = (curbuf->b_changed ? UH_CHANGED : 0) +
2399 ((curbuf->b_ml.ml_flags & ML_EMPTY) ? UH_EMPTYBUF : 0);
2400 setpcmark();
2401
2402 /*
2403 * save marks before undo/redo
2404 */
2405 mch_memmove(namedm, curbuf->b_namedm, sizeof(pos_T) * NMARKS);
Bram Moolenaara23ccb82006-02-27 00:08:02 +00002406#ifdef FEAT_VISUAL
2407 visualinfo = curbuf->b_visual;
2408#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409 curbuf->b_op_start.lnum = curbuf->b_ml.ml_line_count;
2410 curbuf->b_op_start.col = 0;
2411 curbuf->b_op_end.lnum = 0;
2412 curbuf->b_op_end.col = 0;
2413
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002414 for (uep = curhead->uh_entry; uep != NULL; uep = nuep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415 {
2416 top = uep->ue_top;
2417 bot = uep->ue_bot;
2418 if (bot == 0)
2419 bot = curbuf->b_ml.ml_line_count + 1;
2420 if (top > curbuf->b_ml.ml_line_count || top >= bot
2421 || bot > curbuf->b_ml.ml_line_count + 1)
2422 {
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002423#ifdef FEAT_AUTOCMD
2424 unblock_autocmds();
2425#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 EMSG(_("E438: u_undo: line numbers wrong"));
2427 changed(); /* don't want UNCHANGED now */
2428 return;
2429 }
2430
2431 oldsize = bot - top - 1; /* number of lines before undo */
2432 newsize = uep->ue_size; /* number of lines after undo */
2433
2434 if (top < newlnum)
2435 {
2436 /* If the saved cursor is somewhere in this undo block, move it to
2437 * the remembered position. Makes "gwap" put the cursor back
2438 * where it was. */
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002439 lnum = curhead->uh_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 if (lnum >= top && lnum <= top + newsize + 1)
2441 {
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002442 curwin->w_cursor = curhead->uh_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443 newlnum = curwin->w_cursor.lnum - 1;
2444 }
2445 else
2446 {
2447 /* Use the first line that actually changed. Avoids that
2448 * undoing auto-formatting puts the cursor in the previous
2449 * line. */
2450 for (i = 0; i < newsize && i < oldsize; ++i)
2451 if (STRCMP(uep->ue_array[i], ml_get(top + 1 + i)) != 0)
2452 break;
2453 if (i == newsize && newlnum == MAXLNUM && uep->ue_next == NULL)
2454 {
2455 newlnum = top;
2456 curwin->w_cursor.lnum = newlnum + 1;
2457 }
2458 else if (i < newsize)
2459 {
2460 newlnum = top + i;
2461 curwin->w_cursor.lnum = newlnum + 1;
2462 }
2463 }
2464 }
2465
2466 empty_buffer = FALSE;
2467
2468 /* delete the lines between top and bot and save them in newarray */
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002469 if (oldsize > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470 {
Bram Moolenaar26a60b42005-02-22 08:49:11 +00002471 if ((newarray = (char_u **)U_ALLOC_LINE(
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02002472 sizeof(char_u *) * oldsize)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002473 {
2474 do_outofmem_msg((long_u)(sizeof(char_u *) * oldsize));
2475 /*
2476 * We have messed up the entry list, repair is impossible.
2477 * we have to free the rest of the list.
2478 */
2479 while (uep != NULL)
2480 {
2481 nuep = uep->ue_next;
2482 u_freeentry(uep, uep->ue_size);
2483 uep = nuep;
2484 }
2485 break;
2486 }
2487 /* delete backwards, it goes faster in most cases */
2488 for (lnum = bot - 1, i = oldsize; --i >= 0; --lnum)
2489 {
2490 /* what can we do when we run out of memory? */
2491 if ((newarray[i] = u_save_line(lnum)) == NULL)
2492 do_outofmem_msg((long_u)0);
2493 /* remember we deleted the last line in the buffer, and a
2494 * dummy empty line will be inserted */
2495 if (curbuf->b_ml.ml_line_count == 1)
2496 empty_buffer = TRUE;
2497 ml_delete(lnum, FALSE);
2498 }
2499 }
Bram Moolenaar8d343302005-07-12 22:46:17 +00002500 else
2501 newarray = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502
2503 /* insert the lines in u_array between top and bot */
2504 if (newsize)
2505 {
2506 for (lnum = top, i = 0; i < newsize; ++i, ++lnum)
2507 {
2508 /*
2509 * If the file is empty, there is an empty line 1 that we
2510 * should get rid of, by replacing it with the new line
2511 */
2512 if (empty_buffer && lnum == 0)
2513 ml_replace((linenr_T)1, uep->ue_array[i], TRUE);
2514 else
2515 ml_append(lnum, uep->ue_array[i], (colnr_T)0, FALSE);
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02002516 vim_free(uep->ue_array[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517 }
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02002518 vim_free((char_u *)uep->ue_array);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002519 }
2520
2521 /* adjust marks */
2522 if (oldsize != newsize)
2523 {
2524 mark_adjust(top + 1, top + oldsize, (long)MAXLNUM,
2525 (long)newsize - (long)oldsize);
2526 if (curbuf->b_op_start.lnum > top + oldsize)
2527 curbuf->b_op_start.lnum += newsize - oldsize;
2528 if (curbuf->b_op_end.lnum > top + oldsize)
2529 curbuf->b_op_end.lnum += newsize - oldsize;
2530 }
2531
2532 changed_lines(top + 1, 0, bot, newsize - oldsize);
2533
2534 /* set '[ and '] mark */
2535 if (top + 1 < curbuf->b_op_start.lnum)
2536 curbuf->b_op_start.lnum = top + 1;
2537 if (newsize == 0 && top + 1 > curbuf->b_op_end.lnum)
2538 curbuf->b_op_end.lnum = top + 1;
2539 else if (top + newsize > curbuf->b_op_end.lnum)
2540 curbuf->b_op_end.lnum = top + newsize;
2541
2542 u_newcount += newsize;
2543 u_oldcount += oldsize;
2544 uep->ue_size = oldsize;
2545 uep->ue_array = newarray;
2546 uep->ue_bot = top + newsize + 1;
2547
2548 /*
2549 * insert this entry in front of the new entry list
2550 */
2551 nuep = uep->ue_next;
2552 uep->ue_next = newlist;
2553 newlist = uep;
2554 }
2555
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002556 curhead->uh_entry = newlist;
2557 curhead->uh_flags = new_flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 if ((old_flags & UH_EMPTYBUF) && bufempty())
2559 curbuf->b_ml.ml_flags |= ML_EMPTY;
2560 if (old_flags & UH_CHANGED)
2561 changed();
2562 else
Bram Moolenaar009b2592004-10-24 19:18:58 +00002563#ifdef FEAT_NETBEANS_INTG
2564 /* per netbeans undo rules, keep it as modified */
2565 if (!isNetbeansModified(curbuf))
2566#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 unchanged(curbuf, FALSE);
2568
2569 /*
2570 * restore marks from before undo/redo
2571 */
2572 for (i = 0; i < NMARKS; ++i)
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002573 if (curhead->uh_namedm[i].lnum != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 {
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002575 curbuf->b_namedm[i] = curhead->uh_namedm[i];
2576 curhead->uh_namedm[i] = namedm[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00002578#ifdef FEAT_VISUAL
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002579 if (curhead->uh_visual.vi_start.lnum != 0)
Bram Moolenaara23ccb82006-02-27 00:08:02 +00002580 {
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002581 curbuf->b_visual = curhead->uh_visual;
2582 curhead->uh_visual = visualinfo;
Bram Moolenaara23ccb82006-02-27 00:08:02 +00002583 }
2584#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585
2586 /*
2587 * If the cursor is only off by one line, put it at the same position as
2588 * before starting the change (for the "o" command).
2589 * Otherwise the cursor should go to the first undone line.
2590 */
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002591 if (curhead->uh_cursor.lnum + 1 == curwin->w_cursor.lnum
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 && curwin->w_cursor.lnum > 1)
2593 --curwin->w_cursor.lnum;
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002594 if (curhead->uh_cursor.lnum == curwin->w_cursor.lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 {
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002596 curwin->w_cursor.col = curhead->uh_cursor.col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002598 if (virtual_active() && curhead->uh_cursor_vcol >= 0)
2599 coladvance((colnr_T)curhead->uh_cursor_vcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 else
2601 curwin->w_cursor.coladd = 0;
2602#endif
2603 }
2604 else if (curwin->w_cursor.lnum <= curbuf->b_ml.ml_line_count)
2605 beginline(BL_SOL | BL_FIX);
2606 else
2607 {
2608 /* We get here with the current cursor line being past the end (eg
2609 * after adding lines at the end of the file, and then undoing it).
2610 * check_cursor() will move the cursor to the last line. Move it to
2611 * the first column here. */
2612 curwin->w_cursor.col = 0;
2613#ifdef FEAT_VIRTUALEDIT
2614 curwin->w_cursor.coladd = 0;
2615#endif
2616 }
2617
2618 /* Make sure the cursor is on an existing line and column. */
2619 check_cursor();
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002620
2621 /* Remember where we are for "g-" and ":earlier 10s". */
2622 curbuf->b_u_seq_cur = curhead->uh_seq;
Bram Moolenaarca003e12006-03-17 23:19:38 +00002623 if (undo)
2624 /* We are below the previous undo. However, to make ":earlier 1s"
2625 * work we compute this as being just above the just undone change. */
2626 --curbuf->b_u_seq_cur;
2627
Bram Moolenaar730cde92010-06-27 05:18:54 +02002628 /* Remember where we are for ":earlier 1f" and ":later 1f". */
2629 if (curhead->uh_save_nr != 0)
2630 {
2631 if (undo)
2632 curbuf->b_u_save_nr_cur = curhead->uh_save_nr - 1;
2633 else
2634 curbuf->b_u_save_nr_cur = curhead->uh_save_nr;
2635 }
2636
Bram Moolenaarca003e12006-03-17 23:19:38 +00002637 /* The timestamp can be the same for multiple changes, just use the one of
2638 * the undone/redone change. */
Bram Moolenaara800b422010-06-27 01:15:55 +02002639 curbuf->b_u_time_cur = curhead->uh_time;
Bram Moolenaarb0b50882010-07-07 18:26:28 +02002640
2641#ifdef FEAT_AUTOCMD
2642 unblock_autocmds();
2643#endif
Bram Moolenaarfecb6602007-10-01 20:54:15 +00002644#ifdef U_DEBUG
2645 u_check(FALSE);
2646#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647}
2648
2649/*
2650 * If we deleted or added lines, report the number of less/more lines.
2651 * Otherwise, report the number of changes (this may be incorrect
2652 * in some cases, but it's better than nothing).
2653 */
2654 static void
Bram Moolenaardb552d602006-03-23 22:59:57 +00002655u_undo_end(did_undo, absolute)
Bram Moolenaar433f7c82006-03-21 21:29:36 +00002656 int did_undo; /* just did an undo */
Bram Moolenaardb552d602006-03-23 22:59:57 +00002657 int absolute; /* used ":undo N" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658{
Bram Moolenaar89d40322006-08-29 15:30:07 +00002659 char *msgstr;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002660 u_header_T *uhp;
2661 char_u msgbuf[80];
Bram Moolenaar1e607892006-03-13 22:15:53 +00002662
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663#ifdef FEAT_FOLDING
2664 if ((fdo_flags & FDO_UNDO) && KeyTyped)
2665 foldOpenCursor();
2666#endif
Bram Moolenaar1e607892006-03-13 22:15:53 +00002667
2668 if (global_busy /* no messages now, wait until global is finished */
2669 || !messaging()) /* 'lazyredraw' set, don't do messages now */
2670 return;
2671
2672 if (curbuf->b_ml.ml_flags & ML_EMPTY)
2673 --u_newcount;
2674
2675 u_oldcount -= u_newcount;
2676 if (u_oldcount == -1)
Bram Moolenaar89d40322006-08-29 15:30:07 +00002677 msgstr = N_("more line");
Bram Moolenaar1e607892006-03-13 22:15:53 +00002678 else if (u_oldcount < 0)
Bram Moolenaar89d40322006-08-29 15:30:07 +00002679 msgstr = N_("more lines");
Bram Moolenaar1e607892006-03-13 22:15:53 +00002680 else if (u_oldcount == 1)
Bram Moolenaar89d40322006-08-29 15:30:07 +00002681 msgstr = N_("line less");
Bram Moolenaar1e607892006-03-13 22:15:53 +00002682 else if (u_oldcount > 1)
Bram Moolenaar89d40322006-08-29 15:30:07 +00002683 msgstr = N_("fewer lines");
Bram Moolenaar1e607892006-03-13 22:15:53 +00002684 else
2685 {
2686 u_oldcount = u_newcount;
2687 if (u_newcount == 1)
Bram Moolenaar89d40322006-08-29 15:30:07 +00002688 msgstr = N_("change");
Bram Moolenaar1e607892006-03-13 22:15:53 +00002689 else
Bram Moolenaar89d40322006-08-29 15:30:07 +00002690 msgstr = N_("changes");
Bram Moolenaar1e607892006-03-13 22:15:53 +00002691 }
2692
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002693 if (curbuf->b_u_curhead != NULL)
Bram Moolenaar433f7c82006-03-21 21:29:36 +00002694 {
Bram Moolenaardb552d602006-03-23 22:59:57 +00002695 /* For ":undo N" we prefer a "after #N" message. */
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002696 if (absolute && curbuf->b_u_curhead->uh_next.ptr != NULL)
Bram Moolenaardb552d602006-03-23 22:59:57 +00002697 {
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002698 uhp = curbuf->b_u_curhead->uh_next.ptr;
Bram Moolenaardb552d602006-03-23 22:59:57 +00002699 did_undo = FALSE;
2700 }
2701 else if (did_undo)
Bram Moolenaar433f7c82006-03-21 21:29:36 +00002702 uhp = curbuf->b_u_curhead;
2703 else
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002704 uhp = curbuf->b_u_curhead->uh_next.ptr;
Bram Moolenaar433f7c82006-03-21 21:29:36 +00002705 }
Bram Moolenaar1e607892006-03-13 22:15:53 +00002706 else
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002707 uhp = curbuf->b_u_newhead;
Bram Moolenaar1e607892006-03-13 22:15:53 +00002708
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002709 if (uhp == NULL)
2710 *msgbuf = NUL;
2711 else
2712 u_add_time(msgbuf, sizeof(msgbuf), uhp->uh_time);
2713
Bram Moolenaarb2c03502010-07-02 20:20:09 +02002714#ifdef FEAT_CONCEAL
2715 {
2716 win_T *wp;
2717
2718 FOR_ALL_WINDOWS(wp)
2719 {
2720 if (wp->w_buffer == curbuf && wp->w_p_conceal)
2721 redraw_win_later(wp, NOT_VALID);
2722 }
2723 }
2724#endif
2725
Bram Moolenaar433f7c82006-03-21 21:29:36 +00002726 smsg((char_u *)_("%ld %s; %s #%ld %s"),
Bram Moolenaarca003e12006-03-17 23:19:38 +00002727 u_oldcount < 0 ? -u_oldcount : u_oldcount,
Bram Moolenaar89d40322006-08-29 15:30:07 +00002728 _(msgstr),
Bram Moolenaar433f7c82006-03-21 21:29:36 +00002729 did_undo ? _("before") : _("after"),
2730 uhp == NULL ? 0L : uhp->uh_seq,
2731 msgbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732}
2733
2734/*
2735 * u_sync: stop adding to the current entry list
2736 */
2737 void
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002738u_sync(force)
2739 int force; /* Also sync when no_u_sync is set. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740{
Bram Moolenaar779b74b2006-04-10 14:55:34 +00002741 /* Skip it when already synced or syncing is disabled. */
2742 if (curbuf->b_u_synced || (!force && no_u_sync > 0))
2743 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
2745 if (im_is_preediting())
2746 return; /* XIM is busy, don't break an undo sequence */
2747#endif
2748 if (p_ul < 0)
2749 curbuf->b_u_synced = TRUE; /* no entries, nothing to do */
2750 else
2751 {
2752 u_getbot(); /* compute ue_bot of previous u_save */
2753 curbuf->b_u_curhead = NULL;
2754 }
2755}
2756
2757/*
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002758 * ":undolist": List the leafs of the undo tree
2759 */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002760 void
2761ex_undolist(eap)
Bram Moolenaarfff2bee2010-05-15 13:56:02 +02002762 exarg_T *eap UNUSED;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002763{
2764 garray_T ga;
2765 u_header_T *uhp;
2766 int mark;
2767 int nomark;
2768 int changes = 1;
2769 int i;
2770
2771 /*
2772 * 1: walk the tree to find all leafs, put the info in "ga".
2773 * 2: sort the lines
2774 * 3: display the list
2775 */
2776 mark = ++lastmark;
2777 nomark = ++lastmark;
2778 ga_init2(&ga, (int)sizeof(char *), 20);
2779
2780 uhp = curbuf->b_u_oldhead;
2781 while (uhp != NULL)
2782 {
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002783 if (uhp->uh_prev.ptr == NULL && uhp->uh_walk != nomark
Bram Moolenaarca003e12006-03-17 23:19:38 +00002784 && uhp->uh_walk != mark)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002785 {
2786 if (ga_grow(&ga, 1) == FAIL)
2787 break;
2788 vim_snprintf((char *)IObuff, IOSIZE, "%6ld %7ld ",
2789 uhp->uh_seq, changes);
2790 u_add_time(IObuff + STRLEN(IObuff), IOSIZE - STRLEN(IObuff),
2791 uhp->uh_time);
Bram Moolenaara800b422010-06-27 01:15:55 +02002792 if (uhp->uh_save_nr > 0)
2793 {
2794 while (STRLEN(IObuff) < 32)
2795 STRCAT(IObuff, " ");
2796 vim_snprintf_add((char *)IObuff, IOSIZE,
2797 " %3ld", uhp->uh_save_nr);
2798 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002799 ((char_u **)(ga.ga_data))[ga.ga_len++] = vim_strsave(IObuff);
2800 }
2801
2802 uhp->uh_walk = mark;
2803
2804 /* go down in the tree if we haven't been there */
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002805 if (uhp->uh_prev.ptr != NULL && uhp->uh_prev.ptr->uh_walk != nomark
2806 && uhp->uh_prev.ptr->uh_walk != mark)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002807 {
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002808 uhp = uhp->uh_prev.ptr;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002809 ++changes;
2810 }
2811
2812 /* go to alternate branch if we haven't been there */
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002813 else if (uhp->uh_alt_next.ptr != NULL
2814 && uhp->uh_alt_next.ptr->uh_walk != nomark
2815 && uhp->uh_alt_next.ptr->uh_walk != mark)
2816 uhp = uhp->uh_alt_next.ptr;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002817
2818 /* go up in the tree if we haven't been there and we are at the
2819 * start of alternate branches */
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002820 else if (uhp->uh_next.ptr != NULL && uhp->uh_alt_prev.ptr == NULL
2821 && uhp->uh_next.ptr->uh_walk != nomark
2822 && uhp->uh_next.ptr->uh_walk != mark)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002823 {
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002824 uhp = uhp->uh_next.ptr;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002825 --changes;
2826 }
2827
2828 else
2829 {
2830 /* need to backtrack; mark this node as done */
2831 uhp->uh_walk = nomark;
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002832 if (uhp->uh_alt_prev.ptr != NULL)
2833 uhp = uhp->uh_alt_prev.ptr;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002834 else
2835 {
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002836 uhp = uhp->uh_next.ptr;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002837 --changes;
2838 }
2839 }
2840 }
2841
2842 if (ga.ga_len == 0)
2843 MSG(_("Nothing to undo"));
2844 else
2845 {
2846 sort_strings((char_u **)ga.ga_data, ga.ga_len);
2847
2848 msg_start();
Bram Moolenaara800b422010-06-27 01:15:55 +02002849 msg_puts_attr((char_u *)_("number changes time saved"),
2850 hl_attr(HLF_T));
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002851 for (i = 0; i < ga.ga_len && !got_int; ++i)
2852 {
2853 msg_putchar('\n');
2854 if (got_int)
2855 break;
2856 msg_puts(((char_u **)ga.ga_data)[i]);
2857 }
2858 msg_end();
2859
2860 ga_clear_strings(&ga);
2861 }
2862}
2863
2864/*
2865 * Put the timestamp of an undo header in "buf[buflen]" in a nice format.
2866 */
2867 static void
2868u_add_time(buf, buflen, tt)
2869 char_u *buf;
2870 size_t buflen;
2871 time_t tt;
2872{
2873#ifdef HAVE_STRFTIME
2874 struct tm *curtime;
2875
2876 if (time(NULL) - tt >= 100)
2877 {
2878 curtime = localtime(&tt);
Bram Moolenaar3991dab2006-03-27 17:01:56 +00002879 (void)strftime((char *)buf, buflen, "%H:%M:%S", curtime);
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002880 }
2881 else
2882#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002883 vim_snprintf((char *)buf, buflen, _("%ld seconds ago"),
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00002884 (long)(time(NULL) - tt));
2885}
2886
2887/*
Bram Moolenaare224ffa2006-03-01 00:01:28 +00002888 * ":undojoin": continue adding to the last entry list
2889 */
Bram Moolenaare224ffa2006-03-01 00:01:28 +00002890 void
2891ex_undojoin(eap)
Bram Moolenaarfff2bee2010-05-15 13:56:02 +02002892 exarg_T *eap UNUSED;
Bram Moolenaare224ffa2006-03-01 00:01:28 +00002893{
Bram Moolenaare224ffa2006-03-01 00:01:28 +00002894 if (curbuf->b_u_newhead == NULL)
2895 return; /* nothing changed before */
Bram Moolenaar57657d82006-04-21 22:12:41 +00002896 if (curbuf->b_u_curhead != NULL)
2897 {
2898 EMSG(_("E790: undojoin is not allowed after undo"));
2899 return;
2900 }
2901 if (!curbuf->b_u_synced)
2902 return; /* already unsynced */
Bram Moolenaare224ffa2006-03-01 00:01:28 +00002903 if (p_ul < 0)
2904 return; /* no entries, nothing to do */
2905 else
2906 {
2907 /* Go back to the last entry */
2908 curbuf->b_u_curhead = curbuf->b_u_newhead;
2909 curbuf->b_u_synced = FALSE; /* no entries, nothing to do */
2910 }
2911}
2912
2913/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914 * Called after writing the file and setting b_changed to FALSE.
2915 * Now an undo means that the buffer is modified.
2916 */
2917 void
2918u_unchanged(buf)
2919 buf_T *buf;
2920{
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002921 u_unch_branch(buf->b_u_oldhead);
2922 buf->b_did_warn = FALSE;
2923}
2924
Bram Moolenaar730cde92010-06-27 05:18:54 +02002925/*
2926 * Increase the write count, store it in the last undo header, what would be
2927 * used for "u".
2928 */
2929 void
2930u_update_save_nr(buf)
2931 buf_T *buf;
2932{
2933 u_header_T *uhp;
2934
2935 ++buf->b_u_save_nr_last;
2936 buf->b_u_save_nr_cur = buf->b_u_save_nr_last;
2937 uhp = buf->b_u_curhead;
2938 if (uhp != NULL)
2939 uhp = uhp->uh_next.ptr;
2940 else
2941 uhp = buf->b_u_newhead;
2942 if (uhp != NULL)
2943 uhp->uh_save_nr = buf->b_u_save_nr_last;
2944}
2945
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002946 static void
2947u_unch_branch(uhp)
2948 u_header_T *uhp;
2949{
Bram Moolenaar1e607892006-03-13 22:15:53 +00002950 u_header_T *uh;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002952 for (uh = uhp; uh != NULL; uh = uh->uh_prev.ptr)
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002953 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002954 uh->uh_flags |= UH_CHANGED;
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02002955 if (uh->uh_alt_next.ptr != NULL)
2956 u_unch_branch(uh->uh_alt_next.ptr); /* recursive */
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00002957 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958}
2959
2960/*
2961 * Get pointer to last added entry.
2962 * If it's not valid, give an error message and return NULL.
2963 */
2964 static u_entry_T *
2965u_get_headentry()
2966{
2967 if (curbuf->b_u_newhead == NULL || curbuf->b_u_newhead->uh_entry == NULL)
2968 {
2969 EMSG(_("E439: undo list corrupt"));
2970 return NULL;
2971 }
2972 return curbuf->b_u_newhead->uh_entry;
2973}
2974
2975/*
2976 * u_getbot(): compute the line number of the previous u_save
2977 * It is called only when b_u_synced is FALSE.
2978 */
2979 static void
2980u_getbot()
2981{
2982 u_entry_T *uep;
2983 linenr_T extra;
2984
2985 uep = u_get_headentry(); /* check for corrupt undo list */
2986 if (uep == NULL)
2987 return;
2988
2989 uep = curbuf->b_u_newhead->uh_getbot_entry;
2990 if (uep != NULL)
2991 {
2992 /*
2993 * the new ue_bot is computed from the number of lines that has been
2994 * inserted (0 - deleted) since calling u_save. This is equal to the
2995 * old line count subtracted from the current line count.
2996 */
2997 extra = curbuf->b_ml.ml_line_count - uep->ue_lcount;
2998 uep->ue_bot = uep->ue_top + uep->ue_size + 1 + extra;
2999 if (uep->ue_bot < 1 || uep->ue_bot > curbuf->b_ml.ml_line_count)
3000 {
3001 EMSG(_("E440: undo line missing"));
3002 uep->ue_bot = uep->ue_top + 1; /* assume all lines deleted, will
3003 * get all the old lines back
3004 * without deleting the current
3005 * ones */
3006 }
3007
3008 curbuf->b_u_newhead->uh_getbot_entry = NULL;
3009 }
3010
3011 curbuf->b_u_synced = TRUE;
3012}
3013
3014/*
Bram Moolenaarfecb6602007-10-01 20:54:15 +00003015 * Free one header "uhp" and its entry list and adjust the pointers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016 */
3017 static void
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00003018u_freeheader(buf, uhp, uhpp)
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003019 buf_T *buf;
Bram Moolenaar1e607892006-03-13 22:15:53 +00003020 u_header_T *uhp;
3021 u_header_T **uhpp; /* if not NULL reset when freeing this header */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022{
Bram Moolenaarfecb6602007-10-01 20:54:15 +00003023 u_header_T *uhap;
3024
Bram Moolenaar1e607892006-03-13 22:15:53 +00003025 /* When there is an alternate redo list free that branch completely,
3026 * because we can never go there. */
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003027 if (uhp->uh_alt_next.ptr != NULL)
3028 u_freebranch(buf, uhp->uh_alt_next.ptr, uhpp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003030 if (uhp->uh_alt_prev.ptr != NULL)
3031 uhp->uh_alt_prev.ptr->uh_alt_next.ptr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003032
Bram Moolenaar1e607892006-03-13 22:15:53 +00003033 /* Update the links in the list to remove the header. */
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003034 if (uhp->uh_next.ptr == NULL)
3035 buf->b_u_oldhead = uhp->uh_prev.ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036 else
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003037 uhp->uh_next.ptr->uh_prev.ptr = uhp->uh_prev.ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003039 if (uhp->uh_prev.ptr == NULL)
3040 buf->b_u_newhead = uhp->uh_next.ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 else
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003042 for (uhap = uhp->uh_prev.ptr; uhap != NULL;
3043 uhap = uhap->uh_alt_next.ptr)
3044 uhap->uh_next.ptr = uhp->uh_next.ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045
Bram Moolenaar1e607892006-03-13 22:15:53 +00003046 u_freeentries(buf, uhp, uhpp);
3047}
3048
3049/*
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00003050 * Free an alternate branch and any following alternate branches.
Bram Moolenaar1e607892006-03-13 22:15:53 +00003051 */
3052 static void
3053u_freebranch(buf, uhp, uhpp)
3054 buf_T *buf;
3055 u_header_T *uhp;
3056 u_header_T **uhpp; /* if not NULL reset when freeing this header */
3057{
3058 u_header_T *tofree, *next;
3059
Bram Moolenaar07d06772007-11-10 21:51:15 +00003060 /* If this is the top branch we may need to use u_freeheader() to update
3061 * all the pointers. */
3062 if (uhp == buf->b_u_oldhead)
3063 {
3064 u_freeheader(buf, uhp, uhpp);
3065 return;
3066 }
3067
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003068 if (uhp->uh_alt_prev.ptr != NULL)
3069 uhp->uh_alt_prev.ptr->uh_alt_next.ptr = NULL;
Bram Moolenaar1e607892006-03-13 22:15:53 +00003070
3071 next = uhp;
3072 while (next != NULL)
3073 {
3074 tofree = next;
Bram Moolenaar83d09bb2010-06-01 19:58:08 +02003075 if (tofree->uh_alt_next.ptr != NULL)
3076 u_freebranch(buf, tofree->uh_alt_next.ptr, uhpp); /* recursive */
3077 next = tofree->uh_prev.ptr;
Bram Moolenaar1e607892006-03-13 22:15:53 +00003078 u_freeentries(buf, tofree, uhpp);
3079 }
3080}
3081
3082/*
3083 * Free all the undo entries for one header and the header itself.
3084 * This means that "uhp" is invalid when returning.
3085 */
3086 static void
3087u_freeentries(buf, uhp, uhpp)
3088 buf_T *buf;
3089 u_header_T *uhp;
3090 u_header_T **uhpp; /* if not NULL reset when freeing this header */
3091{
3092 u_entry_T *uep, *nuep;
3093
3094 /* Check for pointers to the header that become invalid now. */
3095 if (buf->b_u_curhead == uhp)
3096 buf->b_u_curhead = NULL;
Bram Moolenaarfecb6602007-10-01 20:54:15 +00003097 if (buf->b_u_newhead == uhp)
3098 buf->b_u_newhead = NULL; /* freeing the newest entry */
Bram Moolenaar1e607892006-03-13 22:15:53 +00003099 if (uhpp != NULL && uhp == *uhpp)
3100 *uhpp = NULL;
3101
3102 for (uep = uhp->uh_entry; uep != NULL; uep = nuep)
3103 {
3104 nuep = uep->ue_next;
3105 u_freeentry(uep, uep->ue_size);
3106 }
3107
Bram Moolenaarfecb6602007-10-01 20:54:15 +00003108#ifdef U_DEBUG
3109 uhp->uh_magic = 0;
3110#endif
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02003111 vim_free((char_u *)uhp);
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003112 --buf->b_u_numhead;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113}
3114
3115/*
3116 * free entry 'uep' and 'n' lines in uep->ue_array[]
3117 */
3118 static void
3119u_freeentry(uep, n)
3120 u_entry_T *uep;
3121 long n;
3122{
Bram Moolenaar8d343302005-07-12 22:46:17 +00003123 while (n > 0)
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02003124 vim_free(uep->ue_array[--n]);
3125 vim_free((char_u *)uep->ue_array);
Bram Moolenaarfecb6602007-10-01 20:54:15 +00003126#ifdef U_DEBUG
3127 uep->ue_magic = 0;
3128#endif
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02003129 vim_free((char_u *)uep);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130}
3131
3132/*
3133 * invalidate the undo buffer; called when storage has already been released
3134 */
3135 void
3136u_clearall(buf)
3137 buf_T *buf;
3138{
3139 buf->b_u_newhead = buf->b_u_oldhead = buf->b_u_curhead = NULL;
3140 buf->b_u_synced = TRUE;
3141 buf->b_u_numhead = 0;
3142 buf->b_u_line_ptr = NULL;
3143 buf->b_u_line_lnum = 0;
3144}
3145
3146/*
3147 * save the line "lnum" for the "U" command
3148 */
3149 void
3150u_saveline(lnum)
3151 linenr_T lnum;
3152{
3153 if (lnum == curbuf->b_u_line_lnum) /* line is already saved */
3154 return;
Bram Moolenaar1ec484f2005-06-24 23:07:47 +00003155 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count) /* should never happen */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 return;
3157 u_clearline();
3158 curbuf->b_u_line_lnum = lnum;
3159 if (curwin->w_cursor.lnum == lnum)
3160 curbuf->b_u_line_colnr = curwin->w_cursor.col;
3161 else
3162 curbuf->b_u_line_colnr = 0;
3163 if ((curbuf->b_u_line_ptr = u_save_line(lnum)) == NULL)
3164 do_outofmem_msg((long_u)0);
3165}
3166
3167/*
3168 * clear the line saved for the "U" command
3169 * (this is used externally for crossing a line while in insert mode)
3170 */
3171 void
3172u_clearline()
3173{
3174 if (curbuf->b_u_line_ptr != NULL)
3175 {
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02003176 vim_free(curbuf->b_u_line_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177 curbuf->b_u_line_ptr = NULL;
3178 curbuf->b_u_line_lnum = 0;
3179 }
3180}
3181
3182/*
3183 * Implementation of the "U" command.
3184 * Differentiation from vi: "U" can be undone with the next "U".
3185 * We also allow the cursor to be in another line.
Bram Moolenaard04b7502010-07-08 22:27:55 +02003186 * Careful: may trigger autocommands that reload the buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187 */
3188 void
3189u_undoline()
3190{
3191 colnr_T t;
3192 char_u *oldp;
3193
3194 if (undo_off)
3195 return;
3196
Bram Moolenaare3300c82008-02-13 14:21:38 +00003197 if (curbuf->b_u_line_ptr == NULL
3198 || curbuf->b_u_line_lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199 {
3200 beep_flush();
3201 return;
3202 }
Bram Moolenaare3300c82008-02-13 14:21:38 +00003203
3204 /* first save the line for the 'u' command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 if (u_savecommon(curbuf->b_u_line_lnum - 1,
3206 curbuf->b_u_line_lnum + 1, (linenr_T)0) == FAIL)
3207 return;
3208 oldp = u_save_line(curbuf->b_u_line_lnum);
3209 if (oldp == NULL)
3210 {
3211 do_outofmem_msg((long_u)0);
3212 return;
3213 }
3214 ml_replace(curbuf->b_u_line_lnum, curbuf->b_u_line_ptr, TRUE);
3215 changed_bytes(curbuf->b_u_line_lnum, 0);
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02003216 vim_free(curbuf->b_u_line_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217 curbuf->b_u_line_ptr = oldp;
3218
3219 t = curbuf->b_u_line_colnr;
3220 if (curwin->w_cursor.lnum == curbuf->b_u_line_lnum)
3221 curbuf->b_u_line_colnr = curwin->w_cursor.col;
3222 curwin->w_cursor.col = t;
3223 curwin->w_cursor.lnum = curbuf->b_u_line_lnum;
Bram Moolenaare3300c82008-02-13 14:21:38 +00003224 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225}
3226
3227/*
Bram Moolenaar26a60b42005-02-22 08:49:11 +00003228 * Free all allocated memory blocks for the buffer 'buf'.
3229 */
3230 void
3231u_blockfree(buf)
3232 buf_T *buf;
3233{
Bram Moolenaar1e607892006-03-13 22:15:53 +00003234 while (buf->b_u_oldhead != NULL)
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00003235 u_freeheader(buf, buf->b_u_oldhead, NULL);
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02003236 vim_free(buf->b_u_line_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237}
3238
3239/*
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02003240 * u_save_line(): allocate memory and copy line 'lnum' into it.
3241 * Returns NULL when out of memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242 */
3243 static char_u *
3244u_save_line(lnum)
3245 linenr_T lnum;
3246{
Bram Moolenaarf05e3b02010-05-29 15:40:47 +02003247 return vim_strsave(ml_get(lnum));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248}
3249
3250/*
3251 * Check if the 'modified' flag is set, or 'ff' has changed (only need to
3252 * check the first character, because it can only be "dos", "unix" or "mac").
3253 * "nofile" and "scratch" type buffers are considered to always be unchanged.
3254 */
3255 int
3256bufIsChanged(buf)
3257 buf_T *buf;
3258{
3259 return
3260#ifdef FEAT_QUICKFIX
3261 !bt_dontwrite(buf) &&
3262#endif
3263 (buf->b_changed || file_ff_differs(buf));
3264}
3265
3266 int
3267curbufIsChanged()
3268{
3269 return
3270#ifdef FEAT_QUICKFIX
3271 !bt_dontwrite(curbuf) &&
3272#endif
3273 (curbuf->b_changed || file_ff_differs(curbuf));
3274}
Bram Moolenaara800b422010-06-27 01:15:55 +02003275
3276#if defined(FEAT_EVAL) || defined(PROTO)
3277/*
3278 * For undotree(): Append the list of undo blocks at "first_uhp" to "list".
3279 * Recursive.
3280 */
3281 void
3282u_eval_tree(first_uhp, list)
3283 u_header_T *first_uhp;
3284 list_T *list;
3285{
3286 u_header_T *uhp = first_uhp;
3287 dict_T *dict;
3288
3289 while (uhp != NULL)
3290 {
3291 dict = dict_alloc();
3292 if (dict == NULL)
3293 return;
3294 dict_add_nr_str(dict, "seq", uhp->uh_seq, NULL);
Bram Moolenaarb2c03502010-07-02 20:20:09 +02003295 dict_add_nr_str(dict, "time", (long)uhp->uh_time, NULL);
Bram Moolenaara800b422010-06-27 01:15:55 +02003296 if (uhp == curbuf->b_u_newhead)
3297 dict_add_nr_str(dict, "newhead", 1, NULL);
3298 if (uhp == curbuf->b_u_curhead)
3299 dict_add_nr_str(dict, "curhead", 1, NULL);
3300 if (uhp->uh_save_nr > 0)
3301 dict_add_nr_str(dict, "save", uhp->uh_save_nr, NULL);
3302
3303 if (uhp->uh_alt_next.ptr != NULL)
3304 {
3305 list_T *alt_list = list_alloc();
3306
3307 if (alt_list != NULL)
3308 {
3309 /* Recursive call to add alternate undo tree. */
3310 u_eval_tree(uhp->uh_alt_next.ptr, alt_list);
3311 dict_add_list(dict, "alt", alt_list);
3312 }
3313 }
3314
3315 list_append_dict(list, dict);
3316 uhp = uhp->uh_prev.ptr;
3317 }
3318}
3319#endif