2004-06-13 20:20:40 +00:00
|
|
|
/* vi:set ts=8 sts=4 sw=4:
|
|
|
|
*
|
|
|
|
* VIM - Vi IMproved by Bram Moolenaar
|
|
|
|
*
|
|
|
|
* Do ":help uganda" in Vim to read copying and usage conditions.
|
|
|
|
* Do ":help credits" in Vim to see a list of people who contributed.
|
|
|
|
* See README.txt for an overview of the Vim source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* undo.c: multi level undo facility
|
|
|
|
*
|
|
|
|
* The saved lines are stored in a list of lists (one for each buffer):
|
|
|
|
*
|
|
|
|
* b_u_oldhead------------------------------------------------+
|
|
|
|
* |
|
|
|
|
* V
|
|
|
|
* +--------------+ +--------------+ +--------------+
|
|
|
|
* b_u_newhead--->| u_header | | u_header | | u_header |
|
|
|
|
* | uh_next------>| uh_next------>| uh_next---->NULL
|
|
|
|
* NULL<--------uh_prev |<---------uh_prev |<---------uh_prev |
|
|
|
|
* | uh_entry | | uh_entry | | uh_entry |
|
|
|
|
* +--------|-----+ +--------|-----+ +--------|-----+
|
|
|
|
* | | |
|
|
|
|
* V V V
|
|
|
|
* +--------------+ +--------------+ +--------------+
|
|
|
|
* | u_entry | | u_entry | | u_entry |
|
|
|
|
* | ue_next | | ue_next | | ue_next |
|
|
|
|
* +--------|-----+ +--------|-----+ +--------|-----+
|
|
|
|
* | | |
|
|
|
|
* V V V
|
|
|
|
* +--------------+ NULL NULL
|
|
|
|
* | u_entry |
|
|
|
|
* | ue_next |
|
|
|
|
* +--------|-----+
|
|
|
|
* |
|
|
|
|
* V
|
|
|
|
* etc.
|
|
|
|
*
|
|
|
|
* Each u_entry list contains the information for one undo or redo.
|
|
|
|
* curbuf->b_u_curhead points to the header of the last undo (the next redo),
|
2006-03-14 23:00:46 +00:00
|
|
|
* or is NULL if nothing has been undone (end of the branch).
|
2004-06-13 20:20:40 +00:00
|
|
|
*
|
2006-03-13 22:15:53 +00:00
|
|
|
* For keeping alternate undo/redo branches the uh_alt field is used. Thus at
|
|
|
|
* each point in the list a branch may appear for an alternate to redo. The
|
|
|
|
* uh_seq field is numbered sequentially to be able to find a newer or older
|
|
|
|
* branch.
|
|
|
|
*
|
2006-03-14 23:00:46 +00:00
|
|
|
* +---------------+ +---------------+
|
|
|
|
* b_u_oldhead --->| u_header | | u_header |
|
|
|
|
* | uh_alt_next ---->| uh_alt_next ----> NULL
|
|
|
|
* NULL <----- uh_alt_prev |<------ uh_alt_prev |
|
|
|
|
* | uh_prev | | uh_prev |
|
|
|
|
* +-----|---------+ +-----|---------+
|
|
|
|
* | |
|
|
|
|
* V V
|
|
|
|
* +---------------+ +---------------+
|
|
|
|
* | u_header | | u_header |
|
|
|
|
* | uh_alt_next | | uh_alt_next |
|
|
|
|
* b_u_newhead --->| uh_alt_prev | | uh_alt_prev |
|
|
|
|
* | uh_prev | | uh_prev |
|
|
|
|
* +-----|---------+ +-----|---------+
|
|
|
|
* | |
|
|
|
|
* V V
|
|
|
|
* NULL +---------------+ +---------------+
|
|
|
|
* | u_header | | u_header |
|
|
|
|
* | uh_alt_next ---->| uh_alt_next |
|
|
|
|
* | uh_alt_prev |<------ uh_alt_prev |
|
|
|
|
* | uh_prev | | uh_prev |
|
|
|
|
* +-----|---------+ +-----|---------+
|
|
|
|
* | |
|
|
|
|
* etc. etc.
|
|
|
|
*
|
|
|
|
*
|
2005-02-22 08:49:11 +00:00
|
|
|
* All data is allocated with U_ALLOC_LINE(), it will be freed as soon as the
|
|
|
|
* buffer is unloaded.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
|
2007-10-01 20:54:15 +00:00
|
|
|
/* Uncomment the next line for including the u_check() function. This warns
|
|
|
|
* for errors in the debug information. */
|
|
|
|
/* #define U_DEBUG 1 */
|
|
|
|
#define UH_MAGIC 0x18dade /* value for uh_magic when in use */
|
|
|
|
#define UE_MAGIC 0xabc123 /* value for ue_magic when in use */
|
|
|
|
|
2010-05-24 21:34:22 +02:00
|
|
|
#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
|
|
|
|
# include "vimio.h" /* for vim_read(), must be before vim.h */
|
|
|
|
#endif
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
#include "vim.h"
|
|
|
|
|
2005-02-22 08:49:11 +00:00
|
|
|
/* See below: use malloc()/free() for memory management. */
|
|
|
|
#define U_USE_MALLOC 1
|
|
|
|
|
2006-03-14 23:00:46 +00:00
|
|
|
static void u_unch_branch __ARGS((u_header_T *uhp));
|
2004-06-13 20:20:40 +00:00
|
|
|
static u_entry_T *u_get_headentry __ARGS((void));
|
|
|
|
static void u_getbot __ARGS((void));
|
|
|
|
static int u_savecommon __ARGS((linenr_T, linenr_T, linenr_T));
|
|
|
|
static void u_doit __ARGS((int count));
|
2006-03-17 23:19:38 +00:00
|
|
|
static void u_undoredo __ARGS((int undo));
|
2006-03-23 22:59:57 +00:00
|
|
|
static void u_undo_end __ARGS((int did_undo, int absolute));
|
2006-03-16 21:41:35 +00:00
|
|
|
static void u_add_time __ARGS((char_u *buf, size_t buflen, time_t tt));
|
2006-03-14 23:00:46 +00:00
|
|
|
static void u_freeheader __ARGS((buf_T *buf, u_header_T *uhp, u_header_T **uhpp));
|
2006-03-13 22:15:53 +00:00
|
|
|
static void u_freebranch __ARGS((buf_T *buf, u_header_T *uhp, u_header_T **uhpp));
|
|
|
|
static void u_freeentries __ARGS((buf_T *buf, u_header_T *uhp, u_header_T **uhpp));
|
2004-06-13 20:20:40 +00:00
|
|
|
static void u_freeentry __ARGS((u_entry_T *, long));
|
2010-05-23 23:34:36 +02:00
|
|
|
#ifdef FEAT_PERSISTENT_UNDO
|
|
|
|
static void unserialize_pos __ARGS((pos_T *pos, FILE *fp));
|
|
|
|
static void unserialize_visualinfo __ARGS((visualinfo_T *info, FILE *fp));
|
|
|
|
static char_u *u_get_undo_file_name __ARGS((char_u *, int reading));
|
|
|
|
static int serialize_uep __ARGS((u_entry_T *uep, FILE *fp));
|
|
|
|
static void serialize_pos __ARGS((pos_T pos, FILE *fp));
|
|
|
|
static void serialize_visualinfo __ARGS((visualinfo_T info, FILE *fp));
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2005-02-22 08:49:11 +00:00
|
|
|
#ifdef U_USE_MALLOC
|
|
|
|
# define U_FREE_LINE(ptr) vim_free(ptr)
|
|
|
|
# define U_ALLOC_LINE(size) lalloc((long_u)((size) + 1), FALSE)
|
|
|
|
#else
|
|
|
|
static void u_free_line __ARGS((char_u *ptr, int keep));
|
|
|
|
static char_u *u_alloc_line __ARGS((unsigned size));
|
|
|
|
# define U_FREE_LINE(ptr) u_free_line((ptr), FALSE)
|
|
|
|
# define U_ALLOC_LINE(size) u_alloc_line(size)
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
static char_u *u_save_line __ARGS((linenr_T));
|
|
|
|
|
|
|
|
static long u_newcount, u_oldcount;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* When 'u' flag included in 'cpoptions', we behave like vi. Need to remember
|
|
|
|
* the action that "u" should do.
|
|
|
|
*/
|
|
|
|
static int undo_undoes = FALSE;
|
|
|
|
|
2010-05-23 23:34:36 +02:00
|
|
|
static int lastmark = 0;
|
|
|
|
|
2007-10-01 20:54:15 +00:00
|
|
|
#ifdef U_DEBUG
|
|
|
|
/*
|
|
|
|
* Check the undo structures for being valid. Print a warning when something
|
|
|
|
* looks wrong.
|
|
|
|
*/
|
|
|
|
static int seen_b_u_curhead;
|
|
|
|
static int seen_b_u_newhead;
|
|
|
|
static int header_count;
|
|
|
|
|
|
|
|
static void
|
|
|
|
u_check_tree(u_header_T *uhp,
|
|
|
|
u_header_T *exp_uh_next,
|
|
|
|
u_header_T *exp_uh_alt_prev)
|
|
|
|
{
|
|
|
|
u_entry_T *uep;
|
|
|
|
|
|
|
|
if (uhp == NULL)
|
|
|
|
return;
|
|
|
|
++header_count;
|
|
|
|
if (uhp == curbuf->b_u_curhead && ++seen_b_u_curhead > 1)
|
|
|
|
{
|
|
|
|
EMSG("b_u_curhead found twice (looping?)");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (uhp == curbuf->b_u_newhead && ++seen_b_u_newhead > 1)
|
|
|
|
{
|
|
|
|
EMSG("b_u_newhead found twice (looping?)");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (uhp->uh_magic != UH_MAGIC)
|
|
|
|
EMSG("uh_magic wrong (may be using freed memory)");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Check pointers back are correct. */
|
|
|
|
if (uhp->uh_next != exp_uh_next)
|
|
|
|
{
|
|
|
|
EMSG("uh_next wrong");
|
|
|
|
smsg((char_u *)"expected: 0x%x, actual: 0x%x",
|
|
|
|
exp_uh_next, uhp->uh_next);
|
|
|
|
}
|
|
|
|
if (uhp->uh_alt_prev != exp_uh_alt_prev)
|
|
|
|
{
|
|
|
|
EMSG("uh_alt_prev wrong");
|
|
|
|
smsg((char_u *)"expected: 0x%x, actual: 0x%x",
|
|
|
|
exp_uh_alt_prev, uhp->uh_alt_prev);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check the undo tree at this header. */
|
|
|
|
for (uep = uhp->uh_entry; uep != NULL; uep = uep->ue_next)
|
|
|
|
{
|
|
|
|
if (uep->ue_magic != UE_MAGIC)
|
|
|
|
{
|
|
|
|
EMSG("ue_magic wrong (may be using freed memory)");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check the next alt tree. */
|
|
|
|
u_check_tree(uhp->uh_alt_next, uhp->uh_next, uhp);
|
|
|
|
|
|
|
|
/* Check the next header in this branch. */
|
|
|
|
u_check_tree(uhp->uh_prev, uhp, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
u_check(int newhead_may_be_NULL)
|
|
|
|
{
|
|
|
|
seen_b_u_newhead = 0;
|
|
|
|
seen_b_u_curhead = 0;
|
|
|
|
header_count = 0;
|
|
|
|
|
|
|
|
u_check_tree(curbuf->b_u_oldhead, NULL, NULL);
|
|
|
|
|
|
|
|
if (seen_b_u_newhead == 0 && curbuf->b_u_oldhead != NULL
|
|
|
|
&& !(newhead_may_be_NULL && curbuf->b_u_newhead == NULL))
|
|
|
|
EMSGN("b_u_newhead invalid: 0x%x", curbuf->b_u_newhead);
|
|
|
|
if (curbuf->b_u_curhead != NULL && seen_b_u_curhead == 0)
|
|
|
|
EMSGN("b_u_curhead invalid: 0x%x", curbuf->b_u_curhead);
|
|
|
|
if (header_count != curbuf->b_u_numhead)
|
|
|
|
{
|
|
|
|
EMSG("b_u_numhead invalid");
|
|
|
|
smsg((char_u *)"expected: %ld, actual: %ld",
|
|
|
|
(long)header_count, (long)curbuf->b_u_numhead);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/*
|
2005-06-21 22:37:39 +00:00
|
|
|
* Save the current line for both the "u" and "U" command.
|
|
|
|
* Returns OK or FAIL.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
u_save_cursor()
|
|
|
|
{
|
|
|
|
return (u_save((linenr_T)(curwin->w_cursor.lnum - 1),
|
|
|
|
(linenr_T)(curwin->w_cursor.lnum + 1)));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Save the lines between "top" and "bot" for both the "u" and "U" command.
|
|
|
|
* "top" may be 0 and bot may be curbuf->b_ml.ml_line_count + 1.
|
|
|
|
* Returns FAIL when lines could not be saved, OK otherwise.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
u_save(top, bot)
|
|
|
|
linenr_T top, bot;
|
|
|
|
{
|
|
|
|
if (undo_off)
|
|
|
|
return OK;
|
|
|
|
|
|
|
|
if (top > curbuf->b_ml.ml_line_count ||
|
|
|
|
top >= bot || bot > curbuf->b_ml.ml_line_count + 1)
|
|
|
|
return FALSE; /* rely on caller to do error messages */
|
|
|
|
|
|
|
|
if (top + 2 == bot)
|
|
|
|
u_saveline((linenr_T)(top + 1));
|
|
|
|
|
|
|
|
return (u_savecommon(top, bot, (linenr_T)0));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2010-05-15 13:56:02 +02:00
|
|
|
* Save the line "lnum" (used by ":s" and "~" command).
|
2004-06-13 20:20:40 +00:00
|
|
|
* The line is replaced, so the new bottom line is lnum + 1.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
u_savesub(lnum)
|
|
|
|
linenr_T lnum;
|
|
|
|
{
|
|
|
|
if (undo_off)
|
|
|
|
return OK;
|
|
|
|
|
|
|
|
return (u_savecommon(lnum - 1, lnum + 1, lnum + 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2010-05-15 13:56:02 +02:00
|
|
|
* A new line is inserted before line "lnum" (used by :s command).
|
2004-06-13 20:20:40 +00:00
|
|
|
* The line is inserted, so the new bottom line is lnum + 1.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
u_inssub(lnum)
|
|
|
|
linenr_T lnum;
|
|
|
|
{
|
|
|
|
if (undo_off)
|
|
|
|
return OK;
|
|
|
|
|
|
|
|
return (u_savecommon(lnum - 1, lnum, lnum + 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2010-05-15 13:56:02 +02:00
|
|
|
* Save the lines "lnum" - "lnum" + nlines (used by delete command).
|
2004-06-13 20:20:40 +00:00
|
|
|
* The lines are deleted, so the new bottom line is lnum, unless the buffer
|
|
|
|
* becomes empty.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
u_savedel(lnum, nlines)
|
|
|
|
linenr_T lnum;
|
|
|
|
long nlines;
|
|
|
|
{
|
|
|
|
if (undo_off)
|
|
|
|
return OK;
|
|
|
|
|
|
|
|
return (u_savecommon(lnum - 1, lnum + nlines,
|
|
|
|
nlines == curbuf->b_ml.ml_line_count ? 2 : lnum));
|
|
|
|
}
|
|
|
|
|
2006-01-19 22:16:24 +00:00
|
|
|
/*
|
|
|
|
* Return TRUE when undo is allowed. Otherwise give an error message and
|
|
|
|
* return FALSE.
|
|
|
|
*/
|
2006-07-12 19:49:41 +00:00
|
|
|
int
|
2006-01-19 22:16:24 +00:00
|
|
|
undo_allowed()
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2006-01-19 22:16:24 +00:00
|
|
|
/* Don't allow changes when 'modifiable' is off. */
|
2004-06-13 20:20:40 +00:00
|
|
|
if (!curbuf->b_p_ma)
|
|
|
|
{
|
|
|
|
EMSG(_(e_modifiable));
|
2006-01-19 22:16:24 +00:00
|
|
|
return FALSE;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_SANDBOX
|
2006-01-19 22:16:24 +00:00
|
|
|
/* In the sandbox it's not allowed to change the text. */
|
2004-06-13 20:20:40 +00:00
|
|
|
if (sandbox != 0)
|
|
|
|
{
|
|
|
|
EMSG(_(e_sandbox));
|
2006-01-19 22:16:24 +00:00
|
|
|
return FALSE;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-01-19 22:16:24 +00:00
|
|
|
/* Don't allow changes in the buffer while editing the cmdline. The
|
|
|
|
* caller of getcmdline() may get confused. */
|
2006-01-20 23:10:18 +00:00
|
|
|
if (textlock != 0)
|
2006-01-19 22:16:24 +00:00
|
|
|
{
|
|
|
|
EMSG(_(e_secure));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
u_savecommon(top, bot, newbot)
|
|
|
|
linenr_T top, bot;
|
|
|
|
linenr_T newbot;
|
|
|
|
{
|
2006-03-13 22:15:53 +00:00
|
|
|
linenr_T lnum;
|
|
|
|
long i;
|
|
|
|
u_header_T *uhp;
|
|
|
|
u_header_T *old_curhead;
|
|
|
|
u_entry_T *uep;
|
|
|
|
u_entry_T *prev_uep;
|
|
|
|
long size;
|
2006-01-19 22:16:24 +00:00
|
|
|
|
|
|
|
/* When making changes is not allowed return FAIL. It's a crude way to
|
|
|
|
* make all change commands fail. */
|
|
|
|
if (!undo_allowed())
|
|
|
|
return FAIL;
|
|
|
|
|
2007-10-01 20:54:15 +00:00
|
|
|
#ifdef U_DEBUG
|
|
|
|
u_check(FALSE);
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
#ifdef FEAT_NETBEANS_INTG
|
|
|
|
/*
|
|
|
|
* Netbeans defines areas that cannot be modified. Bail out here when
|
|
|
|
* trying to change text in a guarded area.
|
|
|
|
*/
|
2010-05-22 21:34:09 +02:00
|
|
|
if (netbeans_active())
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2004-10-24 19:18:58 +00:00
|
|
|
if (netbeans_is_guarded(top, bot))
|
|
|
|
{
|
|
|
|
EMSG(_(e_guarded));
|
|
|
|
return FAIL;
|
|
|
|
}
|
|
|
|
if (curbuf->b_p_ro)
|
|
|
|
{
|
|
|
|
EMSG(_(e_nbreadonly));
|
|
|
|
return FAIL;
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef FEAT_AUTOCMD
|
|
|
|
/*
|
|
|
|
* Saving text for undo means we are going to make a change. Give a
|
|
|
|
* warning for a read-only file before making the change, so that the
|
|
|
|
* FileChangedRO event can replace the buffer with a read-write version
|
|
|
|
* (e.g., obtained from a source control system).
|
|
|
|
*/
|
|
|
|
change_warning(0);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
size = bot - top - 1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* if curbuf->b_u_synced == TRUE make a new header
|
|
|
|
*/
|
|
|
|
if (curbuf->b_u_synced)
|
|
|
|
{
|
|
|
|
#ifdef FEAT_JUMPLIST
|
|
|
|
/* Need to create new entry in b_changelist. */
|
|
|
|
curbuf->b_new_change = TRUE;
|
|
|
|
#endif
|
|
|
|
|
2006-03-13 22:15:53 +00:00
|
|
|
if (p_ul >= 0)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Make a new header entry. Do this first so that we don't mess
|
|
|
|
* up the undo info when out of memory.
|
|
|
|
*/
|
|
|
|
uhp = (u_header_T *)U_ALLOC_LINE((unsigned)sizeof(u_header_T));
|
|
|
|
if (uhp == NULL)
|
|
|
|
goto nomem;
|
2007-10-01 20:54:15 +00:00
|
|
|
#ifdef U_DEBUG
|
|
|
|
uhp->uh_magic = UH_MAGIC;
|
|
|
|
#endif
|
2006-03-13 22:15:53 +00:00
|
|
|
}
|
2006-03-15 22:59:18 +00:00
|
|
|
else
|
|
|
|
uhp = NULL;
|
2006-03-13 22:15:53 +00:00
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/*
|
2006-03-14 23:00:46 +00:00
|
|
|
* If we undid more than we redid, move the entry lists before and
|
|
|
|
* including curbuf->b_u_curhead to an alternate branch.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
2006-03-13 22:15:53 +00:00
|
|
|
old_curhead = curbuf->b_u_curhead;
|
|
|
|
if (old_curhead != NULL)
|
|
|
|
{
|
|
|
|
curbuf->b_u_newhead = old_curhead->uh_next;
|
|
|
|
curbuf->b_u_curhead = NULL;
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* free headers to keep the size right
|
|
|
|
*/
|
|
|
|
while (curbuf->b_u_numhead > p_ul && curbuf->b_u_oldhead != NULL)
|
2006-03-13 22:15:53 +00:00
|
|
|
{
|
2006-03-14 23:00:46 +00:00
|
|
|
u_header_T *uhfree = curbuf->b_u_oldhead;
|
2006-03-13 22:15:53 +00:00
|
|
|
|
2007-10-01 20:54:15 +00:00
|
|
|
if (uhfree == old_curhead)
|
|
|
|
/* Can't reconnect the branch, delete all of it. */
|
|
|
|
u_freebranch(curbuf, uhfree, &old_curhead);
|
|
|
|
else if (uhfree->uh_alt_next == NULL)
|
|
|
|
/* There is no branch, only free one header. */
|
2006-03-14 23:00:46 +00:00
|
|
|
u_freeheader(curbuf, uhfree, &old_curhead);
|
2006-03-13 22:15:53 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Free the oldest alternate branch as a whole. */
|
2006-03-14 23:00:46 +00:00
|
|
|
while (uhfree->uh_alt_next != NULL)
|
|
|
|
uhfree = uhfree->uh_alt_next;
|
|
|
|
u_freebranch(curbuf, uhfree, &old_curhead);
|
2006-03-13 22:15:53 +00:00
|
|
|
}
|
2007-10-01 20:54:15 +00:00
|
|
|
#ifdef U_DEBUG
|
|
|
|
u_check(TRUE);
|
|
|
|
#endif
|
2006-03-13 22:15:53 +00:00
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2006-03-15 22:59:18 +00:00
|
|
|
if (uhp == NULL) /* no undo at all */
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2006-03-13 22:15:53 +00:00
|
|
|
if (old_curhead != NULL)
|
|
|
|
u_freebranch(curbuf, old_curhead, NULL);
|
2004-06-13 20:20:40 +00:00
|
|
|
curbuf->b_u_synced = FALSE;
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
uhp->uh_prev = NULL;
|
|
|
|
uhp->uh_next = curbuf->b_u_newhead;
|
2006-03-13 22:15:53 +00:00
|
|
|
uhp->uh_alt_next = old_curhead;
|
|
|
|
if (old_curhead != NULL)
|
|
|
|
{
|
2007-01-09 19:23:12 +00:00
|
|
|
uhp->uh_alt_prev = old_curhead->uh_alt_prev;
|
|
|
|
if (uhp->uh_alt_prev != NULL)
|
|
|
|
uhp->uh_alt_prev->uh_alt_next = uhp;
|
2006-03-13 22:15:53 +00:00
|
|
|
old_curhead->uh_alt_prev = uhp;
|
|
|
|
if (curbuf->b_u_oldhead == old_curhead)
|
|
|
|
curbuf->b_u_oldhead = uhp;
|
|
|
|
}
|
2007-01-09 19:23:12 +00:00
|
|
|
else
|
|
|
|
uhp->uh_alt_prev = NULL;
|
2004-06-13 20:20:40 +00:00
|
|
|
if (curbuf->b_u_newhead != NULL)
|
|
|
|
curbuf->b_u_newhead->uh_prev = uhp;
|
2006-03-14 23:00:46 +00:00
|
|
|
|
2006-03-17 23:19:38 +00:00
|
|
|
uhp->uh_seq = ++curbuf->b_u_seq_last;
|
|
|
|
curbuf->b_u_seq_cur = uhp->uh_seq;
|
2006-03-14 23:00:46 +00:00
|
|
|
uhp->uh_time = time(NULL);
|
|
|
|
curbuf->b_u_seq_time = uhp->uh_time + 1;
|
|
|
|
|
2006-03-13 22:15:53 +00:00
|
|
|
uhp->uh_walk = 0;
|
2004-06-13 20:20:40 +00:00
|
|
|
uhp->uh_entry = NULL;
|
|
|
|
uhp->uh_getbot_entry = NULL;
|
|
|
|
uhp->uh_cursor = curwin->w_cursor; /* save cursor pos. for undo */
|
|
|
|
#ifdef FEAT_VIRTUALEDIT
|
|
|
|
if (virtual_active() && curwin->w_cursor.coladd > 0)
|
|
|
|
uhp->uh_cursor_vcol = getviscol();
|
|
|
|
else
|
|
|
|
uhp->uh_cursor_vcol = -1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* save changed and buffer empty flag for undo */
|
|
|
|
uhp->uh_flags = (curbuf->b_changed ? UH_CHANGED : 0) +
|
|
|
|
((curbuf->b_ml.ml_flags & ML_EMPTY) ? UH_EMPTYBUF : 0);
|
|
|
|
|
2006-02-27 00:08:02 +00:00
|
|
|
/* save named marks and Visual marks for undo */
|
2004-06-13 20:20:40 +00:00
|
|
|
mch_memmove(uhp->uh_namedm, curbuf->b_namedm, sizeof(pos_T) * NMARKS);
|
2006-02-27 00:08:02 +00:00
|
|
|
#ifdef FEAT_VISUAL
|
|
|
|
uhp->uh_visual = curbuf->b_visual;
|
|
|
|
#endif
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
curbuf->b_u_newhead = uhp;
|
|
|
|
if (curbuf->b_u_oldhead == NULL)
|
|
|
|
curbuf->b_u_oldhead = uhp;
|
|
|
|
++curbuf->b_u_numhead;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (p_ul < 0) /* no undo at all */
|
|
|
|
return OK;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* When saving a single line, and it has been saved just before, it
|
|
|
|
* doesn't make sense saving it again. Saves a lot of memory when
|
|
|
|
* making lots of changes inside the same line.
|
|
|
|
* This is only possible if the previous change didn't increase or
|
|
|
|
* decrease the number of lines.
|
|
|
|
* Check the ten last changes. More doesn't make sense and takes too
|
|
|
|
* long.
|
|
|
|
*/
|
|
|
|
if (size == 1)
|
|
|
|
{
|
|
|
|
uep = u_get_headentry();
|
|
|
|
prev_uep = NULL;
|
|
|
|
for (i = 0; i < 10; ++i)
|
|
|
|
{
|
|
|
|
if (uep == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* If lines have been inserted/deleted we give up.
|
|
|
|
* Also when the line was included in a multi-line save. */
|
|
|
|
if ((curbuf->b_u_newhead->uh_getbot_entry != uep
|
|
|
|
? (uep->ue_top + uep->ue_size + 1
|
|
|
|
!= (uep->ue_bot == 0
|
|
|
|
? curbuf->b_ml.ml_line_count + 1
|
|
|
|
: uep->ue_bot))
|
|
|
|
: uep->ue_lcount != curbuf->b_ml.ml_line_count)
|
|
|
|
|| (uep->ue_size > 1
|
|
|
|
&& top >= uep->ue_top
|
|
|
|
&& top + 2 <= uep->ue_top + uep->ue_size + 1))
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* If it's the same line we can skip saving it again. */
|
|
|
|
if (uep->ue_size == 1 && uep->ue_top == top)
|
|
|
|
{
|
|
|
|
if (i > 0)
|
|
|
|
{
|
|
|
|
/* It's not the last entry: get ue_bot for the last
|
|
|
|
* entry now. Following deleted/inserted lines go to
|
|
|
|
* the re-used entry. */
|
|
|
|
u_getbot();
|
|
|
|
curbuf->b_u_synced = FALSE;
|
|
|
|
|
|
|
|
/* Move the found entry to become the last entry. The
|
|
|
|
* order of undo/redo doesn't matter for the entries
|
|
|
|
* we move it over, since they don't change the line
|
|
|
|
* count and don't include this line. It does matter
|
|
|
|
* for the found entry if the line count is changed by
|
|
|
|
* the executed command. */
|
|
|
|
prev_uep->ue_next = uep->ue_next;
|
|
|
|
uep->ue_next = curbuf->b_u_newhead->uh_entry;
|
|
|
|
curbuf->b_u_newhead->uh_entry = uep;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The executed command may change the line count. */
|
|
|
|
if (newbot != 0)
|
|
|
|
uep->ue_bot = newbot;
|
|
|
|
else if (bot > curbuf->b_ml.ml_line_count)
|
|
|
|
uep->ue_bot = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
uep->ue_lcount = curbuf->b_ml.ml_line_count;
|
|
|
|
curbuf->b_u_newhead->uh_getbot_entry = uep;
|
|
|
|
}
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
prev_uep = uep;
|
|
|
|
uep = uep->ue_next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* find line number for ue_bot for previous u_save() */
|
|
|
|
u_getbot();
|
|
|
|
}
|
|
|
|
|
|
|
|
#if !defined(UNIX) && !defined(DJGPP) && !defined(WIN32) && !defined(__EMX__)
|
|
|
|
/*
|
|
|
|
* With Amiga and MSDOS 16 bit we can't handle big undo's, because
|
|
|
|
* then u_alloc_line would have to allocate a block larger than 32K
|
|
|
|
*/
|
|
|
|
if (size >= 8000)
|
|
|
|
goto nomem;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* add lines in front of entry list
|
|
|
|
*/
|
2005-02-22 08:49:11 +00:00
|
|
|
uep = (u_entry_T *)U_ALLOC_LINE((unsigned)sizeof(u_entry_T));
|
2004-06-13 20:20:40 +00:00
|
|
|
if (uep == NULL)
|
|
|
|
goto nomem;
|
2010-05-24 11:59:29 +02:00
|
|
|
vim_memset(uep, 0, sizeof(u_entry_T));
|
2007-10-01 20:54:15 +00:00
|
|
|
#ifdef U_DEBUG
|
|
|
|
uep->ue_magic = UE_MAGIC;
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
uep->ue_size = size;
|
|
|
|
uep->ue_top = top;
|
|
|
|
if (newbot != 0)
|
|
|
|
uep->ue_bot = newbot;
|
|
|
|
/*
|
|
|
|
* Use 0 for ue_bot if bot is below last line.
|
|
|
|
* Otherwise we have to compute ue_bot later.
|
|
|
|
*/
|
|
|
|
else if (bot > curbuf->b_ml.ml_line_count)
|
|
|
|
uep->ue_bot = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
uep->ue_lcount = curbuf->b_ml.ml_line_count;
|
|
|
|
curbuf->b_u_newhead->uh_getbot_entry = uep;
|
|
|
|
}
|
|
|
|
|
2005-02-22 08:49:11 +00:00
|
|
|
if (size > 0)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2005-02-22 08:49:11 +00:00
|
|
|
if ((uep->ue_array = (char_u **)U_ALLOC_LINE(
|
2004-06-13 20:20:40 +00:00
|
|
|
(unsigned)(sizeof(char_u *) * size))) == NULL)
|
|
|
|
{
|
|
|
|
u_freeentry(uep, 0L);
|
|
|
|
goto nomem;
|
|
|
|
}
|
|
|
|
for (i = 0, lnum = top + 1; i < size; ++i)
|
|
|
|
{
|
2005-08-15 21:41:48 +00:00
|
|
|
fast_breakcheck();
|
|
|
|
if (got_int)
|
|
|
|
{
|
|
|
|
u_freeentry(uep, i);
|
|
|
|
return FAIL;
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
if ((uep->ue_array[i] = u_save_line(lnum++)) == NULL)
|
|
|
|
{
|
|
|
|
u_freeentry(uep, i);
|
|
|
|
goto nomem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-06-25 23:04:51 +00:00
|
|
|
else
|
|
|
|
uep->ue_array = NULL;
|
2004-06-13 20:20:40 +00:00
|
|
|
uep->ue_next = curbuf->b_u_newhead->uh_entry;
|
|
|
|
curbuf->b_u_newhead->uh_entry = uep;
|
|
|
|
curbuf->b_u_synced = FALSE;
|
|
|
|
undo_undoes = FALSE;
|
|
|
|
|
2007-10-01 20:54:15 +00:00
|
|
|
#ifdef U_DEBUG
|
|
|
|
u_check(FALSE);
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
return OK;
|
|
|
|
|
|
|
|
nomem:
|
|
|
|
msg_silent = 0; /* must display the prompt */
|
|
|
|
if (ask_yesno((char_u *)_("No undo possible; continue anyway"), TRUE)
|
|
|
|
== 'y')
|
|
|
|
{
|
|
|
|
undo_off = TRUE; /* will be reset when character typed */
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
do_outofmem_msg((long_u)0);
|
|
|
|
return FAIL;
|
|
|
|
}
|
|
|
|
|
2010-05-23 23:34:36 +02:00
|
|
|
#ifdef FEAT_PERSISTENT_UNDO
|
|
|
|
|
|
|
|
# define UF_START_MAGIC 0xfeac /* magic at start of undofile */
|
|
|
|
# define UF_HEADER_MAGIC 0x5fd0 /* magic at start of header */
|
|
|
|
# define UF_END_MAGIC 0xe7aa /* magic after last header */
|
|
|
|
# define UF_VERSION 1 /* 2-byte undofile version number */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Compute the hash for the current buffer text into hash[UNDO_HASH_SIZE].
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
u_compute_hash(hash)
|
|
|
|
char_u *hash;
|
|
|
|
{
|
|
|
|
context_sha256_T ctx;
|
|
|
|
linenr_T lnum;
|
|
|
|
char_u *p;
|
|
|
|
|
|
|
|
sha256_start(&ctx);
|
|
|
|
for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum)
|
|
|
|
{
|
|
|
|
p = ml_get(lnum);
|
2010-05-24 21:34:22 +02:00
|
|
|
sha256_update(&ctx, p, (UINT32_T)(STRLEN(p) + 1));
|
2010-05-23 23:34:36 +02:00
|
|
|
}
|
|
|
|
sha256_finish(&ctx, hash);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Unserialize the pos_T at the current position in fp.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
unserialize_pos(pos, fp)
|
|
|
|
pos_T *pos;
|
|
|
|
FILE *fp;
|
|
|
|
{
|
|
|
|
pos->lnum = get4c(fp);
|
|
|
|
pos->col = get4c(fp);
|
|
|
|
#ifdef FEAT_VIRTUALEDIT
|
|
|
|
pos->coladd = get4c(fp);
|
|
|
|
#else
|
|
|
|
(void)get4c(fp);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Unserialize the visualinfo_T at the current position in fp.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
unserialize_visualinfo(info, fp)
|
|
|
|
visualinfo_T *info;
|
|
|
|
FILE *fp;
|
|
|
|
{
|
|
|
|
unserialize_pos(&info->vi_start, fp);
|
|
|
|
unserialize_pos(&info->vi_end, fp);
|
|
|
|
info->vi_mode = get4c(fp);
|
|
|
|
info->vi_curswant = get4c(fp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return an allocated string of the full path of the target undofile.
|
|
|
|
* When "reading" is TRUE find the file to read, go over all directories in
|
|
|
|
* 'undodir'.
|
|
|
|
* When "reading" is FALSE use the first name where the directory exists.
|
|
|
|
*/
|
|
|
|
static char_u *
|
|
|
|
u_get_undo_file_name(buf_ffname, reading)
|
|
|
|
char_u *buf_ffname;
|
|
|
|
int reading;
|
|
|
|
{
|
|
|
|
char_u *dirp;
|
|
|
|
char_u dir_name[IOSIZE + 1];
|
|
|
|
char_u *munged_name = NULL;
|
|
|
|
char_u *undo_file_name = NULL;
|
|
|
|
int dir_len;
|
|
|
|
char_u *p;
|
|
|
|
struct stat st;
|
|
|
|
char_u *ffname = buf_ffname;
|
|
|
|
#ifdef HAVE_READLINK
|
|
|
|
char_u fname_buf[MAXPATHL];
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (ffname == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
#ifdef HAVE_READLINK
|
|
|
|
/* Expand symlink in the file name, so that we put the undo file with the
|
|
|
|
* actual file instead of with the symlink. */
|
|
|
|
if (resolve_symlink(ffname, fname_buf) == OK)
|
|
|
|
ffname = fname_buf;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Loop over 'undodir'. When reading find the first file that exists.
|
|
|
|
* When not reading use the first directory that exists or ".". */
|
|
|
|
dirp = p_udir;
|
|
|
|
while (*dirp != NUL)
|
|
|
|
{
|
|
|
|
dir_len = copy_option_part(&dirp, dir_name, IOSIZE, ",");
|
|
|
|
if (dir_len == 1 && dir_name[0] == '.')
|
|
|
|
{
|
|
|
|
/* Use same directory as the ffname,
|
|
|
|
* "dir/name" -> "dir/.name.un~" */
|
2010-05-24 21:34:22 +02:00
|
|
|
undo_file_name = vim_strnsave(ffname, (int)(STRLEN(ffname) + 5));
|
2010-05-23 23:34:36 +02:00
|
|
|
if (undo_file_name == NULL)
|
|
|
|
break;
|
|
|
|
p = gettail(undo_file_name);
|
|
|
|
mch_memmove(p + 1, p, STRLEN(p) + 1);
|
|
|
|
*p = '.';
|
|
|
|
STRCAT(p, ".un~");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dir_name[dir_len] = NUL;
|
|
|
|
if (mch_isdir(dir_name))
|
|
|
|
{
|
|
|
|
if (munged_name == NULL)
|
|
|
|
{
|
|
|
|
munged_name = vim_strsave(ffname);
|
|
|
|
if (munged_name == NULL)
|
|
|
|
return NULL;
|
|
|
|
for (p = munged_name; *p != NUL; mb_ptr_adv(p))
|
|
|
|
if (vim_ispathsep(*p))
|
|
|
|
*p = '%';
|
|
|
|
}
|
|
|
|
undo_file_name = concat_fnames(dir_name, munged_name, TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* When reading check if the file exists. */
|
|
|
|
if (undo_file_name != NULL && (!reading
|
|
|
|
|| mch_stat((char *)undo_file_name, &st) >= 0))
|
|
|
|
break;
|
|
|
|
vim_free(undo_file_name);
|
|
|
|
undo_file_name = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
vim_free(munged_name);
|
|
|
|
return undo_file_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Load the undo tree from an undo file.
|
|
|
|
* If "name" is not NULL use it as the undo file name. This also means being
|
|
|
|
* a bit more verbose.
|
|
|
|
* Otherwise use curbuf->b_ffname to generate the undo file name.
|
|
|
|
* "hash[UNDO_HASH_SIZE]" must be the hash value of the buffer text.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
u_read_undo(name, hash)
|
|
|
|
char_u *name;
|
|
|
|
char_u *hash;
|
|
|
|
{
|
|
|
|
char_u *file_name;
|
|
|
|
FILE *fp;
|
|
|
|
long magic, version, str_len;
|
|
|
|
char_u *line_ptr = NULL;
|
|
|
|
linenr_T line_lnum;
|
|
|
|
colnr_T line_colnr;
|
|
|
|
linenr_T line_count;
|
|
|
|
int uep_len;
|
|
|
|
int line_len;
|
2010-05-24 21:34:22 +02:00
|
|
|
int num_head = 0;
|
2010-05-23 23:34:36 +02:00
|
|
|
long old_header_seq, new_header_seq, cur_header_seq;
|
|
|
|
long seq_last, seq_cur;
|
|
|
|
short old_idx = -1, new_idx = -1, cur_idx = -1;
|
|
|
|
long num_read_uhps = 0;
|
|
|
|
time_t seq_time;
|
|
|
|
int i, j;
|
|
|
|
int c;
|
|
|
|
short found_first_uep = 0;
|
|
|
|
char_u **array;
|
|
|
|
char_u *line;
|
|
|
|
u_entry_T *uep, *last_uep, *nuep;
|
|
|
|
u_header_T *uhp;
|
|
|
|
u_header_T **uhp_table = NULL;
|
|
|
|
char_u read_hash[UNDO_HASH_SIZE];
|
|
|
|
|
|
|
|
if (name == NULL)
|
|
|
|
{
|
|
|
|
file_name = u_get_undo_file_name(curbuf->b_ffname, TRUE);
|
|
|
|
if (file_name == NULL)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
file_name = name;
|
|
|
|
|
|
|
|
if (p_verbose > 0)
|
|
|
|
smsg((char_u *)_("Reading undo file: %s"), file_name);
|
|
|
|
fp = mch_fopen((char *)file_name, "r");
|
|
|
|
if (fp == NULL)
|
|
|
|
{
|
|
|
|
if (name != NULL || p_verbose > 0)
|
|
|
|
EMSG2(_("E822: Cannot open undo file for reading: %s"), file_name);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Begin overall file information */
|
|
|
|
magic = get2c(fp);
|
|
|
|
if (magic != UF_START_MAGIC)
|
|
|
|
{
|
|
|
|
EMSG2(_("E823: Corrupted undo file: %s"), file_name);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
version = get2c(fp);
|
|
|
|
if (version != UF_VERSION)
|
|
|
|
{
|
|
|
|
EMSG2(_("E824: Incompatible undo file: %s"), file_name);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
fread(read_hash, UNDO_HASH_SIZE, 1, fp);
|
|
|
|
line_count = (linenr_T)get4c(fp);
|
|
|
|
if (memcmp(hash, read_hash, UNDO_HASH_SIZE) != 0
|
|
|
|
|| line_count != curbuf->b_ml.ml_line_count)
|
|
|
|
{
|
|
|
|
if (p_verbose > 0 || name != NULL)
|
|
|
|
{
|
|
|
|
verbose_enter();
|
2010-05-24 11:59:29 +02:00
|
|
|
give_warning((char_u *)_("File contents changed, cannot use undo info"), TRUE);
|
2010-05-23 23:34:36 +02:00
|
|
|
verbose_leave();
|
|
|
|
}
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Begin undo data for U */
|
|
|
|
str_len = get4c(fp);
|
|
|
|
if (str_len < 0)
|
|
|
|
goto error;
|
|
|
|
else if (str_len > 0)
|
|
|
|
{
|
|
|
|
if ((line_ptr = U_ALLOC_LINE(str_len)) == NULL)
|
|
|
|
goto error;
|
|
|
|
for (i = 0; i < str_len; i++)
|
|
|
|
line_ptr[i] = (char_u)getc(fp);
|
|
|
|
line_ptr[i] = NUL;
|
|
|
|
}
|
|
|
|
line_lnum = (linenr_T)get4c(fp);
|
|
|
|
line_colnr = (colnr_T)get4c(fp);
|
|
|
|
|
|
|
|
/* Begin general undo data */
|
|
|
|
old_header_seq = get4c(fp);
|
|
|
|
new_header_seq = get4c(fp);
|
|
|
|
cur_header_seq = get4c(fp);
|
|
|
|
num_head = get4c(fp);
|
|
|
|
seq_last = get4c(fp);
|
|
|
|
seq_cur = get4c(fp);
|
|
|
|
seq_time = get4c(fp);
|
|
|
|
|
|
|
|
/* uhp_table will store the freshly created undo headers we allocate
|
|
|
|
* until we insert them into curbuf. The table remains sorted by the
|
|
|
|
* sequence numbers of the headers. */
|
|
|
|
uhp_table = (u_header_T **)U_ALLOC_LINE(num_head * sizeof(u_header_T *));
|
|
|
|
if (uhp_table == NULL)
|
|
|
|
goto error;
|
|
|
|
vim_memset(uhp_table, 0, num_head * sizeof(u_header_T *));
|
|
|
|
|
|
|
|
c = get2c(fp);
|
|
|
|
while (c == UF_HEADER_MAGIC)
|
|
|
|
{
|
|
|
|
found_first_uep = 0;
|
|
|
|
uhp = (u_header_T *)U_ALLOC_LINE((unsigned)sizeof(u_header_T));
|
|
|
|
if (uhp == NULL)
|
|
|
|
goto error;
|
|
|
|
vim_memset(uhp, 0, sizeof(u_header_T));
|
|
|
|
/* We're not actually trying to store pointers here. We're just storing
|
|
|
|
* IDs so we can swizzle them into pointers later - hence the type
|
|
|
|
* cast. */
|
2010-05-24 21:34:22 +02:00
|
|
|
uhp->uh_next = (u_header_T *)get4c(fp);
|
|
|
|
uhp->uh_prev = (u_header_T *)get4c(fp);
|
|
|
|
uhp->uh_alt_next = (u_header_T *)get4c(fp);
|
|
|
|
uhp->uh_alt_prev = (u_header_T *)get4c(fp);
|
2010-05-23 23:34:36 +02:00
|
|
|
uhp->uh_seq = get4c(fp);
|
|
|
|
if (uhp->uh_seq <= 0)
|
|
|
|
{
|
|
|
|
EMSG2(_("E825: Undo file corruption: invalid uh_seq.: %s"),
|
|
|
|
file_name);
|
|
|
|
U_FREE_LINE(uhp);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
uhp->uh_walk = 0;
|
|
|
|
unserialize_pos(&uhp->uh_cursor, fp);
|
|
|
|
#ifdef FEAT_VIRTUALEDIT
|
|
|
|
uhp->uh_cursor_vcol = get4c(fp);
|
|
|
|
#else
|
|
|
|
(void)get4c(fp);
|
|
|
|
#endif
|
|
|
|
uhp->uh_flags = get2c(fp);
|
|
|
|
for (i = 0; i < NMARKS; ++i)
|
|
|
|
unserialize_pos(&uhp->uh_namedm[i], fp);
|
|
|
|
#ifdef FEAT_VISUAL
|
|
|
|
unserialize_visualinfo(&uhp->uh_visual, fp);
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
visualinfo_T info;
|
|
|
|
unserialize_visualinfo(&info, fp);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
uhp->uh_time = get4c(fp);
|
|
|
|
|
|
|
|
/* Unserialize uep list. The first 4 bytes is the length of the
|
|
|
|
* entire uep in bytes minus the length of the strings within.
|
|
|
|
* -1 is a sentinel value meaning no more ueps.*/
|
|
|
|
last_uep = NULL;
|
|
|
|
while ((uep_len = get4c(fp)) != -1)
|
|
|
|
{
|
|
|
|
uep = (u_entry_T *)U_ALLOC_LINE((unsigned)sizeof(u_entry_T));
|
|
|
|
if (uep == NULL)
|
|
|
|
goto error;
|
2010-05-24 11:59:29 +02:00
|
|
|
vim_memset(uep, 0, sizeof(u_entry_T));
|
2010-05-23 23:34:36 +02:00
|
|
|
uep->ue_top = get4c(fp);
|
|
|
|
uep->ue_bot = get4c(fp);
|
|
|
|
uep->ue_lcount = get4c(fp);
|
|
|
|
uep->ue_size = get4c(fp);
|
|
|
|
uep->ue_next = NULL;
|
|
|
|
array = (char_u **)U_ALLOC_LINE(
|
|
|
|
(unsigned)(sizeof(char_u *) * uep->ue_size));
|
|
|
|
for (i = 0; i < uep->ue_size; i++)
|
|
|
|
{
|
|
|
|
line_len = get4c(fp);
|
|
|
|
/* U_ALLOC_LINE provides an extra byte for the NUL terminator.*/
|
|
|
|
line = (char_u *)U_ALLOC_LINE(
|
|
|
|
(unsigned) (sizeof(char_u) * line_len));
|
|
|
|
if (line == NULL)
|
|
|
|
goto error;
|
|
|
|
for (j = 0; j < line_len; j++)
|
|
|
|
{
|
|
|
|
line[j] = getc(fp);
|
|
|
|
}
|
|
|
|
line[j] = '\0';
|
|
|
|
array[i] = line;
|
|
|
|
}
|
|
|
|
uep->ue_array = array;
|
|
|
|
if (found_first_uep == 0)
|
|
|
|
{
|
|
|
|
uhp->uh_entry = uep;
|
|
|
|
found_first_uep = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
last_uep->ue_next = uep;
|
|
|
|
}
|
|
|
|
last_uep = uep;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Insertion sort the uhp into the table by its uh_seq. This is
|
|
|
|
* required because, while the number of uhps is limited to
|
|
|
|
* num_heads, and the uh_seq order is monotonic with respect to
|
|
|
|
* creation time, the starting uh_seq can be > 0 if any undolevel
|
|
|
|
* culling was done at undofile write time, and there can be uh_seq
|
|
|
|
* gaps in the uhps.
|
|
|
|
*/
|
|
|
|
for (i = num_read_uhps - 1; i >= -1; i--)
|
|
|
|
{
|
|
|
|
/* if i == -1, we've hit the leftmost side of the table, so insert
|
|
|
|
* at uhp_table[0]. */
|
|
|
|
if (i == -1 || uhp->uh_seq > uhp_table[i]->uh_seq)
|
|
|
|
{
|
|
|
|
/* If we've had to move from the rightmost side of the table,
|
|
|
|
* we have to shift everything to the right by one spot. */
|
2010-05-24 22:06:04 +02:00
|
|
|
if (num_read_uhps - i - 1 > 0)
|
2010-05-23 23:34:36 +02:00
|
|
|
{
|
|
|
|
memmove(uhp_table + i + 2, uhp_table + i + 1,
|
2010-05-24 22:06:04 +02:00
|
|
|
(num_read_uhps - i - 1) * sizeof(u_header_T *));
|
2010-05-23 23:34:36 +02:00
|
|
|
}
|
|
|
|
uhp_table[i + 1] = uhp;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (uhp->uh_seq == uhp_table[i]->uh_seq)
|
|
|
|
{
|
|
|
|
EMSG2(_("E826 Undo file corruption: duplicate uh_seq: %s"),
|
|
|
|
file_name);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
num_read_uhps++;
|
|
|
|
c = get2c(fp);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c != UF_END_MAGIC)
|
|
|
|
{
|
|
|
|
EMSG2(_("E827: Undo file corruption; no end marker: %s"), file_name);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We've organized all of the uhps into a table sorted by uh_seq. Now we
|
|
|
|
* iterate through the table and swizzle each sequence number we've
|
|
|
|
* stored in uh_foo into a pointer corresponding to the header with that
|
|
|
|
* sequence number. Then free curbuf's old undo structure, give curbuf
|
|
|
|
* the updated {old,new,cur}head pointers, and then free the table. */
|
|
|
|
for (i = 0; i < num_head; i++)
|
|
|
|
{
|
|
|
|
uhp = uhp_table[i];
|
|
|
|
if (uhp == NULL)
|
|
|
|
continue;
|
|
|
|
for (j = 0; j < num_head; j++)
|
|
|
|
{
|
|
|
|
if (uhp_table[j] == NULL)
|
|
|
|
continue;
|
|
|
|
if (uhp_table[j]->uh_seq == (long)uhp->uh_next)
|
|
|
|
uhp->uh_next = uhp_table[j];
|
|
|
|
if (uhp_table[j]->uh_seq == (long)uhp->uh_prev)
|
|
|
|
uhp->uh_prev = uhp_table[j];
|
|
|
|
if (uhp_table[j]->uh_seq == (long)uhp->uh_alt_next)
|
|
|
|
uhp->uh_alt_next = uhp_table[j];
|
|
|
|
if (uhp_table[j]->uh_seq == (long)uhp->uh_alt_prev)
|
|
|
|
uhp->uh_alt_prev = uhp_table[j];
|
|
|
|
}
|
|
|
|
if (old_header_seq > 0 && old_idx < 0 && uhp->uh_seq == old_header_seq)
|
|
|
|
old_idx = i;
|
|
|
|
if (new_header_seq > 0 && new_idx < 0 && uhp->uh_seq == new_header_seq)
|
|
|
|
new_idx = i;
|
|
|
|
if (cur_header_seq > 0 && cur_idx < 0 && uhp->uh_seq == cur_header_seq)
|
|
|
|
cur_idx = i;
|
|
|
|
}
|
|
|
|
u_blockfree(curbuf);
|
|
|
|
curbuf->b_u_oldhead = old_idx < 0 ? 0 : uhp_table[old_idx];
|
|
|
|
curbuf->b_u_newhead = new_idx < 0 ? 0 : uhp_table[new_idx];
|
|
|
|
curbuf->b_u_curhead = cur_idx < 0 ? 0 : uhp_table[cur_idx];
|
|
|
|
curbuf->b_u_line_ptr = line_ptr;
|
|
|
|
curbuf->b_u_line_lnum = line_lnum;
|
|
|
|
curbuf->b_u_line_colnr = line_colnr;
|
|
|
|
curbuf->b_u_numhead = num_head;
|
|
|
|
curbuf->b_u_seq_last = seq_last;
|
|
|
|
curbuf->b_u_seq_cur = seq_cur;
|
|
|
|
curbuf->b_u_seq_time = seq_time;
|
|
|
|
U_FREE_LINE(uhp_table);
|
|
|
|
#ifdef U_DEBUG
|
|
|
|
u_check(TRUE);
|
|
|
|
#endif
|
|
|
|
if (name != NULL)
|
|
|
|
smsg((char_u *)_("Finished reading undo file %s"), file_name);
|
|
|
|
goto theend;
|
|
|
|
|
|
|
|
error:
|
|
|
|
if (line_ptr != NULL)
|
|
|
|
U_FREE_LINE(line_ptr);
|
|
|
|
if (uhp_table != NULL)
|
|
|
|
{
|
|
|
|
for (i = 0; i < num_head; i++)
|
|
|
|
{
|
|
|
|
if (uhp_table[i] != NULL)
|
|
|
|
{
|
|
|
|
uep = uhp_table[i]->uh_entry;
|
|
|
|
while (uep != NULL)
|
|
|
|
{
|
|
|
|
nuep = uep->ue_next;
|
|
|
|
u_freeentry(uep, uep->ue_size);
|
|
|
|
uep = nuep;
|
|
|
|
}
|
|
|
|
U_FREE_LINE(uhp_table[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
U_FREE_LINE(uhp_table);
|
|
|
|
}
|
|
|
|
|
|
|
|
theend:
|
|
|
|
if (fp != NULL)
|
|
|
|
fclose(fp);
|
|
|
|
if (file_name != name)
|
|
|
|
vim_free(file_name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Serialize "uep" to "fp".
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
serialize_uep(uep, fp)
|
|
|
|
u_entry_T *uep;
|
|
|
|
FILE *fp;
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int uep_len;
|
|
|
|
int *entry_lens;
|
|
|
|
|
|
|
|
if (uep->ue_size > 0)
|
|
|
|
entry_lens = (int *)alloc(uep->ue_size * sizeof(int));
|
2010-05-24 21:34:22 +02:00
|
|
|
else
|
|
|
|
entry_lens = NULL;
|
2010-05-23 23:34:36 +02:00
|
|
|
|
|
|
|
/* Define uep_len to be the size of the entire uep minus the size of its
|
|
|
|
* component strings, in bytes. The sizes of the component strings
|
|
|
|
* are written before each individual string.
|
|
|
|
* We have 4 entries each of 4 bytes, plus ue_size * 4 bytes
|
|
|
|
* of string size information. */
|
|
|
|
|
|
|
|
uep_len = uep->ue_size * 4;
|
|
|
|
/* Collect sizing information for later serialization. */
|
|
|
|
for (i = 0; i < uep->ue_size; i++)
|
|
|
|
{
|
|
|
|
entry_lens[i] = (int)STRLEN(uep->ue_array[i]);
|
|
|
|
uep_len += entry_lens[i];
|
|
|
|
}
|
|
|
|
put_bytes(fp, (long_u)uep_len, 4);
|
|
|
|
put_bytes(fp, (long_u)uep->ue_top, 4);
|
|
|
|
put_bytes(fp, (long_u)uep->ue_bot, 4);
|
|
|
|
put_bytes(fp, (long_u)uep->ue_lcount, 4);
|
|
|
|
put_bytes(fp, (long_u)uep->ue_size, 4);
|
|
|
|
for (i = 0; i < uep->ue_size; i++)
|
|
|
|
{
|
|
|
|
if (put_bytes(fp, (long_u)entry_lens[i], 4) == FAIL)
|
|
|
|
return FAIL;
|
|
|
|
fprintf(fp, "%s", uep->ue_array[i]);
|
|
|
|
}
|
|
|
|
if (uep->ue_size > 0)
|
|
|
|
vim_free(entry_lens);
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Serialize "pos" to "fp".
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
serialize_pos(pos, fp)
|
|
|
|
pos_T pos;
|
|
|
|
FILE *fp;
|
|
|
|
{
|
|
|
|
put_bytes(fp, (long_u)pos.lnum, 4);
|
|
|
|
put_bytes(fp, (long_u)pos.col, 4);
|
|
|
|
#ifdef FEAT_VIRTUALEDIT
|
|
|
|
put_bytes(fp, (long_u)pos.coladd, 4);
|
|
|
|
#else
|
|
|
|
put_bytes(fp, (long_u)0, 4);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Serialize "info" to "fp".
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
serialize_visualinfo(info, fp)
|
|
|
|
visualinfo_T info;
|
|
|
|
FILE *fp;
|
|
|
|
{
|
|
|
|
serialize_pos(info.vi_start, fp);
|
|
|
|
serialize_pos(info.vi_end, fp);
|
|
|
|
put_bytes(fp, (long_u)info.vi_mode, 4);
|
|
|
|
put_bytes(fp, (long_u)info.vi_curswant, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
static char_u e_not_open[] = N_("E828: Cannot open undo file for writing: %s");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write the undo tree in an undo file.
|
|
|
|
* When "name" is not NULL, use it as the name of the undo file.
|
|
|
|
* Otherwise use buf->b_ffname to generate the undo file name.
|
|
|
|
* "buf" must never be null, buf->b_ffname is used to obtain the original file
|
|
|
|
* permissions.
|
|
|
|
* "forceit" is TRUE for ":wundo!", FALSE otherwise.
|
|
|
|
* "hash[UNDO_HASH_SIZE]" must be the hash value of the buffer text.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
u_write_undo(name, forceit, buf, hash)
|
|
|
|
char_u *name;
|
|
|
|
int forceit;
|
|
|
|
buf_T *buf;
|
|
|
|
char_u *hash;
|
|
|
|
{
|
|
|
|
u_header_T *uhp;
|
|
|
|
u_entry_T *uep;
|
|
|
|
char_u *file_name;
|
|
|
|
int str_len, i, uep_len, mark;
|
|
|
|
int fd;
|
|
|
|
FILE *fp = NULL;
|
|
|
|
int perm;
|
|
|
|
int write_ok = FALSE;
|
|
|
|
#ifdef UNIX
|
2010-05-24 22:02:24 +02:00
|
|
|
int st_old_valid = FALSE;
|
2010-05-23 23:34:36 +02:00
|
|
|
struct stat st_old;
|
|
|
|
struct stat st_new;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (name == NULL)
|
|
|
|
{
|
|
|
|
file_name = u_get_undo_file_name(buf->b_ffname, FALSE);
|
|
|
|
if (file_name == NULL)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
file_name = name;
|
|
|
|
|
2010-05-24 22:02:24 +02:00
|
|
|
if (buf->b_ffname == NULL)
|
2010-05-23 23:34:36 +02:00
|
|
|
perm = 0600;
|
2010-05-24 22:02:24 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
#ifdef UNIX
|
|
|
|
if (mch_stat((char *)buf->b_ffname, &st_old) >= 0)
|
|
|
|
{
|
|
|
|
perm = st_old.st_mode;
|
|
|
|
st_old_valid = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
perm = 0600;
|
2010-05-23 23:34:36 +02:00
|
|
|
#else
|
2010-05-24 22:02:24 +02:00
|
|
|
perm = mch_getperm(buf->b_ffname);
|
|
|
|
if (perm < 0)
|
|
|
|
perm = 0600;
|
2010-05-23 23:34:36 +02:00
|
|
|
#endif
|
2010-05-24 22:02:24 +02:00
|
|
|
}
|
|
|
|
|
2010-05-23 23:34:36 +02:00
|
|
|
/* set file protection same as original file, but strip s-bit */
|
|
|
|
perm = perm & 0777;
|
|
|
|
|
|
|
|
/* If the undo file exists, verify that it actually is an undo file, and
|
|
|
|
* delete it. */
|
|
|
|
if (mch_getperm(file_name) >= 0)
|
|
|
|
{
|
|
|
|
if (name == NULL || !forceit)
|
|
|
|
{
|
|
|
|
/* Check we can read it and it's an undo file. */
|
|
|
|
fd = mch_open((char *)file_name, O_RDONLY|O_EXTRA, 0);
|
|
|
|
if (fd < 0)
|
|
|
|
{
|
|
|
|
if (name != NULL || p_verbose > 0)
|
|
|
|
smsg((char_u *)_("Will not overwrite with undo file, cannot read: %s"),
|
|
|
|
file_name);
|
|
|
|
goto theend;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
char_u buf[2];
|
|
|
|
|
|
|
|
vim_read(fd, buf, 2);
|
|
|
|
close(fd);
|
|
|
|
if ((buf[0] << 8) + buf[1] != UF_START_MAGIC)
|
|
|
|
{
|
|
|
|
if (name != NULL || p_verbose > 0)
|
|
|
|
smsg((char_u *)_("Will not overwrite, this is not an undo file: %s"),
|
|
|
|
file_name);
|
|
|
|
goto theend;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mch_remove(file_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
fd = mch_open((char *)file_name,
|
|
|
|
O_CREAT|O_EXTRA|O_WRONLY|O_EXCL|O_NOFOLLOW, perm);
|
|
|
|
(void)mch_setperm(file_name, perm);
|
|
|
|
if (fd < 0)
|
|
|
|
{
|
|
|
|
EMSG2(_(e_not_open), file_name);
|
|
|
|
goto theend;
|
|
|
|
}
|
|
|
|
if (p_verbose > 0)
|
|
|
|
smsg((char_u *)_("Writing undo file: %s"), file_name);
|
|
|
|
|
|
|
|
#ifdef UNIX
|
|
|
|
/*
|
|
|
|
* Try to set the group of the undo file same as the original file. If
|
|
|
|
* this fails, set the protection bits for the group same as the
|
|
|
|
* protection bits for others.
|
|
|
|
*/
|
2010-05-24 22:02:24 +02:00
|
|
|
if (st_old_valid && (mch_stat((char *)file_name, &st_new) >= 0
|
|
|
|
&& st_new.st_gid != st_old.st_gid
|
2010-05-23 23:34:36 +02:00
|
|
|
# ifdef HAVE_FCHOWN /* sequent-ptx lacks fchown() */
|
2010-05-24 22:02:24 +02:00
|
|
|
&& fchown(fd, (uid_t)-1, st_old.st_gid) != 0)
|
2010-05-23 23:34:36 +02:00
|
|
|
# endif
|
|
|
|
)
|
|
|
|
mch_setperm(file_name, (perm & 0707) | ((perm & 07) << 3));
|
|
|
|
# ifdef HAVE_SELINUX
|
2010-05-24 22:02:24 +02:00
|
|
|
if (buf->b_ffname != NULL)
|
|
|
|
mch_copy_sec(buf->b_ffname, file_name);
|
2010-05-23 23:34:36 +02:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
fp = fdopen(fd, "w");
|
|
|
|
if (fp == NULL)
|
|
|
|
{
|
|
|
|
EMSG2(_(e_not_open), file_name);
|
|
|
|
close(fd);
|
|
|
|
mch_remove(file_name);
|
|
|
|
goto theend;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Start writing, first overall file information */
|
|
|
|
put_bytes(fp, (long_u)UF_START_MAGIC, 2);
|
|
|
|
put_bytes(fp, (long_u)UF_VERSION, 2);
|
|
|
|
|
|
|
|
/* Write a hash of the buffer text, so that we can verify it is still the
|
|
|
|
* same when reading the buffer text. */
|
|
|
|
if (fwrite(hash, (size_t)UNDO_HASH_SIZE, (size_t)1, fp) != 1)
|
|
|
|
goto write_error;
|
|
|
|
put_bytes(fp, (long_u)buf->b_ml.ml_line_count, 4);
|
|
|
|
|
|
|
|
/* Begin undo data for U */
|
2010-05-24 21:34:22 +02:00
|
|
|
str_len = buf->b_u_line_ptr != NULL ? (int)STRLEN(buf->b_u_line_ptr) : 0;
|
2010-05-23 23:34:36 +02:00
|
|
|
put_bytes(fp, (long_u)str_len, 4);
|
|
|
|
if (str_len > 0 && fwrite(buf->b_u_line_ptr, (size_t)str_len,
|
|
|
|
(size_t)1, fp) != 1)
|
|
|
|
goto write_error;
|
|
|
|
|
|
|
|
put_bytes(fp, (long_u)buf->b_u_line_lnum, 4);
|
|
|
|
put_bytes(fp, (long_u)buf->b_u_line_colnr, 4);
|
|
|
|
|
|
|
|
/* Begin general undo data */
|
|
|
|
uhp = buf->b_u_oldhead;
|
|
|
|
put_bytes(fp, (long_u)(uhp != NULL ? uhp->uh_seq : 0), 4);
|
|
|
|
|
|
|
|
uhp = buf->b_u_newhead;
|
|
|
|
put_bytes(fp, (long_u)(uhp != NULL ? uhp->uh_seq : 0), 4);
|
|
|
|
|
|
|
|
uhp = buf->b_u_curhead;
|
|
|
|
put_bytes(fp, (long_u)(uhp != NULL ? uhp->uh_seq : 0), 4);
|
|
|
|
|
|
|
|
put_bytes(fp, (long_u)buf->b_u_numhead, 4);
|
|
|
|
put_bytes(fp, (long_u)buf->b_u_seq_last, 4);
|
|
|
|
put_bytes(fp, (long_u)buf->b_u_seq_cur, 4);
|
|
|
|
put_bytes(fp, (long_u)buf->b_u_seq_time, 4);
|
|
|
|
|
|
|
|
/* Iteratively serialize UHPs and their UEPs from the top down. */
|
|
|
|
mark = ++lastmark;
|
|
|
|
uhp = buf->b_u_oldhead;
|
|
|
|
while (uhp != NULL)
|
|
|
|
{
|
|
|
|
/* Serialize current UHP if we haven't seen it */
|
|
|
|
if (uhp->uh_walk != mark)
|
|
|
|
{
|
|
|
|
if (put_bytes(fp, (long_u)UF_HEADER_MAGIC, 2) == FAIL)
|
|
|
|
goto write_error;
|
|
|
|
|
|
|
|
put_bytes(fp, (long_u)((uhp->uh_next != NULL)
|
|
|
|
? uhp->uh_next->uh_seq : 0), 4);
|
|
|
|
put_bytes(fp, (long_u)((uhp->uh_prev != NULL)
|
|
|
|
? uhp->uh_prev->uh_seq : 0), 4);
|
|
|
|
put_bytes(fp, (long_u)((uhp->uh_alt_next != NULL)
|
|
|
|
? uhp->uh_alt_next->uh_seq : 0), 4);
|
|
|
|
put_bytes(fp, (long_u)((uhp->uh_alt_prev != NULL)
|
|
|
|
? uhp->uh_alt_prev->uh_seq : 0), 4);
|
|
|
|
put_bytes(fp, uhp->uh_seq, 4);
|
|
|
|
serialize_pos(uhp->uh_cursor, fp);
|
|
|
|
#ifdef FEAT_VIRTUALEDIT
|
|
|
|
put_bytes(fp, (long_u)uhp->uh_cursor_vcol, 4);
|
|
|
|
#else
|
|
|
|
put_bytes(fp, (long_u)0, 4);
|
|
|
|
#endif
|
|
|
|
put_bytes(fp, (long_u)uhp->uh_flags, 2);
|
|
|
|
/* Assume NMARKS will stay the same. */
|
|
|
|
for (i = 0; i < NMARKS; ++i)
|
|
|
|
{
|
|
|
|
serialize_pos(uhp->uh_namedm[i], fp);
|
|
|
|
}
|
|
|
|
#ifdef FEAT_VISUAL
|
|
|
|
serialize_visualinfo(uhp->uh_visual, fp);
|
|
|
|
#endif
|
|
|
|
put_bytes(fp, (long_u)uhp->uh_time, 4);
|
|
|
|
|
|
|
|
uep = uhp->uh_entry;
|
|
|
|
while (uep != NULL)
|
|
|
|
{
|
|
|
|
if (serialize_uep(uep, fp) == FAIL)
|
|
|
|
goto write_error;
|
|
|
|
uep = uep->ue_next;
|
|
|
|
}
|
|
|
|
/* Sentinel value: no more ueps */
|
|
|
|
uep_len = -1;
|
|
|
|
put_bytes(fp, (long_u)uep_len, 4);
|
|
|
|
uhp->uh_walk = mark;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now walk through the tree - algorithm from undo_time */
|
|
|
|
if (uhp->uh_prev != NULL && uhp->uh_prev->uh_walk != mark)
|
|
|
|
uhp = uhp->uh_prev;
|
|
|
|
else if (uhp->uh_alt_next != NULL && uhp->uh_alt_next->uh_walk != mark)
|
|
|
|
uhp = uhp->uh_alt_next;
|
|
|
|
else if (uhp->uh_next != NULL && uhp->uh_alt_prev == NULL
|
|
|
|
&& uhp->uh_next->uh_walk != mark)
|
|
|
|
uhp = uhp->uh_next;
|
|
|
|
else if (uhp->uh_alt_prev != NULL)
|
|
|
|
uhp = uhp->uh_alt_prev;
|
|
|
|
else
|
|
|
|
uhp = uhp->uh_next;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (put_bytes(fp, (long_u)UF_END_MAGIC, 2) == OK)
|
|
|
|
write_ok = TRUE;
|
|
|
|
|
|
|
|
write_error:
|
|
|
|
fclose(fp);
|
|
|
|
if (!write_ok)
|
|
|
|
EMSG2(_("E829: write error in undo file: %s"), file_name);
|
|
|
|
|
|
|
|
#if defined(MACOS_CLASSIC) || defined(WIN3264)
|
2010-05-24 22:02:24 +02:00
|
|
|
if (buf->b_ffname != NULL)
|
|
|
|
(void)mch_copy_file_attribute(buf->b_ffname, file_name);
|
2010-05-23 23:34:36 +02:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_ACL
|
2010-05-24 22:02:24 +02:00
|
|
|
if (buf->b_ffname != NULL)
|
2010-05-23 23:34:36 +02:00
|
|
|
{
|
|
|
|
vim_acl_T acl;
|
|
|
|
|
|
|
|
/* For systems that support ACL: get the ACL from the original file. */
|
|
|
|
acl = mch_get_acl(buf->b_ffname);
|
|
|
|
mch_set_acl(file_name, acl);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
theend:
|
|
|
|
if (file_name != name)
|
|
|
|
vim_free(file_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* FEAT_PERSISTENT_UNDO */
|
|
|
|
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/*
|
|
|
|
* If 'cpoptions' contains 'u': Undo the previous undo or redo (vi compatible).
|
|
|
|
* If 'cpoptions' does not contain 'u': Always undo.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
u_undo(count)
|
|
|
|
int count;
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* If we get an undo command while executing a macro, we behave like the
|
|
|
|
* original vi. If this happens twice in one macro the result will not
|
|
|
|
* be compatible.
|
|
|
|
*/
|
|
|
|
if (curbuf->b_u_synced == FALSE)
|
|
|
|
{
|
2006-04-10 14:55:34 +00:00
|
|
|
u_sync(TRUE);
|
2004-06-13 20:20:40 +00:00
|
|
|
count = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vim_strchr(p_cpo, CPO_UNDO) == NULL)
|
|
|
|
undo_undoes = TRUE;
|
|
|
|
else
|
|
|
|
undo_undoes = !undo_undoes;
|
|
|
|
u_doit(count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If 'cpoptions' contains 'u': Repeat the previous undo or redo.
|
|
|
|
* If 'cpoptions' does not contain 'u': Always redo.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
u_redo(count)
|
|
|
|
int count;
|
|
|
|
{
|
|
|
|
if (vim_strchr(p_cpo, CPO_UNDO) == NULL)
|
|
|
|
undo_undoes = FALSE;
|
|
|
|
u_doit(count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Undo or redo, depending on 'undo_undoes', 'count' times.
|
|
|
|
*/
|
|
|
|
static void
|
2006-03-17 23:19:38 +00:00
|
|
|
u_doit(startcount)
|
|
|
|
int startcount;
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2006-03-17 23:19:38 +00:00
|
|
|
int count = startcount;
|
|
|
|
|
2006-01-19 22:16:24 +00:00
|
|
|
if (!undo_allowed())
|
2004-06-13 20:20:40 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
u_newcount = 0;
|
|
|
|
u_oldcount = 0;
|
2005-03-04 23:39:37 +00:00
|
|
|
if (curbuf->b_ml.ml_flags & ML_EMPTY)
|
|
|
|
u_oldcount = -1;
|
2004-06-13 20:20:40 +00:00
|
|
|
while (count--)
|
|
|
|
{
|
|
|
|
if (undo_undoes)
|
|
|
|
{
|
|
|
|
if (curbuf->b_u_curhead == NULL) /* first undo */
|
|
|
|
curbuf->b_u_curhead = curbuf->b_u_newhead;
|
|
|
|
else if (p_ul > 0) /* multi level undo */
|
|
|
|
/* get next undo */
|
|
|
|
curbuf->b_u_curhead = curbuf->b_u_curhead->uh_next;
|
|
|
|
/* nothing to undo */
|
|
|
|
if (curbuf->b_u_numhead == 0 || curbuf->b_u_curhead == NULL)
|
|
|
|
{
|
|
|
|
/* stick curbuf->b_u_curhead at end */
|
|
|
|
curbuf->b_u_curhead = curbuf->b_u_oldhead;
|
|
|
|
beep_flush();
|
2006-03-17 23:19:38 +00:00
|
|
|
if (count == startcount - 1)
|
|
|
|
{
|
|
|
|
MSG(_("Already at oldest change"));
|
|
|
|
return;
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-03-17 23:19:38 +00:00
|
|
|
u_undoredo(TRUE);
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (curbuf->b_u_curhead == NULL || p_ul <= 0)
|
|
|
|
{
|
|
|
|
beep_flush(); /* nothing to redo */
|
2006-03-17 23:19:38 +00:00
|
|
|
if (count == startcount - 1)
|
|
|
|
{
|
|
|
|
MSG(_("Already at newest change"));
|
|
|
|
return;
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-03-17 23:19:38 +00:00
|
|
|
u_undoredo(FALSE);
|
2006-03-13 22:15:53 +00:00
|
|
|
|
|
|
|
/* Advance for next redo. Set "newhead" when at the end of the
|
|
|
|
* redoable changes. */
|
|
|
|
if (curbuf->b_u_curhead->uh_prev == NULL)
|
|
|
|
curbuf->b_u_newhead = curbuf->b_u_curhead;
|
2004-06-13 20:20:40 +00:00
|
|
|
curbuf->b_u_curhead = curbuf->b_u_curhead->uh_prev;
|
|
|
|
}
|
|
|
|
}
|
2006-03-23 22:59:57 +00:00
|
|
|
u_undo_end(undo_undoes, FALSE);
|
2006-03-13 22:15:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Undo or redo over the timeline.
|
|
|
|
* When "step" is negative go back in time, otherwise goes forward in time.
|
2006-03-14 23:00:46 +00:00
|
|
|
* When "sec" is FALSE make "step" steps, when "sec" is TRUE use "step" as
|
|
|
|
* seconds.
|
2006-03-16 21:41:35 +00:00
|
|
|
* When "absolute" is TRUE use "step" as the sequence number to jump to.
|
|
|
|
* "sec" must be FALSE then.
|
2006-03-13 22:15:53 +00:00
|
|
|
*/
|
|
|
|
void
|
2006-03-16 21:41:35 +00:00
|
|
|
undo_time(step, sec, absolute)
|
2006-03-14 23:00:46 +00:00
|
|
|
long step;
|
|
|
|
int sec;
|
2006-03-16 21:41:35 +00:00
|
|
|
int absolute;
|
2006-03-13 22:15:53 +00:00
|
|
|
{
|
|
|
|
long target;
|
|
|
|
long closest;
|
2006-03-14 23:00:46 +00:00
|
|
|
long closest_start;
|
|
|
|
long closest_seq = 0;
|
|
|
|
long val;
|
2006-03-13 22:15:53 +00:00
|
|
|
u_header_T *uhp;
|
|
|
|
u_header_T *last;
|
|
|
|
int mark;
|
|
|
|
int nomark;
|
|
|
|
int round;
|
2006-03-14 23:00:46 +00:00
|
|
|
int dosec = sec;
|
|
|
|
int above = FALSE;
|
2006-03-21 21:29:36 +00:00
|
|
|
int did_undo = TRUE;
|
2006-03-13 22:15:53 +00:00
|
|
|
|
2006-03-15 22:59:18 +00:00
|
|
|
/* First make sure the current undoable change is synced. */
|
|
|
|
if (curbuf->b_u_synced == FALSE)
|
2006-04-10 14:55:34 +00:00
|
|
|
u_sync(TRUE);
|
2006-03-15 22:59:18 +00:00
|
|
|
|
2006-03-13 22:15:53 +00:00
|
|
|
u_newcount = 0;
|
|
|
|
u_oldcount = 0;
|
2005-03-04 23:39:37 +00:00
|
|
|
if (curbuf->b_ml.ml_flags & ML_EMPTY)
|
2006-03-13 22:15:53 +00:00
|
|
|
u_oldcount = -1;
|
|
|
|
|
2006-03-17 23:19:38 +00:00
|
|
|
/* "target" is the node below which we want to be.
|
|
|
|
* Init "closest" to a value we can't reach. */
|
2006-03-16 21:41:35 +00:00
|
|
|
if (absolute)
|
|
|
|
{
|
|
|
|
target = step;
|
2006-03-17 23:19:38 +00:00
|
|
|
closest = -1;
|
2006-03-16 21:41:35 +00:00
|
|
|
}
|
2006-03-17 23:19:38 +00:00
|
|
|
else
|
2006-03-13 22:15:53 +00:00
|
|
|
{
|
2006-03-17 23:19:38 +00:00
|
|
|
/* When doing computations with time_t subtract starttime, because
|
|
|
|
* time_t converted to a long may result in a wrong number. */
|
2006-03-14 23:00:46 +00:00
|
|
|
if (sec)
|
2006-03-17 23:19:38 +00:00
|
|
|
target = (long)(curbuf->b_u_seq_time - starttime) + step;
|
2006-03-14 23:00:46 +00:00
|
|
|
else
|
|
|
|
target = curbuf->b_u_seq_cur + step;
|
2006-03-17 23:19:38 +00:00
|
|
|
if (step < 0)
|
2006-03-14 23:00:46 +00:00
|
|
|
{
|
2006-03-17 23:19:38 +00:00
|
|
|
if (target < 0)
|
|
|
|
target = 0;
|
|
|
|
closest = -1;
|
2006-03-14 23:00:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-03-17 23:19:38 +00:00
|
|
|
if (sec)
|
2006-03-23 22:59:57 +00:00
|
|
|
closest = (long)(time(NULL) - starttime + 1);
|
2006-03-17 23:19:38 +00:00
|
|
|
else
|
|
|
|
closest = curbuf->b_u_seq_last + 2;
|
|
|
|
if (target >= closest)
|
|
|
|
target = closest - 1;
|
2006-03-14 23:00:46 +00:00
|
|
|
}
|
2006-03-13 22:15:53 +00:00
|
|
|
}
|
2006-03-14 23:00:46 +00:00
|
|
|
closest_start = closest;
|
2006-03-17 23:19:38 +00:00
|
|
|
closest_seq = curbuf->b_u_seq_cur;
|
2006-03-13 22:15:53 +00:00
|
|
|
|
2006-03-14 23:00:46 +00:00
|
|
|
/*
|
|
|
|
* May do this twice:
|
2006-03-13 22:15:53 +00:00
|
|
|
* 1. Search for "target", update "closest" to the best match found.
|
2006-03-14 23:00:46 +00:00
|
|
|
* 2. If "target" not found search for "closest".
|
|
|
|
*
|
|
|
|
* When using the closest time we use the sequence number in the second
|
|
|
|
* round, because there may be several entries with the same time.
|
|
|
|
*/
|
2006-03-13 22:15:53 +00:00
|
|
|
for (round = 1; round <= 2; ++round)
|
|
|
|
{
|
|
|
|
/* Find the path from the current state to where we want to go. The
|
|
|
|
* desired state can be anywhere in the undo tree, need to go all over
|
|
|
|
* it. We put "nomark" in uh_walk where we have been without success,
|
|
|
|
* "mark" where it could possibly be. */
|
|
|
|
mark = ++lastmark;
|
|
|
|
nomark = ++lastmark;
|
|
|
|
|
|
|
|
if (curbuf->b_u_curhead == NULL) /* at leaf of the tree */
|
|
|
|
uhp = curbuf->b_u_newhead;
|
|
|
|
else
|
|
|
|
uhp = curbuf->b_u_curhead;
|
|
|
|
|
|
|
|
while (uhp != NULL)
|
|
|
|
{
|
|
|
|
uhp->uh_walk = mark;
|
2006-03-23 22:59:57 +00:00
|
|
|
val = (long)(dosec ? (uhp->uh_time - starttime) : uhp->uh_seq);
|
2006-03-13 22:15:53 +00:00
|
|
|
|
2006-03-14 23:00:46 +00:00
|
|
|
if (round == 1)
|
|
|
|
{
|
|
|
|
/* Remember the header that is closest to the target.
|
|
|
|
* It must be at least in the right direction (checked with
|
2006-03-17 23:19:38 +00:00
|
|
|
* "b_u_seq_cur"). When the timestamp is equal find the
|
2006-03-14 23:00:46 +00:00
|
|
|
* highest/lowest sequence number. */
|
2006-03-17 23:19:38 +00:00
|
|
|
if ((step < 0 ? uhp->uh_seq <= curbuf->b_u_seq_cur
|
|
|
|
: uhp->uh_seq > curbuf->b_u_seq_cur)
|
|
|
|
&& ((dosec && val == closest)
|
|
|
|
? (step < 0
|
|
|
|
? uhp->uh_seq < closest_seq
|
|
|
|
: uhp->uh_seq > closest_seq)
|
|
|
|
: closest == closest_start
|
|
|
|
|| (val > target
|
|
|
|
? (closest > target
|
|
|
|
? val - target <= closest - target
|
|
|
|
: val - target <= target - closest)
|
|
|
|
: (closest > target
|
|
|
|
? target - val <= closest - target
|
|
|
|
: target - val <= target - closest))))
|
2006-03-14 23:00:46 +00:00
|
|
|
{
|
|
|
|
closest = val;
|
|
|
|
closest_seq = uhp->uh_seq;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Quit searching when we found a match. But when searching for a
|
|
|
|
* time we need to continue looking for the best uh_seq. */
|
|
|
|
if (target == val && !dosec)
|
|
|
|
break;
|
2006-03-13 22:15:53 +00:00
|
|
|
|
|
|
|
/* go down in the tree if we haven't been there */
|
|
|
|
if (uhp->uh_prev != NULL && uhp->uh_prev->uh_walk != nomark
|
|
|
|
&& uhp->uh_prev->uh_walk != mark)
|
|
|
|
uhp = uhp->uh_prev;
|
|
|
|
|
|
|
|
/* go to alternate branch if we haven't been there */
|
|
|
|
else if (uhp->uh_alt_next != NULL
|
|
|
|
&& uhp->uh_alt_next->uh_walk != nomark
|
|
|
|
&& uhp->uh_alt_next->uh_walk != mark)
|
|
|
|
uhp = uhp->uh_alt_next;
|
|
|
|
|
|
|
|
/* go up in the tree if we haven't been there and we are at the
|
|
|
|
* start of alternate branches */
|
|
|
|
else if (uhp->uh_next != NULL && uhp->uh_alt_prev == NULL
|
|
|
|
&& uhp->uh_next->uh_walk != nomark
|
|
|
|
&& uhp->uh_next->uh_walk != mark)
|
2006-03-23 22:59:57 +00:00
|
|
|
{
|
|
|
|
/* If still at the start we don't go through this change. */
|
|
|
|
if (uhp == curbuf->b_u_curhead)
|
|
|
|
uhp->uh_walk = nomark;
|
2006-03-13 22:15:53 +00:00
|
|
|
uhp = uhp->uh_next;
|
2006-03-23 22:59:57 +00:00
|
|
|
}
|
2006-03-13 22:15:53 +00:00
|
|
|
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* need to backtrack; mark this node as useless */
|
|
|
|
uhp->uh_walk = nomark;
|
|
|
|
if (uhp->uh_alt_prev != NULL)
|
|
|
|
uhp = uhp->uh_alt_prev;
|
|
|
|
else
|
|
|
|
uhp = uhp->uh_next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (uhp != NULL) /* found it */
|
|
|
|
break;
|
2006-03-16 21:41:35 +00:00
|
|
|
|
|
|
|
if (absolute)
|
|
|
|
{
|
2010-05-23 23:34:36 +02:00
|
|
|
EMSGN(_("E830: Undo number %ld not found"), step);
|
2006-03-16 21:41:35 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-03-14 23:00:46 +00:00
|
|
|
if (closest == closest_start)
|
2006-03-13 22:15:53 +00:00
|
|
|
{
|
2006-03-14 23:00:46 +00:00
|
|
|
if (step < 0)
|
|
|
|
MSG(_("Already at oldest change"));
|
|
|
|
else
|
|
|
|
MSG(_("Already at newest change"));
|
2006-03-13 22:15:53 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-03-14 23:00:46 +00:00
|
|
|
target = closest_seq;
|
|
|
|
dosec = FALSE;
|
|
|
|
if (step < 0)
|
|
|
|
above = TRUE; /* stop above the header */
|
2006-03-13 22:15:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If we found it: Follow the path to go to where we want to be. */
|
|
|
|
if (uhp != NULL)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* First go up the tree as much as needed.
|
|
|
|
*/
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
uhp = curbuf->b_u_curhead;
|
|
|
|
if (uhp == NULL)
|
|
|
|
uhp = curbuf->b_u_newhead;
|
|
|
|
else
|
|
|
|
uhp = uhp->uh_next;
|
2006-03-17 23:19:38 +00:00
|
|
|
if (uhp == NULL || uhp->uh_walk != mark
|
|
|
|
|| (uhp->uh_seq == target && !above))
|
2006-03-13 22:15:53 +00:00
|
|
|
break;
|
|
|
|
curbuf->b_u_curhead = uhp;
|
2006-03-17 23:19:38 +00:00
|
|
|
u_undoredo(TRUE);
|
2006-03-13 22:15:53 +00:00
|
|
|
uhp->uh_walk = nomark; /* don't go back down here */
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2006-03-14 23:00:46 +00:00
|
|
|
* And now go down the tree (redo), branching off where needed.
|
2006-03-13 22:15:53 +00:00
|
|
|
*/
|
|
|
|
uhp = curbuf->b_u_curhead;
|
2006-03-17 23:19:38 +00:00
|
|
|
while (uhp != NULL)
|
2006-03-13 22:15:53 +00:00
|
|
|
{
|
2007-01-09 19:23:12 +00:00
|
|
|
/* Go back to the first branch with a mark. */
|
|
|
|
while (uhp->uh_alt_prev != NULL
|
|
|
|
&& uhp->uh_alt_prev->uh_walk == mark)
|
|
|
|
uhp = uhp->uh_alt_prev;
|
|
|
|
|
2006-03-13 22:15:53 +00:00
|
|
|
/* Find the last branch with a mark, that's the one. */
|
|
|
|
last = uhp;
|
|
|
|
while (last->uh_alt_next != NULL
|
|
|
|
&& last->uh_alt_next->uh_walk == mark)
|
|
|
|
last = last->uh_alt_next;
|
|
|
|
if (last != uhp)
|
|
|
|
{
|
|
|
|
/* Make the used branch the first entry in the list of
|
|
|
|
* alternatives to make "u" and CTRL-R take this branch. */
|
2007-01-09 19:23:12 +00:00
|
|
|
while (uhp->uh_alt_prev != NULL)
|
|
|
|
uhp = uhp->uh_alt_prev;
|
2006-03-13 22:15:53 +00:00
|
|
|
if (last->uh_alt_next != NULL)
|
|
|
|
last->uh_alt_next->uh_alt_prev = last->uh_alt_prev;
|
|
|
|
last->uh_alt_prev->uh_alt_next = last->uh_alt_next;
|
|
|
|
last->uh_alt_prev = NULL;
|
|
|
|
last->uh_alt_next = uhp;
|
|
|
|
uhp->uh_alt_prev = last;
|
|
|
|
|
|
|
|
uhp = last;
|
2006-03-17 23:19:38 +00:00
|
|
|
if (uhp->uh_next != NULL)
|
|
|
|
uhp->uh_next->uh_prev = uhp;
|
2006-03-13 22:15:53 +00:00
|
|
|
}
|
2006-03-14 23:00:46 +00:00
|
|
|
curbuf->b_u_curhead = uhp;
|
2006-03-13 22:15:53 +00:00
|
|
|
|
|
|
|
if (uhp->uh_walk != mark)
|
|
|
|
break; /* must have reached the target */
|
|
|
|
|
2006-03-14 23:00:46 +00:00
|
|
|
/* Stop when going backwards in time and didn't find the exact
|
|
|
|
* header we were looking for. */
|
|
|
|
if (uhp->uh_seq == target && above)
|
2006-03-23 22:59:57 +00:00
|
|
|
{
|
|
|
|
curbuf->b_u_seq_cur = target - 1;
|
2006-03-14 23:00:46 +00:00
|
|
|
break;
|
2006-03-23 22:59:57 +00:00
|
|
|
}
|
2006-03-14 23:00:46 +00:00
|
|
|
|
2006-03-17 23:19:38 +00:00
|
|
|
u_undoredo(FALSE);
|
2006-03-13 22:15:53 +00:00
|
|
|
|
|
|
|
/* Advance "curhead" to below the header we last used. If it
|
|
|
|
* becomes NULL then we need to set "newhead" to this leaf. */
|
|
|
|
if (uhp->uh_prev == NULL)
|
|
|
|
curbuf->b_u_newhead = uhp;
|
|
|
|
curbuf->b_u_curhead = uhp->uh_prev;
|
2006-03-21 21:29:36 +00:00
|
|
|
did_undo = FALSE;
|
2006-03-13 22:15:53 +00:00
|
|
|
|
|
|
|
if (uhp->uh_seq == target) /* found it! */
|
|
|
|
break;
|
|
|
|
|
|
|
|
uhp = uhp->uh_prev;
|
|
|
|
if (uhp == NULL || uhp->uh_walk != mark)
|
|
|
|
{
|
2006-03-17 23:19:38 +00:00
|
|
|
/* Need to redo more but can't find it... */
|
2006-03-13 22:15:53 +00:00
|
|
|
EMSG2(_(e_intern2), "undo_time()");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-03-23 22:59:57 +00:00
|
|
|
u_undo_end(did_undo, absolute);
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* u_undoredo: common code for undo and redo
|
|
|
|
*
|
|
|
|
* The lines in the file are replaced by the lines in the entry list at
|
|
|
|
* curbuf->b_u_curhead. The replaced lines in the file are saved in the entry
|
|
|
|
* list for the next undo/redo.
|
2006-03-17 23:19:38 +00:00
|
|
|
*
|
|
|
|
* When "undo" is TRUE we go up in the tree, when FALSE we go down.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
static void
|
2006-03-17 23:19:38 +00:00
|
|
|
u_undoredo(undo)
|
|
|
|
int undo;
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
char_u **newarray = NULL;
|
|
|
|
linenr_T oldsize;
|
|
|
|
linenr_T newsize;
|
|
|
|
linenr_T top, bot;
|
|
|
|
linenr_T lnum;
|
|
|
|
linenr_T newlnum = MAXLNUM;
|
|
|
|
long i;
|
|
|
|
u_entry_T *uep, *nuep;
|
|
|
|
u_entry_T *newlist = NULL;
|
|
|
|
int old_flags;
|
|
|
|
int new_flags;
|
|
|
|
pos_T namedm[NMARKS];
|
2006-02-27 00:08:02 +00:00
|
|
|
#ifdef FEAT_VISUAL
|
|
|
|
visualinfo_T visualinfo;
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
int empty_buffer; /* buffer became empty */
|
2006-03-14 23:00:46 +00:00
|
|
|
u_header_T *curhead = curbuf->b_u_curhead;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2007-10-01 20:54:15 +00:00
|
|
|
#ifdef U_DEBUG
|
|
|
|
u_check(FALSE);
|
|
|
|
#endif
|
2006-03-14 23:00:46 +00:00
|
|
|
old_flags = curhead->uh_flags;
|
2004-06-13 20:20:40 +00:00
|
|
|
new_flags = (curbuf->b_changed ? UH_CHANGED : 0) +
|
|
|
|
((curbuf->b_ml.ml_flags & ML_EMPTY) ? UH_EMPTYBUF : 0);
|
|
|
|
setpcmark();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* save marks before undo/redo
|
|
|
|
*/
|
|
|
|
mch_memmove(namedm, curbuf->b_namedm, sizeof(pos_T) * NMARKS);
|
2006-02-27 00:08:02 +00:00
|
|
|
#ifdef FEAT_VISUAL
|
|
|
|
visualinfo = curbuf->b_visual;
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
curbuf->b_op_start.lnum = curbuf->b_ml.ml_line_count;
|
|
|
|
curbuf->b_op_start.col = 0;
|
|
|
|
curbuf->b_op_end.lnum = 0;
|
|
|
|
curbuf->b_op_end.col = 0;
|
|
|
|
|
2006-03-14 23:00:46 +00:00
|
|
|
for (uep = curhead->uh_entry; uep != NULL; uep = nuep)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
top = uep->ue_top;
|
|
|
|
bot = uep->ue_bot;
|
|
|
|
if (bot == 0)
|
|
|
|
bot = curbuf->b_ml.ml_line_count + 1;
|
|
|
|
if (top > curbuf->b_ml.ml_line_count || top >= bot
|
|
|
|
|| bot > curbuf->b_ml.ml_line_count + 1)
|
|
|
|
{
|
|
|
|
EMSG(_("E438: u_undo: line numbers wrong"));
|
|
|
|
changed(); /* don't want UNCHANGED now */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
oldsize = bot - top - 1; /* number of lines before undo */
|
|
|
|
newsize = uep->ue_size; /* number of lines after undo */
|
|
|
|
|
|
|
|
if (top < newlnum)
|
|
|
|
{
|
|
|
|
/* If the saved cursor is somewhere in this undo block, move it to
|
|
|
|
* the remembered position. Makes "gwap" put the cursor back
|
|
|
|
* where it was. */
|
2006-03-14 23:00:46 +00:00
|
|
|
lnum = curhead->uh_cursor.lnum;
|
2004-06-13 20:20:40 +00:00
|
|
|
if (lnum >= top && lnum <= top + newsize + 1)
|
|
|
|
{
|
2006-03-14 23:00:46 +00:00
|
|
|
curwin->w_cursor = curhead->uh_cursor;
|
2004-06-13 20:20:40 +00:00
|
|
|
newlnum = curwin->w_cursor.lnum - 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Use the first line that actually changed. Avoids that
|
|
|
|
* undoing auto-formatting puts the cursor in the previous
|
|
|
|
* line. */
|
|
|
|
for (i = 0; i < newsize && i < oldsize; ++i)
|
|
|
|
if (STRCMP(uep->ue_array[i], ml_get(top + 1 + i)) != 0)
|
|
|
|
break;
|
|
|
|
if (i == newsize && newlnum == MAXLNUM && uep->ue_next == NULL)
|
|
|
|
{
|
|
|
|
newlnum = top;
|
|
|
|
curwin->w_cursor.lnum = newlnum + 1;
|
|
|
|
}
|
|
|
|
else if (i < newsize)
|
|
|
|
{
|
|
|
|
newlnum = top + i;
|
|
|
|
curwin->w_cursor.lnum = newlnum + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
empty_buffer = FALSE;
|
|
|
|
|
|
|
|
/* delete the lines between top and bot and save them in newarray */
|
2005-02-22 08:49:11 +00:00
|
|
|
if (oldsize > 0)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2005-02-22 08:49:11 +00:00
|
|
|
if ((newarray = (char_u **)U_ALLOC_LINE(
|
2004-06-13 20:20:40 +00:00
|
|
|
(unsigned)(sizeof(char_u *) * oldsize))) == NULL)
|
|
|
|
{
|
|
|
|
do_outofmem_msg((long_u)(sizeof(char_u *) * oldsize));
|
|
|
|
/*
|
|
|
|
* We have messed up the entry list, repair is impossible.
|
|
|
|
* we have to free the rest of the list.
|
|
|
|
*/
|
|
|
|
while (uep != NULL)
|
|
|
|
{
|
|
|
|
nuep = uep->ue_next;
|
|
|
|
u_freeentry(uep, uep->ue_size);
|
|
|
|
uep = nuep;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* delete backwards, it goes faster in most cases */
|
|
|
|
for (lnum = bot - 1, i = oldsize; --i >= 0; --lnum)
|
|
|
|
{
|
|
|
|
/* what can we do when we run out of memory? */
|
|
|
|
if ((newarray[i] = u_save_line(lnum)) == NULL)
|
|
|
|
do_outofmem_msg((long_u)0);
|
|
|
|
/* remember we deleted the last line in the buffer, and a
|
|
|
|
* dummy empty line will be inserted */
|
|
|
|
if (curbuf->b_ml.ml_line_count == 1)
|
|
|
|
empty_buffer = TRUE;
|
|
|
|
ml_delete(lnum, FALSE);
|
|
|
|
}
|
|
|
|
}
|
2005-07-12 22:46:17 +00:00
|
|
|
else
|
|
|
|
newarray = NULL;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
/* insert the lines in u_array between top and bot */
|
|
|
|
if (newsize)
|
|
|
|
{
|
|
|
|
for (lnum = top, i = 0; i < newsize; ++i, ++lnum)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* If the file is empty, there is an empty line 1 that we
|
|
|
|
* should get rid of, by replacing it with the new line
|
|
|
|
*/
|
|
|
|
if (empty_buffer && lnum == 0)
|
|
|
|
ml_replace((linenr_T)1, uep->ue_array[i], TRUE);
|
|
|
|
else
|
|
|
|
ml_append(lnum, uep->ue_array[i], (colnr_T)0, FALSE);
|
2005-02-22 08:49:11 +00:00
|
|
|
U_FREE_LINE(uep->ue_array[i]);
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
2005-02-22 08:49:11 +00:00
|
|
|
U_FREE_LINE((char_u *)uep->ue_array);
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* adjust marks */
|
|
|
|
if (oldsize != newsize)
|
|
|
|
{
|
|
|
|
mark_adjust(top + 1, top + oldsize, (long)MAXLNUM,
|
|
|
|
(long)newsize - (long)oldsize);
|
|
|
|
if (curbuf->b_op_start.lnum > top + oldsize)
|
|
|
|
curbuf->b_op_start.lnum += newsize - oldsize;
|
|
|
|
if (curbuf->b_op_end.lnum > top + oldsize)
|
|
|
|
curbuf->b_op_end.lnum += newsize - oldsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
changed_lines(top + 1, 0, bot, newsize - oldsize);
|
|
|
|
|
|
|
|
/* set '[ and '] mark */
|
|
|
|
if (top + 1 < curbuf->b_op_start.lnum)
|
|
|
|
curbuf->b_op_start.lnum = top + 1;
|
|
|
|
if (newsize == 0 && top + 1 > curbuf->b_op_end.lnum)
|
|
|
|
curbuf->b_op_end.lnum = top + 1;
|
|
|
|
else if (top + newsize > curbuf->b_op_end.lnum)
|
|
|
|
curbuf->b_op_end.lnum = top + newsize;
|
|
|
|
|
|
|
|
u_newcount += newsize;
|
|
|
|
u_oldcount += oldsize;
|
|
|
|
uep->ue_size = oldsize;
|
|
|
|
uep->ue_array = newarray;
|
|
|
|
uep->ue_bot = top + newsize + 1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* insert this entry in front of the new entry list
|
|
|
|
*/
|
|
|
|
nuep = uep->ue_next;
|
|
|
|
uep->ue_next = newlist;
|
|
|
|
newlist = uep;
|
|
|
|
}
|
|
|
|
|
2006-03-14 23:00:46 +00:00
|
|
|
curhead->uh_entry = newlist;
|
|
|
|
curhead->uh_flags = new_flags;
|
2004-06-13 20:20:40 +00:00
|
|
|
if ((old_flags & UH_EMPTYBUF) && bufempty())
|
|
|
|
curbuf->b_ml.ml_flags |= ML_EMPTY;
|
|
|
|
if (old_flags & UH_CHANGED)
|
|
|
|
changed();
|
|
|
|
else
|
2004-10-24 19:18:58 +00:00
|
|
|
#ifdef FEAT_NETBEANS_INTG
|
|
|
|
/* per netbeans undo rules, keep it as modified */
|
|
|
|
if (!isNetbeansModified(curbuf))
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
unchanged(curbuf, FALSE);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* restore marks from before undo/redo
|
|
|
|
*/
|
|
|
|
for (i = 0; i < NMARKS; ++i)
|
2006-03-14 23:00:46 +00:00
|
|
|
if (curhead->uh_namedm[i].lnum != 0)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2006-03-14 23:00:46 +00:00
|
|
|
curbuf->b_namedm[i] = curhead->uh_namedm[i];
|
|
|
|
curhead->uh_namedm[i] = namedm[i];
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
2006-02-27 00:08:02 +00:00
|
|
|
#ifdef FEAT_VISUAL
|
2006-03-14 23:00:46 +00:00
|
|
|
if (curhead->uh_visual.vi_start.lnum != 0)
|
2006-02-27 00:08:02 +00:00
|
|
|
{
|
2006-03-14 23:00:46 +00:00
|
|
|
curbuf->b_visual = curhead->uh_visual;
|
|
|
|
curhead->uh_visual = visualinfo;
|
2006-02-27 00:08:02 +00:00
|
|
|
}
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If the cursor is only off by one line, put it at the same position as
|
|
|
|
* before starting the change (for the "o" command).
|
|
|
|
* Otherwise the cursor should go to the first undone line.
|
|
|
|
*/
|
2006-03-14 23:00:46 +00:00
|
|
|
if (curhead->uh_cursor.lnum + 1 == curwin->w_cursor.lnum
|
2004-06-13 20:20:40 +00:00
|
|
|
&& curwin->w_cursor.lnum > 1)
|
|
|
|
--curwin->w_cursor.lnum;
|
2006-03-14 23:00:46 +00:00
|
|
|
if (curhead->uh_cursor.lnum == curwin->w_cursor.lnum)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2006-03-14 23:00:46 +00:00
|
|
|
curwin->w_cursor.col = curhead->uh_cursor.col;
|
2004-06-13 20:20:40 +00:00
|
|
|
#ifdef FEAT_VIRTUALEDIT
|
2006-03-14 23:00:46 +00:00
|
|
|
if (virtual_active() && curhead->uh_cursor_vcol >= 0)
|
|
|
|
coladvance((colnr_T)curhead->uh_cursor_vcol);
|
2004-06-13 20:20:40 +00:00
|
|
|
else
|
|
|
|
curwin->w_cursor.coladd = 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else if (curwin->w_cursor.lnum <= curbuf->b_ml.ml_line_count)
|
|
|
|
beginline(BL_SOL | BL_FIX);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* We get here with the current cursor line being past the end (eg
|
|
|
|
* after adding lines at the end of the file, and then undoing it).
|
|
|
|
* check_cursor() will move the cursor to the last line. Move it to
|
|
|
|
* the first column here. */
|
|
|
|
curwin->w_cursor.col = 0;
|
|
|
|
#ifdef FEAT_VIRTUALEDIT
|
|
|
|
curwin->w_cursor.coladd = 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make sure the cursor is on an existing line and column. */
|
|
|
|
check_cursor();
|
2006-03-14 23:00:46 +00:00
|
|
|
|
|
|
|
/* Remember where we are for "g-" and ":earlier 10s". */
|
|
|
|
curbuf->b_u_seq_cur = curhead->uh_seq;
|
2006-03-17 23:19:38 +00:00
|
|
|
if (undo)
|
|
|
|
/* We are below the previous undo. However, to make ":earlier 1s"
|
|
|
|
* work we compute this as being just above the just undone change. */
|
|
|
|
--curbuf->b_u_seq_cur;
|
|
|
|
|
|
|
|
/* The timestamp can be the same for multiple changes, just use the one of
|
|
|
|
* the undone/redone change. */
|
2006-03-14 23:00:46 +00:00
|
|
|
curbuf->b_u_seq_time = curhead->uh_time;
|
2007-10-01 20:54:15 +00:00
|
|
|
#ifdef U_DEBUG
|
|
|
|
u_check(FALSE);
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we deleted or added lines, report the number of less/more lines.
|
|
|
|
* Otherwise, report the number of changes (this may be incorrect
|
|
|
|
* in some cases, but it's better than nothing).
|
|
|
|
*/
|
|
|
|
static void
|
2006-03-23 22:59:57 +00:00
|
|
|
u_undo_end(did_undo, absolute)
|
2006-03-21 21:29:36 +00:00
|
|
|
int did_undo; /* just did an undo */
|
2006-03-23 22:59:57 +00:00
|
|
|
int absolute; /* used ":undo N" */
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2006-08-29 15:30:07 +00:00
|
|
|
char *msgstr;
|
2006-03-16 21:41:35 +00:00
|
|
|
u_header_T *uhp;
|
|
|
|
char_u msgbuf[80];
|
2006-03-13 22:15:53 +00:00
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
#ifdef FEAT_FOLDING
|
|
|
|
if ((fdo_flags & FDO_UNDO) && KeyTyped)
|
|
|
|
foldOpenCursor();
|
|
|
|
#endif
|
2006-03-13 22:15:53 +00:00
|
|
|
|
|
|
|
if (global_busy /* no messages now, wait until global is finished */
|
|
|
|
|| !messaging()) /* 'lazyredraw' set, don't do messages now */
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (curbuf->b_ml.ml_flags & ML_EMPTY)
|
|
|
|
--u_newcount;
|
|
|
|
|
|
|
|
u_oldcount -= u_newcount;
|
|
|
|
if (u_oldcount == -1)
|
2006-08-29 15:30:07 +00:00
|
|
|
msgstr = N_("more line");
|
2006-03-13 22:15:53 +00:00
|
|
|
else if (u_oldcount < 0)
|
2006-08-29 15:30:07 +00:00
|
|
|
msgstr = N_("more lines");
|
2006-03-13 22:15:53 +00:00
|
|
|
else if (u_oldcount == 1)
|
2006-08-29 15:30:07 +00:00
|
|
|
msgstr = N_("line less");
|
2006-03-13 22:15:53 +00:00
|
|
|
else if (u_oldcount > 1)
|
2006-08-29 15:30:07 +00:00
|
|
|
msgstr = N_("fewer lines");
|
2006-03-13 22:15:53 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
u_oldcount = u_newcount;
|
|
|
|
if (u_newcount == 1)
|
2006-08-29 15:30:07 +00:00
|
|
|
msgstr = N_("change");
|
2006-03-13 22:15:53 +00:00
|
|
|
else
|
2006-08-29 15:30:07 +00:00
|
|
|
msgstr = N_("changes");
|
2006-03-13 22:15:53 +00:00
|
|
|
}
|
|
|
|
|
2006-03-16 21:41:35 +00:00
|
|
|
if (curbuf->b_u_curhead != NULL)
|
2006-03-21 21:29:36 +00:00
|
|
|
{
|
2006-03-23 22:59:57 +00:00
|
|
|
/* For ":undo N" we prefer a "after #N" message. */
|
|
|
|
if (absolute && curbuf->b_u_curhead->uh_next != NULL)
|
|
|
|
{
|
|
|
|
uhp = curbuf->b_u_curhead->uh_next;
|
|
|
|
did_undo = FALSE;
|
|
|
|
}
|
|
|
|
else if (did_undo)
|
2006-03-21 21:29:36 +00:00
|
|
|
uhp = curbuf->b_u_curhead;
|
|
|
|
else
|
|
|
|
uhp = curbuf->b_u_curhead->uh_next;
|
|
|
|
}
|
2006-03-16 21:41:35 +00:00
|
|
|
else
|
|
|
|
uhp = curbuf->b_u_newhead;
|
|
|
|
|
|
|
|
if (uhp == NULL)
|
|
|
|
*msgbuf = NUL;
|
2006-03-13 22:15:53 +00:00
|
|
|
else
|
2006-03-16 21:41:35 +00:00
|
|
|
u_add_time(msgbuf, sizeof(msgbuf), uhp->uh_time);
|
2006-03-13 22:15:53 +00:00
|
|
|
|
2006-03-21 21:29:36 +00:00
|
|
|
smsg((char_u *)_("%ld %s; %s #%ld %s"),
|
2006-03-17 23:19:38 +00:00
|
|
|
u_oldcount < 0 ? -u_oldcount : u_oldcount,
|
2006-08-29 15:30:07 +00:00
|
|
|
_(msgstr),
|
2006-03-21 21:29:36 +00:00
|
|
|
did_undo ? _("before") : _("after"),
|
|
|
|
uhp == NULL ? 0L : uhp->uh_seq,
|
|
|
|
msgbuf);
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* u_sync: stop adding to the current entry list
|
|
|
|
*/
|
|
|
|
void
|
2006-04-10 14:55:34 +00:00
|
|
|
u_sync(force)
|
|
|
|
int force; /* Also sync when no_u_sync is set. */
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2006-04-10 14:55:34 +00:00
|
|
|
/* Skip it when already synced or syncing is disabled. */
|
|
|
|
if (curbuf->b_u_synced || (!force && no_u_sync > 0))
|
|
|
|
return;
|
2004-06-13 20:20:40 +00:00
|
|
|
#if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
|
|
|
|
if (im_is_preediting())
|
|
|
|
return; /* XIM is busy, don't break an undo sequence */
|
|
|
|
#endif
|
|
|
|
if (p_ul < 0)
|
|
|
|
curbuf->b_u_synced = TRUE; /* no entries, nothing to do */
|
|
|
|
else
|
|
|
|
{
|
|
|
|
u_getbot(); /* compute ue_bot of previous u_save */
|
|
|
|
curbuf->b_u_curhead = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-16 21:41:35 +00:00
|
|
|
/*
|
|
|
|
* ":undolist": List the leafs of the undo tree
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
ex_undolist(eap)
|
2010-05-15 13:56:02 +02:00
|
|
|
exarg_T *eap UNUSED;
|
2006-03-16 21:41:35 +00:00
|
|
|
{
|
|
|
|
garray_T ga;
|
|
|
|
u_header_T *uhp;
|
|
|
|
int mark;
|
|
|
|
int nomark;
|
|
|
|
int changes = 1;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 1: walk the tree to find all leafs, put the info in "ga".
|
|
|
|
* 2: sort the lines
|
|
|
|
* 3: display the list
|
|
|
|
*/
|
|
|
|
mark = ++lastmark;
|
|
|
|
nomark = ++lastmark;
|
|
|
|
ga_init2(&ga, (int)sizeof(char *), 20);
|
|
|
|
|
|
|
|
uhp = curbuf->b_u_oldhead;
|
|
|
|
while (uhp != NULL)
|
|
|
|
{
|
2006-03-17 23:19:38 +00:00
|
|
|
if (uhp->uh_prev == NULL && uhp->uh_walk != nomark
|
|
|
|
&& uhp->uh_walk != mark)
|
2006-03-16 21:41:35 +00:00
|
|
|
{
|
|
|
|
if (ga_grow(&ga, 1) == FAIL)
|
|
|
|
break;
|
|
|
|
vim_snprintf((char *)IObuff, IOSIZE, "%6ld %7ld ",
|
|
|
|
uhp->uh_seq, changes);
|
|
|
|
u_add_time(IObuff + STRLEN(IObuff), IOSIZE - STRLEN(IObuff),
|
|
|
|
uhp->uh_time);
|
|
|
|
((char_u **)(ga.ga_data))[ga.ga_len++] = vim_strsave(IObuff);
|
|
|
|
}
|
|
|
|
|
|
|
|
uhp->uh_walk = mark;
|
|
|
|
|
|
|
|
/* go down in the tree if we haven't been there */
|
|
|
|
if (uhp->uh_prev != NULL && uhp->uh_prev->uh_walk != nomark
|
|
|
|
&& uhp->uh_prev->uh_walk != mark)
|
|
|
|
{
|
|
|
|
uhp = uhp->uh_prev;
|
|
|
|
++changes;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* go to alternate branch if we haven't been there */
|
|
|
|
else if (uhp->uh_alt_next != NULL
|
|
|
|
&& uhp->uh_alt_next->uh_walk != nomark
|
|
|
|
&& uhp->uh_alt_next->uh_walk != mark)
|
|
|
|
uhp = uhp->uh_alt_next;
|
|
|
|
|
|
|
|
/* go up in the tree if we haven't been there and we are at the
|
|
|
|
* start of alternate branches */
|
|
|
|
else if (uhp->uh_next != NULL && uhp->uh_alt_prev == NULL
|
|
|
|
&& uhp->uh_next->uh_walk != nomark
|
|
|
|
&& uhp->uh_next->uh_walk != mark)
|
|
|
|
{
|
|
|
|
uhp = uhp->uh_next;
|
|
|
|
--changes;
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* need to backtrack; mark this node as done */
|
|
|
|
uhp->uh_walk = nomark;
|
|
|
|
if (uhp->uh_alt_prev != NULL)
|
|
|
|
uhp = uhp->uh_alt_prev;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
uhp = uhp->uh_next;
|
|
|
|
--changes;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ga.ga_len == 0)
|
|
|
|
MSG(_("Nothing to undo"));
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sort_strings((char_u **)ga.ga_data, ga.ga_len);
|
|
|
|
|
|
|
|
msg_start();
|
|
|
|
msg_puts_attr((char_u *)_("number changes time"), hl_attr(HLF_T));
|
|
|
|
for (i = 0; i < ga.ga_len && !got_int; ++i)
|
|
|
|
{
|
|
|
|
msg_putchar('\n');
|
|
|
|
if (got_int)
|
|
|
|
break;
|
|
|
|
msg_puts(((char_u **)ga.ga_data)[i]);
|
|
|
|
}
|
|
|
|
msg_end();
|
|
|
|
|
|
|
|
ga_clear_strings(&ga);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Put the timestamp of an undo header in "buf[buflen]" in a nice format.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
u_add_time(buf, buflen, tt)
|
|
|
|
char_u *buf;
|
|
|
|
size_t buflen;
|
|
|
|
time_t tt;
|
|
|
|
{
|
|
|
|
#ifdef HAVE_STRFTIME
|
|
|
|
struct tm *curtime;
|
|
|
|
|
|
|
|
if (time(NULL) - tt >= 100)
|
|
|
|
{
|
|
|
|
curtime = localtime(&tt);
|
2006-03-27 17:01:56 +00:00
|
|
|
(void)strftime((char *)buf, buflen, "%H:%M:%S", curtime);
|
2006-03-16 21:41:35 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2006-04-17 22:14:47 +00:00
|
|
|
vim_snprintf((char *)buf, buflen, _("%ld seconds ago"),
|
2006-03-16 21:41:35 +00:00
|
|
|
(long)(time(NULL) - tt));
|
|
|
|
}
|
|
|
|
|
2006-03-01 00:01:28 +00:00
|
|
|
/*
|
|
|
|
* ":undojoin": continue adding to the last entry list
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
ex_undojoin(eap)
|
2010-05-15 13:56:02 +02:00
|
|
|
exarg_T *eap UNUSED;
|
2006-03-01 00:01:28 +00:00
|
|
|
{
|
|
|
|
if (curbuf->b_u_newhead == NULL)
|
|
|
|
return; /* nothing changed before */
|
2006-04-21 22:12:41 +00:00
|
|
|
if (curbuf->b_u_curhead != NULL)
|
|
|
|
{
|
|
|
|
EMSG(_("E790: undojoin is not allowed after undo"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!curbuf->b_u_synced)
|
|
|
|
return; /* already unsynced */
|
2006-03-01 00:01:28 +00:00
|
|
|
if (p_ul < 0)
|
|
|
|
return; /* no entries, nothing to do */
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Go back to the last entry */
|
|
|
|
curbuf->b_u_curhead = curbuf->b_u_newhead;
|
|
|
|
curbuf->b_u_synced = FALSE; /* no entries, nothing to do */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/*
|
|
|
|
* Called after writing the file and setting b_changed to FALSE.
|
|
|
|
* Now an undo means that the buffer is modified.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
u_unchanged(buf)
|
|
|
|
buf_T *buf;
|
2006-03-14 23:00:46 +00:00
|
|
|
{
|
|
|
|
u_unch_branch(buf->b_u_oldhead);
|
|
|
|
buf->b_did_warn = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
u_unch_branch(uhp)
|
|
|
|
u_header_T *uhp;
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2006-03-13 22:15:53 +00:00
|
|
|
u_header_T *uh;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2006-03-14 23:00:46 +00:00
|
|
|
for (uh = uhp; uh != NULL; uh = uh->uh_prev)
|
|
|
|
{
|
2004-06-13 20:20:40 +00:00
|
|
|
uh->uh_flags |= UH_CHANGED;
|
2006-03-14 23:00:46 +00:00
|
|
|
if (uh->uh_alt_next != NULL)
|
|
|
|
u_unch_branch(uh->uh_alt_next); /* recursive */
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get pointer to last added entry.
|
|
|
|
* If it's not valid, give an error message and return NULL.
|
|
|
|
*/
|
|
|
|
static u_entry_T *
|
|
|
|
u_get_headentry()
|
|
|
|
{
|
|
|
|
if (curbuf->b_u_newhead == NULL || curbuf->b_u_newhead->uh_entry == NULL)
|
|
|
|
{
|
|
|
|
EMSG(_("E439: undo list corrupt"));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return curbuf->b_u_newhead->uh_entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* u_getbot(): compute the line number of the previous u_save
|
|
|
|
* It is called only when b_u_synced is FALSE.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
u_getbot()
|
|
|
|
{
|
|
|
|
u_entry_T *uep;
|
|
|
|
linenr_T extra;
|
|
|
|
|
|
|
|
uep = u_get_headentry(); /* check for corrupt undo list */
|
|
|
|
if (uep == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
uep = curbuf->b_u_newhead->uh_getbot_entry;
|
|
|
|
if (uep != NULL)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* the new ue_bot is computed from the number of lines that has been
|
|
|
|
* inserted (0 - deleted) since calling u_save. This is equal to the
|
|
|
|
* old line count subtracted from the current line count.
|
|
|
|
*/
|
|
|
|
extra = curbuf->b_ml.ml_line_count - uep->ue_lcount;
|
|
|
|
uep->ue_bot = uep->ue_top + uep->ue_size + 1 + extra;
|
|
|
|
if (uep->ue_bot < 1 || uep->ue_bot > curbuf->b_ml.ml_line_count)
|
|
|
|
{
|
|
|
|
EMSG(_("E440: undo line missing"));
|
|
|
|
uep->ue_bot = uep->ue_top + 1; /* assume all lines deleted, will
|
|
|
|
* get all the old lines back
|
|
|
|
* without deleting the current
|
|
|
|
* ones */
|
|
|
|
}
|
|
|
|
|
|
|
|
curbuf->b_u_newhead->uh_getbot_entry = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
curbuf->b_u_synced = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2007-10-01 20:54:15 +00:00
|
|
|
* Free one header "uhp" and its entry list and adjust the pointers.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
static void
|
2006-03-14 23:00:46 +00:00
|
|
|
u_freeheader(buf, uhp, uhpp)
|
2005-02-22 08:49:11 +00:00
|
|
|
buf_T *buf;
|
2006-03-13 22:15:53 +00:00
|
|
|
u_header_T *uhp;
|
|
|
|
u_header_T **uhpp; /* if not NULL reset when freeing this header */
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2007-10-01 20:54:15 +00:00
|
|
|
u_header_T *uhap;
|
|
|
|
|
2006-03-13 22:15:53 +00:00
|
|
|
/* When there is an alternate redo list free that branch completely,
|
|
|
|
* because we can never go there. */
|
|
|
|
if (uhp->uh_alt_next != NULL)
|
|
|
|
u_freebranch(buf, uhp->uh_alt_next, uhpp);
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2006-03-13 22:15:53 +00:00
|
|
|
if (uhp->uh_alt_prev != NULL)
|
|
|
|
uhp->uh_alt_prev->uh_alt_next = NULL;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2006-03-13 22:15:53 +00:00
|
|
|
/* Update the links in the list to remove the header. */
|
2004-06-13 20:20:40 +00:00
|
|
|
if (uhp->uh_next == NULL)
|
2005-02-22 08:49:11 +00:00
|
|
|
buf->b_u_oldhead = uhp->uh_prev;
|
2004-06-13 20:20:40 +00:00
|
|
|
else
|
|
|
|
uhp->uh_next->uh_prev = uhp->uh_prev;
|
|
|
|
|
|
|
|
if (uhp->uh_prev == NULL)
|
2005-02-22 08:49:11 +00:00
|
|
|
buf->b_u_newhead = uhp->uh_next;
|
2004-06-13 20:20:40 +00:00
|
|
|
else
|
2007-10-01 20:54:15 +00:00
|
|
|
for (uhap = uhp->uh_prev; uhap != NULL; uhap = uhap->uh_alt_next)
|
|
|
|
uhap->uh_next = uhp->uh_next;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2006-03-13 22:15:53 +00:00
|
|
|
u_freeentries(buf, uhp, uhpp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2006-03-14 23:00:46 +00:00
|
|
|
* Free an alternate branch and any following alternate branches.
|
2006-03-13 22:15:53 +00:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
u_freebranch(buf, uhp, uhpp)
|
|
|
|
buf_T *buf;
|
|
|
|
u_header_T *uhp;
|
|
|
|
u_header_T **uhpp; /* if not NULL reset when freeing this header */
|
|
|
|
{
|
|
|
|
u_header_T *tofree, *next;
|
|
|
|
|
2007-11-10 21:51:15 +00:00
|
|
|
/* If this is the top branch we may need to use u_freeheader() to update
|
|
|
|
* all the pointers. */
|
|
|
|
if (uhp == buf->b_u_oldhead)
|
|
|
|
{
|
|
|
|
u_freeheader(buf, uhp, uhpp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-03-13 22:15:53 +00:00
|
|
|
if (uhp->uh_alt_prev != NULL)
|
|
|
|
uhp->uh_alt_prev->uh_alt_next = NULL;
|
|
|
|
|
|
|
|
next = uhp;
|
|
|
|
while (next != NULL)
|
|
|
|
{
|
|
|
|
tofree = next;
|
|
|
|
if (tofree->uh_alt_next != NULL)
|
|
|
|
u_freebranch(buf, tofree->uh_alt_next, uhpp); /* recursive */
|
|
|
|
next = tofree->uh_prev;
|
|
|
|
u_freeentries(buf, tofree, uhpp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free all the undo entries for one header and the header itself.
|
|
|
|
* This means that "uhp" is invalid when returning.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
u_freeentries(buf, uhp, uhpp)
|
|
|
|
buf_T *buf;
|
|
|
|
u_header_T *uhp;
|
|
|
|
u_header_T **uhpp; /* if not NULL reset when freeing this header */
|
|
|
|
{
|
|
|
|
u_entry_T *uep, *nuep;
|
|
|
|
|
|
|
|
/* Check for pointers to the header that become invalid now. */
|
|
|
|
if (buf->b_u_curhead == uhp)
|
|
|
|
buf->b_u_curhead = NULL;
|
2007-10-01 20:54:15 +00:00
|
|
|
if (buf->b_u_newhead == uhp)
|
|
|
|
buf->b_u_newhead = NULL; /* freeing the newest entry */
|
2006-03-13 22:15:53 +00:00
|
|
|
if (uhpp != NULL && uhp == *uhpp)
|
|
|
|
*uhpp = NULL;
|
|
|
|
|
|
|
|
for (uep = uhp->uh_entry; uep != NULL; uep = nuep)
|
|
|
|
{
|
|
|
|
nuep = uep->ue_next;
|
|
|
|
u_freeentry(uep, uep->ue_size);
|
|
|
|
}
|
|
|
|
|
2007-10-01 20:54:15 +00:00
|
|
|
#ifdef U_DEBUG
|
|
|
|
uhp->uh_magic = 0;
|
|
|
|
#endif
|
2005-02-22 08:49:11 +00:00
|
|
|
U_FREE_LINE((char_u *)uhp);
|
|
|
|
--buf->b_u_numhead;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* free entry 'uep' and 'n' lines in uep->ue_array[]
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
u_freeentry(uep, n)
|
|
|
|
u_entry_T *uep;
|
|
|
|
long n;
|
|
|
|
{
|
2005-07-12 22:46:17 +00:00
|
|
|
while (n > 0)
|
2005-02-22 08:49:11 +00:00
|
|
|
U_FREE_LINE(uep->ue_array[--n]);
|
2005-06-25 23:04:51 +00:00
|
|
|
U_FREE_LINE((char_u *)uep->ue_array);
|
2007-10-01 20:54:15 +00:00
|
|
|
#ifdef U_DEBUG
|
|
|
|
uep->ue_magic = 0;
|
|
|
|
#endif
|
2005-02-22 08:49:11 +00:00
|
|
|
U_FREE_LINE((char_u *)uep);
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* invalidate the undo buffer; called when storage has already been released
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
u_clearall(buf)
|
|
|
|
buf_T *buf;
|
|
|
|
{
|
|
|
|
buf->b_u_newhead = buf->b_u_oldhead = buf->b_u_curhead = NULL;
|
|
|
|
buf->b_u_synced = TRUE;
|
|
|
|
buf->b_u_numhead = 0;
|
|
|
|
buf->b_u_line_ptr = NULL;
|
|
|
|
buf->b_u_line_lnum = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* save the line "lnum" for the "U" command
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
u_saveline(lnum)
|
|
|
|
linenr_T lnum;
|
|
|
|
{
|
|
|
|
if (lnum == curbuf->b_u_line_lnum) /* line is already saved */
|
|
|
|
return;
|
2005-06-24 23:07:47 +00:00
|
|
|
if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count) /* should never happen */
|
2004-06-13 20:20:40 +00:00
|
|
|
return;
|
|
|
|
u_clearline();
|
|
|
|
curbuf->b_u_line_lnum = lnum;
|
|
|
|
if (curwin->w_cursor.lnum == lnum)
|
|
|
|
curbuf->b_u_line_colnr = curwin->w_cursor.col;
|
|
|
|
else
|
|
|
|
curbuf->b_u_line_colnr = 0;
|
|
|
|
if ((curbuf->b_u_line_ptr = u_save_line(lnum)) == NULL)
|
|
|
|
do_outofmem_msg((long_u)0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* clear the line saved for the "U" command
|
|
|
|
* (this is used externally for crossing a line while in insert mode)
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
u_clearline()
|
|
|
|
{
|
|
|
|
if (curbuf->b_u_line_ptr != NULL)
|
|
|
|
{
|
2005-02-22 08:49:11 +00:00
|
|
|
U_FREE_LINE(curbuf->b_u_line_ptr);
|
2004-06-13 20:20:40 +00:00
|
|
|
curbuf->b_u_line_ptr = NULL;
|
|
|
|
curbuf->b_u_line_lnum = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Implementation of the "U" command.
|
|
|
|
* Differentiation from vi: "U" can be undone with the next "U".
|
|
|
|
* We also allow the cursor to be in another line.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
u_undoline()
|
|
|
|
{
|
|
|
|
colnr_T t;
|
|
|
|
char_u *oldp;
|
|
|
|
|
|
|
|
if (undo_off)
|
|
|
|
return;
|
|
|
|
|
2008-02-13 14:21:38 +00:00
|
|
|
if (curbuf->b_u_line_ptr == NULL
|
|
|
|
|| curbuf->b_u_line_lnum > curbuf->b_ml.ml_line_count)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
beep_flush();
|
|
|
|
return;
|
|
|
|
}
|
2008-02-13 14:21:38 +00:00
|
|
|
|
|
|
|
/* first save the line for the 'u' command */
|
2004-06-13 20:20:40 +00:00
|
|
|
if (u_savecommon(curbuf->b_u_line_lnum - 1,
|
|
|
|
curbuf->b_u_line_lnum + 1, (linenr_T)0) == FAIL)
|
|
|
|
return;
|
|
|
|
oldp = u_save_line(curbuf->b_u_line_lnum);
|
|
|
|
if (oldp == NULL)
|
|
|
|
{
|
|
|
|
do_outofmem_msg((long_u)0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ml_replace(curbuf->b_u_line_lnum, curbuf->b_u_line_ptr, TRUE);
|
|
|
|
changed_bytes(curbuf->b_u_line_lnum, 0);
|
2005-02-22 08:49:11 +00:00
|
|
|
U_FREE_LINE(curbuf->b_u_line_ptr);
|
2004-06-13 20:20:40 +00:00
|
|
|
curbuf->b_u_line_ptr = oldp;
|
|
|
|
|
|
|
|
t = curbuf->b_u_line_colnr;
|
|
|
|
if (curwin->w_cursor.lnum == curbuf->b_u_line_lnum)
|
|
|
|
curbuf->b_u_line_colnr = curwin->w_cursor.col;
|
|
|
|
curwin->w_cursor.col = t;
|
|
|
|
curwin->w_cursor.lnum = curbuf->b_u_line_lnum;
|
2008-02-13 14:21:38 +00:00
|
|
|
check_cursor_col();
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2005-02-22 08:49:11 +00:00
|
|
|
* There are two implementations of the memory management for undo:
|
|
|
|
* 1. Use the standard malloc()/free() functions.
|
|
|
|
* This should be fast for allocating memory, but when a buffer is
|
|
|
|
* abandoned every single allocated chunk must be freed, which may be slow.
|
|
|
|
* 2. Allocate larger blocks of memory and keep track of chunks ourselves.
|
|
|
|
* This is fast for abandoning, but the use of linked lists is slow for
|
|
|
|
* finding a free chunk. Esp. when a lot of lines are changed or deleted.
|
|
|
|
* A bit of profiling showed that the first method is faster, especially when
|
|
|
|
* making a large number of changes, under the condition that malloc()/free()
|
|
|
|
* is implemented efficiently.
|
|
|
|
*/
|
|
|
|
#ifdef U_USE_MALLOC
|
|
|
|
/*
|
|
|
|
* Version of undo memory allocation using malloc()/free()
|
|
|
|
*
|
|
|
|
* U_FREE_LINE() and U_ALLOC_LINE() are macros that invoke vim_free() and
|
|
|
|
* lalloc() directly.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free all allocated memory blocks for the buffer 'buf'.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
u_blockfree(buf)
|
|
|
|
buf_T *buf;
|
|
|
|
{
|
2006-03-13 22:15:53 +00:00
|
|
|
while (buf->b_u_oldhead != NULL)
|
2006-03-14 23:00:46 +00:00
|
|
|
u_freeheader(buf, buf->b_u_oldhead, NULL);
|
2005-06-25 23:04:51 +00:00
|
|
|
U_FREE_LINE(buf->b_u_line_ptr);
|
2005-02-22 08:49:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
/*
|
|
|
|
* Storage allocation for the undo lines and blocks of the current file.
|
|
|
|
* Version where Vim keeps track of the available memory.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Memory is allocated in relatively large blocks. These blocks are linked
|
|
|
|
* in the allocated block list, headed by curbuf->b_block_head. They are all
|
|
|
|
* freed when abandoning a file, so we don't have to free every single line.
|
|
|
|
* The list is kept sorted on memory address.
|
|
|
|
* block_alloc() allocates a block.
|
|
|
|
* m_blockfree() frees all blocks.
|
|
|
|
*
|
|
|
|
* The available chunks of memory are kept in free chunk lists. There is
|
|
|
|
* one free list for each block of allocated memory. The list is kept sorted
|
|
|
|
* on memory address.
|
|
|
|
* u_alloc_line() gets a chunk from the free lists.
|
|
|
|
* u_free_line() returns a chunk to the free lists.
|
|
|
|
* curbuf->b_m_search points to the chunk before the chunk that was
|
|
|
|
* freed/allocated the last time.
|
|
|
|
* curbuf->b_mb_current points to the b_head where curbuf->b_m_search
|
|
|
|
* points into the free list.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* b_block_head /---> block #1 /---> block #2
|
|
|
|
* mb_next ---/ mb_next ---/ mb_next ---> NULL
|
|
|
|
* mb_info mb_info mb_info
|
|
|
|
* | | |
|
|
|
|
* V V V
|
|
|
|
* NULL free chunk #1.1 free chunk #2.1
|
|
|
|
* | |
|
|
|
|
* V V
|
|
|
|
* free chunk #1.2 NULL
|
|
|
|
* |
|
|
|
|
* V
|
|
|
|
* NULL
|
|
|
|
*
|
|
|
|
* When a single free chunk list would have been used, it could take a lot
|
|
|
|
* of time in u_free_line() to find the correct place to insert a chunk in the
|
|
|
|
* free list. The single free list would become very long when many lines are
|
|
|
|
* changed (e.g. with :%s/^M$//).
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* this blocksize is used when allocating new lines
|
|
|
|
*/
|
|
|
|
#define MEMBLOCKSIZE 2044
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The size field contains the size of the chunk, including the size field
|
|
|
|
* itself.
|
|
|
|
*
|
|
|
|
* When the chunk is not in-use it is preceded with the m_info structure.
|
|
|
|
* The m_next field links it in one of the free chunk lists.
|
|
|
|
*
|
|
|
|
* On most unix systems structures have to be longword (32 or 64 bit) aligned.
|
|
|
|
* On most other systems they are short (16 bit) aligned.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* the structure definitions are now in structs.h */
|
|
|
|
|
|
|
|
#ifdef ALIGN_LONG
|
|
|
|
/* size of m_size */
|
|
|
|
# define M_OFFSET (sizeof(long_u))
|
|
|
|
#else
|
|
|
|
/* size of m_size */
|
|
|
|
# define M_OFFSET (sizeof(short_u))
|
|
|
|
#endif
|
|
|
|
|
2005-02-22 08:49:11 +00:00
|
|
|
static char_u *u_blockalloc __ARGS((long_u));
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/*
|
|
|
|
* Allocate a block of memory and link it in the allocated block list.
|
|
|
|
*/
|
|
|
|
static char_u *
|
|
|
|
u_blockalloc(size)
|
|
|
|
long_u size;
|
|
|
|
{
|
|
|
|
mblock_T *p;
|
|
|
|
mblock_T *mp, *next;
|
|
|
|
|
|
|
|
p = (mblock_T *)lalloc(size + sizeof(mblock_T), FALSE);
|
|
|
|
if (p != NULL)
|
|
|
|
{
|
|
|
|
/* Insert the block into the allocated block list, keeping it
|
|
|
|
sorted on address. */
|
|
|
|
for (mp = &curbuf->b_block_head;
|
|
|
|
(next = mp->mb_next) != NULL && next < p;
|
|
|
|
mp = next)
|
|
|
|
;
|
|
|
|
p->mb_next = next; /* link in block list */
|
|
|
|
p->mb_size = size;
|
2005-02-22 08:49:11 +00:00
|
|
|
p->mb_maxsize = 0; /* nothing free yet */
|
2004-06-13 20:20:40 +00:00
|
|
|
mp->mb_next = p;
|
|
|
|
p->mb_info.m_next = NULL; /* clear free list */
|
|
|
|
p->mb_info.m_size = 0;
|
|
|
|
curbuf->b_mb_current = p; /* remember current block */
|
|
|
|
curbuf->b_m_search = NULL;
|
|
|
|
p++; /* return usable memory */
|
|
|
|
}
|
|
|
|
return (char_u *)p;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* free all allocated memory blocks for the buffer 'buf'
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
u_blockfree(buf)
|
|
|
|
buf_T *buf;
|
|
|
|
{
|
|
|
|
mblock_T *p, *np;
|
|
|
|
|
|
|
|
for (p = buf->b_block_head.mb_next; p != NULL; p = np)
|
|
|
|
{
|
|
|
|
np = p->mb_next;
|
|
|
|
vim_free(p);
|
|
|
|
}
|
|
|
|
buf->b_block_head.mb_next = NULL;
|
|
|
|
buf->b_m_search = NULL;
|
|
|
|
buf->b_mb_current = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free a chunk of memory for the current buffer.
|
|
|
|
* Insert the chunk into the correct free list, keeping it sorted on address.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
u_free_line(ptr, keep)
|
|
|
|
char_u *ptr;
|
|
|
|
int keep; /* don't free the block when it's empty */
|
|
|
|
{
|
|
|
|
minfo_T *next;
|
|
|
|
minfo_T *prev, *curr;
|
|
|
|
minfo_T *mp;
|
|
|
|
mblock_T *nextb;
|
|
|
|
mblock_T *prevb;
|
2005-02-22 08:49:11 +00:00
|
|
|
long_u maxsize;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
if (ptr == NULL || ptr == IObuff)
|
|
|
|
return; /* illegal address can happen in out-of-memory situations */
|
|
|
|
|
|
|
|
mp = (minfo_T *)(ptr - M_OFFSET);
|
|
|
|
|
|
|
|
/* find block where chunk could be a part off */
|
|
|
|
/* if we change curbuf->b_mb_current, curbuf->b_m_search is set to NULL */
|
|
|
|
if (curbuf->b_mb_current == NULL || mp < (minfo_T *)curbuf->b_mb_current)
|
|
|
|
{
|
|
|
|
curbuf->b_mb_current = curbuf->b_block_head.mb_next;
|
|
|
|
curbuf->b_m_search = NULL;
|
|
|
|
}
|
|
|
|
if ((nextb = curbuf->b_mb_current->mb_next) != NULL
|
|
|
|
&& (minfo_T *)nextb < mp)
|
|
|
|
{
|
|
|
|
curbuf->b_mb_current = nextb;
|
|
|
|
curbuf->b_m_search = NULL;
|
|
|
|
}
|
|
|
|
while ((nextb = curbuf->b_mb_current->mb_next) != NULL
|
|
|
|
&& (minfo_T *)nextb < mp)
|
|
|
|
curbuf->b_mb_current = nextb;
|
|
|
|
|
|
|
|
curr = NULL;
|
|
|
|
/*
|
|
|
|
* If mp is smaller than curbuf->b_m_search->m_next go to the start of
|
|
|
|
* the free list
|
|
|
|
*/
|
|
|
|
if (curbuf->b_m_search == NULL || mp < (curbuf->b_m_search->m_next))
|
|
|
|
next = &(curbuf->b_mb_current->mb_info);
|
|
|
|
else
|
|
|
|
next = curbuf->b_m_search;
|
|
|
|
/*
|
|
|
|
* The following loop is executed very often.
|
|
|
|
* Therefore it has been optimized at the cost of readability.
|
|
|
|
* Keep it fast!
|
|
|
|
*/
|
|
|
|
#ifdef SLOW_BUT_EASY_TO_READ
|
|
|
|
do
|
|
|
|
{
|
|
|
|
prev = curr;
|
|
|
|
curr = next;
|
|
|
|
next = next->m_next;
|
|
|
|
}
|
|
|
|
while (mp > next && next != NULL);
|
|
|
|
#else
|
|
|
|
do /* first, middle, last */
|
|
|
|
{
|
|
|
|
prev = next->m_next; /* curr, next, prev */
|
|
|
|
if (prev == NULL || mp <= prev)
|
|
|
|
{
|
|
|
|
prev = curr;
|
|
|
|
curr = next;
|
|
|
|
next = next->m_next;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
curr = prev->m_next; /* next, prev, curr */
|
|
|
|
if (curr == NULL || mp <= curr)
|
|
|
|
{
|
|
|
|
prev = next;
|
|
|
|
curr = prev->m_next;
|
|
|
|
next = curr->m_next;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
next = curr->m_next; /* prev, curr, next */
|
|
|
|
}
|
|
|
|
while (mp > next && next != NULL);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* if *mp and *next are concatenated, join them into one chunk */
|
|
|
|
if ((char_u *)mp + mp->m_size == (char_u *)next)
|
|
|
|
{
|
|
|
|
mp->m_size += next->m_size;
|
|
|
|
mp->m_next = next->m_next;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
mp->m_next = next;
|
2005-02-22 08:49:11 +00:00
|
|
|
maxsize = mp->m_size;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
/* if *curr and *mp are concatenated, join them */
|
|
|
|
if (prev != NULL && (char_u *)curr + curr->m_size == (char_u *)mp)
|
|
|
|
{
|
|
|
|
curr->m_size += mp->m_size;
|
2005-02-22 08:49:11 +00:00
|
|
|
maxsize = curr->m_size;
|
2004-06-13 20:20:40 +00:00
|
|
|
curr->m_next = mp->m_next;
|
|
|
|
curbuf->b_m_search = prev;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
curr->m_next = mp;
|
|
|
|
curbuf->b_m_search = curr; /* put curbuf->b_m_search before freed
|
|
|
|
chunk */
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2007-05-10 18:02:27 +00:00
|
|
|
* If the block only contains free memory now, release it.
|
2004-06-13 20:20:40 +00:00
|
|
|
*/
|
|
|
|
if (!keep && curbuf->b_mb_current->mb_size
|
|
|
|
== curbuf->b_mb_current->mb_info.m_next->m_size)
|
|
|
|
{
|
|
|
|
/* Find the block before the current one to be able to unlink it from
|
|
|
|
* the list of blocks. */
|
|
|
|
prevb = &curbuf->b_block_head;
|
|
|
|
for (nextb = prevb->mb_next; nextb != curbuf->b_mb_current;
|
|
|
|
nextb = nextb->mb_next)
|
|
|
|
prevb = nextb;
|
|
|
|
prevb->mb_next = nextb->mb_next;
|
|
|
|
vim_free(nextb);
|
|
|
|
curbuf->b_mb_current = NULL;
|
|
|
|
curbuf->b_m_search = NULL;
|
|
|
|
}
|
2005-02-22 08:49:11 +00:00
|
|
|
else if (curbuf->b_mb_current->mb_maxsize < maxsize)
|
|
|
|
curbuf->b_mb_current->mb_maxsize = maxsize;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate and initialize a new line structure with room for at least
|
|
|
|
* 'size' characters plus a terminating NUL.
|
|
|
|
*/
|
|
|
|
static char_u *
|
|
|
|
u_alloc_line(size)
|
|
|
|
unsigned size;
|
|
|
|
{
|
|
|
|
minfo_T *mp, *mprev, *mp2;
|
|
|
|
mblock_T *mbp;
|
|
|
|
int size_align;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add room for size field and trailing NUL byte.
|
|
|
|
* Adjust for minimal size (must be able to store minfo_T
|
|
|
|
* plus a trailing NUL, so the chunk can be released again)
|
|
|
|
*/
|
|
|
|
size += M_OFFSET + 1;
|
|
|
|
if (size < sizeof(minfo_T) + 1)
|
|
|
|
size = sizeof(minfo_T) + 1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* round size up for alignment
|
|
|
|
*/
|
|
|
|
size_align = (size + ALIGN_MASK) & ~ALIGN_MASK;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If curbuf->b_m_search is NULL (uninitialized free list) start at
|
|
|
|
* curbuf->b_block_head
|
|
|
|
*/
|
|
|
|
if (curbuf->b_mb_current == NULL || curbuf->b_m_search == NULL)
|
|
|
|
{
|
|
|
|
curbuf->b_mb_current = &curbuf->b_block_head;
|
|
|
|
curbuf->b_m_search = &(curbuf->b_block_head.mb_info);
|
|
|
|
}
|
|
|
|
|
2005-02-22 08:49:11 +00:00
|
|
|
/* Search for a block with enough space. */
|
2004-06-13 20:20:40 +00:00
|
|
|
mbp = curbuf->b_mb_current;
|
2005-02-22 08:49:11 +00:00
|
|
|
while (mbp->mb_maxsize < size_align)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2005-02-22 08:49:11 +00:00
|
|
|
if (mbp->mb_next != NULL)
|
2004-06-13 20:20:40 +00:00
|
|
|
mbp = mbp->mb_next;
|
|
|
|
else
|
|
|
|
mbp = &curbuf->b_block_head;
|
2005-02-22 08:49:11 +00:00
|
|
|
if (mbp == curbuf->b_mb_current)
|
|
|
|
{
|
|
|
|
int n = (size_align > (MEMBLOCKSIZE / 4)
|
|
|
|
? size_align : MEMBLOCKSIZE);
|
|
|
|
|
|
|
|
/* Back where we started in block list: need to add a new block
|
|
|
|
* with enough space. */
|
|
|
|
mp = (minfo_T *)u_blockalloc((long_u)n);
|
|
|
|
if (mp == NULL)
|
|
|
|
return (NULL);
|
|
|
|
mp->m_size = n;
|
|
|
|
u_free_line((char_u *)mp + M_OFFSET, TRUE);
|
|
|
|
mbp = curbuf->b_mb_current;
|
|
|
|
break;
|
|
|
|
}
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
2005-02-22 08:49:11 +00:00
|
|
|
if (mbp != curbuf->b_mb_current)
|
|
|
|
curbuf->b_m_search = &(mbp->mb_info);
|
|
|
|
|
|
|
|
/* In this block find a chunk with enough space. */
|
|
|
|
mprev = curbuf->b_m_search;
|
|
|
|
mp = curbuf->b_m_search->m_next;
|
2005-07-09 21:08:57 +00:00
|
|
|
for (;;)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2005-02-22 08:49:11 +00:00
|
|
|
if (mp == NULL) /* at end of the list */
|
|
|
|
mp = &(mbp->mb_info); /* wrap around to begin */
|
|
|
|
if (mp->m_size >= size)
|
|
|
|
break;
|
|
|
|
if (mp == curbuf->b_m_search)
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2005-02-22 08:49:11 +00:00
|
|
|
/* back where we started in free chunk list: "cannot happen" */
|
|
|
|
EMSG2(_(e_intern2), "u_alloc_line()");
|
|
|
|
return NULL;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
mprev = mp;
|
2005-02-22 08:49:11 +00:00
|
|
|
mp = mp->m_next;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
|
2005-02-22 08:49:11 +00:00
|
|
|
/* when using the largest chunk adjust mb_maxsize */
|
|
|
|
if (mp->m_size >= mbp->mb_maxsize)
|
|
|
|
mbp->mb_maxsize = 0;
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
/* if the chunk we found is large enough, split it up in two */
|
|
|
|
if ((long)mp->m_size - size_align >= (long)(sizeof(minfo_T) + 1))
|
|
|
|
{
|
|
|
|
mp2 = (minfo_T *)((char_u *)mp + size_align);
|
|
|
|
mp2->m_size = mp->m_size - size_align;
|
|
|
|
mp2->m_next = mp->m_next;
|
|
|
|
mprev->m_next = mp2;
|
|
|
|
mp->m_size = size_align;
|
|
|
|
}
|
|
|
|
else /* remove *mp from the free list */
|
|
|
|
{
|
|
|
|
mprev->m_next = mp->m_next;
|
|
|
|
}
|
|
|
|
curbuf->b_m_search = mprev;
|
|
|
|
curbuf->b_mb_current = mbp;
|
|
|
|
|
2005-02-22 08:49:11 +00:00
|
|
|
/* If using the largest chunk need to find the new largest chunk */
|
|
|
|
if (mbp->mb_maxsize == 0)
|
|
|
|
for (mp2 = &(mbp->mb_info); mp2 != NULL; mp2 = mp2->m_next)
|
|
|
|
if (mbp->mb_maxsize < mp2->m_size)
|
|
|
|
mbp->mb_maxsize = mp2->m_size;
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
mp = (minfo_T *)((char_u *)mp + M_OFFSET);
|
|
|
|
*(char_u *)mp = NUL; /* set the first byte to NUL */
|
|
|
|
|
|
|
|
return ((char_u *)mp);
|
|
|
|
}
|
2005-02-22 08:49:11 +00:00
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* u_save_line(): allocate memory with u_alloc_line() and copy line 'lnum'
|
|
|
|
* into it.
|
|
|
|
*/
|
|
|
|
static char_u *
|
|
|
|
u_save_line(lnum)
|
|
|
|
linenr_T lnum;
|
|
|
|
{
|
|
|
|
char_u *src;
|
|
|
|
char_u *dst;
|
|
|
|
unsigned len;
|
|
|
|
|
|
|
|
src = ml_get(lnum);
|
|
|
|
len = (unsigned)STRLEN(src);
|
2005-02-22 08:49:11 +00:00
|
|
|
if ((dst = U_ALLOC_LINE(len)) != NULL)
|
2004-06-13 20:20:40 +00:00
|
|
|
mch_memmove(dst, src, (size_t)(len + 1));
|
|
|
|
return (dst);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check if the 'modified' flag is set, or 'ff' has changed (only need to
|
|
|
|
* check the first character, because it can only be "dos", "unix" or "mac").
|
|
|
|
* "nofile" and "scratch" type buffers are considered to always be unchanged.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
bufIsChanged(buf)
|
|
|
|
buf_T *buf;
|
|
|
|
{
|
|
|
|
return
|
|
|
|
#ifdef FEAT_QUICKFIX
|
|
|
|
!bt_dontwrite(buf) &&
|
|
|
|
#endif
|
|
|
|
(buf->b_changed || file_ff_differs(buf));
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
curbufIsChanged()
|
|
|
|
{
|
|
|
|
return
|
|
|
|
#ifdef FEAT_QUICKFIX
|
|
|
|
!bt_dontwrite(curbuf) &&
|
|
|
|
#endif
|
|
|
|
(curbuf->b_changed || file_ff_differs(curbuf));
|
|
|
|
}
|