Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | /* vi:set ts=8 sts=4 sw=4: |
| 2 | * |
| 3 | * VIM - Vi IMproved by Bram Moolenaar |
| 4 | * |
| 5 | * Do ":help uganda" in Vim to read copying and usage conditions. |
| 6 | * Do ":help credits" in Vim to see a list of people who contributed. |
| 7 | * See README.txt for an overview of the Vim source code. |
| 8 | */ |
| 9 | |
| 10 | /* |
| 11 | * undo.c: multi level undo facility |
| 12 | * |
| 13 | * The saved lines are stored in a list of lists (one for each buffer): |
| 14 | * |
| 15 | * b_u_oldhead------------------------------------------------+ |
| 16 | * | |
| 17 | * V |
| 18 | * +--------------+ +--------------+ +--------------+ |
| 19 | * b_u_newhead--->| u_header | | u_header | | u_header | |
| 20 | * | uh_next------>| uh_next------>| uh_next---->NULL |
| 21 | * NULL<--------uh_prev |<---------uh_prev |<---------uh_prev | |
| 22 | * | uh_entry | | uh_entry | | uh_entry | |
| 23 | * +--------|-----+ +--------|-----+ +--------|-----+ |
| 24 | * | | | |
| 25 | * V V V |
| 26 | * +--------------+ +--------------+ +--------------+ |
| 27 | * | u_entry | | u_entry | | u_entry | |
| 28 | * | ue_next | | ue_next | | ue_next | |
| 29 | * +--------|-----+ +--------|-----+ +--------|-----+ |
| 30 | * | | | |
| 31 | * V V V |
| 32 | * +--------------+ NULL NULL |
| 33 | * | u_entry | |
| 34 | * | ue_next | |
| 35 | * +--------|-----+ |
| 36 | * | |
| 37 | * V |
| 38 | * etc. |
| 39 | * |
| 40 | * Each u_entry list contains the information for one undo or redo. |
| 41 | * curbuf->b_u_curhead points to the header of the last undo (the next redo), |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 42 | * or is NULL if nothing has been undone (end of the branch). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 43 | * |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 44 | * For keeping alternate undo/redo branches the uh_alt field is used. Thus at |
| 45 | * each point in the list a branch may appear for an alternate to redo. The |
| 46 | * uh_seq field is numbered sequentially to be able to find a newer or older |
| 47 | * branch. |
| 48 | * |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 49 | * +---------------+ +---------------+ |
| 50 | * b_u_oldhead --->| u_header | | u_header | |
| 51 | * | uh_alt_next ---->| uh_alt_next ----> NULL |
| 52 | * NULL <----- uh_alt_prev |<------ uh_alt_prev | |
| 53 | * | uh_prev | | uh_prev | |
| 54 | * +-----|---------+ +-----|---------+ |
| 55 | * | | |
| 56 | * V V |
| 57 | * +---------------+ +---------------+ |
| 58 | * | u_header | | u_header | |
| 59 | * | uh_alt_next | | uh_alt_next | |
| 60 | * b_u_newhead --->| uh_alt_prev | | uh_alt_prev | |
| 61 | * | uh_prev | | uh_prev | |
| 62 | * +-----|---------+ +-----|---------+ |
| 63 | * | | |
| 64 | * V V |
| 65 | * NULL +---------------+ +---------------+ |
| 66 | * | u_header | | u_header | |
| 67 | * | uh_alt_next ---->| uh_alt_next | |
| 68 | * | uh_alt_prev |<------ uh_alt_prev | |
| 69 | * | uh_prev | | uh_prev | |
| 70 | * +-----|---------+ +-----|---------+ |
| 71 | * | | |
| 72 | * etc. etc. |
| 73 | * |
| 74 | * |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 75 | * All data is allocated with U_ALLOC_LINE(), it will be freed as soon as the |
| 76 | * buffer is unloaded. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 77 | */ |
| 78 | |
Bram Moolenaar | fecb660 | 2007-10-01 20:54:15 +0000 | [diff] [blame] | 79 | /* Uncomment the next line for including the u_check() function. This warns |
| 80 | * for errors in the debug information. */ |
| 81 | /* #define U_DEBUG 1 */ |
| 82 | #define UH_MAGIC 0x18dade /* value for uh_magic when in use */ |
| 83 | #define UE_MAGIC 0xabc123 /* value for ue_magic when in use */ |
| 84 | |
Bram Moolenaar | 442b422 | 2010-05-24 21:34:22 +0200 | [diff] [blame] | 85 | #if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64) |
| 86 | # include "vimio.h" /* for vim_read(), must be before vim.h */ |
| 87 | #endif |
| 88 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 89 | #include "vim.h" |
| 90 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 91 | /* See below: use malloc()/free() for memory management. */ |
| 92 | #define U_USE_MALLOC 1 |
| 93 | |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 94 | static void u_unch_branch __ARGS((u_header_T *uhp)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 95 | static u_entry_T *u_get_headentry __ARGS((void)); |
| 96 | static void u_getbot __ARGS((void)); |
| 97 | static int u_savecommon __ARGS((linenr_T, linenr_T, linenr_T)); |
| 98 | static void u_doit __ARGS((int count)); |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 99 | static void u_undoredo __ARGS((int undo)); |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 100 | static void u_undo_end __ARGS((int did_undo, int absolute)); |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 101 | static void u_add_time __ARGS((char_u *buf, size_t buflen, time_t tt)); |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 102 | static void u_freeheader __ARGS((buf_T *buf, u_header_T *uhp, u_header_T **uhpp)); |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 103 | static void u_freebranch __ARGS((buf_T *buf, u_header_T *uhp, u_header_T **uhpp)); |
| 104 | static void u_freeentries __ARGS((buf_T *buf, u_header_T *uhp, u_header_T **uhpp)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 105 | static void u_freeentry __ARGS((u_entry_T *, long)); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 106 | #ifdef FEAT_PERSISTENT_UNDO |
| 107 | static void unserialize_pos __ARGS((pos_T *pos, FILE *fp)); |
| 108 | static void unserialize_visualinfo __ARGS((visualinfo_T *info, FILE *fp)); |
| 109 | static char_u *u_get_undo_file_name __ARGS((char_u *, int reading)); |
Bram Moolenaar | 6a18eb6 | 2010-05-26 21:21:00 +0200 | [diff] [blame] | 110 | static void u_free_uhp __ARGS((u_header_T *uhp)); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 111 | static int serialize_uep __ARGS((u_entry_T *uep, FILE *fp)); |
| 112 | static void serialize_pos __ARGS((pos_T pos, FILE *fp)); |
Bram Moolenaar | cdf0420 | 2010-05-29 15:11:47 +0200 | [diff] [blame^] | 113 | static void serialize_visualinfo __ARGS((visualinfo_T *info, FILE *fp)); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 114 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 115 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 116 | #ifdef U_USE_MALLOC |
| 117 | # define U_FREE_LINE(ptr) vim_free(ptr) |
| 118 | # define U_ALLOC_LINE(size) lalloc((long_u)((size) + 1), FALSE) |
| 119 | #else |
| 120 | static void u_free_line __ARGS((char_u *ptr, int keep)); |
| 121 | static char_u *u_alloc_line __ARGS((unsigned size)); |
| 122 | # define U_FREE_LINE(ptr) u_free_line((ptr), FALSE) |
| 123 | # define U_ALLOC_LINE(size) u_alloc_line(size) |
| 124 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 125 | static char_u *u_save_line __ARGS((linenr_T)); |
| 126 | |
| 127 | static long u_newcount, u_oldcount; |
| 128 | |
| 129 | /* |
| 130 | * When 'u' flag included in 'cpoptions', we behave like vi. Need to remember |
| 131 | * the action that "u" should do. |
| 132 | */ |
| 133 | static int undo_undoes = FALSE; |
| 134 | |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 135 | static int lastmark = 0; |
| 136 | |
Bram Moolenaar | fecb660 | 2007-10-01 20:54:15 +0000 | [diff] [blame] | 137 | #ifdef U_DEBUG |
| 138 | /* |
| 139 | * Check the undo structures for being valid. Print a warning when something |
| 140 | * looks wrong. |
| 141 | */ |
| 142 | static int seen_b_u_curhead; |
| 143 | static int seen_b_u_newhead; |
| 144 | static int header_count; |
| 145 | |
| 146 | static void |
| 147 | u_check_tree(u_header_T *uhp, |
| 148 | u_header_T *exp_uh_next, |
| 149 | u_header_T *exp_uh_alt_prev) |
| 150 | { |
| 151 | u_entry_T *uep; |
| 152 | |
| 153 | if (uhp == NULL) |
| 154 | return; |
| 155 | ++header_count; |
| 156 | if (uhp == curbuf->b_u_curhead && ++seen_b_u_curhead > 1) |
| 157 | { |
| 158 | EMSG("b_u_curhead found twice (looping?)"); |
| 159 | return; |
| 160 | } |
| 161 | if (uhp == curbuf->b_u_newhead && ++seen_b_u_newhead > 1) |
| 162 | { |
| 163 | EMSG("b_u_newhead found twice (looping?)"); |
| 164 | return; |
| 165 | } |
| 166 | |
| 167 | if (uhp->uh_magic != UH_MAGIC) |
| 168 | EMSG("uh_magic wrong (may be using freed memory)"); |
| 169 | else |
| 170 | { |
| 171 | /* Check pointers back are correct. */ |
| 172 | if (uhp->uh_next != exp_uh_next) |
| 173 | { |
| 174 | EMSG("uh_next wrong"); |
| 175 | smsg((char_u *)"expected: 0x%x, actual: 0x%x", |
| 176 | exp_uh_next, uhp->uh_next); |
| 177 | } |
| 178 | if (uhp->uh_alt_prev != exp_uh_alt_prev) |
| 179 | { |
| 180 | EMSG("uh_alt_prev wrong"); |
| 181 | smsg((char_u *)"expected: 0x%x, actual: 0x%x", |
| 182 | exp_uh_alt_prev, uhp->uh_alt_prev); |
| 183 | } |
| 184 | |
| 185 | /* Check the undo tree at this header. */ |
| 186 | for (uep = uhp->uh_entry; uep != NULL; uep = uep->ue_next) |
| 187 | { |
| 188 | if (uep->ue_magic != UE_MAGIC) |
| 189 | { |
| 190 | EMSG("ue_magic wrong (may be using freed memory)"); |
| 191 | break; |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | /* Check the next alt tree. */ |
| 196 | u_check_tree(uhp->uh_alt_next, uhp->uh_next, uhp); |
| 197 | |
| 198 | /* Check the next header in this branch. */ |
| 199 | u_check_tree(uhp->uh_prev, uhp, NULL); |
| 200 | } |
| 201 | } |
| 202 | |
| 203 | void |
| 204 | u_check(int newhead_may_be_NULL) |
| 205 | { |
| 206 | seen_b_u_newhead = 0; |
| 207 | seen_b_u_curhead = 0; |
| 208 | header_count = 0; |
| 209 | |
| 210 | u_check_tree(curbuf->b_u_oldhead, NULL, NULL); |
| 211 | |
| 212 | if (seen_b_u_newhead == 0 && curbuf->b_u_oldhead != NULL |
| 213 | && !(newhead_may_be_NULL && curbuf->b_u_newhead == NULL)) |
| 214 | EMSGN("b_u_newhead invalid: 0x%x", curbuf->b_u_newhead); |
| 215 | if (curbuf->b_u_curhead != NULL && seen_b_u_curhead == 0) |
| 216 | EMSGN("b_u_curhead invalid: 0x%x", curbuf->b_u_curhead); |
| 217 | if (header_count != curbuf->b_u_numhead) |
| 218 | { |
| 219 | EMSG("b_u_numhead invalid"); |
| 220 | smsg((char_u *)"expected: %ld, actual: %ld", |
| 221 | (long)header_count, (long)curbuf->b_u_numhead); |
| 222 | } |
| 223 | } |
| 224 | #endif |
| 225 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 226 | /* |
Bram Moolenaar | d857f0e | 2005-06-21 22:37:39 +0000 | [diff] [blame] | 227 | * Save the current line for both the "u" and "U" command. |
| 228 | * Returns OK or FAIL. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 229 | */ |
| 230 | int |
| 231 | u_save_cursor() |
| 232 | { |
| 233 | return (u_save((linenr_T)(curwin->w_cursor.lnum - 1), |
| 234 | (linenr_T)(curwin->w_cursor.lnum + 1))); |
| 235 | } |
| 236 | |
| 237 | /* |
| 238 | * Save the lines between "top" and "bot" for both the "u" and "U" command. |
| 239 | * "top" may be 0 and bot may be curbuf->b_ml.ml_line_count + 1. |
| 240 | * Returns FAIL when lines could not be saved, OK otherwise. |
| 241 | */ |
| 242 | int |
| 243 | u_save(top, bot) |
| 244 | linenr_T top, bot; |
| 245 | { |
| 246 | if (undo_off) |
| 247 | return OK; |
| 248 | |
| 249 | if (top > curbuf->b_ml.ml_line_count || |
| 250 | top >= bot || bot > curbuf->b_ml.ml_line_count + 1) |
| 251 | return FALSE; /* rely on caller to do error messages */ |
| 252 | |
| 253 | if (top + 2 == bot) |
| 254 | u_saveline((linenr_T)(top + 1)); |
| 255 | |
| 256 | return (u_savecommon(top, bot, (linenr_T)0)); |
| 257 | } |
| 258 | |
| 259 | /* |
Bram Moolenaar | fff2bee | 2010-05-15 13:56:02 +0200 | [diff] [blame] | 260 | * Save the line "lnum" (used by ":s" and "~" command). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 261 | * The line is replaced, so the new bottom line is lnum + 1. |
| 262 | */ |
| 263 | int |
| 264 | u_savesub(lnum) |
| 265 | linenr_T lnum; |
| 266 | { |
| 267 | if (undo_off) |
| 268 | return OK; |
| 269 | |
| 270 | return (u_savecommon(lnum - 1, lnum + 1, lnum + 1)); |
| 271 | } |
| 272 | |
| 273 | /* |
Bram Moolenaar | fff2bee | 2010-05-15 13:56:02 +0200 | [diff] [blame] | 274 | * A new line is inserted before line "lnum" (used by :s command). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 275 | * The line is inserted, so the new bottom line is lnum + 1. |
| 276 | */ |
| 277 | int |
| 278 | u_inssub(lnum) |
| 279 | linenr_T lnum; |
| 280 | { |
| 281 | if (undo_off) |
| 282 | return OK; |
| 283 | |
| 284 | return (u_savecommon(lnum - 1, lnum, lnum + 1)); |
| 285 | } |
| 286 | |
| 287 | /* |
Bram Moolenaar | fff2bee | 2010-05-15 13:56:02 +0200 | [diff] [blame] | 288 | * Save the lines "lnum" - "lnum" + nlines (used by delete command). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 289 | * The lines are deleted, so the new bottom line is lnum, unless the buffer |
| 290 | * becomes empty. |
| 291 | */ |
| 292 | int |
| 293 | u_savedel(lnum, nlines) |
| 294 | linenr_T lnum; |
| 295 | long nlines; |
| 296 | { |
| 297 | if (undo_off) |
| 298 | return OK; |
| 299 | |
| 300 | return (u_savecommon(lnum - 1, lnum + nlines, |
| 301 | nlines == curbuf->b_ml.ml_line_count ? 2 : lnum)); |
| 302 | } |
| 303 | |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 304 | /* |
| 305 | * Return TRUE when undo is allowed. Otherwise give an error message and |
| 306 | * return FALSE. |
| 307 | */ |
Bram Moolenaar | ce6ef25 | 2006-07-12 19:49:41 +0000 | [diff] [blame] | 308 | int |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 309 | undo_allowed() |
| 310 | { |
| 311 | /* Don't allow changes when 'modifiable' is off. */ |
| 312 | if (!curbuf->b_p_ma) |
| 313 | { |
| 314 | EMSG(_(e_modifiable)); |
| 315 | return FALSE; |
| 316 | } |
| 317 | |
| 318 | #ifdef HAVE_SANDBOX |
| 319 | /* In the sandbox it's not allowed to change the text. */ |
| 320 | if (sandbox != 0) |
| 321 | { |
| 322 | EMSG(_(e_sandbox)); |
| 323 | return FALSE; |
| 324 | } |
| 325 | #endif |
| 326 | |
| 327 | /* Don't allow changes in the buffer while editing the cmdline. The |
| 328 | * caller of getcmdline() may get confused. */ |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 329 | if (textlock != 0) |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 330 | { |
| 331 | EMSG(_(e_secure)); |
| 332 | return FALSE; |
| 333 | } |
| 334 | |
| 335 | return TRUE; |
| 336 | } |
| 337 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 338 | static int |
| 339 | u_savecommon(top, bot, newbot) |
| 340 | linenr_T top, bot; |
| 341 | linenr_T newbot; |
| 342 | { |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 343 | linenr_T lnum; |
| 344 | long i; |
| 345 | u_header_T *uhp; |
| 346 | u_header_T *old_curhead; |
| 347 | u_entry_T *uep; |
| 348 | u_entry_T *prev_uep; |
| 349 | long size; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 350 | |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 351 | /* When making changes is not allowed return FAIL. It's a crude way to |
| 352 | * make all change commands fail. */ |
| 353 | if (!undo_allowed()) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 354 | return FAIL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 355 | |
Bram Moolenaar | fecb660 | 2007-10-01 20:54:15 +0000 | [diff] [blame] | 356 | #ifdef U_DEBUG |
| 357 | u_check(FALSE); |
| 358 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 359 | #ifdef FEAT_NETBEANS_INTG |
| 360 | /* |
| 361 | * Netbeans defines areas that cannot be modified. Bail out here when |
| 362 | * trying to change text in a guarded area. |
| 363 | */ |
Bram Moolenaar | b26e632 | 2010-05-22 21:34:09 +0200 | [diff] [blame] | 364 | if (netbeans_active()) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 365 | { |
Bram Moolenaar | 009b259 | 2004-10-24 19:18:58 +0000 | [diff] [blame] | 366 | if (netbeans_is_guarded(top, bot)) |
| 367 | { |
| 368 | EMSG(_(e_guarded)); |
| 369 | return FAIL; |
| 370 | } |
| 371 | if (curbuf->b_p_ro) |
| 372 | { |
| 373 | EMSG(_(e_nbreadonly)); |
| 374 | return FAIL; |
| 375 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 376 | } |
| 377 | #endif |
| 378 | |
| 379 | #ifdef FEAT_AUTOCMD |
| 380 | /* |
| 381 | * Saving text for undo means we are going to make a change. Give a |
| 382 | * warning for a read-only file before making the change, so that the |
| 383 | * FileChangedRO event can replace the buffer with a read-write version |
| 384 | * (e.g., obtained from a source control system). |
| 385 | */ |
| 386 | change_warning(0); |
| 387 | #endif |
| 388 | |
| 389 | size = bot - top - 1; |
| 390 | |
| 391 | /* |
| 392 | * if curbuf->b_u_synced == TRUE make a new header |
| 393 | */ |
| 394 | if (curbuf->b_u_synced) |
| 395 | { |
| 396 | #ifdef FEAT_JUMPLIST |
| 397 | /* Need to create new entry in b_changelist. */ |
| 398 | curbuf->b_new_change = TRUE; |
| 399 | #endif |
| 400 | |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 401 | if (p_ul >= 0) |
| 402 | { |
| 403 | /* |
| 404 | * Make a new header entry. Do this first so that we don't mess |
| 405 | * up the undo info when out of memory. |
| 406 | */ |
| 407 | uhp = (u_header_T *)U_ALLOC_LINE((unsigned)sizeof(u_header_T)); |
| 408 | if (uhp == NULL) |
| 409 | goto nomem; |
Bram Moolenaar | fecb660 | 2007-10-01 20:54:15 +0000 | [diff] [blame] | 410 | #ifdef U_DEBUG |
| 411 | uhp->uh_magic = UH_MAGIC; |
| 412 | #endif |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 413 | } |
Bram Moolenaar | 7d47b6e | 2006-03-15 22:59:18 +0000 | [diff] [blame] | 414 | else |
| 415 | uhp = NULL; |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 416 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 417 | /* |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 418 | * If we undid more than we redid, move the entry lists before and |
| 419 | * including curbuf->b_u_curhead to an alternate branch. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 420 | */ |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 421 | old_curhead = curbuf->b_u_curhead; |
| 422 | if (old_curhead != NULL) |
| 423 | { |
| 424 | curbuf->b_u_newhead = old_curhead->uh_next; |
| 425 | curbuf->b_u_curhead = NULL; |
| 426 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 427 | |
| 428 | /* |
| 429 | * free headers to keep the size right |
| 430 | */ |
| 431 | while (curbuf->b_u_numhead > p_ul && curbuf->b_u_oldhead != NULL) |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 432 | { |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 433 | u_header_T *uhfree = curbuf->b_u_oldhead; |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 434 | |
Bram Moolenaar | fecb660 | 2007-10-01 20:54:15 +0000 | [diff] [blame] | 435 | if (uhfree == old_curhead) |
| 436 | /* Can't reconnect the branch, delete all of it. */ |
| 437 | u_freebranch(curbuf, uhfree, &old_curhead); |
| 438 | else if (uhfree->uh_alt_next == NULL) |
| 439 | /* There is no branch, only free one header. */ |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 440 | u_freeheader(curbuf, uhfree, &old_curhead); |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 441 | else |
| 442 | { |
| 443 | /* Free the oldest alternate branch as a whole. */ |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 444 | while (uhfree->uh_alt_next != NULL) |
| 445 | uhfree = uhfree->uh_alt_next; |
| 446 | u_freebranch(curbuf, uhfree, &old_curhead); |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 447 | } |
Bram Moolenaar | fecb660 | 2007-10-01 20:54:15 +0000 | [diff] [blame] | 448 | #ifdef U_DEBUG |
| 449 | u_check(TRUE); |
| 450 | #endif |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 451 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 452 | |
Bram Moolenaar | 7d47b6e | 2006-03-15 22:59:18 +0000 | [diff] [blame] | 453 | if (uhp == NULL) /* no undo at all */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 454 | { |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 455 | if (old_curhead != NULL) |
| 456 | u_freebranch(curbuf, old_curhead, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 457 | curbuf->b_u_synced = FALSE; |
| 458 | return OK; |
| 459 | } |
| 460 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 461 | uhp->uh_prev = NULL; |
| 462 | uhp->uh_next = curbuf->b_u_newhead; |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 463 | uhp->uh_alt_next = old_curhead; |
| 464 | if (old_curhead != NULL) |
| 465 | { |
Bram Moolenaar | 89ed3df | 2007-01-09 19:23:12 +0000 | [diff] [blame] | 466 | uhp->uh_alt_prev = old_curhead->uh_alt_prev; |
| 467 | if (uhp->uh_alt_prev != NULL) |
| 468 | uhp->uh_alt_prev->uh_alt_next = uhp; |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 469 | old_curhead->uh_alt_prev = uhp; |
| 470 | if (curbuf->b_u_oldhead == old_curhead) |
| 471 | curbuf->b_u_oldhead = uhp; |
| 472 | } |
Bram Moolenaar | 89ed3df | 2007-01-09 19:23:12 +0000 | [diff] [blame] | 473 | else |
| 474 | uhp->uh_alt_prev = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 475 | if (curbuf->b_u_newhead != NULL) |
| 476 | curbuf->b_u_newhead->uh_prev = uhp; |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 477 | |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 478 | uhp->uh_seq = ++curbuf->b_u_seq_last; |
| 479 | curbuf->b_u_seq_cur = uhp->uh_seq; |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 480 | uhp->uh_time = time(NULL); |
| 481 | curbuf->b_u_seq_time = uhp->uh_time + 1; |
| 482 | |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 483 | uhp->uh_walk = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 484 | uhp->uh_entry = NULL; |
| 485 | uhp->uh_getbot_entry = NULL; |
| 486 | uhp->uh_cursor = curwin->w_cursor; /* save cursor pos. for undo */ |
| 487 | #ifdef FEAT_VIRTUALEDIT |
| 488 | if (virtual_active() && curwin->w_cursor.coladd > 0) |
| 489 | uhp->uh_cursor_vcol = getviscol(); |
| 490 | else |
| 491 | uhp->uh_cursor_vcol = -1; |
| 492 | #endif |
| 493 | |
| 494 | /* save changed and buffer empty flag for undo */ |
| 495 | uhp->uh_flags = (curbuf->b_changed ? UH_CHANGED : 0) + |
| 496 | ((curbuf->b_ml.ml_flags & ML_EMPTY) ? UH_EMPTYBUF : 0); |
| 497 | |
Bram Moolenaar | a23ccb8 | 2006-02-27 00:08:02 +0000 | [diff] [blame] | 498 | /* save named marks and Visual marks for undo */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 499 | mch_memmove(uhp->uh_namedm, curbuf->b_namedm, sizeof(pos_T) * NMARKS); |
Bram Moolenaar | a23ccb8 | 2006-02-27 00:08:02 +0000 | [diff] [blame] | 500 | #ifdef FEAT_VISUAL |
| 501 | uhp->uh_visual = curbuf->b_visual; |
| 502 | #endif |
| 503 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 504 | curbuf->b_u_newhead = uhp; |
| 505 | if (curbuf->b_u_oldhead == NULL) |
| 506 | curbuf->b_u_oldhead = uhp; |
| 507 | ++curbuf->b_u_numhead; |
| 508 | } |
| 509 | else |
| 510 | { |
| 511 | if (p_ul < 0) /* no undo at all */ |
| 512 | return OK; |
| 513 | |
| 514 | /* |
| 515 | * When saving a single line, and it has been saved just before, it |
| 516 | * doesn't make sense saving it again. Saves a lot of memory when |
| 517 | * making lots of changes inside the same line. |
| 518 | * This is only possible if the previous change didn't increase or |
| 519 | * decrease the number of lines. |
| 520 | * Check the ten last changes. More doesn't make sense and takes too |
| 521 | * long. |
| 522 | */ |
| 523 | if (size == 1) |
| 524 | { |
| 525 | uep = u_get_headentry(); |
| 526 | prev_uep = NULL; |
| 527 | for (i = 0; i < 10; ++i) |
| 528 | { |
| 529 | if (uep == NULL) |
| 530 | break; |
| 531 | |
| 532 | /* If lines have been inserted/deleted we give up. |
| 533 | * Also when the line was included in a multi-line save. */ |
| 534 | if ((curbuf->b_u_newhead->uh_getbot_entry != uep |
| 535 | ? (uep->ue_top + uep->ue_size + 1 |
| 536 | != (uep->ue_bot == 0 |
| 537 | ? curbuf->b_ml.ml_line_count + 1 |
| 538 | : uep->ue_bot)) |
| 539 | : uep->ue_lcount != curbuf->b_ml.ml_line_count) |
| 540 | || (uep->ue_size > 1 |
| 541 | && top >= uep->ue_top |
| 542 | && top + 2 <= uep->ue_top + uep->ue_size + 1)) |
| 543 | break; |
| 544 | |
| 545 | /* If it's the same line we can skip saving it again. */ |
| 546 | if (uep->ue_size == 1 && uep->ue_top == top) |
| 547 | { |
| 548 | if (i > 0) |
| 549 | { |
| 550 | /* It's not the last entry: get ue_bot for the last |
| 551 | * entry now. Following deleted/inserted lines go to |
| 552 | * the re-used entry. */ |
| 553 | u_getbot(); |
| 554 | curbuf->b_u_synced = FALSE; |
| 555 | |
| 556 | /* Move the found entry to become the last entry. The |
| 557 | * order of undo/redo doesn't matter for the entries |
| 558 | * we move it over, since they don't change the line |
| 559 | * count and don't include this line. It does matter |
| 560 | * for the found entry if the line count is changed by |
| 561 | * the executed command. */ |
| 562 | prev_uep->ue_next = uep->ue_next; |
| 563 | uep->ue_next = curbuf->b_u_newhead->uh_entry; |
| 564 | curbuf->b_u_newhead->uh_entry = uep; |
| 565 | } |
| 566 | |
| 567 | /* The executed command may change the line count. */ |
| 568 | if (newbot != 0) |
| 569 | uep->ue_bot = newbot; |
| 570 | else if (bot > curbuf->b_ml.ml_line_count) |
| 571 | uep->ue_bot = 0; |
| 572 | else |
| 573 | { |
| 574 | uep->ue_lcount = curbuf->b_ml.ml_line_count; |
| 575 | curbuf->b_u_newhead->uh_getbot_entry = uep; |
| 576 | } |
| 577 | return OK; |
| 578 | } |
| 579 | prev_uep = uep; |
| 580 | uep = uep->ue_next; |
| 581 | } |
| 582 | } |
| 583 | |
| 584 | /* find line number for ue_bot for previous u_save() */ |
| 585 | u_getbot(); |
| 586 | } |
| 587 | |
| 588 | #if !defined(UNIX) && !defined(DJGPP) && !defined(WIN32) && !defined(__EMX__) |
| 589 | /* |
| 590 | * With Amiga and MSDOS 16 bit we can't handle big undo's, because |
| 591 | * then u_alloc_line would have to allocate a block larger than 32K |
| 592 | */ |
| 593 | if (size >= 8000) |
| 594 | goto nomem; |
| 595 | #endif |
| 596 | |
| 597 | /* |
| 598 | * add lines in front of entry list |
| 599 | */ |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 600 | uep = (u_entry_T *)U_ALLOC_LINE((unsigned)sizeof(u_entry_T)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 601 | if (uep == NULL) |
| 602 | goto nomem; |
Bram Moolenaar | 7db5fc8 | 2010-05-24 11:59:29 +0200 | [diff] [blame] | 603 | vim_memset(uep, 0, sizeof(u_entry_T)); |
Bram Moolenaar | fecb660 | 2007-10-01 20:54:15 +0000 | [diff] [blame] | 604 | #ifdef U_DEBUG |
| 605 | uep->ue_magic = UE_MAGIC; |
| 606 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 607 | |
| 608 | uep->ue_size = size; |
| 609 | uep->ue_top = top; |
| 610 | if (newbot != 0) |
| 611 | uep->ue_bot = newbot; |
| 612 | /* |
| 613 | * Use 0 for ue_bot if bot is below last line. |
| 614 | * Otherwise we have to compute ue_bot later. |
| 615 | */ |
| 616 | else if (bot > curbuf->b_ml.ml_line_count) |
| 617 | uep->ue_bot = 0; |
| 618 | else |
| 619 | { |
| 620 | uep->ue_lcount = curbuf->b_ml.ml_line_count; |
| 621 | curbuf->b_u_newhead->uh_getbot_entry = uep; |
| 622 | } |
| 623 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 624 | if (size > 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 625 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 626 | if ((uep->ue_array = (char_u **)U_ALLOC_LINE( |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 627 | (unsigned)(sizeof(char_u *) * size))) == NULL) |
| 628 | { |
| 629 | u_freeentry(uep, 0L); |
| 630 | goto nomem; |
| 631 | } |
| 632 | for (i = 0, lnum = top + 1; i < size; ++i) |
| 633 | { |
Bram Moolenaar | ae5bce1 | 2005-08-15 21:41:48 +0000 | [diff] [blame] | 634 | fast_breakcheck(); |
| 635 | if (got_int) |
| 636 | { |
| 637 | u_freeentry(uep, i); |
| 638 | return FAIL; |
| 639 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 640 | if ((uep->ue_array[i] = u_save_line(lnum++)) == NULL) |
| 641 | { |
| 642 | u_freeentry(uep, i); |
| 643 | goto nomem; |
| 644 | } |
| 645 | } |
| 646 | } |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 647 | else |
| 648 | uep->ue_array = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 649 | uep->ue_next = curbuf->b_u_newhead->uh_entry; |
| 650 | curbuf->b_u_newhead->uh_entry = uep; |
| 651 | curbuf->b_u_synced = FALSE; |
| 652 | undo_undoes = FALSE; |
| 653 | |
Bram Moolenaar | fecb660 | 2007-10-01 20:54:15 +0000 | [diff] [blame] | 654 | #ifdef U_DEBUG |
| 655 | u_check(FALSE); |
| 656 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 657 | return OK; |
| 658 | |
| 659 | nomem: |
| 660 | msg_silent = 0; /* must display the prompt */ |
| 661 | if (ask_yesno((char_u *)_("No undo possible; continue anyway"), TRUE) |
| 662 | == 'y') |
| 663 | { |
| 664 | undo_off = TRUE; /* will be reset when character typed */ |
| 665 | return OK; |
| 666 | } |
| 667 | do_outofmem_msg((long_u)0); |
| 668 | return FAIL; |
| 669 | } |
| 670 | |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 671 | #ifdef FEAT_PERSISTENT_UNDO |
| 672 | |
| 673 | # define UF_START_MAGIC 0xfeac /* magic at start of undofile */ |
| 674 | # define UF_HEADER_MAGIC 0x5fd0 /* magic at start of header */ |
| 675 | # define UF_END_MAGIC 0xe7aa /* magic after last header */ |
| 676 | # define UF_VERSION 1 /* 2-byte undofile version number */ |
| 677 | |
Bram Moolenaar | cdf0420 | 2010-05-29 15:11:47 +0200 | [diff] [blame^] | 678 | static char_u e_not_open[] = N_("E828: Cannot open undo file for writing: %s"); |
| 679 | static char_u e_corrupted[] = N_("E823: Corrupted undo file: %s"); |
| 680 | |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 681 | /* |
| 682 | * Compute the hash for the current buffer text into hash[UNDO_HASH_SIZE]. |
| 683 | */ |
| 684 | void |
| 685 | u_compute_hash(hash) |
| 686 | char_u *hash; |
| 687 | { |
| 688 | context_sha256_T ctx; |
| 689 | linenr_T lnum; |
| 690 | char_u *p; |
| 691 | |
| 692 | sha256_start(&ctx); |
| 693 | for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum) |
| 694 | { |
| 695 | p = ml_get(lnum); |
Bram Moolenaar | 442b422 | 2010-05-24 21:34:22 +0200 | [diff] [blame] | 696 | sha256_update(&ctx, p, (UINT32_T)(STRLEN(p) + 1)); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 697 | } |
| 698 | sha256_finish(&ctx, hash); |
| 699 | } |
| 700 | |
| 701 | /* |
| 702 | * Unserialize the pos_T at the current position in fp. |
| 703 | */ |
| 704 | static void |
| 705 | unserialize_pos(pos, fp) |
| 706 | pos_T *pos; |
| 707 | FILE *fp; |
| 708 | { |
| 709 | pos->lnum = get4c(fp); |
| 710 | pos->col = get4c(fp); |
| 711 | #ifdef FEAT_VIRTUALEDIT |
| 712 | pos->coladd = get4c(fp); |
| 713 | #else |
| 714 | (void)get4c(fp); |
| 715 | #endif |
| 716 | } |
| 717 | |
| 718 | /* |
| 719 | * Unserialize the visualinfo_T at the current position in fp. |
| 720 | */ |
| 721 | static void |
| 722 | unserialize_visualinfo(info, fp) |
| 723 | visualinfo_T *info; |
| 724 | FILE *fp; |
| 725 | { |
| 726 | unserialize_pos(&info->vi_start, fp); |
| 727 | unserialize_pos(&info->vi_end, fp); |
| 728 | info->vi_mode = get4c(fp); |
| 729 | info->vi_curswant = get4c(fp); |
| 730 | } |
| 731 | |
| 732 | /* |
| 733 | * Return an allocated string of the full path of the target undofile. |
| 734 | * When "reading" is TRUE find the file to read, go over all directories in |
| 735 | * 'undodir'. |
| 736 | * When "reading" is FALSE use the first name where the directory exists. |
| 737 | */ |
| 738 | static char_u * |
| 739 | u_get_undo_file_name(buf_ffname, reading) |
| 740 | char_u *buf_ffname; |
| 741 | int reading; |
| 742 | { |
| 743 | char_u *dirp; |
| 744 | char_u dir_name[IOSIZE + 1]; |
| 745 | char_u *munged_name = NULL; |
| 746 | char_u *undo_file_name = NULL; |
| 747 | int dir_len; |
| 748 | char_u *p; |
| 749 | struct stat st; |
| 750 | char_u *ffname = buf_ffname; |
| 751 | #ifdef HAVE_READLINK |
| 752 | char_u fname_buf[MAXPATHL]; |
| 753 | #endif |
| 754 | |
| 755 | if (ffname == NULL) |
| 756 | return NULL; |
| 757 | |
| 758 | #ifdef HAVE_READLINK |
| 759 | /* Expand symlink in the file name, so that we put the undo file with the |
| 760 | * actual file instead of with the symlink. */ |
| 761 | if (resolve_symlink(ffname, fname_buf) == OK) |
| 762 | ffname = fname_buf; |
| 763 | #endif |
| 764 | |
| 765 | /* Loop over 'undodir'. When reading find the first file that exists. |
| 766 | * When not reading use the first directory that exists or ".". */ |
| 767 | dirp = p_udir; |
| 768 | while (*dirp != NUL) |
| 769 | { |
| 770 | dir_len = copy_option_part(&dirp, dir_name, IOSIZE, ","); |
| 771 | if (dir_len == 1 && dir_name[0] == '.') |
| 772 | { |
| 773 | /* Use same directory as the ffname, |
| 774 | * "dir/name" -> "dir/.name.un~" */ |
Bram Moolenaar | 442b422 | 2010-05-24 21:34:22 +0200 | [diff] [blame] | 775 | undo_file_name = vim_strnsave(ffname, (int)(STRLEN(ffname) + 5)); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 776 | if (undo_file_name == NULL) |
| 777 | break; |
| 778 | p = gettail(undo_file_name); |
| 779 | mch_memmove(p + 1, p, STRLEN(p) + 1); |
| 780 | *p = '.'; |
| 781 | STRCAT(p, ".un~"); |
| 782 | } |
| 783 | else |
| 784 | { |
| 785 | dir_name[dir_len] = NUL; |
| 786 | if (mch_isdir(dir_name)) |
| 787 | { |
| 788 | if (munged_name == NULL) |
| 789 | { |
| 790 | munged_name = vim_strsave(ffname); |
| 791 | if (munged_name == NULL) |
| 792 | return NULL; |
| 793 | for (p = munged_name; *p != NUL; mb_ptr_adv(p)) |
| 794 | if (vim_ispathsep(*p)) |
| 795 | *p = '%'; |
| 796 | } |
| 797 | undo_file_name = concat_fnames(dir_name, munged_name, TRUE); |
| 798 | } |
| 799 | } |
| 800 | |
| 801 | /* When reading check if the file exists. */ |
| 802 | if (undo_file_name != NULL && (!reading |
| 803 | || mch_stat((char *)undo_file_name, &st) >= 0)) |
| 804 | break; |
| 805 | vim_free(undo_file_name); |
| 806 | undo_file_name = NULL; |
| 807 | } |
| 808 | |
| 809 | vim_free(munged_name); |
| 810 | return undo_file_name; |
| 811 | } |
| 812 | |
| 813 | /* |
| 814 | * Load the undo tree from an undo file. |
| 815 | * If "name" is not NULL use it as the undo file name. This also means being |
| 816 | * a bit more verbose. |
| 817 | * Otherwise use curbuf->b_ffname to generate the undo file name. |
| 818 | * "hash[UNDO_HASH_SIZE]" must be the hash value of the buffer text. |
| 819 | */ |
| 820 | void |
| 821 | u_read_undo(name, hash) |
| 822 | char_u *name; |
| 823 | char_u *hash; |
| 824 | { |
| 825 | char_u *file_name; |
| 826 | FILE *fp; |
| 827 | long magic, version, str_len; |
| 828 | char_u *line_ptr = NULL; |
| 829 | linenr_T line_lnum; |
| 830 | colnr_T line_colnr; |
| 831 | linenr_T line_count; |
| 832 | int uep_len; |
| 833 | int line_len; |
Bram Moolenaar | 442b422 | 2010-05-24 21:34:22 +0200 | [diff] [blame] | 834 | int num_head = 0; |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 835 | long old_header_seq, new_header_seq, cur_header_seq; |
| 836 | long seq_last, seq_cur; |
| 837 | short old_idx = -1, new_idx = -1, cur_idx = -1; |
| 838 | long num_read_uhps = 0; |
| 839 | time_t seq_time; |
| 840 | int i, j; |
| 841 | int c; |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 842 | char_u **array; |
| 843 | char_u *line; |
Bram Moolenaar | 6a18eb6 | 2010-05-26 21:21:00 +0200 | [diff] [blame] | 844 | u_entry_T *uep, *last_uep; |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 845 | u_header_T *uhp; |
| 846 | u_header_T **uhp_table = NULL; |
| 847 | char_u read_hash[UNDO_HASH_SIZE]; |
| 848 | |
| 849 | if (name == NULL) |
| 850 | { |
| 851 | file_name = u_get_undo_file_name(curbuf->b_ffname, TRUE); |
| 852 | if (file_name == NULL) |
| 853 | return; |
| 854 | } |
| 855 | else |
| 856 | file_name = name; |
| 857 | |
| 858 | if (p_verbose > 0) |
| 859 | smsg((char_u *)_("Reading undo file: %s"), file_name); |
| 860 | fp = mch_fopen((char *)file_name, "r"); |
| 861 | if (fp == NULL) |
| 862 | { |
| 863 | if (name != NULL || p_verbose > 0) |
| 864 | EMSG2(_("E822: Cannot open undo file for reading: %s"), file_name); |
| 865 | goto error; |
| 866 | } |
| 867 | |
| 868 | /* Begin overall file information */ |
| 869 | magic = get2c(fp); |
| 870 | if (magic != UF_START_MAGIC) |
| 871 | { |
Bram Moolenaar | cdf0420 | 2010-05-29 15:11:47 +0200 | [diff] [blame^] | 872 | EMSG2(_(e_corrupted), file_name); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 873 | goto error; |
| 874 | } |
| 875 | version = get2c(fp); |
| 876 | if (version != UF_VERSION) |
| 877 | { |
| 878 | EMSG2(_("E824: Incompatible undo file: %s"), file_name); |
| 879 | goto error; |
| 880 | } |
| 881 | |
Bram Moolenaar | cdf0420 | 2010-05-29 15:11:47 +0200 | [diff] [blame^] | 882 | if (fread(read_hash, UNDO_HASH_SIZE, 1, fp) != 1) |
| 883 | { |
| 884 | EMSG2(_(e_corrupted), file_name); |
| 885 | goto error; |
| 886 | } |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 887 | line_count = (linenr_T)get4c(fp); |
| 888 | if (memcmp(hash, read_hash, UNDO_HASH_SIZE) != 0 |
| 889 | || line_count != curbuf->b_ml.ml_line_count) |
| 890 | { |
| 891 | if (p_verbose > 0 || name != NULL) |
| 892 | { |
| 893 | verbose_enter(); |
Bram Moolenaar | 7db5fc8 | 2010-05-24 11:59:29 +0200 | [diff] [blame] | 894 | give_warning((char_u *)_("File contents changed, cannot use undo info"), TRUE); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 895 | verbose_leave(); |
| 896 | } |
| 897 | goto error; |
| 898 | } |
| 899 | |
| 900 | /* Begin undo data for U */ |
| 901 | str_len = get4c(fp); |
| 902 | if (str_len < 0) |
| 903 | goto error; |
| 904 | else if (str_len > 0) |
| 905 | { |
| 906 | if ((line_ptr = U_ALLOC_LINE(str_len)) == NULL) |
| 907 | goto error; |
| 908 | for (i = 0; i < str_len; i++) |
| 909 | line_ptr[i] = (char_u)getc(fp); |
| 910 | line_ptr[i] = NUL; |
| 911 | } |
| 912 | line_lnum = (linenr_T)get4c(fp); |
| 913 | line_colnr = (colnr_T)get4c(fp); |
| 914 | |
| 915 | /* Begin general undo data */ |
| 916 | old_header_seq = get4c(fp); |
| 917 | new_header_seq = get4c(fp); |
| 918 | cur_header_seq = get4c(fp); |
| 919 | num_head = get4c(fp); |
| 920 | seq_last = get4c(fp); |
| 921 | seq_cur = get4c(fp); |
Bram Moolenaar | cdf0420 | 2010-05-29 15:11:47 +0200 | [diff] [blame^] | 922 | seq_time = get8ctime(fp); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 923 | |
Bram Moolenaar | 6a18eb6 | 2010-05-26 21:21:00 +0200 | [diff] [blame] | 924 | if (num_head < 0) |
| 925 | num_head = 0; |
| 926 | |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 927 | /* uhp_table will store the freshly created undo headers we allocate |
| 928 | * until we insert them into curbuf. The table remains sorted by the |
| 929 | * sequence numbers of the headers. */ |
| 930 | uhp_table = (u_header_T **)U_ALLOC_LINE(num_head * sizeof(u_header_T *)); |
| 931 | if (uhp_table == NULL) |
| 932 | goto error; |
| 933 | vim_memset(uhp_table, 0, num_head * sizeof(u_header_T *)); |
| 934 | |
| 935 | c = get2c(fp); |
| 936 | while (c == UF_HEADER_MAGIC) |
| 937 | { |
Bram Moolenaar | 6a18eb6 | 2010-05-26 21:21:00 +0200 | [diff] [blame] | 938 | if (num_read_uhps >= num_head) |
| 939 | { |
| 940 | EMSG2(_("E831 Undo file corruption: num_head: %s"), file_name); |
| 941 | u_free_uhp(uhp); |
| 942 | goto error; |
| 943 | } |
| 944 | |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 945 | uhp = (u_header_T *)U_ALLOC_LINE((unsigned)sizeof(u_header_T)); |
| 946 | if (uhp == NULL) |
| 947 | goto error; |
| 948 | vim_memset(uhp, 0, sizeof(u_header_T)); |
| 949 | /* We're not actually trying to store pointers here. We're just storing |
| 950 | * IDs so we can swizzle them into pointers later - hence the type |
| 951 | * cast. */ |
Bram Moolenaar | cdf0420 | 2010-05-29 15:11:47 +0200 | [diff] [blame^] | 952 | uhp->uh_next = (u_header_T *)(long_u)get4c(fp); |
| 953 | uhp->uh_prev = (u_header_T *)(long_u)get4c(fp); |
| 954 | uhp->uh_alt_next = (u_header_T *)(long_u)get4c(fp); |
| 955 | uhp->uh_alt_prev = (u_header_T *)(long_u)get4c(fp); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 956 | uhp->uh_seq = get4c(fp); |
| 957 | if (uhp->uh_seq <= 0) |
| 958 | { |
| 959 | EMSG2(_("E825: Undo file corruption: invalid uh_seq.: %s"), |
| 960 | file_name); |
| 961 | U_FREE_LINE(uhp); |
| 962 | goto error; |
| 963 | } |
| 964 | uhp->uh_walk = 0; |
| 965 | unserialize_pos(&uhp->uh_cursor, fp); |
| 966 | #ifdef FEAT_VIRTUALEDIT |
| 967 | uhp->uh_cursor_vcol = get4c(fp); |
| 968 | #else |
| 969 | (void)get4c(fp); |
| 970 | #endif |
| 971 | uhp->uh_flags = get2c(fp); |
| 972 | for (i = 0; i < NMARKS; ++i) |
| 973 | unserialize_pos(&uhp->uh_namedm[i], fp); |
| 974 | #ifdef FEAT_VISUAL |
| 975 | unserialize_visualinfo(&uhp->uh_visual, fp); |
| 976 | #else |
| 977 | { |
| 978 | visualinfo_T info; |
| 979 | unserialize_visualinfo(&info, fp); |
| 980 | } |
| 981 | #endif |
Bram Moolenaar | cdf0420 | 2010-05-29 15:11:47 +0200 | [diff] [blame^] | 982 | uhp->uh_time = get8ctime(fp); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 983 | |
| 984 | /* Unserialize uep list. The first 4 bytes is the length of the |
| 985 | * entire uep in bytes minus the length of the strings within. |
| 986 | * -1 is a sentinel value meaning no more ueps.*/ |
| 987 | last_uep = NULL; |
| 988 | while ((uep_len = get4c(fp)) != -1) |
| 989 | { |
| 990 | uep = (u_entry_T *)U_ALLOC_LINE((unsigned)sizeof(u_entry_T)); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 991 | if (uep == NULL) |
Bram Moolenaar | 6a18eb6 | 2010-05-26 21:21:00 +0200 | [diff] [blame] | 992 | { |
| 993 | u_free_uhp(uhp); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 994 | goto error; |
Bram Moolenaar | 6a18eb6 | 2010-05-26 21:21:00 +0200 | [diff] [blame] | 995 | } |
Bram Moolenaar | 7db5fc8 | 2010-05-24 11:59:29 +0200 | [diff] [blame] | 996 | vim_memset(uep, 0, sizeof(u_entry_T)); |
Bram Moolenaar | 6a18eb6 | 2010-05-26 21:21:00 +0200 | [diff] [blame] | 997 | if (last_uep == NULL) |
| 998 | uhp->uh_entry = uep; |
| 999 | else |
| 1000 | last_uep->ue_next = uep; |
| 1001 | last_uep = uep; |
| 1002 | |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1003 | uep->ue_top = get4c(fp); |
| 1004 | uep->ue_bot = get4c(fp); |
| 1005 | uep->ue_lcount = get4c(fp); |
| 1006 | uep->ue_size = get4c(fp); |
| 1007 | uep->ue_next = NULL; |
| 1008 | array = (char_u **)U_ALLOC_LINE( |
| 1009 | (unsigned)(sizeof(char_u *) * uep->ue_size)); |
Bram Moolenaar | 6a18eb6 | 2010-05-26 21:21:00 +0200 | [diff] [blame] | 1010 | if (array == NULL) |
| 1011 | { |
| 1012 | u_free_uhp(uhp); |
| 1013 | goto error; |
| 1014 | } |
| 1015 | vim_memset(array, 0, sizeof(char_u *) * uep->ue_size); |
| 1016 | uep->ue_array = array; |
| 1017 | |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1018 | for (i = 0; i < uep->ue_size; i++) |
| 1019 | { |
| 1020 | line_len = get4c(fp); |
| 1021 | /* U_ALLOC_LINE provides an extra byte for the NUL terminator.*/ |
| 1022 | line = (char_u *)U_ALLOC_LINE( |
Bram Moolenaar | 6a18eb6 | 2010-05-26 21:21:00 +0200 | [diff] [blame] | 1023 | (unsigned)(sizeof(char_u) * line_len)); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1024 | if (line == NULL) |
Bram Moolenaar | 6a18eb6 | 2010-05-26 21:21:00 +0200 | [diff] [blame] | 1025 | { |
| 1026 | u_free_uhp(uhp); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1027 | goto error; |
Bram Moolenaar | 6a18eb6 | 2010-05-26 21:21:00 +0200 | [diff] [blame] | 1028 | } |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1029 | for (j = 0; j < line_len; j++) |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1030 | line[j] = getc(fp); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1031 | line[j] = '\0'; |
| 1032 | array[i] = line; |
| 1033 | } |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1034 | } |
| 1035 | |
| 1036 | /* Insertion sort the uhp into the table by its uh_seq. This is |
| 1037 | * required because, while the number of uhps is limited to |
Bram Moolenaar | 6a18eb6 | 2010-05-26 21:21:00 +0200 | [diff] [blame] | 1038 | * num_head, and the uh_seq order is monotonic with respect to |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1039 | * creation time, the starting uh_seq can be > 0 if any undolevel |
| 1040 | * culling was done at undofile write time, and there can be uh_seq |
| 1041 | * gaps in the uhps. |
| 1042 | */ |
| 1043 | for (i = num_read_uhps - 1; i >= -1; i--) |
| 1044 | { |
| 1045 | /* if i == -1, we've hit the leftmost side of the table, so insert |
| 1046 | * at uhp_table[0]. */ |
| 1047 | if (i == -1 || uhp->uh_seq > uhp_table[i]->uh_seq) |
| 1048 | { |
| 1049 | /* If we've had to move from the rightmost side of the table, |
| 1050 | * we have to shift everything to the right by one spot. */ |
Bram Moolenaar | 9d72807 | 2010-05-24 22:06:04 +0200 | [diff] [blame] | 1051 | if (num_read_uhps - i - 1 > 0) |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1052 | { |
| 1053 | memmove(uhp_table + i + 2, uhp_table + i + 1, |
Bram Moolenaar | 6a18eb6 | 2010-05-26 21:21:00 +0200 | [diff] [blame] | 1054 | (num_read_uhps - i - 1) * sizeof(u_header_T *)); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1055 | } |
| 1056 | uhp_table[i + 1] = uhp; |
| 1057 | break; |
| 1058 | } |
| 1059 | else if (uhp->uh_seq == uhp_table[i]->uh_seq) |
| 1060 | { |
| 1061 | EMSG2(_("E826 Undo file corruption: duplicate uh_seq: %s"), |
| 1062 | file_name); |
Bram Moolenaar | 6a18eb6 | 2010-05-26 21:21:00 +0200 | [diff] [blame] | 1063 | u_free_uhp(uhp); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1064 | goto error; |
| 1065 | } |
| 1066 | } |
| 1067 | num_read_uhps++; |
| 1068 | c = get2c(fp); |
| 1069 | } |
| 1070 | |
| 1071 | if (c != UF_END_MAGIC) |
| 1072 | { |
| 1073 | EMSG2(_("E827: Undo file corruption; no end marker: %s"), file_name); |
| 1074 | goto error; |
| 1075 | } |
| 1076 | |
| 1077 | /* We've organized all of the uhps into a table sorted by uh_seq. Now we |
| 1078 | * iterate through the table and swizzle each sequence number we've |
| 1079 | * stored in uh_foo into a pointer corresponding to the header with that |
| 1080 | * sequence number. Then free curbuf's old undo structure, give curbuf |
| 1081 | * the updated {old,new,cur}head pointers, and then free the table. */ |
| 1082 | for (i = 0; i < num_head; i++) |
| 1083 | { |
| 1084 | uhp = uhp_table[i]; |
| 1085 | if (uhp == NULL) |
| 1086 | continue; |
| 1087 | for (j = 0; j < num_head; j++) |
| 1088 | { |
| 1089 | if (uhp_table[j] == NULL) |
| 1090 | continue; |
| 1091 | if (uhp_table[j]->uh_seq == (long)uhp->uh_next) |
| 1092 | uhp->uh_next = uhp_table[j]; |
| 1093 | if (uhp_table[j]->uh_seq == (long)uhp->uh_prev) |
| 1094 | uhp->uh_prev = uhp_table[j]; |
| 1095 | if (uhp_table[j]->uh_seq == (long)uhp->uh_alt_next) |
| 1096 | uhp->uh_alt_next = uhp_table[j]; |
| 1097 | if (uhp_table[j]->uh_seq == (long)uhp->uh_alt_prev) |
| 1098 | uhp->uh_alt_prev = uhp_table[j]; |
| 1099 | } |
| 1100 | if (old_header_seq > 0 && old_idx < 0 && uhp->uh_seq == old_header_seq) |
| 1101 | old_idx = i; |
| 1102 | if (new_header_seq > 0 && new_idx < 0 && uhp->uh_seq == new_header_seq) |
| 1103 | new_idx = i; |
| 1104 | if (cur_header_seq > 0 && cur_idx < 0 && uhp->uh_seq == cur_header_seq) |
| 1105 | cur_idx = i; |
| 1106 | } |
| 1107 | u_blockfree(curbuf); |
| 1108 | curbuf->b_u_oldhead = old_idx < 0 ? 0 : uhp_table[old_idx]; |
| 1109 | curbuf->b_u_newhead = new_idx < 0 ? 0 : uhp_table[new_idx]; |
| 1110 | curbuf->b_u_curhead = cur_idx < 0 ? 0 : uhp_table[cur_idx]; |
| 1111 | curbuf->b_u_line_ptr = line_ptr; |
| 1112 | curbuf->b_u_line_lnum = line_lnum; |
| 1113 | curbuf->b_u_line_colnr = line_colnr; |
| 1114 | curbuf->b_u_numhead = num_head; |
| 1115 | curbuf->b_u_seq_last = seq_last; |
| 1116 | curbuf->b_u_seq_cur = seq_cur; |
| 1117 | curbuf->b_u_seq_time = seq_time; |
| 1118 | U_FREE_LINE(uhp_table); |
| 1119 | #ifdef U_DEBUG |
| 1120 | u_check(TRUE); |
| 1121 | #endif |
| 1122 | if (name != NULL) |
| 1123 | smsg((char_u *)_("Finished reading undo file %s"), file_name); |
| 1124 | goto theend; |
| 1125 | |
| 1126 | error: |
| 1127 | if (line_ptr != NULL) |
| 1128 | U_FREE_LINE(line_ptr); |
| 1129 | if (uhp_table != NULL) |
| 1130 | { |
| 1131 | for (i = 0; i < num_head; i++) |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1132 | if (uhp_table[i] != NULL) |
Bram Moolenaar | 6a18eb6 | 2010-05-26 21:21:00 +0200 | [diff] [blame] | 1133 | u_free_uhp(uhp_table[i]); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1134 | U_FREE_LINE(uhp_table); |
| 1135 | } |
| 1136 | |
| 1137 | theend: |
| 1138 | if (fp != NULL) |
| 1139 | fclose(fp); |
| 1140 | if (file_name != name) |
| 1141 | vim_free(file_name); |
| 1142 | return; |
| 1143 | } |
| 1144 | |
Bram Moolenaar | 6a18eb6 | 2010-05-26 21:21:00 +0200 | [diff] [blame] | 1145 | static void |
| 1146 | u_free_uhp(uhp) |
| 1147 | u_header_T *uhp; |
| 1148 | { |
| 1149 | u_entry_T *nuep; |
| 1150 | u_entry_T *uep; |
| 1151 | |
| 1152 | uep = uhp->uh_entry; |
| 1153 | while (uep != NULL) |
| 1154 | { |
| 1155 | nuep = uep->ue_next; |
| 1156 | u_freeentry(uep, uep->ue_size); |
| 1157 | uep = nuep; |
| 1158 | } |
| 1159 | U_FREE_LINE(uhp); |
| 1160 | } |
| 1161 | |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1162 | /* |
| 1163 | * Serialize "uep" to "fp". |
| 1164 | */ |
| 1165 | static int |
| 1166 | serialize_uep(uep, fp) |
| 1167 | u_entry_T *uep; |
| 1168 | FILE *fp; |
| 1169 | { |
| 1170 | int i; |
| 1171 | int uep_len; |
| 1172 | int *entry_lens; |
| 1173 | |
| 1174 | if (uep->ue_size > 0) |
| 1175 | entry_lens = (int *)alloc(uep->ue_size * sizeof(int)); |
Bram Moolenaar | 442b422 | 2010-05-24 21:34:22 +0200 | [diff] [blame] | 1176 | else |
| 1177 | entry_lens = NULL; |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1178 | |
| 1179 | /* Define uep_len to be the size of the entire uep minus the size of its |
| 1180 | * component strings, in bytes. The sizes of the component strings |
| 1181 | * are written before each individual string. |
| 1182 | * We have 4 entries each of 4 bytes, plus ue_size * 4 bytes |
| 1183 | * of string size information. */ |
| 1184 | |
| 1185 | uep_len = uep->ue_size * 4; |
| 1186 | /* Collect sizing information for later serialization. */ |
| 1187 | for (i = 0; i < uep->ue_size; i++) |
| 1188 | { |
| 1189 | entry_lens[i] = (int)STRLEN(uep->ue_array[i]); |
| 1190 | uep_len += entry_lens[i]; |
| 1191 | } |
| 1192 | put_bytes(fp, (long_u)uep_len, 4); |
| 1193 | put_bytes(fp, (long_u)uep->ue_top, 4); |
| 1194 | put_bytes(fp, (long_u)uep->ue_bot, 4); |
| 1195 | put_bytes(fp, (long_u)uep->ue_lcount, 4); |
| 1196 | put_bytes(fp, (long_u)uep->ue_size, 4); |
| 1197 | for (i = 0; i < uep->ue_size; i++) |
| 1198 | { |
| 1199 | if (put_bytes(fp, (long_u)entry_lens[i], 4) == FAIL) |
| 1200 | return FAIL; |
| 1201 | fprintf(fp, "%s", uep->ue_array[i]); |
| 1202 | } |
| 1203 | if (uep->ue_size > 0) |
| 1204 | vim_free(entry_lens); |
| 1205 | return OK; |
| 1206 | } |
| 1207 | |
| 1208 | /* |
| 1209 | * Serialize "pos" to "fp". |
| 1210 | */ |
| 1211 | static void |
| 1212 | serialize_pos(pos, fp) |
| 1213 | pos_T pos; |
| 1214 | FILE *fp; |
| 1215 | { |
| 1216 | put_bytes(fp, (long_u)pos.lnum, 4); |
| 1217 | put_bytes(fp, (long_u)pos.col, 4); |
| 1218 | #ifdef FEAT_VIRTUALEDIT |
| 1219 | put_bytes(fp, (long_u)pos.coladd, 4); |
| 1220 | #else |
| 1221 | put_bytes(fp, (long_u)0, 4); |
| 1222 | #endif |
| 1223 | } |
| 1224 | |
| 1225 | /* |
| 1226 | * Serialize "info" to "fp". |
| 1227 | */ |
| 1228 | static void |
| 1229 | serialize_visualinfo(info, fp) |
Bram Moolenaar | cdf0420 | 2010-05-29 15:11:47 +0200 | [diff] [blame^] | 1230 | visualinfo_T *info; |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1231 | FILE *fp; |
| 1232 | { |
Bram Moolenaar | cdf0420 | 2010-05-29 15:11:47 +0200 | [diff] [blame^] | 1233 | serialize_pos(info->vi_start, fp); |
| 1234 | serialize_pos(info->vi_end, fp); |
| 1235 | put_bytes(fp, (long_u)info->vi_mode, 4); |
| 1236 | put_bytes(fp, (long_u)info->vi_curswant, 4); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1237 | } |
| 1238 | |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1239 | /* |
| 1240 | * Write the undo tree in an undo file. |
| 1241 | * When "name" is not NULL, use it as the name of the undo file. |
| 1242 | * Otherwise use buf->b_ffname to generate the undo file name. |
| 1243 | * "buf" must never be null, buf->b_ffname is used to obtain the original file |
| 1244 | * permissions. |
| 1245 | * "forceit" is TRUE for ":wundo!", FALSE otherwise. |
| 1246 | * "hash[UNDO_HASH_SIZE]" must be the hash value of the buffer text. |
| 1247 | */ |
| 1248 | void |
| 1249 | u_write_undo(name, forceit, buf, hash) |
| 1250 | char_u *name; |
| 1251 | int forceit; |
| 1252 | buf_T *buf; |
| 1253 | char_u *hash; |
| 1254 | { |
| 1255 | u_header_T *uhp; |
| 1256 | u_entry_T *uep; |
| 1257 | char_u *file_name; |
| 1258 | int str_len, i, uep_len, mark; |
| 1259 | int fd; |
| 1260 | FILE *fp = NULL; |
| 1261 | int perm; |
| 1262 | int write_ok = FALSE; |
| 1263 | #ifdef UNIX |
Bram Moolenaar | 6a244fe | 2010-05-24 22:02:24 +0200 | [diff] [blame] | 1264 | int st_old_valid = FALSE; |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1265 | struct stat st_old; |
| 1266 | struct stat st_new; |
| 1267 | #endif |
| 1268 | |
| 1269 | if (name == NULL) |
| 1270 | { |
| 1271 | file_name = u_get_undo_file_name(buf->b_ffname, FALSE); |
| 1272 | if (file_name == NULL) |
| 1273 | return; |
| 1274 | } |
| 1275 | else |
| 1276 | file_name = name; |
| 1277 | |
Bram Moolenaar | 6a244fe | 2010-05-24 22:02:24 +0200 | [diff] [blame] | 1278 | if (buf->b_ffname == NULL) |
| 1279 | perm = 0600; |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1280 | else |
Bram Moolenaar | 6a244fe | 2010-05-24 22:02:24 +0200 | [diff] [blame] | 1281 | { |
| 1282 | #ifdef UNIX |
| 1283 | if (mch_stat((char *)buf->b_ffname, &st_old) >= 0) |
| 1284 | { |
| 1285 | perm = st_old.st_mode; |
| 1286 | st_old_valid = TRUE; |
| 1287 | } |
| 1288 | else |
| 1289 | perm = 0600; |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1290 | #else |
Bram Moolenaar | 6a244fe | 2010-05-24 22:02:24 +0200 | [diff] [blame] | 1291 | perm = mch_getperm(buf->b_ffname); |
| 1292 | if (perm < 0) |
| 1293 | perm = 0600; |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1294 | #endif |
Bram Moolenaar | 6a244fe | 2010-05-24 22:02:24 +0200 | [diff] [blame] | 1295 | } |
| 1296 | |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1297 | /* set file protection same as original file, but strip s-bit */ |
| 1298 | perm = perm & 0777; |
| 1299 | |
| 1300 | /* If the undo file exists, verify that it actually is an undo file, and |
| 1301 | * delete it. */ |
| 1302 | if (mch_getperm(file_name) >= 0) |
| 1303 | { |
| 1304 | if (name == NULL || !forceit) |
| 1305 | { |
| 1306 | /* Check we can read it and it's an undo file. */ |
| 1307 | fd = mch_open((char *)file_name, O_RDONLY|O_EXTRA, 0); |
| 1308 | if (fd < 0) |
| 1309 | { |
| 1310 | if (name != NULL || p_verbose > 0) |
| 1311 | smsg((char_u *)_("Will not overwrite with undo file, cannot read: %s"), |
| 1312 | file_name); |
| 1313 | goto theend; |
| 1314 | } |
| 1315 | else |
| 1316 | { |
Bram Moolenaar | 83ad014 | 2010-05-25 22:09:21 +0200 | [diff] [blame] | 1317 | char_u buf[2]; |
| 1318 | int len; |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1319 | |
Bram Moolenaar | 83ad014 | 2010-05-25 22:09:21 +0200 | [diff] [blame] | 1320 | len = vim_read(fd, buf, 2); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1321 | close(fd); |
Bram Moolenaar | 83ad014 | 2010-05-25 22:09:21 +0200 | [diff] [blame] | 1322 | if (len < 2 || (buf[0] << 8) + buf[1] != UF_START_MAGIC) |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1323 | { |
| 1324 | if (name != NULL || p_verbose > 0) |
| 1325 | smsg((char_u *)_("Will not overwrite, this is not an undo file: %s"), |
| 1326 | file_name); |
| 1327 | goto theend; |
| 1328 | } |
| 1329 | } |
| 1330 | } |
| 1331 | mch_remove(file_name); |
| 1332 | } |
| 1333 | |
| 1334 | fd = mch_open((char *)file_name, |
| 1335 | O_CREAT|O_EXTRA|O_WRONLY|O_EXCL|O_NOFOLLOW, perm); |
| 1336 | (void)mch_setperm(file_name, perm); |
| 1337 | if (fd < 0) |
| 1338 | { |
| 1339 | EMSG2(_(e_not_open), file_name); |
| 1340 | goto theend; |
| 1341 | } |
| 1342 | if (p_verbose > 0) |
| 1343 | smsg((char_u *)_("Writing undo file: %s"), file_name); |
| 1344 | |
| 1345 | #ifdef UNIX |
| 1346 | /* |
| 1347 | * Try to set the group of the undo file same as the original file. If |
| 1348 | * this fails, set the protection bits for the group same as the |
| 1349 | * protection bits for others. |
| 1350 | */ |
Bram Moolenaar | 6a244fe | 2010-05-24 22:02:24 +0200 | [diff] [blame] | 1351 | if (st_old_valid && (mch_stat((char *)file_name, &st_new) >= 0 |
| 1352 | && st_new.st_gid != st_old.st_gid |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1353 | # ifdef HAVE_FCHOWN /* sequent-ptx lacks fchown() */ |
Bram Moolenaar | 6a244fe | 2010-05-24 22:02:24 +0200 | [diff] [blame] | 1354 | && fchown(fd, (uid_t)-1, st_old.st_gid) != 0) |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1355 | # endif |
| 1356 | ) |
| 1357 | mch_setperm(file_name, (perm & 0707) | ((perm & 07) << 3)); |
| 1358 | # ifdef HAVE_SELINUX |
Bram Moolenaar | 6a244fe | 2010-05-24 22:02:24 +0200 | [diff] [blame] | 1359 | if (buf->b_ffname != NULL) |
| 1360 | mch_copy_sec(buf->b_ffname, file_name); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1361 | # endif |
| 1362 | #endif |
| 1363 | |
| 1364 | fp = fdopen(fd, "w"); |
| 1365 | if (fp == NULL) |
| 1366 | { |
| 1367 | EMSG2(_(e_not_open), file_name); |
| 1368 | close(fd); |
| 1369 | mch_remove(file_name); |
| 1370 | goto theend; |
| 1371 | } |
| 1372 | |
| 1373 | /* Start writing, first overall file information */ |
| 1374 | put_bytes(fp, (long_u)UF_START_MAGIC, 2); |
| 1375 | put_bytes(fp, (long_u)UF_VERSION, 2); |
| 1376 | |
| 1377 | /* Write a hash of the buffer text, so that we can verify it is still the |
| 1378 | * same when reading the buffer text. */ |
| 1379 | if (fwrite(hash, (size_t)UNDO_HASH_SIZE, (size_t)1, fp) != 1) |
| 1380 | goto write_error; |
| 1381 | put_bytes(fp, (long_u)buf->b_ml.ml_line_count, 4); |
| 1382 | |
| 1383 | /* Begin undo data for U */ |
Bram Moolenaar | 442b422 | 2010-05-24 21:34:22 +0200 | [diff] [blame] | 1384 | str_len = buf->b_u_line_ptr != NULL ? (int)STRLEN(buf->b_u_line_ptr) : 0; |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1385 | put_bytes(fp, (long_u)str_len, 4); |
| 1386 | if (str_len > 0 && fwrite(buf->b_u_line_ptr, (size_t)str_len, |
| 1387 | (size_t)1, fp) != 1) |
| 1388 | goto write_error; |
| 1389 | |
| 1390 | put_bytes(fp, (long_u)buf->b_u_line_lnum, 4); |
| 1391 | put_bytes(fp, (long_u)buf->b_u_line_colnr, 4); |
| 1392 | |
| 1393 | /* Begin general undo data */ |
| 1394 | uhp = buf->b_u_oldhead; |
| 1395 | put_bytes(fp, (long_u)(uhp != NULL ? uhp->uh_seq : 0), 4); |
| 1396 | |
| 1397 | uhp = buf->b_u_newhead; |
| 1398 | put_bytes(fp, (long_u)(uhp != NULL ? uhp->uh_seq : 0), 4); |
| 1399 | |
| 1400 | uhp = buf->b_u_curhead; |
| 1401 | put_bytes(fp, (long_u)(uhp != NULL ? uhp->uh_seq : 0), 4); |
| 1402 | |
| 1403 | put_bytes(fp, (long_u)buf->b_u_numhead, 4); |
| 1404 | put_bytes(fp, (long_u)buf->b_u_seq_last, 4); |
| 1405 | put_bytes(fp, (long_u)buf->b_u_seq_cur, 4); |
Bram Moolenaar | cdf0420 | 2010-05-29 15:11:47 +0200 | [diff] [blame^] | 1406 | put_time(fp, buf->b_u_seq_time); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1407 | |
| 1408 | /* Iteratively serialize UHPs and their UEPs from the top down. */ |
| 1409 | mark = ++lastmark; |
| 1410 | uhp = buf->b_u_oldhead; |
| 1411 | while (uhp != NULL) |
| 1412 | { |
| 1413 | /* Serialize current UHP if we haven't seen it */ |
| 1414 | if (uhp->uh_walk != mark) |
| 1415 | { |
| 1416 | if (put_bytes(fp, (long_u)UF_HEADER_MAGIC, 2) == FAIL) |
| 1417 | goto write_error; |
| 1418 | |
| 1419 | put_bytes(fp, (long_u)((uhp->uh_next != NULL) |
| 1420 | ? uhp->uh_next->uh_seq : 0), 4); |
| 1421 | put_bytes(fp, (long_u)((uhp->uh_prev != NULL) |
| 1422 | ? uhp->uh_prev->uh_seq : 0), 4); |
| 1423 | put_bytes(fp, (long_u)((uhp->uh_alt_next != NULL) |
| 1424 | ? uhp->uh_alt_next->uh_seq : 0), 4); |
| 1425 | put_bytes(fp, (long_u)((uhp->uh_alt_prev != NULL) |
| 1426 | ? uhp->uh_alt_prev->uh_seq : 0), 4); |
| 1427 | put_bytes(fp, uhp->uh_seq, 4); |
| 1428 | serialize_pos(uhp->uh_cursor, fp); |
| 1429 | #ifdef FEAT_VIRTUALEDIT |
| 1430 | put_bytes(fp, (long_u)uhp->uh_cursor_vcol, 4); |
| 1431 | #else |
| 1432 | put_bytes(fp, (long_u)0, 4); |
| 1433 | #endif |
| 1434 | put_bytes(fp, (long_u)uhp->uh_flags, 2); |
| 1435 | /* Assume NMARKS will stay the same. */ |
| 1436 | for (i = 0; i < NMARKS; ++i) |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1437 | serialize_pos(uhp->uh_namedm[i], fp); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1438 | #ifdef FEAT_VISUAL |
Bram Moolenaar | cdf0420 | 2010-05-29 15:11:47 +0200 | [diff] [blame^] | 1439 | serialize_visualinfo(&uhp->uh_visual, fp); |
| 1440 | #else |
| 1441 | { |
| 1442 | visualinfo_T info; |
| 1443 | |
| 1444 | memset(&info, 0, sizeof(visualinfo_T)); |
| 1445 | serialize_visualinfo(&info, fp); |
| 1446 | } |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1447 | #endif |
Bram Moolenaar | cdf0420 | 2010-05-29 15:11:47 +0200 | [diff] [blame^] | 1448 | put_time(fp, uhp->uh_time); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1449 | |
| 1450 | uep = uhp->uh_entry; |
| 1451 | while (uep != NULL) |
| 1452 | { |
| 1453 | if (serialize_uep(uep, fp) == FAIL) |
| 1454 | goto write_error; |
| 1455 | uep = uep->ue_next; |
| 1456 | } |
| 1457 | /* Sentinel value: no more ueps */ |
| 1458 | uep_len = -1; |
| 1459 | put_bytes(fp, (long_u)uep_len, 4); |
| 1460 | uhp->uh_walk = mark; |
| 1461 | } |
| 1462 | |
| 1463 | /* Now walk through the tree - algorithm from undo_time */ |
| 1464 | if (uhp->uh_prev != NULL && uhp->uh_prev->uh_walk != mark) |
| 1465 | uhp = uhp->uh_prev; |
| 1466 | else if (uhp->uh_alt_next != NULL && uhp->uh_alt_next->uh_walk != mark) |
| 1467 | uhp = uhp->uh_alt_next; |
| 1468 | else if (uhp->uh_next != NULL && uhp->uh_alt_prev == NULL |
| 1469 | && uhp->uh_next->uh_walk != mark) |
| 1470 | uhp = uhp->uh_next; |
| 1471 | else if (uhp->uh_alt_prev != NULL) |
| 1472 | uhp = uhp->uh_alt_prev; |
| 1473 | else |
| 1474 | uhp = uhp->uh_next; |
| 1475 | } |
| 1476 | |
| 1477 | if (put_bytes(fp, (long_u)UF_END_MAGIC, 2) == OK) |
| 1478 | write_ok = TRUE; |
| 1479 | |
| 1480 | write_error: |
| 1481 | fclose(fp); |
| 1482 | if (!write_ok) |
| 1483 | EMSG2(_("E829: write error in undo file: %s"), file_name); |
| 1484 | |
| 1485 | #if defined(MACOS_CLASSIC) || defined(WIN3264) |
Bram Moolenaar | 6a244fe | 2010-05-24 22:02:24 +0200 | [diff] [blame] | 1486 | if (buf->b_ffname != NULL) |
| 1487 | (void)mch_copy_file_attribute(buf->b_ffname, file_name); |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1488 | #endif |
| 1489 | #ifdef HAVE_ACL |
Bram Moolenaar | 6a244fe | 2010-05-24 22:02:24 +0200 | [diff] [blame] | 1490 | if (buf->b_ffname != NULL) |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1491 | { |
| 1492 | vim_acl_T acl; |
| 1493 | |
| 1494 | /* For systems that support ACL: get the ACL from the original file. */ |
| 1495 | acl = mch_get_acl(buf->b_ffname); |
| 1496 | mch_set_acl(file_name, acl); |
| 1497 | } |
| 1498 | #endif |
| 1499 | |
| 1500 | theend: |
| 1501 | if (file_name != name) |
| 1502 | vim_free(file_name); |
| 1503 | } |
| 1504 | |
| 1505 | #endif /* FEAT_PERSISTENT_UNDO */ |
| 1506 | |
| 1507 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1508 | /* |
| 1509 | * If 'cpoptions' contains 'u': Undo the previous undo or redo (vi compatible). |
| 1510 | * If 'cpoptions' does not contain 'u': Always undo. |
| 1511 | */ |
| 1512 | void |
| 1513 | u_undo(count) |
| 1514 | int count; |
| 1515 | { |
| 1516 | /* |
| 1517 | * If we get an undo command while executing a macro, we behave like the |
| 1518 | * original vi. If this happens twice in one macro the result will not |
| 1519 | * be compatible. |
| 1520 | */ |
| 1521 | if (curbuf->b_u_synced == FALSE) |
| 1522 | { |
Bram Moolenaar | 779b74b | 2006-04-10 14:55:34 +0000 | [diff] [blame] | 1523 | u_sync(TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1524 | count = 1; |
| 1525 | } |
| 1526 | |
| 1527 | if (vim_strchr(p_cpo, CPO_UNDO) == NULL) |
| 1528 | undo_undoes = TRUE; |
| 1529 | else |
| 1530 | undo_undoes = !undo_undoes; |
| 1531 | u_doit(count); |
| 1532 | } |
| 1533 | |
| 1534 | /* |
| 1535 | * If 'cpoptions' contains 'u': Repeat the previous undo or redo. |
| 1536 | * If 'cpoptions' does not contain 'u': Always redo. |
| 1537 | */ |
| 1538 | void |
| 1539 | u_redo(count) |
| 1540 | int count; |
| 1541 | { |
| 1542 | if (vim_strchr(p_cpo, CPO_UNDO) == NULL) |
| 1543 | undo_undoes = FALSE; |
| 1544 | u_doit(count); |
| 1545 | } |
| 1546 | |
| 1547 | /* |
| 1548 | * Undo or redo, depending on 'undo_undoes', 'count' times. |
| 1549 | */ |
| 1550 | static void |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1551 | u_doit(startcount) |
| 1552 | int startcount; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1553 | { |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1554 | int count = startcount; |
| 1555 | |
Bram Moolenaar | 8ada17c | 2006-01-19 22:16:24 +0000 | [diff] [blame] | 1556 | if (!undo_allowed()) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1557 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1558 | |
| 1559 | u_newcount = 0; |
| 1560 | u_oldcount = 0; |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1561 | if (curbuf->b_ml.ml_flags & ML_EMPTY) |
| 1562 | u_oldcount = -1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1563 | while (count--) |
| 1564 | { |
| 1565 | if (undo_undoes) |
| 1566 | { |
| 1567 | if (curbuf->b_u_curhead == NULL) /* first undo */ |
| 1568 | curbuf->b_u_curhead = curbuf->b_u_newhead; |
| 1569 | else if (p_ul > 0) /* multi level undo */ |
| 1570 | /* get next undo */ |
| 1571 | curbuf->b_u_curhead = curbuf->b_u_curhead->uh_next; |
| 1572 | /* nothing to undo */ |
| 1573 | if (curbuf->b_u_numhead == 0 || curbuf->b_u_curhead == NULL) |
| 1574 | { |
| 1575 | /* stick curbuf->b_u_curhead at end */ |
| 1576 | curbuf->b_u_curhead = curbuf->b_u_oldhead; |
| 1577 | beep_flush(); |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1578 | if (count == startcount - 1) |
| 1579 | { |
| 1580 | MSG(_("Already at oldest change")); |
| 1581 | return; |
| 1582 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1583 | break; |
| 1584 | } |
| 1585 | |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1586 | u_undoredo(TRUE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1587 | } |
| 1588 | else |
| 1589 | { |
| 1590 | if (curbuf->b_u_curhead == NULL || p_ul <= 0) |
| 1591 | { |
| 1592 | beep_flush(); /* nothing to redo */ |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1593 | if (count == startcount - 1) |
| 1594 | { |
| 1595 | MSG(_("Already at newest change")); |
| 1596 | return; |
| 1597 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1598 | break; |
| 1599 | } |
| 1600 | |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1601 | u_undoredo(FALSE); |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1602 | |
| 1603 | /* Advance for next redo. Set "newhead" when at the end of the |
| 1604 | * redoable changes. */ |
| 1605 | if (curbuf->b_u_curhead->uh_prev == NULL) |
| 1606 | curbuf->b_u_newhead = curbuf->b_u_curhead; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1607 | curbuf->b_u_curhead = curbuf->b_u_curhead->uh_prev; |
| 1608 | } |
| 1609 | } |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 1610 | u_undo_end(undo_undoes, FALSE); |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1611 | } |
| 1612 | |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1613 | /* |
| 1614 | * Undo or redo over the timeline. |
| 1615 | * When "step" is negative go back in time, otherwise goes forward in time. |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1616 | * When "sec" is FALSE make "step" steps, when "sec" is TRUE use "step" as |
| 1617 | * seconds. |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1618 | * When "absolute" is TRUE use "step" as the sequence number to jump to. |
| 1619 | * "sec" must be FALSE then. |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1620 | */ |
| 1621 | void |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1622 | undo_time(step, sec, absolute) |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1623 | long step; |
| 1624 | int sec; |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1625 | int absolute; |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1626 | { |
| 1627 | long target; |
| 1628 | long closest; |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1629 | long closest_start; |
| 1630 | long closest_seq = 0; |
| 1631 | long val; |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1632 | u_header_T *uhp; |
| 1633 | u_header_T *last; |
| 1634 | int mark; |
| 1635 | int nomark; |
| 1636 | int round; |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1637 | int dosec = sec; |
| 1638 | int above = FALSE; |
Bram Moolenaar | 433f7c8 | 2006-03-21 21:29:36 +0000 | [diff] [blame] | 1639 | int did_undo = TRUE; |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1640 | |
Bram Moolenaar | 7d47b6e | 2006-03-15 22:59:18 +0000 | [diff] [blame] | 1641 | /* First make sure the current undoable change is synced. */ |
| 1642 | if (curbuf->b_u_synced == FALSE) |
Bram Moolenaar | 779b74b | 2006-04-10 14:55:34 +0000 | [diff] [blame] | 1643 | u_sync(TRUE); |
Bram Moolenaar | 7d47b6e | 2006-03-15 22:59:18 +0000 | [diff] [blame] | 1644 | |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1645 | u_newcount = 0; |
| 1646 | u_oldcount = 0; |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 1647 | if (curbuf->b_ml.ml_flags & ML_EMPTY) |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1648 | u_oldcount = -1; |
| 1649 | |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1650 | /* "target" is the node below which we want to be. |
| 1651 | * Init "closest" to a value we can't reach. */ |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1652 | if (absolute) |
| 1653 | { |
| 1654 | target = step; |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1655 | closest = -1; |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1656 | } |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1657 | else |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1658 | { |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1659 | /* When doing computations with time_t subtract starttime, because |
| 1660 | * time_t converted to a long may result in a wrong number. */ |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1661 | if (sec) |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1662 | target = (long)(curbuf->b_u_seq_time - starttime) + step; |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1663 | else |
| 1664 | target = curbuf->b_u_seq_cur + step; |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1665 | if (step < 0) |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1666 | { |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1667 | if (target < 0) |
| 1668 | target = 0; |
| 1669 | closest = -1; |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1670 | } |
| 1671 | else |
| 1672 | { |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1673 | if (sec) |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 1674 | closest = (long)(time(NULL) - starttime + 1); |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1675 | else |
| 1676 | closest = curbuf->b_u_seq_last + 2; |
| 1677 | if (target >= closest) |
| 1678 | target = closest - 1; |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1679 | } |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1680 | } |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1681 | closest_start = closest; |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1682 | closest_seq = curbuf->b_u_seq_cur; |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1683 | |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1684 | /* |
| 1685 | * May do this twice: |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1686 | * 1. Search for "target", update "closest" to the best match found. |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1687 | * 2. If "target" not found search for "closest". |
| 1688 | * |
| 1689 | * When using the closest time we use the sequence number in the second |
| 1690 | * round, because there may be several entries with the same time. |
| 1691 | */ |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1692 | for (round = 1; round <= 2; ++round) |
| 1693 | { |
| 1694 | /* Find the path from the current state to where we want to go. The |
| 1695 | * desired state can be anywhere in the undo tree, need to go all over |
| 1696 | * it. We put "nomark" in uh_walk where we have been without success, |
| 1697 | * "mark" where it could possibly be. */ |
| 1698 | mark = ++lastmark; |
| 1699 | nomark = ++lastmark; |
| 1700 | |
| 1701 | if (curbuf->b_u_curhead == NULL) /* at leaf of the tree */ |
| 1702 | uhp = curbuf->b_u_newhead; |
| 1703 | else |
| 1704 | uhp = curbuf->b_u_curhead; |
| 1705 | |
| 1706 | while (uhp != NULL) |
| 1707 | { |
| 1708 | uhp->uh_walk = mark; |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 1709 | val = (long)(dosec ? (uhp->uh_time - starttime) : uhp->uh_seq); |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1710 | |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1711 | if (round == 1) |
| 1712 | { |
| 1713 | /* Remember the header that is closest to the target. |
| 1714 | * It must be at least in the right direction (checked with |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1715 | * "b_u_seq_cur"). When the timestamp is equal find the |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1716 | * highest/lowest sequence number. */ |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1717 | if ((step < 0 ? uhp->uh_seq <= curbuf->b_u_seq_cur |
| 1718 | : uhp->uh_seq > curbuf->b_u_seq_cur) |
| 1719 | && ((dosec && val == closest) |
| 1720 | ? (step < 0 |
| 1721 | ? uhp->uh_seq < closest_seq |
| 1722 | : uhp->uh_seq > closest_seq) |
| 1723 | : closest == closest_start |
| 1724 | || (val > target |
| 1725 | ? (closest > target |
| 1726 | ? val - target <= closest - target |
| 1727 | : val - target <= target - closest) |
| 1728 | : (closest > target |
| 1729 | ? target - val <= closest - target |
| 1730 | : target - val <= target - closest)))) |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1731 | { |
| 1732 | closest = val; |
| 1733 | closest_seq = uhp->uh_seq; |
| 1734 | } |
| 1735 | } |
| 1736 | |
| 1737 | /* Quit searching when we found a match. But when searching for a |
| 1738 | * time we need to continue looking for the best uh_seq. */ |
| 1739 | if (target == val && !dosec) |
| 1740 | break; |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1741 | |
| 1742 | /* go down in the tree if we haven't been there */ |
| 1743 | if (uhp->uh_prev != NULL && uhp->uh_prev->uh_walk != nomark |
| 1744 | && uhp->uh_prev->uh_walk != mark) |
| 1745 | uhp = uhp->uh_prev; |
| 1746 | |
| 1747 | /* go to alternate branch if we haven't been there */ |
| 1748 | else if (uhp->uh_alt_next != NULL |
| 1749 | && uhp->uh_alt_next->uh_walk != nomark |
| 1750 | && uhp->uh_alt_next->uh_walk != mark) |
| 1751 | uhp = uhp->uh_alt_next; |
| 1752 | |
| 1753 | /* go up in the tree if we haven't been there and we are at the |
| 1754 | * start of alternate branches */ |
| 1755 | else if (uhp->uh_next != NULL && uhp->uh_alt_prev == NULL |
| 1756 | && uhp->uh_next->uh_walk != nomark |
| 1757 | && uhp->uh_next->uh_walk != mark) |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 1758 | { |
| 1759 | /* If still at the start we don't go through this change. */ |
| 1760 | if (uhp == curbuf->b_u_curhead) |
| 1761 | uhp->uh_walk = nomark; |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1762 | uhp = uhp->uh_next; |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 1763 | } |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1764 | |
| 1765 | else |
| 1766 | { |
| 1767 | /* need to backtrack; mark this node as useless */ |
| 1768 | uhp->uh_walk = nomark; |
| 1769 | if (uhp->uh_alt_prev != NULL) |
| 1770 | uhp = uhp->uh_alt_prev; |
| 1771 | else |
| 1772 | uhp = uhp->uh_next; |
| 1773 | } |
| 1774 | } |
| 1775 | |
| 1776 | if (uhp != NULL) /* found it */ |
| 1777 | break; |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1778 | |
| 1779 | if (absolute) |
| 1780 | { |
Bram Moolenaar | 55debbe | 2010-05-23 23:34:36 +0200 | [diff] [blame] | 1781 | EMSGN(_("E830: Undo number %ld not found"), step); |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 1782 | return; |
| 1783 | } |
| 1784 | |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1785 | if (closest == closest_start) |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1786 | { |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1787 | if (step < 0) |
| 1788 | MSG(_("Already at oldest change")); |
| 1789 | else |
| 1790 | MSG(_("Already at newest change")); |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1791 | return; |
| 1792 | } |
| 1793 | |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1794 | target = closest_seq; |
| 1795 | dosec = FALSE; |
| 1796 | if (step < 0) |
| 1797 | above = TRUE; /* stop above the header */ |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1798 | } |
| 1799 | |
| 1800 | /* If we found it: Follow the path to go to where we want to be. */ |
| 1801 | if (uhp != NULL) |
| 1802 | { |
| 1803 | /* |
| 1804 | * First go up the tree as much as needed. |
| 1805 | */ |
| 1806 | for (;;) |
| 1807 | { |
| 1808 | uhp = curbuf->b_u_curhead; |
| 1809 | if (uhp == NULL) |
| 1810 | uhp = curbuf->b_u_newhead; |
| 1811 | else |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1812 | uhp = uhp->uh_next; |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1813 | if (uhp == NULL || uhp->uh_walk != mark |
| 1814 | || (uhp->uh_seq == target && !above)) |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1815 | break; |
| 1816 | curbuf->b_u_curhead = uhp; |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1817 | u_undoredo(TRUE); |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1818 | uhp->uh_walk = nomark; /* don't go back down here */ |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1819 | } |
| 1820 | |
| 1821 | /* |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1822 | * And now go down the tree (redo), branching off where needed. |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1823 | */ |
| 1824 | uhp = curbuf->b_u_curhead; |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1825 | while (uhp != NULL) |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1826 | { |
Bram Moolenaar | 89ed3df | 2007-01-09 19:23:12 +0000 | [diff] [blame] | 1827 | /* Go back to the first branch with a mark. */ |
| 1828 | while (uhp->uh_alt_prev != NULL |
| 1829 | && uhp->uh_alt_prev->uh_walk == mark) |
| 1830 | uhp = uhp->uh_alt_prev; |
| 1831 | |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1832 | /* Find the last branch with a mark, that's the one. */ |
| 1833 | last = uhp; |
| 1834 | while (last->uh_alt_next != NULL |
| 1835 | && last->uh_alt_next->uh_walk == mark) |
| 1836 | last = last->uh_alt_next; |
| 1837 | if (last != uhp) |
| 1838 | { |
| 1839 | /* Make the used branch the first entry in the list of |
| 1840 | * alternatives to make "u" and CTRL-R take this branch. */ |
Bram Moolenaar | 89ed3df | 2007-01-09 19:23:12 +0000 | [diff] [blame] | 1841 | while (uhp->uh_alt_prev != NULL) |
| 1842 | uhp = uhp->uh_alt_prev; |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1843 | if (last->uh_alt_next != NULL) |
| 1844 | last->uh_alt_next->uh_alt_prev = last->uh_alt_prev; |
| 1845 | last->uh_alt_prev->uh_alt_next = last->uh_alt_next; |
| 1846 | last->uh_alt_prev = NULL; |
| 1847 | last->uh_alt_next = uhp; |
| 1848 | uhp->uh_alt_prev = last; |
| 1849 | |
| 1850 | uhp = last; |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1851 | if (uhp->uh_next != NULL) |
| 1852 | uhp->uh_next->uh_prev = uhp; |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1853 | } |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1854 | curbuf->b_u_curhead = uhp; |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1855 | |
| 1856 | if (uhp->uh_walk != mark) |
| 1857 | break; /* must have reached the target */ |
| 1858 | |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1859 | /* Stop when going backwards in time and didn't find the exact |
| 1860 | * header we were looking for. */ |
| 1861 | if (uhp->uh_seq == target && above) |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 1862 | { |
| 1863 | curbuf->b_u_seq_cur = target - 1; |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1864 | break; |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 1865 | } |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1866 | |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1867 | u_undoredo(FALSE); |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1868 | |
| 1869 | /* Advance "curhead" to below the header we last used. If it |
| 1870 | * becomes NULL then we need to set "newhead" to this leaf. */ |
| 1871 | if (uhp->uh_prev == NULL) |
| 1872 | curbuf->b_u_newhead = uhp; |
| 1873 | curbuf->b_u_curhead = uhp->uh_prev; |
Bram Moolenaar | 433f7c8 | 2006-03-21 21:29:36 +0000 | [diff] [blame] | 1874 | did_undo = FALSE; |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1875 | |
| 1876 | if (uhp->uh_seq == target) /* found it! */ |
| 1877 | break; |
| 1878 | |
| 1879 | uhp = uhp->uh_prev; |
| 1880 | if (uhp == NULL || uhp->uh_walk != mark) |
| 1881 | { |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1882 | /* Need to redo more but can't find it... */ |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 1883 | EMSG2(_(e_intern2), "undo_time()"); |
| 1884 | break; |
| 1885 | } |
| 1886 | } |
| 1887 | } |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 1888 | u_undo_end(did_undo, absolute); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1889 | } |
| 1890 | |
| 1891 | /* |
| 1892 | * u_undoredo: common code for undo and redo |
| 1893 | * |
| 1894 | * The lines in the file are replaced by the lines in the entry list at |
| 1895 | * curbuf->b_u_curhead. The replaced lines in the file are saved in the entry |
| 1896 | * list for the next undo/redo. |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1897 | * |
| 1898 | * When "undo" is TRUE we go up in the tree, when FALSE we go down. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1899 | */ |
| 1900 | static void |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 1901 | u_undoredo(undo) |
| 1902 | int undo; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1903 | { |
| 1904 | char_u **newarray = NULL; |
| 1905 | linenr_T oldsize; |
| 1906 | linenr_T newsize; |
| 1907 | linenr_T top, bot; |
| 1908 | linenr_T lnum; |
| 1909 | linenr_T newlnum = MAXLNUM; |
| 1910 | long i; |
| 1911 | u_entry_T *uep, *nuep; |
| 1912 | u_entry_T *newlist = NULL; |
| 1913 | int old_flags; |
| 1914 | int new_flags; |
| 1915 | pos_T namedm[NMARKS]; |
Bram Moolenaar | a23ccb8 | 2006-02-27 00:08:02 +0000 | [diff] [blame] | 1916 | #ifdef FEAT_VISUAL |
| 1917 | visualinfo_T visualinfo; |
| 1918 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1919 | int empty_buffer; /* buffer became empty */ |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1920 | u_header_T *curhead = curbuf->b_u_curhead; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1921 | |
Bram Moolenaar | fecb660 | 2007-10-01 20:54:15 +0000 | [diff] [blame] | 1922 | #ifdef U_DEBUG |
| 1923 | u_check(FALSE); |
| 1924 | #endif |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1925 | old_flags = curhead->uh_flags; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1926 | new_flags = (curbuf->b_changed ? UH_CHANGED : 0) + |
| 1927 | ((curbuf->b_ml.ml_flags & ML_EMPTY) ? UH_EMPTYBUF : 0); |
| 1928 | setpcmark(); |
| 1929 | |
| 1930 | /* |
| 1931 | * save marks before undo/redo |
| 1932 | */ |
| 1933 | mch_memmove(namedm, curbuf->b_namedm, sizeof(pos_T) * NMARKS); |
Bram Moolenaar | a23ccb8 | 2006-02-27 00:08:02 +0000 | [diff] [blame] | 1934 | #ifdef FEAT_VISUAL |
| 1935 | visualinfo = curbuf->b_visual; |
| 1936 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1937 | curbuf->b_op_start.lnum = curbuf->b_ml.ml_line_count; |
| 1938 | curbuf->b_op_start.col = 0; |
| 1939 | curbuf->b_op_end.lnum = 0; |
| 1940 | curbuf->b_op_end.col = 0; |
| 1941 | |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1942 | for (uep = curhead->uh_entry; uep != NULL; uep = nuep) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1943 | { |
| 1944 | top = uep->ue_top; |
| 1945 | bot = uep->ue_bot; |
| 1946 | if (bot == 0) |
| 1947 | bot = curbuf->b_ml.ml_line_count + 1; |
| 1948 | if (top > curbuf->b_ml.ml_line_count || top >= bot |
| 1949 | || bot > curbuf->b_ml.ml_line_count + 1) |
| 1950 | { |
| 1951 | EMSG(_("E438: u_undo: line numbers wrong")); |
| 1952 | changed(); /* don't want UNCHANGED now */ |
| 1953 | return; |
| 1954 | } |
| 1955 | |
| 1956 | oldsize = bot - top - 1; /* number of lines before undo */ |
| 1957 | newsize = uep->ue_size; /* number of lines after undo */ |
| 1958 | |
| 1959 | if (top < newlnum) |
| 1960 | { |
| 1961 | /* If the saved cursor is somewhere in this undo block, move it to |
| 1962 | * the remembered position. Makes "gwap" put the cursor back |
| 1963 | * where it was. */ |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1964 | lnum = curhead->uh_cursor.lnum; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1965 | if (lnum >= top && lnum <= top + newsize + 1) |
| 1966 | { |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1967 | curwin->w_cursor = curhead->uh_cursor; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1968 | newlnum = curwin->w_cursor.lnum - 1; |
| 1969 | } |
| 1970 | else |
| 1971 | { |
| 1972 | /* Use the first line that actually changed. Avoids that |
| 1973 | * undoing auto-formatting puts the cursor in the previous |
| 1974 | * line. */ |
| 1975 | for (i = 0; i < newsize && i < oldsize; ++i) |
| 1976 | if (STRCMP(uep->ue_array[i], ml_get(top + 1 + i)) != 0) |
| 1977 | break; |
| 1978 | if (i == newsize && newlnum == MAXLNUM && uep->ue_next == NULL) |
| 1979 | { |
| 1980 | newlnum = top; |
| 1981 | curwin->w_cursor.lnum = newlnum + 1; |
| 1982 | } |
| 1983 | else if (i < newsize) |
| 1984 | { |
| 1985 | newlnum = top + i; |
| 1986 | curwin->w_cursor.lnum = newlnum + 1; |
| 1987 | } |
| 1988 | } |
| 1989 | } |
| 1990 | |
| 1991 | empty_buffer = FALSE; |
| 1992 | |
| 1993 | /* delete the lines between top and bot and save them in newarray */ |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 1994 | if (oldsize > 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1995 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 1996 | if ((newarray = (char_u **)U_ALLOC_LINE( |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1997 | (unsigned)(sizeof(char_u *) * oldsize))) == NULL) |
| 1998 | { |
| 1999 | do_outofmem_msg((long_u)(sizeof(char_u *) * oldsize)); |
| 2000 | /* |
| 2001 | * We have messed up the entry list, repair is impossible. |
| 2002 | * we have to free the rest of the list. |
| 2003 | */ |
| 2004 | while (uep != NULL) |
| 2005 | { |
| 2006 | nuep = uep->ue_next; |
| 2007 | u_freeentry(uep, uep->ue_size); |
| 2008 | uep = nuep; |
| 2009 | } |
| 2010 | break; |
| 2011 | } |
| 2012 | /* delete backwards, it goes faster in most cases */ |
| 2013 | for (lnum = bot - 1, i = oldsize; --i >= 0; --lnum) |
| 2014 | { |
| 2015 | /* what can we do when we run out of memory? */ |
| 2016 | if ((newarray[i] = u_save_line(lnum)) == NULL) |
| 2017 | do_outofmem_msg((long_u)0); |
| 2018 | /* remember we deleted the last line in the buffer, and a |
| 2019 | * dummy empty line will be inserted */ |
| 2020 | if (curbuf->b_ml.ml_line_count == 1) |
| 2021 | empty_buffer = TRUE; |
| 2022 | ml_delete(lnum, FALSE); |
| 2023 | } |
| 2024 | } |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 2025 | else |
| 2026 | newarray = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2027 | |
| 2028 | /* insert the lines in u_array between top and bot */ |
| 2029 | if (newsize) |
| 2030 | { |
| 2031 | for (lnum = top, i = 0; i < newsize; ++i, ++lnum) |
| 2032 | { |
| 2033 | /* |
| 2034 | * If the file is empty, there is an empty line 1 that we |
| 2035 | * should get rid of, by replacing it with the new line |
| 2036 | */ |
| 2037 | if (empty_buffer && lnum == 0) |
| 2038 | ml_replace((linenr_T)1, uep->ue_array[i], TRUE); |
| 2039 | else |
| 2040 | ml_append(lnum, uep->ue_array[i], (colnr_T)0, FALSE); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2041 | U_FREE_LINE(uep->ue_array[i]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2042 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2043 | U_FREE_LINE((char_u *)uep->ue_array); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2044 | } |
| 2045 | |
| 2046 | /* adjust marks */ |
| 2047 | if (oldsize != newsize) |
| 2048 | { |
| 2049 | mark_adjust(top + 1, top + oldsize, (long)MAXLNUM, |
| 2050 | (long)newsize - (long)oldsize); |
| 2051 | if (curbuf->b_op_start.lnum > top + oldsize) |
| 2052 | curbuf->b_op_start.lnum += newsize - oldsize; |
| 2053 | if (curbuf->b_op_end.lnum > top + oldsize) |
| 2054 | curbuf->b_op_end.lnum += newsize - oldsize; |
| 2055 | } |
| 2056 | |
| 2057 | changed_lines(top + 1, 0, bot, newsize - oldsize); |
| 2058 | |
| 2059 | /* set '[ and '] mark */ |
| 2060 | if (top + 1 < curbuf->b_op_start.lnum) |
| 2061 | curbuf->b_op_start.lnum = top + 1; |
| 2062 | if (newsize == 0 && top + 1 > curbuf->b_op_end.lnum) |
| 2063 | curbuf->b_op_end.lnum = top + 1; |
| 2064 | else if (top + newsize > curbuf->b_op_end.lnum) |
| 2065 | curbuf->b_op_end.lnum = top + newsize; |
| 2066 | |
| 2067 | u_newcount += newsize; |
| 2068 | u_oldcount += oldsize; |
| 2069 | uep->ue_size = oldsize; |
| 2070 | uep->ue_array = newarray; |
| 2071 | uep->ue_bot = top + newsize + 1; |
| 2072 | |
| 2073 | /* |
| 2074 | * insert this entry in front of the new entry list |
| 2075 | */ |
| 2076 | nuep = uep->ue_next; |
| 2077 | uep->ue_next = newlist; |
| 2078 | newlist = uep; |
| 2079 | } |
| 2080 | |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 2081 | curhead->uh_entry = newlist; |
| 2082 | curhead->uh_flags = new_flags; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2083 | if ((old_flags & UH_EMPTYBUF) && bufempty()) |
| 2084 | curbuf->b_ml.ml_flags |= ML_EMPTY; |
| 2085 | if (old_flags & UH_CHANGED) |
| 2086 | changed(); |
| 2087 | else |
Bram Moolenaar | 009b259 | 2004-10-24 19:18:58 +0000 | [diff] [blame] | 2088 | #ifdef FEAT_NETBEANS_INTG |
| 2089 | /* per netbeans undo rules, keep it as modified */ |
| 2090 | if (!isNetbeansModified(curbuf)) |
| 2091 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2092 | unchanged(curbuf, FALSE); |
| 2093 | |
| 2094 | /* |
| 2095 | * restore marks from before undo/redo |
| 2096 | */ |
| 2097 | for (i = 0; i < NMARKS; ++i) |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 2098 | if (curhead->uh_namedm[i].lnum != 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2099 | { |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 2100 | curbuf->b_namedm[i] = curhead->uh_namedm[i]; |
| 2101 | curhead->uh_namedm[i] = namedm[i]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2102 | } |
Bram Moolenaar | a23ccb8 | 2006-02-27 00:08:02 +0000 | [diff] [blame] | 2103 | #ifdef FEAT_VISUAL |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 2104 | if (curhead->uh_visual.vi_start.lnum != 0) |
Bram Moolenaar | a23ccb8 | 2006-02-27 00:08:02 +0000 | [diff] [blame] | 2105 | { |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 2106 | curbuf->b_visual = curhead->uh_visual; |
| 2107 | curhead->uh_visual = visualinfo; |
Bram Moolenaar | a23ccb8 | 2006-02-27 00:08:02 +0000 | [diff] [blame] | 2108 | } |
| 2109 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2110 | |
| 2111 | /* |
| 2112 | * If the cursor is only off by one line, put it at the same position as |
| 2113 | * before starting the change (for the "o" command). |
| 2114 | * Otherwise the cursor should go to the first undone line. |
| 2115 | */ |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 2116 | if (curhead->uh_cursor.lnum + 1 == curwin->w_cursor.lnum |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2117 | && curwin->w_cursor.lnum > 1) |
| 2118 | --curwin->w_cursor.lnum; |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 2119 | if (curhead->uh_cursor.lnum == curwin->w_cursor.lnum) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2120 | { |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 2121 | curwin->w_cursor.col = curhead->uh_cursor.col; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2122 | #ifdef FEAT_VIRTUALEDIT |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 2123 | if (virtual_active() && curhead->uh_cursor_vcol >= 0) |
| 2124 | coladvance((colnr_T)curhead->uh_cursor_vcol); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2125 | else |
| 2126 | curwin->w_cursor.coladd = 0; |
| 2127 | #endif |
| 2128 | } |
| 2129 | else if (curwin->w_cursor.lnum <= curbuf->b_ml.ml_line_count) |
| 2130 | beginline(BL_SOL | BL_FIX); |
| 2131 | else |
| 2132 | { |
| 2133 | /* We get here with the current cursor line being past the end (eg |
| 2134 | * after adding lines at the end of the file, and then undoing it). |
| 2135 | * check_cursor() will move the cursor to the last line. Move it to |
| 2136 | * the first column here. */ |
| 2137 | curwin->w_cursor.col = 0; |
| 2138 | #ifdef FEAT_VIRTUALEDIT |
| 2139 | curwin->w_cursor.coladd = 0; |
| 2140 | #endif |
| 2141 | } |
| 2142 | |
| 2143 | /* Make sure the cursor is on an existing line and column. */ |
| 2144 | check_cursor(); |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 2145 | |
| 2146 | /* Remember where we are for "g-" and ":earlier 10s". */ |
| 2147 | curbuf->b_u_seq_cur = curhead->uh_seq; |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 2148 | if (undo) |
| 2149 | /* We are below the previous undo. However, to make ":earlier 1s" |
| 2150 | * work we compute this as being just above the just undone change. */ |
| 2151 | --curbuf->b_u_seq_cur; |
| 2152 | |
| 2153 | /* The timestamp can be the same for multiple changes, just use the one of |
| 2154 | * the undone/redone change. */ |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 2155 | curbuf->b_u_seq_time = curhead->uh_time; |
Bram Moolenaar | fecb660 | 2007-10-01 20:54:15 +0000 | [diff] [blame] | 2156 | #ifdef U_DEBUG |
| 2157 | u_check(FALSE); |
| 2158 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2159 | } |
| 2160 | |
| 2161 | /* |
| 2162 | * If we deleted or added lines, report the number of less/more lines. |
| 2163 | * Otherwise, report the number of changes (this may be incorrect |
| 2164 | * in some cases, but it's better than nothing). |
| 2165 | */ |
| 2166 | static void |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 2167 | u_undo_end(did_undo, absolute) |
Bram Moolenaar | 433f7c8 | 2006-03-21 21:29:36 +0000 | [diff] [blame] | 2168 | int did_undo; /* just did an undo */ |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 2169 | int absolute; /* used ":undo N" */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2170 | { |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 2171 | char *msgstr; |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 2172 | u_header_T *uhp; |
| 2173 | char_u msgbuf[80]; |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 2174 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2175 | #ifdef FEAT_FOLDING |
| 2176 | if ((fdo_flags & FDO_UNDO) && KeyTyped) |
| 2177 | foldOpenCursor(); |
| 2178 | #endif |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 2179 | |
| 2180 | if (global_busy /* no messages now, wait until global is finished */ |
| 2181 | || !messaging()) /* 'lazyredraw' set, don't do messages now */ |
| 2182 | return; |
| 2183 | |
| 2184 | if (curbuf->b_ml.ml_flags & ML_EMPTY) |
| 2185 | --u_newcount; |
| 2186 | |
| 2187 | u_oldcount -= u_newcount; |
| 2188 | if (u_oldcount == -1) |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 2189 | msgstr = N_("more line"); |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 2190 | else if (u_oldcount < 0) |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 2191 | msgstr = N_("more lines"); |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 2192 | else if (u_oldcount == 1) |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 2193 | msgstr = N_("line less"); |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 2194 | else if (u_oldcount > 1) |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 2195 | msgstr = N_("fewer lines"); |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 2196 | else |
| 2197 | { |
| 2198 | u_oldcount = u_newcount; |
| 2199 | if (u_newcount == 1) |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 2200 | msgstr = N_("change"); |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 2201 | else |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 2202 | msgstr = N_("changes"); |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 2203 | } |
| 2204 | |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 2205 | if (curbuf->b_u_curhead != NULL) |
Bram Moolenaar | 433f7c8 | 2006-03-21 21:29:36 +0000 | [diff] [blame] | 2206 | { |
Bram Moolenaar | db552d60 | 2006-03-23 22:59:57 +0000 | [diff] [blame] | 2207 | /* For ":undo N" we prefer a "after #N" message. */ |
| 2208 | if (absolute && curbuf->b_u_curhead->uh_next != NULL) |
| 2209 | { |
| 2210 | uhp = curbuf->b_u_curhead->uh_next; |
| 2211 | did_undo = FALSE; |
| 2212 | } |
| 2213 | else if (did_undo) |
Bram Moolenaar | 433f7c8 | 2006-03-21 21:29:36 +0000 | [diff] [blame] | 2214 | uhp = curbuf->b_u_curhead; |
| 2215 | else |
| 2216 | uhp = curbuf->b_u_curhead->uh_next; |
| 2217 | } |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 2218 | else |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 2219 | uhp = curbuf->b_u_newhead; |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 2220 | |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 2221 | if (uhp == NULL) |
| 2222 | *msgbuf = NUL; |
| 2223 | else |
| 2224 | u_add_time(msgbuf, sizeof(msgbuf), uhp->uh_time); |
| 2225 | |
Bram Moolenaar | 433f7c8 | 2006-03-21 21:29:36 +0000 | [diff] [blame] | 2226 | smsg((char_u *)_("%ld %s; %s #%ld %s"), |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 2227 | u_oldcount < 0 ? -u_oldcount : u_oldcount, |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 2228 | _(msgstr), |
Bram Moolenaar | 433f7c8 | 2006-03-21 21:29:36 +0000 | [diff] [blame] | 2229 | did_undo ? _("before") : _("after"), |
| 2230 | uhp == NULL ? 0L : uhp->uh_seq, |
| 2231 | msgbuf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2232 | } |
| 2233 | |
| 2234 | /* |
| 2235 | * u_sync: stop adding to the current entry list |
| 2236 | */ |
| 2237 | void |
Bram Moolenaar | 779b74b | 2006-04-10 14:55:34 +0000 | [diff] [blame] | 2238 | u_sync(force) |
| 2239 | int force; /* Also sync when no_u_sync is set. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2240 | { |
Bram Moolenaar | 779b74b | 2006-04-10 14:55:34 +0000 | [diff] [blame] | 2241 | /* Skip it when already synced or syncing is disabled. */ |
| 2242 | if (curbuf->b_u_synced || (!force && no_u_sync > 0)) |
| 2243 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2244 | #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) |
| 2245 | if (im_is_preediting()) |
| 2246 | return; /* XIM is busy, don't break an undo sequence */ |
| 2247 | #endif |
| 2248 | if (p_ul < 0) |
| 2249 | curbuf->b_u_synced = TRUE; /* no entries, nothing to do */ |
| 2250 | else |
| 2251 | { |
| 2252 | u_getbot(); /* compute ue_bot of previous u_save */ |
| 2253 | curbuf->b_u_curhead = NULL; |
| 2254 | } |
| 2255 | } |
| 2256 | |
| 2257 | /* |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 2258 | * ":undolist": List the leafs of the undo tree |
| 2259 | */ |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 2260 | void |
| 2261 | ex_undolist(eap) |
Bram Moolenaar | fff2bee | 2010-05-15 13:56:02 +0200 | [diff] [blame] | 2262 | exarg_T *eap UNUSED; |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 2263 | { |
| 2264 | garray_T ga; |
| 2265 | u_header_T *uhp; |
| 2266 | int mark; |
| 2267 | int nomark; |
| 2268 | int changes = 1; |
| 2269 | int i; |
| 2270 | |
| 2271 | /* |
| 2272 | * 1: walk the tree to find all leafs, put the info in "ga". |
| 2273 | * 2: sort the lines |
| 2274 | * 3: display the list |
| 2275 | */ |
| 2276 | mark = ++lastmark; |
| 2277 | nomark = ++lastmark; |
| 2278 | ga_init2(&ga, (int)sizeof(char *), 20); |
| 2279 | |
| 2280 | uhp = curbuf->b_u_oldhead; |
| 2281 | while (uhp != NULL) |
| 2282 | { |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 2283 | if (uhp->uh_prev == NULL && uhp->uh_walk != nomark |
| 2284 | && uhp->uh_walk != mark) |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 2285 | { |
| 2286 | if (ga_grow(&ga, 1) == FAIL) |
| 2287 | break; |
| 2288 | vim_snprintf((char *)IObuff, IOSIZE, "%6ld %7ld ", |
| 2289 | uhp->uh_seq, changes); |
| 2290 | u_add_time(IObuff + STRLEN(IObuff), IOSIZE - STRLEN(IObuff), |
| 2291 | uhp->uh_time); |
| 2292 | ((char_u **)(ga.ga_data))[ga.ga_len++] = vim_strsave(IObuff); |
| 2293 | } |
| 2294 | |
| 2295 | uhp->uh_walk = mark; |
| 2296 | |
| 2297 | /* go down in the tree if we haven't been there */ |
| 2298 | if (uhp->uh_prev != NULL && uhp->uh_prev->uh_walk != nomark |
| 2299 | && uhp->uh_prev->uh_walk != mark) |
| 2300 | { |
| 2301 | uhp = uhp->uh_prev; |
| 2302 | ++changes; |
| 2303 | } |
| 2304 | |
| 2305 | /* go to alternate branch if we haven't been there */ |
| 2306 | else if (uhp->uh_alt_next != NULL |
| 2307 | && uhp->uh_alt_next->uh_walk != nomark |
| 2308 | && uhp->uh_alt_next->uh_walk != mark) |
| 2309 | uhp = uhp->uh_alt_next; |
| 2310 | |
| 2311 | /* go up in the tree if we haven't been there and we are at the |
| 2312 | * start of alternate branches */ |
| 2313 | else if (uhp->uh_next != NULL && uhp->uh_alt_prev == NULL |
| 2314 | && uhp->uh_next->uh_walk != nomark |
| 2315 | && uhp->uh_next->uh_walk != mark) |
| 2316 | { |
| 2317 | uhp = uhp->uh_next; |
| 2318 | --changes; |
| 2319 | } |
| 2320 | |
| 2321 | else |
| 2322 | { |
| 2323 | /* need to backtrack; mark this node as done */ |
| 2324 | uhp->uh_walk = nomark; |
| 2325 | if (uhp->uh_alt_prev != NULL) |
| 2326 | uhp = uhp->uh_alt_prev; |
| 2327 | else |
| 2328 | { |
| 2329 | uhp = uhp->uh_next; |
| 2330 | --changes; |
| 2331 | } |
| 2332 | } |
| 2333 | } |
| 2334 | |
| 2335 | if (ga.ga_len == 0) |
| 2336 | MSG(_("Nothing to undo")); |
| 2337 | else |
| 2338 | { |
| 2339 | sort_strings((char_u **)ga.ga_data, ga.ga_len); |
| 2340 | |
| 2341 | msg_start(); |
| 2342 | msg_puts_attr((char_u *)_("number changes time"), hl_attr(HLF_T)); |
| 2343 | for (i = 0; i < ga.ga_len && !got_int; ++i) |
| 2344 | { |
| 2345 | msg_putchar('\n'); |
| 2346 | if (got_int) |
| 2347 | break; |
| 2348 | msg_puts(((char_u **)ga.ga_data)[i]); |
| 2349 | } |
| 2350 | msg_end(); |
| 2351 | |
| 2352 | ga_clear_strings(&ga); |
| 2353 | } |
| 2354 | } |
| 2355 | |
| 2356 | /* |
| 2357 | * Put the timestamp of an undo header in "buf[buflen]" in a nice format. |
| 2358 | */ |
| 2359 | static void |
| 2360 | u_add_time(buf, buflen, tt) |
| 2361 | char_u *buf; |
| 2362 | size_t buflen; |
| 2363 | time_t tt; |
| 2364 | { |
| 2365 | #ifdef HAVE_STRFTIME |
| 2366 | struct tm *curtime; |
| 2367 | |
| 2368 | if (time(NULL) - tt >= 100) |
| 2369 | { |
| 2370 | curtime = localtime(&tt); |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 2371 | (void)strftime((char *)buf, buflen, "%H:%M:%S", curtime); |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 2372 | } |
| 2373 | else |
| 2374 | #endif |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 2375 | vim_snprintf((char *)buf, buflen, _("%ld seconds ago"), |
Bram Moolenaar | efd2bf1 | 2006-03-16 21:41:35 +0000 | [diff] [blame] | 2376 | (long)(time(NULL) - tt)); |
| 2377 | } |
| 2378 | |
| 2379 | /* |
Bram Moolenaar | e224ffa | 2006-03-01 00:01:28 +0000 | [diff] [blame] | 2380 | * ":undojoin": continue adding to the last entry list |
| 2381 | */ |
Bram Moolenaar | e224ffa | 2006-03-01 00:01:28 +0000 | [diff] [blame] | 2382 | void |
| 2383 | ex_undojoin(eap) |
Bram Moolenaar | fff2bee | 2010-05-15 13:56:02 +0200 | [diff] [blame] | 2384 | exarg_T *eap UNUSED; |
Bram Moolenaar | e224ffa | 2006-03-01 00:01:28 +0000 | [diff] [blame] | 2385 | { |
Bram Moolenaar | e224ffa | 2006-03-01 00:01:28 +0000 | [diff] [blame] | 2386 | if (curbuf->b_u_newhead == NULL) |
| 2387 | return; /* nothing changed before */ |
Bram Moolenaar | 57657d8 | 2006-04-21 22:12:41 +0000 | [diff] [blame] | 2388 | if (curbuf->b_u_curhead != NULL) |
| 2389 | { |
| 2390 | EMSG(_("E790: undojoin is not allowed after undo")); |
| 2391 | return; |
| 2392 | } |
| 2393 | if (!curbuf->b_u_synced) |
| 2394 | return; /* already unsynced */ |
Bram Moolenaar | e224ffa | 2006-03-01 00:01:28 +0000 | [diff] [blame] | 2395 | if (p_ul < 0) |
| 2396 | return; /* no entries, nothing to do */ |
| 2397 | else |
| 2398 | { |
| 2399 | /* Go back to the last entry */ |
| 2400 | curbuf->b_u_curhead = curbuf->b_u_newhead; |
| 2401 | curbuf->b_u_synced = FALSE; /* no entries, nothing to do */ |
| 2402 | } |
| 2403 | } |
| 2404 | |
| 2405 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2406 | * Called after writing the file and setting b_changed to FALSE. |
| 2407 | * Now an undo means that the buffer is modified. |
| 2408 | */ |
| 2409 | void |
| 2410 | u_unchanged(buf) |
| 2411 | buf_T *buf; |
| 2412 | { |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 2413 | u_unch_branch(buf->b_u_oldhead); |
| 2414 | buf->b_did_warn = FALSE; |
| 2415 | } |
| 2416 | |
| 2417 | static void |
| 2418 | u_unch_branch(uhp) |
| 2419 | u_header_T *uhp; |
| 2420 | { |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 2421 | u_header_T *uh; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2422 | |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 2423 | for (uh = uhp; uh != NULL; uh = uh->uh_prev) |
| 2424 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2425 | uh->uh_flags |= UH_CHANGED; |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 2426 | if (uh->uh_alt_next != NULL) |
| 2427 | u_unch_branch(uh->uh_alt_next); /* recursive */ |
| 2428 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2429 | } |
| 2430 | |
| 2431 | /* |
| 2432 | * Get pointer to last added entry. |
| 2433 | * If it's not valid, give an error message and return NULL. |
| 2434 | */ |
| 2435 | static u_entry_T * |
| 2436 | u_get_headentry() |
| 2437 | { |
| 2438 | if (curbuf->b_u_newhead == NULL || curbuf->b_u_newhead->uh_entry == NULL) |
| 2439 | { |
| 2440 | EMSG(_("E439: undo list corrupt")); |
| 2441 | return NULL; |
| 2442 | } |
| 2443 | return curbuf->b_u_newhead->uh_entry; |
| 2444 | } |
| 2445 | |
| 2446 | /* |
| 2447 | * u_getbot(): compute the line number of the previous u_save |
| 2448 | * It is called only when b_u_synced is FALSE. |
| 2449 | */ |
| 2450 | static void |
| 2451 | u_getbot() |
| 2452 | { |
| 2453 | u_entry_T *uep; |
| 2454 | linenr_T extra; |
| 2455 | |
| 2456 | uep = u_get_headentry(); /* check for corrupt undo list */ |
| 2457 | if (uep == NULL) |
| 2458 | return; |
| 2459 | |
| 2460 | uep = curbuf->b_u_newhead->uh_getbot_entry; |
| 2461 | if (uep != NULL) |
| 2462 | { |
| 2463 | /* |
| 2464 | * the new ue_bot is computed from the number of lines that has been |
| 2465 | * inserted (0 - deleted) since calling u_save. This is equal to the |
| 2466 | * old line count subtracted from the current line count. |
| 2467 | */ |
| 2468 | extra = curbuf->b_ml.ml_line_count - uep->ue_lcount; |
| 2469 | uep->ue_bot = uep->ue_top + uep->ue_size + 1 + extra; |
| 2470 | if (uep->ue_bot < 1 || uep->ue_bot > curbuf->b_ml.ml_line_count) |
| 2471 | { |
| 2472 | EMSG(_("E440: undo line missing")); |
| 2473 | uep->ue_bot = uep->ue_top + 1; /* assume all lines deleted, will |
| 2474 | * get all the old lines back |
| 2475 | * without deleting the current |
| 2476 | * ones */ |
| 2477 | } |
| 2478 | |
| 2479 | curbuf->b_u_newhead->uh_getbot_entry = NULL; |
| 2480 | } |
| 2481 | |
| 2482 | curbuf->b_u_synced = TRUE; |
| 2483 | } |
| 2484 | |
| 2485 | /* |
Bram Moolenaar | fecb660 | 2007-10-01 20:54:15 +0000 | [diff] [blame] | 2486 | * Free one header "uhp" and its entry list and adjust the pointers. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2487 | */ |
| 2488 | static void |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 2489 | u_freeheader(buf, uhp, uhpp) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2490 | buf_T *buf; |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 2491 | u_header_T *uhp; |
| 2492 | u_header_T **uhpp; /* if not NULL reset when freeing this header */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2493 | { |
Bram Moolenaar | fecb660 | 2007-10-01 20:54:15 +0000 | [diff] [blame] | 2494 | u_header_T *uhap; |
| 2495 | |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 2496 | /* When there is an alternate redo list free that branch completely, |
| 2497 | * because we can never go there. */ |
| 2498 | if (uhp->uh_alt_next != NULL) |
| 2499 | u_freebranch(buf, uhp->uh_alt_next, uhpp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2500 | |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 2501 | if (uhp->uh_alt_prev != NULL) |
| 2502 | uhp->uh_alt_prev->uh_alt_next = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2503 | |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 2504 | /* Update the links in the list to remove the header. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2505 | if (uhp->uh_next == NULL) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2506 | buf->b_u_oldhead = uhp->uh_prev; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2507 | else |
| 2508 | uhp->uh_next->uh_prev = uhp->uh_prev; |
| 2509 | |
| 2510 | if (uhp->uh_prev == NULL) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2511 | buf->b_u_newhead = uhp->uh_next; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2512 | else |
Bram Moolenaar | fecb660 | 2007-10-01 20:54:15 +0000 | [diff] [blame] | 2513 | for (uhap = uhp->uh_prev; uhap != NULL; uhap = uhap->uh_alt_next) |
| 2514 | uhap->uh_next = uhp->uh_next; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2515 | |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 2516 | u_freeentries(buf, uhp, uhpp); |
| 2517 | } |
| 2518 | |
| 2519 | /* |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 2520 | * Free an alternate branch and any following alternate branches. |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 2521 | */ |
| 2522 | static void |
| 2523 | u_freebranch(buf, uhp, uhpp) |
| 2524 | buf_T *buf; |
| 2525 | u_header_T *uhp; |
| 2526 | u_header_T **uhpp; /* if not NULL reset when freeing this header */ |
| 2527 | { |
| 2528 | u_header_T *tofree, *next; |
| 2529 | |
Bram Moolenaar | 07d0677 | 2007-11-10 21:51:15 +0000 | [diff] [blame] | 2530 | /* If this is the top branch we may need to use u_freeheader() to update |
| 2531 | * all the pointers. */ |
| 2532 | if (uhp == buf->b_u_oldhead) |
| 2533 | { |
| 2534 | u_freeheader(buf, uhp, uhpp); |
| 2535 | return; |
| 2536 | } |
| 2537 | |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 2538 | if (uhp->uh_alt_prev != NULL) |
| 2539 | uhp->uh_alt_prev->uh_alt_next = NULL; |
| 2540 | |
| 2541 | next = uhp; |
| 2542 | while (next != NULL) |
| 2543 | { |
| 2544 | tofree = next; |
| 2545 | if (tofree->uh_alt_next != NULL) |
| 2546 | u_freebranch(buf, tofree->uh_alt_next, uhpp); /* recursive */ |
| 2547 | next = tofree->uh_prev; |
| 2548 | u_freeentries(buf, tofree, uhpp); |
| 2549 | } |
| 2550 | } |
| 2551 | |
| 2552 | /* |
| 2553 | * Free all the undo entries for one header and the header itself. |
| 2554 | * This means that "uhp" is invalid when returning. |
| 2555 | */ |
| 2556 | static void |
| 2557 | u_freeentries(buf, uhp, uhpp) |
| 2558 | buf_T *buf; |
| 2559 | u_header_T *uhp; |
| 2560 | u_header_T **uhpp; /* if not NULL reset when freeing this header */ |
| 2561 | { |
| 2562 | u_entry_T *uep, *nuep; |
| 2563 | |
| 2564 | /* Check for pointers to the header that become invalid now. */ |
| 2565 | if (buf->b_u_curhead == uhp) |
| 2566 | buf->b_u_curhead = NULL; |
Bram Moolenaar | fecb660 | 2007-10-01 20:54:15 +0000 | [diff] [blame] | 2567 | if (buf->b_u_newhead == uhp) |
| 2568 | buf->b_u_newhead = NULL; /* freeing the newest entry */ |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 2569 | if (uhpp != NULL && uhp == *uhpp) |
| 2570 | *uhpp = NULL; |
| 2571 | |
| 2572 | for (uep = uhp->uh_entry; uep != NULL; uep = nuep) |
| 2573 | { |
| 2574 | nuep = uep->ue_next; |
| 2575 | u_freeentry(uep, uep->ue_size); |
| 2576 | } |
| 2577 | |
Bram Moolenaar | fecb660 | 2007-10-01 20:54:15 +0000 | [diff] [blame] | 2578 | #ifdef U_DEBUG |
| 2579 | uhp->uh_magic = 0; |
| 2580 | #endif |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2581 | U_FREE_LINE((char_u *)uhp); |
| 2582 | --buf->b_u_numhead; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2583 | } |
| 2584 | |
| 2585 | /* |
| 2586 | * free entry 'uep' and 'n' lines in uep->ue_array[] |
| 2587 | */ |
| 2588 | static void |
| 2589 | u_freeentry(uep, n) |
| 2590 | u_entry_T *uep; |
| 2591 | long n; |
| 2592 | { |
Bram Moolenaar | 8d34330 | 2005-07-12 22:46:17 +0000 | [diff] [blame] | 2593 | while (n > 0) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2594 | U_FREE_LINE(uep->ue_array[--n]); |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 2595 | U_FREE_LINE((char_u *)uep->ue_array); |
Bram Moolenaar | fecb660 | 2007-10-01 20:54:15 +0000 | [diff] [blame] | 2596 | #ifdef U_DEBUG |
| 2597 | uep->ue_magic = 0; |
| 2598 | #endif |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2599 | U_FREE_LINE((char_u *)uep); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2600 | } |
| 2601 | |
| 2602 | /* |
| 2603 | * invalidate the undo buffer; called when storage has already been released |
| 2604 | */ |
| 2605 | void |
| 2606 | u_clearall(buf) |
| 2607 | buf_T *buf; |
| 2608 | { |
| 2609 | buf->b_u_newhead = buf->b_u_oldhead = buf->b_u_curhead = NULL; |
| 2610 | buf->b_u_synced = TRUE; |
| 2611 | buf->b_u_numhead = 0; |
| 2612 | buf->b_u_line_ptr = NULL; |
| 2613 | buf->b_u_line_lnum = 0; |
| 2614 | } |
| 2615 | |
| 2616 | /* |
| 2617 | * save the line "lnum" for the "U" command |
| 2618 | */ |
| 2619 | void |
| 2620 | u_saveline(lnum) |
| 2621 | linenr_T lnum; |
| 2622 | { |
| 2623 | if (lnum == curbuf->b_u_line_lnum) /* line is already saved */ |
| 2624 | return; |
Bram Moolenaar | 1ec484f | 2005-06-24 23:07:47 +0000 | [diff] [blame] | 2625 | if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count) /* should never happen */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2626 | return; |
| 2627 | u_clearline(); |
| 2628 | curbuf->b_u_line_lnum = lnum; |
| 2629 | if (curwin->w_cursor.lnum == lnum) |
| 2630 | curbuf->b_u_line_colnr = curwin->w_cursor.col; |
| 2631 | else |
| 2632 | curbuf->b_u_line_colnr = 0; |
| 2633 | if ((curbuf->b_u_line_ptr = u_save_line(lnum)) == NULL) |
| 2634 | do_outofmem_msg((long_u)0); |
| 2635 | } |
| 2636 | |
| 2637 | /* |
| 2638 | * clear the line saved for the "U" command |
| 2639 | * (this is used externally for crossing a line while in insert mode) |
| 2640 | */ |
| 2641 | void |
| 2642 | u_clearline() |
| 2643 | { |
| 2644 | if (curbuf->b_u_line_ptr != NULL) |
| 2645 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2646 | U_FREE_LINE(curbuf->b_u_line_ptr); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2647 | curbuf->b_u_line_ptr = NULL; |
| 2648 | curbuf->b_u_line_lnum = 0; |
| 2649 | } |
| 2650 | } |
| 2651 | |
| 2652 | /* |
| 2653 | * Implementation of the "U" command. |
| 2654 | * Differentiation from vi: "U" can be undone with the next "U". |
| 2655 | * We also allow the cursor to be in another line. |
| 2656 | */ |
| 2657 | void |
| 2658 | u_undoline() |
| 2659 | { |
| 2660 | colnr_T t; |
| 2661 | char_u *oldp; |
| 2662 | |
| 2663 | if (undo_off) |
| 2664 | return; |
| 2665 | |
Bram Moolenaar | e3300c8 | 2008-02-13 14:21:38 +0000 | [diff] [blame] | 2666 | if (curbuf->b_u_line_ptr == NULL |
| 2667 | || curbuf->b_u_line_lnum > curbuf->b_ml.ml_line_count) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2668 | { |
| 2669 | beep_flush(); |
| 2670 | return; |
| 2671 | } |
Bram Moolenaar | e3300c8 | 2008-02-13 14:21:38 +0000 | [diff] [blame] | 2672 | |
| 2673 | /* first save the line for the 'u' command */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2674 | if (u_savecommon(curbuf->b_u_line_lnum - 1, |
| 2675 | curbuf->b_u_line_lnum + 1, (linenr_T)0) == FAIL) |
| 2676 | return; |
| 2677 | oldp = u_save_line(curbuf->b_u_line_lnum); |
| 2678 | if (oldp == NULL) |
| 2679 | { |
| 2680 | do_outofmem_msg((long_u)0); |
| 2681 | return; |
| 2682 | } |
| 2683 | ml_replace(curbuf->b_u_line_lnum, curbuf->b_u_line_ptr, TRUE); |
| 2684 | changed_bytes(curbuf->b_u_line_lnum, 0); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2685 | U_FREE_LINE(curbuf->b_u_line_ptr); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2686 | curbuf->b_u_line_ptr = oldp; |
| 2687 | |
| 2688 | t = curbuf->b_u_line_colnr; |
| 2689 | if (curwin->w_cursor.lnum == curbuf->b_u_line_lnum) |
| 2690 | curbuf->b_u_line_colnr = curwin->w_cursor.col; |
| 2691 | curwin->w_cursor.col = t; |
| 2692 | curwin->w_cursor.lnum = curbuf->b_u_line_lnum; |
Bram Moolenaar | e3300c8 | 2008-02-13 14:21:38 +0000 | [diff] [blame] | 2693 | check_cursor_col(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2694 | } |
| 2695 | |
| 2696 | /* |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2697 | * There are two implementations of the memory management for undo: |
| 2698 | * 1. Use the standard malloc()/free() functions. |
| 2699 | * This should be fast for allocating memory, but when a buffer is |
| 2700 | * abandoned every single allocated chunk must be freed, which may be slow. |
| 2701 | * 2. Allocate larger blocks of memory and keep track of chunks ourselves. |
| 2702 | * This is fast for abandoning, but the use of linked lists is slow for |
| 2703 | * finding a free chunk. Esp. when a lot of lines are changed or deleted. |
| 2704 | * A bit of profiling showed that the first method is faster, especially when |
| 2705 | * making a large number of changes, under the condition that malloc()/free() |
| 2706 | * is implemented efficiently. |
| 2707 | */ |
| 2708 | #ifdef U_USE_MALLOC |
| 2709 | /* |
| 2710 | * Version of undo memory allocation using malloc()/free() |
| 2711 | * |
| 2712 | * U_FREE_LINE() and U_ALLOC_LINE() are macros that invoke vim_free() and |
| 2713 | * lalloc() directly. |
| 2714 | */ |
| 2715 | |
| 2716 | /* |
| 2717 | * Free all allocated memory blocks for the buffer 'buf'. |
| 2718 | */ |
| 2719 | void |
| 2720 | u_blockfree(buf) |
| 2721 | buf_T *buf; |
| 2722 | { |
Bram Moolenaar | 1e60789 | 2006-03-13 22:15:53 +0000 | [diff] [blame] | 2723 | while (buf->b_u_oldhead != NULL) |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 2724 | u_freeheader(buf, buf->b_u_oldhead, NULL); |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 2725 | U_FREE_LINE(buf->b_u_line_ptr); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2726 | } |
| 2727 | |
| 2728 | #else |
| 2729 | /* |
| 2730 | * Storage allocation for the undo lines and blocks of the current file. |
| 2731 | * Version where Vim keeps track of the available memory. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2732 | */ |
| 2733 | |
| 2734 | /* |
| 2735 | * Memory is allocated in relatively large blocks. These blocks are linked |
| 2736 | * in the allocated block list, headed by curbuf->b_block_head. They are all |
| 2737 | * freed when abandoning a file, so we don't have to free every single line. |
| 2738 | * The list is kept sorted on memory address. |
| 2739 | * block_alloc() allocates a block. |
| 2740 | * m_blockfree() frees all blocks. |
| 2741 | * |
| 2742 | * The available chunks of memory are kept in free chunk lists. There is |
| 2743 | * one free list for each block of allocated memory. The list is kept sorted |
| 2744 | * on memory address. |
| 2745 | * u_alloc_line() gets a chunk from the free lists. |
| 2746 | * u_free_line() returns a chunk to the free lists. |
| 2747 | * curbuf->b_m_search points to the chunk before the chunk that was |
| 2748 | * freed/allocated the last time. |
| 2749 | * curbuf->b_mb_current points to the b_head where curbuf->b_m_search |
| 2750 | * points into the free list. |
| 2751 | * |
| 2752 | * |
| 2753 | * b_block_head /---> block #1 /---> block #2 |
| 2754 | * mb_next ---/ mb_next ---/ mb_next ---> NULL |
| 2755 | * mb_info mb_info mb_info |
| 2756 | * | | | |
| 2757 | * V V V |
| 2758 | * NULL free chunk #1.1 free chunk #2.1 |
| 2759 | * | | |
| 2760 | * V V |
| 2761 | * free chunk #1.2 NULL |
| 2762 | * | |
| 2763 | * V |
| 2764 | * NULL |
| 2765 | * |
| 2766 | * When a single free chunk list would have been used, it could take a lot |
| 2767 | * of time in u_free_line() to find the correct place to insert a chunk in the |
| 2768 | * free list. The single free list would become very long when many lines are |
| 2769 | * changed (e.g. with :%s/^M$//). |
| 2770 | */ |
| 2771 | |
| 2772 | /* |
| 2773 | * this blocksize is used when allocating new lines |
| 2774 | */ |
| 2775 | #define MEMBLOCKSIZE 2044 |
| 2776 | |
| 2777 | /* |
| 2778 | * The size field contains the size of the chunk, including the size field |
| 2779 | * itself. |
| 2780 | * |
| 2781 | * When the chunk is not in-use it is preceded with the m_info structure. |
| 2782 | * The m_next field links it in one of the free chunk lists. |
| 2783 | * |
| 2784 | * On most unix systems structures have to be longword (32 or 64 bit) aligned. |
| 2785 | * On most other systems they are short (16 bit) aligned. |
| 2786 | */ |
| 2787 | |
| 2788 | /* the structure definitions are now in structs.h */ |
| 2789 | |
| 2790 | #ifdef ALIGN_LONG |
| 2791 | /* size of m_size */ |
| 2792 | # define M_OFFSET (sizeof(long_u)) |
| 2793 | #else |
| 2794 | /* size of m_size */ |
| 2795 | # define M_OFFSET (sizeof(short_u)) |
| 2796 | #endif |
| 2797 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2798 | static char_u *u_blockalloc __ARGS((long_u)); |
| 2799 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2800 | /* |
| 2801 | * Allocate a block of memory and link it in the allocated block list. |
| 2802 | */ |
| 2803 | static char_u * |
| 2804 | u_blockalloc(size) |
| 2805 | long_u size; |
| 2806 | { |
| 2807 | mblock_T *p; |
| 2808 | mblock_T *mp, *next; |
| 2809 | |
| 2810 | p = (mblock_T *)lalloc(size + sizeof(mblock_T), FALSE); |
| 2811 | if (p != NULL) |
| 2812 | { |
| 2813 | /* Insert the block into the allocated block list, keeping it |
| 2814 | sorted on address. */ |
| 2815 | for (mp = &curbuf->b_block_head; |
| 2816 | (next = mp->mb_next) != NULL && next < p; |
| 2817 | mp = next) |
| 2818 | ; |
| 2819 | p->mb_next = next; /* link in block list */ |
| 2820 | p->mb_size = size; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2821 | p->mb_maxsize = 0; /* nothing free yet */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2822 | mp->mb_next = p; |
| 2823 | p->mb_info.m_next = NULL; /* clear free list */ |
| 2824 | p->mb_info.m_size = 0; |
| 2825 | curbuf->b_mb_current = p; /* remember current block */ |
| 2826 | curbuf->b_m_search = NULL; |
| 2827 | p++; /* return usable memory */ |
| 2828 | } |
| 2829 | return (char_u *)p; |
| 2830 | } |
| 2831 | |
| 2832 | /* |
| 2833 | * free all allocated memory blocks for the buffer 'buf' |
| 2834 | */ |
| 2835 | void |
| 2836 | u_blockfree(buf) |
| 2837 | buf_T *buf; |
| 2838 | { |
| 2839 | mblock_T *p, *np; |
| 2840 | |
| 2841 | for (p = buf->b_block_head.mb_next; p != NULL; p = np) |
| 2842 | { |
| 2843 | np = p->mb_next; |
| 2844 | vim_free(p); |
| 2845 | } |
| 2846 | buf->b_block_head.mb_next = NULL; |
| 2847 | buf->b_m_search = NULL; |
| 2848 | buf->b_mb_current = NULL; |
| 2849 | } |
| 2850 | |
| 2851 | /* |
| 2852 | * Free a chunk of memory for the current buffer. |
| 2853 | * Insert the chunk into the correct free list, keeping it sorted on address. |
| 2854 | */ |
| 2855 | static void |
| 2856 | u_free_line(ptr, keep) |
| 2857 | char_u *ptr; |
| 2858 | int keep; /* don't free the block when it's empty */ |
| 2859 | { |
| 2860 | minfo_T *next; |
| 2861 | minfo_T *prev, *curr; |
| 2862 | minfo_T *mp; |
| 2863 | mblock_T *nextb; |
| 2864 | mblock_T *prevb; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2865 | long_u maxsize; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2866 | |
| 2867 | if (ptr == NULL || ptr == IObuff) |
| 2868 | return; /* illegal address can happen in out-of-memory situations */ |
| 2869 | |
| 2870 | mp = (minfo_T *)(ptr - M_OFFSET); |
| 2871 | |
| 2872 | /* find block where chunk could be a part off */ |
| 2873 | /* if we change curbuf->b_mb_current, curbuf->b_m_search is set to NULL */ |
| 2874 | if (curbuf->b_mb_current == NULL || mp < (minfo_T *)curbuf->b_mb_current) |
| 2875 | { |
| 2876 | curbuf->b_mb_current = curbuf->b_block_head.mb_next; |
| 2877 | curbuf->b_m_search = NULL; |
| 2878 | } |
| 2879 | if ((nextb = curbuf->b_mb_current->mb_next) != NULL |
| 2880 | && (minfo_T *)nextb < mp) |
| 2881 | { |
| 2882 | curbuf->b_mb_current = nextb; |
| 2883 | curbuf->b_m_search = NULL; |
| 2884 | } |
| 2885 | while ((nextb = curbuf->b_mb_current->mb_next) != NULL |
| 2886 | && (minfo_T *)nextb < mp) |
| 2887 | curbuf->b_mb_current = nextb; |
| 2888 | |
| 2889 | curr = NULL; |
| 2890 | /* |
| 2891 | * If mp is smaller than curbuf->b_m_search->m_next go to the start of |
| 2892 | * the free list |
| 2893 | */ |
| 2894 | if (curbuf->b_m_search == NULL || mp < (curbuf->b_m_search->m_next)) |
| 2895 | next = &(curbuf->b_mb_current->mb_info); |
| 2896 | else |
| 2897 | next = curbuf->b_m_search; |
| 2898 | /* |
| 2899 | * The following loop is executed very often. |
| 2900 | * Therefore it has been optimized at the cost of readability. |
| 2901 | * Keep it fast! |
| 2902 | */ |
| 2903 | #ifdef SLOW_BUT_EASY_TO_READ |
| 2904 | do |
| 2905 | { |
| 2906 | prev = curr; |
| 2907 | curr = next; |
| 2908 | next = next->m_next; |
| 2909 | } |
| 2910 | while (mp > next && next != NULL); |
| 2911 | #else |
| 2912 | do /* first, middle, last */ |
| 2913 | { |
| 2914 | prev = next->m_next; /* curr, next, prev */ |
| 2915 | if (prev == NULL || mp <= prev) |
| 2916 | { |
| 2917 | prev = curr; |
| 2918 | curr = next; |
| 2919 | next = next->m_next; |
| 2920 | break; |
| 2921 | } |
| 2922 | curr = prev->m_next; /* next, prev, curr */ |
| 2923 | if (curr == NULL || mp <= curr) |
| 2924 | { |
| 2925 | prev = next; |
| 2926 | curr = prev->m_next; |
| 2927 | next = curr->m_next; |
| 2928 | break; |
| 2929 | } |
| 2930 | next = curr->m_next; /* prev, curr, next */ |
| 2931 | } |
| 2932 | while (mp > next && next != NULL); |
| 2933 | #endif |
| 2934 | |
| 2935 | /* if *mp and *next are concatenated, join them into one chunk */ |
| 2936 | if ((char_u *)mp + mp->m_size == (char_u *)next) |
| 2937 | { |
| 2938 | mp->m_size += next->m_size; |
| 2939 | mp->m_next = next->m_next; |
| 2940 | } |
| 2941 | else |
| 2942 | mp->m_next = next; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2943 | maxsize = mp->m_size; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2944 | |
| 2945 | /* if *curr and *mp are concatenated, join them */ |
| 2946 | if (prev != NULL && (char_u *)curr + curr->m_size == (char_u *)mp) |
| 2947 | { |
| 2948 | curr->m_size += mp->m_size; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2949 | maxsize = curr->m_size; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2950 | curr->m_next = mp->m_next; |
| 2951 | curbuf->b_m_search = prev; |
| 2952 | } |
| 2953 | else |
| 2954 | { |
| 2955 | curr->m_next = mp; |
| 2956 | curbuf->b_m_search = curr; /* put curbuf->b_m_search before freed |
| 2957 | chunk */ |
| 2958 | } |
| 2959 | |
| 2960 | /* |
Bram Moolenaar | 035db9f | 2007-05-10 18:02:27 +0000 | [diff] [blame] | 2961 | * If the block only contains free memory now, release it. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2962 | */ |
| 2963 | if (!keep && curbuf->b_mb_current->mb_size |
| 2964 | == curbuf->b_mb_current->mb_info.m_next->m_size) |
| 2965 | { |
| 2966 | /* Find the block before the current one to be able to unlink it from |
| 2967 | * the list of blocks. */ |
| 2968 | prevb = &curbuf->b_block_head; |
| 2969 | for (nextb = prevb->mb_next; nextb != curbuf->b_mb_current; |
| 2970 | nextb = nextb->mb_next) |
| 2971 | prevb = nextb; |
| 2972 | prevb->mb_next = nextb->mb_next; |
| 2973 | vim_free(nextb); |
| 2974 | curbuf->b_mb_current = NULL; |
| 2975 | curbuf->b_m_search = NULL; |
| 2976 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 2977 | else if (curbuf->b_mb_current->mb_maxsize < maxsize) |
| 2978 | curbuf->b_mb_current->mb_maxsize = maxsize; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2979 | } |
| 2980 | |
| 2981 | /* |
| 2982 | * Allocate and initialize a new line structure with room for at least |
| 2983 | * 'size' characters plus a terminating NUL. |
| 2984 | */ |
| 2985 | static char_u * |
| 2986 | u_alloc_line(size) |
| 2987 | unsigned size; |
| 2988 | { |
| 2989 | minfo_T *mp, *mprev, *mp2; |
| 2990 | mblock_T *mbp; |
| 2991 | int size_align; |
| 2992 | |
| 2993 | /* |
| 2994 | * Add room for size field and trailing NUL byte. |
| 2995 | * Adjust for minimal size (must be able to store minfo_T |
| 2996 | * plus a trailing NUL, so the chunk can be released again) |
| 2997 | */ |
| 2998 | size += M_OFFSET + 1; |
| 2999 | if (size < sizeof(minfo_T) + 1) |
| 3000 | size = sizeof(minfo_T) + 1; |
| 3001 | |
| 3002 | /* |
| 3003 | * round size up for alignment |
| 3004 | */ |
| 3005 | size_align = (size + ALIGN_MASK) & ~ALIGN_MASK; |
| 3006 | |
| 3007 | /* |
| 3008 | * If curbuf->b_m_search is NULL (uninitialized free list) start at |
| 3009 | * curbuf->b_block_head |
| 3010 | */ |
| 3011 | if (curbuf->b_mb_current == NULL || curbuf->b_m_search == NULL) |
| 3012 | { |
| 3013 | curbuf->b_mb_current = &curbuf->b_block_head; |
| 3014 | curbuf->b_m_search = &(curbuf->b_block_head.mb_info); |
| 3015 | } |
| 3016 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3017 | /* Search for a block with enough space. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3018 | mbp = curbuf->b_mb_current; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3019 | while (mbp->mb_maxsize < size_align) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3020 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3021 | if (mbp->mb_next != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3022 | mbp = mbp->mb_next; |
| 3023 | else |
| 3024 | mbp = &curbuf->b_block_head; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3025 | if (mbp == curbuf->b_mb_current) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3026 | { |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3027 | int n = (size_align > (MEMBLOCKSIZE / 4) |
| 3028 | ? size_align : MEMBLOCKSIZE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3029 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3030 | /* Back where we started in block list: need to add a new block |
| 3031 | * with enough space. */ |
| 3032 | mp = (minfo_T *)u_blockalloc((long_u)n); |
| 3033 | if (mp == NULL) |
| 3034 | return (NULL); |
| 3035 | mp->m_size = n; |
| 3036 | u_free_line((char_u *)mp + M_OFFSET, TRUE); |
| 3037 | mbp = curbuf->b_mb_current; |
| 3038 | break; |
| 3039 | } |
| 3040 | } |
| 3041 | if (mbp != curbuf->b_mb_current) |
| 3042 | curbuf->b_m_search = &(mbp->mb_info); |
| 3043 | |
| 3044 | /* In this block find a chunk with enough space. */ |
| 3045 | mprev = curbuf->b_m_search; |
| 3046 | mp = curbuf->b_m_search->m_next; |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 3047 | for (;;) |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3048 | { |
| 3049 | if (mp == NULL) /* at end of the list */ |
| 3050 | mp = &(mbp->mb_info); /* wrap around to begin */ |
| 3051 | if (mp->m_size >= size) |
| 3052 | break; |
| 3053 | if (mp == curbuf->b_m_search) |
| 3054 | { |
| 3055 | /* back where we started in free chunk list: "cannot happen" */ |
| 3056 | EMSG2(_(e_intern2), "u_alloc_line()"); |
| 3057 | return NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3058 | } |
| 3059 | mprev = mp; |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3060 | mp = mp->m_next; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3061 | } |
| 3062 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3063 | /* when using the largest chunk adjust mb_maxsize */ |
| 3064 | if (mp->m_size >= mbp->mb_maxsize) |
| 3065 | mbp->mb_maxsize = 0; |
| 3066 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3067 | /* if the chunk we found is large enough, split it up in two */ |
| 3068 | if ((long)mp->m_size - size_align >= (long)(sizeof(minfo_T) + 1)) |
| 3069 | { |
| 3070 | mp2 = (minfo_T *)((char_u *)mp + size_align); |
| 3071 | mp2->m_size = mp->m_size - size_align; |
| 3072 | mp2->m_next = mp->m_next; |
| 3073 | mprev->m_next = mp2; |
| 3074 | mp->m_size = size_align; |
| 3075 | } |
| 3076 | else /* remove *mp from the free list */ |
| 3077 | { |
| 3078 | mprev->m_next = mp->m_next; |
| 3079 | } |
| 3080 | curbuf->b_m_search = mprev; |
| 3081 | curbuf->b_mb_current = mbp; |
| 3082 | |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3083 | /* If using the largest chunk need to find the new largest chunk */ |
| 3084 | if (mbp->mb_maxsize == 0) |
| 3085 | for (mp2 = &(mbp->mb_info); mp2 != NULL; mp2 = mp2->m_next) |
| 3086 | if (mbp->mb_maxsize < mp2->m_size) |
| 3087 | mbp->mb_maxsize = mp2->m_size; |
| 3088 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3089 | mp = (minfo_T *)((char_u *)mp + M_OFFSET); |
| 3090 | *(char_u *)mp = NUL; /* set the first byte to NUL */ |
| 3091 | |
| 3092 | return ((char_u *)mp); |
| 3093 | } |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3094 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3095 | |
| 3096 | /* |
| 3097 | * u_save_line(): allocate memory with u_alloc_line() and copy line 'lnum' |
| 3098 | * into it. |
| 3099 | */ |
| 3100 | static char_u * |
| 3101 | u_save_line(lnum) |
| 3102 | linenr_T lnum; |
| 3103 | { |
| 3104 | char_u *src; |
| 3105 | char_u *dst; |
| 3106 | unsigned len; |
| 3107 | |
| 3108 | src = ml_get(lnum); |
| 3109 | len = (unsigned)STRLEN(src); |
Bram Moolenaar | 26a60b4 | 2005-02-22 08:49:11 +0000 | [diff] [blame] | 3110 | if ((dst = U_ALLOC_LINE(len)) != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3111 | mch_memmove(dst, src, (size_t)(len + 1)); |
| 3112 | return (dst); |
| 3113 | } |
| 3114 | |
| 3115 | /* |
| 3116 | * Check if the 'modified' flag is set, or 'ff' has changed (only need to |
| 3117 | * check the first character, because it can only be "dos", "unix" or "mac"). |
| 3118 | * "nofile" and "scratch" type buffers are considered to always be unchanged. |
| 3119 | */ |
| 3120 | int |
| 3121 | bufIsChanged(buf) |
| 3122 | buf_T *buf; |
| 3123 | { |
| 3124 | return |
| 3125 | #ifdef FEAT_QUICKFIX |
| 3126 | !bt_dontwrite(buf) && |
| 3127 | #endif |
| 3128 | (buf->b_changed || file_ff_differs(buf)); |
| 3129 | } |
| 3130 | |
| 3131 | int |
| 3132 | curbufIsChanged() |
| 3133 | { |
| 3134 | return |
| 3135 | #ifdef FEAT_QUICKFIX |
| 3136 | !bt_dontwrite(curbuf) && |
| 3137 | #endif |
| 3138 | (curbuf->b_changed || file_ff_differs(curbuf)); |
| 3139 | } |