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 | /* for debugging */ |
| 11 | /* #define CHECK(c, s) if (c) EMSG(s) */ |
| 12 | #define CHECK(c, s) |
| 13 | |
| 14 | /* |
| 15 | * memline.c: Contains the functions for appending, deleting and changing the |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 16 | * text lines. The memfile functions are used to store the information in |
| 17 | * blocks of memory, backed up by a file. The structure of the information is |
| 18 | * a tree. The root of the tree is a pointer block. The leaves of the tree |
| 19 | * are data blocks. In between may be several layers of pointer blocks, |
| 20 | * forming branches. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 21 | * |
| 22 | * Three types of blocks are used: |
| 23 | * - Block nr 0 contains information for recovery |
| 24 | * - Pointer blocks contain list of pointers to other blocks. |
| 25 | * - Data blocks contain the actual text. |
| 26 | * |
| 27 | * Block nr 0 contains the block0 structure (see below). |
| 28 | * |
| 29 | * Block nr 1 is the first pointer block. It is the root of the tree. |
| 30 | * Other pointer blocks are branches. |
| 31 | * |
| 32 | * If a line is too big to fit in a single page, the block containing that |
| 33 | * line is made big enough to hold the line. It may span several pages. |
| 34 | * Otherwise all blocks are one page. |
| 35 | * |
| 36 | * A data block that was filled when starting to edit a file and was not |
| 37 | * changed since then, can have a negative block number. This means that it |
| 38 | * has not yet been assigned a place in the file. When recovering, the lines |
| 39 | * in this data block can be read from the original file. When the block is |
| 40 | * changed (lines appended/deleted/changed) or when it is flushed it gets a |
| 41 | * positive number. Use mf_trans_del() to get the new number, before calling |
| 42 | * mf_get(). |
| 43 | */ |
| 44 | |
| 45 | #if defined(MSDOS) || defined(WIN32) || defined(_WIN64) |
Bram Moolenaar | 362e1a3 | 2006-03-06 23:29:24 +0000 | [diff] [blame] | 46 | # include "vimio.h" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 47 | #endif |
| 48 | |
| 49 | #include "vim.h" |
| 50 | |
| 51 | #ifdef HAVE_FCNTL_H |
| 52 | # include <fcntl.h> |
| 53 | #endif |
| 54 | #ifndef UNIX /* it's in os_unix.h for Unix */ |
| 55 | # include <time.h> |
| 56 | #endif |
| 57 | |
Bram Moolenaar | 5a6404c | 2006-11-01 17:12:57 +0000 | [diff] [blame] | 58 | #if defined(SASC) || defined(__amigaos4__) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 59 | # include <proto/dos.h> /* for Open() and Close() */ |
| 60 | #endif |
| 61 | |
Bram Moolenaar | 5a6404c | 2006-11-01 17:12:57 +0000 | [diff] [blame] | 62 | #ifdef HAVE_ERRNO_H |
| 63 | # include <errno.h> |
| 64 | #endif |
| 65 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 66 | typedef struct block0 ZERO_BL; /* contents of the first block */ |
| 67 | typedef struct pointer_block PTR_BL; /* contents of a pointer block */ |
| 68 | typedef struct data_block DATA_BL; /* contents of a data block */ |
| 69 | typedef struct pointer_entry PTR_EN; /* block/line-count pair */ |
| 70 | |
| 71 | #define DATA_ID (('d' << 8) + 'a') /* data block id */ |
| 72 | #define PTR_ID (('p' << 8) + 't') /* pointer block id */ |
| 73 | #define BLOCK0_ID0 'b' /* block 0 id 0 */ |
| 74 | #define BLOCK0_ID1 '0' /* block 0 id 1 */ |
| 75 | |
| 76 | /* |
| 77 | * pointer to a block, used in a pointer block |
| 78 | */ |
| 79 | struct pointer_entry |
| 80 | { |
| 81 | blocknr_T pe_bnum; /* block number */ |
| 82 | linenr_T pe_line_count; /* number of lines in this branch */ |
| 83 | linenr_T pe_old_lnum; /* lnum for this block (for recovery) */ |
| 84 | int pe_page_count; /* number of pages in block pe_bnum */ |
| 85 | }; |
| 86 | |
| 87 | /* |
| 88 | * A pointer block contains a list of branches in the tree. |
| 89 | */ |
| 90 | struct pointer_block |
| 91 | { |
| 92 | short_u pb_id; /* ID for pointer block: PTR_ID */ |
| 93 | short_u pb_count; /* number of pointer in this block */ |
| 94 | short_u pb_count_max; /* maximum value for pb_count */ |
| 95 | PTR_EN pb_pointer[1]; /* list of pointers to blocks (actually longer) |
| 96 | * followed by empty space until end of page */ |
| 97 | }; |
| 98 | |
| 99 | /* |
| 100 | * A data block is a leaf in the tree. |
| 101 | * |
| 102 | * The text of the lines is at the end of the block. The text of the first line |
| 103 | * in the block is put at the end, the text of the second line in front of it, |
| 104 | * etc. Thus the order of the lines is the opposite of the line number. |
| 105 | */ |
| 106 | struct data_block |
| 107 | { |
| 108 | short_u db_id; /* ID for data block: DATA_ID */ |
| 109 | unsigned db_free; /* free space available */ |
| 110 | unsigned db_txt_start; /* byte where text starts */ |
| 111 | unsigned db_txt_end; /* byte just after data block */ |
| 112 | linenr_T db_line_count; /* number of lines in this block */ |
| 113 | unsigned db_index[1]; /* index for start of line (actually bigger) |
| 114 | * followed by empty space upto db_txt_start |
| 115 | * followed by the text in the lines until |
| 116 | * end of page */ |
| 117 | }; |
| 118 | |
| 119 | /* |
| 120 | * The low bits of db_index hold the actual index. The topmost bit is |
| 121 | * used for the global command to be able to mark a line. |
| 122 | * This method is not clean, but otherwise there would be at least one extra |
| 123 | * byte used for each line. |
| 124 | * The mark has to be in this place to keep it with the correct line when other |
| 125 | * lines are inserted or deleted. |
| 126 | */ |
| 127 | #define DB_MARKED ((unsigned)1 << ((sizeof(unsigned) * 8) - 1)) |
| 128 | #define DB_INDEX_MASK (~DB_MARKED) |
| 129 | |
| 130 | #define INDEX_SIZE (sizeof(unsigned)) /* size of one db_index entry */ |
| 131 | #define HEADER_SIZE (sizeof(DATA_BL) - INDEX_SIZE) /* size of data block header */ |
| 132 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 133 | #define B0_FNAME_SIZE_ORG 900 /* what it was in older versions */ |
| 134 | #define B0_FNAME_SIZE 898 |
| 135 | #define B0_UNAME_SIZE 40 |
| 136 | #define B0_HNAME_SIZE 40 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 137 | /* |
| 138 | * Restrict the numbers to 32 bits, otherwise most compilers will complain. |
| 139 | * This won't detect a 64 bit machine that only swaps a byte in the top 32 |
| 140 | * bits, but that is crazy anyway. |
| 141 | */ |
| 142 | #define B0_MAGIC_LONG 0x30313233L |
| 143 | #define B0_MAGIC_INT 0x20212223L |
| 144 | #define B0_MAGIC_SHORT 0x10111213L |
| 145 | #define B0_MAGIC_CHAR 0x55 |
| 146 | |
| 147 | /* |
| 148 | * Block zero holds all info about the swap file. |
| 149 | * |
| 150 | * NOTE: DEFINITION OF BLOCK 0 SHOULD NOT CHANGE! It would make all existing |
| 151 | * swap files unusable! |
| 152 | * |
| 153 | * If size of block0 changes anyway, adjust MIN_SWAP_PAGE_SIZE in vim.h!! |
| 154 | * |
| 155 | * This block is built up of single bytes, to make it portable accros |
| 156 | * different machines. b0_magic_* is used to check the byte order and size of |
| 157 | * variables, because the rest of the swap file is not portable. |
| 158 | */ |
| 159 | struct block0 |
| 160 | { |
| 161 | char_u b0_id[2]; /* id for block 0: BLOCK0_ID0 and BLOCK0_ID1 */ |
| 162 | char_u b0_version[10]; /* Vim version string */ |
| 163 | char_u b0_page_size[4];/* number of bytes per page */ |
| 164 | char_u b0_mtime[4]; /* last modification time of file */ |
| 165 | char_u b0_ino[4]; /* inode of b0_fname */ |
| 166 | char_u b0_pid[4]; /* process id of creator (or 0) */ |
| 167 | char_u b0_uname[B0_UNAME_SIZE]; /* name of user (uid if no name) */ |
| 168 | char_u b0_hname[B0_HNAME_SIZE]; /* host name (if it has a name) */ |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 169 | char_u b0_fname[B0_FNAME_SIZE_ORG]; /* name of file being edited */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 170 | long b0_magic_long; /* check for byte order of long */ |
| 171 | int b0_magic_int; /* check for byte order of int */ |
| 172 | short b0_magic_short; /* check for byte order of short */ |
| 173 | char_u b0_magic_char; /* check for last char */ |
| 174 | }; |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 175 | |
| 176 | /* |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 177 | * Note: b0_dirty and b0_flags are put at the end of the file name. For very |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 178 | * long file names in older versions of Vim they are invalid. |
| 179 | * The 'fileencoding' comes before b0_flags, with a NUL in front. But only |
| 180 | * when there is room, for very long file names it's omitted. |
| 181 | */ |
| 182 | #define B0_DIRTY 0x55 |
| 183 | #define b0_dirty b0_fname[B0_FNAME_SIZE_ORG-1] |
| 184 | |
| 185 | /* |
| 186 | * The b0_flags field is new in Vim 7.0. |
| 187 | */ |
| 188 | #define b0_flags b0_fname[B0_FNAME_SIZE_ORG-2] |
| 189 | |
| 190 | /* The lowest two bits contain the fileformat. Zero means it's not set |
| 191 | * (compatible with Vim 6.x), otherwise it's EOL_UNIX + 1, EOL_DOS + 1 or |
| 192 | * EOL_MAC + 1. */ |
| 193 | #define B0_FF_MASK 3 |
| 194 | |
| 195 | /* Swap file is in directory of edited file. Used to find the file from |
| 196 | * different mount points. */ |
| 197 | #define B0_SAME_DIR 4 |
| 198 | |
| 199 | /* The 'fileencoding' is at the end of b0_fname[], with a NUL in front of it. |
| 200 | * When empty there is only the NUL. */ |
| 201 | #define B0_HAS_FENC 8 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 202 | |
| 203 | #define STACK_INCR 5 /* nr of entries added to ml_stack at a time */ |
| 204 | |
| 205 | /* |
| 206 | * The line number where the first mark may be is remembered. |
| 207 | * If it is 0 there are no marks at all. |
| 208 | * (always used for the current buffer only, no buffer change possible while |
| 209 | * executing a global command). |
| 210 | */ |
| 211 | static linenr_T lowest_marked = 0; |
| 212 | |
| 213 | /* |
| 214 | * arguments for ml_find_line() |
| 215 | */ |
| 216 | #define ML_DELETE 0x11 /* delete line */ |
| 217 | #define ML_INSERT 0x12 /* insert line */ |
| 218 | #define ML_FIND 0x13 /* just find the line */ |
| 219 | #define ML_FLUSH 0x02 /* flush locked block */ |
| 220 | #define ML_SIMPLE(x) (x & 0x10) /* DEL, INS or FIND */ |
| 221 | |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 222 | static void ml_upd_block0 __ARGS((buf_T *buf, int set_fname)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 223 | static void set_b0_fname __ARGS((ZERO_BL *, buf_T *buf)); |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 224 | static void set_b0_dir_flag __ARGS((ZERO_BL *b0p, buf_T *buf)); |
| 225 | #ifdef FEAT_MBYTE |
| 226 | static void add_b0_fenc __ARGS((ZERO_BL *b0p, buf_T *buf)); |
| 227 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 228 | static time_t swapfile_info __ARGS((char_u *)); |
| 229 | static int recov_file_names __ARGS((char_u **, char_u *, int prepend_dot)); |
| 230 | static int ml_append_int __ARGS((buf_T *, linenr_T, char_u *, colnr_T, int, int)); |
| 231 | static int ml_delete_int __ARGS((buf_T *, linenr_T, int)); |
| 232 | static char_u *findswapname __ARGS((buf_T *, char_u **, char_u *)); |
| 233 | static void ml_flush_line __ARGS((buf_T *)); |
| 234 | static bhdr_T *ml_new_data __ARGS((memfile_T *, int, int)); |
| 235 | static bhdr_T *ml_new_ptr __ARGS((memfile_T *)); |
| 236 | static bhdr_T *ml_find_line __ARGS((buf_T *, linenr_T, int)); |
| 237 | static int ml_add_stack __ARGS((buf_T *)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 238 | static void ml_lineadd __ARGS((buf_T *, int)); |
| 239 | static int b0_magic_wrong __ARGS((ZERO_BL *)); |
| 240 | #ifdef CHECK_INODE |
| 241 | static int fnamecmp_ino __ARGS((char_u *, char_u *, long)); |
| 242 | #endif |
| 243 | static void long_to_char __ARGS((long, char_u *)); |
| 244 | static long char_to_long __ARGS((char_u *)); |
| 245 | #if defined(UNIX) || defined(WIN3264) |
| 246 | static char_u *make_percent_swname __ARGS((char_u *dir, char_u *name)); |
| 247 | #endif |
| 248 | #ifdef FEAT_BYTEOFF |
| 249 | static void ml_updatechunk __ARGS((buf_T *buf, long line, long len, int updtype)); |
| 250 | #endif |
| 251 | |
| 252 | /* |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 253 | * Open a new memline for "buf". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 254 | * |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 255 | * Return FAIL for failure, OK otherwise. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 256 | */ |
| 257 | int |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 258 | ml_open(buf) |
| 259 | buf_T *buf; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 260 | { |
| 261 | memfile_T *mfp; |
| 262 | bhdr_T *hp = NULL; |
| 263 | ZERO_BL *b0p; |
| 264 | PTR_BL *pp; |
| 265 | DATA_BL *dp; |
| 266 | |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 267 | /* |
| 268 | * init fields in memline struct |
| 269 | */ |
| 270 | buf->b_ml.ml_stack_size = 0; /* no stack yet */ |
| 271 | buf->b_ml.ml_stack = NULL; /* no stack yet */ |
| 272 | buf->b_ml.ml_stack_top = 0; /* nothing in the stack */ |
| 273 | buf->b_ml.ml_locked = NULL; /* no cached block */ |
| 274 | buf->b_ml.ml_line_lnum = 0; /* no cached line */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 275 | #ifdef FEAT_BYTEOFF |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 276 | buf->b_ml.ml_chunksize = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 277 | #endif |
| 278 | |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 279 | /* |
| 280 | * When 'updatecount' is non-zero swap file may be opened later. |
| 281 | */ |
| 282 | if (p_uc && buf->b_p_swf) |
| 283 | buf->b_may_swap = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 284 | else |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 285 | buf->b_may_swap = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 286 | |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 287 | /* |
| 288 | * Open the memfile. No swap file is created yet. |
| 289 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 290 | mfp = mf_open(NULL, 0); |
| 291 | if (mfp == NULL) |
| 292 | goto error; |
| 293 | |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 294 | buf->b_ml.ml_mfp = mfp; |
| 295 | buf->b_ml.ml_flags = ML_EMPTY; |
| 296 | buf->b_ml.ml_line_count = 1; |
Bram Moolenaar | 592e0a2 | 2004-07-03 16:05:59 +0000 | [diff] [blame] | 297 | #ifdef FEAT_LINEBREAK |
| 298 | curwin->w_nrwidth_line_count = 0; |
| 299 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 300 | |
| 301 | #if defined(MSDOS) && !defined(DJGPP) |
| 302 | /* for 16 bit MS-DOS create a swapfile now, because we run out of |
| 303 | * memory very quickly */ |
| 304 | if (p_uc != 0) |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 305 | ml_open_file(buf); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 306 | #endif |
| 307 | |
| 308 | /* |
| 309 | * fill block0 struct and write page 0 |
| 310 | */ |
| 311 | if ((hp = mf_new(mfp, FALSE, 1)) == NULL) |
| 312 | goto error; |
| 313 | if (hp->bh_bnum != 0) |
| 314 | { |
| 315 | EMSG(_("E298: Didn't get block nr 0?")); |
| 316 | goto error; |
| 317 | } |
| 318 | b0p = (ZERO_BL *)(hp->bh_data); |
| 319 | |
| 320 | b0p->b0_id[0] = BLOCK0_ID0; |
| 321 | b0p->b0_id[1] = BLOCK0_ID1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 322 | b0p->b0_magic_long = (long)B0_MAGIC_LONG; |
| 323 | b0p->b0_magic_int = (int)B0_MAGIC_INT; |
| 324 | b0p->b0_magic_short = (short)B0_MAGIC_SHORT; |
| 325 | b0p->b0_magic_char = B0_MAGIC_CHAR; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 326 | STRNCPY(b0p->b0_version, "VIM ", 4); |
| 327 | STRNCPY(b0p->b0_version + 4, Version, 6); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 328 | long_to_char((long)mfp->mf_page_size, b0p->b0_page_size); |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 329 | |
Bram Moolenaar | 76b92b2 | 2006-03-24 22:46:53 +0000 | [diff] [blame] | 330 | #ifdef FEAT_SPELL |
| 331 | if (!buf->b_spell) |
| 332 | #endif |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 333 | { |
| 334 | b0p->b0_dirty = buf->b_changed ? B0_DIRTY : 0; |
| 335 | b0p->b0_flags = get_fileformat(buf) + 1; |
| 336 | set_b0_fname(b0p, buf); |
| 337 | (void)get_user_name(b0p->b0_uname, B0_UNAME_SIZE); |
| 338 | b0p->b0_uname[B0_UNAME_SIZE - 1] = NUL; |
| 339 | mch_get_host_name(b0p->b0_hname, B0_HNAME_SIZE); |
| 340 | b0p->b0_hname[B0_HNAME_SIZE - 1] = NUL; |
| 341 | long_to_char(mch_get_pid(), b0p->b0_pid); |
| 342 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 343 | |
| 344 | /* |
| 345 | * Always sync block number 0 to disk, so we can check the file name in |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 346 | * the swap file in findswapname(). Don't do this for help files though |
| 347 | * and spell buffer though. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 348 | * Only works when there's a swapfile, otherwise it's done when the file |
| 349 | * is created. |
| 350 | */ |
| 351 | mf_put(mfp, hp, TRUE, FALSE); |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 352 | if (!buf->b_help && !B_SPELL(buf)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 353 | (void)mf_sync(mfp, 0); |
| 354 | |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 355 | /* |
| 356 | * Fill in root pointer block and write page 1. |
| 357 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 358 | if ((hp = ml_new_ptr(mfp)) == NULL) |
| 359 | goto error; |
| 360 | if (hp->bh_bnum != 1) |
| 361 | { |
| 362 | EMSG(_("E298: Didn't get block nr 1?")); |
| 363 | goto error; |
| 364 | } |
| 365 | pp = (PTR_BL *)(hp->bh_data); |
| 366 | pp->pb_count = 1; |
| 367 | pp->pb_pointer[0].pe_bnum = 2; |
| 368 | pp->pb_pointer[0].pe_page_count = 1; |
| 369 | pp->pb_pointer[0].pe_old_lnum = 1; |
| 370 | pp->pb_pointer[0].pe_line_count = 1; /* line count after insertion */ |
| 371 | mf_put(mfp, hp, TRUE, FALSE); |
| 372 | |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 373 | /* |
| 374 | * Allocate first data block and create an empty line 1. |
| 375 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 376 | if ((hp = ml_new_data(mfp, FALSE, 1)) == NULL) |
| 377 | goto error; |
| 378 | if (hp->bh_bnum != 2) |
| 379 | { |
| 380 | EMSG(_("E298: Didn't get block nr 2?")); |
| 381 | goto error; |
| 382 | } |
| 383 | |
| 384 | dp = (DATA_BL *)(hp->bh_data); |
| 385 | dp->db_index[0] = --dp->db_txt_start; /* at end of block */ |
| 386 | dp->db_free -= 1 + INDEX_SIZE; |
| 387 | dp->db_line_count = 1; |
| 388 | *((char_u *)dp + dp->db_txt_start) = NUL; /* emtpy line */ |
| 389 | |
| 390 | return OK; |
| 391 | |
| 392 | error: |
| 393 | if (mfp != NULL) |
| 394 | { |
| 395 | if (hp) |
| 396 | mf_put(mfp, hp, FALSE, FALSE); |
| 397 | mf_close(mfp, TRUE); /* will also free(mfp->mf_fname) */ |
| 398 | } |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 399 | buf->b_ml.ml_mfp = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 400 | return FAIL; |
| 401 | } |
| 402 | |
| 403 | /* |
| 404 | * ml_setname() is called when the file name of "buf" has been changed. |
| 405 | * It may rename the swap file. |
| 406 | */ |
| 407 | void |
| 408 | ml_setname(buf) |
| 409 | buf_T *buf; |
| 410 | { |
| 411 | int success = FALSE; |
| 412 | memfile_T *mfp; |
| 413 | char_u *fname; |
| 414 | char_u *dirp; |
| 415 | #if defined(MSDOS) || defined(MSWIN) |
| 416 | char_u *p; |
| 417 | #endif |
| 418 | |
| 419 | mfp = buf->b_ml.ml_mfp; |
| 420 | if (mfp->mf_fd < 0) /* there is no swap file yet */ |
| 421 | { |
| 422 | /* |
| 423 | * When 'updatecount' is 0 and 'noswapfile' there is no swap file. |
| 424 | * For help files we will make a swap file now. |
| 425 | */ |
| 426 | if (p_uc != 0) |
| 427 | ml_open_file(buf); /* create a swap file */ |
| 428 | return; |
| 429 | } |
| 430 | |
| 431 | /* |
| 432 | * Try all directories in the 'directory' option. |
| 433 | */ |
| 434 | dirp = p_dir; |
| 435 | for (;;) |
| 436 | { |
| 437 | if (*dirp == NUL) /* tried all directories, fail */ |
| 438 | break; |
Bram Moolenaar | 8fc061c | 2004-12-29 21:03:02 +0000 | [diff] [blame] | 439 | fname = findswapname(buf, &dirp, mfp->mf_fname); |
| 440 | /* alloc's fname */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 441 | if (fname == NULL) /* no file name found for this dir */ |
| 442 | continue; |
| 443 | |
| 444 | #if defined(MSDOS) || defined(MSWIN) |
| 445 | /* |
| 446 | * Set full pathname for swap file now, because a ":!cd dir" may |
| 447 | * change directory without us knowing it. |
| 448 | */ |
| 449 | p = FullName_save(fname, FALSE); |
| 450 | vim_free(fname); |
| 451 | fname = p; |
| 452 | if (fname == NULL) |
| 453 | continue; |
| 454 | #endif |
| 455 | /* if the file name is the same we don't have to do anything */ |
| 456 | if (fnamecmp(fname, mfp->mf_fname) == 0) |
| 457 | { |
| 458 | vim_free(fname); |
| 459 | success = TRUE; |
| 460 | break; |
| 461 | } |
| 462 | /* need to close the swap file before renaming */ |
| 463 | if (mfp->mf_fd >= 0) |
| 464 | { |
| 465 | close(mfp->mf_fd); |
| 466 | mfp->mf_fd = -1; |
| 467 | } |
| 468 | |
| 469 | /* try to rename the swap file */ |
| 470 | if (vim_rename(mfp->mf_fname, fname) == 0) |
| 471 | { |
| 472 | success = TRUE; |
| 473 | vim_free(mfp->mf_fname); |
| 474 | mfp->mf_fname = fname; |
| 475 | vim_free(mfp->mf_ffname); |
| 476 | #if defined(MSDOS) || defined(MSWIN) |
| 477 | mfp->mf_ffname = NULL; /* mf_fname is full pathname already */ |
| 478 | #else |
| 479 | mf_set_ffname(mfp); |
| 480 | #endif |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 481 | ml_upd_block0(buf, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 482 | break; |
| 483 | } |
| 484 | vim_free(fname); /* this fname didn't work, try another */ |
| 485 | } |
| 486 | |
| 487 | if (mfp->mf_fd == -1) /* need to (re)open the swap file */ |
| 488 | { |
| 489 | mfp->mf_fd = mch_open((char *)mfp->mf_fname, O_RDWR | O_EXTRA, 0); |
| 490 | if (mfp->mf_fd < 0) |
| 491 | { |
| 492 | /* could not (re)open the swap file, what can we do???? */ |
| 493 | EMSG(_("E301: Oops, lost the swap file!!!")); |
| 494 | return; |
| 495 | } |
| 496 | } |
| 497 | if (!success) |
| 498 | EMSG(_("E302: Could not rename swap file")); |
| 499 | } |
| 500 | |
| 501 | /* |
| 502 | * Open a file for the memfile for all buffers that are not readonly or have |
| 503 | * been modified. |
| 504 | * Used when 'updatecount' changes from zero to non-zero. |
| 505 | */ |
| 506 | void |
| 507 | ml_open_files() |
| 508 | { |
| 509 | buf_T *buf; |
| 510 | |
| 511 | for (buf = firstbuf; buf != NULL; buf = buf->b_next) |
| 512 | if (!buf->b_p_ro || buf->b_changed) |
| 513 | ml_open_file(buf); |
| 514 | } |
| 515 | |
| 516 | /* |
| 517 | * Open a swap file for an existing memfile, if there is no swap file yet. |
| 518 | * If we are unable to find a file name, mf_fname will be NULL |
| 519 | * and the memfile will be in memory only (no recovery possible). |
| 520 | */ |
| 521 | void |
| 522 | ml_open_file(buf) |
| 523 | buf_T *buf; |
| 524 | { |
| 525 | memfile_T *mfp; |
| 526 | char_u *fname; |
| 527 | char_u *dirp; |
| 528 | |
| 529 | mfp = buf->b_ml.ml_mfp; |
| 530 | if (mfp == NULL || mfp->mf_fd >= 0 || !buf->b_p_swf) |
| 531 | return; /* nothing to do */ |
| 532 | |
Bram Moolenaar | a1956f6 | 2006-03-12 22:18:00 +0000 | [diff] [blame] | 533 | #ifdef FEAT_SPELL |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 534 | /* For a spell buffer use a temp file name. */ |
| 535 | if (buf->b_spell) |
| 536 | { |
| 537 | fname = vim_tempname('s'); |
| 538 | if (fname != NULL) |
| 539 | (void)mf_open_file(mfp, fname); /* consumes fname! */ |
| 540 | buf->b_may_swap = FALSE; |
| 541 | return; |
| 542 | } |
| 543 | #endif |
| 544 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 545 | /* |
| 546 | * Try all directories in 'directory' option. |
| 547 | */ |
| 548 | dirp = p_dir; |
| 549 | for (;;) |
| 550 | { |
| 551 | if (*dirp == NUL) |
| 552 | break; |
| 553 | /* There is a small chance that between chosing the swap file name and |
| 554 | * creating it, another Vim creates the file. In that case the |
| 555 | * creation will fail and we will use another directory. */ |
Bram Moolenaar | 8fc061c | 2004-12-29 21:03:02 +0000 | [diff] [blame] | 556 | fname = findswapname(buf, &dirp, NULL); /* allocates fname */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 557 | if (fname == NULL) |
| 558 | continue; |
| 559 | if (mf_open_file(mfp, fname) == OK) /* consumes fname! */ |
| 560 | { |
| 561 | #if defined(MSDOS) || defined(MSWIN) || defined(RISCOS) |
| 562 | /* |
| 563 | * set full pathname for swap file now, because a ":!cd dir" may |
| 564 | * change directory without us knowing it. |
| 565 | */ |
| 566 | mf_fullname(mfp); |
| 567 | #endif |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 568 | ml_upd_block0(buf, FALSE); |
| 569 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 570 | /* Flush block zero, so others can read it */ |
| 571 | if (mf_sync(mfp, MFS_ZERO) == OK) |
Bram Moolenaar | c32840f | 2006-01-14 21:23:38 +0000 | [diff] [blame] | 572 | { |
| 573 | /* Mark all blocks that should be in the swapfile as dirty. |
| 574 | * Needed for when the 'swapfile' option was reset, so that |
| 575 | * the swap file was deleted, and then on again. */ |
| 576 | mf_set_dirty(mfp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 577 | break; |
Bram Moolenaar | c32840f | 2006-01-14 21:23:38 +0000 | [diff] [blame] | 578 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 579 | /* Writing block 0 failed: close the file and try another dir */ |
| 580 | mf_close_file(buf, FALSE); |
| 581 | } |
| 582 | } |
| 583 | |
| 584 | if (mfp->mf_fname == NULL) /* Failed! */ |
| 585 | { |
| 586 | need_wait_return = TRUE; /* call wait_return later */ |
| 587 | ++no_wait_return; |
| 588 | (void)EMSG2(_("E303: Unable to open swap file for \"%s\", recovery impossible"), |
| 589 | buf_spname(buf) != NULL |
| 590 | ? (char_u *)buf_spname(buf) |
| 591 | : buf->b_fname); |
| 592 | --no_wait_return; |
| 593 | } |
| 594 | |
| 595 | /* don't try to open a swap file again */ |
| 596 | buf->b_may_swap = FALSE; |
| 597 | } |
| 598 | |
| 599 | /* |
| 600 | * If still need to create a swap file, and starting to edit a not-readonly |
| 601 | * file, or reading into an existing buffer, create a swap file now. |
| 602 | */ |
| 603 | void |
| 604 | check_need_swap(newfile) |
| 605 | int newfile; /* reading file into new buffer */ |
| 606 | { |
| 607 | if (curbuf->b_may_swap && (!curbuf->b_p_ro || !newfile)) |
| 608 | ml_open_file(curbuf); |
| 609 | } |
| 610 | |
| 611 | /* |
| 612 | * Close memline for buffer 'buf'. |
| 613 | * If 'del_file' is TRUE, delete the swap file |
| 614 | */ |
| 615 | void |
| 616 | ml_close(buf, del_file) |
| 617 | buf_T *buf; |
| 618 | int del_file; |
| 619 | { |
| 620 | if (buf->b_ml.ml_mfp == NULL) /* not open */ |
| 621 | return; |
| 622 | mf_close(buf->b_ml.ml_mfp, del_file); /* close the .swp file */ |
| 623 | if (buf->b_ml.ml_line_lnum != 0 && (buf->b_ml.ml_flags & ML_LINE_DIRTY)) |
| 624 | vim_free(buf->b_ml.ml_line_ptr); |
| 625 | vim_free(buf->b_ml.ml_stack); |
| 626 | #ifdef FEAT_BYTEOFF |
| 627 | vim_free(buf->b_ml.ml_chunksize); |
| 628 | buf->b_ml.ml_chunksize = NULL; |
| 629 | #endif |
| 630 | buf->b_ml.ml_mfp = NULL; |
| 631 | |
| 632 | /* Reset the "recovered" flag, give the ATTENTION prompt the next time |
| 633 | * this buffer is loaded. */ |
| 634 | buf->b_flags &= ~BF_RECOVERED; |
| 635 | } |
| 636 | |
| 637 | /* |
| 638 | * Close all existing memlines and memfiles. |
| 639 | * Only used when exiting. |
| 640 | * When 'del_file' is TRUE, delete the memfiles. |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 641 | * But don't delete files that were ":preserve"d when we are POSIX compatible. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 642 | */ |
| 643 | void |
| 644 | ml_close_all(del_file) |
| 645 | int del_file; |
| 646 | { |
| 647 | buf_T *buf; |
| 648 | |
| 649 | for (buf = firstbuf; buf != NULL; buf = buf->b_next) |
Bram Moolenaar | 81bf708 | 2005-02-12 14:31:42 +0000 | [diff] [blame] | 650 | ml_close(buf, del_file && ((buf->b_flags & BF_PRESERVED) == 0 |
| 651 | || vim_strchr(p_cpo, CPO_PRESERVE) == NULL)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 652 | #ifdef TEMPDIRNAMES |
| 653 | vim_deltempdir(); /* delete created temp directory */ |
| 654 | #endif |
| 655 | } |
| 656 | |
| 657 | /* |
| 658 | * Close all memfiles for not modified buffers. |
| 659 | * Only use just before exiting! |
| 660 | */ |
| 661 | void |
| 662 | ml_close_notmod() |
| 663 | { |
| 664 | buf_T *buf; |
| 665 | |
| 666 | for (buf = firstbuf; buf != NULL; buf = buf->b_next) |
| 667 | if (!bufIsChanged(buf)) |
| 668 | ml_close(buf, TRUE); /* close all not-modified buffers */ |
| 669 | } |
| 670 | |
| 671 | /* |
| 672 | * Update the timestamp in the .swp file. |
| 673 | * Used when the file has been written. |
| 674 | */ |
| 675 | void |
| 676 | ml_timestamp(buf) |
| 677 | buf_T *buf; |
| 678 | { |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 679 | ml_upd_block0(buf, TRUE); |
| 680 | } |
| 681 | |
| 682 | /* |
| 683 | * Update the timestamp or the B0_SAME_DIR flag of the .swp file. |
| 684 | */ |
| 685 | static void |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 686 | ml_upd_block0(buf, set_fname) |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 687 | buf_T *buf; |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 688 | int set_fname; |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 689 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 690 | memfile_T *mfp; |
| 691 | bhdr_T *hp; |
| 692 | ZERO_BL *b0p; |
| 693 | |
| 694 | mfp = buf->b_ml.ml_mfp; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 695 | if (mfp == NULL || (hp = mf_get(mfp, (blocknr_T)0, 1)) == NULL) |
| 696 | return; |
| 697 | b0p = (ZERO_BL *)(hp->bh_data); |
| 698 | if (b0p->b0_id[0] != BLOCK0_ID0 || b0p->b0_id[1] != BLOCK0_ID1) |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 699 | EMSG(_("E304: ml_upd_block0(): Didn't get block 0??")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 700 | else |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 701 | { |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 702 | if (set_fname) |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 703 | set_b0_fname(b0p, buf); |
| 704 | else |
| 705 | set_b0_dir_flag(b0p, buf); |
| 706 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 707 | mf_put(mfp, hp, TRUE, FALSE); |
| 708 | } |
| 709 | |
| 710 | /* |
| 711 | * Write file name and timestamp into block 0 of a swap file. |
| 712 | * Also set buf->b_mtime. |
| 713 | * Don't use NameBuff[]!!! |
| 714 | */ |
| 715 | static void |
| 716 | set_b0_fname(b0p, buf) |
| 717 | ZERO_BL *b0p; |
| 718 | buf_T *buf; |
| 719 | { |
| 720 | struct stat st; |
| 721 | |
| 722 | if (buf->b_ffname == NULL) |
| 723 | b0p->b0_fname[0] = NUL; |
| 724 | else |
| 725 | { |
| 726 | #if defined(MSDOS) || defined(MSWIN) || defined(AMIGA) || defined(RISCOS) |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 727 | /* Systems that cannot translate "~user" back into a path: copy the |
| 728 | * file name unmodified. Do use slashes instead of backslashes for |
| 729 | * portability. */ |
Bram Moolenaar | ce0842a | 2005-07-18 21:58:11 +0000 | [diff] [blame] | 730 | vim_strncpy(b0p->b0_fname, buf->b_ffname, B0_FNAME_SIZE - 1); |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 731 | # ifdef BACKSLASH_IN_FILENAME |
| 732 | forward_slash(b0p->b0_fname); |
| 733 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 734 | #else |
| 735 | size_t flen, ulen; |
| 736 | char_u uname[B0_UNAME_SIZE]; |
| 737 | |
| 738 | /* |
| 739 | * For a file under the home directory of the current user, we try to |
| 740 | * replace the home directory path with "~user". This helps when |
| 741 | * editing the same file on different machines over a network. |
| 742 | * First replace home dir path with "~/" with home_replace(). |
| 743 | * Then insert the user name to get "~user/". |
| 744 | */ |
| 745 | home_replace(NULL, buf->b_ffname, b0p->b0_fname, B0_FNAME_SIZE, TRUE); |
| 746 | if (b0p->b0_fname[0] == '~') |
| 747 | { |
| 748 | flen = STRLEN(b0p->b0_fname); |
| 749 | /* If there is no user name or it is too long, don't use "~/" */ |
| 750 | if (get_user_name(uname, B0_UNAME_SIZE) == FAIL |
| 751 | || (ulen = STRLEN(uname)) + flen > B0_FNAME_SIZE - 1) |
Bram Moolenaar | ce0842a | 2005-07-18 21:58:11 +0000 | [diff] [blame] | 752 | vim_strncpy(b0p->b0_fname, buf->b_ffname, B0_FNAME_SIZE - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 753 | else |
| 754 | { |
| 755 | mch_memmove(b0p->b0_fname + ulen + 1, b0p->b0_fname + 1, flen); |
| 756 | mch_memmove(b0p->b0_fname + 1, uname, ulen); |
| 757 | } |
| 758 | } |
| 759 | #endif |
| 760 | if (mch_stat((char *)buf->b_ffname, &st) >= 0) |
| 761 | { |
| 762 | long_to_char((long)st.st_mtime, b0p->b0_mtime); |
| 763 | #ifdef CHECK_INODE |
| 764 | long_to_char((long)st.st_ino, b0p->b0_ino); |
| 765 | #endif |
| 766 | buf_store_time(buf, &st, buf->b_ffname); |
| 767 | buf->b_mtime_read = buf->b_mtime; |
| 768 | } |
| 769 | else |
| 770 | { |
| 771 | long_to_char(0L, b0p->b0_mtime); |
| 772 | #ifdef CHECK_INODE |
| 773 | long_to_char(0L, b0p->b0_ino); |
| 774 | #endif |
| 775 | buf->b_mtime = 0; |
| 776 | buf->b_mtime_read = 0; |
| 777 | buf->b_orig_size = 0; |
| 778 | buf->b_orig_mode = 0; |
| 779 | } |
| 780 | } |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 781 | |
| 782 | #ifdef FEAT_MBYTE |
| 783 | /* Also add the 'fileencoding' if there is room. */ |
| 784 | add_b0_fenc(b0p, curbuf); |
| 785 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 786 | } |
| 787 | |
| 788 | /* |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 789 | * Update the B0_SAME_DIR flag of the swap file. It's set if the file and the |
| 790 | * swapfile for "buf" are in the same directory. |
| 791 | * This is fail safe: if we are not sure the directories are equal the flag is |
| 792 | * not set. |
| 793 | */ |
| 794 | static void |
| 795 | set_b0_dir_flag(b0p, buf) |
| 796 | ZERO_BL *b0p; |
| 797 | buf_T *buf; |
| 798 | { |
| 799 | if (same_directory(buf->b_ml.ml_mfp->mf_fname, buf->b_ffname)) |
| 800 | b0p->b0_flags |= B0_SAME_DIR; |
| 801 | else |
| 802 | b0p->b0_flags &= ~B0_SAME_DIR; |
| 803 | } |
| 804 | |
| 805 | #ifdef FEAT_MBYTE |
| 806 | /* |
| 807 | * When there is room, add the 'fileencoding' to block zero. |
| 808 | */ |
| 809 | static void |
| 810 | add_b0_fenc(b0p, buf) |
| 811 | ZERO_BL *b0p; |
| 812 | buf_T *buf; |
| 813 | { |
| 814 | int n; |
| 815 | |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 816 | n = (int)STRLEN(buf->b_p_fenc); |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 817 | if (STRLEN(b0p->b0_fname) + n + 1 > B0_FNAME_SIZE) |
| 818 | b0p->b0_flags &= ~B0_HAS_FENC; |
| 819 | else |
| 820 | { |
| 821 | mch_memmove((char *)b0p->b0_fname + B0_FNAME_SIZE - n, |
| 822 | (char *)buf->b_p_fenc, (size_t)n); |
| 823 | *(b0p->b0_fname + B0_FNAME_SIZE - n - 1) = NUL; |
| 824 | b0p->b0_flags |= B0_HAS_FENC; |
| 825 | } |
| 826 | } |
| 827 | #endif |
| 828 | |
| 829 | |
| 830 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 831 | * try to recover curbuf from the .swp file |
| 832 | */ |
| 833 | void |
| 834 | ml_recover() |
| 835 | { |
| 836 | buf_T *buf = NULL; |
| 837 | memfile_T *mfp = NULL; |
| 838 | char_u *fname; |
| 839 | bhdr_T *hp = NULL; |
| 840 | ZERO_BL *b0p; |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 841 | int b0_ff; |
| 842 | char_u *b0_fenc = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 843 | PTR_BL *pp; |
| 844 | DATA_BL *dp; |
| 845 | infoptr_T *ip; |
| 846 | blocknr_T bnum; |
| 847 | int page_count; |
| 848 | struct stat org_stat, swp_stat; |
| 849 | int len; |
| 850 | int directly; |
| 851 | linenr_T lnum; |
| 852 | char_u *p; |
| 853 | int i; |
| 854 | long error; |
| 855 | int cannot_open; |
| 856 | linenr_T line_count; |
| 857 | int has_error; |
| 858 | int idx; |
| 859 | int top; |
| 860 | int txt_start; |
| 861 | off_t size; |
| 862 | int called_from_main; |
| 863 | int serious_error = TRUE; |
| 864 | long mtime; |
| 865 | int attr; |
| 866 | |
| 867 | recoverymode = TRUE; |
| 868 | called_from_main = (curbuf->b_ml.ml_mfp == NULL); |
| 869 | attr = hl_attr(HLF_E); |
| 870 | /* |
| 871 | * If the file name ends in ".sw?" we use it directly. |
| 872 | * Otherwise a search is done to find the swap file(s). |
| 873 | */ |
| 874 | fname = curbuf->b_fname; |
| 875 | if (fname == NULL) /* When there is no file name */ |
| 876 | fname = (char_u *)""; |
| 877 | len = (int)STRLEN(fname); |
| 878 | if (len >= 4 && |
| 879 | #if defined(VMS) || defined(RISCOS) |
| 880 | STRNICMP(fname + len - 4, "_sw" , 3) |
| 881 | #else |
| 882 | STRNICMP(fname + len - 4, ".sw" , 3) |
| 883 | #endif |
| 884 | == 0) |
| 885 | { |
| 886 | directly = TRUE; |
| 887 | fname = vim_strsave(fname); /* make a copy for mf_open() */ |
| 888 | } |
| 889 | else |
| 890 | { |
| 891 | directly = FALSE; |
| 892 | |
| 893 | /* count the number of matching swap files */ |
| 894 | len = recover_names(&fname, FALSE, 0); |
| 895 | if (len == 0) /* no swap files found */ |
| 896 | { |
| 897 | EMSG2(_("E305: No swap file found for %s"), fname); |
| 898 | goto theend; |
| 899 | } |
| 900 | if (len == 1) /* one swap file found, use it */ |
| 901 | i = 1; |
| 902 | else /* several swap files found, choose */ |
| 903 | { |
| 904 | /* list the names of the swap files */ |
| 905 | (void)recover_names(&fname, TRUE, 0); |
| 906 | msg_putchar('\n'); |
| 907 | MSG_PUTS(_("Enter number of swap file to use (0 to quit): ")); |
Bram Moolenaar | 24bbcfe | 2005-06-28 23:32:02 +0000 | [diff] [blame] | 908 | i = get_number(FALSE, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 909 | if (i < 1 || i > len) |
| 910 | goto theend; |
| 911 | } |
| 912 | /* get the swap file name that will be used */ |
| 913 | (void)recover_names(&fname, FALSE, i); |
| 914 | } |
| 915 | if (fname == NULL) |
| 916 | goto theend; /* out of memory */ |
| 917 | |
| 918 | /* When called from main() still need to initialize storage structure */ |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 919 | if (called_from_main && ml_open(curbuf) == FAIL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 920 | getout(1); |
| 921 | |
| 922 | /* |
| 923 | * allocate a buffer structure (only the memline in it is really used) |
| 924 | */ |
| 925 | buf = (buf_T *)alloc((unsigned)sizeof(buf_T)); |
| 926 | if (buf == NULL) |
| 927 | { |
| 928 | vim_free(fname); |
| 929 | goto theend; |
| 930 | } |
| 931 | |
| 932 | /* |
| 933 | * init fields in memline struct |
| 934 | */ |
| 935 | buf->b_ml.ml_stack_size = 0; /* no stack yet */ |
| 936 | buf->b_ml.ml_stack = NULL; /* no stack yet */ |
| 937 | buf->b_ml.ml_stack_top = 0; /* nothing in the stack */ |
| 938 | buf->b_ml.ml_line_lnum = 0; /* no cached line */ |
| 939 | buf->b_ml.ml_locked = NULL; /* no locked block */ |
| 940 | buf->b_ml.ml_flags = 0; |
| 941 | |
| 942 | /* |
| 943 | * open the memfile from the old swap file |
| 944 | */ |
| 945 | p = vim_strsave(fname); /* save fname for the message |
| 946 | (mf_open() may free fname) */ |
| 947 | mfp = mf_open(fname, O_RDONLY); /* consumes fname! */ |
| 948 | if (mfp == NULL || mfp->mf_fd < 0) |
| 949 | { |
| 950 | if (p != NULL) |
| 951 | { |
| 952 | EMSG2(_("E306: Cannot open %s"), p); |
| 953 | vim_free(p); |
| 954 | } |
| 955 | goto theend; |
| 956 | } |
| 957 | vim_free(p); |
| 958 | buf->b_ml.ml_mfp = mfp; |
| 959 | |
| 960 | /* |
| 961 | * The page size set in mf_open() might be different from the page size |
| 962 | * used in the swap file, we must get it from block 0. But to read block |
| 963 | * 0 we need a page size. Use the minimal size for block 0 here, it will |
| 964 | * be set to the real value below. |
| 965 | */ |
| 966 | mfp->mf_page_size = MIN_SWAP_PAGE_SIZE; |
| 967 | |
| 968 | /* |
| 969 | * try to read block 0 |
| 970 | */ |
| 971 | if ((hp = mf_get(mfp, (blocknr_T)0, 1)) == NULL) |
| 972 | { |
| 973 | msg_start(); |
| 974 | MSG_PUTS_ATTR(_("Unable to read block 0 from "), attr | MSG_HIST); |
| 975 | msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST); |
| 976 | MSG_PUTS_ATTR( |
| 977 | _("\nMaybe no changes were made or Vim did not update the swap file."), |
| 978 | attr | MSG_HIST); |
| 979 | msg_end(); |
| 980 | goto theend; |
| 981 | } |
| 982 | b0p = (ZERO_BL *)(hp->bh_data); |
| 983 | if (STRNCMP(b0p->b0_version, "VIM 3.0", 7) == 0) |
| 984 | { |
| 985 | msg_start(); |
| 986 | msg_outtrans_attr(mfp->mf_fname, MSG_HIST); |
| 987 | MSG_PUTS_ATTR(_(" cannot be used with this version of Vim.\n"), |
| 988 | MSG_HIST); |
| 989 | MSG_PUTS_ATTR(_("Use Vim version 3.0.\n"), MSG_HIST); |
| 990 | msg_end(); |
| 991 | goto theend; |
| 992 | } |
| 993 | if (b0p->b0_id[0] != BLOCK0_ID0 || b0p->b0_id[1] != BLOCK0_ID1) |
| 994 | { |
| 995 | EMSG2(_("E307: %s does not look like a Vim swap file"), mfp->mf_fname); |
| 996 | goto theend; |
| 997 | } |
| 998 | if (b0_magic_wrong(b0p)) |
| 999 | { |
| 1000 | msg_start(); |
| 1001 | msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST); |
| 1002 | #if defined(MSDOS) || defined(MSWIN) |
| 1003 | if (STRNCMP(b0p->b0_hname, "PC ", 3) == 0) |
| 1004 | MSG_PUTS_ATTR(_(" cannot be used with this version of Vim.\n"), |
| 1005 | attr | MSG_HIST); |
| 1006 | else |
| 1007 | #endif |
| 1008 | MSG_PUTS_ATTR(_(" cannot be used on this computer.\n"), |
| 1009 | attr | MSG_HIST); |
| 1010 | MSG_PUTS_ATTR(_("The file was created on "), attr | MSG_HIST); |
| 1011 | /* avoid going past the end of a currupted hostname */ |
| 1012 | b0p->b0_fname[0] = NUL; |
| 1013 | MSG_PUTS_ATTR(b0p->b0_hname, attr | MSG_HIST); |
| 1014 | MSG_PUTS_ATTR(_(",\nor the file has been damaged."), attr | MSG_HIST); |
| 1015 | msg_end(); |
| 1016 | goto theend; |
| 1017 | } |
| 1018 | /* |
| 1019 | * If we guessed the wrong page size, we have to recalculate the |
| 1020 | * highest block number in the file. |
| 1021 | */ |
| 1022 | if (mfp->mf_page_size != (unsigned)char_to_long(b0p->b0_page_size)) |
| 1023 | { |
| 1024 | mf_new_page_size(mfp, (unsigned)char_to_long(b0p->b0_page_size)); |
| 1025 | if ((size = lseek(mfp->mf_fd, (off_t)0L, SEEK_END)) <= 0) |
| 1026 | mfp->mf_blocknr_max = 0; /* no file or empty file */ |
| 1027 | else |
| 1028 | mfp->mf_blocknr_max = (blocknr_T)(size / mfp->mf_page_size); |
| 1029 | mfp->mf_infile_count = mfp->mf_blocknr_max; |
| 1030 | } |
| 1031 | |
| 1032 | /* |
| 1033 | * If .swp file name given directly, use name from swap file for buffer. |
| 1034 | */ |
| 1035 | if (directly) |
| 1036 | { |
| 1037 | expand_env(b0p->b0_fname, NameBuff, MAXPATHL); |
| 1038 | if (setfname(curbuf, NameBuff, NULL, TRUE) == FAIL) |
| 1039 | goto theend; |
| 1040 | } |
| 1041 | |
| 1042 | home_replace(NULL, mfp->mf_fname, NameBuff, MAXPATHL, TRUE); |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 1043 | smsg((char_u *)_("Using swap file \"%s\""), NameBuff); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1044 | |
| 1045 | if (buf_spname(curbuf) != NULL) |
| 1046 | STRCPY(NameBuff, buf_spname(curbuf)); |
| 1047 | else |
| 1048 | home_replace(NULL, curbuf->b_ffname, NameBuff, MAXPATHL, TRUE); |
Bram Moolenaar | 555b280 | 2005-05-19 21:08:39 +0000 | [diff] [blame] | 1049 | smsg((char_u *)_("Original file \"%s\""), NameBuff); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1050 | msg_putchar('\n'); |
| 1051 | |
| 1052 | /* |
| 1053 | * check date of swap file and original file |
| 1054 | */ |
| 1055 | mtime = char_to_long(b0p->b0_mtime); |
| 1056 | if (curbuf->b_ffname != NULL |
| 1057 | && mch_stat((char *)curbuf->b_ffname, &org_stat) != -1 |
| 1058 | && ((mch_stat((char *)mfp->mf_fname, &swp_stat) != -1 |
| 1059 | && org_stat.st_mtime > swp_stat.st_mtime) |
| 1060 | || org_stat.st_mtime != mtime)) |
| 1061 | { |
| 1062 | EMSG(_("E308: Warning: Original file may have been changed")); |
| 1063 | } |
| 1064 | out_flush(); |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1065 | |
| 1066 | /* Get the 'fileformat' and 'fileencoding' from block zero. */ |
| 1067 | b0_ff = (b0p->b0_flags & B0_FF_MASK); |
| 1068 | if (b0p->b0_flags & B0_HAS_FENC) |
| 1069 | { |
| 1070 | for (p = b0p->b0_fname + B0_FNAME_SIZE; |
| 1071 | p > b0p->b0_fname && p[-1] != NUL; --p) |
| 1072 | ; |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 1073 | b0_fenc = vim_strnsave(p, (int)(b0p->b0_fname + B0_FNAME_SIZE - p)); |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1074 | } |
| 1075 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1076 | mf_put(mfp, hp, FALSE, FALSE); /* release block 0 */ |
| 1077 | hp = NULL; |
| 1078 | |
| 1079 | /* |
| 1080 | * Now that we are sure that the file is going to be recovered, clear the |
| 1081 | * contents of the current buffer. |
| 1082 | */ |
| 1083 | while (!(curbuf->b_ml.ml_flags & ML_EMPTY)) |
| 1084 | ml_delete((linenr_T)1, FALSE); |
| 1085 | |
| 1086 | /* |
| 1087 | * Try reading the original file to obtain the values of 'fileformat', |
| 1088 | * 'fileencoding', etc. Ignore errors. The text itself is not used. |
| 1089 | */ |
| 1090 | if (curbuf->b_ffname != NULL) |
| 1091 | { |
| 1092 | (void)readfile(curbuf->b_ffname, NULL, (linenr_T)0, |
| 1093 | (linenr_T)0, (linenr_T)MAXLNUM, NULL, READ_NEW); |
| 1094 | while (!(curbuf->b_ml.ml_flags & ML_EMPTY)) |
| 1095 | ml_delete((linenr_T)1, FALSE); |
| 1096 | } |
| 1097 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1098 | /* Use the 'fileformat' and 'fileencoding' as stored in the swap file. */ |
| 1099 | if (b0_ff != 0) |
| 1100 | set_fileformat(b0_ff - 1, OPT_LOCAL); |
| 1101 | if (b0_fenc != NULL) |
| 1102 | { |
| 1103 | set_option_value((char_u *)"fenc", 0L, b0_fenc, OPT_LOCAL); |
| 1104 | vim_free(b0_fenc); |
| 1105 | } |
| 1106 | unchanged(curbuf, TRUE); |
| 1107 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1108 | bnum = 1; /* start with block 1 */ |
| 1109 | page_count = 1; /* which is 1 page */ |
| 1110 | lnum = 0; /* append after line 0 in curbuf */ |
| 1111 | line_count = 0; |
| 1112 | idx = 0; /* start with first index in block 1 */ |
| 1113 | error = 0; |
| 1114 | buf->b_ml.ml_stack_top = 0; |
| 1115 | buf->b_ml.ml_stack = NULL; |
| 1116 | buf->b_ml.ml_stack_size = 0; /* no stack yet */ |
| 1117 | |
| 1118 | if (curbuf->b_ffname == NULL) |
| 1119 | cannot_open = TRUE; |
| 1120 | else |
| 1121 | cannot_open = FALSE; |
| 1122 | |
| 1123 | serious_error = FALSE; |
| 1124 | for ( ; !got_int; line_breakcheck()) |
| 1125 | { |
| 1126 | if (hp != NULL) |
| 1127 | mf_put(mfp, hp, FALSE, FALSE); /* release previous block */ |
| 1128 | |
| 1129 | /* |
| 1130 | * get block |
| 1131 | */ |
| 1132 | if ((hp = mf_get(mfp, (blocknr_T)bnum, page_count)) == NULL) |
| 1133 | { |
| 1134 | if (bnum == 1) |
| 1135 | { |
| 1136 | EMSG2(_("E309: Unable to read block 1 from %s"), mfp->mf_fname); |
| 1137 | goto theend; |
| 1138 | } |
| 1139 | ++error; |
| 1140 | ml_append(lnum++, (char_u *)_("???MANY LINES MISSING"), |
| 1141 | (colnr_T)0, TRUE); |
| 1142 | } |
| 1143 | else /* there is a block */ |
| 1144 | { |
| 1145 | pp = (PTR_BL *)(hp->bh_data); |
| 1146 | if (pp->pb_id == PTR_ID) /* it is a pointer block */ |
| 1147 | { |
| 1148 | /* check line count when using pointer block first time */ |
| 1149 | if (idx == 0 && line_count != 0) |
| 1150 | { |
| 1151 | for (i = 0; i < (int)pp->pb_count; ++i) |
| 1152 | line_count -= pp->pb_pointer[i].pe_line_count; |
| 1153 | if (line_count != 0) |
| 1154 | { |
| 1155 | ++error; |
| 1156 | ml_append(lnum++, (char_u *)_("???LINE COUNT WRONG"), |
| 1157 | (colnr_T)0, TRUE); |
| 1158 | } |
| 1159 | } |
| 1160 | |
| 1161 | if (pp->pb_count == 0) |
| 1162 | { |
| 1163 | ml_append(lnum++, (char_u *)_("???EMPTY BLOCK"), |
| 1164 | (colnr_T)0, TRUE); |
| 1165 | ++error; |
| 1166 | } |
| 1167 | else if (idx < (int)pp->pb_count) /* go a block deeper */ |
| 1168 | { |
| 1169 | if (pp->pb_pointer[idx].pe_bnum < 0) |
| 1170 | { |
| 1171 | /* |
| 1172 | * Data block with negative block number. |
| 1173 | * Try to read lines from the original file. |
| 1174 | * This is slow, but it works. |
| 1175 | */ |
| 1176 | if (!cannot_open) |
| 1177 | { |
| 1178 | line_count = pp->pb_pointer[idx].pe_line_count; |
| 1179 | if (readfile(curbuf->b_ffname, NULL, lnum, |
| 1180 | pp->pb_pointer[idx].pe_old_lnum - 1, |
| 1181 | line_count, NULL, 0) == FAIL) |
| 1182 | cannot_open = TRUE; |
| 1183 | else |
| 1184 | lnum += line_count; |
| 1185 | } |
| 1186 | if (cannot_open) |
| 1187 | { |
| 1188 | ++error; |
| 1189 | ml_append(lnum++, (char_u *)_("???LINES MISSING"), |
| 1190 | (colnr_T)0, TRUE); |
| 1191 | } |
| 1192 | ++idx; /* get same block again for next index */ |
| 1193 | continue; |
| 1194 | } |
| 1195 | |
| 1196 | /* |
| 1197 | * going one block deeper in the tree |
| 1198 | */ |
| 1199 | if ((top = ml_add_stack(buf)) < 0) /* new entry in stack */ |
| 1200 | { |
| 1201 | ++error; |
| 1202 | break; /* out of memory */ |
| 1203 | } |
| 1204 | ip = &(buf->b_ml.ml_stack[top]); |
| 1205 | ip->ip_bnum = bnum; |
| 1206 | ip->ip_index = idx; |
| 1207 | |
| 1208 | bnum = pp->pb_pointer[idx].pe_bnum; |
| 1209 | line_count = pp->pb_pointer[idx].pe_line_count; |
| 1210 | page_count = pp->pb_pointer[idx].pe_page_count; |
| 1211 | continue; |
| 1212 | } |
| 1213 | } |
| 1214 | else /* not a pointer block */ |
| 1215 | { |
| 1216 | dp = (DATA_BL *)(hp->bh_data); |
| 1217 | if (dp->db_id != DATA_ID) /* block id wrong */ |
| 1218 | { |
| 1219 | if (bnum == 1) |
| 1220 | { |
| 1221 | EMSG2(_("E310: Block 1 ID wrong (%s not a .swp file?)"), |
| 1222 | mfp->mf_fname); |
| 1223 | goto theend; |
| 1224 | } |
| 1225 | ++error; |
| 1226 | ml_append(lnum++, (char_u *)_("???BLOCK MISSING"), |
| 1227 | (colnr_T)0, TRUE); |
| 1228 | } |
| 1229 | else |
| 1230 | { |
| 1231 | /* |
| 1232 | * it is a data block |
| 1233 | * Append all the lines in this block |
| 1234 | */ |
| 1235 | has_error = FALSE; |
| 1236 | /* |
| 1237 | * check length of block |
| 1238 | * if wrong, use length in pointer block |
| 1239 | */ |
| 1240 | if (page_count * mfp->mf_page_size != dp->db_txt_end) |
| 1241 | { |
| 1242 | ml_append(lnum++, (char_u *)_("??? from here until ???END lines may be messed up"), |
| 1243 | (colnr_T)0, TRUE); |
| 1244 | ++error; |
| 1245 | has_error = TRUE; |
| 1246 | dp->db_txt_end = page_count * mfp->mf_page_size; |
| 1247 | } |
| 1248 | |
| 1249 | /* make sure there is a NUL at the end of the block */ |
| 1250 | *((char_u *)dp + dp->db_txt_end - 1) = NUL; |
| 1251 | |
| 1252 | /* |
| 1253 | * check number of lines in block |
| 1254 | * if wrong, use count in data block |
| 1255 | */ |
| 1256 | if (line_count != dp->db_line_count) |
| 1257 | { |
| 1258 | ml_append(lnum++, (char_u *)_("??? from here until ???END lines may have been inserted/deleted"), |
| 1259 | (colnr_T)0, TRUE); |
| 1260 | ++error; |
| 1261 | has_error = TRUE; |
| 1262 | } |
| 1263 | |
| 1264 | for (i = 0; i < dp->db_line_count; ++i) |
| 1265 | { |
| 1266 | txt_start = (dp->db_index[i] & DB_INDEX_MASK); |
| 1267 | if (txt_start <= HEADER_SIZE |
| 1268 | || txt_start >= (int)dp->db_txt_end) |
| 1269 | { |
| 1270 | p = (char_u *)"???"; |
| 1271 | ++error; |
| 1272 | } |
| 1273 | else |
| 1274 | p = (char_u *)dp + txt_start; |
| 1275 | ml_append(lnum++, p, (colnr_T)0, TRUE); |
| 1276 | } |
| 1277 | if (has_error) |
| 1278 | ml_append(lnum++, (char_u *)_("???END"), (colnr_T)0, TRUE); |
| 1279 | } |
| 1280 | } |
| 1281 | } |
| 1282 | |
| 1283 | if (buf->b_ml.ml_stack_top == 0) /* finished */ |
| 1284 | break; |
| 1285 | |
| 1286 | /* |
| 1287 | * go one block up in the tree |
| 1288 | */ |
| 1289 | ip = &(buf->b_ml.ml_stack[--(buf->b_ml.ml_stack_top)]); |
| 1290 | bnum = ip->ip_bnum; |
| 1291 | idx = ip->ip_index + 1; /* go to next index */ |
| 1292 | page_count = 1; |
| 1293 | } |
| 1294 | |
| 1295 | /* |
| 1296 | * The dummy line from the empty buffer will now be after the last line in |
| 1297 | * the buffer. Delete it. |
| 1298 | */ |
| 1299 | ml_delete(curbuf->b_ml.ml_line_count, FALSE); |
| 1300 | curbuf->b_flags |= BF_RECOVERED; |
| 1301 | |
| 1302 | recoverymode = FALSE; |
| 1303 | if (got_int) |
| 1304 | EMSG(_("E311: Recovery Interrupted")); |
| 1305 | else if (error) |
| 1306 | { |
| 1307 | ++no_wait_return; |
| 1308 | MSG(">>>>>>>>>>>>>"); |
| 1309 | EMSG(_("E312: Errors detected while recovering; look for lines starting with ???")); |
| 1310 | --no_wait_return; |
| 1311 | MSG(_("See \":help E312\" for more information.")); |
| 1312 | MSG(">>>>>>>>>>>>>"); |
| 1313 | } |
| 1314 | else |
| 1315 | { |
| 1316 | MSG(_("Recovery completed. You should check if everything is OK.")); |
| 1317 | MSG_PUTS(_("\n(You might want to write out this file under another name\n")); |
| 1318 | MSG_PUTS(_("and run diff with the original file to check for changes)\n")); |
| 1319 | MSG_PUTS(_("Delete the .swp file afterwards.\n\n")); |
| 1320 | cmdline_row = msg_row; |
| 1321 | } |
| 1322 | redraw_curbuf_later(NOT_VALID); |
| 1323 | |
| 1324 | theend: |
| 1325 | recoverymode = FALSE; |
| 1326 | if (mfp != NULL) |
| 1327 | { |
| 1328 | if (hp != NULL) |
| 1329 | mf_put(mfp, hp, FALSE, FALSE); |
| 1330 | mf_close(mfp, FALSE); /* will also vim_free(mfp->mf_fname) */ |
| 1331 | } |
Bram Moolenaar | df88dda | 2007-01-09 13:34:50 +0000 | [diff] [blame] | 1332 | if (buf != NULL) |
| 1333 | { |
| 1334 | vim_free(buf->b_ml.ml_stack); |
| 1335 | vim_free(buf); |
| 1336 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1337 | if (serious_error && called_from_main) |
| 1338 | ml_close(curbuf, TRUE); |
| 1339 | #ifdef FEAT_AUTOCMD |
| 1340 | else |
| 1341 | { |
| 1342 | apply_autocmds(EVENT_BUFREADPOST, NULL, curbuf->b_fname, FALSE, curbuf); |
| 1343 | apply_autocmds(EVENT_BUFWINENTER, NULL, curbuf->b_fname, FALSE, curbuf); |
| 1344 | } |
| 1345 | #endif |
| 1346 | return; |
| 1347 | } |
| 1348 | |
| 1349 | /* |
| 1350 | * Find the names of swap files in current directory and the directory given |
| 1351 | * with the 'directory' option. |
| 1352 | * |
| 1353 | * Used to: |
| 1354 | * - list the swap files for "vim -r" |
| 1355 | * - count the number of swap files when recovering |
| 1356 | * - list the swap files when recovering |
| 1357 | * - find the name of the n'th swap file when recovering |
| 1358 | */ |
| 1359 | int |
| 1360 | recover_names(fname, list, nr) |
| 1361 | char_u **fname; /* base for swap file name */ |
| 1362 | int list; /* when TRUE, list the swap file names */ |
| 1363 | int nr; /* when non-zero, return nr'th swap file name */ |
| 1364 | { |
| 1365 | int num_names; |
| 1366 | char_u *(names[6]); |
| 1367 | char_u *tail; |
| 1368 | char_u *p; |
| 1369 | int num_files; |
| 1370 | int file_count = 0; |
| 1371 | char_u **files; |
| 1372 | int i; |
| 1373 | char_u *dirp; |
| 1374 | char_u *dir_name; |
| 1375 | |
| 1376 | if (list) |
| 1377 | { |
| 1378 | /* use msg() to start the scrolling properly */ |
| 1379 | msg((char_u *)_("Swap files found:")); |
| 1380 | msg_putchar('\n'); |
| 1381 | } |
| 1382 | |
| 1383 | /* |
| 1384 | * Do the loop for every directory in 'directory'. |
| 1385 | * First allocate some memory to put the directory name in. |
| 1386 | */ |
| 1387 | dir_name = alloc((unsigned)STRLEN(p_dir) + 1); |
| 1388 | dirp = p_dir; |
| 1389 | while (dir_name != NULL && *dirp) |
| 1390 | { |
| 1391 | /* |
| 1392 | * Isolate a directory name from *dirp and put it in dir_name (we know |
| 1393 | * it is large enough, so use 31000 for length). |
| 1394 | * Advance dirp to next directory name. |
| 1395 | */ |
| 1396 | (void)copy_option_part(&dirp, dir_name, 31000, ","); |
| 1397 | |
| 1398 | if (dir_name[0] == '.' && dir_name[1] == NUL) /* check current dir */ |
| 1399 | { |
| 1400 | if (fname == NULL || *fname == NULL) |
| 1401 | { |
| 1402 | #ifdef VMS |
| 1403 | names[0] = vim_strsave((char_u *)"*_sw%"); |
| 1404 | #else |
| 1405 | # ifdef RISCOS |
| 1406 | names[0] = vim_strsave((char_u *)"*_sw#"); |
| 1407 | # else |
| 1408 | names[0] = vim_strsave((char_u *)"*.sw?"); |
| 1409 | # endif |
| 1410 | #endif |
Bram Moolenaar | 2cc9318 | 2006-10-10 19:56:03 +0000 | [diff] [blame] | 1411 | #if defined(UNIX) || defined(WIN3264) |
| 1412 | /* For Unix names starting with a dot are special. MS-Windows |
| 1413 | * supports this too, on some file systems. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1414 | names[1] = vim_strsave((char_u *)".*.sw?"); |
| 1415 | names[2] = vim_strsave((char_u *)".sw?"); |
| 1416 | num_names = 3; |
| 1417 | #else |
| 1418 | # ifdef VMS |
| 1419 | names[1] = vim_strsave((char_u *)".*_sw%"); |
| 1420 | num_names = 2; |
| 1421 | # else |
| 1422 | num_names = 1; |
| 1423 | # endif |
| 1424 | #endif |
| 1425 | } |
| 1426 | else |
| 1427 | num_names = recov_file_names(names, *fname, TRUE); |
| 1428 | } |
| 1429 | else /* check directory dir_name */ |
| 1430 | { |
| 1431 | if (fname == NULL || *fname == NULL) |
| 1432 | { |
| 1433 | #ifdef VMS |
| 1434 | names[0] = concat_fnames(dir_name, (char_u *)"*_sw%", TRUE); |
| 1435 | #else |
| 1436 | # ifdef RISCOS |
| 1437 | names[0] = concat_fnames(dir_name, (char_u *)"*_sw#", TRUE); |
| 1438 | # else |
| 1439 | names[0] = concat_fnames(dir_name, (char_u *)"*.sw?", TRUE); |
| 1440 | # endif |
| 1441 | #endif |
Bram Moolenaar | 2cc9318 | 2006-10-10 19:56:03 +0000 | [diff] [blame] | 1442 | #if defined(UNIX) || defined(WIN3264) |
| 1443 | /* For Unix names starting with a dot are special. MS-Windows |
| 1444 | * supports this too, on some file systems. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1445 | names[1] = concat_fnames(dir_name, (char_u *)".*.sw?", TRUE); |
| 1446 | names[2] = concat_fnames(dir_name, (char_u *)".sw?", TRUE); |
| 1447 | num_names = 3; |
| 1448 | #else |
| 1449 | # ifdef VMS |
| 1450 | names[1] = concat_fnames(dir_name, (char_u *)".*_sw%", TRUE); |
| 1451 | num_names = 2; |
| 1452 | # else |
| 1453 | num_names = 1; |
| 1454 | # endif |
| 1455 | #endif |
| 1456 | } |
| 1457 | else |
| 1458 | { |
| 1459 | #if defined(UNIX) || defined(WIN3264) |
| 1460 | p = dir_name + STRLEN(dir_name); |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1461 | if (after_pathsep(dir_name, p) && p[-1] == p[-2]) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1462 | { |
| 1463 | /* Ends with '//', Use Full path for swap name */ |
| 1464 | tail = make_percent_swname(dir_name, *fname); |
| 1465 | } |
| 1466 | else |
| 1467 | #endif |
| 1468 | { |
| 1469 | tail = gettail(*fname); |
| 1470 | tail = concat_fnames(dir_name, tail, TRUE); |
| 1471 | } |
| 1472 | if (tail == NULL) |
| 1473 | num_names = 0; |
| 1474 | else |
| 1475 | { |
| 1476 | num_names = recov_file_names(names, tail, FALSE); |
| 1477 | vim_free(tail); |
| 1478 | } |
| 1479 | } |
| 1480 | } |
| 1481 | |
| 1482 | /* check for out-of-memory */ |
| 1483 | for (i = 0; i < num_names; ++i) |
| 1484 | { |
| 1485 | if (names[i] == NULL) |
| 1486 | { |
| 1487 | for (i = 0; i < num_names; ++i) |
| 1488 | vim_free(names[i]); |
| 1489 | num_names = 0; |
| 1490 | } |
| 1491 | } |
| 1492 | if (num_names == 0) |
| 1493 | num_files = 0; |
| 1494 | else if (expand_wildcards(num_names, names, &num_files, &files, |
| 1495 | EW_KEEPALL|EW_FILE|EW_SILENT) == FAIL) |
| 1496 | num_files = 0; |
| 1497 | |
| 1498 | /* |
| 1499 | * When no swap file found, wildcard expansion might have failed (e.g. |
| 1500 | * not able to execute the shell). |
| 1501 | * Try finding a swap file by simply adding ".swp" to the file name. |
| 1502 | */ |
| 1503 | if (*dirp == NUL && file_count + num_files == 0 |
| 1504 | && fname != NULL && *fname != NULL) |
| 1505 | { |
| 1506 | struct stat st; |
| 1507 | char_u *swapname; |
| 1508 | |
| 1509 | #if defined(VMS) || defined(RISCOS) |
| 1510 | swapname = modname(*fname, (char_u *)"_swp", FALSE); |
| 1511 | #else |
| 1512 | swapname = modname(*fname, (char_u *)".swp", TRUE); |
| 1513 | #endif |
| 1514 | if (swapname != NULL) |
| 1515 | { |
| 1516 | if (mch_stat((char *)swapname, &st) != -1) /* It exists! */ |
| 1517 | { |
| 1518 | files = (char_u **)alloc((unsigned)sizeof(char_u *)); |
| 1519 | if (files != NULL) |
| 1520 | { |
| 1521 | files[0] = swapname; |
| 1522 | swapname = NULL; |
| 1523 | num_files = 1; |
| 1524 | } |
| 1525 | } |
| 1526 | vim_free(swapname); |
| 1527 | } |
| 1528 | } |
| 1529 | |
| 1530 | /* |
| 1531 | * remove swapfile name of the current buffer, it must be ignored |
| 1532 | */ |
| 1533 | if (curbuf->b_ml.ml_mfp != NULL |
| 1534 | && (p = curbuf->b_ml.ml_mfp->mf_fname) != NULL) |
| 1535 | { |
| 1536 | for (i = 0; i < num_files; ++i) |
| 1537 | if (fullpathcmp(p, files[i], TRUE) & FPC_SAME) |
| 1538 | { |
| 1539 | vim_free(files[i]); |
| 1540 | --num_files; |
| 1541 | for ( ; i < num_files; ++i) |
| 1542 | files[i] = files[i + 1]; |
| 1543 | } |
| 1544 | } |
Bram Moolenaar | fc1421e | 2006-04-20 22:17:20 +0000 | [diff] [blame] | 1545 | if (nr > 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1546 | { |
| 1547 | file_count += num_files; |
| 1548 | if (nr <= file_count) |
| 1549 | { |
| 1550 | *fname = vim_strsave(files[nr - 1 + num_files - file_count]); |
| 1551 | dirp = (char_u *)""; /* stop searching */ |
| 1552 | } |
| 1553 | } |
| 1554 | else if (list) |
| 1555 | { |
| 1556 | if (dir_name[0] == '.' && dir_name[1] == NUL) |
| 1557 | { |
| 1558 | if (fname == NULL || *fname == NULL) |
| 1559 | MSG_PUTS(_(" In current directory:\n")); |
| 1560 | else |
| 1561 | MSG_PUTS(_(" Using specified name:\n")); |
| 1562 | } |
| 1563 | else |
| 1564 | { |
| 1565 | MSG_PUTS(_(" In directory ")); |
| 1566 | msg_home_replace(dir_name); |
| 1567 | MSG_PUTS(":\n"); |
| 1568 | } |
| 1569 | |
| 1570 | if (num_files) |
| 1571 | { |
| 1572 | for (i = 0; i < num_files; ++i) |
| 1573 | { |
| 1574 | /* print the swap file name */ |
| 1575 | msg_outnum((long)++file_count); |
| 1576 | MSG_PUTS(". "); |
| 1577 | msg_puts(gettail(files[i])); |
| 1578 | msg_putchar('\n'); |
| 1579 | (void)swapfile_info(files[i]); |
| 1580 | } |
| 1581 | } |
| 1582 | else |
| 1583 | MSG_PUTS(_(" -- none --\n")); |
| 1584 | out_flush(); |
| 1585 | } |
| 1586 | else |
| 1587 | file_count += num_files; |
| 1588 | |
| 1589 | for (i = 0; i < num_names; ++i) |
| 1590 | vim_free(names[i]); |
Bram Moolenaar | fc1421e | 2006-04-20 22:17:20 +0000 | [diff] [blame] | 1591 | if (num_files > 0) |
| 1592 | FreeWild(num_files, files); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1593 | } |
| 1594 | vim_free(dir_name); |
| 1595 | return file_count; |
| 1596 | } |
| 1597 | |
| 1598 | #if defined(UNIX) || defined(WIN3264) /* Need _very_ long file names */ |
| 1599 | /* |
| 1600 | * Append the full path to name with path separators made into percent |
| 1601 | * signs, to dir. An unnamed buffer is handled as "" (<currentdir>/"") |
| 1602 | */ |
| 1603 | static char_u * |
| 1604 | make_percent_swname(dir, name) |
| 1605 | char_u *dir; |
| 1606 | char_u *name; |
| 1607 | { |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1608 | char_u *d, *s, *f; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1609 | |
| 1610 | f = fix_fname(name != NULL ? name : (char_u *) ""); |
| 1611 | d = NULL; |
| 1612 | if (f != NULL) |
| 1613 | { |
| 1614 | s = alloc((unsigned)(STRLEN(f) + 1)); |
| 1615 | if (s != NULL) |
| 1616 | { |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 1617 | STRCPY(s, f); |
| 1618 | for (d = s; *d != NUL; mb_ptr_adv(d)) |
| 1619 | if (vim_ispathsep(*d)) |
| 1620 | *d = '%'; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1621 | d = concat_fnames(dir, s, TRUE); |
| 1622 | vim_free(s); |
| 1623 | } |
| 1624 | vim_free(f); |
| 1625 | } |
| 1626 | return d; |
| 1627 | } |
| 1628 | #endif |
| 1629 | |
| 1630 | #if (defined(UNIX) || defined(__EMX__) || defined(VMS)) && (defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)) |
| 1631 | static int process_still_running; |
| 1632 | #endif |
| 1633 | |
| 1634 | /* |
Bram Moolenaar | d5bc83f | 2005-12-07 21:07:59 +0000 | [diff] [blame] | 1635 | * Give information about an existing swap file. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1636 | * Returns timestamp (0 when unknown). |
| 1637 | */ |
| 1638 | static time_t |
| 1639 | swapfile_info(fname) |
| 1640 | char_u *fname; |
| 1641 | { |
| 1642 | struct stat st; |
| 1643 | int fd; |
| 1644 | struct block0 b0; |
| 1645 | time_t x = (time_t)0; |
Bram Moolenaar | 31e97bf | 2006-10-10 14:20:13 +0000 | [diff] [blame] | 1646 | char *p; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1647 | #ifdef UNIX |
| 1648 | char_u uname[B0_UNAME_SIZE]; |
| 1649 | #endif |
| 1650 | |
| 1651 | /* print the swap file date */ |
| 1652 | if (mch_stat((char *)fname, &st) != -1) |
| 1653 | { |
| 1654 | #ifdef UNIX |
| 1655 | /* print name of owner of the file */ |
| 1656 | if (mch_get_uname(st.st_uid, uname, B0_UNAME_SIZE) == OK) |
| 1657 | { |
| 1658 | MSG_PUTS(_(" owned by: ")); |
| 1659 | msg_outtrans(uname); |
| 1660 | MSG_PUTS(_(" dated: ")); |
| 1661 | } |
| 1662 | else |
| 1663 | #endif |
| 1664 | MSG_PUTS(_(" dated: ")); |
| 1665 | x = st.st_mtime; /* Manx C can't do &st.st_mtime */ |
Bram Moolenaar | 31e97bf | 2006-10-10 14:20:13 +0000 | [diff] [blame] | 1666 | p = ctime(&x); /* includes '\n' */ |
| 1667 | if (p == NULL) |
| 1668 | MSG_PUTS("(invalid)\n"); |
| 1669 | else |
| 1670 | MSG_PUTS(p); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1671 | } |
| 1672 | |
| 1673 | /* |
| 1674 | * print the original file name |
| 1675 | */ |
| 1676 | fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0); |
| 1677 | if (fd >= 0) |
| 1678 | { |
| 1679 | if (read(fd, (char *)&b0, sizeof(b0)) == sizeof(b0)) |
| 1680 | { |
| 1681 | if (STRNCMP(b0.b0_version, "VIM 3.0", 7) == 0) |
| 1682 | { |
| 1683 | MSG_PUTS(_(" [from Vim version 3.0]")); |
| 1684 | } |
| 1685 | else if (b0.b0_id[0] != BLOCK0_ID0 || b0.b0_id[1] != BLOCK0_ID1) |
| 1686 | { |
| 1687 | MSG_PUTS(_(" [does not look like a Vim swap file]")); |
| 1688 | } |
| 1689 | else |
| 1690 | { |
| 1691 | MSG_PUTS(_(" file name: ")); |
| 1692 | if (b0.b0_fname[0] == NUL) |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1693 | MSG_PUTS(_("[No Name]")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1694 | else |
| 1695 | msg_outtrans(b0.b0_fname); |
| 1696 | |
| 1697 | MSG_PUTS(_("\n modified: ")); |
| 1698 | MSG_PUTS(b0.b0_dirty ? _("YES") : _("no")); |
| 1699 | |
| 1700 | if (*(b0.b0_uname) != NUL) |
| 1701 | { |
| 1702 | MSG_PUTS(_("\n user name: ")); |
| 1703 | msg_outtrans(b0.b0_uname); |
| 1704 | } |
| 1705 | |
| 1706 | if (*(b0.b0_hname) != NUL) |
| 1707 | { |
| 1708 | if (*(b0.b0_uname) != NUL) |
| 1709 | MSG_PUTS(_(" host name: ")); |
| 1710 | else |
| 1711 | MSG_PUTS(_("\n host name: ")); |
| 1712 | msg_outtrans(b0.b0_hname); |
| 1713 | } |
| 1714 | |
| 1715 | if (char_to_long(b0.b0_pid) != 0L) |
| 1716 | { |
| 1717 | MSG_PUTS(_("\n process ID: ")); |
| 1718 | msg_outnum(char_to_long(b0.b0_pid)); |
| 1719 | #if defined(UNIX) || defined(__EMX__) |
| 1720 | /* EMX kill() not working correctly, it seems */ |
| 1721 | if (kill((pid_t)char_to_long(b0.b0_pid), 0) == 0) |
| 1722 | { |
| 1723 | MSG_PUTS(_(" (still running)")); |
| 1724 | # if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
| 1725 | process_still_running = TRUE; |
| 1726 | # endif |
| 1727 | } |
| 1728 | #endif |
| 1729 | } |
| 1730 | |
| 1731 | if (b0_magic_wrong(&b0)) |
| 1732 | { |
| 1733 | #if defined(MSDOS) || defined(MSWIN) |
| 1734 | if (STRNCMP(b0.b0_hname, "PC ", 3) == 0) |
| 1735 | MSG_PUTS(_("\n [not usable with this version of Vim]")); |
| 1736 | else |
| 1737 | #endif |
| 1738 | MSG_PUTS(_("\n [not usable on this computer]")); |
| 1739 | } |
| 1740 | } |
| 1741 | } |
| 1742 | else |
| 1743 | MSG_PUTS(_(" [cannot be read]")); |
| 1744 | close(fd); |
| 1745 | } |
| 1746 | else |
| 1747 | MSG_PUTS(_(" [cannot be opened]")); |
| 1748 | msg_putchar('\n'); |
| 1749 | |
| 1750 | return x; |
| 1751 | } |
| 1752 | |
| 1753 | static int |
| 1754 | recov_file_names(names, path, prepend_dot) |
| 1755 | char_u **names; |
| 1756 | char_u *path; |
| 1757 | int prepend_dot; |
| 1758 | { |
| 1759 | int num_names; |
| 1760 | |
| 1761 | #ifdef SHORT_FNAME |
| 1762 | /* |
| 1763 | * (MS-DOS) always short names |
| 1764 | */ |
| 1765 | names[0] = modname(path, (char_u *)".sw?", FALSE); |
| 1766 | num_names = 1; |
| 1767 | #else /* !SHORT_FNAME */ |
| 1768 | /* |
| 1769 | * (Win32 and Win64) never short names, but do prepend a dot. |
| 1770 | * (Not MS-DOS or Win32 or Win64) maybe short name, maybe not: Try both. |
| 1771 | * Only use the short name if it is different. |
| 1772 | */ |
| 1773 | char_u *p; |
| 1774 | int i; |
| 1775 | # ifndef WIN3264 |
| 1776 | int shortname = curbuf->b_shortname; |
| 1777 | |
| 1778 | curbuf->b_shortname = FALSE; |
| 1779 | # endif |
| 1780 | |
| 1781 | num_names = 0; |
| 1782 | |
| 1783 | /* |
| 1784 | * May also add the file name with a dot prepended, for swap file in same |
| 1785 | * dir as original file. |
| 1786 | */ |
| 1787 | if (prepend_dot) |
| 1788 | { |
| 1789 | names[num_names] = modname(path, (char_u *)".sw?", TRUE); |
| 1790 | if (names[num_names] == NULL) |
| 1791 | goto end; |
| 1792 | ++num_names; |
| 1793 | } |
| 1794 | |
| 1795 | /* |
| 1796 | * Form the normal swap file name pattern by appending ".sw?". |
| 1797 | */ |
| 1798 | #ifdef VMS |
| 1799 | names[num_names] = concat_fnames(path, (char_u *)"_sw%", FALSE); |
| 1800 | #else |
| 1801 | # ifdef RISCOS |
| 1802 | names[num_names] = concat_fnames(path, (char_u *)"_sw#", FALSE); |
| 1803 | # else |
| 1804 | names[num_names] = concat_fnames(path, (char_u *)".sw?", FALSE); |
| 1805 | # endif |
| 1806 | #endif |
| 1807 | if (names[num_names] == NULL) |
| 1808 | goto end; |
| 1809 | if (num_names >= 1) /* check if we have the same name twice */ |
| 1810 | { |
| 1811 | p = names[num_names - 1]; |
| 1812 | i = (int)STRLEN(names[num_names - 1]) - (int)STRLEN(names[num_names]); |
| 1813 | if (i > 0) |
| 1814 | p += i; /* file name has been expanded to full path */ |
| 1815 | |
| 1816 | if (STRCMP(p, names[num_names]) != 0) |
| 1817 | ++num_names; |
| 1818 | else |
| 1819 | vim_free(names[num_names]); |
| 1820 | } |
| 1821 | else |
| 1822 | ++num_names; |
| 1823 | |
| 1824 | # ifndef WIN3264 |
| 1825 | /* |
| 1826 | * Also try with 'shortname' set, in case the file is on a DOS filesystem. |
| 1827 | */ |
| 1828 | curbuf->b_shortname = TRUE; |
| 1829 | #ifdef VMS |
| 1830 | names[num_names] = modname(path, (char_u *)"_sw%", FALSE); |
| 1831 | #else |
| 1832 | # ifdef RISCOS |
| 1833 | names[num_names] = modname(path, (char_u *)"_sw#", FALSE); |
| 1834 | # else |
| 1835 | names[num_names] = modname(path, (char_u *)".sw?", FALSE); |
| 1836 | # endif |
| 1837 | #endif |
| 1838 | if (names[num_names] == NULL) |
| 1839 | goto end; |
| 1840 | |
| 1841 | /* |
| 1842 | * Remove the one from 'shortname', if it's the same as with 'noshortname'. |
| 1843 | */ |
| 1844 | p = names[num_names]; |
| 1845 | i = STRLEN(names[num_names]) - STRLEN(names[num_names - 1]); |
| 1846 | if (i > 0) |
| 1847 | p += i; /* file name has been expanded to full path */ |
| 1848 | if (STRCMP(names[num_names - 1], p) == 0) |
| 1849 | vim_free(names[num_names]); |
| 1850 | else |
| 1851 | ++num_names; |
| 1852 | # endif |
| 1853 | |
| 1854 | end: |
| 1855 | # ifndef WIN3264 |
| 1856 | curbuf->b_shortname = shortname; |
| 1857 | # endif |
| 1858 | |
| 1859 | #endif /* !SHORT_FNAME */ |
| 1860 | |
| 1861 | return num_names; |
| 1862 | } |
| 1863 | |
| 1864 | /* |
| 1865 | * sync all memlines |
| 1866 | * |
| 1867 | * If 'check_file' is TRUE, check if original file exists and was not changed. |
| 1868 | * If 'check_char' is TRUE, stop syncing when character becomes available, but |
| 1869 | * always sync at least one block. |
| 1870 | */ |
| 1871 | void |
| 1872 | ml_sync_all(check_file, check_char) |
| 1873 | int check_file; |
| 1874 | int check_char; |
| 1875 | { |
| 1876 | buf_T *buf; |
| 1877 | struct stat st; |
| 1878 | |
| 1879 | for (buf = firstbuf; buf != NULL; buf = buf->b_next) |
| 1880 | { |
| 1881 | if (buf->b_ml.ml_mfp == NULL || buf->b_ml.ml_mfp->mf_fname == NULL) |
| 1882 | continue; /* no file */ |
| 1883 | |
| 1884 | ml_flush_line(buf); /* flush buffered line */ |
| 1885 | /* flush locked block */ |
| 1886 | (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); |
| 1887 | if (bufIsChanged(buf) && check_file && mf_need_trans(buf->b_ml.ml_mfp) |
| 1888 | && buf->b_ffname != NULL) |
| 1889 | { |
| 1890 | /* |
| 1891 | * If the original file does not exist anymore or has been changed |
| 1892 | * call ml_preserve() to get rid of all negative numbered blocks. |
| 1893 | */ |
| 1894 | if (mch_stat((char *)buf->b_ffname, &st) == -1 |
| 1895 | || st.st_mtime != buf->b_mtime_read |
| 1896 | || (size_t)st.st_size != buf->b_orig_size) |
| 1897 | { |
| 1898 | ml_preserve(buf, FALSE); |
| 1899 | did_check_timestamps = FALSE; |
| 1900 | need_check_timestamps = TRUE; /* give message later */ |
| 1901 | } |
| 1902 | } |
| 1903 | if (buf->b_ml.ml_mfp->mf_dirty) |
| 1904 | { |
| 1905 | (void)mf_sync(buf->b_ml.ml_mfp, (check_char ? MFS_STOP : 0) |
| 1906 | | (bufIsChanged(buf) ? MFS_FLUSH : 0)); |
| 1907 | if (check_char && ui_char_avail()) /* character available now */ |
| 1908 | break; |
| 1909 | } |
| 1910 | } |
| 1911 | } |
| 1912 | |
| 1913 | /* |
| 1914 | * sync one buffer, including negative blocks |
| 1915 | * |
| 1916 | * after this all the blocks are in the swap file |
| 1917 | * |
| 1918 | * Used for the :preserve command and when the original file has been |
| 1919 | * changed or deleted. |
| 1920 | * |
| 1921 | * when message is TRUE the success of preserving is reported |
| 1922 | */ |
| 1923 | void |
| 1924 | ml_preserve(buf, message) |
| 1925 | buf_T *buf; |
| 1926 | int message; |
| 1927 | { |
| 1928 | bhdr_T *hp; |
| 1929 | linenr_T lnum; |
| 1930 | memfile_T *mfp = buf->b_ml.ml_mfp; |
| 1931 | int status; |
| 1932 | int got_int_save = got_int; |
| 1933 | |
| 1934 | if (mfp == NULL || mfp->mf_fname == NULL) |
| 1935 | { |
| 1936 | if (message) |
| 1937 | EMSG(_("E313: Cannot preserve, there is no swap file")); |
| 1938 | return; |
| 1939 | } |
| 1940 | |
| 1941 | /* We only want to stop when interrupted here, not when interrupted |
| 1942 | * before. */ |
| 1943 | got_int = FALSE; |
| 1944 | |
| 1945 | ml_flush_line(buf); /* flush buffered line */ |
| 1946 | (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); /* flush locked block */ |
| 1947 | status = mf_sync(mfp, MFS_ALL | MFS_FLUSH); |
| 1948 | |
| 1949 | /* stack is invalid after mf_sync(.., MFS_ALL) */ |
| 1950 | buf->b_ml.ml_stack_top = 0; |
| 1951 | |
| 1952 | /* |
| 1953 | * Some of the data blocks may have been changed from negative to |
| 1954 | * positive block number. In that case the pointer blocks need to be |
| 1955 | * updated. |
| 1956 | * |
| 1957 | * We don't know in which pointer block the references are, so we visit |
| 1958 | * all data blocks until there are no more translations to be done (or |
| 1959 | * we hit the end of the file, which can only happen in case a write fails, |
| 1960 | * e.g. when file system if full). |
| 1961 | * ml_find_line() does the work by translating the negative block numbers |
| 1962 | * when getting the first line of each data block. |
| 1963 | */ |
| 1964 | if (mf_need_trans(mfp) && !got_int) |
| 1965 | { |
| 1966 | lnum = 1; |
| 1967 | while (mf_need_trans(mfp) && lnum <= buf->b_ml.ml_line_count) |
| 1968 | { |
| 1969 | hp = ml_find_line(buf, lnum, ML_FIND); |
| 1970 | if (hp == NULL) |
| 1971 | { |
| 1972 | status = FAIL; |
| 1973 | goto theend; |
| 1974 | } |
| 1975 | CHECK(buf->b_ml.ml_locked_low != lnum, "low != lnum"); |
| 1976 | lnum = buf->b_ml.ml_locked_high + 1; |
| 1977 | } |
| 1978 | (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); /* flush locked block */ |
| 1979 | /* sync the updated pointer blocks */ |
| 1980 | if (mf_sync(mfp, MFS_ALL | MFS_FLUSH) == FAIL) |
| 1981 | status = FAIL; |
| 1982 | buf->b_ml.ml_stack_top = 0; /* stack is invalid now */ |
| 1983 | } |
| 1984 | theend: |
| 1985 | got_int |= got_int_save; |
| 1986 | |
| 1987 | if (message) |
| 1988 | { |
| 1989 | if (status == OK) |
| 1990 | MSG(_("File preserved")); |
| 1991 | else |
| 1992 | EMSG(_("E314: Preserve failed")); |
| 1993 | } |
| 1994 | } |
| 1995 | |
| 1996 | /* |
| 1997 | * NOTE: The pointer returned by the ml_get_*() functions only remains valid |
| 1998 | * until the next call! |
| 1999 | * line1 = ml_get(1); |
| 2000 | * line2 = ml_get(2); // line1 is now invalid! |
| 2001 | * Make a copy of the line if necessary. |
| 2002 | */ |
| 2003 | /* |
| 2004 | * get a pointer to a (read-only copy of a) line |
| 2005 | * |
| 2006 | * On failure an error message is given and IObuff is returned (to avoid |
| 2007 | * having to check for error everywhere). |
| 2008 | */ |
| 2009 | char_u * |
| 2010 | ml_get(lnum) |
| 2011 | linenr_T lnum; |
| 2012 | { |
| 2013 | return ml_get_buf(curbuf, lnum, FALSE); |
| 2014 | } |
| 2015 | |
| 2016 | /* |
| 2017 | * ml_get_pos: get pointer to position 'pos' |
| 2018 | */ |
| 2019 | char_u * |
| 2020 | ml_get_pos(pos) |
| 2021 | pos_T *pos; |
| 2022 | { |
| 2023 | return (ml_get_buf(curbuf, pos->lnum, FALSE) + pos->col); |
| 2024 | } |
| 2025 | |
| 2026 | /* |
| 2027 | * ml_get_curline: get pointer to cursor line. |
| 2028 | */ |
| 2029 | char_u * |
| 2030 | ml_get_curline() |
| 2031 | { |
| 2032 | return ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE); |
| 2033 | } |
| 2034 | |
| 2035 | /* |
| 2036 | * ml_get_cursor: get pointer to cursor position |
| 2037 | */ |
| 2038 | char_u * |
| 2039 | ml_get_cursor() |
| 2040 | { |
| 2041 | return (ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE) + |
| 2042 | curwin->w_cursor.col); |
| 2043 | } |
| 2044 | |
| 2045 | /* |
| 2046 | * get a pointer to a line in a specific buffer |
| 2047 | * |
| 2048 | * "will_change": if TRUE mark the buffer dirty (chars in the line will be |
| 2049 | * changed) |
| 2050 | */ |
| 2051 | char_u * |
| 2052 | ml_get_buf(buf, lnum, will_change) |
| 2053 | buf_T *buf; |
| 2054 | linenr_T lnum; |
| 2055 | int will_change; /* line will be changed */ |
| 2056 | { |
Bram Moolenaar | ad40f02 | 2007-02-13 03:01:39 +0000 | [diff] [blame] | 2057 | bhdr_T *hp; |
| 2058 | DATA_BL *dp; |
| 2059 | char_u *ptr; |
| 2060 | static int recursive = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2061 | |
| 2062 | if (lnum > buf->b_ml.ml_line_count) /* invalid line number */ |
| 2063 | { |
Bram Moolenaar | ad40f02 | 2007-02-13 03:01:39 +0000 | [diff] [blame] | 2064 | if (recursive == 0) |
| 2065 | { |
| 2066 | /* Avoid giving this message for a recursive call, may happen when |
| 2067 | * the GUI redraws part of the text. */ |
| 2068 | ++recursive; |
| 2069 | EMSGN(_("E315: ml_get: invalid lnum: %ld"), lnum); |
| 2070 | --recursive; |
| 2071 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2072 | errorret: |
| 2073 | STRCPY(IObuff, "???"); |
| 2074 | return IObuff; |
| 2075 | } |
| 2076 | if (lnum <= 0) /* pretend line 0 is line 1 */ |
| 2077 | lnum = 1; |
| 2078 | |
| 2079 | if (buf->b_ml.ml_mfp == NULL) /* there are no lines */ |
| 2080 | return (char_u *)""; |
| 2081 | |
| 2082 | /* |
| 2083 | * See if it is the same line as requested last time. |
| 2084 | * Otherwise may need to flush last used line. |
Bram Moolenaar | 47b8b15 | 2007-02-07 02:41:57 +0000 | [diff] [blame] | 2085 | * Don't use the last used line when 'swapfile' is reset, need to load all |
| 2086 | * blocks. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2087 | */ |
Bram Moolenaar | 47b8b15 | 2007-02-07 02:41:57 +0000 | [diff] [blame] | 2088 | if (buf->b_ml.ml_line_lnum != lnum || mf_dont_release) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2089 | { |
| 2090 | ml_flush_line(buf); |
| 2091 | |
| 2092 | /* |
| 2093 | * Find the data block containing the line. |
| 2094 | * This also fills the stack with the blocks from the root to the data |
| 2095 | * block and releases any locked block. |
| 2096 | */ |
| 2097 | if ((hp = ml_find_line(buf, lnum, ML_FIND)) == NULL) |
| 2098 | { |
Bram Moolenaar | ad40f02 | 2007-02-13 03:01:39 +0000 | [diff] [blame] | 2099 | if (recursive == 0) |
| 2100 | { |
| 2101 | /* Avoid giving this message for a recursive call, may happen |
| 2102 | * when the GUI redraws part of the text. */ |
| 2103 | ++recursive; |
| 2104 | EMSGN(_("E316: ml_get: cannot find line %ld"), lnum); |
| 2105 | --recursive; |
| 2106 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2107 | goto errorret; |
| 2108 | } |
| 2109 | |
| 2110 | dp = (DATA_BL *)(hp->bh_data); |
| 2111 | |
| 2112 | ptr = (char_u *)dp + ((dp->db_index[lnum - buf->b_ml.ml_locked_low]) & DB_INDEX_MASK); |
| 2113 | buf->b_ml.ml_line_ptr = ptr; |
| 2114 | buf->b_ml.ml_line_lnum = lnum; |
| 2115 | buf->b_ml.ml_flags &= ~ML_LINE_DIRTY; |
| 2116 | } |
| 2117 | if (will_change) |
| 2118 | buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS); |
| 2119 | |
| 2120 | return buf->b_ml.ml_line_ptr; |
| 2121 | } |
| 2122 | |
| 2123 | /* |
| 2124 | * Check if a line that was just obtained by a call to ml_get |
| 2125 | * is in allocated memory. |
| 2126 | */ |
| 2127 | int |
| 2128 | ml_line_alloced() |
| 2129 | { |
| 2130 | return (curbuf->b_ml.ml_flags & ML_LINE_DIRTY); |
| 2131 | } |
| 2132 | |
| 2133 | /* |
| 2134 | * Append a line after lnum (may be 0 to insert a line in front of the file). |
| 2135 | * "line" does not need to be allocated, but can't be another line in a |
| 2136 | * buffer, unlocking may make it invalid. |
| 2137 | * |
| 2138 | * newfile: TRUE when starting to edit a new file, meaning that pe_old_lnum |
| 2139 | * will be set for recovery |
| 2140 | * Check: The caller of this function should probably also call |
| 2141 | * appended_lines(). |
| 2142 | * |
| 2143 | * return FAIL for failure, OK otherwise |
| 2144 | */ |
| 2145 | int |
| 2146 | ml_append(lnum, line, len, newfile) |
| 2147 | linenr_T lnum; /* append after this line (can be 0) */ |
| 2148 | char_u *line; /* text of the new line */ |
| 2149 | colnr_T len; /* length of new line, including NUL, or 0 */ |
| 2150 | int newfile; /* flag, see above */ |
| 2151 | { |
| 2152 | /* When starting up, we might still need to create the memfile */ |
| 2153 | if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL) == FAIL) |
| 2154 | return FAIL; |
| 2155 | |
| 2156 | if (curbuf->b_ml.ml_line_lnum != 0) |
| 2157 | ml_flush_line(curbuf); |
| 2158 | return ml_append_int(curbuf, lnum, line, len, newfile, FALSE); |
| 2159 | } |
| 2160 | |
Bram Moolenaar | a1956f6 | 2006-03-12 22:18:00 +0000 | [diff] [blame] | 2161 | #if defined(FEAT_SPELL) || defined(PROTO) |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 2162 | /* |
| 2163 | * Like ml_append() but for an arbitrary buffer. The buffer must already have |
| 2164 | * a memline. |
| 2165 | */ |
| 2166 | int |
| 2167 | ml_append_buf(buf, lnum, line, len, newfile) |
| 2168 | buf_T *buf; |
| 2169 | linenr_T lnum; /* append after this line (can be 0) */ |
| 2170 | char_u *line; /* text of the new line */ |
| 2171 | colnr_T len; /* length of new line, including NUL, or 0 */ |
| 2172 | int newfile; /* flag, see above */ |
| 2173 | { |
| 2174 | if (buf->b_ml.ml_mfp == NULL) |
| 2175 | return FAIL; |
| 2176 | |
| 2177 | if (buf->b_ml.ml_line_lnum != 0) |
| 2178 | ml_flush_line(buf); |
| 2179 | return ml_append_int(buf, lnum, line, len, newfile, FALSE); |
| 2180 | } |
| 2181 | #endif |
| 2182 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2183 | static int |
| 2184 | ml_append_int(buf, lnum, line, len, newfile, mark) |
| 2185 | buf_T *buf; |
| 2186 | linenr_T lnum; /* append after this line (can be 0) */ |
| 2187 | char_u *line; /* text of the new line */ |
| 2188 | colnr_T len; /* length of line, including NUL, or 0 */ |
| 2189 | int newfile; /* flag, see above */ |
| 2190 | int mark; /* mark the new line */ |
| 2191 | { |
| 2192 | int i; |
| 2193 | int line_count; /* number of indexes in current block */ |
| 2194 | int offset; |
| 2195 | int from, to; |
| 2196 | int space_needed; /* space needed for new line */ |
| 2197 | int page_size; |
| 2198 | int page_count; |
| 2199 | int db_idx; /* index for lnum in data block */ |
| 2200 | bhdr_T *hp; |
| 2201 | memfile_T *mfp; |
| 2202 | DATA_BL *dp; |
| 2203 | PTR_BL *pp; |
| 2204 | infoptr_T *ip; |
| 2205 | |
| 2206 | /* lnum out of range */ |
| 2207 | if (lnum > buf->b_ml.ml_line_count || buf->b_ml.ml_mfp == NULL) |
| 2208 | return FAIL; |
| 2209 | |
| 2210 | if (lowest_marked && lowest_marked > lnum) |
| 2211 | lowest_marked = lnum + 1; |
| 2212 | |
| 2213 | if (len == 0) |
| 2214 | len = (colnr_T)STRLEN(line) + 1; /* space needed for the text */ |
| 2215 | space_needed = len + INDEX_SIZE; /* space needed for text + index */ |
| 2216 | |
| 2217 | mfp = buf->b_ml.ml_mfp; |
| 2218 | page_size = mfp->mf_page_size; |
| 2219 | |
| 2220 | /* |
| 2221 | * find the data block containing the previous line |
| 2222 | * This also fills the stack with the blocks from the root to the data block |
| 2223 | * This also releases any locked block. |
| 2224 | */ |
| 2225 | if ((hp = ml_find_line(buf, lnum == 0 ? (linenr_T)1 : lnum, |
| 2226 | ML_INSERT)) == NULL) |
| 2227 | return FAIL; |
| 2228 | |
| 2229 | buf->b_ml.ml_flags &= ~ML_EMPTY; |
| 2230 | |
| 2231 | if (lnum == 0) /* got line one instead, correct db_idx */ |
| 2232 | db_idx = -1; /* careful, it is negative! */ |
| 2233 | else |
| 2234 | db_idx = lnum - buf->b_ml.ml_locked_low; |
| 2235 | /* get line count before the insertion */ |
| 2236 | line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low; |
| 2237 | |
| 2238 | dp = (DATA_BL *)(hp->bh_data); |
| 2239 | |
| 2240 | /* |
| 2241 | * If |
| 2242 | * - there is not enough room in the current block |
| 2243 | * - appending to the last line in the block |
| 2244 | * - not appending to the last line in the file |
| 2245 | * insert in front of the next block. |
| 2246 | */ |
| 2247 | if ((int)dp->db_free < space_needed && db_idx == line_count - 1 |
| 2248 | && lnum < buf->b_ml.ml_line_count) |
| 2249 | { |
| 2250 | /* |
| 2251 | * Now that the line is not going to be inserted in the block that we |
| 2252 | * expected, the line count has to be adjusted in the pointer blocks |
| 2253 | * by using ml_locked_lineadd. |
| 2254 | */ |
| 2255 | --(buf->b_ml.ml_locked_lineadd); |
| 2256 | --(buf->b_ml.ml_locked_high); |
| 2257 | if ((hp = ml_find_line(buf, lnum + 1, ML_INSERT)) == NULL) |
| 2258 | return FAIL; |
| 2259 | |
| 2260 | db_idx = -1; /* careful, it is negative! */ |
| 2261 | /* get line count before the insertion */ |
| 2262 | line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low; |
| 2263 | CHECK(buf->b_ml.ml_locked_low != lnum + 1, "locked_low != lnum + 1"); |
| 2264 | |
| 2265 | dp = (DATA_BL *)(hp->bh_data); |
| 2266 | } |
| 2267 | |
| 2268 | ++buf->b_ml.ml_line_count; |
| 2269 | |
| 2270 | if ((int)dp->db_free >= space_needed) /* enough room in data block */ |
| 2271 | { |
| 2272 | /* |
| 2273 | * Insert new line in existing data block, or in data block allocated above. |
| 2274 | */ |
| 2275 | dp->db_txt_start -= len; |
| 2276 | dp->db_free -= space_needed; |
| 2277 | ++(dp->db_line_count); |
| 2278 | |
| 2279 | /* |
| 2280 | * move the text of the lines that follow to the front |
| 2281 | * adjust the indexes of the lines that follow |
| 2282 | */ |
| 2283 | if (line_count > db_idx + 1) /* if there are following lines */ |
| 2284 | { |
| 2285 | /* |
| 2286 | * Offset is the start of the previous line. |
| 2287 | * This will become the character just after the new line. |
| 2288 | */ |
| 2289 | if (db_idx < 0) |
| 2290 | offset = dp->db_txt_end; |
| 2291 | else |
| 2292 | offset = ((dp->db_index[db_idx]) & DB_INDEX_MASK); |
| 2293 | mch_memmove((char *)dp + dp->db_txt_start, |
| 2294 | (char *)dp + dp->db_txt_start + len, |
| 2295 | (size_t)(offset - (dp->db_txt_start + len))); |
| 2296 | for (i = line_count - 1; i > db_idx; --i) |
| 2297 | dp->db_index[i + 1] = dp->db_index[i] - len; |
| 2298 | dp->db_index[db_idx + 1] = offset - len; |
| 2299 | } |
| 2300 | else /* add line at the end */ |
| 2301 | dp->db_index[db_idx + 1] = dp->db_txt_start; |
| 2302 | |
| 2303 | /* |
| 2304 | * copy the text into the block |
| 2305 | */ |
| 2306 | mch_memmove((char *)dp + dp->db_index[db_idx + 1], line, (size_t)len); |
| 2307 | if (mark) |
| 2308 | dp->db_index[db_idx + 1] |= DB_MARKED; |
| 2309 | |
| 2310 | /* |
| 2311 | * Mark the block dirty. |
| 2312 | */ |
| 2313 | buf->b_ml.ml_flags |= ML_LOCKED_DIRTY; |
| 2314 | if (!newfile) |
| 2315 | buf->b_ml.ml_flags |= ML_LOCKED_POS; |
| 2316 | } |
| 2317 | else /* not enough space in data block */ |
| 2318 | { |
| 2319 | /* |
| 2320 | * If there is not enough room we have to create a new data block and copy some |
| 2321 | * lines into it. |
| 2322 | * Then we have to insert an entry in the pointer block. |
| 2323 | * If this pointer block also is full, we go up another block, and so on, up |
| 2324 | * to the root if necessary. |
| 2325 | * The line counts in the pointer blocks have already been adjusted by |
| 2326 | * ml_find_line(). |
| 2327 | */ |
| 2328 | long line_count_left, line_count_right; |
| 2329 | int page_count_left, page_count_right; |
| 2330 | bhdr_T *hp_left; |
| 2331 | bhdr_T *hp_right; |
| 2332 | bhdr_T *hp_new; |
| 2333 | int lines_moved; |
| 2334 | int data_moved = 0; /* init to shut up gcc */ |
| 2335 | int total_moved = 0; /* init to shut up gcc */ |
| 2336 | DATA_BL *dp_right, *dp_left; |
| 2337 | int stack_idx; |
| 2338 | int in_left; |
| 2339 | int lineadd; |
| 2340 | blocknr_T bnum_left, bnum_right; |
| 2341 | linenr_T lnum_left, lnum_right; |
| 2342 | int pb_idx; |
| 2343 | PTR_BL *pp_new; |
| 2344 | |
| 2345 | /* |
| 2346 | * We are going to allocate a new data block. Depending on the |
| 2347 | * situation it will be put to the left or right of the existing |
| 2348 | * block. If possible we put the new line in the left block and move |
| 2349 | * the lines after it to the right block. Otherwise the new line is |
| 2350 | * also put in the right block. This method is more efficient when |
| 2351 | * inserting a lot of lines at one place. |
| 2352 | */ |
| 2353 | if (db_idx < 0) /* left block is new, right block is existing */ |
| 2354 | { |
| 2355 | lines_moved = 0; |
| 2356 | in_left = TRUE; |
| 2357 | /* space_needed does not change */ |
| 2358 | } |
| 2359 | else /* left block is existing, right block is new */ |
| 2360 | { |
| 2361 | lines_moved = line_count - db_idx - 1; |
| 2362 | if (lines_moved == 0) |
| 2363 | in_left = FALSE; /* put new line in right block */ |
| 2364 | /* space_needed does not change */ |
| 2365 | else |
| 2366 | { |
| 2367 | data_moved = ((dp->db_index[db_idx]) & DB_INDEX_MASK) - |
| 2368 | dp->db_txt_start; |
| 2369 | total_moved = data_moved + lines_moved * INDEX_SIZE; |
| 2370 | if ((int)dp->db_free + total_moved >= space_needed) |
| 2371 | { |
| 2372 | in_left = TRUE; /* put new line in left block */ |
| 2373 | space_needed = total_moved; |
| 2374 | } |
| 2375 | else |
| 2376 | { |
| 2377 | in_left = FALSE; /* put new line in right block */ |
| 2378 | space_needed += total_moved; |
| 2379 | } |
| 2380 | } |
| 2381 | } |
| 2382 | |
| 2383 | page_count = ((space_needed + HEADER_SIZE) + page_size - 1) / page_size; |
| 2384 | if ((hp_new = ml_new_data(mfp, newfile, page_count)) == NULL) |
| 2385 | { |
| 2386 | /* correct line counts in pointer blocks */ |
| 2387 | --(buf->b_ml.ml_locked_lineadd); |
| 2388 | --(buf->b_ml.ml_locked_high); |
| 2389 | return FAIL; |
| 2390 | } |
| 2391 | if (db_idx < 0) /* left block is new */ |
| 2392 | { |
| 2393 | hp_left = hp_new; |
| 2394 | hp_right = hp; |
| 2395 | line_count_left = 0; |
| 2396 | line_count_right = line_count; |
| 2397 | } |
| 2398 | else /* right block is new */ |
| 2399 | { |
| 2400 | hp_left = hp; |
| 2401 | hp_right = hp_new; |
| 2402 | line_count_left = line_count; |
| 2403 | line_count_right = 0; |
| 2404 | } |
| 2405 | dp_right = (DATA_BL *)(hp_right->bh_data); |
| 2406 | dp_left = (DATA_BL *)(hp_left->bh_data); |
| 2407 | bnum_left = hp_left->bh_bnum; |
| 2408 | bnum_right = hp_right->bh_bnum; |
| 2409 | page_count_left = hp_left->bh_page_count; |
| 2410 | page_count_right = hp_right->bh_page_count; |
| 2411 | |
| 2412 | /* |
| 2413 | * May move the new line into the right/new block. |
| 2414 | */ |
| 2415 | if (!in_left) |
| 2416 | { |
| 2417 | dp_right->db_txt_start -= len; |
| 2418 | dp_right->db_free -= len + INDEX_SIZE; |
| 2419 | dp_right->db_index[0] = dp_right->db_txt_start; |
| 2420 | if (mark) |
| 2421 | dp_right->db_index[0] |= DB_MARKED; |
| 2422 | |
| 2423 | mch_memmove((char *)dp_right + dp_right->db_txt_start, |
| 2424 | line, (size_t)len); |
| 2425 | ++line_count_right; |
| 2426 | } |
| 2427 | /* |
| 2428 | * may move lines from the left/old block to the right/new one. |
| 2429 | */ |
| 2430 | if (lines_moved) |
| 2431 | { |
| 2432 | /* |
| 2433 | */ |
| 2434 | dp_right->db_txt_start -= data_moved; |
| 2435 | dp_right->db_free -= total_moved; |
| 2436 | mch_memmove((char *)dp_right + dp_right->db_txt_start, |
| 2437 | (char *)dp_left + dp_left->db_txt_start, |
| 2438 | (size_t)data_moved); |
| 2439 | offset = dp_right->db_txt_start - dp_left->db_txt_start; |
| 2440 | dp_left->db_txt_start += data_moved; |
| 2441 | dp_left->db_free += total_moved; |
| 2442 | |
| 2443 | /* |
| 2444 | * update indexes in the new block |
| 2445 | */ |
| 2446 | for (to = line_count_right, from = db_idx + 1; |
| 2447 | from < line_count_left; ++from, ++to) |
| 2448 | dp_right->db_index[to] = dp->db_index[from] + offset; |
| 2449 | line_count_right += lines_moved; |
| 2450 | line_count_left -= lines_moved; |
| 2451 | } |
| 2452 | |
| 2453 | /* |
| 2454 | * May move the new line into the left (old or new) block. |
| 2455 | */ |
| 2456 | if (in_left) |
| 2457 | { |
| 2458 | dp_left->db_txt_start -= len; |
| 2459 | dp_left->db_free -= len + INDEX_SIZE; |
| 2460 | dp_left->db_index[line_count_left] = dp_left->db_txt_start; |
| 2461 | if (mark) |
| 2462 | dp_left->db_index[line_count_left] |= DB_MARKED; |
| 2463 | mch_memmove((char *)dp_left + dp_left->db_txt_start, |
| 2464 | line, (size_t)len); |
| 2465 | ++line_count_left; |
| 2466 | } |
| 2467 | |
| 2468 | if (db_idx < 0) /* left block is new */ |
| 2469 | { |
| 2470 | lnum_left = lnum + 1; |
| 2471 | lnum_right = 0; |
| 2472 | } |
| 2473 | else /* right block is new */ |
| 2474 | { |
| 2475 | lnum_left = 0; |
| 2476 | if (in_left) |
| 2477 | lnum_right = lnum + 2; |
| 2478 | else |
| 2479 | lnum_right = lnum + 1; |
| 2480 | } |
| 2481 | dp_left->db_line_count = line_count_left; |
| 2482 | dp_right->db_line_count = line_count_right; |
| 2483 | |
| 2484 | /* |
| 2485 | * release the two data blocks |
| 2486 | * The new one (hp_new) already has a correct blocknumber. |
| 2487 | * The old one (hp, in ml_locked) gets a positive blocknumber if |
| 2488 | * we changed it and we are not editing a new file. |
| 2489 | */ |
| 2490 | if (lines_moved || in_left) |
| 2491 | buf->b_ml.ml_flags |= ML_LOCKED_DIRTY; |
| 2492 | if (!newfile && db_idx >= 0 && in_left) |
| 2493 | buf->b_ml.ml_flags |= ML_LOCKED_POS; |
| 2494 | mf_put(mfp, hp_new, TRUE, FALSE); |
| 2495 | |
| 2496 | /* |
| 2497 | * flush the old data block |
| 2498 | * set ml_locked_lineadd to 0, because the updating of the |
| 2499 | * pointer blocks is done below |
| 2500 | */ |
| 2501 | lineadd = buf->b_ml.ml_locked_lineadd; |
| 2502 | buf->b_ml.ml_locked_lineadd = 0; |
| 2503 | ml_find_line(buf, (linenr_T)0, ML_FLUSH); /* flush data block */ |
| 2504 | |
| 2505 | /* |
| 2506 | * update pointer blocks for the new data block |
| 2507 | */ |
| 2508 | for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0; |
| 2509 | --stack_idx) |
| 2510 | { |
| 2511 | ip = &(buf->b_ml.ml_stack[stack_idx]); |
| 2512 | pb_idx = ip->ip_index; |
| 2513 | if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL) |
| 2514 | return FAIL; |
| 2515 | pp = (PTR_BL *)(hp->bh_data); /* must be pointer block */ |
| 2516 | if (pp->pb_id != PTR_ID) |
| 2517 | { |
| 2518 | EMSG(_("E317: pointer block id wrong 3")); |
| 2519 | mf_put(mfp, hp, FALSE, FALSE); |
| 2520 | return FAIL; |
| 2521 | } |
| 2522 | /* |
| 2523 | * TODO: If the pointer block is full and we are adding at the end |
| 2524 | * try to insert in front of the next block |
| 2525 | */ |
| 2526 | /* block not full, add one entry */ |
| 2527 | if (pp->pb_count < pp->pb_count_max) |
| 2528 | { |
| 2529 | if (pb_idx + 1 < (int)pp->pb_count) |
| 2530 | mch_memmove(&pp->pb_pointer[pb_idx + 2], |
| 2531 | &pp->pb_pointer[pb_idx + 1], |
| 2532 | (size_t)(pp->pb_count - pb_idx - 1) * sizeof(PTR_EN)); |
| 2533 | ++pp->pb_count; |
| 2534 | pp->pb_pointer[pb_idx].pe_line_count = line_count_left; |
| 2535 | pp->pb_pointer[pb_idx].pe_bnum = bnum_left; |
| 2536 | pp->pb_pointer[pb_idx].pe_page_count = page_count_left; |
| 2537 | pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right; |
| 2538 | pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right; |
| 2539 | pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right; |
| 2540 | |
| 2541 | if (lnum_left != 0) |
| 2542 | pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left; |
| 2543 | if (lnum_right != 0) |
| 2544 | pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right; |
| 2545 | |
| 2546 | mf_put(mfp, hp, TRUE, FALSE); |
| 2547 | buf->b_ml.ml_stack_top = stack_idx + 1; /* truncate stack */ |
| 2548 | |
| 2549 | if (lineadd) |
| 2550 | { |
| 2551 | --(buf->b_ml.ml_stack_top); |
| 2552 | /* fix line count for rest of blocks in the stack */ |
| 2553 | ml_lineadd(buf, lineadd); |
| 2554 | /* fix stack itself */ |
| 2555 | buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high += |
| 2556 | lineadd; |
| 2557 | ++(buf->b_ml.ml_stack_top); |
| 2558 | } |
| 2559 | |
| 2560 | /* |
| 2561 | * We are finished, break the loop here. |
| 2562 | */ |
| 2563 | break; |
| 2564 | } |
| 2565 | else /* pointer block full */ |
| 2566 | { |
| 2567 | /* |
| 2568 | * split the pointer block |
| 2569 | * allocate a new pointer block |
| 2570 | * move some of the pointer into the new block |
| 2571 | * prepare for updating the parent block |
| 2572 | */ |
| 2573 | for (;;) /* do this twice when splitting block 1 */ |
| 2574 | { |
| 2575 | hp_new = ml_new_ptr(mfp); |
| 2576 | if (hp_new == NULL) /* TODO: try to fix tree */ |
| 2577 | return FAIL; |
| 2578 | pp_new = (PTR_BL *)(hp_new->bh_data); |
| 2579 | |
| 2580 | if (hp->bh_bnum != 1) |
| 2581 | break; |
| 2582 | |
| 2583 | /* |
| 2584 | * if block 1 becomes full the tree is given an extra level |
| 2585 | * The pointers from block 1 are moved into the new block. |
| 2586 | * block 1 is updated to point to the new block |
| 2587 | * then continue to split the new block |
| 2588 | */ |
| 2589 | mch_memmove(pp_new, pp, (size_t)page_size); |
| 2590 | pp->pb_count = 1; |
| 2591 | pp->pb_pointer[0].pe_bnum = hp_new->bh_bnum; |
| 2592 | pp->pb_pointer[0].pe_line_count = buf->b_ml.ml_line_count; |
| 2593 | pp->pb_pointer[0].pe_old_lnum = 1; |
| 2594 | pp->pb_pointer[0].pe_page_count = 1; |
| 2595 | mf_put(mfp, hp, TRUE, FALSE); /* release block 1 */ |
| 2596 | hp = hp_new; /* new block is to be split */ |
| 2597 | pp = pp_new; |
| 2598 | CHECK(stack_idx != 0, _("stack_idx should be 0")); |
| 2599 | ip->ip_index = 0; |
| 2600 | ++stack_idx; /* do block 1 again later */ |
| 2601 | } |
| 2602 | /* |
| 2603 | * move the pointers after the current one to the new block |
| 2604 | * If there are none, the new entry will be in the new block. |
| 2605 | */ |
| 2606 | total_moved = pp->pb_count - pb_idx - 1; |
| 2607 | if (total_moved) |
| 2608 | { |
| 2609 | mch_memmove(&pp_new->pb_pointer[0], |
| 2610 | &pp->pb_pointer[pb_idx + 1], |
| 2611 | (size_t)(total_moved) * sizeof(PTR_EN)); |
| 2612 | pp_new->pb_count = total_moved; |
| 2613 | pp->pb_count -= total_moved - 1; |
| 2614 | pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right; |
| 2615 | pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right; |
| 2616 | pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right; |
| 2617 | if (lnum_right) |
| 2618 | pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right; |
| 2619 | } |
| 2620 | else |
| 2621 | { |
| 2622 | pp_new->pb_count = 1; |
| 2623 | pp_new->pb_pointer[0].pe_bnum = bnum_right; |
| 2624 | pp_new->pb_pointer[0].pe_line_count = line_count_right; |
| 2625 | pp_new->pb_pointer[0].pe_page_count = page_count_right; |
| 2626 | pp_new->pb_pointer[0].pe_old_lnum = lnum_right; |
| 2627 | } |
| 2628 | pp->pb_pointer[pb_idx].pe_bnum = bnum_left; |
| 2629 | pp->pb_pointer[pb_idx].pe_line_count = line_count_left; |
| 2630 | pp->pb_pointer[pb_idx].pe_page_count = page_count_left; |
| 2631 | if (lnum_left) |
| 2632 | pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left; |
| 2633 | lnum_left = 0; |
| 2634 | lnum_right = 0; |
| 2635 | |
| 2636 | /* |
| 2637 | * recompute line counts |
| 2638 | */ |
| 2639 | line_count_right = 0; |
| 2640 | for (i = 0; i < (int)pp_new->pb_count; ++i) |
| 2641 | line_count_right += pp_new->pb_pointer[i].pe_line_count; |
| 2642 | line_count_left = 0; |
| 2643 | for (i = 0; i < (int)pp->pb_count; ++i) |
| 2644 | line_count_left += pp->pb_pointer[i].pe_line_count; |
| 2645 | |
| 2646 | bnum_left = hp->bh_bnum; |
| 2647 | bnum_right = hp_new->bh_bnum; |
| 2648 | page_count_left = 1; |
| 2649 | page_count_right = 1; |
| 2650 | mf_put(mfp, hp, TRUE, FALSE); |
| 2651 | mf_put(mfp, hp_new, TRUE, FALSE); |
| 2652 | } |
| 2653 | } |
| 2654 | |
| 2655 | /* |
| 2656 | * Safety check: fallen out of for loop? |
| 2657 | */ |
| 2658 | if (stack_idx < 0) |
| 2659 | { |
| 2660 | EMSG(_("E318: Updated too many blocks?")); |
| 2661 | buf->b_ml.ml_stack_top = 0; /* invalidate stack */ |
| 2662 | } |
| 2663 | } |
| 2664 | |
| 2665 | #ifdef FEAT_BYTEOFF |
| 2666 | /* The line was inserted below 'lnum' */ |
| 2667 | ml_updatechunk(buf, lnum + 1, (long)len, ML_CHNK_ADDLINE); |
| 2668 | #endif |
| 2669 | #ifdef FEAT_NETBEANS_INTG |
| 2670 | if (usingNetbeans) |
| 2671 | { |
| 2672 | if (STRLEN(line) > 0) |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 2673 | netbeans_inserted(buf, lnum+1, (colnr_T)0, line, (int)STRLEN(line)); |
Bram Moolenaar | 35a9aaa | 2004-10-24 19:23:07 +0000 | [diff] [blame] | 2674 | netbeans_inserted(buf, lnum+1, (colnr_T)STRLEN(line), |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2675 | (char_u *)"\n", 1); |
| 2676 | } |
| 2677 | #endif |
| 2678 | return OK; |
| 2679 | } |
| 2680 | |
| 2681 | /* |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 2682 | * Replace line lnum, with buffering, in current buffer. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2683 | * |
Bram Moolenaar | 1056d98 | 2006-03-09 22:37:52 +0000 | [diff] [blame] | 2684 | * If "copy" is TRUE, make a copy of the line, otherwise the line has been |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2685 | * copied to allocated memory already. |
| 2686 | * |
| 2687 | * Check: The caller of this function should probably also call |
| 2688 | * changed_lines(), unless update_screen(NOT_VALID) is used. |
| 2689 | * |
| 2690 | * return FAIL for failure, OK otherwise |
| 2691 | */ |
| 2692 | int |
| 2693 | ml_replace(lnum, line, copy) |
| 2694 | linenr_T lnum; |
| 2695 | char_u *line; |
| 2696 | int copy; |
| 2697 | { |
| 2698 | if (line == NULL) /* just checking... */ |
| 2699 | return FAIL; |
| 2700 | |
| 2701 | /* When starting up, we might still need to create the memfile */ |
| 2702 | if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL) == FAIL) |
| 2703 | return FAIL; |
| 2704 | |
| 2705 | if (copy && (line = vim_strsave(line)) == NULL) /* allocate memory */ |
| 2706 | return FAIL; |
| 2707 | #ifdef FEAT_NETBEANS_INTG |
| 2708 | if (usingNetbeans) |
| 2709 | { |
| 2710 | netbeans_removed(curbuf, lnum, 0, (long)STRLEN(ml_get(lnum))); |
Bram Moolenaar | a93fa7e | 2006-04-17 22:14:47 +0000 | [diff] [blame] | 2711 | netbeans_inserted(curbuf, lnum, 0, line, (int)STRLEN(line)); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2712 | } |
| 2713 | #endif |
| 2714 | if (curbuf->b_ml.ml_line_lnum != lnum) /* other line buffered */ |
| 2715 | ml_flush_line(curbuf); /* flush it */ |
| 2716 | else if (curbuf->b_ml.ml_flags & ML_LINE_DIRTY) /* same line allocated */ |
| 2717 | vim_free(curbuf->b_ml.ml_line_ptr); /* free it */ |
| 2718 | curbuf->b_ml.ml_line_ptr = line; |
| 2719 | curbuf->b_ml.ml_line_lnum = lnum; |
| 2720 | curbuf->b_ml.ml_flags = (curbuf->b_ml.ml_flags | ML_LINE_DIRTY) & ~ML_EMPTY; |
| 2721 | |
| 2722 | return OK; |
| 2723 | } |
| 2724 | |
| 2725 | /* |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 2726 | * Delete line 'lnum' in the current buffer. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2727 | * |
| 2728 | * Check: The caller of this function should probably also call |
| 2729 | * deleted_lines() after this. |
| 2730 | * |
| 2731 | * return FAIL for failure, OK otherwise |
| 2732 | */ |
| 2733 | int |
| 2734 | ml_delete(lnum, message) |
| 2735 | linenr_T lnum; |
| 2736 | int message; |
| 2737 | { |
| 2738 | ml_flush_line(curbuf); |
| 2739 | return ml_delete_int(curbuf, lnum, message); |
| 2740 | } |
| 2741 | |
| 2742 | static int |
| 2743 | ml_delete_int(buf, lnum, message) |
| 2744 | buf_T *buf; |
| 2745 | linenr_T lnum; |
| 2746 | int message; |
| 2747 | { |
| 2748 | bhdr_T *hp; |
| 2749 | memfile_T *mfp; |
| 2750 | DATA_BL *dp; |
| 2751 | PTR_BL *pp; |
| 2752 | infoptr_T *ip; |
| 2753 | int count; /* number of entries in block */ |
| 2754 | int idx; |
| 2755 | int stack_idx; |
| 2756 | int text_start; |
| 2757 | int line_start; |
| 2758 | long line_size; |
| 2759 | int i; |
| 2760 | |
| 2761 | if (lnum < 1 || lnum > buf->b_ml.ml_line_count) |
| 2762 | return FAIL; |
| 2763 | |
| 2764 | if (lowest_marked && lowest_marked > lnum) |
| 2765 | lowest_marked--; |
| 2766 | |
| 2767 | /* |
| 2768 | * If the file becomes empty the last line is replaced by an empty line. |
| 2769 | */ |
| 2770 | if (buf->b_ml.ml_line_count == 1) /* file becomes empty */ |
| 2771 | { |
| 2772 | if (message |
| 2773 | #ifdef FEAT_NETBEANS_INTG |
| 2774 | && !netbeansSuppressNoLines |
| 2775 | #endif |
| 2776 | ) |
Bram Moolenaar | 238a564 | 2006-02-21 22:12:05 +0000 | [diff] [blame] | 2777 | set_keep_msg((char_u *)_(no_lines_msg), 0); |
| 2778 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2779 | /* FEAT_BYTEOFF already handled in there, dont worry 'bout it below */ |
| 2780 | i = ml_replace((linenr_T)1, (char_u *)"", TRUE); |
| 2781 | buf->b_ml.ml_flags |= ML_EMPTY; |
| 2782 | |
| 2783 | return i; |
| 2784 | } |
| 2785 | |
| 2786 | /* |
| 2787 | * find the data block containing the line |
| 2788 | * This also fills the stack with the blocks from the root to the data block |
| 2789 | * This also releases any locked block. |
| 2790 | */ |
| 2791 | mfp = buf->b_ml.ml_mfp; |
| 2792 | if (mfp == NULL) |
| 2793 | return FAIL; |
| 2794 | |
| 2795 | if ((hp = ml_find_line(buf, lnum, ML_DELETE)) == NULL) |
| 2796 | return FAIL; |
| 2797 | |
| 2798 | dp = (DATA_BL *)(hp->bh_data); |
| 2799 | /* compute line count before the delete */ |
| 2800 | count = (long)(buf->b_ml.ml_locked_high) |
| 2801 | - (long)(buf->b_ml.ml_locked_low) + 2; |
| 2802 | idx = lnum - buf->b_ml.ml_locked_low; |
| 2803 | |
| 2804 | --buf->b_ml.ml_line_count; |
| 2805 | |
| 2806 | line_start = ((dp->db_index[idx]) & DB_INDEX_MASK); |
| 2807 | if (idx == 0) /* first line in block, text at the end */ |
| 2808 | line_size = dp->db_txt_end - line_start; |
| 2809 | else |
| 2810 | line_size = ((dp->db_index[idx - 1]) & DB_INDEX_MASK) - line_start; |
| 2811 | |
| 2812 | #ifdef FEAT_NETBEANS_INTG |
| 2813 | if (usingNetbeans) |
Bram Moolenaar | 35a9aaa | 2004-10-24 19:23:07 +0000 | [diff] [blame] | 2814 | netbeans_removed(buf, lnum, 0, (long)line_size); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2815 | #endif |
| 2816 | |
| 2817 | /* |
| 2818 | * special case: If there is only one line in the data block it becomes empty. |
| 2819 | * Then we have to remove the entry, pointing to this data block, from the |
| 2820 | * pointer block. If this pointer block also becomes empty, we go up another |
| 2821 | * block, and so on, up to the root if necessary. |
| 2822 | * The line counts in the pointer blocks have already been adjusted by |
| 2823 | * ml_find_line(). |
| 2824 | */ |
| 2825 | if (count == 1) |
| 2826 | { |
| 2827 | mf_free(mfp, hp); /* free the data block */ |
| 2828 | buf->b_ml.ml_locked = NULL; |
| 2829 | |
| 2830 | for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0; --stack_idx) |
| 2831 | { |
| 2832 | buf->b_ml.ml_stack_top = 0; /* stack is invalid when failing */ |
| 2833 | ip = &(buf->b_ml.ml_stack[stack_idx]); |
| 2834 | idx = ip->ip_index; |
| 2835 | if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL) |
| 2836 | return FAIL; |
| 2837 | pp = (PTR_BL *)(hp->bh_data); /* must be pointer block */ |
| 2838 | if (pp->pb_id != PTR_ID) |
| 2839 | { |
| 2840 | EMSG(_("E317: pointer block id wrong 4")); |
| 2841 | mf_put(mfp, hp, FALSE, FALSE); |
| 2842 | return FAIL; |
| 2843 | } |
| 2844 | count = --(pp->pb_count); |
| 2845 | if (count == 0) /* the pointer block becomes empty! */ |
| 2846 | mf_free(mfp, hp); |
| 2847 | else |
| 2848 | { |
| 2849 | if (count != idx) /* move entries after the deleted one */ |
| 2850 | mch_memmove(&pp->pb_pointer[idx], &pp->pb_pointer[idx + 1], |
| 2851 | (size_t)(count - idx) * sizeof(PTR_EN)); |
| 2852 | mf_put(mfp, hp, TRUE, FALSE); |
| 2853 | |
| 2854 | buf->b_ml.ml_stack_top = stack_idx; /* truncate stack */ |
| 2855 | /* fix line count for rest of blocks in the stack */ |
| 2856 | if (buf->b_ml.ml_locked_lineadd) |
| 2857 | { |
| 2858 | ml_lineadd(buf, buf->b_ml.ml_locked_lineadd); |
| 2859 | buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high += |
| 2860 | buf->b_ml.ml_locked_lineadd; |
| 2861 | } |
| 2862 | ++(buf->b_ml.ml_stack_top); |
| 2863 | |
| 2864 | break; |
| 2865 | } |
| 2866 | } |
| 2867 | CHECK(stack_idx < 0, _("deleted block 1?")); |
| 2868 | } |
| 2869 | else |
| 2870 | { |
| 2871 | /* |
| 2872 | * delete the text by moving the next lines forwards |
| 2873 | */ |
| 2874 | text_start = dp->db_txt_start; |
| 2875 | mch_memmove((char *)dp + text_start + line_size, |
| 2876 | (char *)dp + text_start, (size_t)(line_start - text_start)); |
| 2877 | |
| 2878 | /* |
| 2879 | * delete the index by moving the next indexes backwards |
| 2880 | * Adjust the indexes for the text movement. |
| 2881 | */ |
| 2882 | for (i = idx; i < count - 1; ++i) |
| 2883 | dp->db_index[i] = dp->db_index[i + 1] + line_size; |
| 2884 | |
| 2885 | dp->db_free += line_size + INDEX_SIZE; |
| 2886 | dp->db_txt_start += line_size; |
| 2887 | --(dp->db_line_count); |
| 2888 | |
| 2889 | /* |
| 2890 | * mark the block dirty and make sure it is in the file (for recovery) |
| 2891 | */ |
| 2892 | buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS); |
| 2893 | } |
| 2894 | |
| 2895 | #ifdef FEAT_BYTEOFF |
| 2896 | ml_updatechunk(buf, lnum, line_size, ML_CHNK_DELLINE); |
| 2897 | #endif |
| 2898 | return OK; |
| 2899 | } |
| 2900 | |
| 2901 | /* |
| 2902 | * set the B_MARKED flag for line 'lnum' |
| 2903 | */ |
| 2904 | void |
| 2905 | ml_setmarked(lnum) |
| 2906 | linenr_T lnum; |
| 2907 | { |
| 2908 | bhdr_T *hp; |
| 2909 | DATA_BL *dp; |
| 2910 | /* invalid line number */ |
| 2911 | if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count |
| 2912 | || curbuf->b_ml.ml_mfp == NULL) |
| 2913 | return; /* give error message? */ |
| 2914 | |
| 2915 | if (lowest_marked == 0 || lowest_marked > lnum) |
| 2916 | lowest_marked = lnum; |
| 2917 | |
| 2918 | /* |
| 2919 | * find the data block containing the line |
| 2920 | * This also fills the stack with the blocks from the root to the data block |
| 2921 | * This also releases any locked block. |
| 2922 | */ |
| 2923 | if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL) |
| 2924 | return; /* give error message? */ |
| 2925 | |
| 2926 | dp = (DATA_BL *)(hp->bh_data); |
| 2927 | dp->db_index[lnum - curbuf->b_ml.ml_locked_low] |= DB_MARKED; |
| 2928 | curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY; |
| 2929 | } |
| 2930 | |
| 2931 | /* |
| 2932 | * find the first line with its B_MARKED flag set |
| 2933 | */ |
| 2934 | linenr_T |
| 2935 | ml_firstmarked() |
| 2936 | { |
| 2937 | bhdr_T *hp; |
| 2938 | DATA_BL *dp; |
| 2939 | linenr_T lnum; |
| 2940 | int i; |
| 2941 | |
| 2942 | if (curbuf->b_ml.ml_mfp == NULL) |
| 2943 | return (linenr_T) 0; |
| 2944 | |
| 2945 | /* |
| 2946 | * The search starts with lowest_marked line. This is the last line where |
| 2947 | * a mark was found, adjusted by inserting/deleting lines. |
| 2948 | */ |
| 2949 | for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; ) |
| 2950 | { |
| 2951 | /* |
| 2952 | * Find the data block containing the line. |
| 2953 | * This also fills the stack with the blocks from the root to the data |
| 2954 | * block This also releases any locked block. |
| 2955 | */ |
| 2956 | if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL) |
| 2957 | return (linenr_T)0; /* give error message? */ |
| 2958 | |
| 2959 | dp = (DATA_BL *)(hp->bh_data); |
| 2960 | |
| 2961 | for (i = lnum - curbuf->b_ml.ml_locked_low; |
| 2962 | lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum) |
| 2963 | if ((dp->db_index[i]) & DB_MARKED) |
| 2964 | { |
| 2965 | (dp->db_index[i]) &= DB_INDEX_MASK; |
| 2966 | curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY; |
| 2967 | lowest_marked = lnum + 1; |
| 2968 | return lnum; |
| 2969 | } |
| 2970 | } |
| 2971 | |
| 2972 | return (linenr_T) 0; |
| 2973 | } |
| 2974 | |
| 2975 | #if 0 /* not used */ |
| 2976 | /* |
| 2977 | * return TRUE if line 'lnum' has a mark |
| 2978 | */ |
| 2979 | int |
| 2980 | ml_has_mark(lnum) |
| 2981 | linenr_T lnum; |
| 2982 | { |
| 2983 | bhdr_T *hp; |
| 2984 | DATA_BL *dp; |
| 2985 | |
| 2986 | if (curbuf->b_ml.ml_mfp == NULL |
| 2987 | || (hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL) |
| 2988 | return FALSE; |
| 2989 | |
| 2990 | dp = (DATA_BL *)(hp->bh_data); |
| 2991 | return (int)((dp->db_index[lnum - curbuf->b_ml.ml_locked_low]) & DB_MARKED); |
| 2992 | } |
| 2993 | #endif |
| 2994 | |
| 2995 | /* |
| 2996 | * clear all DB_MARKED flags |
| 2997 | */ |
| 2998 | void |
| 2999 | ml_clearmarked() |
| 3000 | { |
| 3001 | bhdr_T *hp; |
| 3002 | DATA_BL *dp; |
| 3003 | linenr_T lnum; |
| 3004 | int i; |
| 3005 | |
| 3006 | if (curbuf->b_ml.ml_mfp == NULL) /* nothing to do */ |
| 3007 | return; |
| 3008 | |
| 3009 | /* |
| 3010 | * The search starts with line lowest_marked. |
| 3011 | */ |
| 3012 | for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; ) |
| 3013 | { |
| 3014 | /* |
| 3015 | * Find the data block containing the line. |
| 3016 | * This also fills the stack with the blocks from the root to the data |
| 3017 | * block and releases any locked block. |
| 3018 | */ |
| 3019 | if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL) |
| 3020 | return; /* give error message? */ |
| 3021 | |
| 3022 | dp = (DATA_BL *)(hp->bh_data); |
| 3023 | |
| 3024 | for (i = lnum - curbuf->b_ml.ml_locked_low; |
| 3025 | lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum) |
| 3026 | if ((dp->db_index[i]) & DB_MARKED) |
| 3027 | { |
| 3028 | (dp->db_index[i]) &= DB_INDEX_MASK; |
| 3029 | curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY; |
| 3030 | } |
| 3031 | } |
| 3032 | |
| 3033 | lowest_marked = 0; |
| 3034 | return; |
| 3035 | } |
| 3036 | |
| 3037 | /* |
| 3038 | * flush ml_line if necessary |
| 3039 | */ |
| 3040 | static void |
| 3041 | ml_flush_line(buf) |
| 3042 | buf_T *buf; |
| 3043 | { |
| 3044 | bhdr_T *hp; |
| 3045 | DATA_BL *dp; |
| 3046 | linenr_T lnum; |
| 3047 | char_u *new_line; |
| 3048 | char_u *old_line; |
| 3049 | colnr_T new_len; |
| 3050 | int old_len; |
| 3051 | int extra; |
| 3052 | int idx; |
| 3053 | int start; |
| 3054 | int count; |
| 3055 | int i; |
| 3056 | |
| 3057 | if (buf->b_ml.ml_line_lnum == 0 || buf->b_ml.ml_mfp == NULL) |
| 3058 | return; /* nothing to do */ |
| 3059 | |
| 3060 | if (buf->b_ml.ml_flags & ML_LINE_DIRTY) |
| 3061 | { |
| 3062 | lnum = buf->b_ml.ml_line_lnum; |
| 3063 | new_line = buf->b_ml.ml_line_ptr; |
| 3064 | |
| 3065 | hp = ml_find_line(buf, lnum, ML_FIND); |
| 3066 | if (hp == NULL) |
| 3067 | EMSGN(_("E320: Cannot find line %ld"), lnum); |
| 3068 | else |
| 3069 | { |
| 3070 | dp = (DATA_BL *)(hp->bh_data); |
| 3071 | idx = lnum - buf->b_ml.ml_locked_low; |
| 3072 | start = ((dp->db_index[idx]) & DB_INDEX_MASK); |
| 3073 | old_line = (char_u *)dp + start; |
| 3074 | if (idx == 0) /* line is last in block */ |
| 3075 | old_len = dp->db_txt_end - start; |
| 3076 | else /* text of previous line follows */ |
| 3077 | old_len = (dp->db_index[idx - 1] & DB_INDEX_MASK) - start; |
| 3078 | new_len = (colnr_T)STRLEN(new_line) + 1; |
| 3079 | extra = new_len - old_len; /* negative if lines gets smaller */ |
| 3080 | |
| 3081 | /* |
| 3082 | * if new line fits in data block, replace directly |
| 3083 | */ |
| 3084 | if ((int)dp->db_free >= extra) |
| 3085 | { |
| 3086 | /* if the length changes and there are following lines */ |
| 3087 | count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low + 1; |
| 3088 | if (extra != 0 && idx < count - 1) |
| 3089 | { |
| 3090 | /* move text of following lines */ |
| 3091 | mch_memmove((char *)dp + dp->db_txt_start - extra, |
| 3092 | (char *)dp + dp->db_txt_start, |
| 3093 | (size_t)(start - dp->db_txt_start)); |
| 3094 | |
| 3095 | /* adjust pointers of this and following lines */ |
| 3096 | for (i = idx + 1; i < count; ++i) |
| 3097 | dp->db_index[i] -= extra; |
| 3098 | } |
| 3099 | dp->db_index[idx] -= extra; |
| 3100 | |
| 3101 | /* adjust free space */ |
| 3102 | dp->db_free -= extra; |
| 3103 | dp->db_txt_start -= extra; |
| 3104 | |
| 3105 | /* copy new line into the data block */ |
| 3106 | mch_memmove(old_line - extra, new_line, (size_t)new_len); |
| 3107 | buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS); |
| 3108 | #ifdef FEAT_BYTEOFF |
| 3109 | /* The else case is already covered by the insert and delete */ |
| 3110 | ml_updatechunk(buf, lnum, (long)extra, ML_CHNK_UPDLINE); |
| 3111 | #endif |
| 3112 | } |
| 3113 | else |
| 3114 | { |
| 3115 | /* |
| 3116 | * Cannot do it in one data block: Delete and append. |
| 3117 | * Append first, because ml_delete_int() cannot delete the |
| 3118 | * last line in a buffer, which causes trouble for a buffer |
| 3119 | * that has only one line. |
| 3120 | * Don't forget to copy the mark! |
| 3121 | */ |
| 3122 | /* How about handling errors??? */ |
| 3123 | (void)ml_append_int(buf, lnum, new_line, new_len, FALSE, |
| 3124 | (dp->db_index[idx] & DB_MARKED)); |
| 3125 | (void)ml_delete_int(buf, lnum, FALSE); |
| 3126 | } |
| 3127 | } |
| 3128 | vim_free(new_line); |
| 3129 | } |
| 3130 | |
| 3131 | buf->b_ml.ml_line_lnum = 0; |
| 3132 | } |
| 3133 | |
| 3134 | /* |
| 3135 | * create a new, empty, data block |
| 3136 | */ |
| 3137 | static bhdr_T * |
| 3138 | ml_new_data(mfp, negative, page_count) |
| 3139 | memfile_T *mfp; |
| 3140 | int negative; |
| 3141 | int page_count; |
| 3142 | { |
| 3143 | bhdr_T *hp; |
| 3144 | DATA_BL *dp; |
| 3145 | |
| 3146 | if ((hp = mf_new(mfp, negative, page_count)) == NULL) |
| 3147 | return NULL; |
| 3148 | |
| 3149 | dp = (DATA_BL *)(hp->bh_data); |
| 3150 | dp->db_id = DATA_ID; |
| 3151 | dp->db_txt_start = dp->db_txt_end = page_count * mfp->mf_page_size; |
| 3152 | dp->db_free = dp->db_txt_start - HEADER_SIZE; |
| 3153 | dp->db_line_count = 0; |
| 3154 | |
| 3155 | return hp; |
| 3156 | } |
| 3157 | |
| 3158 | /* |
| 3159 | * create a new, empty, pointer block |
| 3160 | */ |
| 3161 | static bhdr_T * |
| 3162 | ml_new_ptr(mfp) |
| 3163 | memfile_T *mfp; |
| 3164 | { |
| 3165 | bhdr_T *hp; |
| 3166 | PTR_BL *pp; |
| 3167 | |
| 3168 | if ((hp = mf_new(mfp, FALSE, 1)) == NULL) |
| 3169 | return NULL; |
| 3170 | |
| 3171 | pp = (PTR_BL *)(hp->bh_data); |
| 3172 | pp->pb_id = PTR_ID; |
| 3173 | pp->pb_count = 0; |
| 3174 | pp->pb_count_max = (short_u)((mfp->mf_page_size - sizeof(PTR_BL)) / sizeof(PTR_EN) + 1); |
| 3175 | |
| 3176 | return hp; |
| 3177 | } |
| 3178 | |
| 3179 | /* |
| 3180 | * lookup line 'lnum' in a memline |
| 3181 | * |
| 3182 | * action: if ML_DELETE or ML_INSERT the line count is updated while searching |
| 3183 | * if ML_FLUSH only flush a locked block |
| 3184 | * if ML_FIND just find the line |
| 3185 | * |
| 3186 | * If the block was found it is locked and put in ml_locked. |
| 3187 | * The stack is updated to lead to the locked block. The ip_high field in |
| 3188 | * the stack is updated to reflect the last line in the block AFTER the |
| 3189 | * insert or delete, also if the pointer block has not been updated yet. But |
| 3190 | * if if ml_locked != NULL ml_locked_lineadd must be added to ip_high. |
| 3191 | * |
| 3192 | * return: NULL for failure, pointer to block header otherwise |
| 3193 | */ |
| 3194 | static bhdr_T * |
| 3195 | ml_find_line(buf, lnum, action) |
| 3196 | buf_T *buf; |
| 3197 | linenr_T lnum; |
| 3198 | int action; |
| 3199 | { |
| 3200 | DATA_BL *dp; |
| 3201 | PTR_BL *pp; |
| 3202 | infoptr_T *ip; |
| 3203 | bhdr_T *hp; |
| 3204 | memfile_T *mfp; |
| 3205 | linenr_T t; |
| 3206 | blocknr_T bnum, bnum2; |
| 3207 | int dirty; |
| 3208 | linenr_T low, high; |
| 3209 | int top; |
| 3210 | int page_count; |
| 3211 | int idx; |
| 3212 | |
| 3213 | mfp = buf->b_ml.ml_mfp; |
| 3214 | |
| 3215 | /* |
| 3216 | * If there is a locked block check if the wanted line is in it. |
| 3217 | * If not, flush and release the locked block. |
| 3218 | * Don't do this for ML_INSERT_SAME, because the stack need to be updated. |
| 3219 | * Don't do this for ML_FLUSH, because we want to flush the locked block. |
Bram Moolenaar | 47b8b15 | 2007-02-07 02:41:57 +0000 | [diff] [blame] | 3220 | * Don't do this when 'swapfile' is reset, we want to load all the blocks. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3221 | */ |
| 3222 | if (buf->b_ml.ml_locked) |
| 3223 | { |
Bram Moolenaar | 47b8b15 | 2007-02-07 02:41:57 +0000 | [diff] [blame] | 3224 | if (ML_SIMPLE(action) |
| 3225 | && buf->b_ml.ml_locked_low <= lnum |
| 3226 | && buf->b_ml.ml_locked_high >= lnum |
| 3227 | && !mf_dont_release) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3228 | { |
Bram Moolenaar | 47b8b15 | 2007-02-07 02:41:57 +0000 | [diff] [blame] | 3229 | /* remember to update pointer blocks and stack later */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3230 | if (action == ML_INSERT) |
| 3231 | { |
| 3232 | ++(buf->b_ml.ml_locked_lineadd); |
| 3233 | ++(buf->b_ml.ml_locked_high); |
| 3234 | } |
| 3235 | else if (action == ML_DELETE) |
| 3236 | { |
| 3237 | --(buf->b_ml.ml_locked_lineadd); |
| 3238 | --(buf->b_ml.ml_locked_high); |
| 3239 | } |
| 3240 | return (buf->b_ml.ml_locked); |
| 3241 | } |
| 3242 | |
| 3243 | mf_put(mfp, buf->b_ml.ml_locked, buf->b_ml.ml_flags & ML_LOCKED_DIRTY, |
| 3244 | buf->b_ml.ml_flags & ML_LOCKED_POS); |
| 3245 | buf->b_ml.ml_locked = NULL; |
| 3246 | |
| 3247 | /* |
| 3248 | * if lines have been added or deleted in the locked block, need to |
| 3249 | * update the line count in pointer blocks |
| 3250 | */ |
| 3251 | if (buf->b_ml.ml_locked_lineadd) |
| 3252 | ml_lineadd(buf, buf->b_ml.ml_locked_lineadd); |
| 3253 | } |
| 3254 | |
| 3255 | if (action == ML_FLUSH) /* nothing else to do */ |
| 3256 | return NULL; |
| 3257 | |
| 3258 | bnum = 1; /* start at the root of the tree */ |
| 3259 | page_count = 1; |
| 3260 | low = 1; |
| 3261 | high = buf->b_ml.ml_line_count; |
| 3262 | |
| 3263 | if (action == ML_FIND) /* first try stack entries */ |
| 3264 | { |
| 3265 | for (top = buf->b_ml.ml_stack_top - 1; top >= 0; --top) |
| 3266 | { |
| 3267 | ip = &(buf->b_ml.ml_stack[top]); |
| 3268 | if (ip->ip_low <= lnum && ip->ip_high >= lnum) |
| 3269 | { |
| 3270 | bnum = ip->ip_bnum; |
| 3271 | low = ip->ip_low; |
| 3272 | high = ip->ip_high; |
| 3273 | buf->b_ml.ml_stack_top = top; /* truncate stack at prev entry */ |
| 3274 | break; |
| 3275 | } |
| 3276 | } |
| 3277 | if (top < 0) |
| 3278 | buf->b_ml.ml_stack_top = 0; /* not found, start at the root */ |
| 3279 | } |
| 3280 | else /* ML_DELETE or ML_INSERT */ |
| 3281 | buf->b_ml.ml_stack_top = 0; /* start at the root */ |
| 3282 | |
| 3283 | /* |
| 3284 | * search downwards in the tree until a data block is found |
| 3285 | */ |
| 3286 | for (;;) |
| 3287 | { |
| 3288 | if ((hp = mf_get(mfp, bnum, page_count)) == NULL) |
| 3289 | goto error_noblock; |
| 3290 | |
| 3291 | /* |
| 3292 | * update high for insert/delete |
| 3293 | */ |
| 3294 | if (action == ML_INSERT) |
| 3295 | ++high; |
| 3296 | else if (action == ML_DELETE) |
| 3297 | --high; |
| 3298 | |
| 3299 | dp = (DATA_BL *)(hp->bh_data); |
| 3300 | if (dp->db_id == DATA_ID) /* data block */ |
| 3301 | { |
| 3302 | buf->b_ml.ml_locked = hp; |
| 3303 | buf->b_ml.ml_locked_low = low; |
| 3304 | buf->b_ml.ml_locked_high = high; |
| 3305 | buf->b_ml.ml_locked_lineadd = 0; |
| 3306 | buf->b_ml.ml_flags &= ~(ML_LOCKED_DIRTY | ML_LOCKED_POS); |
| 3307 | return hp; |
| 3308 | } |
| 3309 | |
| 3310 | pp = (PTR_BL *)(dp); /* must be pointer block */ |
| 3311 | if (pp->pb_id != PTR_ID) |
| 3312 | { |
| 3313 | EMSG(_("E317: pointer block id wrong")); |
| 3314 | goto error_block; |
| 3315 | } |
| 3316 | |
| 3317 | if ((top = ml_add_stack(buf)) < 0) /* add new entry to stack */ |
| 3318 | goto error_block; |
| 3319 | ip = &(buf->b_ml.ml_stack[top]); |
| 3320 | ip->ip_bnum = bnum; |
| 3321 | ip->ip_low = low; |
| 3322 | ip->ip_high = high; |
| 3323 | ip->ip_index = -1; /* index not known yet */ |
| 3324 | |
| 3325 | dirty = FALSE; |
| 3326 | for (idx = 0; idx < (int)pp->pb_count; ++idx) |
| 3327 | { |
| 3328 | t = pp->pb_pointer[idx].pe_line_count; |
| 3329 | CHECK(t == 0, _("pe_line_count is zero")); |
| 3330 | if ((low += t) > lnum) |
| 3331 | { |
| 3332 | ip->ip_index = idx; |
| 3333 | bnum = pp->pb_pointer[idx].pe_bnum; |
| 3334 | page_count = pp->pb_pointer[idx].pe_page_count; |
| 3335 | high = low - 1; |
| 3336 | low -= t; |
| 3337 | |
| 3338 | /* |
| 3339 | * a negative block number may have been changed |
| 3340 | */ |
| 3341 | if (bnum < 0) |
| 3342 | { |
| 3343 | bnum2 = mf_trans_del(mfp, bnum); |
| 3344 | if (bnum != bnum2) |
| 3345 | { |
| 3346 | bnum = bnum2; |
| 3347 | pp->pb_pointer[idx].pe_bnum = bnum; |
| 3348 | dirty = TRUE; |
| 3349 | } |
| 3350 | } |
| 3351 | |
| 3352 | break; |
| 3353 | } |
| 3354 | } |
| 3355 | if (idx >= (int)pp->pb_count) /* past the end: something wrong! */ |
| 3356 | { |
| 3357 | if (lnum > buf->b_ml.ml_line_count) |
| 3358 | EMSGN(_("E322: line number out of range: %ld past the end"), |
| 3359 | lnum - buf->b_ml.ml_line_count); |
| 3360 | |
| 3361 | else |
| 3362 | EMSGN(_("E323: line count wrong in block %ld"), bnum); |
| 3363 | goto error_block; |
| 3364 | } |
| 3365 | if (action == ML_DELETE) |
| 3366 | { |
| 3367 | pp->pb_pointer[idx].pe_line_count--; |
| 3368 | dirty = TRUE; |
| 3369 | } |
| 3370 | else if (action == ML_INSERT) |
| 3371 | { |
| 3372 | pp->pb_pointer[idx].pe_line_count++; |
| 3373 | dirty = TRUE; |
| 3374 | } |
| 3375 | mf_put(mfp, hp, dirty, FALSE); |
| 3376 | } |
| 3377 | |
| 3378 | error_block: |
| 3379 | mf_put(mfp, hp, FALSE, FALSE); |
| 3380 | error_noblock: |
| 3381 | /* |
| 3382 | * If action is ML_DELETE or ML_INSERT we have to correct the tree for |
| 3383 | * the incremented/decremented line counts, because there won't be a line |
| 3384 | * inserted/deleted after all. |
| 3385 | */ |
| 3386 | if (action == ML_DELETE) |
| 3387 | ml_lineadd(buf, 1); |
| 3388 | else if (action == ML_INSERT) |
| 3389 | ml_lineadd(buf, -1); |
| 3390 | buf->b_ml.ml_stack_top = 0; |
| 3391 | return NULL; |
| 3392 | } |
| 3393 | |
| 3394 | /* |
| 3395 | * add an entry to the info pointer stack |
| 3396 | * |
| 3397 | * return -1 for failure, number of the new entry otherwise |
| 3398 | */ |
| 3399 | static int |
| 3400 | ml_add_stack(buf) |
| 3401 | buf_T *buf; |
| 3402 | { |
| 3403 | int top; |
| 3404 | infoptr_T *newstack; |
| 3405 | |
| 3406 | top = buf->b_ml.ml_stack_top; |
| 3407 | |
| 3408 | /* may have to increase the stack size */ |
| 3409 | if (top == buf->b_ml.ml_stack_size) |
| 3410 | { |
| 3411 | CHECK(top > 0, _("Stack size increases")); /* more than 5 levels??? */ |
| 3412 | |
| 3413 | newstack = (infoptr_T *)alloc((unsigned)sizeof(infoptr_T) * |
| 3414 | (buf->b_ml.ml_stack_size + STACK_INCR)); |
| 3415 | if (newstack == NULL) |
| 3416 | return -1; |
| 3417 | mch_memmove(newstack, buf->b_ml.ml_stack, (size_t)top * sizeof(infoptr_T)); |
| 3418 | vim_free(buf->b_ml.ml_stack); |
| 3419 | buf->b_ml.ml_stack = newstack; |
| 3420 | buf->b_ml.ml_stack_size += STACK_INCR; |
| 3421 | } |
| 3422 | |
| 3423 | buf->b_ml.ml_stack_top++; |
| 3424 | return top; |
| 3425 | } |
| 3426 | |
| 3427 | /* |
| 3428 | * Update the pointer blocks on the stack for inserted/deleted lines. |
| 3429 | * The stack itself is also updated. |
| 3430 | * |
| 3431 | * When a insert/delete line action fails, the line is not inserted/deleted, |
| 3432 | * but the pointer blocks have already been updated. That is fixed here by |
| 3433 | * walking through the stack. |
| 3434 | * |
| 3435 | * Count is the number of lines added, negative if lines have been deleted. |
| 3436 | */ |
| 3437 | static void |
| 3438 | ml_lineadd(buf, count) |
| 3439 | buf_T *buf; |
| 3440 | int count; |
| 3441 | { |
| 3442 | int idx; |
| 3443 | infoptr_T *ip; |
| 3444 | PTR_BL *pp; |
| 3445 | memfile_T *mfp = buf->b_ml.ml_mfp; |
| 3446 | bhdr_T *hp; |
| 3447 | |
| 3448 | for (idx = buf->b_ml.ml_stack_top - 1; idx >= 0; --idx) |
| 3449 | { |
| 3450 | ip = &(buf->b_ml.ml_stack[idx]); |
| 3451 | if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL) |
| 3452 | break; |
| 3453 | pp = (PTR_BL *)(hp->bh_data); /* must be pointer block */ |
| 3454 | if (pp->pb_id != PTR_ID) |
| 3455 | { |
| 3456 | mf_put(mfp, hp, FALSE, FALSE); |
| 3457 | EMSG(_("E317: pointer block id wrong 2")); |
| 3458 | break; |
| 3459 | } |
| 3460 | pp->pb_pointer[ip->ip_index].pe_line_count += count; |
| 3461 | ip->ip_high += count; |
| 3462 | mf_put(mfp, hp, TRUE, FALSE); |
| 3463 | } |
| 3464 | } |
| 3465 | |
Bram Moolenaar | 900b4d7 | 2005-12-12 22:05:50 +0000 | [diff] [blame] | 3466 | #ifdef HAVE_READLINK |
| 3467 | static int resolve_symlink __ARGS((char_u *fname, char_u *buf)); |
| 3468 | |
| 3469 | /* |
| 3470 | * Resolve a symlink in the last component of a file name. |
| 3471 | * Note that f_resolve() does it for every part of the path, we don't do that |
| 3472 | * here. |
| 3473 | * If it worked returns OK and the resolved link in "buf[MAXPATHL]". |
| 3474 | * Otherwise returns FAIL. |
| 3475 | */ |
| 3476 | static int |
| 3477 | resolve_symlink(fname, buf) |
| 3478 | char_u *fname; |
| 3479 | char_u *buf; |
| 3480 | { |
| 3481 | char_u tmp[MAXPATHL]; |
| 3482 | int ret; |
| 3483 | int depth = 0; |
| 3484 | |
| 3485 | if (fname == NULL) |
| 3486 | return FAIL; |
| 3487 | |
| 3488 | /* Put the result so far in tmp[], starting with the original name. */ |
| 3489 | vim_strncpy(tmp, fname, MAXPATHL - 1); |
| 3490 | |
| 3491 | for (;;) |
| 3492 | { |
| 3493 | /* Limit symlink depth to 100, catch recursive loops. */ |
| 3494 | if (++depth == 100) |
| 3495 | { |
| 3496 | EMSG2(_("E773: Symlink loop for \"%s\""), fname); |
| 3497 | return FAIL; |
| 3498 | } |
| 3499 | |
| 3500 | ret = readlink((char *)tmp, (char *)buf, MAXPATHL - 1); |
| 3501 | if (ret <= 0) |
| 3502 | { |
Bram Moolenaar | cc98426 | 2005-12-23 22:19:46 +0000 | [diff] [blame] | 3503 | if (errno == EINVAL || errno == ENOENT) |
Bram Moolenaar | 900b4d7 | 2005-12-12 22:05:50 +0000 | [diff] [blame] | 3504 | { |
Bram Moolenaar | cc98426 | 2005-12-23 22:19:46 +0000 | [diff] [blame] | 3505 | /* Found non-symlink or not existing file, stop here. |
| 3506 | * When at the first level use the unmodifed name, skip the |
Bram Moolenaar | 900b4d7 | 2005-12-12 22:05:50 +0000 | [diff] [blame] | 3507 | * call to vim_FullName(). */ |
| 3508 | if (depth == 1) |
| 3509 | return FAIL; |
| 3510 | |
| 3511 | /* Use the resolved name in tmp[]. */ |
| 3512 | break; |
| 3513 | } |
| 3514 | |
| 3515 | /* There must be some error reading links, use original name. */ |
| 3516 | return FAIL; |
| 3517 | } |
| 3518 | buf[ret] = NUL; |
| 3519 | |
| 3520 | /* |
| 3521 | * Check whether the symlink is relative or absolute. |
| 3522 | * If it's relative, build a new path based on the directory |
| 3523 | * portion of the filename (if any) and the path the symlink |
| 3524 | * points to. |
| 3525 | */ |
| 3526 | if (mch_isFullName(buf)) |
| 3527 | STRCPY(tmp, buf); |
| 3528 | else |
| 3529 | { |
| 3530 | char_u *tail; |
| 3531 | |
| 3532 | tail = gettail(tmp); |
| 3533 | if (STRLEN(tail) + STRLEN(buf) >= MAXPATHL) |
| 3534 | return FAIL; |
| 3535 | STRCPY(tail, buf); |
| 3536 | } |
| 3537 | } |
| 3538 | |
| 3539 | /* |
| 3540 | * Try to resolve the full name of the file so that the swapfile name will |
| 3541 | * be consistent even when opening a relative symlink from different |
| 3542 | * working directories. |
| 3543 | */ |
| 3544 | return vim_FullName(tmp, buf, MAXPATHL, TRUE); |
| 3545 | } |
| 3546 | #endif |
| 3547 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3548 | /* |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 3549 | * Make swap file name out of the file name and a directory name. |
| 3550 | * Returns pointer to allocated memory or NULL. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3551 | */ |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 3552 | /*ARGSUSED*/ |
| 3553 | char_u * |
| 3554 | makeswapname(fname, ffname, buf, dir_name) |
| 3555 | char_u *fname; |
| 3556 | char_u *ffname; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3557 | buf_T *buf; |
| 3558 | char_u *dir_name; |
| 3559 | { |
| 3560 | char_u *r, *s; |
Bram Moolenaar | 900b4d7 | 2005-12-12 22:05:50 +0000 | [diff] [blame] | 3561 | #ifdef HAVE_READLINK |
| 3562 | char_u fname_buf[MAXPATHL]; |
| 3563 | char_u *fname_res; |
| 3564 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3565 | |
| 3566 | #if defined(UNIX) || defined(WIN3264) /* Need _very_ long file names */ |
| 3567 | s = dir_name + STRLEN(dir_name); |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 3568 | if (after_pathsep(dir_name, s) && s[-1] == s[-2]) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3569 | { /* Ends with '//', Use Full path */ |
| 3570 | r = NULL; |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 3571 | if ((s = make_percent_swname(dir_name, fname)) != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3572 | { |
| 3573 | r = modname(s, (char_u *)".swp", FALSE); |
| 3574 | vim_free(s); |
| 3575 | } |
| 3576 | return r; |
| 3577 | } |
| 3578 | #endif |
| 3579 | |
Bram Moolenaar | 900b4d7 | 2005-12-12 22:05:50 +0000 | [diff] [blame] | 3580 | #ifdef HAVE_READLINK |
| 3581 | /* Expand symlink in the file name, so that we put the swap file with the |
| 3582 | * actual file instead of with the symlink. */ |
| 3583 | if (resolve_symlink(fname, fname_buf) == OK) |
| 3584 | fname_res = fname_buf; |
| 3585 | else |
| 3586 | fname_res = fname; |
| 3587 | #endif |
| 3588 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3589 | r = buf_modname( |
| 3590 | #ifdef SHORT_FNAME |
| 3591 | TRUE, |
| 3592 | #else |
| 3593 | (buf->b_p_sn || buf->b_shortname), |
| 3594 | #endif |
Bram Moolenaar | d675e2c | 2007-01-09 14:09:25 +0000 | [diff] [blame] | 3595 | #if defined(VMS) || defined(RISCOS) |
| 3596 | /* Avoid problems if fname has special chars, eg <Wimp$Scrap>. |
| 3597 | * For VMS always use full path for swapfile. */ |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 3598 | ffname, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3599 | #else |
Bram Moolenaar | 900b4d7 | 2005-12-12 22:05:50 +0000 | [diff] [blame] | 3600 | # ifdef HAVE_READLINK |
| 3601 | fname_res, |
| 3602 | # else |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 3603 | fname, |
Bram Moolenaar | 900b4d7 | 2005-12-12 22:05:50 +0000 | [diff] [blame] | 3604 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3605 | #endif |
| 3606 | (char_u *) |
| 3607 | #if defined(VMS) || defined(RISCOS) |
| 3608 | "_swp", |
| 3609 | #else |
| 3610 | ".swp", |
| 3611 | #endif |
| 3612 | #ifdef SHORT_FNAME /* always 8.3 file name */ |
| 3613 | FALSE |
| 3614 | #else |
| 3615 | /* Prepend a '.' to the swap file name for the current directory. */ |
| 3616 | dir_name[0] == '.' && dir_name[1] == NUL |
| 3617 | #endif |
| 3618 | ); |
| 3619 | if (r == NULL) /* out of memory */ |
| 3620 | return NULL; |
| 3621 | |
| 3622 | s = get_file_in_dir(r, dir_name); |
| 3623 | vim_free(r); |
| 3624 | return s; |
| 3625 | } |
| 3626 | |
| 3627 | /* |
| 3628 | * Get file name to use for swap file or backup file. |
| 3629 | * Use the name of the edited file "fname" and an entry in the 'dir' or 'bdir' |
| 3630 | * option "dname". |
| 3631 | * - If "dname" is ".", return "fname" (swap file in dir of file). |
| 3632 | * - If "dname" starts with "./", insert "dname" in "fname" (swap file |
| 3633 | * relative to dir of file). |
| 3634 | * - Otherwise, prepend "dname" to the tail of "fname" (swap file in specific |
| 3635 | * dir). |
| 3636 | * |
| 3637 | * The return value is an allocated string and can be NULL. |
| 3638 | */ |
| 3639 | char_u * |
| 3640 | get_file_in_dir(fname, dname) |
| 3641 | char_u *fname; |
| 3642 | char_u *dname; /* don't use "dirname", it is a global for Alpha */ |
| 3643 | { |
| 3644 | char_u *t; |
| 3645 | char_u *tail; |
| 3646 | char_u *retval; |
| 3647 | int save_char; |
| 3648 | |
| 3649 | tail = gettail(fname); |
| 3650 | |
| 3651 | if (dname[0] == '.' && dname[1] == NUL) |
| 3652 | retval = vim_strsave(fname); |
| 3653 | else if (dname[0] == '.' && vim_ispathsep(dname[1])) |
| 3654 | { |
| 3655 | if (tail == fname) /* no path before file name */ |
| 3656 | retval = concat_fnames(dname + 2, tail, TRUE); |
| 3657 | else |
| 3658 | { |
| 3659 | save_char = *tail; |
| 3660 | *tail = NUL; |
| 3661 | t = concat_fnames(fname, dname + 2, TRUE); |
| 3662 | *tail = save_char; |
| 3663 | if (t == NULL) /* out of memory */ |
| 3664 | retval = NULL; |
| 3665 | else |
| 3666 | { |
| 3667 | retval = concat_fnames(t, tail, TRUE); |
| 3668 | vim_free(t); |
| 3669 | } |
| 3670 | } |
| 3671 | } |
| 3672 | else |
| 3673 | retval = concat_fnames(dname, tail, TRUE); |
| 3674 | |
| 3675 | return retval; |
| 3676 | } |
| 3677 | |
Bram Moolenaar | d5bc83f | 2005-12-07 21:07:59 +0000 | [diff] [blame] | 3678 | static void attention_message __ARGS((buf_T *buf, char_u *fname)); |
| 3679 | |
| 3680 | /* |
| 3681 | * Print the ATTENTION message: info about an existing swap file. |
| 3682 | */ |
| 3683 | static void |
| 3684 | attention_message(buf, fname) |
| 3685 | buf_T *buf; /* buffer being edited */ |
| 3686 | char_u *fname; /* swap file name */ |
| 3687 | { |
| 3688 | struct stat st; |
| 3689 | time_t x, sx; |
Bram Moolenaar | 31e97bf | 2006-10-10 14:20:13 +0000 | [diff] [blame] | 3690 | char *p; |
Bram Moolenaar | d5bc83f | 2005-12-07 21:07:59 +0000 | [diff] [blame] | 3691 | |
| 3692 | ++no_wait_return; |
| 3693 | (void)EMSG(_("E325: ATTENTION")); |
| 3694 | MSG_PUTS(_("\nFound a swap file by the name \"")); |
| 3695 | msg_home_replace(fname); |
| 3696 | MSG_PUTS("\"\n"); |
| 3697 | sx = swapfile_info(fname); |
| 3698 | MSG_PUTS(_("While opening file \"")); |
| 3699 | msg_outtrans(buf->b_fname); |
| 3700 | MSG_PUTS("\"\n"); |
| 3701 | if (mch_stat((char *)buf->b_fname, &st) != -1) |
| 3702 | { |
| 3703 | MSG_PUTS(_(" dated: ")); |
| 3704 | x = st.st_mtime; /* Manx C can't do &st.st_mtime */ |
Bram Moolenaar | 31e97bf | 2006-10-10 14:20:13 +0000 | [diff] [blame] | 3705 | p = ctime(&x); /* includes '\n' */ |
| 3706 | if (p == NULL) |
| 3707 | MSG_PUTS("(invalid)\n"); |
| 3708 | else |
| 3709 | MSG_PUTS(p); |
Bram Moolenaar | d5bc83f | 2005-12-07 21:07:59 +0000 | [diff] [blame] | 3710 | if (sx != 0 && x > sx) |
| 3711 | MSG_PUTS(_(" NEWER than swap file!\n")); |
| 3712 | } |
| 3713 | /* Some of these messages are long to allow translation to |
| 3714 | * other languages. */ |
| 3715 | MSG_PUTS(_("\n(1) Another program may be editing the same file.\n If this is the case, be careful not to end up with two\n different instances of the same file when making changes.\n")); |
| 3716 | MSG_PUTS(_(" Quit, or continue with caution.\n")); |
| 3717 | MSG_PUTS(_("\n(2) An edit session for this file crashed.\n")); |
| 3718 | MSG_PUTS(_(" If this is the case, use \":recover\" or \"vim -r ")); |
| 3719 | msg_outtrans(buf->b_fname); |
| 3720 | MSG_PUTS(_("\"\n to recover the changes (see \":help recovery\").\n")); |
| 3721 | MSG_PUTS(_(" If you did this already, delete the swap file \"")); |
| 3722 | msg_outtrans(fname); |
| 3723 | MSG_PUTS(_("\"\n to avoid this message.\n")); |
| 3724 | cmdline_row = msg_row; |
| 3725 | --no_wait_return; |
| 3726 | } |
| 3727 | |
| 3728 | #ifdef FEAT_AUTOCMD |
| 3729 | static int do_swapexists __ARGS((buf_T *buf, char_u *fname)); |
| 3730 | |
| 3731 | /* |
| 3732 | * Trigger the SwapExists autocommands. |
| 3733 | * Returns a value for equivalent to do_dialog() (see below): |
| 3734 | * 0: still need to ask for a choice |
| 3735 | * 1: open read-only |
| 3736 | * 2: edit anyway |
| 3737 | * 3: recover |
| 3738 | * 4: delete it |
| 3739 | * 5: quit |
| 3740 | * 6: abort |
| 3741 | */ |
| 3742 | static int |
| 3743 | do_swapexists(buf, fname) |
| 3744 | buf_T *buf; |
| 3745 | char_u *fname; |
| 3746 | { |
| 3747 | set_vim_var_string(VV_SWAPNAME, fname, -1); |
| 3748 | set_vim_var_string(VV_SWAPCHOICE, NULL, -1); |
| 3749 | |
| 3750 | /* Trigger SwapExists autocommands with <afile> set to the file being |
| 3751 | * edited. */ |
| 3752 | apply_autocmds(EVENT_SWAPEXISTS, buf->b_fname, NULL, FALSE, NULL); |
| 3753 | |
| 3754 | set_vim_var_string(VV_SWAPNAME, NULL, -1); |
| 3755 | |
| 3756 | switch (*get_vim_var_str(VV_SWAPCHOICE)) |
| 3757 | { |
| 3758 | case 'o': return 1; |
| 3759 | case 'e': return 2; |
| 3760 | case 'r': return 3; |
| 3761 | case 'd': return 4; |
| 3762 | case 'q': return 5; |
| 3763 | case 'a': return 6; |
| 3764 | } |
| 3765 | |
| 3766 | return 0; |
| 3767 | } |
| 3768 | #endif |
| 3769 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3770 | /* |
| 3771 | * Find out what name to use for the swap file for buffer 'buf'. |
| 3772 | * |
| 3773 | * Several names are tried to find one that does not exist |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 3774 | * Returns the name in allocated memory or NULL. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3775 | * |
| 3776 | * Note: If BASENAMELEN is not correct, you will get error messages for |
| 3777 | * not being able to open the swapfile |
| 3778 | */ |
| 3779 | static char_u * |
| 3780 | findswapname(buf, dirp, old_fname) |
| 3781 | buf_T *buf; |
| 3782 | char_u **dirp; /* pointer to list of directories */ |
| 3783 | char_u *old_fname; /* don't give warning for this file name */ |
| 3784 | { |
| 3785 | char_u *fname; |
| 3786 | int n; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3787 | char_u *dir_name; |
| 3788 | #ifdef AMIGA |
| 3789 | BPTR fh; |
| 3790 | #endif |
| 3791 | #ifndef SHORT_FNAME |
| 3792 | int r; |
| 3793 | #endif |
| 3794 | |
| 3795 | #if !defined(SHORT_FNAME) \ |
| 3796 | && ((!defined(UNIX) && !defined(OS2)) || defined(ARCHIE)) |
| 3797 | # define CREATE_DUMMY_FILE |
| 3798 | FILE *dummyfd = NULL; |
| 3799 | |
| 3800 | /* |
| 3801 | * If we start editing a new file, e.g. "test.doc", which resides on an MSDOS |
| 3802 | * compatible filesystem, it is possible that the file "test.doc.swp" which we |
| 3803 | * create will be exactly the same file. To avoid this problem we temporarily |
| 3804 | * create "test.doc". |
| 3805 | * Don't do this when the check below for a 8.3 file name is used. |
| 3806 | */ |
| 3807 | if (!(buf->b_p_sn || buf->b_shortname) && buf->b_fname != NULL |
| 3808 | && mch_getperm(buf->b_fname) < 0) |
| 3809 | dummyfd = mch_fopen((char *)buf->b_fname, "w"); |
| 3810 | #endif |
| 3811 | |
| 3812 | /* |
| 3813 | * Isolate a directory name from *dirp and put it in dir_name. |
| 3814 | * First allocate some memory to put the directory name in. |
| 3815 | */ |
| 3816 | dir_name = alloc((unsigned)STRLEN(*dirp) + 1); |
| 3817 | if (dir_name != NULL) |
| 3818 | (void)copy_option_part(dirp, dir_name, 31000, ","); |
| 3819 | |
| 3820 | /* |
| 3821 | * we try different names until we find one that does not exist yet |
| 3822 | */ |
| 3823 | if (dir_name == NULL) /* out of memory */ |
| 3824 | fname = NULL; |
| 3825 | else |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 3826 | fname = makeswapname(buf->b_fname, buf->b_ffname, buf, dir_name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3827 | |
| 3828 | for (;;) |
| 3829 | { |
| 3830 | if (fname == NULL) /* must be out of memory */ |
| 3831 | break; |
| 3832 | if ((n = (int)STRLEN(fname)) == 0) /* safety check */ |
| 3833 | { |
| 3834 | vim_free(fname); |
| 3835 | fname = NULL; |
| 3836 | break; |
| 3837 | } |
| 3838 | #if (defined(UNIX) || defined(OS2)) && !defined(ARCHIE) && !defined(SHORT_FNAME) |
| 3839 | /* |
| 3840 | * Some systems have a MS-DOS compatible filesystem that use 8.3 character |
| 3841 | * file names. If this is the first try and the swap file name does not fit in |
| 3842 | * 8.3, detect if this is the case, set shortname and try again. |
| 3843 | */ |
| 3844 | if (fname[n - 2] == 'w' && fname[n - 1] == 'p' |
| 3845 | && !(buf->b_p_sn || buf->b_shortname)) |
| 3846 | { |
| 3847 | char_u *tail; |
| 3848 | char_u *fname2; |
| 3849 | struct stat s1, s2; |
| 3850 | int f1, f2; |
| 3851 | int created1 = FALSE, created2 = FALSE; |
| 3852 | int same = FALSE; |
| 3853 | |
| 3854 | /* |
| 3855 | * Check if swapfile name does not fit in 8.3: |
| 3856 | * It either contains two dots, is longer than 8 chars, or starts |
| 3857 | * with a dot. |
| 3858 | */ |
| 3859 | tail = gettail(buf->b_fname); |
| 3860 | if ( vim_strchr(tail, '.') != NULL |
| 3861 | || STRLEN(tail) > (size_t)8 |
| 3862 | || *gettail(fname) == '.') |
| 3863 | { |
| 3864 | fname2 = alloc(n + 2); |
| 3865 | if (fname2 != NULL) |
| 3866 | { |
| 3867 | STRCPY(fname2, fname); |
| 3868 | /* if fname == "xx.xx.swp", fname2 = "xx.xx.swx" |
| 3869 | * if fname == ".xx.swp", fname2 = ".xx.swpx" |
| 3870 | * if fname == "123456789.swp", fname2 = "12345678x.swp" |
| 3871 | */ |
| 3872 | if (vim_strchr(tail, '.') != NULL) |
| 3873 | fname2[n - 1] = 'x'; |
| 3874 | else if (*gettail(fname) == '.') |
| 3875 | { |
| 3876 | fname2[n] = 'x'; |
| 3877 | fname2[n + 1] = NUL; |
| 3878 | } |
| 3879 | else |
| 3880 | fname2[n - 5] += 1; |
| 3881 | /* |
| 3882 | * may need to create the files to be able to use mch_stat() |
| 3883 | */ |
| 3884 | f1 = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0); |
| 3885 | if (f1 < 0) |
| 3886 | { |
| 3887 | f1 = mch_open_rw((char *)fname, |
| 3888 | O_RDWR|O_CREAT|O_EXCL|O_EXTRA); |
| 3889 | #if defined(OS2) |
| 3890 | if (f1 < 0 && errno == ENOENT) |
| 3891 | same = TRUE; |
| 3892 | #endif |
| 3893 | created1 = TRUE; |
| 3894 | } |
| 3895 | if (f1 >= 0) |
| 3896 | { |
| 3897 | f2 = mch_open((char *)fname2, O_RDONLY | O_EXTRA, 0); |
| 3898 | if (f2 < 0) |
| 3899 | { |
| 3900 | f2 = mch_open_rw((char *)fname2, |
| 3901 | O_RDWR|O_CREAT|O_EXCL|O_EXTRA); |
| 3902 | created2 = TRUE; |
| 3903 | } |
| 3904 | if (f2 >= 0) |
| 3905 | { |
| 3906 | /* |
| 3907 | * Both files exist now. If mch_stat() returns the |
| 3908 | * same device and inode they are the same file. |
| 3909 | */ |
| 3910 | if (mch_fstat(f1, &s1) != -1 |
| 3911 | && mch_fstat(f2, &s2) != -1 |
| 3912 | && s1.st_dev == s2.st_dev |
| 3913 | && s1.st_ino == s2.st_ino) |
| 3914 | same = TRUE; |
| 3915 | close(f2); |
| 3916 | if (created2) |
| 3917 | mch_remove(fname2); |
| 3918 | } |
| 3919 | close(f1); |
| 3920 | if (created1) |
| 3921 | mch_remove(fname); |
| 3922 | } |
| 3923 | vim_free(fname2); |
| 3924 | if (same) |
| 3925 | { |
| 3926 | buf->b_shortname = TRUE; |
| 3927 | vim_free(fname); |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 3928 | fname = makeswapname(buf->b_fname, buf->b_ffname, |
| 3929 | buf, dir_name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3930 | continue; /* try again with b_shortname set */ |
| 3931 | } |
| 3932 | } |
| 3933 | } |
| 3934 | } |
| 3935 | #endif |
| 3936 | /* |
| 3937 | * check if the swapfile already exists |
| 3938 | */ |
| 3939 | if (mch_getperm(fname) < 0) /* it does not exist */ |
| 3940 | { |
| 3941 | #ifdef HAVE_LSTAT |
| 3942 | struct stat sb; |
| 3943 | |
| 3944 | /* |
| 3945 | * Extra security check: When a swap file is a symbolic link, this |
| 3946 | * is most likely a symlink attack. |
| 3947 | */ |
| 3948 | if (mch_lstat((char *)fname, &sb) < 0) |
| 3949 | #else |
| 3950 | # ifdef AMIGA |
| 3951 | fh = Open((UBYTE *)fname, (long)MODE_NEWFILE); |
| 3952 | /* |
| 3953 | * on the Amiga mch_getperm() will return -1 when the file exists |
| 3954 | * but is being used by another program. This happens if you edit |
| 3955 | * a file twice. |
| 3956 | */ |
| 3957 | if (fh != (BPTR)NULL) /* can open file, OK */ |
| 3958 | { |
| 3959 | Close(fh); |
| 3960 | mch_remove(fname); |
| 3961 | break; |
| 3962 | } |
| 3963 | if (IoErr() != ERROR_OBJECT_IN_USE |
| 3964 | && IoErr() != ERROR_OBJECT_EXISTS) |
| 3965 | # endif |
| 3966 | #endif |
| 3967 | break; |
| 3968 | } |
| 3969 | |
| 3970 | /* |
| 3971 | * A file name equal to old_fname is OK to use. |
| 3972 | */ |
| 3973 | if (old_fname != NULL && fnamecmp(fname, old_fname) == 0) |
| 3974 | break; |
| 3975 | |
| 3976 | /* |
| 3977 | * get here when file already exists |
| 3978 | */ |
| 3979 | if (fname[n - 2] == 'w' && fname[n - 1] == 'p') /* first try */ |
| 3980 | { |
| 3981 | #ifndef SHORT_FNAME |
| 3982 | /* |
| 3983 | * on MS-DOS compatible filesystems (e.g. messydos) file.doc.swp |
| 3984 | * and file.doc are the same file. To guess if this problem is |
| 3985 | * present try if file.doc.swx exists. If it does, we set |
| 3986 | * buf->b_shortname and try file_doc.swp (dots replaced by |
| 3987 | * underscores for this file), and try again. If it doesn't we |
| 3988 | * assume that "file.doc.swp" already exists. |
| 3989 | */ |
| 3990 | if (!(buf->b_p_sn || buf->b_shortname)) /* not tried yet */ |
| 3991 | { |
| 3992 | fname[n - 1] = 'x'; |
| 3993 | r = mch_getperm(fname); /* try "file.swx" */ |
| 3994 | fname[n - 1] = 'p'; |
| 3995 | if (r >= 0) /* "file.swx" seems to exist */ |
| 3996 | { |
| 3997 | buf->b_shortname = TRUE; |
| 3998 | vim_free(fname); |
Bram Moolenaar | 04a09c1 | 2005-08-01 22:02:32 +0000 | [diff] [blame] | 3999 | fname = makeswapname(buf->b_fname, buf->b_ffname, |
| 4000 | buf, dir_name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4001 | continue; /* try again with '.' replaced with '_' */ |
| 4002 | } |
| 4003 | } |
| 4004 | #endif |
| 4005 | /* |
| 4006 | * If we get here the ".swp" file really exists. |
| 4007 | * Give an error message, unless recovering, no file name, we are |
| 4008 | * viewing a help file or when the path of the file is different |
| 4009 | * (happens when all .swp files are in one directory). |
| 4010 | */ |
Bram Moolenaar | 8fc061c | 2004-12-29 21:03:02 +0000 | [diff] [blame] | 4011 | if (!recoverymode && buf->b_fname != NULL |
| 4012 | && !buf->b_help && !(buf->b_flags & BF_DUMMY)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4013 | { |
| 4014 | int fd; |
| 4015 | struct block0 b0; |
| 4016 | int differ = FALSE; |
| 4017 | |
| 4018 | /* |
| 4019 | * Try to read block 0 from the swap file to get the original |
| 4020 | * file name (and inode number). |
| 4021 | */ |
| 4022 | fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0); |
| 4023 | if (fd >= 0) |
| 4024 | { |
| 4025 | if (read(fd, (char *)&b0, sizeof(b0)) == sizeof(b0)) |
| 4026 | { |
| 4027 | /* |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 4028 | * If the swapfile has the same directory as the |
| 4029 | * buffer don't compare the directory names, they can |
| 4030 | * have a different mountpoint. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4031 | */ |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 4032 | if (b0.b0_flags & B0_SAME_DIR) |
| 4033 | { |
| 4034 | if (fnamecmp(gettail(buf->b_ffname), |
| 4035 | gettail(b0.b0_fname)) != 0 |
| 4036 | || !same_directory(fname, buf->b_ffname)) |
Bram Moolenaar | 900b4d7 | 2005-12-12 22:05:50 +0000 | [diff] [blame] | 4037 | { |
| 4038 | #ifdef CHECK_INODE |
| 4039 | /* Symlinks may point to the same file even |
| 4040 | * when the name differs, need to check the |
| 4041 | * inode too. */ |
| 4042 | expand_env(b0.b0_fname, NameBuff, MAXPATHL); |
| 4043 | if (fnamecmp_ino(buf->b_ffname, NameBuff, |
| 4044 | char_to_long(b0.b0_ino))) |
| 4045 | #endif |
| 4046 | differ = TRUE; |
| 4047 | } |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 4048 | } |
| 4049 | else |
| 4050 | { |
| 4051 | /* |
| 4052 | * The name in the swap file may be |
| 4053 | * "~user/path/file". Expand it first. |
| 4054 | */ |
| 4055 | expand_env(b0.b0_fname, NameBuff, MAXPATHL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4056 | #ifdef CHECK_INODE |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 4057 | if (fnamecmp_ino(buf->b_ffname, NameBuff, |
Bram Moolenaar | 900b4d7 | 2005-12-12 22:05:50 +0000 | [diff] [blame] | 4058 | char_to_long(b0.b0_ino))) |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 4059 | differ = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4060 | #else |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 4061 | if (fnamecmp(NameBuff, buf->b_ffname) != 0) |
| 4062 | differ = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4063 | #endif |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 4064 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4065 | } |
| 4066 | close(fd); |
| 4067 | } |
| 4068 | #ifdef RISCOS |
| 4069 | else |
| 4070 | /* Can't open swap file, though it does exist. |
| 4071 | * Assume that the user is editing two files with |
| 4072 | * the same name in different directories. No error. |
| 4073 | */ |
| 4074 | differ = TRUE; |
| 4075 | #endif |
| 4076 | |
| 4077 | /* give the ATTENTION message when there is an old swap file |
| 4078 | * for the current file, and the buffer was not recovered. */ |
| 4079 | if (differ == FALSE && !(curbuf->b_flags & BF_RECOVERED) |
| 4080 | && vim_strchr(p_shm, SHM_ATTENTION) == NULL) |
| 4081 | { |
Bram Moolenaar | d5bc83f | 2005-12-07 21:07:59 +0000 | [diff] [blame] | 4082 | #if defined(HAS_SWAP_EXISTS_ACTION) |
| 4083 | int choice = 0; |
| 4084 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4085 | #ifdef CREATE_DUMMY_FILE |
| 4086 | int did_use_dummy = FALSE; |
| 4087 | |
| 4088 | /* Avoid getting a warning for the file being created |
| 4089 | * outside of Vim, it was created at the start of this |
| 4090 | * function. Delete the file now, because Vim might exit |
| 4091 | * here if the window is closed. */ |
| 4092 | if (dummyfd != NULL) |
| 4093 | { |
| 4094 | fclose(dummyfd); |
| 4095 | dummyfd = NULL; |
| 4096 | mch_remove(buf->b_fname); |
| 4097 | did_use_dummy = TRUE; |
| 4098 | } |
| 4099 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4100 | |
| 4101 | #if (defined(UNIX) || defined(__EMX__) || defined(VMS)) && (defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)) |
| 4102 | process_still_running = FALSE; |
| 4103 | #endif |
Bram Moolenaar | d5bc83f | 2005-12-07 21:07:59 +0000 | [diff] [blame] | 4104 | #ifdef FEAT_AUTOCMD |
| 4105 | /* |
| 4106 | * If there is an SwapExists autocommand and we can handle |
| 4107 | * the response, trigger it. It may return 0 to ask the |
| 4108 | * user anyway. |
| 4109 | */ |
| 4110 | if (swap_exists_action != SEA_NONE |
| 4111 | && has_autocmd(EVENT_SWAPEXISTS, buf->b_fname, buf)) |
| 4112 | choice = do_swapexists(buf, fname); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4113 | |
Bram Moolenaar | d5bc83f | 2005-12-07 21:07:59 +0000 | [diff] [blame] | 4114 | if (choice == 0) |
| 4115 | #endif |
| 4116 | { |
| 4117 | #ifdef FEAT_GUI |
| 4118 | /* If we are supposed to start the GUI but it wasn't |
| 4119 | * completely started yet, start it now. This makes |
| 4120 | * the messages displayed in the Vim window when |
| 4121 | * loading a session from the .gvimrc file. */ |
| 4122 | if (gui.starting && !gui.in_use) |
| 4123 | gui_start(); |
| 4124 | #endif |
| 4125 | /* Show info about the existing swap file. */ |
| 4126 | attention_message(buf, fname); |
| 4127 | |
| 4128 | /* We don't want a 'q' typed at the more-prompt |
| 4129 | * interrupt loading a file. */ |
| 4130 | got_int = FALSE; |
| 4131 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4132 | |
| 4133 | #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) |
Bram Moolenaar | d5bc83f | 2005-12-07 21:07:59 +0000 | [diff] [blame] | 4134 | if (swap_exists_action != SEA_NONE && choice == 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4135 | { |
| 4136 | char_u *name; |
| 4137 | |
| 4138 | name = alloc((unsigned)(STRLEN(fname) |
| 4139 | + STRLEN(_("Swap file \"")) |
| 4140 | + STRLEN(_("\" already exists!")) + 5)); |
| 4141 | if (name != NULL) |
| 4142 | { |
| 4143 | STRCPY(name, _("Swap file \"")); |
| 4144 | home_replace(NULL, fname, name + STRLEN(name), |
| 4145 | 1000, TRUE); |
| 4146 | STRCAT(name, _("\" already exists!")); |
| 4147 | } |
Bram Moolenaar | d5bc83f | 2005-12-07 21:07:59 +0000 | [diff] [blame] | 4148 | choice = do_dialog(VIM_WARNING, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4149 | (char_u *)_("VIM - ATTENTION"), |
| 4150 | name == NULL |
| 4151 | ? (char_u *)_("Swap file already exists!") |
| 4152 | : name, |
| 4153 | # if defined(UNIX) || defined(__EMX__) || defined(VMS) |
| 4154 | process_still_running |
| 4155 | ? (char_u *)_("&Open Read-Only\n&Edit anyway\n&Recover\n&Quit\n&Abort") : |
| 4156 | # endif |
Bram Moolenaar | d5bc83f | 2005-12-07 21:07:59 +0000 | [diff] [blame] | 4157 | (char_u *)_("&Open Read-Only\n&Edit anyway\n&Recover\n&Delete it\n&Quit\n&Abort"), 1, NULL); |
| 4158 | |
| 4159 | # if defined(UNIX) || defined(__EMX__) || defined(VMS) |
| 4160 | if (process_still_running && choice >= 4) |
| 4161 | choice++; /* Skip missing "Delete it" button */ |
| 4162 | # endif |
| 4163 | vim_free(name); |
| 4164 | |
| 4165 | /* pretend screen didn't scroll, need redraw anyway */ |
| 4166 | msg_scrolled = 0; |
| 4167 | redraw_all_later(NOT_VALID); |
| 4168 | } |
| 4169 | #endif |
| 4170 | |
| 4171 | #if defined(HAS_SWAP_EXISTS_ACTION) |
| 4172 | if (choice > 0) |
| 4173 | { |
| 4174 | switch (choice) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4175 | { |
| 4176 | case 1: |
| 4177 | buf->b_p_ro = TRUE; |
| 4178 | break; |
| 4179 | case 2: |
| 4180 | break; |
| 4181 | case 3: |
| 4182 | swap_exists_action = SEA_RECOVER; |
| 4183 | break; |
| 4184 | case 4: |
Bram Moolenaar | d5bc83f | 2005-12-07 21:07:59 +0000 | [diff] [blame] | 4185 | mch_remove(fname); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4186 | break; |
| 4187 | case 5: |
| 4188 | swap_exists_action = SEA_QUIT; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4189 | break; |
| 4190 | case 6: |
Bram Moolenaar | d5bc83f | 2005-12-07 21:07:59 +0000 | [diff] [blame] | 4191 | swap_exists_action = SEA_QUIT; |
| 4192 | got_int = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4193 | break; |
| 4194 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4195 | |
| 4196 | /* If the file was deleted this fname can be used. */ |
| 4197 | if (mch_getperm(fname) < 0) |
| 4198 | break; |
| 4199 | } |
| 4200 | else |
| 4201 | #endif |
| 4202 | { |
| 4203 | MSG_PUTS("\n"); |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 4204 | if (msg_silent == 0) |
| 4205 | /* call wait_return() later */ |
| 4206 | need_wait_return = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4207 | } |
| 4208 | |
| 4209 | #ifdef CREATE_DUMMY_FILE |
| 4210 | /* Going to try another name, need the dummy file again. */ |
| 4211 | if (did_use_dummy) |
| 4212 | dummyfd = mch_fopen((char *)buf->b_fname, "w"); |
| 4213 | #endif |
| 4214 | } |
| 4215 | } |
| 4216 | } |
| 4217 | |
| 4218 | /* |
| 4219 | * Change the ".swp" extension to find another file that can be used. |
| 4220 | * First decrement the last char: ".swo", ".swn", etc. |
| 4221 | * If that still isn't enough decrement the last but one char: ".svz" |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 4222 | * Can happen when editing many "No Name" buffers. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4223 | */ |
| 4224 | if (fname[n - 1] == 'a') /* ".s?a" */ |
| 4225 | { |
| 4226 | if (fname[n - 2] == 'a') /* ".saa": tried enough, give up */ |
| 4227 | { |
| 4228 | EMSG(_("E326: Too many swap files found")); |
| 4229 | vim_free(fname); |
| 4230 | fname = NULL; |
| 4231 | break; |
| 4232 | } |
| 4233 | --fname[n - 2]; /* ".svz", ".suz", etc. */ |
| 4234 | fname[n - 1] = 'z' + 1; |
| 4235 | } |
| 4236 | --fname[n - 1]; /* ".swo", ".swn", etc. */ |
| 4237 | } |
| 4238 | |
| 4239 | vim_free(dir_name); |
| 4240 | #ifdef CREATE_DUMMY_FILE |
| 4241 | if (dummyfd != NULL) /* file has been created temporarily */ |
| 4242 | { |
| 4243 | fclose(dummyfd); |
| 4244 | mch_remove(buf->b_fname); |
| 4245 | } |
| 4246 | #endif |
| 4247 | return fname; |
| 4248 | } |
| 4249 | |
| 4250 | static int |
| 4251 | b0_magic_wrong(b0p) |
| 4252 | ZERO_BL *b0p; |
| 4253 | { |
| 4254 | return (b0p->b0_magic_long != (long)B0_MAGIC_LONG |
| 4255 | || b0p->b0_magic_int != (int)B0_MAGIC_INT |
| 4256 | || b0p->b0_magic_short != (short)B0_MAGIC_SHORT |
| 4257 | || b0p->b0_magic_char != B0_MAGIC_CHAR); |
| 4258 | } |
| 4259 | |
| 4260 | #ifdef CHECK_INODE |
| 4261 | /* |
| 4262 | * Compare current file name with file name from swap file. |
| 4263 | * Try to use inode numbers when possible. |
| 4264 | * Return non-zero when files are different. |
| 4265 | * |
| 4266 | * When comparing file names a few things have to be taken into consideration: |
| 4267 | * - When working over a network the full path of a file depends on the host. |
| 4268 | * We check the inode number if possible. It is not 100% reliable though, |
| 4269 | * because the device number cannot be used over a network. |
| 4270 | * - When a file does not exist yet (editing a new file) there is no inode |
| 4271 | * number. |
| 4272 | * - The file name in a swap file may not be valid on the current host. The |
| 4273 | * "~user" form is used whenever possible to avoid this. |
| 4274 | * |
| 4275 | * This is getting complicated, let's make a table: |
| 4276 | * |
| 4277 | * ino_c ino_s fname_c fname_s differ = |
| 4278 | * |
| 4279 | * both files exist -> compare inode numbers: |
| 4280 | * != 0 != 0 X X ino_c != ino_s |
| 4281 | * |
| 4282 | * inode number(s) unknown, file names available -> compare file names |
| 4283 | * == 0 X OK OK fname_c != fname_s |
| 4284 | * X == 0 OK OK fname_c != fname_s |
| 4285 | * |
| 4286 | * current file doesn't exist, file for swap file exist, file name(s) not |
| 4287 | * available -> probably different |
| 4288 | * == 0 != 0 FAIL X TRUE |
| 4289 | * == 0 != 0 X FAIL TRUE |
| 4290 | * |
| 4291 | * current file exists, inode for swap unknown, file name(s) not |
| 4292 | * available -> probably different |
| 4293 | * != 0 == 0 FAIL X TRUE |
| 4294 | * != 0 == 0 X FAIL TRUE |
| 4295 | * |
| 4296 | * current file doesn't exist, inode for swap unknown, one file name not |
| 4297 | * available -> probably different |
| 4298 | * == 0 == 0 FAIL OK TRUE |
| 4299 | * == 0 == 0 OK FAIL TRUE |
| 4300 | * |
| 4301 | * current file doesn't exist, inode for swap unknown, both file names not |
| 4302 | * available -> probably same file |
| 4303 | * == 0 == 0 FAIL FAIL FALSE |
| 4304 | * |
| 4305 | * Note that when the ino_t is 64 bits, only the last 32 will be used. This |
| 4306 | * can't be changed without making the block 0 incompatible with 32 bit |
| 4307 | * versions. |
| 4308 | */ |
| 4309 | |
| 4310 | static int |
| 4311 | fnamecmp_ino(fname_c, fname_s, ino_block0) |
| 4312 | char_u *fname_c; /* current file name */ |
| 4313 | char_u *fname_s; /* file name from swap file */ |
| 4314 | long ino_block0; |
| 4315 | { |
| 4316 | struct stat st; |
| 4317 | ino_t ino_c = 0; /* ino of current file */ |
| 4318 | ino_t ino_s; /* ino of file from swap file */ |
| 4319 | char_u buf_c[MAXPATHL]; /* full path of fname_c */ |
| 4320 | char_u buf_s[MAXPATHL]; /* full path of fname_s */ |
| 4321 | int retval_c; /* flag: buf_c valid */ |
| 4322 | int retval_s; /* flag: buf_s valid */ |
| 4323 | |
| 4324 | if (mch_stat((char *)fname_c, &st) == 0) |
| 4325 | ino_c = (ino_t)st.st_ino; |
| 4326 | |
| 4327 | /* |
| 4328 | * First we try to get the inode from the file name, because the inode in |
| 4329 | * the swap file may be outdated. If that fails (e.g. this path is not |
| 4330 | * valid on this machine), use the inode from block 0. |
| 4331 | */ |
| 4332 | if (mch_stat((char *)fname_s, &st) == 0) |
| 4333 | ino_s = (ino_t)st.st_ino; |
| 4334 | else |
| 4335 | ino_s = (ino_t)ino_block0; |
| 4336 | |
| 4337 | if (ino_c && ino_s) |
| 4338 | return (ino_c != ino_s); |
| 4339 | |
| 4340 | /* |
| 4341 | * One of the inode numbers is unknown, try a forced vim_FullName() and |
| 4342 | * compare the file names. |
| 4343 | */ |
| 4344 | retval_c = vim_FullName(fname_c, buf_c, MAXPATHL, TRUE); |
| 4345 | retval_s = vim_FullName(fname_s, buf_s, MAXPATHL, TRUE); |
| 4346 | if (retval_c == OK && retval_s == OK) |
| 4347 | return (STRCMP(buf_c, buf_s) != 0); |
| 4348 | |
| 4349 | /* |
| 4350 | * Can't compare inodes or file names, guess that the files are different, |
| 4351 | * unless both appear not to exist at all. |
| 4352 | */ |
| 4353 | if (ino_s == 0 && ino_c == 0 && retval_c == FAIL && retval_s == FAIL) |
| 4354 | return FALSE; |
| 4355 | return TRUE; |
| 4356 | } |
| 4357 | #endif /* CHECK_INODE */ |
| 4358 | |
| 4359 | /* |
| 4360 | * Move a long integer into a four byte character array. |
| 4361 | * Used for machine independency in block zero. |
| 4362 | */ |
| 4363 | static void |
| 4364 | long_to_char(n, s) |
| 4365 | long n; |
| 4366 | char_u *s; |
| 4367 | { |
| 4368 | s[0] = (char_u)(n & 0xff); |
| 4369 | n = (unsigned)n >> 8; |
| 4370 | s[1] = (char_u)(n & 0xff); |
| 4371 | n = (unsigned)n >> 8; |
| 4372 | s[2] = (char_u)(n & 0xff); |
| 4373 | n = (unsigned)n >> 8; |
| 4374 | s[3] = (char_u)(n & 0xff); |
| 4375 | } |
| 4376 | |
| 4377 | static long |
| 4378 | char_to_long(s) |
| 4379 | char_u *s; |
| 4380 | { |
| 4381 | long retval; |
| 4382 | |
| 4383 | retval = s[3]; |
| 4384 | retval <<= 8; |
| 4385 | retval |= s[2]; |
| 4386 | retval <<= 8; |
| 4387 | retval |= s[1]; |
| 4388 | retval <<= 8; |
| 4389 | retval |= s[0]; |
| 4390 | |
| 4391 | return retval; |
| 4392 | } |
| 4393 | |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 4394 | /* |
| 4395 | * Set the flags in the first block of the swap file: |
| 4396 | * - file is modified or not: buf->b_changed |
| 4397 | * - 'fileformat' |
| 4398 | * - 'fileencoding' |
| 4399 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4400 | void |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 4401 | ml_setflags(buf) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4402 | buf_T *buf; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4403 | { |
| 4404 | bhdr_T *hp; |
| 4405 | ZERO_BL *b0p; |
| 4406 | |
| 4407 | if (!buf->b_ml.ml_mfp) |
| 4408 | return; |
| 4409 | for (hp = buf->b_ml.ml_mfp->mf_used_last; hp != NULL; hp = hp->bh_prev) |
| 4410 | { |
| 4411 | if (hp->bh_bnum == 0) |
| 4412 | { |
| 4413 | b0p = (ZERO_BL *)(hp->bh_data); |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame] | 4414 | b0p->b0_dirty = buf->b_changed ? B0_DIRTY : 0; |
| 4415 | b0p->b0_flags = (b0p->b0_flags & ~B0_FF_MASK) |
| 4416 | | (get_fileformat(buf) + 1); |
| 4417 | #ifdef FEAT_MBYTE |
| 4418 | add_b0_fenc(b0p, buf); |
| 4419 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4420 | hp->bh_flags |= BH_DIRTY; |
| 4421 | mf_sync(buf->b_ml.ml_mfp, MFS_ZERO); |
| 4422 | break; |
| 4423 | } |
| 4424 | } |
| 4425 | } |
| 4426 | |
| 4427 | #if defined(FEAT_BYTEOFF) || defined(PROTO) |
| 4428 | |
| 4429 | #define MLCS_MAXL 800 /* max no of lines in chunk */ |
| 4430 | #define MLCS_MINL 400 /* should be half of MLCS_MAXL */ |
| 4431 | |
| 4432 | /* |
| 4433 | * Keep information for finding byte offset of a line, updtytpe may be one of: |
| 4434 | * ML_CHNK_ADDLINE: Add len to parent chunk, possibly splitting it |
| 4435 | * Careful: ML_CHNK_ADDLINE may cause ml_find_line() to be called. |
| 4436 | * ML_CHNK_DELLINE: Subtract len from parent chunk, possibly deleting it |
| 4437 | * ML_CHNK_UPDLINE: Add len to parent chunk, as a signed entity. |
| 4438 | */ |
| 4439 | static void |
| 4440 | ml_updatechunk(buf, line, len, updtype) |
| 4441 | buf_T *buf; |
| 4442 | linenr_T line; |
| 4443 | long len; |
| 4444 | int updtype; |
| 4445 | { |
| 4446 | static buf_T *ml_upd_lastbuf = NULL; |
| 4447 | static linenr_T ml_upd_lastline; |
| 4448 | static linenr_T ml_upd_lastcurline; |
| 4449 | static int ml_upd_lastcurix; |
| 4450 | |
| 4451 | linenr_T curline = ml_upd_lastcurline; |
| 4452 | int curix = ml_upd_lastcurix; |
| 4453 | long size; |
| 4454 | chunksize_T *curchnk; |
| 4455 | int rest; |
| 4456 | bhdr_T *hp; |
| 4457 | DATA_BL *dp; |
| 4458 | |
| 4459 | if (buf->b_ml.ml_usedchunks == -1 || len == 0) |
| 4460 | return; |
| 4461 | if (buf->b_ml.ml_chunksize == NULL) |
| 4462 | { |
| 4463 | buf->b_ml.ml_chunksize = (chunksize_T *) |
| 4464 | alloc((unsigned)sizeof(chunksize_T) * 100); |
| 4465 | if (buf->b_ml.ml_chunksize == NULL) |
| 4466 | { |
| 4467 | buf->b_ml.ml_usedchunks = -1; |
| 4468 | return; |
| 4469 | } |
| 4470 | buf->b_ml.ml_numchunks = 100; |
| 4471 | buf->b_ml.ml_usedchunks = 1; |
| 4472 | buf->b_ml.ml_chunksize[0].mlcs_numlines = 1; |
| 4473 | buf->b_ml.ml_chunksize[0].mlcs_totalsize = 1; |
| 4474 | } |
| 4475 | |
| 4476 | if (updtype == ML_CHNK_UPDLINE && buf->b_ml.ml_line_count == 1) |
| 4477 | { |
| 4478 | /* |
| 4479 | * First line in empty buffer from ml_flush_line() -- reset |
| 4480 | */ |
| 4481 | buf->b_ml.ml_usedchunks = 1; |
| 4482 | buf->b_ml.ml_chunksize[0].mlcs_numlines = 1; |
| 4483 | buf->b_ml.ml_chunksize[0].mlcs_totalsize = |
| 4484 | (long)STRLEN(buf->b_ml.ml_line_ptr) + 1; |
| 4485 | return; |
| 4486 | } |
| 4487 | |
| 4488 | /* |
| 4489 | * Find chunk that our line belongs to, curline will be at start of the |
| 4490 | * chunk. |
| 4491 | */ |
| 4492 | if (buf != ml_upd_lastbuf || line != ml_upd_lastline + 1 |
| 4493 | || updtype != ML_CHNK_ADDLINE) |
| 4494 | { |
| 4495 | for (curline = 1, curix = 0; |
| 4496 | curix < buf->b_ml.ml_usedchunks - 1 |
| 4497 | && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines; |
| 4498 | curix++) |
| 4499 | { |
| 4500 | curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines; |
| 4501 | } |
| 4502 | } |
| 4503 | else if (line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines |
| 4504 | && curix < buf->b_ml.ml_usedchunks - 1) |
| 4505 | { |
| 4506 | /* Adjust cached curix & curline */ |
| 4507 | curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines; |
| 4508 | curix++; |
| 4509 | } |
| 4510 | curchnk = buf->b_ml.ml_chunksize + curix; |
| 4511 | |
| 4512 | if (updtype == ML_CHNK_DELLINE) |
Bram Moolenaar | 5a6404c | 2006-11-01 17:12:57 +0000 | [diff] [blame] | 4513 | len = -len; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4514 | curchnk->mlcs_totalsize += len; |
| 4515 | if (updtype == ML_CHNK_ADDLINE) |
| 4516 | { |
| 4517 | curchnk->mlcs_numlines++; |
| 4518 | |
| 4519 | /* May resize here so we don't have to do it in both cases below */ |
| 4520 | if (buf->b_ml.ml_usedchunks + 1 >= buf->b_ml.ml_numchunks) |
| 4521 | { |
| 4522 | buf->b_ml.ml_numchunks = buf->b_ml.ml_numchunks * 3 / 2; |
| 4523 | buf->b_ml.ml_chunksize = (chunksize_T *) |
| 4524 | vim_realloc(buf->b_ml.ml_chunksize, |
| 4525 | sizeof(chunksize_T) * buf->b_ml.ml_numchunks); |
| 4526 | if (buf->b_ml.ml_chunksize == NULL) |
| 4527 | { |
| 4528 | /* Hmmmm, Give up on offset for this buffer */ |
| 4529 | buf->b_ml.ml_usedchunks = -1; |
| 4530 | return; |
| 4531 | } |
| 4532 | } |
| 4533 | |
| 4534 | if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MAXL) |
| 4535 | { |
| 4536 | int count; /* number of entries in block */ |
| 4537 | int idx; |
| 4538 | int text_end; |
| 4539 | int linecnt; |
| 4540 | |
| 4541 | mch_memmove(buf->b_ml.ml_chunksize + curix + 1, |
| 4542 | buf->b_ml.ml_chunksize + curix, |
| 4543 | (buf->b_ml.ml_usedchunks - curix) * |
| 4544 | sizeof(chunksize_T)); |
| 4545 | /* Compute length of first half of lines in the splitted chunk */ |
| 4546 | size = 0; |
| 4547 | linecnt = 0; |
| 4548 | while (curline < buf->b_ml.ml_line_count |
| 4549 | && linecnt < MLCS_MINL) |
| 4550 | { |
| 4551 | if ((hp = ml_find_line(buf, curline, ML_FIND)) == NULL) |
| 4552 | { |
| 4553 | buf->b_ml.ml_usedchunks = -1; |
| 4554 | return; |
| 4555 | } |
| 4556 | dp = (DATA_BL *)(hp->bh_data); |
| 4557 | count = (long)(buf->b_ml.ml_locked_high) - |
| 4558 | (long)(buf->b_ml.ml_locked_low) + 1; |
| 4559 | idx = curline - buf->b_ml.ml_locked_low; |
| 4560 | curline = buf->b_ml.ml_locked_high + 1; |
| 4561 | if (idx == 0)/* first line in block, text at the end */ |
| 4562 | text_end = dp->db_txt_end; |
| 4563 | else |
| 4564 | text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK); |
| 4565 | /* Compute index of last line to use in this MEMLINE */ |
| 4566 | rest = count - idx; |
| 4567 | if (linecnt + rest > MLCS_MINL) |
| 4568 | { |
| 4569 | idx += MLCS_MINL - linecnt - 1; |
| 4570 | linecnt = MLCS_MINL; |
| 4571 | } |
| 4572 | else |
| 4573 | { |
| 4574 | idx = count - 1; |
| 4575 | linecnt += rest; |
| 4576 | } |
| 4577 | size += text_end - ((dp->db_index[idx]) & DB_INDEX_MASK); |
| 4578 | } |
| 4579 | buf->b_ml.ml_chunksize[curix].mlcs_numlines = linecnt; |
| 4580 | buf->b_ml.ml_chunksize[curix + 1].mlcs_numlines -= linecnt; |
| 4581 | buf->b_ml.ml_chunksize[curix].mlcs_totalsize = size; |
| 4582 | buf->b_ml.ml_chunksize[curix + 1].mlcs_totalsize -= size; |
| 4583 | buf->b_ml.ml_usedchunks++; |
| 4584 | ml_upd_lastbuf = NULL; /* Force recalc of curix & curline */ |
| 4585 | return; |
| 4586 | } |
| 4587 | else if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MINL |
| 4588 | && curix == buf->b_ml.ml_usedchunks - 1 |
| 4589 | && buf->b_ml.ml_line_count - line <= 1) |
| 4590 | { |
| 4591 | /* |
| 4592 | * We are in the last chunk and it is cheap to crate a new one |
| 4593 | * after this. Do it now to avoid the loop above later on |
| 4594 | */ |
| 4595 | curchnk = buf->b_ml.ml_chunksize + curix + 1; |
| 4596 | buf->b_ml.ml_usedchunks++; |
| 4597 | if (line == buf->b_ml.ml_line_count) |
| 4598 | { |
| 4599 | curchnk->mlcs_numlines = 0; |
| 4600 | curchnk->mlcs_totalsize = 0; |
| 4601 | } |
| 4602 | else |
| 4603 | { |
| 4604 | /* |
| 4605 | * Line is just prior to last, move count for last |
| 4606 | * This is the common case when loading a new file |
| 4607 | */ |
| 4608 | hp = ml_find_line(buf, buf->b_ml.ml_line_count, ML_FIND); |
| 4609 | if (hp == NULL) |
| 4610 | { |
| 4611 | buf->b_ml.ml_usedchunks = -1; |
| 4612 | return; |
| 4613 | } |
| 4614 | dp = (DATA_BL *)(hp->bh_data); |
| 4615 | if (dp->db_line_count == 1) |
| 4616 | rest = dp->db_txt_end - dp->db_txt_start; |
| 4617 | else |
| 4618 | rest = |
| 4619 | ((dp->db_index[dp->db_line_count - 2]) & DB_INDEX_MASK) |
| 4620 | - dp->db_txt_start; |
| 4621 | curchnk->mlcs_totalsize = rest; |
| 4622 | curchnk->mlcs_numlines = 1; |
| 4623 | curchnk[-1].mlcs_totalsize -= rest; |
| 4624 | curchnk[-1].mlcs_numlines -= 1; |
| 4625 | } |
| 4626 | } |
| 4627 | } |
| 4628 | else if (updtype == ML_CHNK_DELLINE) |
| 4629 | { |
| 4630 | curchnk->mlcs_numlines--; |
| 4631 | ml_upd_lastbuf = NULL; /* Force recalc of curix & curline */ |
| 4632 | if (curix < (buf->b_ml.ml_usedchunks - 1) |
| 4633 | && (curchnk->mlcs_numlines + curchnk[1].mlcs_numlines) |
| 4634 | <= MLCS_MINL) |
| 4635 | { |
| 4636 | curix++; |
| 4637 | curchnk = buf->b_ml.ml_chunksize + curix; |
| 4638 | } |
| 4639 | else if (curix == 0 && curchnk->mlcs_numlines <= 0) |
| 4640 | { |
| 4641 | buf->b_ml.ml_usedchunks--; |
| 4642 | mch_memmove(buf->b_ml.ml_chunksize, buf->b_ml.ml_chunksize + 1, |
| 4643 | buf->b_ml.ml_usedchunks * sizeof(chunksize_T)); |
| 4644 | return; |
| 4645 | } |
| 4646 | else if (curix == 0 || (curchnk->mlcs_numlines > 10 |
| 4647 | && (curchnk->mlcs_numlines + curchnk[-1].mlcs_numlines) |
| 4648 | > MLCS_MINL)) |
| 4649 | { |
| 4650 | return; |
| 4651 | } |
| 4652 | |
| 4653 | /* Collapse chunks */ |
| 4654 | curchnk[-1].mlcs_numlines += curchnk->mlcs_numlines; |
| 4655 | curchnk[-1].mlcs_totalsize += curchnk->mlcs_totalsize; |
| 4656 | buf->b_ml.ml_usedchunks--; |
| 4657 | if (curix < buf->b_ml.ml_usedchunks) |
| 4658 | { |
| 4659 | mch_memmove(buf->b_ml.ml_chunksize + curix, |
| 4660 | buf->b_ml.ml_chunksize + curix + 1, |
| 4661 | (buf->b_ml.ml_usedchunks - curix) * |
| 4662 | sizeof(chunksize_T)); |
| 4663 | } |
| 4664 | return; |
| 4665 | } |
| 4666 | ml_upd_lastbuf = buf; |
| 4667 | ml_upd_lastline = line; |
| 4668 | ml_upd_lastcurline = curline; |
| 4669 | ml_upd_lastcurix = curix; |
| 4670 | } |
| 4671 | |
| 4672 | /* |
| 4673 | * Find offset for line or line with offset. |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4674 | * Find line with offset if "lnum" is 0; return remaining offset in offp |
| 4675 | * Find offset of line if "lnum" > 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4676 | * return -1 if information is not available |
| 4677 | */ |
| 4678 | long |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4679 | ml_find_line_or_offset(buf, lnum, offp) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4680 | buf_T *buf; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4681 | linenr_T lnum; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4682 | long *offp; |
| 4683 | { |
| 4684 | linenr_T curline; |
| 4685 | int curix; |
| 4686 | long size; |
| 4687 | bhdr_T *hp; |
| 4688 | DATA_BL *dp; |
| 4689 | int count; /* number of entries in block */ |
| 4690 | int idx; |
| 4691 | int start_idx; |
| 4692 | int text_end; |
| 4693 | long offset; |
| 4694 | int len; |
| 4695 | int ffdos = (get_fileformat(buf) == EOL_DOS); |
| 4696 | int extra = 0; |
| 4697 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4698 | /* take care of cached line first */ |
| 4699 | ml_flush_line(curbuf); |
| 4700 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4701 | if (buf->b_ml.ml_usedchunks == -1 |
| 4702 | || buf->b_ml.ml_chunksize == NULL |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4703 | || lnum < 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4704 | return -1; |
| 4705 | |
| 4706 | if (offp == NULL) |
| 4707 | offset = 0; |
| 4708 | else |
| 4709 | offset = *offp; |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4710 | if (lnum == 0 && offset <= 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4711 | return 1; /* Not a "find offset" and offset 0 _must_ be in line 1 */ |
| 4712 | /* |
| 4713 | * Find the last chunk before the one containing our line. Last chunk is |
| 4714 | * special because it will never qualify |
| 4715 | */ |
| 4716 | curline = 1; |
| 4717 | curix = size = 0; |
| 4718 | while (curix < buf->b_ml.ml_usedchunks - 1 |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4719 | && ((lnum != 0 |
| 4720 | && lnum >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4721 | || (offset != 0 |
| 4722 | && offset > size + buf->b_ml.ml_chunksize[curix].mlcs_totalsize |
| 4723 | + ffdos * buf->b_ml.ml_chunksize[curix].mlcs_numlines))) |
| 4724 | { |
| 4725 | curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines; |
| 4726 | size += buf->b_ml.ml_chunksize[curix].mlcs_totalsize; |
| 4727 | if (offset && ffdos) |
| 4728 | size += buf->b_ml.ml_chunksize[curix].mlcs_numlines; |
| 4729 | curix++; |
| 4730 | } |
| 4731 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4732 | while ((lnum != 0 && curline < lnum) || (offset != 0 && size < offset)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4733 | { |
| 4734 | if (curline > buf->b_ml.ml_line_count |
| 4735 | || (hp = ml_find_line(buf, curline, ML_FIND)) == NULL) |
| 4736 | return -1; |
| 4737 | dp = (DATA_BL *)(hp->bh_data); |
| 4738 | count = (long)(buf->b_ml.ml_locked_high) - |
| 4739 | (long)(buf->b_ml.ml_locked_low) + 1; |
| 4740 | start_idx = idx = curline - buf->b_ml.ml_locked_low; |
| 4741 | if (idx == 0)/* first line in block, text at the end */ |
| 4742 | text_end = dp->db_txt_end; |
| 4743 | else |
| 4744 | text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK); |
| 4745 | /* Compute index of last line to use in this MEMLINE */ |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4746 | if (lnum != 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4747 | { |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4748 | if (curline + (count - idx) >= lnum) |
| 4749 | idx += lnum - curline - 1; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4750 | else |
| 4751 | idx = count - 1; |
| 4752 | } |
| 4753 | else |
| 4754 | { |
| 4755 | extra = 0; |
| 4756 | while (offset >= size |
| 4757 | + text_end - (int)((dp->db_index[idx]) & DB_INDEX_MASK) |
| 4758 | + ffdos) |
| 4759 | { |
| 4760 | if (ffdos) |
| 4761 | size++; |
| 4762 | if (idx == count - 1) |
| 4763 | { |
| 4764 | extra = 1; |
| 4765 | break; |
| 4766 | } |
| 4767 | idx++; |
| 4768 | } |
| 4769 | } |
| 4770 | len = text_end - ((dp->db_index[idx]) & DB_INDEX_MASK); |
| 4771 | size += len; |
| 4772 | if (offset != 0 && size >= offset) |
| 4773 | { |
| 4774 | if (size + ffdos == offset) |
| 4775 | *offp = 0; |
| 4776 | else if (idx == start_idx) |
| 4777 | *offp = offset - size + len; |
| 4778 | else |
| 4779 | *offp = offset - size + len |
| 4780 | - (text_end - ((dp->db_index[idx - 1]) & DB_INDEX_MASK)); |
| 4781 | curline += idx - start_idx + extra; |
| 4782 | if (curline > buf->b_ml.ml_line_count) |
| 4783 | return -1; /* exactly one byte beyond the end */ |
| 4784 | return curline; |
| 4785 | } |
| 4786 | curline = buf->b_ml.ml_locked_high + 1; |
| 4787 | } |
| 4788 | |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4789 | if (lnum != 0) |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 4790 | { |
| 4791 | /* Count extra CR characters. */ |
| 4792 | if (ffdos) |
Bram Moolenaar | 5313dcb | 2005-02-22 08:56:13 +0000 | [diff] [blame] | 4793 | size += lnum - 1; |
Bram Moolenaar | 5eb86f9 | 2004-07-26 12:53:41 +0000 | [diff] [blame] | 4794 | |
| 4795 | /* Don't count the last line break if 'bin' and 'noeol'. */ |
| 4796 | if (buf->b_p_bin && !buf->b_p_eol) |
| 4797 | size -= ffdos + 1; |
| 4798 | } |
| 4799 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4800 | return size; |
| 4801 | } |
| 4802 | |
| 4803 | /* |
| 4804 | * Goto byte in buffer with offset 'cnt'. |
| 4805 | */ |
| 4806 | void |
| 4807 | goto_byte(cnt) |
| 4808 | long cnt; |
| 4809 | { |
| 4810 | long boff = cnt; |
| 4811 | linenr_T lnum; |
| 4812 | |
| 4813 | ml_flush_line(curbuf); /* cached line may be dirty */ |
| 4814 | setpcmark(); |
| 4815 | if (boff) |
| 4816 | --boff; |
| 4817 | lnum = ml_find_line_or_offset(curbuf, (linenr_T)0, &boff); |
| 4818 | if (lnum < 1) /* past the end */ |
| 4819 | { |
| 4820 | curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; |
| 4821 | curwin->w_curswant = MAXCOL; |
| 4822 | coladvance((colnr_T)MAXCOL); |
| 4823 | } |
| 4824 | else |
| 4825 | { |
| 4826 | curwin->w_cursor.lnum = lnum; |
| 4827 | curwin->w_cursor.col = (colnr_T)boff; |
Bram Moolenaar | 943d2b5 | 2005-12-02 00:50:49 +0000 | [diff] [blame] | 4828 | # ifdef FEAT_VIRTUALEDIT |
| 4829 | curwin->w_cursor.coladd = 0; |
| 4830 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4831 | curwin->w_set_curswant = TRUE; |
| 4832 | } |
| 4833 | check_cursor(); |
| 4834 | |
| 4835 | # ifdef FEAT_MBYTE |
| 4836 | /* Make sure the cursor is on the first byte of a multi-byte char. */ |
| 4837 | if (has_mbyte) |
| 4838 | mb_adjust_cursor(); |
| 4839 | # endif |
| 4840 | } |
| 4841 | #endif |