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