Mercurial > vim
annotate src/memline.c @ 17549:e5dabc127143 v8.1.1772
patch 8.1.1772: options test still fails on MS-Windows
commit https://github.com/vim/vim/commit/b78564d0221089e6dfc9c9d58239c18b991ca9fe
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jul 28 19:24:36 2019 +0200
patch 8.1.1772: options test still fails on MS-Windows
Problem: Options test still fails on MS-Windows.
Solution: Check buffer-local value of 'completeslash'.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 28 Jul 2019 19:30:04 +0200 |
parents | 37afc0146eab |
children | 5278e5a2a4e3 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9649
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 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 */ | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
11 /* #define CHECK(c, s) do { if (c) emsg((s)); } while (0) */ |
13632
cec5137d5332
patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents:
13380
diff
changeset
|
12 #define CHECK(c, s) do { /**/ } while (0) |
7 | 13 |
14 /* | |
15 * memline.c: Contains the functions for appending, deleting and changing the | |
625 | 16 * text lines. The memfile functions are used to store the information in |
17 * blocks of memory, backed up by a file. The structure of the information is | |
18 * a tree. The root of the tree is a pointer block. The leaves of the tree | |
19 * are data blocks. In between may be several layers of pointer blocks, | |
20 * forming branches. | |
7 | 21 * |
22 * Three types of blocks are used: | |
23 * - Block nr 0 contains information for recovery | |
24 * - Pointer blocks contain list of pointers to other blocks. | |
25 * - Data blocks contain the actual text. | |
26 * | |
27 * Block nr 0 contains the block0 structure (see below). | |
28 * | |
29 * Block nr 1 is the first pointer block. It is the root of the tree. | |
30 * Other pointer blocks are branches. | |
31 * | |
32 * If a line is too big to fit in a single page, the block containing that | |
33 * line is made big enough to hold the line. It may span several pages. | |
34 * Otherwise all blocks are one page. | |
35 * | |
36 * A data block that was filled when starting to edit a file and was not | |
37 * changed since then, can have a negative block number. This means that it | |
38 * has not yet been assigned a place in the file. When recovering, the lines | |
39 * in this data block can be read from the original file. When the block is | |
40 * changed (lines appended/deleted/changed) or when it is flushed it gets a | |
41 * positive number. Use mf_trans_del() to get the new number, before calling | |
42 * mf_get(). | |
43 */ | |
44 | |
45 #include "vim.h" | |
46 | |
47 #ifndef UNIX /* it's in os_unix.h for Unix */ | |
48 # include <time.h> | |
49 #endif | |
50 | |
1030 | 51 #if defined(SASC) || defined(__amigaos4__) |
7 | 52 # include <proto/dos.h> /* for Open() and Close() */ |
53 #endif | |
54 | |
55 typedef struct block0 ZERO_BL; /* contents of the first block */ | |
56 typedef struct pointer_block PTR_BL; /* contents of a pointer block */ | |
57 typedef struct data_block DATA_BL; /* contents of a data block */ | |
58 typedef struct pointer_entry PTR_EN; /* block/line-count pair */ | |
59 | |
2267 | 60 #define DATA_ID (('d' << 8) + 'a') /* data block id */ |
61 #define PTR_ID (('p' << 8) + 't') /* pointer block id */ | |
62 #define BLOCK0_ID0 'b' /* block 0 id 0 */ | |
63 #define BLOCK0_ID1 '0' /* block 0 id 1 */ | |
64 #define BLOCK0_ID1_C0 'c' /* block 0 id 1 'cm' 0 */ | |
65 #define BLOCK0_ID1_C1 'C' /* block 0 id 1 'cm' 1 */ | |
6122 | 66 #define BLOCK0_ID1_C2 'd' /* block 0 id 1 'cm' 2 */ |
67 | |
68 #if defined(FEAT_CRYPT) | |
69 static int id1_codes[] = { | |
70 BLOCK0_ID1_C0, /* CRYPT_M_ZIP */ | |
71 BLOCK0_ID1_C1, /* CRYPT_M_BF */ | |
72 BLOCK0_ID1_C2, /* CRYPT_M_BF2 */ | |
73 }; | |
74 #endif | |
7 | 75 |
76 /* | |
77 * pointer to a block, used in a pointer block | |
78 */ | |
79 struct pointer_entry | |
80 { | |
81 blocknr_T pe_bnum; /* block number */ | |
82 linenr_T pe_line_count; /* number of lines in this branch */ | |
83 linenr_T pe_old_lnum; /* lnum for this block (for recovery) */ | |
84 int pe_page_count; /* number of pages in block pe_bnum */ | |
85 }; | |
86 | |
87 /* | |
88 * A pointer block contains a list of branches in the tree. | |
89 */ | |
90 struct pointer_block | |
91 { | |
92 short_u pb_id; /* ID for pointer block: PTR_ID */ | |
2240
6b4879aea261
Add test for gettabvar() and settabvar().
Bram Moolenaar <bram@vim.org>
parents:
2221
diff
changeset
|
93 short_u pb_count; /* number of pointers in this block */ |
7 | 94 short_u pb_count_max; /* maximum value for pb_count */ |
95 PTR_EN pb_pointer[1]; /* list of pointers to blocks (actually longer) | |
96 * followed by empty space until end of page */ | |
97 }; | |
98 | |
99 /* | |
100 * A data block is a leaf in the tree. | |
101 * | |
102 * The text of the lines is at the end of the block. The text of the first line | |
103 * in the block is put at the end, the text of the second line in front of it, | |
104 * etc. Thus the order of the lines is the opposite of the line number. | |
105 */ | |
106 struct data_block | |
107 { | |
108 short_u db_id; /* ID for data block: DATA_ID */ | |
109 unsigned db_free; /* free space available */ | |
110 unsigned db_txt_start; /* byte where text starts */ | |
111 unsigned db_txt_end; /* byte just after data block */ | |
112 linenr_T db_line_count; /* number of lines in this block */ | |
113 unsigned db_index[1]; /* index for start of line (actually bigger) | |
114 * followed by empty space upto db_txt_start | |
115 * followed by the text in the lines until | |
116 * end of page */ | |
117 }; | |
118 | |
119 /* | |
120 * The low bits of db_index hold the actual index. The topmost bit is | |
121 * used for the global command to be able to mark a line. | |
122 * This method is not clean, but otherwise there would be at least one extra | |
123 * byte used for each line. | |
124 * The mark has to be in this place to keep it with the correct line when other | |
125 * lines are inserted or deleted. | |
126 */ | |
127 #define DB_MARKED ((unsigned)1 << ((sizeof(unsigned) * 8) - 1)) | |
128 #define DB_INDEX_MASK (~DB_MARKED) | |
129 | |
130 #define INDEX_SIZE (sizeof(unsigned)) /* size of one db_index entry */ | |
131 #define HEADER_SIZE (sizeof(DATA_BL) - INDEX_SIZE) /* size of data block header */ | |
132 | |
39 | 133 #define B0_FNAME_SIZE_ORG 900 /* what it was in older versions */ |
2267 | 134 #define B0_FNAME_SIZE_NOCRYPT 898 /* 2 bytes used for other things */ |
135 #define B0_FNAME_SIZE_CRYPT 890 /* 10 bytes used for other things */ | |
39 | 136 #define B0_UNAME_SIZE 40 |
137 #define B0_HNAME_SIZE 40 | |
7 | 138 /* |
139 * Restrict the numbers to 32 bits, otherwise most compilers will complain. | |
140 * This won't detect a 64 bit machine that only swaps a byte in the top 32 | |
141 * bits, but that is crazy anyway. | |
142 */ | |
143 #define B0_MAGIC_LONG 0x30313233L | |
144 #define B0_MAGIC_INT 0x20212223L | |
145 #define B0_MAGIC_SHORT 0x10111213L | |
146 #define B0_MAGIC_CHAR 0x55 | |
147 | |
148 /* | |
149 * Block zero holds all info about the swap file. | |
150 * | |
151 * NOTE: DEFINITION OF BLOCK 0 SHOULD NOT CHANGE! It would make all existing | |
152 * swap files unusable! | |
153 * | |
154 * If size of block0 changes anyway, adjust MIN_SWAP_PAGE_SIZE in vim.h!! | |
155 * | |
1228 | 156 * This block is built up of single bytes, to make it portable across |
7 | 157 * different machines. b0_magic_* is used to check the byte order and size of |
158 * variables, because the rest of the swap file is not portable. | |
159 */ | |
160 struct block0 | |
161 { | |
2267 | 162 char_u b0_id[2]; /* id for block 0: BLOCK0_ID0 and BLOCK0_ID1, |
6122 | 163 * BLOCK0_ID1_C0, BLOCK0_ID1_C1, etc. */ |
7 | 164 char_u b0_version[10]; /* Vim version string */ |
165 char_u b0_page_size[4];/* number of bytes per page */ | |
166 char_u b0_mtime[4]; /* last modification time of file */ | |
167 char_u b0_ino[4]; /* inode of b0_fname */ | |
168 char_u b0_pid[4]; /* process id of creator (or 0) */ | |
169 char_u b0_uname[B0_UNAME_SIZE]; /* name of user (uid if no name) */ | |
170 char_u b0_hname[B0_HNAME_SIZE]; /* host name (if it has a name) */ | |
39 | 171 char_u b0_fname[B0_FNAME_SIZE_ORG]; /* name of file being edited */ |
7 | 172 long b0_magic_long; /* check for byte order of long */ |
173 int b0_magic_int; /* check for byte order of int */ | |
174 short b0_magic_short; /* check for byte order of short */ | |
175 char_u b0_magic_char; /* check for last char */ | |
176 }; | |
39 | 177 |
178 /* | |
625 | 179 * Note: b0_dirty and b0_flags are put at the end of the file name. For very |
39 | 180 * long file names in older versions of Vim they are invalid. |
181 * The 'fileencoding' comes before b0_flags, with a NUL in front. But only | |
182 * when there is room, for very long file names it's omitted. | |
183 */ | |
184 #define B0_DIRTY 0x55 | |
2267 | 185 #define b0_dirty b0_fname[B0_FNAME_SIZE_ORG - 1] |
39 | 186 |
187 /* | |
188 * The b0_flags field is new in Vim 7.0. | |
189 */ | |
2267 | 190 #define b0_flags b0_fname[B0_FNAME_SIZE_ORG - 2] |
191 | |
192 /* | |
193 * Crypt seed goes here, 8 bytes. New in Vim 7.3. | |
194 * Without encryption these bytes may be used for 'fenc'. | |
195 */ | |
196 #define b0_seed b0_fname[B0_FNAME_SIZE_ORG - 2 - MF_SEED_LEN] | |
39 | 197 |
198 /* The lowest two bits contain the fileformat. Zero means it's not set | |
199 * (compatible with Vim 6.x), otherwise it's EOL_UNIX + 1, EOL_DOS + 1 or | |
200 * EOL_MAC + 1. */ | |
201 #define B0_FF_MASK 3 | |
202 | |
203 /* Swap file is in directory of edited file. Used to find the file from | |
204 * different mount points. */ | |
205 #define B0_SAME_DIR 4 | |
206 | |
207 /* The 'fileencoding' is at the end of b0_fname[], with a NUL in front of it. | |
208 * When empty there is only the NUL. */ | |
209 #define B0_HAS_FENC 8 | |
7 | 210 |
211 #define STACK_INCR 5 /* nr of entries added to ml_stack at a time */ | |
212 | |
213 /* | |
214 * The line number where the first mark may be is remembered. | |
215 * If it is 0 there are no marks at all. | |
216 * (always used for the current buffer only, no buffer change possible while | |
217 * executing a global command). | |
218 */ | |
219 static linenr_T lowest_marked = 0; | |
220 | |
221 /* | |
222 * arguments for ml_find_line() | |
223 */ | |
224 #define ML_DELETE 0x11 /* delete line */ | |
225 #define ML_INSERT 0x12 /* insert line */ | |
226 #define ML_FIND 0x13 /* just find the line */ | |
227 #define ML_FLUSH 0x02 /* flush locked block */ | |
228 #define ML_SIMPLE(x) (x & 0x10) /* DEL, INS or FIND */ | |
229 | |
2267 | 230 /* argument for ml_upd_block0() */ |
231 typedef enum { | |
232 UB_FNAME = 0 /* update timestamp and filename */ | |
233 , UB_SAME_DIR /* update the B0_SAME_DIR flag */ | |
234 , UB_CRYPT /* update crypt key */ | |
235 } upd_block0_T; | |
236 | |
237 #ifdef FEAT_CRYPT | |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
238 static void ml_set_b0_crypt(buf_T *buf, ZERO_BL *b0p); |
2267 | 239 #endif |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
240 static void ml_upd_block0(buf_T *buf, upd_block0_T what); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
241 static void set_b0_fname(ZERO_BL *, buf_T *buf); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
242 static void set_b0_dir_flag(ZERO_BL *b0p, buf_T *buf); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
243 static void add_b0_fenc(ZERO_BL *b0p, buf_T *buf); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
244 static time_t swapfile_info(char_u *); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
245 static int recov_file_names(char_u **, char_u *, int prepend_dot); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
246 static int ml_delete_int(buf_T *, linenr_T, int); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
247 static char_u *findswapname(buf_T *, char_u **, char_u *); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
248 static void ml_flush_line(buf_T *); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
249 static bhdr_T *ml_new_data(memfile_T *, int, int); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
250 static bhdr_T *ml_new_ptr(memfile_T *); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
251 static bhdr_T *ml_find_line(buf_T *, linenr_T, int); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
252 static int ml_add_stack(buf_T *); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
253 static void ml_lineadd(buf_T *, int); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
254 static int b0_magic_wrong(ZERO_BL *); |
7 | 255 #ifdef CHECK_INODE |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
256 static int fnamecmp_ino(char_u *, char_u *, long); |
7 | 257 #endif |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
258 static void long_to_char(long, char_u *); |
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
259 static long char_to_long(char_u *); |
2267 | 260 #ifdef FEAT_CRYPT |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9295
diff
changeset
|
261 static cryptstate_T *ml_crypt_prepare(memfile_T *mfp, off_T offset, int reading); |
2267 | 262 #endif |
7 | 263 #ifdef FEAT_BYTEOFF |
7803
37c929c4a073
commit https://github.com/vim/vim/commit/92b8b2d307e34117f146319872010b0ccc9d2713
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
264 static void ml_updatechunk(buf_T *buf, long line, long len, int updtype); |
7 | 265 #endif |
266 | |
267 /* | |
625 | 268 * Open a new memline for "buf". |
7 | 269 * |
625 | 270 * Return FAIL for failure, OK otherwise. |
7 | 271 */ |
272 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
273 ml_open(buf_T *buf) |
7 | 274 { |
275 memfile_T *mfp; | |
276 bhdr_T *hp = NULL; | |
277 ZERO_BL *b0p; | |
278 PTR_BL *pp; | |
279 DATA_BL *dp; | |
280 | |
625 | 281 /* |
282 * init fields in memline struct | |
283 */ | |
2267 | 284 buf->b_ml.ml_stack_size = 0; /* no stack yet */ |
625 | 285 buf->b_ml.ml_stack = NULL; /* no stack yet */ |
286 buf->b_ml.ml_stack_top = 0; /* nothing in the stack */ | |
287 buf->b_ml.ml_locked = NULL; /* no cached block */ | |
288 buf->b_ml.ml_line_lnum = 0; /* no cached line */ | |
7 | 289 #ifdef FEAT_BYTEOFF |
625 | 290 buf->b_ml.ml_chunksize = NULL; |
7 | 291 #endif |
292 | |
5737 | 293 if (cmdmod.noswapfile) |
294 buf->b_p_swf = FALSE; | |
295 | |
625 | 296 /* |
297 * When 'updatecount' is non-zero swap file may be opened later. | |
298 */ | |
299 if (p_uc && buf->b_p_swf) | |
300 buf->b_may_swap = TRUE; | |
7 | 301 else |
625 | 302 buf->b_may_swap = FALSE; |
303 | |
304 /* | |
305 * Open the memfile. No swap file is created yet. | |
306 */ | |
7 | 307 mfp = mf_open(NULL, 0); |
308 if (mfp == NULL) | |
309 goto error; | |
310 | |
625 | 311 buf->b_ml.ml_mfp = mfp; |
2267 | 312 #ifdef FEAT_CRYPT |
313 mfp->mf_buffer = buf; | |
314 #endif | |
625 | 315 buf->b_ml.ml_flags = ML_EMPTY; |
316 buf->b_ml.ml_line_count = 1; | |
13 | 317 #ifdef FEAT_LINEBREAK |
318 curwin->w_nrwidth_line_count = 0; | |
319 #endif | |
7 | 320 |
321 /* | |
322 * fill block0 struct and write page 0 | |
323 */ | |
324 if ((hp = mf_new(mfp, FALSE, 1)) == NULL) | |
325 goto error; | |
326 if (hp->bh_bnum != 0) | |
327 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
328 iemsg(_("E298: Didn't get block nr 0?")); |
7 | 329 goto error; |
330 } | |
331 b0p = (ZERO_BL *)(hp->bh_data); | |
332 | |
333 b0p->b0_id[0] = BLOCK0_ID0; | |
334 b0p->b0_id[1] = BLOCK0_ID1; | |
335 b0p->b0_magic_long = (long)B0_MAGIC_LONG; | |
336 b0p->b0_magic_int = (int)B0_MAGIC_INT; | |
337 b0p->b0_magic_short = (short)B0_MAGIC_SHORT; | |
338 b0p->b0_magic_char = B0_MAGIC_CHAR; | |
14011
8631b54ae2a2
patch 8.1.0023: gcc 8.1 warns for use of strncpy()
Christian Brabandt <cb@256bit.org>
parents:
13896
diff
changeset
|
339 mch_memmove(b0p->b0_version, "VIM ", 4); |
7 | 340 STRNCPY(b0p->b0_version + 4, Version, 6); |
341 long_to_char((long)mfp->mf_page_size, b0p->b0_page_size); | |
625 | 342 |
800 | 343 #ifdef FEAT_SPELL |
344 if (!buf->b_spell) | |
345 #endif | |
625 | 346 { |
347 b0p->b0_dirty = buf->b_changed ? B0_DIRTY : 0; | |
348 b0p->b0_flags = get_fileformat(buf) + 1; | |
349 set_b0_fname(b0p, buf); | |
350 (void)get_user_name(b0p->b0_uname, B0_UNAME_SIZE); | |
351 b0p->b0_uname[B0_UNAME_SIZE - 1] = NUL; | |
352 mch_get_host_name(b0p->b0_hname, B0_HNAME_SIZE); | |
353 b0p->b0_hname[B0_HNAME_SIZE - 1] = NUL; | |
354 long_to_char(mch_get_pid(), b0p->b0_pid); | |
2267 | 355 #ifdef FEAT_CRYPT |
6122 | 356 ml_set_b0_crypt(buf, b0p); |
2267 | 357 #endif |
625 | 358 } |
7 | 359 |
360 /* | |
361 * Always sync block number 0 to disk, so we can check the file name in | |
2267 | 362 * the swap file in findswapname(). Don't do this for a help files or |
363 * a spell buffer though. | |
7 | 364 * Only works when there's a swapfile, otherwise it's done when the file |
365 * is created. | |
366 */ | |
367 mf_put(mfp, hp, TRUE, FALSE); | |
625 | 368 if (!buf->b_help && !B_SPELL(buf)) |
7 | 369 (void)mf_sync(mfp, 0); |
370 | |
625 | 371 /* |
372 * Fill in root pointer block and write page 1. | |
373 */ | |
7 | 374 if ((hp = ml_new_ptr(mfp)) == NULL) |
375 goto error; | |
376 if (hp->bh_bnum != 1) | |
377 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
378 iemsg(_("E298: Didn't get block nr 1?")); |
7 | 379 goto error; |
380 } | |
381 pp = (PTR_BL *)(hp->bh_data); | |
382 pp->pb_count = 1; | |
383 pp->pb_pointer[0].pe_bnum = 2; | |
384 pp->pb_pointer[0].pe_page_count = 1; | |
385 pp->pb_pointer[0].pe_old_lnum = 1; | |
386 pp->pb_pointer[0].pe_line_count = 1; /* line count after insertion */ | |
387 mf_put(mfp, hp, TRUE, FALSE); | |
388 | |
625 | 389 /* |
390 * Allocate first data block and create an empty line 1. | |
391 */ | |
7 | 392 if ((hp = ml_new_data(mfp, FALSE, 1)) == NULL) |
393 goto error; | |
394 if (hp->bh_bnum != 2) | |
395 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
396 iemsg(_("E298: Didn't get block nr 2?")); |
7 | 397 goto error; |
398 } | |
399 | |
400 dp = (DATA_BL *)(hp->bh_data); | |
401 dp->db_index[0] = --dp->db_txt_start; /* at end of block */ | |
402 dp->db_free -= 1 + INDEX_SIZE; | |
403 dp->db_line_count = 1; | |
2003 | 404 *((char_u *)dp + dp->db_txt_start) = NUL; /* empty line */ |
7 | 405 |
406 return OK; | |
407 | |
408 error: | |
409 if (mfp != NULL) | |
410 { | |
411 if (hp) | |
412 mf_put(mfp, hp, FALSE, FALSE); | |
413 mf_close(mfp, TRUE); /* will also free(mfp->mf_fname) */ | |
414 } | |
625 | 415 buf->b_ml.ml_mfp = NULL; |
7 | 416 return FAIL; |
417 } | |
418 | |
2267 | 419 #if defined(FEAT_CRYPT) || defined(PROTO) |
420 /* | |
6130 | 421 * Prepare encryption for "buf" for the current key and method. |
422 */ | |
423 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
424 ml_set_mfp_crypt(buf_T *buf) |
6130 | 425 { |
426 if (*buf->b_p_key != NUL) | |
427 { | |
428 int method_nr = crypt_get_method_nr(buf); | |
429 | |
430 if (method_nr > CRYPT_M_ZIP) | |
431 { | |
432 /* Generate a seed and store it in the memfile. */ | |
433 sha2_seed(buf->b_ml.ml_mfp->mf_seed, MF_SEED_LEN, NULL, 0); | |
434 } | |
435 } | |
436 } | |
437 | |
438 /* | |
2267 | 439 * Prepare encryption for "buf" with block 0 "b0p". |
440 */ | |
441 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
442 ml_set_b0_crypt(buf_T *buf, ZERO_BL *b0p) |
2267 | 443 { |
444 if (*buf->b_p_key == NUL) | |
445 b0p->b0_id[1] = BLOCK0_ID1; | |
446 else | |
447 { | |
6122 | 448 int method_nr = crypt_get_method_nr(buf); |
449 | |
450 b0p->b0_id[1] = id1_codes[method_nr]; | |
451 if (method_nr > CRYPT_M_ZIP) | |
2267 | 452 { |
453 /* Generate a seed and store it in block 0 and in the memfile. */ | |
454 sha2_seed(&b0p->b0_seed, MF_SEED_LEN, NULL, 0); | |
455 mch_memmove(buf->b_ml.ml_mfp->mf_seed, &b0p->b0_seed, MF_SEED_LEN); | |
456 } | |
457 } | |
458 } | |
459 | |
460 /* | |
461 * Called after the crypt key or 'cryptmethod' was changed for "buf". | |
462 * Will apply this to the swapfile. | |
463 * "old_key" is the previous key. It is equal to buf->b_p_key when | |
464 * 'cryptmethod' is changed. | |
2360
d8e4b27cef80
Change 'cryptmethod' from a number to a string option. Make it global-local.
Bram Moolenaar <bram@vim.org>
parents:
2283
diff
changeset
|
465 * "old_cm" is the previous 'cryptmethod'. It is equal to the current |
d8e4b27cef80
Change 'cryptmethod' from a number to a string option. Make it global-local.
Bram Moolenaar <bram@vim.org>
parents:
2283
diff
changeset
|
466 * 'cryptmethod' when 'key' is changed. |
2267 | 467 */ |
468 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
469 ml_set_crypt_key( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
470 buf_T *buf, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
471 char_u *old_key, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
472 char_u *old_cm) |
2267 | 473 { |
474 memfile_T *mfp = buf->b_ml.ml_mfp; | |
475 bhdr_T *hp; | |
476 int page_count; | |
477 int idx; | |
478 long error; | |
479 infoptr_T *ip; | |
480 PTR_BL *pp; | |
481 DATA_BL *dp; | |
482 blocknr_T bnum; | |
483 int top; | |
6817 | 484 int old_method; |
2267 | 485 |
2483
7901306c5a34
Fix: when setting crypt key seed was not updated when the swap file wasn't
Bram Moolenaar <bram@vim.org>
parents:
2408
diff
changeset
|
486 if (mfp == NULL) |
2267 | 487 return; /* no memfile yet, nothing to do */ |
6817 | 488 old_method = crypt_method_nr_from_name(old_cm); |
489 | |
490 /* First make sure the swapfile is in a consistent state, using the old | |
491 * key and method. */ | |
492 { | |
493 char_u *new_key = buf->b_p_key; | |
494 char_u *new_buf_cm = buf->b_p_cm; | |
495 | |
496 buf->b_p_key = old_key; | |
497 buf->b_p_cm = old_cm; | |
498 ml_preserve(buf, FALSE); | |
499 buf->b_p_key = new_key; | |
500 buf->b_p_cm = new_buf_cm; | |
501 } | |
2267 | 502 |
503 /* Set the key, method and seed to be used for reading, these must be the | |
504 * old values. */ | |
505 mfp->mf_old_key = old_key; | |
6817 | 506 mfp->mf_old_cm = old_method; |
507 if (old_method > 0 && *old_key != NUL) | |
2267 | 508 mch_memmove(mfp->mf_old_seed, mfp->mf_seed, MF_SEED_LEN); |
509 | |
510 /* Update block 0 with the crypt flag and may set a new seed. */ | |
511 ml_upd_block0(buf, UB_CRYPT); | |
512 | |
513 if (mfp->mf_infile_count > 2) | |
514 { | |
515 /* | |
516 * Need to read back all data blocks from disk, decrypt them with the | |
517 * old key/method and mark them to be written. The algorithm is | |
518 * similar to what happens in ml_recover(), but we skip negative block | |
519 * numbers. | |
520 */ | |
521 ml_flush_line(buf); /* flush buffered line */ | |
522 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); /* flush locked block */ | |
523 | |
524 hp = NULL; | |
525 bnum = 1; /* start with block 1 */ | |
526 page_count = 1; /* which is 1 page */ | |
527 idx = 0; /* start with first index in block 1 */ | |
528 error = 0; | |
529 buf->b_ml.ml_stack_top = 0; | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12975
diff
changeset
|
530 VIM_CLEAR(buf->b_ml.ml_stack); |
2267 | 531 buf->b_ml.ml_stack_size = 0; /* no stack yet */ |
532 | |
533 for ( ; !got_int; line_breakcheck()) | |
534 { | |
535 if (hp != NULL) | |
536 mf_put(mfp, hp, FALSE, FALSE); /* release previous block */ | |
537 | |
538 /* get the block (pointer or data) */ | |
539 if ((hp = mf_get(mfp, (blocknr_T)bnum, page_count)) == NULL) | |
540 { | |
541 if (bnum == 1) | |
542 break; | |
543 ++error; | |
544 } | |
545 else | |
546 { | |
547 pp = (PTR_BL *)(hp->bh_data); | |
548 if (pp->pb_id == PTR_ID) /* it is a pointer block */ | |
549 { | |
550 if (pp->pb_count == 0) | |
551 { | |
552 /* empty block? */ | |
553 ++error; | |
554 } | |
555 else if (idx < (int)pp->pb_count) /* go a block deeper */ | |
556 { | |
557 if (pp->pb_pointer[idx].pe_bnum < 0) | |
558 { | |
6817 | 559 /* Skip data block with negative block number. |
560 * Should not happen, because of the ml_preserve() | |
561 * above. Get same block again for next index. */ | |
15353
21580db06cf3
patch 8.1.0684: warnings from 64-bit compiler
Bram Moolenaar <Bram@vim.org>
parents:
15294
diff
changeset
|
562 ++idx; |
2267 | 563 continue; |
564 } | |
565 | |
566 /* going one block deeper in the tree, new entry in | |
567 * stack */ | |
568 if ((top = ml_add_stack(buf)) < 0) | |
569 { | |
570 ++error; | |
571 break; /* out of memory */ | |
572 } | |
573 ip = &(buf->b_ml.ml_stack[top]); | |
574 ip->ip_bnum = bnum; | |
575 ip->ip_index = idx; | |
576 | |
577 bnum = pp->pb_pointer[idx].pe_bnum; | |
578 page_count = pp->pb_pointer[idx].pe_page_count; | |
6817 | 579 idx = 0; |
2267 | 580 continue; |
581 } | |
582 } | |
583 else /* not a pointer block */ | |
584 { | |
585 dp = (DATA_BL *)(hp->bh_data); | |
586 if (dp->db_id != DATA_ID) /* block id wrong */ | |
587 ++error; | |
588 else | |
589 { | |
590 /* It is a data block, need to write it back to disk. */ | |
591 mf_put(mfp, hp, TRUE, FALSE); | |
592 hp = NULL; | |
593 } | |
594 } | |
595 } | |
596 | |
597 if (buf->b_ml.ml_stack_top == 0) /* finished */ | |
598 break; | |
599 | |
600 /* go one block up in the tree */ | |
601 ip = &(buf->b_ml.ml_stack[--(buf->b_ml.ml_stack_top)]); | |
602 bnum = ip->ip_bnum; | |
603 idx = ip->ip_index + 1; /* go to next index */ | |
604 page_count = 1; | |
605 } | |
6817 | 606 if (hp != NULL) |
607 mf_put(mfp, hp, FALSE, FALSE); /* release previous block */ | |
2657 | 608 |
609 if (error > 0) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
610 emsg(_("E843: Error while updating swap file crypt")); |
2267 | 611 } |
612 | |
613 mfp->mf_old_key = NULL; | |
614 } | |
615 #endif | |
616 | |
7 | 617 /* |
618 * ml_setname() is called when the file name of "buf" has been changed. | |
619 * It may rename the swap file. | |
620 */ | |
621 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
622 ml_setname(buf_T *buf) |
7 | 623 { |
624 int success = FALSE; | |
625 memfile_T *mfp; | |
626 char_u *fname; | |
627 char_u *dirp; | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
7961
diff
changeset
|
628 #if defined(MSWIN) |
7 | 629 char_u *p; |
630 #endif | |
631 | |
632 mfp = buf->b_ml.ml_mfp; | |
633 if (mfp->mf_fd < 0) /* there is no swap file yet */ | |
634 { | |
635 /* | |
636 * When 'updatecount' is 0 and 'noswapfile' there is no swap file. | |
637 * For help files we will make a swap file now. | |
638 */ | |
5737 | 639 if (p_uc != 0 && !cmdmod.noswapfile) |
7 | 640 ml_open_file(buf); /* create a swap file */ |
641 return; | |
642 } | |
643 | |
644 /* | |
645 * Try all directories in the 'directory' option. | |
646 */ | |
647 dirp = p_dir; | |
648 for (;;) | |
649 { | |
650 if (*dirp == NUL) /* tried all directories, fail */ | |
651 break; | |
43 | 652 fname = findswapname(buf, &dirp, mfp->mf_fname); |
653 /* alloc's fname */ | |
3158 | 654 if (dirp == NULL) /* out of memory */ |
655 break; | |
7 | 656 if (fname == NULL) /* no file name found for this dir */ |
657 continue; | |
658 | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
7961
diff
changeset
|
659 #if defined(MSWIN) |
7 | 660 /* |
661 * Set full pathname for swap file now, because a ":!cd dir" may | |
662 * change directory without us knowing it. | |
663 */ | |
664 p = FullName_save(fname, FALSE); | |
665 vim_free(fname); | |
666 fname = p; | |
667 if (fname == NULL) | |
668 continue; | |
669 #endif | |
670 /* if the file name is the same we don't have to do anything */ | |
671 if (fnamecmp(fname, mfp->mf_fname) == 0) | |
672 { | |
673 vim_free(fname); | |
674 success = TRUE; | |
675 break; | |
676 } | |
677 /* need to close the swap file before renaming */ | |
678 if (mfp->mf_fd >= 0) | |
679 { | |
680 close(mfp->mf_fd); | |
681 mfp->mf_fd = -1; | |
682 } | |
683 | |
684 /* try to rename the swap file */ | |
685 if (vim_rename(mfp->mf_fname, fname) == 0) | |
686 { | |
687 success = TRUE; | |
688 vim_free(mfp->mf_fname); | |
689 mfp->mf_fname = fname; | |
690 vim_free(mfp->mf_ffname); | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
7961
diff
changeset
|
691 #if defined(MSWIN) |
7 | 692 mfp->mf_ffname = NULL; /* mf_fname is full pathname already */ |
693 #else | |
694 mf_set_ffname(mfp); | |
695 #endif | |
2267 | 696 ml_upd_block0(buf, UB_SAME_DIR); |
7 | 697 break; |
698 } | |
699 vim_free(fname); /* this fname didn't work, try another */ | |
700 } | |
701 | |
702 if (mfp->mf_fd == -1) /* need to (re)open the swap file */ | |
703 { | |
704 mfp->mf_fd = mch_open((char *)mfp->mf_fname, O_RDWR | O_EXTRA, 0); | |
705 if (mfp->mf_fd < 0) | |
706 { | |
707 /* could not (re)open the swap file, what can we do???? */ | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
708 emsg(_("E301: Oops, lost the swap file!!!")); |
7 | 709 return; |
710 } | |
2003 | 711 #ifdef HAVE_FD_CLOEXEC |
712 { | |
713 int fdflags = fcntl(mfp->mf_fd, F_GETFD); | |
714 if (fdflags >= 0 && (fdflags & FD_CLOEXEC) == 0) | |
7961
a7e58c6e4e9a
commit https://github.com/vim/vim/commit/fbc4b4db3a9690906a96e16724350a6241cf32a5
Christian Brabandt <cb@256bit.org>
parents:
7881
diff
changeset
|
715 (void)fcntl(mfp->mf_fd, F_SETFD, fdflags | FD_CLOEXEC); |
2003 | 716 } |
717 #endif | |
7 | 718 } |
719 if (!success) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
720 emsg(_("E302: Could not rename swap file")); |
7 | 721 } |
722 | |
723 /* | |
724 * Open a file for the memfile for all buffers that are not readonly or have | |
725 * been modified. | |
726 * Used when 'updatecount' changes from zero to non-zero. | |
727 */ | |
728 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
729 ml_open_files(void) |
7 | 730 { |
731 buf_T *buf; | |
732 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
733 FOR_ALL_BUFFERS(buf) |
7 | 734 if (!buf->b_p_ro || buf->b_changed) |
735 ml_open_file(buf); | |
736 } | |
737 | |
738 /* | |
739 * Open a swap file for an existing memfile, if there is no swap file yet. | |
740 * If we are unable to find a file name, mf_fname will be NULL | |
741 * and the memfile will be in memory only (no recovery possible). | |
742 */ | |
743 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
744 ml_open_file(buf_T *buf) |
7 | 745 { |
746 memfile_T *mfp; | |
747 char_u *fname; | |
748 char_u *dirp; | |
749 | |
750 mfp = buf->b_ml.ml_mfp; | |
5737 | 751 if (mfp == NULL || mfp->mf_fd >= 0 || !buf->b_p_swf || cmdmod.noswapfile) |
7 | 752 return; /* nothing to do */ |
753 | |
748 | 754 #ifdef FEAT_SPELL |
625 | 755 /* For a spell buffer use a temp file name. */ |
756 if (buf->b_spell) | |
757 { | |
6721 | 758 fname = vim_tempname('s', FALSE); |
625 | 759 if (fname != NULL) |
760 (void)mf_open_file(mfp, fname); /* consumes fname! */ | |
761 buf->b_may_swap = FALSE; | |
762 return; | |
763 } | |
764 #endif | |
765 | |
7 | 766 /* |
767 * Try all directories in 'directory' option. | |
768 */ | |
769 dirp = p_dir; | |
770 for (;;) | |
771 { | |
772 if (*dirp == NUL) | |
773 break; | |
2273
7f09ce7b4126
Fix a memory leak in encryption. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2272
diff
changeset
|
774 /* There is a small chance that between choosing the swap file name |
7f09ce7b4126
Fix a memory leak in encryption. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2272
diff
changeset
|
775 * and creating it, another Vim creates the file. In that case the |
7 | 776 * creation will fail and we will use another directory. */ |
43 | 777 fname = findswapname(buf, &dirp, NULL); /* allocates fname */ |
3158 | 778 if (dirp == NULL) |
779 break; /* out of memory */ | |
7 | 780 if (fname == NULL) |
781 continue; | |
782 if (mf_open_file(mfp, fname) == OK) /* consumes fname! */ | |
783 { | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
7961
diff
changeset
|
784 #if defined(MSWIN) |
7 | 785 /* |
786 * set full pathname for swap file now, because a ":!cd dir" may | |
787 * change directory without us knowing it. | |
788 */ | |
789 mf_fullname(mfp); | |
790 #endif | |
2267 | 791 ml_upd_block0(buf, UB_SAME_DIR); |
39 | 792 |
7 | 793 /* Flush block zero, so others can read it */ |
794 if (mf_sync(mfp, MFS_ZERO) == OK) | |
630 | 795 { |
796 /* Mark all blocks that should be in the swapfile as dirty. | |
797 * Needed for when the 'swapfile' option was reset, so that | |
798 * the swap file was deleted, and then on again. */ | |
799 mf_set_dirty(mfp); | |
7 | 800 break; |
630 | 801 } |
7 | 802 /* Writing block 0 failed: close the file and try another dir */ |
803 mf_close_file(buf, FALSE); | |
804 } | |
805 } | |
806 | |
807 if (mfp->mf_fname == NULL) /* Failed! */ | |
808 { | |
809 need_wait_return = TRUE; /* call wait_return later */ | |
810 ++no_wait_return; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
811 (void)semsg(_("E303: Unable to open swap file for \"%s\", recovery impossible"), |
3839 | 812 buf_spname(buf) != NULL ? buf_spname(buf) : buf->b_fname); |
7 | 813 --no_wait_return; |
814 } | |
815 | |
816 /* don't try to open a swap file again */ | |
817 buf->b_may_swap = FALSE; | |
818 } | |
819 | |
820 /* | |
821 * If still need to create a swap file, and starting to edit a not-readonly | |
822 * file, or reading into an existing buffer, create a swap file now. | |
823 */ | |
824 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
825 check_need_swap( |
14593
b6b2f7d69c7f
patch 8.1.0310: file info msg not always suppressed with 'F' in 'shortmess'
Christian Brabandt <cb@256bit.org>
parents:
14579
diff
changeset
|
826 int newfile) // reading file into new buffer |
7 | 827 { |
14593
b6b2f7d69c7f
patch 8.1.0310: file info msg not always suppressed with 'F' in 'shortmess'
Christian Brabandt <cb@256bit.org>
parents:
14579
diff
changeset
|
828 int old_msg_silent = msg_silent; // might be reset by an E325 message |
b6b2f7d69c7f
patch 8.1.0310: file info msg not always suppressed with 'F' in 'shortmess'
Christian Brabandt <cb@256bit.org>
parents:
14579
diff
changeset
|
829 |
7 | 830 if (curbuf->b_may_swap && (!curbuf->b_p_ro || !newfile)) |
831 ml_open_file(curbuf); | |
14593
b6b2f7d69c7f
patch 8.1.0310: file info msg not always suppressed with 'F' in 'shortmess'
Christian Brabandt <cb@256bit.org>
parents:
14579
diff
changeset
|
832 msg_silent = old_msg_silent; |
7 | 833 } |
834 | |
835 /* | |
836 * Close memline for buffer 'buf'. | |
837 * If 'del_file' is TRUE, delete the swap file | |
838 */ | |
839 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
840 ml_close(buf_T *buf, int del_file) |
7 | 841 { |
842 if (buf->b_ml.ml_mfp == NULL) /* not open */ | |
843 return; | |
844 mf_close(buf->b_ml.ml_mfp, del_file); /* close the .swp file */ | |
845 if (buf->b_ml.ml_line_lnum != 0 && (buf->b_ml.ml_flags & ML_LINE_DIRTY)) | |
846 vim_free(buf->b_ml.ml_line_ptr); | |
847 vim_free(buf->b_ml.ml_stack); | |
848 #ifdef FEAT_BYTEOFF | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12975
diff
changeset
|
849 VIM_CLEAR(buf->b_ml.ml_chunksize); |
7 | 850 #endif |
851 buf->b_ml.ml_mfp = NULL; | |
852 | |
853 /* Reset the "recovered" flag, give the ATTENTION prompt the next time | |
854 * this buffer is loaded. */ | |
855 buf->b_flags &= ~BF_RECOVERED; | |
856 } | |
857 | |
858 /* | |
859 * Close all existing memlines and memfiles. | |
860 * Only used when exiting. | |
861 * When 'del_file' is TRUE, delete the memfiles. | |
165 | 862 * But don't delete files that were ":preserve"d when we are POSIX compatible. |
7 | 863 */ |
864 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
865 ml_close_all(int del_file) |
7 | 866 { |
867 buf_T *buf; | |
868 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
869 FOR_ALL_BUFFERS(buf) |
165 | 870 ml_close(buf, del_file && ((buf->b_flags & BF_PRESERVED) == 0 |
871 || vim_strchr(p_cpo, CPO_PRESERVE) == NULL)); | |
5519 | 872 #ifdef FEAT_SPELL |
873 spell_delete_wordlist(); /* delete the internal wordlist */ | |
874 #endif | |
7 | 875 #ifdef TEMPDIRNAMES |
5519 | 876 vim_deltempdir(); /* delete created temp directory */ |
7 | 877 #endif |
878 } | |
879 | |
880 /* | |
881 * Close all memfiles for not modified buffers. | |
882 * Only use just before exiting! | |
883 */ | |
884 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
885 ml_close_notmod(void) |
7 | 886 { |
887 buf_T *buf; | |
888 | |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
889 FOR_ALL_BUFFERS(buf) |
7 | 890 if (!bufIsChanged(buf)) |
891 ml_close(buf, TRUE); /* close all not-modified buffers */ | |
892 } | |
893 | |
894 /* | |
895 * Update the timestamp in the .swp file. | |
896 * Used when the file has been written. | |
897 */ | |
898 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
899 ml_timestamp(buf_T *buf) |
7 | 900 { |
2267 | 901 ml_upd_block0(buf, UB_FNAME); |
902 } | |
903 | |
904 /* | |
905 * Return FAIL when the ID of "b0p" is wrong. | |
906 */ | |
907 static int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
908 ml_check_b0_id(ZERO_BL *b0p) |
2267 | 909 { |
910 if (b0p->b0_id[0] != BLOCK0_ID0 | |
911 || (b0p->b0_id[1] != BLOCK0_ID1 | |
912 && b0p->b0_id[1] != BLOCK0_ID1_C0 | |
6122 | 913 && b0p->b0_id[1] != BLOCK0_ID1_C1 |
914 && b0p->b0_id[1] != BLOCK0_ID1_C2) | |
2267 | 915 ) |
916 return FAIL; | |
917 return OK; | |
39 | 918 } |
919 | |
920 /* | |
921 * Update the timestamp or the B0_SAME_DIR flag of the .swp file. | |
922 */ | |
923 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
924 ml_upd_block0(buf_T *buf, upd_block0_T what) |
39 | 925 { |
7 | 926 memfile_T *mfp; |
927 bhdr_T *hp; | |
928 ZERO_BL *b0p; | |
929 | |
930 mfp = buf->b_ml.ml_mfp; | |
6130 | 931 if (mfp == NULL) |
7 | 932 return; |
6130 | 933 hp = mf_get(mfp, (blocknr_T)0, 1); |
934 if (hp == NULL) | |
935 { | |
936 #ifdef FEAT_CRYPT | |
937 /* Possibly update the seed in the memfile before there is a block0. */ | |
938 if (what == UB_CRYPT) | |
939 ml_set_mfp_crypt(buf); | |
940 #endif | |
941 return; | |
942 } | |
943 | |
7 | 944 b0p = (ZERO_BL *)(hp->bh_data); |
2267 | 945 if (ml_check_b0_id(b0p) == FAIL) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
946 iemsg(_("E304: ml_upd_block0(): Didn't get block 0??")); |
7 | 947 else |
39 | 948 { |
2267 | 949 if (what == UB_FNAME) |
39 | 950 set_b0_fname(b0p, buf); |
2267 | 951 #ifdef FEAT_CRYPT |
952 else if (what == UB_CRYPT) | |
953 ml_set_b0_crypt(buf, b0p); | |
954 #endif | |
955 else /* what == UB_SAME_DIR */ | |
39 | 956 set_b0_dir_flag(b0p, buf); |
957 } | |
7 | 958 mf_put(mfp, hp, TRUE, FALSE); |
959 } | |
960 | |
961 /* | |
962 * Write file name and timestamp into block 0 of a swap file. | |
963 * Also set buf->b_mtime. | |
964 * Don't use NameBuff[]!!! | |
965 */ | |
966 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
967 set_b0_fname(ZERO_BL *b0p, buf_T *buf) |
7 | 968 { |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9295
diff
changeset
|
969 stat_T st; |
7 | 970 |
971 if (buf->b_ffname == NULL) | |
972 b0p->b0_fname[0] = NUL; | |
973 else | |
974 { | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
7961
diff
changeset
|
975 #if defined(MSWIN) || defined(AMIGA) |
39 | 976 /* Systems that cannot translate "~user" back into a path: copy the |
977 * file name unmodified. Do use slashes instead of backslashes for | |
978 * portability. */ | |
2267 | 979 vim_strncpy(b0p->b0_fname, buf->b_ffname, B0_FNAME_SIZE_CRYPT - 1); |
39 | 980 # ifdef BACKSLASH_IN_FILENAME |
981 forward_slash(b0p->b0_fname); | |
982 # endif | |
7 | 983 #else |
984 size_t flen, ulen; | |
985 char_u uname[B0_UNAME_SIZE]; | |
986 | |
987 /* | |
988 * For a file under the home directory of the current user, we try to | |
989 * replace the home directory path with "~user". This helps when | |
990 * editing the same file on different machines over a network. | |
991 * First replace home dir path with "~/" with home_replace(). | |
992 * Then insert the user name to get "~user/". | |
993 */ | |
2267 | 994 home_replace(NULL, buf->b_ffname, b0p->b0_fname, |
995 B0_FNAME_SIZE_CRYPT, TRUE); | |
7 | 996 if (b0p->b0_fname[0] == '~') |
997 { | |
998 flen = STRLEN(b0p->b0_fname); | |
999 /* If there is no user name or it is too long, don't use "~/" */ | |
1000 if (get_user_name(uname, B0_UNAME_SIZE) == FAIL | |
2267 | 1001 || (ulen = STRLEN(uname)) + flen > B0_FNAME_SIZE_CRYPT - 1) |
1002 vim_strncpy(b0p->b0_fname, buf->b_ffname, | |
1003 B0_FNAME_SIZE_CRYPT - 1); | |
7 | 1004 else |
1005 { | |
1006 mch_memmove(b0p->b0_fname + ulen + 1, b0p->b0_fname + 1, flen); | |
1007 mch_memmove(b0p->b0_fname + 1, uname, ulen); | |
1008 } | |
1009 } | |
1010 #endif | |
1011 if (mch_stat((char *)buf->b_ffname, &st) >= 0) | |
1012 { | |
1013 long_to_char((long)st.st_mtime, b0p->b0_mtime); | |
1014 #ifdef CHECK_INODE | |
1015 long_to_char((long)st.st_ino, b0p->b0_ino); | |
1016 #endif | |
1017 buf_store_time(buf, &st, buf->b_ffname); | |
1018 buf->b_mtime_read = buf->b_mtime; | |
1019 } | |
1020 else | |
1021 { | |
1022 long_to_char(0L, b0p->b0_mtime); | |
1023 #ifdef CHECK_INODE | |
1024 long_to_char(0L, b0p->b0_ino); | |
1025 #endif | |
1026 buf->b_mtime = 0; | |
1027 buf->b_mtime_read = 0; | |
1028 buf->b_orig_size = 0; | |
1029 buf->b_orig_mode = 0; | |
1030 } | |
1031 } | |
39 | 1032 |
1033 /* Also add the 'fileencoding' if there is room. */ | |
1034 add_b0_fenc(b0p, curbuf); | |
7 | 1035 } |
1036 | |
1037 /* | |
39 | 1038 * Update the B0_SAME_DIR flag of the swap file. It's set if the file and the |
1039 * swapfile for "buf" are in the same directory. | |
1040 * This is fail safe: if we are not sure the directories are equal the flag is | |
1041 * not set. | |
1042 */ | |
1043 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1044 set_b0_dir_flag(ZERO_BL *b0p, buf_T *buf) |
39 | 1045 { |
1046 if (same_directory(buf->b_ml.ml_mfp->mf_fname, buf->b_ffname)) | |
1047 b0p->b0_flags |= B0_SAME_DIR; | |
1048 else | |
1049 b0p->b0_flags &= ~B0_SAME_DIR; | |
1050 } | |
1051 | |
1052 /* | |
1053 * When there is room, add the 'fileencoding' to block zero. | |
1054 */ | |
1055 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1056 add_b0_fenc( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1057 ZERO_BL *b0p, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1058 buf_T *buf) |
39 | 1059 { |
1060 int n; | |
2267 | 1061 int size = B0_FNAME_SIZE_NOCRYPT; |
1062 | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1063 #ifdef FEAT_CRYPT |
2267 | 1064 /* Without encryption use the same offset as in Vim 7.2 to be compatible. |
1065 * With encryption it's OK to move elsewhere, the swap file is not | |
1066 * compatible anyway. */ | |
1067 if (*buf->b_p_key != NUL) | |
1068 size = B0_FNAME_SIZE_CRYPT; | |
15597
536dd2bc5ac9
patch 8.1.0806: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
1069 #endif |
39 | 1070 |
835 | 1071 n = (int)STRLEN(buf->b_p_fenc); |
2267 | 1072 if ((int)STRLEN(b0p->b0_fname) + n + 1 > size) |
39 | 1073 b0p->b0_flags &= ~B0_HAS_FENC; |
1074 else | |
1075 { | |
2267 | 1076 mch_memmove((char *)b0p->b0_fname + size - n, |
39 | 1077 (char *)buf->b_p_fenc, (size_t)n); |
2267 | 1078 *(b0p->b0_fname + size - n - 1) = NUL; |
39 | 1079 b0p->b0_flags |= B0_HAS_FENC; |
1080 } | |
1081 } | |
1082 | |
1083 | |
1084 /* | |
2267 | 1085 * Try to recover curbuf from the .swp file. |
16738
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16684
diff
changeset
|
1086 * If "checkext" is TRUE, check the extension and detect whether it is |
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16684
diff
changeset
|
1087 * a swap file. |
7 | 1088 */ |
1089 void | |
16738
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16684
diff
changeset
|
1090 ml_recover(int checkext) |
7 | 1091 { |
1092 buf_T *buf = NULL; | |
1093 memfile_T *mfp = NULL; | |
1094 char_u *fname; | |
2267 | 1095 char_u *fname_used = NULL; |
7 | 1096 bhdr_T *hp = NULL; |
1097 ZERO_BL *b0p; | |
39 | 1098 int b0_ff; |
1099 char_u *b0_fenc = NULL; | |
2267 | 1100 #ifdef FEAT_CRYPT |
1101 int b0_cm = -1; | |
1102 #endif | |
7 | 1103 PTR_BL *pp; |
1104 DATA_BL *dp; | |
1105 infoptr_T *ip; | |
1106 blocknr_T bnum; | |
1107 int page_count; | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9295
diff
changeset
|
1108 stat_T org_stat, swp_stat; |
7 | 1109 int len; |
1110 int directly; | |
1111 linenr_T lnum; | |
1112 char_u *p; | |
1113 int i; | |
1114 long error; | |
1115 int cannot_open; | |
1116 linenr_T line_count; | |
1117 int has_error; | |
1118 int idx; | |
1119 int top; | |
1120 int txt_start; | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9295
diff
changeset
|
1121 off_T size; |
7 | 1122 int called_from_main; |
1123 int serious_error = TRUE; | |
1124 long mtime; | |
1125 int attr; | |
2162
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1126 int orig_file_status = NOTDONE; |
7 | 1127 |
1128 recoverymode = TRUE; | |
1129 called_from_main = (curbuf->b_ml.ml_mfp == NULL); | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
1130 attr = HL_ATTR(HLF_E); |
1975 | 1131 |
1132 /* | |
12975
e311187347c1
patch 8.0.1363: recovering does not work when swap file ends in .stz
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
1133 * If the file name ends in ".s[a-w][a-z]" we assume this is the swap file. |
1975 | 1134 * Otherwise a search is done to find the swap file(s). |
1135 */ | |
7 | 1136 fname = curbuf->b_fname; |
1137 if (fname == NULL) /* When there is no file name */ | |
1138 fname = (char_u *)""; | |
1139 len = (int)STRLEN(fname); | |
16738
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16684
diff
changeset
|
1140 if (checkext && len >= 4 && |
2823 | 1141 #if defined(VMS) |
10889
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10575
diff
changeset
|
1142 STRNICMP(fname + len - 4, "_s", 2) |
7 | 1143 #else |
10889
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10575
diff
changeset
|
1144 STRNICMP(fname + len - 4, ".s", 2) |
7 | 1145 #endif |
10889
5780bd3a5a7e
patch 8.0.0334: can't access b:changedtick from a dict reference
Christian Brabandt <cb@256bit.org>
parents:
10575
diff
changeset
|
1146 == 0 |
12975
e311187347c1
patch 8.0.1363: recovering does not work when swap file ends in .stz
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
1147 && vim_strchr((char_u *)"abcdefghijklmnopqrstuvw", |
e311187347c1
patch 8.0.1363: recovering does not work when swap file ends in .stz
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
1148 TOLOWER_ASC(fname[len - 2])) != NULL |
1975 | 1149 && ASCII_ISALPHA(fname[len - 1])) |
7 | 1150 { |
1151 directly = TRUE; | |
2267 | 1152 fname_used = vim_strsave(fname); /* make a copy for mf_open() */ |
7 | 1153 } |
1154 else | |
1155 { | |
1156 directly = FALSE; | |
1157 | |
1158 /* count the number of matching swap files */ | |
2267 | 1159 len = recover_names(fname, FALSE, 0, NULL); |
7 | 1160 if (len == 0) /* no swap files found */ |
1161 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
1162 semsg(_("E305: No swap file found for %s"), fname); |
7 | 1163 goto theend; |
1164 } | |
1165 if (len == 1) /* one swap file found, use it */ | |
1166 i = 1; | |
1167 else /* several swap files found, choose */ | |
1168 { | |
1169 /* list the names of the swap files */ | |
2267 | 1170 (void)recover_names(fname, TRUE, 0, NULL); |
7 | 1171 msg_putchar('\n'); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1172 msg_puts(_("Enter number of swap file to use (0 to quit): ")); |
374 | 1173 i = get_number(FALSE, NULL); |
7 | 1174 if (i < 1 || i > len) |
1175 goto theend; | |
1176 } | |
1177 /* get the swap file name that will be used */ | |
2267 | 1178 (void)recover_names(fname, FALSE, i, &fname_used); |
7 | 1179 } |
2267 | 1180 if (fname_used == NULL) |
7 | 1181 goto theend; /* out of memory */ |
1182 | |
1183 /* When called from main() still need to initialize storage structure */ | |
625 | 1184 if (called_from_main && ml_open(curbuf) == FAIL) |
7 | 1185 getout(1); |
1186 | |
2267 | 1187 /* |
1188 * Allocate a buffer structure for the swap file that is used for recovery. | |
2407
6bc102a4bff8
Fix memory access to 'cryptmethod' during recovery. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
1189 * Only the memline and crypt information in it are really used. |
2267 | 1190 */ |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16786
diff
changeset
|
1191 buf = ALLOC_ONE(buf_T); |
7 | 1192 if (buf == NULL) |
1193 goto theend; | |
2267 | 1194 |
1195 /* | |
1196 * init fields in memline struct | |
1197 */ | |
7 | 1198 buf->b_ml.ml_stack_size = 0; /* no stack yet */ |
1199 buf->b_ml.ml_stack = NULL; /* no stack yet */ | |
1200 buf->b_ml.ml_stack_top = 0; /* nothing in the stack */ | |
1201 buf->b_ml.ml_line_lnum = 0; /* no cached line */ | |
1202 buf->b_ml.ml_locked = NULL; /* no locked block */ | |
1203 buf->b_ml.ml_flags = 0; | |
2408
9e2e63af1641
Better fix for memory access in recovery. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2407
diff
changeset
|
1204 #ifdef FEAT_CRYPT |
9e2e63af1641
Better fix for memory access in recovery. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2407
diff
changeset
|
1205 buf->b_p_key = empty_option; |
9e2e63af1641
Better fix for memory access in recovery. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2407
diff
changeset
|
1206 buf->b_p_cm = empty_option; |
9e2e63af1641
Better fix for memory access in recovery. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2407
diff
changeset
|
1207 #endif |
7 | 1208 |
2267 | 1209 /* |
1210 * open the memfile from the old swap file | |
1211 */ | |
1212 p = vim_strsave(fname_used); /* save "fname_used" for the message: | |
1213 mf_open() will consume "fname_used"! */ | |
1214 mfp = mf_open(fname_used, O_RDONLY); | |
1215 fname_used = p; | |
7 | 1216 if (mfp == NULL || mfp->mf_fd < 0) |
1217 { | |
2267 | 1218 if (fname_used != NULL) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
1219 semsg(_("E306: Cannot open %s"), fname_used); |
7 | 1220 goto theend; |
1221 } | |
1222 buf->b_ml.ml_mfp = mfp; | |
2267 | 1223 #ifdef FEAT_CRYPT |
1224 mfp->mf_buffer = buf; | |
1225 #endif | |
7 | 1226 |
1227 /* | |
1228 * The page size set in mf_open() might be different from the page size | |
1229 * used in the swap file, we must get it from block 0. But to read block | |
1230 * 0 we need a page size. Use the minimal size for block 0 here, it will | |
1231 * be set to the real value below. | |
1232 */ | |
1233 mfp->mf_page_size = MIN_SWAP_PAGE_SIZE; | |
1234 | |
2267 | 1235 /* |
1236 * try to read block 0 | |
1237 */ | |
7 | 1238 if ((hp = mf_get(mfp, (blocknr_T)0, 1)) == NULL) |
1239 { | |
1240 msg_start(); | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1241 msg_puts_attr(_("Unable to read block 0 from "), attr | MSG_HIST); |
7 | 1242 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1243 msg_puts_attr(_("\nMaybe no changes were made or Vim did not update the swap file."), |
7 | 1244 attr | MSG_HIST); |
1245 msg_end(); | |
1246 goto theend; | |
1247 } | |
1248 b0p = (ZERO_BL *)(hp->bh_data); | |
1249 if (STRNCMP(b0p->b0_version, "VIM 3.0", 7) == 0) | |
1250 { | |
1251 msg_start(); | |
1252 msg_outtrans_attr(mfp->mf_fname, MSG_HIST); | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1253 msg_puts_attr(_(" cannot be used with this version of Vim.\n"), |
7 | 1254 MSG_HIST); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1255 msg_puts_attr(_("Use Vim version 3.0.\n"), MSG_HIST); |
7 | 1256 msg_end(); |
1257 goto theend; | |
1258 } | |
2267 | 1259 if (ml_check_b0_id(b0p) == FAIL) |
7 | 1260 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
1261 semsg(_("E307: %s does not look like a Vim swap file"), mfp->mf_fname); |
7 | 1262 goto theend; |
1263 } | |
1264 if (b0_magic_wrong(b0p)) | |
1265 { | |
1266 msg_start(); | |
1267 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST); | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
7961
diff
changeset
|
1268 #if defined(MSWIN) |
7 | 1269 if (STRNCMP(b0p->b0_hname, "PC ", 3) == 0) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1270 msg_puts_attr(_(" cannot be used with this version of Vim.\n"), |
7 | 1271 attr | MSG_HIST); |
1272 else | |
1273 #endif | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1274 msg_puts_attr(_(" cannot be used on this computer.\n"), |
7 | 1275 attr | MSG_HIST); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1276 msg_puts_attr(_("The file was created on "), attr | MSG_HIST); |
2273
7f09ce7b4126
Fix a memory leak in encryption. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2272
diff
changeset
|
1277 /* avoid going past the end of a corrupted hostname */ |
7 | 1278 b0p->b0_fname[0] = NUL; |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1279 msg_puts_attr((char *)b0p->b0_hname, attr | MSG_HIST); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1280 msg_puts_attr(_(",\nor the file has been damaged."), attr | MSG_HIST); |
7 | 1281 msg_end(); |
1282 goto theend; | |
1283 } | |
1105 | 1284 |
2267 | 1285 #ifdef FEAT_CRYPT |
6122 | 1286 for (i = 0; i < (int)(sizeof(id1_codes) / sizeof(int)); ++i) |
1287 if (id1_codes[i] == b0p->b0_id[1]) | |
1288 b0_cm = i; | |
1289 if (b0_cm > 0) | |
2267 | 1290 mch_memmove(mfp->mf_seed, &b0p->b0_seed, MF_SEED_LEN); |
6122 | 1291 crypt_set_cm_option(buf, b0_cm < 0 ? 0 : b0_cm); |
2267 | 1292 #else |
1293 if (b0p->b0_id[1] != BLOCK0_ID1) | |
1294 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
1295 semsg(_("E833: %s is encrypted and this version of Vim does not support encryption"), mfp->mf_fname); |
2267 | 1296 goto theend; |
1297 } | |
1298 #endif | |
1299 | |
7 | 1300 /* |
1301 * If we guessed the wrong page size, we have to recalculate the | |
1302 * highest block number in the file. | |
1303 */ | |
1304 if (mfp->mf_page_size != (unsigned)char_to_long(b0p->b0_page_size)) | |
1305 { | |
1105 | 1306 unsigned previous_page_size = mfp->mf_page_size; |
1307 | |
7 | 1308 mf_new_page_size(mfp, (unsigned)char_to_long(b0p->b0_page_size)); |
1105 | 1309 if (mfp->mf_page_size < previous_page_size) |
1310 { | |
1311 msg_start(); | |
1312 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST); | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1313 msg_puts_attr(_(" has been damaged (page size is smaller than minimum value).\n"), |
1105 | 1314 attr | MSG_HIST); |
1315 msg_end(); | |
1316 goto theend; | |
1317 } | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9295
diff
changeset
|
1318 if ((size = vim_lseek(mfp->mf_fd, (off_T)0L, SEEK_END)) <= 0) |
7 | 1319 mfp->mf_blocknr_max = 0; /* no file or empty file */ |
1320 else | |
1321 mfp->mf_blocknr_max = (blocknr_T)(size / mfp->mf_page_size); | |
1322 mfp->mf_infile_count = mfp->mf_blocknr_max; | |
1105 | 1323 |
1324 /* need to reallocate the memory used to store the data */ | |
1325 p = alloc(mfp->mf_page_size); | |
1326 if (p == NULL) | |
1327 goto theend; | |
1328 mch_memmove(p, hp->bh_data, previous_page_size); | |
1329 vim_free(hp->bh_data); | |
1330 hp->bh_data = p; | |
1331 b0p = (ZERO_BL *)(hp->bh_data); | |
7 | 1332 } |
1333 | |
2267 | 1334 /* |
1335 * If .swp file name given directly, use name from swap file for buffer. | |
1336 */ | |
7 | 1337 if (directly) |
1338 { | |
1339 expand_env(b0p->b0_fname, NameBuff, MAXPATHL); | |
1340 if (setfname(curbuf, NameBuff, NULL, TRUE) == FAIL) | |
1341 goto theend; | |
1342 } | |
1343 | |
1344 home_replace(NULL, mfp->mf_fname, NameBuff, MAXPATHL, TRUE); | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
1345 smsg(_("Using swap file \"%s\""), NameBuff); |
7 | 1346 |
1347 if (buf_spname(curbuf) != NULL) | |
3839 | 1348 vim_strncpy(NameBuff, buf_spname(curbuf), MAXPATHL - 1); |
7 | 1349 else |
1350 home_replace(NULL, curbuf->b_ffname, NameBuff, MAXPATHL, TRUE); | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
1351 smsg(_("Original file \"%s\""), NameBuff); |
7 | 1352 msg_putchar('\n'); |
1353 | |
2267 | 1354 /* |
1355 * check date of swap file and original file | |
1356 */ | |
7 | 1357 mtime = char_to_long(b0p->b0_mtime); |
1358 if (curbuf->b_ffname != NULL | |
1359 && mch_stat((char *)curbuf->b_ffname, &org_stat) != -1 | |
1360 && ((mch_stat((char *)mfp->mf_fname, &swp_stat) != -1 | |
1361 && org_stat.st_mtime > swp_stat.st_mtime) | |
1362 || org_stat.st_mtime != mtime)) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
1363 emsg(_("E308: Warning: Original file may have been changed")); |
7 | 1364 out_flush(); |
39 | 1365 |
1366 /* Get the 'fileformat' and 'fileencoding' from block zero. */ | |
1367 b0_ff = (b0p->b0_flags & B0_FF_MASK); | |
1368 if (b0p->b0_flags & B0_HAS_FENC) | |
1369 { | |
2271
2b33a7678e7b
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead
Bram Moolenaar <bram@vim.org>
parents:
2267
diff
changeset
|
1370 int fnsize = B0_FNAME_SIZE_NOCRYPT; |
2267 | 1371 |
1372 #ifdef FEAT_CRYPT | |
1373 /* Use the same size as in add_b0_fenc(). */ | |
1374 if (b0p->b0_id[1] != BLOCK0_ID1) | |
2271
2b33a7678e7b
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead
Bram Moolenaar <bram@vim.org>
parents:
2267
diff
changeset
|
1375 fnsize = B0_FNAME_SIZE_CRYPT; |
2267 | 1376 #endif |
2271
2b33a7678e7b
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead
Bram Moolenaar <bram@vim.org>
parents:
2267
diff
changeset
|
1377 for (p = b0p->b0_fname + fnsize; p > b0p->b0_fname && p[-1] != NUL; --p) |
39 | 1378 ; |
2271
2b33a7678e7b
Fix compiler warnings for shadowed variables. Make 'conceal' a long instead
Bram Moolenaar <bram@vim.org>
parents:
2267
diff
changeset
|
1379 b0_fenc = vim_strnsave(p, (int)(b0p->b0_fname + fnsize - p)); |
39 | 1380 } |
1381 | |
7 | 1382 mf_put(mfp, hp, FALSE, FALSE); /* release block 0 */ |
1383 hp = NULL; | |
1384 | |
1385 /* | |
1386 * Now that we are sure that the file is going to be recovered, clear the | |
1387 * contents of the current buffer. | |
1388 */ | |
1389 while (!(curbuf->b_ml.ml_flags & ML_EMPTY)) | |
1390 ml_delete((linenr_T)1, FALSE); | |
1391 | |
1392 /* | |
1393 * Try reading the original file to obtain the values of 'fileformat', | |
1394 * 'fileencoding', etc. Ignore errors. The text itself is not used. | |
2267 | 1395 * When the file is encrypted the user is asked to enter the key. |
7 | 1396 */ |
1397 if (curbuf->b_ffname != NULL) | |
2162
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1398 orig_file_status = readfile(curbuf->b_ffname, NULL, (linenr_T)0, |
7 | 1399 (linenr_T)0, (linenr_T)MAXLNUM, NULL, READ_NEW); |
1400 | |
2267 | 1401 #ifdef FEAT_CRYPT |
1402 if (b0_cm >= 0) | |
1403 { | |
1404 /* Need to ask the user for the crypt key. If this fails we continue | |
1405 * without a key, will probably get garbage text. */ | |
1406 if (*curbuf->b_p_key != NUL) | |
1407 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
1408 smsg(_("Swap file is encrypted: \"%s\""), fname_used); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1409 msg_puts(_("\nIf you entered a new crypt key but did not write the text file,")); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1410 msg_puts(_("\nenter the new crypt key.")); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1411 msg_puts(_("\nIf you wrote the text file after changing the crypt key press enter")); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1412 msg_puts(_("\nto use the same key for text file and swap file")); |
2267 | 1413 } |
1414 else | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
1415 smsg(_(need_key_msg), fname_used); |
6122 | 1416 buf->b_p_key = crypt_get_key(FALSE, FALSE); |
2267 | 1417 if (buf->b_p_key == NULL) |
1418 buf->b_p_key = curbuf->b_p_key; | |
1419 else if (*buf->b_p_key == NUL) | |
1420 { | |
1421 vim_free(buf->b_p_key); | |
1422 buf->b_p_key = curbuf->b_p_key; | |
1423 } | |
1424 if (buf->b_p_key == NULL) | |
1425 buf->b_p_key = empty_option; | |
2165
733f0dc510c3
Undo changes that are meant for the Vim 7.3 branch.
Bram Moolenaar <bram@vim.org>
parents:
2162
diff
changeset
|
1426 } |
2267 | 1427 #endif |
7 | 1428 |
39 | 1429 /* Use the 'fileformat' and 'fileencoding' as stored in the swap file. */ |
1430 if (b0_ff != 0) | |
1431 set_fileformat(b0_ff - 1, OPT_LOCAL); | |
1432 if (b0_fenc != NULL) | |
1433 { | |
1434 set_option_value((char_u *)"fenc", 0L, b0_fenc, OPT_LOCAL); | |
1435 vim_free(b0_fenc); | |
1436 } | |
16996
d5e1e09a829f
patch 8.1.1498: ":write" increments b:changedtick even though nothing changed
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
1437 unchanged(curbuf, TRUE, TRUE); |
39 | 1438 |
7 | 1439 bnum = 1; /* start with block 1 */ |
1440 page_count = 1; /* which is 1 page */ | |
1441 lnum = 0; /* append after line 0 in curbuf */ | |
1442 line_count = 0; | |
1443 idx = 0; /* start with first index in block 1 */ | |
1444 error = 0; | |
1445 buf->b_ml.ml_stack_top = 0; | |
1446 buf->b_ml.ml_stack = NULL; | |
1447 buf->b_ml.ml_stack_size = 0; /* no stack yet */ | |
1448 | |
1449 if (curbuf->b_ffname == NULL) | |
1450 cannot_open = TRUE; | |
1451 else | |
1452 cannot_open = FALSE; | |
1453 | |
1454 serious_error = FALSE; | |
1455 for ( ; !got_int; line_breakcheck()) | |
1456 { | |
1457 if (hp != NULL) | |
1458 mf_put(mfp, hp, FALSE, FALSE); /* release previous block */ | |
1459 | |
1460 /* | |
1461 * get block | |
1462 */ | |
1463 if ((hp = mf_get(mfp, (blocknr_T)bnum, page_count)) == NULL) | |
1464 { | |
1465 if (bnum == 1) | |
1466 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
1467 semsg(_("E309: Unable to read block 1 from %s"), mfp->mf_fname); |
7 | 1468 goto theend; |
1469 } | |
1470 ++error; | |
1471 ml_append(lnum++, (char_u *)_("???MANY LINES MISSING"), | |
1472 (colnr_T)0, TRUE); | |
1473 } | |
1474 else /* there is a block */ | |
1475 { | |
1476 pp = (PTR_BL *)(hp->bh_data); | |
1477 if (pp->pb_id == PTR_ID) /* it is a pointer block */ | |
1478 { | |
1479 /* check line count when using pointer block first time */ | |
1480 if (idx == 0 && line_count != 0) | |
1481 { | |
1482 for (i = 0; i < (int)pp->pb_count; ++i) | |
1483 line_count -= pp->pb_pointer[i].pe_line_count; | |
1484 if (line_count != 0) | |
1485 { | |
1486 ++error; | |
1487 ml_append(lnum++, (char_u *)_("???LINE COUNT WRONG"), | |
1488 (colnr_T)0, TRUE); | |
1489 } | |
1490 } | |
1491 | |
1492 if (pp->pb_count == 0) | |
1493 { | |
1494 ml_append(lnum++, (char_u *)_("???EMPTY BLOCK"), | |
1495 (colnr_T)0, TRUE); | |
1496 ++error; | |
1497 } | |
1498 else if (idx < (int)pp->pb_count) /* go a block deeper */ | |
1499 { | |
1500 if (pp->pb_pointer[idx].pe_bnum < 0) | |
1501 { | |
1502 /* | |
1503 * Data block with negative block number. | |
1504 * Try to read lines from the original file. | |
1505 * This is slow, but it works. | |
1506 */ | |
1507 if (!cannot_open) | |
1508 { | |
1509 line_count = pp->pb_pointer[idx].pe_line_count; | |
1510 if (readfile(curbuf->b_ffname, NULL, lnum, | |
1511 pp->pb_pointer[idx].pe_old_lnum - 1, | |
10575
01a5f64a7a20
patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
1512 line_count, NULL, 0) != OK) |
7 | 1513 cannot_open = TRUE; |
1514 else | |
1515 lnum += line_count; | |
1516 } | |
1517 if (cannot_open) | |
1518 { | |
1519 ++error; | |
1520 ml_append(lnum++, (char_u *)_("???LINES MISSING"), | |
1521 (colnr_T)0, TRUE); | |
1522 } | |
1523 ++idx; /* get same block again for next index */ | |
1524 continue; | |
1525 } | |
1526 | |
1527 /* | |
1528 * going one block deeper in the tree | |
1529 */ | |
1530 if ((top = ml_add_stack(buf)) < 0) /* new entry in stack */ | |
1531 { | |
1532 ++error; | |
1533 break; /* out of memory */ | |
1534 } | |
1535 ip = &(buf->b_ml.ml_stack[top]); | |
1536 ip->ip_bnum = bnum; | |
1537 ip->ip_index = idx; | |
1538 | |
1539 bnum = pp->pb_pointer[idx].pe_bnum; | |
1540 line_count = pp->pb_pointer[idx].pe_line_count; | |
1541 page_count = pp->pb_pointer[idx].pe_page_count; | |
2885 | 1542 idx = 0; |
7 | 1543 continue; |
1544 } | |
1545 } | |
1546 else /* not a pointer block */ | |
1547 { | |
1548 dp = (DATA_BL *)(hp->bh_data); | |
1549 if (dp->db_id != DATA_ID) /* block id wrong */ | |
1550 { | |
1551 if (bnum == 1) | |
1552 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
1553 semsg(_("E310: Block 1 ID wrong (%s not a .swp file?)"), |
7 | 1554 mfp->mf_fname); |
1555 goto theend; | |
1556 } | |
1557 ++error; | |
1558 ml_append(lnum++, (char_u *)_("???BLOCK MISSING"), | |
1559 (colnr_T)0, TRUE); | |
1560 } | |
1561 else | |
1562 { | |
1563 /* | |
1564 * it is a data block | |
1565 * Append all the lines in this block | |
1566 */ | |
1567 has_error = FALSE; | |
1568 /* | |
1569 * check length of block | |
1570 * if wrong, use length in pointer block | |
1571 */ | |
1572 if (page_count * mfp->mf_page_size != dp->db_txt_end) | |
1573 { | |
1574 ml_append(lnum++, (char_u *)_("??? from here until ???END lines may be messed up"), | |
1575 (colnr_T)0, TRUE); | |
1576 ++error; | |
1577 has_error = TRUE; | |
1578 dp->db_txt_end = page_count * mfp->mf_page_size; | |
1579 } | |
1580 | |
1581 /* make sure there is a NUL at the end of the block */ | |
1582 *((char_u *)dp + dp->db_txt_end - 1) = NUL; | |
1583 | |
1584 /* | |
1585 * check number of lines in block | |
1586 * if wrong, use count in data block | |
1587 */ | |
1588 if (line_count != dp->db_line_count) | |
1589 { | |
1590 ml_append(lnum++, (char_u *)_("??? from here until ???END lines may have been inserted/deleted"), | |
1591 (colnr_T)0, TRUE); | |
1592 ++error; | |
1593 has_error = TRUE; | |
1594 } | |
1595 | |
1596 for (i = 0; i < dp->db_line_count; ++i) | |
1597 { | |
1598 txt_start = (dp->db_index[i] & DB_INDEX_MASK); | |
1978 | 1599 if (txt_start <= (int)HEADER_SIZE |
7 | 1600 || txt_start >= (int)dp->db_txt_end) |
1601 { | |
1602 p = (char_u *)"???"; | |
1603 ++error; | |
1604 } | |
1605 else | |
1606 p = (char_u *)dp + txt_start; | |
1607 ml_append(lnum++, p, (colnr_T)0, TRUE); | |
1608 } | |
1609 if (has_error) | |
1978 | 1610 ml_append(lnum++, (char_u *)_("???END"), |
1611 (colnr_T)0, TRUE); | |
7 | 1612 } |
1613 } | |
1614 } | |
1615 | |
1616 if (buf->b_ml.ml_stack_top == 0) /* finished */ | |
1617 break; | |
1618 | |
1619 /* | |
1620 * go one block up in the tree | |
1621 */ | |
1622 ip = &(buf->b_ml.ml_stack[--(buf->b_ml.ml_stack_top)]); | |
1623 bnum = ip->ip_bnum; | |
1624 idx = ip->ip_index + 1; /* go to next index */ | |
1625 page_count = 1; | |
1626 } | |
1627 | |
1628 /* | |
2162
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1629 * Compare the buffer contents with the original file. When they differ |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1630 * set the 'modified' flag. |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1631 * Lines 1 - lnum are the new contents. |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1632 * Lines lnum + 1 to ml_line_count are the original contents. |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1633 * Line ml_line_count + 1 in the dummy empty line. |
7 | 1634 */ |
2162
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1635 if (orig_file_status != OK || curbuf->b_ml.ml_line_count != lnum * 2 + 1) |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1636 { |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1637 /* Recovering an empty file results in two lines and the first line is |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1638 * empty. Don't set the modified flag then. */ |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1639 if (!(curbuf->b_ml.ml_line_count == 2 && *ml_get(1) == NUL)) |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1640 { |
16632
30de89c1d090
patch 8.1.1318: code for text changes is in a "misc" file
Bram Moolenaar <Bram@vim.org>
parents:
16621
diff
changeset
|
1641 changed_internal(); |
10952
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10896
diff
changeset
|
1642 ++CHANGEDTICK(curbuf); |
2162
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1643 } |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1644 } |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1645 else |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1646 { |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1647 for (idx = 1; idx <= lnum; ++idx) |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1648 { |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1649 /* Need to copy one line, fetching the other one may flush it. */ |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1650 p = vim_strsave(ml_get(idx)); |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1651 i = STRCMP(p, ml_get(idx + lnum)); |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1652 vim_free(p); |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1653 if (i != 0) |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1654 { |
16632
30de89c1d090
patch 8.1.1318: code for text changes is in a "misc" file
Bram Moolenaar <Bram@vim.org>
parents:
16621
diff
changeset
|
1655 changed_internal(); |
10952
835604f3c37a
patch 8.0.0365: might free a dict item that wasn't allocated
Christian Brabandt <cb@256bit.org>
parents:
10896
diff
changeset
|
1656 ++CHANGEDTICK(curbuf); |
2162
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1657 break; |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1658 } |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1659 } |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1660 } |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1661 |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1662 /* |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1663 * Delete the lines from the original file and the dummy line from the |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1664 * empty buffer. These will now be after the last line in the buffer. |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1665 */ |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1666 while (curbuf->b_ml.ml_line_count > lnum |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1667 && !(curbuf->b_ml.ml_flags & ML_EMPTY)) |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1668 ml_delete(curbuf->b_ml.ml_line_count, FALSE); |
7 | 1669 curbuf->b_flags |= BF_RECOVERED; |
1670 | |
1671 recoverymode = FALSE; | |
1672 if (got_int) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
1673 emsg(_("E311: Recovery Interrupted")); |
7 | 1674 else if (error) |
1675 { | |
1676 ++no_wait_return; | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1677 msg(">>>>>>>>>>>>>"); |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
1678 emsg(_("E312: Errors detected while recovering; look for lines starting with ???")); |
7 | 1679 --no_wait_return; |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1680 msg(_("See \":help E312\" for more information.")); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1681 msg(">>>>>>>>>>>>>"); |
7 | 1682 } |
1683 else | |
1684 { | |
2162
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1685 if (curbuf->b_changed) |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1686 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1687 msg(_("Recovery completed. You should check if everything is OK.")); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1688 msg_puts(_("\n(You might want to write out this file under another name\n")); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1689 msg_puts(_("and run diff with the original file to check for changes)")); |
2162
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1690 } |
0527eb0f6918
After recovery check if the text changed. If it did mark the buffer as
Bram Moolenaar <bram@vim.org>
parents:
2145
diff
changeset
|
1691 else |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1692 msg(_("Recovery completed. Buffer contents equals file contents.")); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1693 msg_puts(_("\nYou may want to delete the .swp file now.\n\n")); |
7 | 1694 cmdline_row = msg_row; |
1695 } | |
2267 | 1696 #ifdef FEAT_CRYPT |
1697 if (*buf->b_p_key != NUL && STRCMP(curbuf->b_p_key, buf->b_p_key) != 0) | |
1698 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1699 msg_puts(_("Using crypt key from swap file for the text file.\n")); |
2267 | 1700 set_option_value((char_u *)"key", 0L, buf->b_p_key, OPT_LOCAL); |
1701 } | |
1702 #endif | |
7 | 1703 redraw_curbuf_later(NOT_VALID); |
1704 | |
1705 theend: | |
2267 | 1706 vim_free(fname_used); |
7 | 1707 recoverymode = FALSE; |
1708 if (mfp != NULL) | |
1709 { | |
1710 if (hp != NULL) | |
1711 mf_put(mfp, hp, FALSE, FALSE); | |
1712 mf_close(mfp, FALSE); /* will also vim_free(mfp->mf_fname) */ | |
1713 } | |
1053 | 1714 if (buf != NULL) |
1715 { | |
2267 | 1716 #ifdef FEAT_CRYPT |
1717 if (buf->b_p_key != curbuf->b_p_key) | |
1718 free_string_option(buf->b_p_key); | |
2407
6bc102a4bff8
Fix memory access to 'cryptmethod' during recovery. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
1719 free_string_option(buf->b_p_cm); |
2267 | 1720 #endif |
1053 | 1721 vim_free(buf->b_ml.ml_stack); |
1722 vim_free(buf); | |
1723 } | |
7 | 1724 if (serious_error && called_from_main) |
1725 ml_close(curbuf, TRUE); | |
1726 else | |
1727 { | |
1728 apply_autocmds(EVENT_BUFREADPOST, NULL, curbuf->b_fname, FALSE, curbuf); | |
1729 apply_autocmds(EVENT_BUFWINENTER, NULL, curbuf->b_fname, FALSE, curbuf); | |
1730 } | |
1731 return; | |
1732 } | |
1733 | |
1734 /* | |
1735 * Find the names of swap files in current directory and the directory given | |
1736 * with the 'directory' option. | |
1737 * | |
1738 * Used to: | |
1739 * - list the swap files for "vim -r" | |
1740 * - count the number of swap files when recovering | |
1741 * - list the swap files when recovering | |
1742 * - find the name of the n'th swap file when recovering | |
1743 */ | |
1744 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1745 recover_names( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1746 char_u *fname, /* base for swap file name */ |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1747 int list, /* when TRUE, list the swap file names */ |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1748 int nr, /* when non-zero, return nr'th swap file name */ |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
1749 char_u **fname_out) /* result when "nr" > 0 */ |
7 | 1750 { |
1751 int num_names; | |
1752 char_u *(names[6]); | |
1753 char_u *tail; | |
1754 char_u *p; | |
1755 int num_files; | |
1756 int file_count = 0; | |
1757 char_u **files; | |
1758 int i; | |
1759 char_u *dirp; | |
1760 char_u *dir_name; | |
2175 | 1761 char_u *fname_res = NULL; |
2145
de0e7ca61893
updated for version 7.2.427
Bram Moolenaar <bram@zimbu.org>
parents:
2108
diff
changeset
|
1762 #ifdef HAVE_READLINK |
de0e7ca61893
updated for version 7.2.427
Bram Moolenaar <bram@zimbu.org>
parents:
2108
diff
changeset
|
1763 char_u fname_buf[MAXPATHL]; |
2175 | 1764 #endif |
1765 | |
1766 if (fname != NULL) | |
1767 { | |
1768 #ifdef HAVE_READLINK | |
2267 | 1769 /* Expand symlink in the file name, because the swap file is created |
1770 * with the actual file instead of with the symlink. */ | |
1771 if (resolve_symlink(fname, fname_buf) == OK) | |
1772 fname_res = fname_buf; | |
1773 else | |
2145
de0e7ca61893
updated for version 7.2.427
Bram Moolenaar <bram@zimbu.org>
parents:
2108
diff
changeset
|
1774 #endif |
2267 | 1775 fname_res = fname; |
2175 | 1776 } |
7 | 1777 |
1778 if (list) | |
1779 { | |
2145
de0e7ca61893
updated for version 7.2.427
Bram Moolenaar <bram@zimbu.org>
parents:
2108
diff
changeset
|
1780 /* use msg() to start the scrolling properly */ |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1781 msg(_("Swap files found:")); |
7 | 1782 msg_putchar('\n'); |
1783 } | |
1784 | |
1785 /* | |
1786 * Do the loop for every directory in 'directory'. | |
1787 * First allocate some memory to put the directory name in. | |
1788 */ | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
1789 dir_name = alloc(STRLEN(p_dir) + 1); |
7 | 1790 dirp = p_dir; |
1791 while (dir_name != NULL && *dirp) | |
1792 { | |
1793 /* | |
1794 * Isolate a directory name from *dirp and put it in dir_name (we know | |
1795 * it is large enough, so use 31000 for length). | |
1796 * Advance dirp to next directory name. | |
1797 */ | |
1798 (void)copy_option_part(&dirp, dir_name, 31000, ","); | |
1799 | |
1800 if (dir_name[0] == '.' && dir_name[1] == NUL) /* check current dir */ | |
1801 { | |
2267 | 1802 if (fname == NULL) |
7 | 1803 { |
1804 #ifdef VMS | |
1805 names[0] = vim_strsave((char_u *)"*_sw%"); | |
1806 #else | |
1807 names[0] = vim_strsave((char_u *)"*.sw?"); | |
1808 #endif | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
1809 #if defined(UNIX) || defined(MSWIN) |
1005 | 1810 /* For Unix names starting with a dot are special. MS-Windows |
1811 * supports this too, on some file systems. */ | |
7 | 1812 names[1] = vim_strsave((char_u *)".*.sw?"); |
1813 names[2] = vim_strsave((char_u *)".sw?"); | |
1814 num_names = 3; | |
1815 #else | |
1816 # ifdef VMS | |
1817 names[1] = vim_strsave((char_u *)".*_sw%"); | |
1818 num_names = 2; | |
1819 # else | |
1820 num_names = 1; | |
1821 # endif | |
1822 #endif | |
1823 } | |
1824 else | |
2145
de0e7ca61893
updated for version 7.2.427
Bram Moolenaar <bram@zimbu.org>
parents:
2108
diff
changeset
|
1825 num_names = recov_file_names(names, fname_res, TRUE); |
7 | 1826 } |
1827 else /* check directory dir_name */ | |
1828 { | |
2267 | 1829 if (fname == NULL) |
7 | 1830 { |
1831 #ifdef VMS | |
1832 names[0] = concat_fnames(dir_name, (char_u *)"*_sw%", TRUE); | |
1833 #else | |
1834 names[0] = concat_fnames(dir_name, (char_u *)"*.sw?", TRUE); | |
1835 #endif | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
1836 #if defined(UNIX) || defined(MSWIN) |
1005 | 1837 /* For Unix names starting with a dot are special. MS-Windows |
1838 * supports this too, on some file systems. */ | |
7 | 1839 names[1] = concat_fnames(dir_name, (char_u *)".*.sw?", TRUE); |
1840 names[2] = concat_fnames(dir_name, (char_u *)".sw?", TRUE); | |
1841 num_names = 3; | |
1842 #else | |
1843 # ifdef VMS | |
1844 names[1] = concat_fnames(dir_name, (char_u *)".*_sw%", TRUE); | |
1845 num_names = 2; | |
1846 # else | |
1847 num_names = 1; | |
1848 # endif | |
1849 #endif | |
1850 } | |
1851 else | |
1852 { | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
1853 #if defined(UNIX) || defined(MSWIN) |
10996
2f041b367cd9
patch 8.0.0387: compiler warnings
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
1854 int len = (int)STRLEN(dir_name); |
10896
d513b653f5d0
patch 8.0.0337: invalid memory access in :recover command
Christian Brabandt <cb@256bit.org>
parents:
10889
diff
changeset
|
1855 |
d513b653f5d0
patch 8.0.0337: invalid memory access in :recover command
Christian Brabandt <cb@256bit.org>
parents:
10889
diff
changeset
|
1856 p = dir_name + len; |
d513b653f5d0
patch 8.0.0337: invalid memory access in :recover command
Christian Brabandt <cb@256bit.org>
parents:
10889
diff
changeset
|
1857 if (after_pathsep(dir_name, p) && len > 1 && p[-1] == p[-2]) |
7 | 1858 { |
1859 /* Ends with '//', Use Full path for swap name */ | |
2145
de0e7ca61893
updated for version 7.2.427
Bram Moolenaar <bram@zimbu.org>
parents:
2108
diff
changeset
|
1860 tail = make_percent_swname(dir_name, fname_res); |
7 | 1861 } |
1862 else | |
1863 #endif | |
1864 { | |
2145
de0e7ca61893
updated for version 7.2.427
Bram Moolenaar <bram@zimbu.org>
parents:
2108
diff
changeset
|
1865 tail = gettail(fname_res); |
7 | 1866 tail = concat_fnames(dir_name, tail, TRUE); |
1867 } | |
1868 if (tail == NULL) | |
1869 num_names = 0; | |
1870 else | |
1871 { | |
1872 num_names = recov_file_names(names, tail, FALSE); | |
1873 vim_free(tail); | |
1874 } | |
1875 } | |
1876 } | |
1877 | |
16684
1c2d9f67d98f
patch 8.1.1344: Coverity complains about possibly using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents:
16666
diff
changeset
|
1878 // check for out-of-memory |
7 | 1879 for (i = 0; i < num_names; ++i) |
1880 { | |
1881 if (names[i] == NULL) | |
1882 { | |
1883 for (i = 0; i < num_names; ++i) | |
1884 vim_free(names[i]); | |
1885 num_names = 0; | |
1886 } | |
1887 } | |
1888 if (num_names == 0) | |
1889 num_files = 0; | |
1890 else if (expand_wildcards(num_names, names, &num_files, &files, | |
16738
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16684
diff
changeset
|
1891 EW_NOTENV|EW_KEEPALL|EW_FILE|EW_SILENT) == FAIL) |
7 | 1892 num_files = 0; |
1893 | |
1894 /* | |
1895 * When no swap file found, wildcard expansion might have failed (e.g. | |
1896 * not able to execute the shell). | |
1897 * Try finding a swap file by simply adding ".swp" to the file name. | |
1898 */ | |
2267 | 1899 if (*dirp == NUL && file_count + num_files == 0 && fname != NULL) |
7 | 1900 { |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9295
diff
changeset
|
1901 stat_T st; |
7 | 1902 char_u *swapname; |
1903 | |
2145
de0e7ca61893
updated for version 7.2.427
Bram Moolenaar <bram@zimbu.org>
parents:
2108
diff
changeset
|
1904 swapname = modname(fname_res, |
2823 | 1905 #if defined(VMS) |
2145
de0e7ca61893
updated for version 7.2.427
Bram Moolenaar <bram@zimbu.org>
parents:
2108
diff
changeset
|
1906 (char_u *)"_swp", FALSE |
7 | 1907 #else |
2145
de0e7ca61893
updated for version 7.2.427
Bram Moolenaar <bram@zimbu.org>
parents:
2108
diff
changeset
|
1908 (char_u *)".swp", TRUE |
7 | 1909 #endif |
2145
de0e7ca61893
updated for version 7.2.427
Bram Moolenaar <bram@zimbu.org>
parents:
2108
diff
changeset
|
1910 ); |
7 | 1911 if (swapname != NULL) |
1912 { | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16786
diff
changeset
|
1913 if (mch_stat((char *)swapname, &st) != -1) // It exists! |
7 | 1914 { |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16786
diff
changeset
|
1915 files = ALLOC_ONE(char_u *); |
7 | 1916 if (files != NULL) |
1917 { | |
1918 files[0] = swapname; | |
1919 swapname = NULL; | |
1920 num_files = 1; | |
1921 } | |
1922 } | |
1923 vim_free(swapname); | |
1924 } | |
1925 } | |
1926 | |
1927 /* | |
1928 * remove swapfile name of the current buffer, it must be ignored | |
1929 */ | |
1930 if (curbuf->b_ml.ml_mfp != NULL | |
1931 && (p = curbuf->b_ml.ml_mfp->mf_fname) != NULL) | |
1932 { | |
1933 for (i = 0; i < num_files; ++i) | |
16738
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16684
diff
changeset
|
1934 // Do not expand wildcards, on windows would try to expand |
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16684
diff
changeset
|
1935 // "%tmp%" in "%tmp%file". |
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16684
diff
changeset
|
1936 if (fullpathcmp(p, files[i], TRUE, FALSE) & FPC_SAME) |
7 | 1937 { |
16738
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16684
diff
changeset
|
1938 // Remove the name from files[i]. Move further entries |
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16684
diff
changeset
|
1939 // down. When the array becomes empty free it here, since |
b52ea9c5f1db
patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents:
16684
diff
changeset
|
1940 // FreeWild() won't be called below. |
7 | 1941 vim_free(files[i]); |
1855 | 1942 if (--num_files == 0) |
1943 vim_free(files); | |
1944 else | |
1945 for ( ; i < num_files; ++i) | |
1946 files[i] = files[i + 1]; | |
7 | 1947 } |
1948 } | |
838 | 1949 if (nr > 0) |
7 | 1950 { |
1951 file_count += num_files; | |
1952 if (nr <= file_count) | |
1953 { | |
2267 | 1954 *fname_out = vim_strsave( |
1955 files[nr - 1 + num_files - file_count]); | |
7 | 1956 dirp = (char_u *)""; /* stop searching */ |
1957 } | |
1958 } | |
1959 else if (list) | |
1960 { | |
1961 if (dir_name[0] == '.' && dir_name[1] == NUL) | |
1962 { | |
2267 | 1963 if (fname == NULL) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1964 msg_puts(_(" In current directory:\n")); |
7 | 1965 else |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1966 msg_puts(_(" Using specified name:\n")); |
7 | 1967 } |
1968 else | |
1969 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1970 msg_puts(_(" In directory ")); |
7 | 1971 msg_home_replace(dir_name); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1972 msg_puts(":\n"); |
7 | 1973 } |
1974 | |
1975 if (num_files) | |
1976 { | |
1977 for (i = 0; i < num_files; ++i) | |
1978 { | |
1979 /* print the swap file name */ | |
1980 msg_outnum((long)++file_count); | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1981 msg_puts(". "); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1982 msg_puts((char *)gettail(files[i])); |
7 | 1983 msg_putchar('\n'); |
1984 (void)swapfile_info(files[i]); | |
1985 } | |
1986 } | |
1987 else | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1988 msg_puts(_(" -- none --\n")); |
7 | 1989 out_flush(); |
1990 } | |
1991 else | |
1992 file_count += num_files; | |
1993 | |
1994 for (i = 0; i < num_names; ++i) | |
1995 vim_free(names[i]); | |
838 | 1996 if (num_files > 0) |
1997 FreeWild(num_files, files); | |
7 | 1998 } |
1999 vim_free(dir_name); | |
2000 return file_count; | |
2001 } | |
2002 | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2003 #if defined(UNIX) || defined(MSWIN) || defined(PROTO) |
7 | 2004 /* |
14475
dddba3937532
patch 8.1.0251: using full path is not supported for 'backupdir'
Christian Brabandt <cb@256bit.org>
parents:
14011
diff
changeset
|
2005 * Need _very_ long file names. |
7 | 2006 * Append the full path to name with path separators made into percent |
2007 * signs, to dir. An unnamed buffer is handled as "" (<currentdir>/"") | |
2008 */ | |
14475
dddba3937532
patch 8.1.0251: using full path is not supported for 'backupdir'
Christian Brabandt <cb@256bit.org>
parents:
14011
diff
changeset
|
2009 char_u * |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2010 make_percent_swname(char_u *dir, char_u *name) |
7 | 2011 { |
14475
dddba3937532
patch 8.1.0251: using full path is not supported for 'backupdir'
Christian Brabandt <cb@256bit.org>
parents:
14011
diff
changeset
|
2012 char_u *d = NULL, *s, *f; |
dddba3937532
patch 8.1.0251: using full path is not supported for 'backupdir'
Christian Brabandt <cb@256bit.org>
parents:
14011
diff
changeset
|
2013 |
dddba3937532
patch 8.1.0251: using full path is not supported for 'backupdir'
Christian Brabandt <cb@256bit.org>
parents:
14011
diff
changeset
|
2014 f = fix_fname(name != NULL ? name : (char_u *)""); |
7 | 2015 if (f != NULL) |
2016 { | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
2017 s = alloc(STRLEN(f) + 1); |
7 | 2018 if (s != NULL) |
2019 { | |
39 | 2020 STRCPY(s, f); |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10996
diff
changeset
|
2021 for (d = s; *d != NUL; MB_PTR_ADV(d)) |
39 | 2022 if (vim_ispathsep(*d)) |
2023 *d = '%'; | |
7 | 2024 d = concat_fnames(dir, s, TRUE); |
2025 vim_free(s); | |
2026 } | |
2027 vim_free(f); | |
2028 } | |
2029 return d; | |
2030 } | |
2031 #endif | |
2032 | |
16455
1ae13586edf8
patch 8.1.1232: can't build on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
2033 #if (defined(UNIX) || defined(VMS) || defined(MSWIN)) \ |
1ae13586edf8
patch 8.1.1232: can't build on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
2034 && (defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)) |
1ae13586edf8
patch 8.1.1232: can't build on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
2035 # define HAVE_PROCESS_STILL_RUNNING |
7 | 2036 static int process_still_running; |
2037 #endif | |
2038 | |
14601
d0ff19a55579
patch 8.1.0314: build failure without the +eval feature
Christian Brabandt <cb@256bit.org>
parents:
14599
diff
changeset
|
2039 #if defined(FEAT_EVAL) || defined(PROTO) |
7 | 2040 /* |
14599
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2041 * Return information found in swapfile "fname" in dictionary "d". |
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2042 * This is used by the swapinfo() function. |
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2043 */ |
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2044 void |
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2045 get_b0_dict(char_u *fname, dict_T *d) |
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2046 { |
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2047 int fd; |
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2048 struct block0 b0; |
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2049 |
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2050 if ((fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0)) >= 0) |
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2051 { |
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2052 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0)) |
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2053 { |
14601
d0ff19a55579
patch 8.1.0314: build failure without the +eval feature
Christian Brabandt <cb@256bit.org>
parents:
14599
diff
changeset
|
2054 if (ml_check_b0_id(&b0) == FAIL) |
15267
762fccd84b7c
patch 8.1.0642: swapinfo() leaks memory
Bram Moolenaar <Bram@vim.org>
parents:
15255
diff
changeset
|
2055 dict_add_string(d, "error", (char_u *)"Not a swap file"); |
14601
d0ff19a55579
patch 8.1.0314: build failure without the +eval feature
Christian Brabandt <cb@256bit.org>
parents:
14599
diff
changeset
|
2056 else if (b0_magic_wrong(&b0)) |
15267
762fccd84b7c
patch 8.1.0642: swapinfo() leaks memory
Bram Moolenaar <Bram@vim.org>
parents:
15255
diff
changeset
|
2057 dict_add_string(d, "error", (char_u *)"Magic number mismatch"); |
14599
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2058 else |
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2059 { |
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2060 /* we have swap information */ |
15267
762fccd84b7c
patch 8.1.0642: swapinfo() leaks memory
Bram Moolenaar <Bram@vim.org>
parents:
15255
diff
changeset
|
2061 dict_add_string_len(d, "version", b0.b0_version, 10); |
762fccd84b7c
patch 8.1.0642: swapinfo() leaks memory
Bram Moolenaar <Bram@vim.org>
parents:
15255
diff
changeset
|
2062 dict_add_string_len(d, "user", b0.b0_uname, B0_UNAME_SIZE); |
762fccd84b7c
patch 8.1.0642: swapinfo() leaks memory
Bram Moolenaar <Bram@vim.org>
parents:
15255
diff
changeset
|
2063 dict_add_string_len(d, "host", b0.b0_hname, B0_HNAME_SIZE); |
762fccd84b7c
patch 8.1.0642: swapinfo() leaks memory
Bram Moolenaar <Bram@vim.org>
parents:
15255
diff
changeset
|
2064 dict_add_string_len(d, "fname", b0.b0_fname, B0_FNAME_SIZE_ORG); |
14599
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2065 |
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2066 dict_add_number(d, "pid", char_to_long(b0.b0_pid)); |
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2067 dict_add_number(d, "mtime", char_to_long(b0.b0_mtime)); |
14601
d0ff19a55579
patch 8.1.0314: build failure without the +eval feature
Christian Brabandt <cb@256bit.org>
parents:
14599
diff
changeset
|
2068 dict_add_number(d, "dirty", b0.b0_dirty ? 1 : 0); |
d0ff19a55579
patch 8.1.0314: build failure without the +eval feature
Christian Brabandt <cb@256bit.org>
parents:
14599
diff
changeset
|
2069 # ifdef CHECK_INODE |
14599
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2070 dict_add_number(d, "inode", char_to_long(b0.b0_ino)); |
14601
d0ff19a55579
patch 8.1.0314: build failure without the +eval feature
Christian Brabandt <cb@256bit.org>
parents:
14599
diff
changeset
|
2071 # endif |
14599
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2072 } |
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2073 } |
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2074 else |
15267
762fccd84b7c
patch 8.1.0642: swapinfo() leaks memory
Bram Moolenaar <Bram@vim.org>
parents:
15255
diff
changeset
|
2075 dict_add_string(d, "error", (char_u *)"Cannot read file"); |
14599
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2076 close(fd); |
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2077 } |
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2078 else |
15267
762fccd84b7c
patch 8.1.0642: swapinfo() leaks memory
Bram Moolenaar <Bram@vim.org>
parents:
15255
diff
changeset
|
2079 dict_add_string(d, "error", (char_u *)"Cannot open file"); |
14599
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2080 } |
14601
d0ff19a55579
patch 8.1.0314: build failure without the +eval feature
Christian Brabandt <cb@256bit.org>
parents:
14599
diff
changeset
|
2081 #endif |
14599
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2082 |
72d6f6f7ead7
patch 8.1.0313: information about a swap file is unavailable
Christian Brabandt <cb@256bit.org>
parents:
14593
diff
changeset
|
2083 /* |
17135
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2084 * Cache of the current timezone name as retrieved from TZ, or an empty string |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2085 * where unset, up to 64 octets long including trailing null byte. |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2086 */ |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2087 #if defined(HAVE_LOCALTIME_R) && defined(HAVE_TZSET) |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2088 static char tz_cache[64]; |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2089 #endif |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2090 |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2091 /* |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2092 * Call either localtime(3) or localtime_r(3) from POSIX libc time.h, with the |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2093 * latter version preferred for reentrancy. |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2094 * |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2095 * If we use localtime_r(3) and we have tzset(3) available, check to see if the |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2096 * environment variable TZ has changed since the last run, and call tzset(3) to |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2097 * update the global timezone variables if it has. This is because the POSIX |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2098 * standard doesn't require localtime_r(3) implementations to do that as it |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2099 * does with localtime(3), and we don't want to call tzset(3) every time. |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2100 */ |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2101 struct tm * |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2102 vim_localtime( |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2103 const time_t *timep, // timestamp for local representation |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2104 struct tm *result) // pointer to caller return buffer |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2105 { |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2106 #ifdef HAVE_LOCALTIME_R |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2107 # ifdef HAVE_TZSET |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2108 char *tz; // pointer for TZ environment var |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2109 |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2110 tz = (char *)mch_getenv((char_u *)"TZ"); |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2111 if (tz == NULL) |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2112 tz = ""; |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2113 if (STRNCMP(tz_cache, tz, sizeof(tz_cache) - 1) != 0) |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2114 { |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2115 tzset(); |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2116 vim_strncpy((char_u *)tz_cache, (char_u *)tz, sizeof(tz_cache) - 1); |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2117 } |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2118 # endif // HAVE_TZSET |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2119 return localtime_r(timep, result); |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2120 #else |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2121 return localtime(timep); |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2122 #endif // HAVE_LOCALTIME_R |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2123 } |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2124 |
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2125 /* |
16621
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2126 * Replacement for ctime(), which is not safe to use. |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2127 * Requires strftime(), otherwise returns "(unknown)". |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2128 * If "thetime" is invalid returns "(invalid)". Never returns NULL. |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2129 * When "add_newline" is TRUE add a newline like ctime() does. |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2130 * Uses a static buffer. |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2131 */ |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2132 char * |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2133 get_ctime(time_t thetime, int add_newline) |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2134 { |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2135 static char buf[50]; |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2136 #ifdef HAVE_STRFTIME |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2137 struct tm tmval; |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2138 struct tm *curtime; |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2139 |
17135
d03a52e02f1a
patch 8.1.1567: localtime_r() does not respond to $TZ changes
Bram Moolenaar <Bram@vim.org>
parents:
16996
diff
changeset
|
2140 curtime = vim_localtime(&thetime, &tmval); |
16621
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2141 /* MSVC returns NULL for an invalid value of seconds. */ |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2142 if (curtime == NULL) |
16684
1c2d9f67d98f
patch 8.1.1344: Coverity complains about possibly using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents:
16666
diff
changeset
|
2143 vim_strncpy((char_u *)buf, (char_u *)_("(Invalid)"), sizeof(buf) - 1); |
16621
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2144 else |
17454
37afc0146eab
patch 8.1.1725: MS-Windows: E325 message may use incorrect date format
Bram Moolenaar <Bram@vim.org>
parents:
17425
diff
changeset
|
2145 { |
37afc0146eab
patch 8.1.1725: MS-Windows: E325 message may use incorrect date format
Bram Moolenaar <Bram@vim.org>
parents:
17425
diff
changeset
|
2146 (void)strftime(buf, sizeof(buf) - 1, _("%a %b %d %H:%M:%S %Y"), |
37afc0146eab
patch 8.1.1725: MS-Windows: E325 message may use incorrect date format
Bram Moolenaar <Bram@vim.org>
parents:
17425
diff
changeset
|
2147 curtime); |
37afc0146eab
patch 8.1.1725: MS-Windows: E325 message may use incorrect date format
Bram Moolenaar <Bram@vim.org>
parents:
17425
diff
changeset
|
2148 # ifdef MSWIN |
37afc0146eab
patch 8.1.1725: MS-Windows: E325 message may use incorrect date format
Bram Moolenaar <Bram@vim.org>
parents:
17425
diff
changeset
|
2149 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage) |
37afc0146eab
patch 8.1.1725: MS-Windows: E325 message may use incorrect date format
Bram Moolenaar <Bram@vim.org>
parents:
17425
diff
changeset
|
2150 { |
37afc0146eab
patch 8.1.1725: MS-Windows: E325 message may use incorrect date format
Bram Moolenaar <Bram@vim.org>
parents:
17425
diff
changeset
|
2151 char_u *to_free = NULL; |
37afc0146eab
patch 8.1.1725: MS-Windows: E325 message may use incorrect date format
Bram Moolenaar <Bram@vim.org>
parents:
17425
diff
changeset
|
2152 int len; |
37afc0146eab
patch 8.1.1725: MS-Windows: E325 message may use incorrect date format
Bram Moolenaar <Bram@vim.org>
parents:
17425
diff
changeset
|
2153 |
37afc0146eab
patch 8.1.1725: MS-Windows: E325 message may use incorrect date format
Bram Moolenaar <Bram@vim.org>
parents:
17425
diff
changeset
|
2154 acp_to_enc((char_u *)buf, (int)strlen(buf), &to_free, &len); |
37afc0146eab
patch 8.1.1725: MS-Windows: E325 message may use incorrect date format
Bram Moolenaar <Bram@vim.org>
parents:
17425
diff
changeset
|
2155 if (to_free != NULL) |
37afc0146eab
patch 8.1.1725: MS-Windows: E325 message may use incorrect date format
Bram Moolenaar <Bram@vim.org>
parents:
17425
diff
changeset
|
2156 { |
37afc0146eab
patch 8.1.1725: MS-Windows: E325 message may use incorrect date format
Bram Moolenaar <Bram@vim.org>
parents:
17425
diff
changeset
|
2157 STRCPY(buf, to_free); |
37afc0146eab
patch 8.1.1725: MS-Windows: E325 message may use incorrect date format
Bram Moolenaar <Bram@vim.org>
parents:
17425
diff
changeset
|
2158 vim_free(to_free); |
37afc0146eab
patch 8.1.1725: MS-Windows: E325 message may use incorrect date format
Bram Moolenaar <Bram@vim.org>
parents:
17425
diff
changeset
|
2159 } |
37afc0146eab
patch 8.1.1725: MS-Windows: E325 message may use incorrect date format
Bram Moolenaar <Bram@vim.org>
parents:
17425
diff
changeset
|
2160 } |
37afc0146eab
patch 8.1.1725: MS-Windows: E325 message may use incorrect date format
Bram Moolenaar <Bram@vim.org>
parents:
17425
diff
changeset
|
2161 # endif |
37afc0146eab
patch 8.1.1725: MS-Windows: E325 message may use incorrect date format
Bram Moolenaar <Bram@vim.org>
parents:
17425
diff
changeset
|
2162 } |
16621
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2163 #else |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2164 STRCPY(buf, "(unknown)"); |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2165 #endif |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2166 if (add_newline) |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2167 STRCAT(buf, "\n"); |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2168 return buf; |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2169 } |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2170 |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2171 /* |
580 | 2172 * Give information about an existing swap file. |
7 | 2173 * Returns timestamp (0 when unknown). |
2174 */ | |
2175 static time_t | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2176 swapfile_info(char_u *fname) |
7 | 2177 { |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9295
diff
changeset
|
2178 stat_T st; |
7 | 2179 int fd; |
2180 struct block0 b0; | |
2181 #ifdef UNIX | |
2182 char_u uname[B0_UNAME_SIZE]; | |
2183 #endif | |
2184 | |
16621
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2185 // print the swap file date |
7 | 2186 if (mch_stat((char *)fname, &st) != -1) |
2187 { | |
2188 #ifdef UNIX | |
16621
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2189 // print name of owner of the file |
7 | 2190 if (mch_get_uname(st.st_uid, uname, B0_UNAME_SIZE) == OK) |
2191 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2192 msg_puts(_(" owned by: ")); |
7 | 2193 msg_outtrans(uname); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2194 msg_puts(_(" dated: ")); |
7 | 2195 } |
2196 else | |
2197 #endif | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2198 msg_puts(_(" dated: ")); |
16621
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2199 msg_puts(get_ctime(st.st_mtime, TRUE)); |
7 | 2200 } |
16621
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2201 else |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2202 st.st_mtime = 0; |
7 | 2203 |
2204 /* | |
2205 * print the original file name | |
2206 */ | |
2207 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0); | |
2208 if (fd >= 0) | |
2209 { | |
2664 | 2210 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0)) |
7 | 2211 { |
2212 if (STRNCMP(b0.b0_version, "VIM 3.0", 7) == 0) | |
2213 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2214 msg_puts(_(" [from Vim version 3.0]")); |
7 | 2215 } |
2267 | 2216 else if (ml_check_b0_id(&b0) == FAIL) |
7 | 2217 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2218 msg_puts(_(" [does not look like a Vim swap file]")); |
7 | 2219 } |
2220 else | |
2221 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2222 msg_puts(_(" file name: ")); |
7 | 2223 if (b0.b0_fname[0] == NUL) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2224 msg_puts(_("[No Name]")); |
7 | 2225 else |
2226 msg_outtrans(b0.b0_fname); | |
2227 | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2228 msg_puts(_("\n modified: ")); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2229 msg_puts(b0.b0_dirty ? _("YES") : _("no")); |
7 | 2230 |
2231 if (*(b0.b0_uname) != NUL) | |
2232 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2233 msg_puts(_("\n user name: ")); |
7 | 2234 msg_outtrans(b0.b0_uname); |
2235 } | |
2236 | |
2237 if (*(b0.b0_hname) != NUL) | |
2238 { | |
2239 if (*(b0.b0_uname) != NUL) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2240 msg_puts(_(" host name: ")); |
7 | 2241 else |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2242 msg_puts(_("\n host name: ")); |
7 | 2243 msg_outtrans(b0.b0_hname); |
2244 } | |
2245 | |
2246 if (char_to_long(b0.b0_pid) != 0L) | |
2247 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2248 msg_puts(_("\n process ID: ")); |
7 | 2249 msg_outnum(char_to_long(b0.b0_pid)); |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2250 #if defined(UNIX) || defined(MSWIN) |
16455
1ae13586edf8
patch 8.1.1232: can't build on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
2251 if (mch_process_running(char_to_long(b0.b0_pid))) |
7 | 2252 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2253 msg_puts(_(" (STILL RUNNING)")); |
16455
1ae13586edf8
patch 8.1.1232: can't build on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
2254 # ifdef HAVE_PROCESS_STILL_RUNNING |
7 | 2255 process_still_running = TRUE; |
2256 # endif | |
2257 } | |
2258 #endif | |
2259 } | |
2260 | |
2261 if (b0_magic_wrong(&b0)) | |
2262 { | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
7961
diff
changeset
|
2263 #if defined(MSWIN) |
7 | 2264 if (STRNCMP(b0.b0_hname, "PC ", 3) == 0) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2265 msg_puts(_("\n [not usable with this version of Vim]")); |
7 | 2266 else |
2267 #endif | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2268 msg_puts(_("\n [not usable on this computer]")); |
7 | 2269 } |
2270 } | |
2271 } | |
2272 else | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2273 msg_puts(_(" [cannot be read]")); |
7 | 2274 close(fd); |
2275 } | |
2276 else | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2277 msg_puts(_(" [cannot be opened]")); |
7 | 2278 msg_putchar('\n'); |
2279 | |
16621
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
2280 return st.st_mtime; |
7 | 2281 } |
2282 | |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2283 /* |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2284 * Return TRUE if the swap file looks OK and there are no changes, thus it can |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2285 * be safely deleted. |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2286 */ |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2287 static time_t |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2288 swapfile_unchanged(char_u *fname) |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2289 { |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2290 stat_T st; |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2291 int fd; |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2292 struct block0 b0; |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2293 int ret = TRUE; |
16455
1ae13586edf8
patch 8.1.1232: can't build on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
2294 #if defined(UNIX) || defined(MSWIN) |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2295 long pid; |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2296 #endif |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2297 |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2298 // must be able to stat the swap file |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2299 if (mch_stat((char *)fname, &st) == -1) |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2300 return FALSE; |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2301 |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2302 // must be able to read the first block |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2303 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0); |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2304 if (fd < 0) |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2305 return FALSE; |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2306 if (read_eintr(fd, &b0, sizeof(b0)) != sizeof(b0)) |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2307 { |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2308 close(fd); |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2309 return FALSE; |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2310 } |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2311 |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2312 // the ID and magic number must be correct |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2313 if (ml_check_b0_id(&b0) == FAIL|| b0_magic_wrong(&b0)) |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2314 ret = FALSE; |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2315 |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2316 // must be unchanged |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2317 if (b0.b0_dirty) |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2318 ret = FALSE; |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2319 |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2320 #if defined(UNIX) || defined(MSWIN) |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2321 // process must known and not be running |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2322 pid = char_to_long(b0.b0_pid); |
16455
1ae13586edf8
patch 8.1.1232: can't build on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
2323 if (pid == 0L || mch_process_running(pid)) |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2324 ret = FALSE; |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2325 #endif |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2326 |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2327 // TODO: Should we check if the swap file was created on the current |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2328 // system? And the current user? |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2329 |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2330 close(fd); |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2331 return ret; |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2332 } |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
2333 |
7 | 2334 static int |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2335 recov_file_names(char_u **names, char_u *path, int prepend_dot) |
7 | 2336 { |
2337 int num_names; | |
2338 | |
2339 /* | |
2340 * (Win32 and Win64) never short names, but do prepend a dot. | |
2341 * (Not MS-DOS or Win32 or Win64) maybe short name, maybe not: Try both. | |
2342 * Only use the short name if it is different. | |
2343 */ | |
2344 char_u *p; | |
2345 int i; | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2346 # ifndef MSWIN |
7 | 2347 int shortname = curbuf->b_shortname; |
2348 | |
2349 curbuf->b_shortname = FALSE; | |
2350 # endif | |
2351 | |
2352 num_names = 0; | |
2353 | |
2354 /* | |
2355 * May also add the file name with a dot prepended, for swap file in same | |
2356 * dir as original file. | |
2357 */ | |
2358 if (prepend_dot) | |
2359 { | |
2360 names[num_names] = modname(path, (char_u *)".sw?", TRUE); | |
2361 if (names[num_names] == NULL) | |
2362 goto end; | |
2363 ++num_names; | |
2364 } | |
2365 | |
2366 /* | |
2367 * Form the normal swap file name pattern by appending ".sw?". | |
2368 */ | |
2369 #ifdef VMS | |
2370 names[num_names] = concat_fnames(path, (char_u *)"_sw%", FALSE); | |
2371 #else | |
2372 names[num_names] = concat_fnames(path, (char_u *)".sw?", FALSE); | |
2373 #endif | |
2374 if (names[num_names] == NULL) | |
2375 goto end; | |
2376 if (num_names >= 1) /* check if we have the same name twice */ | |
2377 { | |
2378 p = names[num_names - 1]; | |
2379 i = (int)STRLEN(names[num_names - 1]) - (int)STRLEN(names[num_names]); | |
2380 if (i > 0) | |
2381 p += i; /* file name has been expanded to full path */ | |
2382 | |
2383 if (STRCMP(p, names[num_names]) != 0) | |
2384 ++num_names; | |
2385 else | |
2386 vim_free(names[num_names]); | |
2387 } | |
2388 else | |
2389 ++num_names; | |
2390 | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2391 # ifndef MSWIN |
7 | 2392 /* |
2393 * Also try with 'shortname' set, in case the file is on a DOS filesystem. | |
2394 */ | |
2395 curbuf->b_shortname = TRUE; | |
2396 #ifdef VMS | |
2397 names[num_names] = modname(path, (char_u *)"_sw%", FALSE); | |
2398 #else | |
2399 names[num_names] = modname(path, (char_u *)".sw?", FALSE); | |
2400 #endif | |
2401 if (names[num_names] == NULL) | |
2402 goto end; | |
2403 | |
2404 /* | |
2405 * Remove the one from 'shortname', if it's the same as with 'noshortname'. | |
2406 */ | |
2407 p = names[num_names]; | |
2408 i = STRLEN(names[num_names]) - STRLEN(names[num_names - 1]); | |
2409 if (i > 0) | |
2410 p += i; /* file name has been expanded to full path */ | |
2411 if (STRCMP(names[num_names - 1], p) == 0) | |
2412 vim_free(names[num_names]); | |
2413 else | |
2414 ++num_names; | |
2415 # endif | |
2416 | |
2417 end: | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
2418 # ifndef MSWIN |
7 | 2419 curbuf->b_shortname = shortname; |
2420 # endif | |
2421 | |
2422 return num_names; | |
2423 } | |
2424 | |
2425 /* | |
2426 * sync all memlines | |
2427 * | |
2428 * If 'check_file' is TRUE, check if original file exists and was not changed. | |
2429 * If 'check_char' is TRUE, stop syncing when character becomes available, but | |
2430 * always sync at least one block. | |
2431 */ | |
2432 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2433 ml_sync_all(int check_file, int check_char) |
7 | 2434 { |
2435 buf_T *buf; | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9295
diff
changeset
|
2436 stat_T st; |
7 | 2437 |
9649
fd9727ae3c49
commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
2438 FOR_ALL_BUFFERS(buf) |
7 | 2439 { |
2440 if (buf->b_ml.ml_mfp == NULL || buf->b_ml.ml_mfp->mf_fname == NULL) | |
2441 continue; /* no file */ | |
2442 | |
2443 ml_flush_line(buf); /* flush buffered line */ | |
2444 /* flush locked block */ | |
2445 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); | |
2446 if (bufIsChanged(buf) && check_file && mf_need_trans(buf->b_ml.ml_mfp) | |
2447 && buf->b_ffname != NULL) | |
2448 { | |
2449 /* | |
2450 * If the original file does not exist anymore or has been changed | |
2451 * call ml_preserve() to get rid of all negative numbered blocks. | |
2452 */ | |
2453 if (mch_stat((char *)buf->b_ffname, &st) == -1 | |
2454 || st.st_mtime != buf->b_mtime_read | |
2241
60da25e3aab7
Correct use of long instead of off_t for file size. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2240
diff
changeset
|
2455 || st.st_size != buf->b_orig_size) |
7 | 2456 { |
2457 ml_preserve(buf, FALSE); | |
2458 did_check_timestamps = FALSE; | |
2459 need_check_timestamps = TRUE; /* give message later */ | |
2460 } | |
2461 } | |
2462 if (buf->b_ml.ml_mfp->mf_dirty) | |
2463 { | |
2464 (void)mf_sync(buf->b_ml.ml_mfp, (check_char ? MFS_STOP : 0) | |
2465 | (bufIsChanged(buf) ? MFS_FLUSH : 0)); | |
2466 if (check_char && ui_char_avail()) /* character available now */ | |
2467 break; | |
2468 } | |
2469 } | |
2470 } | |
2471 | |
2472 /* | |
2473 * sync one buffer, including negative blocks | |
2474 * | |
2475 * after this all the blocks are in the swap file | |
2476 * | |
2477 * Used for the :preserve command and when the original file has been | |
2478 * changed or deleted. | |
2479 * | |
2480 * when message is TRUE the success of preserving is reported | |
2481 */ | |
2482 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2483 ml_preserve(buf_T *buf, int message) |
7 | 2484 { |
2485 bhdr_T *hp; | |
2486 linenr_T lnum; | |
2487 memfile_T *mfp = buf->b_ml.ml_mfp; | |
2488 int status; | |
2489 int got_int_save = got_int; | |
2490 | |
2491 if (mfp == NULL || mfp->mf_fname == NULL) | |
2492 { | |
2493 if (message) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
2494 emsg(_("E313: Cannot preserve, there is no swap file")); |
7 | 2495 return; |
2496 } | |
2497 | |
2498 /* We only want to stop when interrupted here, not when interrupted | |
2499 * before. */ | |
2500 got_int = FALSE; | |
2501 | |
2502 ml_flush_line(buf); /* flush buffered line */ | |
2503 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); /* flush locked block */ | |
2504 status = mf_sync(mfp, MFS_ALL | MFS_FLUSH); | |
2505 | |
2506 /* stack is invalid after mf_sync(.., MFS_ALL) */ | |
2507 buf->b_ml.ml_stack_top = 0; | |
2508 | |
2509 /* | |
2510 * Some of the data blocks may have been changed from negative to | |
2511 * positive block number. In that case the pointer blocks need to be | |
2512 * updated. | |
2513 * | |
2514 * We don't know in which pointer block the references are, so we visit | |
2515 * all data blocks until there are no more translations to be done (or | |
2516 * we hit the end of the file, which can only happen in case a write fails, | |
2517 * e.g. when file system if full). | |
2518 * ml_find_line() does the work by translating the negative block numbers | |
2519 * when getting the first line of each data block. | |
2520 */ | |
2521 if (mf_need_trans(mfp) && !got_int) | |
2522 { | |
2523 lnum = 1; | |
2524 while (mf_need_trans(mfp) && lnum <= buf->b_ml.ml_line_count) | |
2525 { | |
2526 hp = ml_find_line(buf, lnum, ML_FIND); | |
2527 if (hp == NULL) | |
2528 { | |
2529 status = FAIL; | |
2530 goto theend; | |
2531 } | |
2532 CHECK(buf->b_ml.ml_locked_low != lnum, "low != lnum"); | |
2533 lnum = buf->b_ml.ml_locked_high + 1; | |
2534 } | |
2535 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); /* flush locked block */ | |
2536 /* sync the updated pointer blocks */ | |
2537 if (mf_sync(mfp, MFS_ALL | MFS_FLUSH) == FAIL) | |
2538 status = FAIL; | |
2539 buf->b_ml.ml_stack_top = 0; /* stack is invalid now */ | |
2540 } | |
2541 theend: | |
2542 got_int |= got_int_save; | |
2543 | |
2544 if (message) | |
2545 { | |
2546 if (status == OK) | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2547 msg(_("File preserved")); |
7 | 2548 else |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
2549 emsg(_("E314: Preserve failed")); |
7 | 2550 } |
2551 } | |
2552 | |
2553 /* | |
2554 * NOTE: The pointer returned by the ml_get_*() functions only remains valid | |
2555 * until the next call! | |
2556 * line1 = ml_get(1); | |
2557 * line2 = ml_get(2); // line1 is now invalid! | |
2558 * Make a copy of the line if necessary. | |
2559 */ | |
2560 /* | |
2657 | 2561 * Return a pointer to a (read-only copy of a) line. |
7 | 2562 * |
2563 * On failure an error message is given and IObuff is returned (to avoid | |
2564 * having to check for error everywhere). | |
2565 */ | |
2566 char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2567 ml_get(linenr_T lnum) |
7 | 2568 { |
2569 return ml_get_buf(curbuf, lnum, FALSE); | |
2570 } | |
2571 | |
2572 /* | |
2657 | 2573 * Return pointer to position "pos". |
7 | 2574 */ |
2575 char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2576 ml_get_pos(pos_T *pos) |
7 | 2577 { |
2578 return (ml_get_buf(curbuf, pos->lnum, FALSE) + pos->col); | |
2579 } | |
2580 | |
2581 /* | |
2657 | 2582 * Return pointer to cursor line. |
7 | 2583 */ |
2584 char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2585 ml_get_curline(void) |
7 | 2586 { |
2587 return ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE); | |
2588 } | |
2589 | |
2590 /* | |
2657 | 2591 * Return pointer to cursor position. |
7 | 2592 */ |
2593 char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2594 ml_get_cursor(void) |
7 | 2595 { |
2596 return (ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE) + | |
2597 curwin->w_cursor.col); | |
2598 } | |
2599 | |
2600 /* | |
2657 | 2601 * Return a pointer to a line in a specific buffer |
7 | 2602 * |
2603 * "will_change": if TRUE mark the buffer dirty (chars in the line will be | |
2604 * changed) | |
2605 */ | |
2606 char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2607 ml_get_buf( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2608 buf_T *buf, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2609 linenr_T lnum, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2610 int will_change) /* line will be changed */ |
7 | 2611 { |
1068 | 2612 bhdr_T *hp; |
2613 DATA_BL *dp; | |
2614 static int recursive = 0; | |
7 | 2615 |
2616 if (lnum > buf->b_ml.ml_line_count) /* invalid line number */ | |
2617 { | |
1068 | 2618 if (recursive == 0) |
2619 { | |
2620 /* Avoid giving this message for a recursive call, may happen when | |
2621 * the GUI redraws part of the text. */ | |
2622 ++recursive; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
2623 siemsg(_("E315: ml_get: invalid lnum: %ld"), lnum); |
1068 | 2624 --recursive; |
2625 } | |
7 | 2626 errorret: |
2627 STRCPY(IObuff, "???"); | |
16786
98ca522e6453
patch 8.1.1395: saving for undo may access invalid memory
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
2628 buf->b_ml.ml_line_len = 4; |
7 | 2629 return IObuff; |
2630 } | |
16786
98ca522e6453
patch 8.1.1395: saving for undo may access invalid memory
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
2631 if (lnum <= 0) // pretend line 0 is line 1 |
7 | 2632 lnum = 1; |
2633 | |
16786
98ca522e6453
patch 8.1.1395: saving for undo may access invalid memory
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
2634 if (buf->b_ml.ml_mfp == NULL) // there are no lines |
98ca522e6453
patch 8.1.1395: saving for undo may access invalid memory
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
2635 { |
98ca522e6453
patch 8.1.1395: saving for undo may access invalid memory
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
2636 buf->b_ml.ml_line_len = 1; |
7 | 2637 return (char_u *)""; |
16786
98ca522e6453
patch 8.1.1395: saving for undo may access invalid memory
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
2638 } |
7 | 2639 |
2108
3cdf2a653e00
updated for version 7.2.391
Bram Moolenaar <bram@zimbu.org>
parents:
2075
diff
changeset
|
2640 /* |
3cdf2a653e00
updated for version 7.2.391
Bram Moolenaar <bram@zimbu.org>
parents:
2075
diff
changeset
|
2641 * See if it is the same line as requested last time. |
3cdf2a653e00
updated for version 7.2.391
Bram Moolenaar <bram@zimbu.org>
parents:
2075
diff
changeset
|
2642 * Otherwise may need to flush last used line. |
3cdf2a653e00
updated for version 7.2.391
Bram Moolenaar <bram@zimbu.org>
parents:
2075
diff
changeset
|
2643 * Don't use the last used line when 'swapfile' is reset, need to load all |
3cdf2a653e00
updated for version 7.2.391
Bram Moolenaar <bram@zimbu.org>
parents:
2075
diff
changeset
|
2644 * blocks. |
3cdf2a653e00
updated for version 7.2.391
Bram Moolenaar <bram@zimbu.org>
parents:
2075
diff
changeset
|
2645 */ |
1066 | 2646 if (buf->b_ml.ml_line_lnum != lnum || mf_dont_release) |
7 | 2647 { |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2648 unsigned start, end; |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2649 colnr_T len; |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2650 int idx; |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2651 |
7 | 2652 ml_flush_line(buf); |
2653 | |
2654 /* | |
2655 * Find the data block containing the line. | |
2656 * This also fills the stack with the blocks from the root to the data | |
2657 * block and releases any locked block. | |
2658 */ | |
2659 if ((hp = ml_find_line(buf, lnum, ML_FIND)) == NULL) | |
2660 { | |
1068 | 2661 if (recursive == 0) |
2662 { | |
2663 /* Avoid giving this message for a recursive call, may happen | |
2664 * when the GUI redraws part of the text. */ | |
2665 ++recursive; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
2666 siemsg(_("E316: ml_get: cannot find line %ld"), lnum); |
1068 | 2667 --recursive; |
2668 } | |
7 | 2669 goto errorret; |
2670 } | |
2671 | |
2672 dp = (DATA_BL *)(hp->bh_data); | |
2673 | |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2674 idx = lnum - buf->b_ml.ml_locked_low; |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2675 start = ((dp->db_index[idx]) & DB_INDEX_MASK); |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2676 // The text ends where the previous line starts. The first line ends |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2677 // at the end of the block. |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2678 if (idx == 0) |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2679 end = dp->db_txt_end; |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2680 else |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2681 end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK); |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2682 len = end - start; |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2683 |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2684 buf->b_ml.ml_line_ptr = (char_u *)dp + start; |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2685 buf->b_ml.ml_line_len = len; |
7 | 2686 buf->b_ml.ml_line_lnum = lnum; |
2687 buf->b_ml.ml_flags &= ~ML_LINE_DIRTY; | |
2688 } | |
2689 if (will_change) | |
2690 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS); | |
2691 | |
2692 return buf->b_ml.ml_line_ptr; | |
2693 } | |
2694 | |
2695 /* | |
2696 * Check if a line that was just obtained by a call to ml_get | |
2697 * is in allocated memory. | |
2698 */ | |
2699 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2700 ml_line_alloced(void) |
7 | 2701 { |
2702 return (curbuf->b_ml.ml_flags & ML_LINE_DIRTY); | |
2703 } | |
2704 | |
15294
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2705 #ifdef FEAT_TEXT_PROP |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2706 static void |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2707 add_text_props_for_append( |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2708 buf_T *buf, |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2709 linenr_T lnum, |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2710 char_u **line, |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2711 int *len, |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2712 char_u **tofree) |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2713 { |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2714 int round; |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2715 int new_prop_count = 0; |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2716 int count; |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2717 int n; |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2718 char_u *props; |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2719 int new_len; |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2720 char_u *new_line; |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2721 textprop_T prop; |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2722 |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2723 // Make two rounds: |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2724 // 1. calculate the extra space needed |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2725 // 2. allocate the space and fill it |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2726 for (round = 1; round <= 2; ++round) |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2727 { |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2728 if (round == 2) |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2729 { |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2730 if (new_prop_count == 0) |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2731 return; // nothing to do |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2732 new_len = *len + new_prop_count * sizeof(textprop_T); |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
2733 new_line = alloc(new_len); |
15294
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2734 if (new_line == NULL) |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2735 return; |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2736 mch_memmove(new_line, *line, *len); |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2737 new_prop_count = 0; |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2738 } |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2739 |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2740 // Get the line above to find any props that continue in the next |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2741 // line. |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2742 count = get_text_props(buf, lnum, &props, FALSE); |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2743 for (n = 0; n < count; ++n) |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2744 { |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2745 mch_memmove(&prop, props + n * sizeof(textprop_T), sizeof(textprop_T)); |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2746 if (prop.tp_flags & TP_FLAG_CONT_NEXT) |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2747 { |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2748 if (round == 2) |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2749 { |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2750 prop.tp_flags |= TP_FLAG_CONT_PREV; |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2751 prop.tp_col = 1; |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2752 prop.tp_len = *len; |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2753 mch_memmove(new_line + *len + new_prop_count * sizeof(textprop_T), &prop, sizeof(textprop_T)); |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2754 } |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2755 ++new_prop_count; |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2756 } |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2757 } |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2758 } |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2759 *line = new_line; |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2760 *tofree = new_line; |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2761 *len = new_len; |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2762 } |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2763 #endif |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2764 |
7 | 2765 static int |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2766 ml_append_int( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
2767 buf_T *buf, |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2768 linenr_T lnum, // append after this line (can be 0) |
15294
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2769 char_u *line_arg, // text of the new line |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2770 colnr_T len_arg, // length of line, including NUL, or 0 |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2771 int newfile, // flag, see above |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2772 int mark) // mark the new line |
7 | 2773 { |
15294
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2774 char_u *line = line_arg; |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2775 colnr_T len = len_arg; |
7 | 2776 int i; |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2777 int line_count; // number of indexes in current block |
7 | 2778 int offset; |
2779 int from, to; | |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2780 int space_needed; // space needed for new line |
7 | 2781 int page_size; |
2782 int page_count; | |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2783 int db_idx; // index for lnum in data block |
7 | 2784 bhdr_T *hp; |
2785 memfile_T *mfp; | |
2786 DATA_BL *dp; | |
2787 PTR_BL *pp; | |
2788 infoptr_T *ip; | |
15294
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2789 #ifdef FEAT_TEXT_PROP |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2790 char_u *tofree = NULL; |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2791 #endif |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2792 int ret = FAIL; |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2793 |
7 | 2794 if (lnum > buf->b_ml.ml_line_count || buf->b_ml.ml_mfp == NULL) |
15294
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2795 return FAIL; // lnum out of range |
7 | 2796 |
2797 if (lowest_marked && lowest_marked > lnum) | |
2798 lowest_marked = lnum + 1; | |
2799 | |
2800 if (len == 0) | |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2801 len = (colnr_T)STRLEN(line) + 1; // space needed for the text |
15294
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2802 |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2803 #ifdef FEAT_TEXT_PROP |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2804 if (curbuf->b_has_textprop && lnum > 0) |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2805 // Add text properties that continue from the previous line. |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2806 add_text_props_for_append(buf, lnum, &line, &len, &tofree); |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2807 #endif |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2808 |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2809 space_needed = len + INDEX_SIZE; // space needed for text + index |
7 | 2810 |
2811 mfp = buf->b_ml.ml_mfp; | |
2812 page_size = mfp->mf_page_size; | |
2813 | |
2814 /* | |
2815 * find the data block containing the previous line | |
2816 * This also fills the stack with the blocks from the root to the data block | |
2817 * This also releases any locked block. | |
2818 */ | |
2819 if ((hp = ml_find_line(buf, lnum == 0 ? (linenr_T)1 : lnum, | |
2820 ML_INSERT)) == NULL) | |
15294
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2821 goto theend; |
7 | 2822 |
2823 buf->b_ml.ml_flags &= ~ML_EMPTY; | |
2824 | |
2825 if (lnum == 0) /* got line one instead, correct db_idx */ | |
2826 db_idx = -1; /* careful, it is negative! */ | |
2827 else | |
2828 db_idx = lnum - buf->b_ml.ml_locked_low; | |
2829 /* get line count before the insertion */ | |
2830 line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low; | |
2831 | |
2832 dp = (DATA_BL *)(hp->bh_data); | |
2833 | |
2834 /* | |
2835 * If | |
2836 * - there is not enough room in the current block | |
2837 * - appending to the last line in the block | |
2838 * - not appending to the last line in the file | |
2839 * insert in front of the next block. | |
2840 */ | |
2841 if ((int)dp->db_free < space_needed && db_idx == line_count - 1 | |
2842 && lnum < buf->b_ml.ml_line_count) | |
2843 { | |
2844 /* | |
2845 * Now that the line is not going to be inserted in the block that we | |
2846 * expected, the line count has to be adjusted in the pointer blocks | |
2847 * by using ml_locked_lineadd. | |
2848 */ | |
2849 --(buf->b_ml.ml_locked_lineadd); | |
2850 --(buf->b_ml.ml_locked_high); | |
2851 if ((hp = ml_find_line(buf, lnum + 1, ML_INSERT)) == NULL) | |
15294
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2852 goto theend; |
7 | 2853 |
2854 db_idx = -1; /* careful, it is negative! */ | |
2855 /* get line count before the insertion */ | |
2856 line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low; | |
2857 CHECK(buf->b_ml.ml_locked_low != lnum + 1, "locked_low != lnum + 1"); | |
2858 | |
2859 dp = (DATA_BL *)(hp->bh_data); | |
2860 } | |
2861 | |
2862 ++buf->b_ml.ml_line_count; | |
2863 | |
2864 if ((int)dp->db_free >= space_needed) /* enough room in data block */ | |
2865 { | |
15294
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2866 /* |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2867 * Insert the new line in an existing data block, or in the data block |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2868 * allocated above. |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2869 */ |
7 | 2870 dp->db_txt_start -= len; |
2871 dp->db_free -= space_needed; | |
2872 ++(dp->db_line_count); | |
2873 | |
2874 /* | |
2875 * move the text of the lines that follow to the front | |
2876 * adjust the indexes of the lines that follow | |
2877 */ | |
2878 if (line_count > db_idx + 1) /* if there are following lines */ | |
2879 { | |
2880 /* | |
2881 * Offset is the start of the previous line. | |
2882 * This will become the character just after the new line. | |
2883 */ | |
2884 if (db_idx < 0) | |
2885 offset = dp->db_txt_end; | |
2886 else | |
2887 offset = ((dp->db_index[db_idx]) & DB_INDEX_MASK); | |
2888 mch_memmove((char *)dp + dp->db_txt_start, | |
2889 (char *)dp + dp->db_txt_start + len, | |
2890 (size_t)(offset - (dp->db_txt_start + len))); | |
2891 for (i = line_count - 1; i > db_idx; --i) | |
2892 dp->db_index[i + 1] = dp->db_index[i] - len; | |
2893 dp->db_index[db_idx + 1] = offset - len; | |
2894 } | |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2895 else |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
2896 // add line at the end (which is the start of the text) |
7 | 2897 dp->db_index[db_idx + 1] = dp->db_txt_start; |
2898 | |
2899 /* | |
2900 * copy the text into the block | |
2901 */ | |
2902 mch_memmove((char *)dp + dp->db_index[db_idx + 1], line, (size_t)len); | |
2903 if (mark) | |
2904 dp->db_index[db_idx + 1] |= DB_MARKED; | |
2905 | |
2906 /* | |
2907 * Mark the block dirty. | |
2908 */ | |
2909 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY; | |
2910 if (!newfile) | |
2911 buf->b_ml.ml_flags |= ML_LOCKED_POS; | |
2912 } | |
2913 else /* not enough space in data block */ | |
2914 { | |
2915 long line_count_left, line_count_right; | |
2916 int page_count_left, page_count_right; | |
2917 bhdr_T *hp_left; | |
2918 bhdr_T *hp_right; | |
2919 bhdr_T *hp_new; | |
2920 int lines_moved; | |
2921 int data_moved = 0; /* init to shut up gcc */ | |
2922 int total_moved = 0; /* init to shut up gcc */ | |
2923 DATA_BL *dp_right, *dp_left; | |
2924 int stack_idx; | |
2925 int in_left; | |
2926 int lineadd; | |
2927 blocknr_T bnum_left, bnum_right; | |
2928 linenr_T lnum_left, lnum_right; | |
2929 int pb_idx; | |
2930 PTR_BL *pp_new; | |
2931 | |
2932 /* | |
15294
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2933 * There is not enough room, we have to create a new data block and |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2934 * copy some lines into it. |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2935 * Then we have to insert an entry in the pointer block. |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2936 * If this pointer block also is full, we go up another block, and so |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2937 * on, up to the root if necessary. |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2938 * The line counts in the pointer blocks have already been adjusted by |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2939 * ml_find_line(). |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2940 * |
7 | 2941 * We are going to allocate a new data block. Depending on the |
2942 * situation it will be put to the left or right of the existing | |
2943 * block. If possible we put the new line in the left block and move | |
2944 * the lines after it to the right block. Otherwise the new line is | |
2945 * also put in the right block. This method is more efficient when | |
2946 * inserting a lot of lines at one place. | |
2947 */ | |
2948 if (db_idx < 0) /* left block is new, right block is existing */ | |
2949 { | |
2950 lines_moved = 0; | |
2951 in_left = TRUE; | |
2952 /* space_needed does not change */ | |
2953 } | |
2954 else /* left block is existing, right block is new */ | |
2955 { | |
2956 lines_moved = line_count - db_idx - 1; | |
2957 if (lines_moved == 0) | |
2958 in_left = FALSE; /* put new line in right block */ | |
2959 /* space_needed does not change */ | |
2960 else | |
2961 { | |
2962 data_moved = ((dp->db_index[db_idx]) & DB_INDEX_MASK) - | |
2963 dp->db_txt_start; | |
2964 total_moved = data_moved + lines_moved * INDEX_SIZE; | |
2965 if ((int)dp->db_free + total_moved >= space_needed) | |
2966 { | |
2967 in_left = TRUE; /* put new line in left block */ | |
2968 space_needed = total_moved; | |
2969 } | |
2970 else | |
2971 { | |
2972 in_left = FALSE; /* put new line in right block */ | |
2973 space_needed += total_moved; | |
2974 } | |
2975 } | |
2976 } | |
2977 | |
2978 page_count = ((space_needed + HEADER_SIZE) + page_size - 1) / page_size; | |
2979 if ((hp_new = ml_new_data(mfp, newfile, page_count)) == NULL) | |
2980 { | |
2981 /* correct line counts in pointer blocks */ | |
2982 --(buf->b_ml.ml_locked_lineadd); | |
2983 --(buf->b_ml.ml_locked_high); | |
15294
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
2984 goto theend; |
7 | 2985 } |
2986 if (db_idx < 0) /* left block is new */ | |
2987 { | |
2988 hp_left = hp_new; | |
2989 hp_right = hp; | |
2990 line_count_left = 0; | |
2991 line_count_right = line_count; | |
2992 } | |
2993 else /* right block is new */ | |
2994 { | |
2995 hp_left = hp; | |
2996 hp_right = hp_new; | |
2997 line_count_left = line_count; | |
2998 line_count_right = 0; | |
2999 } | |
3000 dp_right = (DATA_BL *)(hp_right->bh_data); | |
3001 dp_left = (DATA_BL *)(hp_left->bh_data); | |
3002 bnum_left = hp_left->bh_bnum; | |
3003 bnum_right = hp_right->bh_bnum; | |
3004 page_count_left = hp_left->bh_page_count; | |
3005 page_count_right = hp_right->bh_page_count; | |
3006 | |
3007 /* | |
3008 * May move the new line into the right/new block. | |
3009 */ | |
3010 if (!in_left) | |
3011 { | |
3012 dp_right->db_txt_start -= len; | |
3013 dp_right->db_free -= len + INDEX_SIZE; | |
3014 dp_right->db_index[0] = dp_right->db_txt_start; | |
3015 if (mark) | |
3016 dp_right->db_index[0] |= DB_MARKED; | |
3017 | |
3018 mch_memmove((char *)dp_right + dp_right->db_txt_start, | |
3019 line, (size_t)len); | |
3020 ++line_count_right; | |
3021 } | |
3022 /* | |
3023 * may move lines from the left/old block to the right/new one. | |
3024 */ | |
3025 if (lines_moved) | |
3026 { | |
3027 /* | |
3028 */ | |
3029 dp_right->db_txt_start -= data_moved; | |
3030 dp_right->db_free -= total_moved; | |
3031 mch_memmove((char *)dp_right + dp_right->db_txt_start, | |
3032 (char *)dp_left + dp_left->db_txt_start, | |
3033 (size_t)data_moved); | |
3034 offset = dp_right->db_txt_start - dp_left->db_txt_start; | |
3035 dp_left->db_txt_start += data_moved; | |
3036 dp_left->db_free += total_moved; | |
3037 | |
3038 /* | |
3039 * update indexes in the new block | |
3040 */ | |
3041 for (to = line_count_right, from = db_idx + 1; | |
3042 from < line_count_left; ++from, ++to) | |
3043 dp_right->db_index[to] = dp->db_index[from] + offset; | |
3044 line_count_right += lines_moved; | |
3045 line_count_left -= lines_moved; | |
3046 } | |
3047 | |
3048 /* | |
3049 * May move the new line into the left (old or new) block. | |
3050 */ | |
3051 if (in_left) | |
3052 { | |
3053 dp_left->db_txt_start -= len; | |
3054 dp_left->db_free -= len + INDEX_SIZE; | |
3055 dp_left->db_index[line_count_left] = dp_left->db_txt_start; | |
3056 if (mark) | |
3057 dp_left->db_index[line_count_left] |= DB_MARKED; | |
3058 mch_memmove((char *)dp_left + dp_left->db_txt_start, | |
3059 line, (size_t)len); | |
3060 ++line_count_left; | |
3061 } | |
3062 | |
3063 if (db_idx < 0) /* left block is new */ | |
3064 { | |
3065 lnum_left = lnum + 1; | |
3066 lnum_right = 0; | |
3067 } | |
3068 else /* right block is new */ | |
3069 { | |
3070 lnum_left = 0; | |
3071 if (in_left) | |
3072 lnum_right = lnum + 2; | |
3073 else | |
3074 lnum_right = lnum + 1; | |
3075 } | |
3076 dp_left->db_line_count = line_count_left; | |
3077 dp_right->db_line_count = line_count_right; | |
3078 | |
3079 /* | |
3080 * release the two data blocks | |
3081 * The new one (hp_new) already has a correct blocknumber. | |
3082 * The old one (hp, in ml_locked) gets a positive blocknumber if | |
3083 * we changed it and we are not editing a new file. | |
3084 */ | |
3085 if (lines_moved || in_left) | |
3086 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY; | |
3087 if (!newfile && db_idx >= 0 && in_left) | |
3088 buf->b_ml.ml_flags |= ML_LOCKED_POS; | |
3089 mf_put(mfp, hp_new, TRUE, FALSE); | |
3090 | |
3091 /* | |
3092 * flush the old data block | |
3093 * set ml_locked_lineadd to 0, because the updating of the | |
3094 * pointer blocks is done below | |
3095 */ | |
3096 lineadd = buf->b_ml.ml_locked_lineadd; | |
3097 buf->b_ml.ml_locked_lineadd = 0; | |
3098 ml_find_line(buf, (linenr_T)0, ML_FLUSH); /* flush data block */ | |
3099 | |
3100 /* | |
3101 * update pointer blocks for the new data block | |
3102 */ | |
3103 for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0; | |
3104 --stack_idx) | |
3105 { | |
3106 ip = &(buf->b_ml.ml_stack[stack_idx]); | |
3107 pb_idx = ip->ip_index; | |
3108 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL) | |
15294
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
3109 goto theend; |
7 | 3110 pp = (PTR_BL *)(hp->bh_data); /* must be pointer block */ |
3111 if (pp->pb_id != PTR_ID) | |
3112 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
3113 iemsg(_("E317: pointer block id wrong 3")); |
7 | 3114 mf_put(mfp, hp, FALSE, FALSE); |
15294
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
3115 goto theend; |
7 | 3116 } |
3117 /* | |
3118 * TODO: If the pointer block is full and we are adding at the end | |
3119 * try to insert in front of the next block | |
3120 */ | |
3121 /* block not full, add one entry */ | |
3122 if (pp->pb_count < pp->pb_count_max) | |
3123 { | |
3124 if (pb_idx + 1 < (int)pp->pb_count) | |
3125 mch_memmove(&pp->pb_pointer[pb_idx + 2], | |
3126 &pp->pb_pointer[pb_idx + 1], | |
3127 (size_t)(pp->pb_count - pb_idx - 1) * sizeof(PTR_EN)); | |
3128 ++pp->pb_count; | |
3129 pp->pb_pointer[pb_idx].pe_line_count = line_count_left; | |
3130 pp->pb_pointer[pb_idx].pe_bnum = bnum_left; | |
3131 pp->pb_pointer[pb_idx].pe_page_count = page_count_left; | |
3132 pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right; | |
3133 pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right; | |
3134 pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right; | |
3135 | |
3136 if (lnum_left != 0) | |
3137 pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left; | |
3138 if (lnum_right != 0) | |
3139 pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right; | |
3140 | |
3141 mf_put(mfp, hp, TRUE, FALSE); | |
3142 buf->b_ml.ml_stack_top = stack_idx + 1; /* truncate stack */ | |
3143 | |
3144 if (lineadd) | |
3145 { | |
3146 --(buf->b_ml.ml_stack_top); | |
1167 | 3147 /* fix line count for rest of blocks in the stack */ |
7 | 3148 ml_lineadd(buf, lineadd); |
3149 /* fix stack itself */ | |
3150 buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high += | |
3151 lineadd; | |
3152 ++(buf->b_ml.ml_stack_top); | |
3153 } | |
3154 | |
3155 /* | |
3156 * We are finished, break the loop here. | |
3157 */ | |
3158 break; | |
3159 } | |
3160 else /* pointer block full */ | |
3161 { | |
3162 /* | |
3163 * split the pointer block | |
3164 * allocate a new pointer block | |
3165 * move some of the pointer into the new block | |
3166 * prepare for updating the parent block | |
3167 */ | |
3168 for (;;) /* do this twice when splitting block 1 */ | |
3169 { | |
3170 hp_new = ml_new_ptr(mfp); | |
3171 if (hp_new == NULL) /* TODO: try to fix tree */ | |
15294
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
3172 goto theend; |
7 | 3173 pp_new = (PTR_BL *)(hp_new->bh_data); |
3174 | |
3175 if (hp->bh_bnum != 1) | |
3176 break; | |
3177 | |
3178 /* | |
3179 * if block 1 becomes full the tree is given an extra level | |
3180 * The pointers from block 1 are moved into the new block. | |
3181 * block 1 is updated to point to the new block | |
3182 * then continue to split the new block | |
3183 */ | |
3184 mch_memmove(pp_new, pp, (size_t)page_size); | |
3185 pp->pb_count = 1; | |
3186 pp->pb_pointer[0].pe_bnum = hp_new->bh_bnum; | |
3187 pp->pb_pointer[0].pe_line_count = buf->b_ml.ml_line_count; | |
3188 pp->pb_pointer[0].pe_old_lnum = 1; | |
3189 pp->pb_pointer[0].pe_page_count = 1; | |
3190 mf_put(mfp, hp, TRUE, FALSE); /* release block 1 */ | |
3191 hp = hp_new; /* new block is to be split */ | |
3192 pp = pp_new; | |
3193 CHECK(stack_idx != 0, _("stack_idx should be 0")); | |
3194 ip->ip_index = 0; | |
3195 ++stack_idx; /* do block 1 again later */ | |
3196 } | |
3197 /* | |
3198 * move the pointers after the current one to the new block | |
3199 * If there are none, the new entry will be in the new block. | |
3200 */ | |
3201 total_moved = pp->pb_count - pb_idx - 1; | |
3202 if (total_moved) | |
3203 { | |
3204 mch_memmove(&pp_new->pb_pointer[0], | |
3205 &pp->pb_pointer[pb_idx + 1], | |
3206 (size_t)(total_moved) * sizeof(PTR_EN)); | |
3207 pp_new->pb_count = total_moved; | |
3208 pp->pb_count -= total_moved - 1; | |
3209 pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right; | |
3210 pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right; | |
3211 pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right; | |
3212 if (lnum_right) | |
3213 pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right; | |
3214 } | |
3215 else | |
3216 { | |
3217 pp_new->pb_count = 1; | |
3218 pp_new->pb_pointer[0].pe_bnum = bnum_right; | |
3219 pp_new->pb_pointer[0].pe_line_count = line_count_right; | |
3220 pp_new->pb_pointer[0].pe_page_count = page_count_right; | |
3221 pp_new->pb_pointer[0].pe_old_lnum = lnum_right; | |
3222 } | |
3223 pp->pb_pointer[pb_idx].pe_bnum = bnum_left; | |
3224 pp->pb_pointer[pb_idx].pe_line_count = line_count_left; | |
3225 pp->pb_pointer[pb_idx].pe_page_count = page_count_left; | |
3226 if (lnum_left) | |
3227 pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left; | |
3228 lnum_left = 0; | |
3229 lnum_right = 0; | |
3230 | |
3231 /* | |
3232 * recompute line counts | |
3233 */ | |
3234 line_count_right = 0; | |
3235 for (i = 0; i < (int)pp_new->pb_count; ++i) | |
3236 line_count_right += pp_new->pb_pointer[i].pe_line_count; | |
3237 line_count_left = 0; | |
3238 for (i = 0; i < (int)pp->pb_count; ++i) | |
3239 line_count_left += pp->pb_pointer[i].pe_line_count; | |
3240 | |
3241 bnum_left = hp->bh_bnum; | |
3242 bnum_right = hp_new->bh_bnum; | |
3243 page_count_left = 1; | |
3244 page_count_right = 1; | |
3245 mf_put(mfp, hp, TRUE, FALSE); | |
3246 mf_put(mfp, hp_new, TRUE, FALSE); | |
3247 } | |
3248 } | |
3249 | |
3250 /* | |
3251 * Safety check: fallen out of for loop? | |
3252 */ | |
3253 if (stack_idx < 0) | |
3254 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
3255 iemsg(_("E318: Updated too many blocks?")); |
7 | 3256 buf->b_ml.ml_stack_top = 0; /* invalidate stack */ |
3257 } | |
3258 } | |
3259 | |
3260 #ifdef FEAT_BYTEOFF | |
3261 /* The line was inserted below 'lnum' */ | |
3262 ml_updatechunk(buf, lnum + 1, (long)len, ML_CHNK_ADDLINE); | |
3263 #endif | |
3264 #ifdef FEAT_NETBEANS_INTG | |
2210 | 3265 if (netbeans_active()) |
7 | 3266 { |
3267 if (STRLEN(line) > 0) | |
835 | 3268 netbeans_inserted(buf, lnum+1, (colnr_T)0, line, (int)STRLEN(line)); |
34 | 3269 netbeans_inserted(buf, lnum+1, (colnr_T)STRLEN(line), |
7 | 3270 (char_u *)"\n", 1); |
3271 } | |
3272 #endif | |
8493
caed4b2d305f
commit https://github.com/vim/vim/commit/509ce2a558e7e0c03242e32e844255af52f1c821
Christian Brabandt <cb@256bit.org>
parents:
8422
diff
changeset
|
3273 #ifdef FEAT_JOB_CHANNEL |
8422
5d2c84be23b5
commit https://github.com/vim/vim/commit/99ef06296f3c37490511c03786a2c8672e015c56
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3274 if (buf->b_write_to_channel) |
5d2c84be23b5
commit https://github.com/vim/vim/commit/99ef06296f3c37490511c03786a2c8672e015c56
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3275 channel_write_new_lines(buf); |
5d2c84be23b5
commit https://github.com/vim/vim/commit/99ef06296f3c37490511c03786a2c8672e015c56
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
3276 #endif |
15294
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
3277 ret = OK; |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
3278 |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
3279 theend: |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
3280 #ifdef FEAT_TEXT_PROP |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
3281 vim_free(tofree); |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
3282 #endif |
2d8225cc1315
patch 8.1.0655: when appending a line text property flags are not added
Bram Moolenaar <Bram@vim.org>
parents:
15292
diff
changeset
|
3283 return ret; |
7 | 3284 } |
3285 | |
3286 /* | |
17403
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3287 * Flush any pending change and call ml_append_int() |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3288 */ |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3289 static int |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3290 ml_append_flush( |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3291 buf_T *buf, |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3292 linenr_T lnum, // append after this line (can be 0) |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3293 char_u *line, // text of the new line |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3294 colnr_T len, // length of line, including NUL, or 0 |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3295 int newfile) // flag, see above |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3296 { |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3297 if (lnum > buf->b_ml.ml_line_count) |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3298 return FAIL; // lnum out of range |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3299 |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3300 if (buf->b_ml.ml_line_lnum != 0) |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3301 // This may also invoke ml_append_int(). |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3302 ml_flush_line(buf); |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3303 |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3304 #ifdef FEAT_EVAL |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3305 // When inserting above recorded changes: flush the changes before changing |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3306 // the text. Then flush the cached line, it may become invalid. |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3307 may_invoke_listeners(buf, lnum + 1, lnum + 1, 1); |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3308 if (buf->b_ml.ml_line_lnum != 0) |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3309 ml_flush_line(buf); |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3310 #endif |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3311 |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3312 return ml_append_int(buf, lnum, line, len, newfile, FALSE); |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3313 } |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3314 |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3315 /* |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3316 * Append a line after lnum (may be 0 to insert a line in front of the file). |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3317 * "line" does not need to be allocated, but can't be another line in a |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3318 * buffer, unlocking may make it invalid. |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3319 * |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3320 * newfile: TRUE when starting to edit a new file, meaning that pe_old_lnum |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3321 * will be set for recovery |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3322 * Check: The caller of this function should probably also call |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3323 * appended_lines(). |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3324 * |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3325 * return FAIL for failure, OK otherwise |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3326 */ |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3327 int |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3328 ml_append( |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3329 linenr_T lnum, /* append after this line (can be 0) */ |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3330 char_u *line, /* text of the new line */ |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3331 colnr_T len, /* length of new line, including NUL, or 0 */ |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3332 int newfile) /* flag, see above */ |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3333 { |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3334 /* When starting up, we might still need to create the memfile */ |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3335 if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL, 0) == FAIL) |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3336 return FAIL; |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3337 return ml_append_flush(curbuf, lnum, line, len, newfile); |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3338 } |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3339 |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3340 #if defined(FEAT_SPELL) || defined(FEAT_QUICKFIX) || defined(PROTO) |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3341 /* |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3342 * Like ml_append() but for an arbitrary buffer. The buffer must already have |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3343 * a memline. |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3344 */ |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3345 int |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3346 ml_append_buf( |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3347 buf_T *buf, |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3348 linenr_T lnum, /* append after this line (can be 0) */ |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3349 char_u *line, /* text of the new line */ |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3350 colnr_T len, /* length of new line, including NUL, or 0 */ |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3351 int newfile) /* flag, see above */ |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3352 { |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3353 if (buf->b_ml.ml_mfp == NULL) |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3354 return FAIL; |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3355 return ml_append_flush(buf, lnum, line, len, newfile); |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3356 } |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3357 #endif |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3358 |
9b6c0ef29c20
patch 8.1.1700: listener callback called for the wrong buffer
Bram Moolenaar <Bram@vim.org>
parents:
17364
diff
changeset
|
3359 /* |
625 | 3360 * Replace line lnum, with buffering, in current buffer. |
7 | 3361 * |
720 | 3362 * If "copy" is TRUE, make a copy of the line, otherwise the line has been |
7 | 3363 * copied to allocated memory already. |
3364 * | |
3365 * Check: The caller of this function should probably also call | |
3366 * changed_lines(), unless update_screen(NOT_VALID) is used. | |
3367 * | |
3368 * return FAIL for failure, OK otherwise | |
3369 */ | |
3370 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3371 ml_replace(linenr_T lnum, char_u *line, int copy) |
7 | 3372 { |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3373 colnr_T len = -1; |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3374 |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3375 if (line != NULL) |
15182
4b2de998ebd6
patch 8.1.0601: a few compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
15142
diff
changeset
|
3376 len = (colnr_T)STRLEN(line); |
15361
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3377 return ml_replace_len(lnum, line, len, FALSE, copy); |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3378 } |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3379 |
15361
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3380 /* |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3381 * Replace a line for the current buffer. Like ml_replace() with: |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3382 * "len_arg" is the length of the text, excluding NUL. |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3383 * If "has_props" is TRUE then "line_arg" includes the text properties and |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3384 * "len_arg" includes the NUL of the text. |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3385 */ |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3386 int |
15361
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3387 ml_replace_len( |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3388 linenr_T lnum, |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3389 char_u *line_arg, |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3390 colnr_T len_arg, |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3391 int has_props, |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3392 int copy) |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3393 { |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3394 char_u *line = line_arg; |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3395 colnr_T len = len_arg; |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3396 |
7 | 3397 if (line == NULL) /* just checking... */ |
3398 return FAIL; | |
3399 | |
3400 /* When starting up, we might still need to create the memfile */ | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2360
diff
changeset
|
3401 if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL, 0) == FAIL) |
7 | 3402 return FAIL; |
3403 | |
15361
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3404 if (!has_props) |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3405 ++len; // include the NUL after the text |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3406 if (copy) |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3407 { |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3408 // copy the line to allocated memory |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3409 #ifdef FEAT_TEXT_PROP |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3410 if (has_props) |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3411 line = vim_memsave(line, len); |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3412 else |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3413 #endif |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3414 line = vim_strnsave(line, len - 1); |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3415 if (line == NULL) |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3416 return FAIL; |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3417 } |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3418 |
7 | 3419 #ifdef FEAT_NETBEANS_INTG |
2210 | 3420 if (netbeans_active()) |
7 | 3421 { |
3422 netbeans_removed(curbuf, lnum, 0, (long)STRLEN(ml_get(lnum))); | |
835 | 3423 netbeans_inserted(curbuf, lnum, 0, line, (int)STRLEN(line)); |
7 | 3424 } |
3425 #endif | |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3426 if (curbuf->b_ml.ml_line_lnum != lnum) |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3427 { |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3428 // another line is buffered, flush it |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3429 ml_flush_line(curbuf); |
15142
7713ceb8c593
patch 8.1.0581: double free without the text properties feature
Bram Moolenaar <Bram@vim.org>
parents:
15138
diff
changeset
|
3430 curbuf->b_ml.ml_flags &= ~ML_LINE_DIRTY; |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3431 |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3432 #ifdef FEAT_TEXT_PROP |
15361
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3433 if (curbuf->b_has_textprop && !has_props) |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3434 // Need to fetch the old line to copy over any text properties. |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3435 ml_get_buf(curbuf, lnum, TRUE); |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3436 #endif |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3437 } |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3438 |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3439 #ifdef FEAT_TEXT_PROP |
15361
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3440 if (curbuf->b_has_textprop && !has_props) |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3441 { |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3442 size_t oldtextlen = STRLEN(curbuf->b_ml.ml_line_ptr) + 1; |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3443 |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3444 if (oldtextlen < (size_t)curbuf->b_ml.ml_line_len) |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3445 { |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3446 char_u *newline; |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3447 size_t textproplen = curbuf->b_ml.ml_line_len - oldtextlen; |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3448 |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3449 // Need to copy over text properties, stored after the text. |
15361
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3450 newline = alloc(len + (int)textproplen); |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3451 if (newline != NULL) |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3452 { |
15361
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3453 mch_memmove(newline, line, len); |
16684
1c2d9f67d98f
patch 8.1.1344: Coverity complains about possibly using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents:
16666
diff
changeset
|
3454 mch_memmove(newline + len, curbuf->b_ml.ml_line_ptr |
1c2d9f67d98f
patch 8.1.1344: Coverity complains about possibly using a NULL pointer
Bram Moolenaar <Bram@vim.org>
parents:
16666
diff
changeset
|
3455 + oldtextlen, textproplen); |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3456 vim_free(line); |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3457 line = newline; |
15182
4b2de998ebd6
patch 8.1.0601: a few compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
15142
diff
changeset
|
3458 len += (colnr_T)textproplen; |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3459 } |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3460 } |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3461 } |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3462 #endif |
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3463 |
15361
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3464 if (curbuf->b_ml.ml_flags & ML_LINE_DIRTY) // same line allocated |
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3465 vim_free(curbuf->b_ml.ml_line_ptr); // free it |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3466 |
7 | 3467 curbuf->b_ml.ml_line_ptr = line; |
15361
58b125df3e9b
patch 8.1.0688: text properties are not restored by undo
Bram Moolenaar <Bram@vim.org>
parents:
15353
diff
changeset
|
3468 curbuf->b_ml.ml_line_len = len; |
7 | 3469 curbuf->b_ml.ml_line_lnum = lnum; |
3470 curbuf->b_ml.ml_flags = (curbuf->b_ml.ml_flags | ML_LINE_DIRTY) & ~ML_EMPTY; | |
3471 | |
3472 return OK; | |
3473 } | |
3474 | |
15292
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3475 #ifdef FEAT_TEXT_PROP |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3476 /* |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3477 * Adjust text properties in line "lnum" for a deleted line. |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3478 * When "above" is true this is the line above the deleted line. |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3479 * "del_props" are the properties of the deleted line. |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3480 */ |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3481 static void |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3482 adjust_text_props_for_delete( |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3483 buf_T *buf, |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3484 linenr_T lnum, |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3485 char_u *del_props, |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3486 int del_props_len, |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3487 int above) |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3488 { |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3489 int did_get_line = FALSE; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3490 int done_del; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3491 int done_this; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3492 textprop_T prop_del; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3493 textprop_T prop_this; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3494 bhdr_T *hp; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3495 DATA_BL *dp; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3496 int idx; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3497 int line_start; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3498 long line_size; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3499 int this_props_len; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3500 char_u *text; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3501 size_t textlen; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3502 int found; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3503 |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3504 for (done_del = 0; done_del < del_props_len; done_del += sizeof(textprop_T)) |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3505 { |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3506 mch_memmove(&prop_del, del_props + done_del, sizeof(textprop_T)); |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3507 if ((above && (prop_del.tp_flags & TP_FLAG_CONT_PREV) |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3508 && !(prop_del.tp_flags & TP_FLAG_CONT_NEXT)) |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3509 || (!above && (prop_del.tp_flags & TP_FLAG_CONT_NEXT) |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3510 && !(prop_del.tp_flags & TP_FLAG_CONT_PREV))) |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3511 { |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3512 if (!did_get_line) |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3513 { |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3514 did_get_line = TRUE; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3515 if ((hp = ml_find_line(buf, lnum, ML_FIND)) == NULL) |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3516 return; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3517 |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3518 dp = (DATA_BL *)(hp->bh_data); |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3519 idx = lnum - buf->b_ml.ml_locked_low; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3520 line_start = ((dp->db_index[idx]) & DB_INDEX_MASK); |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3521 if (idx == 0) // first line in block, text at the end |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3522 line_size = dp->db_txt_end - line_start; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3523 else |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3524 line_size = ((dp->db_index[idx - 1]) & DB_INDEX_MASK) - line_start; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3525 text = (char_u *)dp + line_start; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3526 textlen = STRLEN(text) + 1; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3527 if ((long)textlen >= line_size) |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3528 { |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3529 if (above) |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3530 internal_error("no text property above deleted line"); |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3531 else |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3532 internal_error("no text property below deleted line"); |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3533 return; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3534 } |
15353
21580db06cf3
patch 8.1.0684: warnings from 64-bit compiler
Bram Moolenaar <Bram@vim.org>
parents:
15294
diff
changeset
|
3535 this_props_len = line_size - (int)textlen; |
15292
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3536 } |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3537 |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3538 found = FALSE; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3539 for (done_this = 0; done_this < this_props_len; done_this += sizeof(textprop_T)) |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3540 { |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3541 mch_memmove(&prop_this, text + textlen + done_del, sizeof(textprop_T)); |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3542 if (prop_del.tp_id == prop_this.tp_id |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3543 && prop_del.tp_type == prop_this.tp_type) |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3544 { |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3545 int flag = above ? TP_FLAG_CONT_NEXT : TP_FLAG_CONT_PREV; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3546 |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3547 found = TRUE; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3548 if (prop_this.tp_flags & flag) |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3549 { |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3550 prop_this.tp_flags &= ~flag; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3551 mch_memmove(text + textlen + done_del, &prop_this, sizeof(textprop_T)); |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3552 } |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3553 else if (above) |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3554 internal_error("text property above deleted line does not continue"); |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3555 else |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3556 internal_error("text property below deleted line does not continue"); |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3557 } |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3558 } |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3559 if (!found) |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3560 { |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3561 if (above) |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3562 internal_error("text property above deleted line not found"); |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3563 else |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3564 internal_error("text property below deleted line not found"); |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3565 } |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3566 |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3567 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS); |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3568 } |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3569 } |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3570 } |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3571 #endif |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3572 |
7 | 3573 /* |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
3574 * Delete line "lnum" in the current buffer. |
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
3575 * When "message" is TRUE may give a "No lines in buffer" message. |
7 | 3576 * |
3577 * Check: The caller of this function should probably also call | |
3578 * deleted_lines() after this. | |
3579 * | |
3580 * return FAIL for failure, OK otherwise | |
3581 */ | |
3582 int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3583 ml_delete(linenr_T lnum, int message) |
7 | 3584 { |
3585 ml_flush_line(curbuf); | |
17425
6580e2dfcaeb
patch 8.1.1711: listener callback called at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents:
17403
diff
changeset
|
3586 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count) |
6580e2dfcaeb
patch 8.1.1711: listener callback called at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents:
17403
diff
changeset
|
3587 return FAIL; |
6580e2dfcaeb
patch 8.1.1711: listener callback called at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents:
17403
diff
changeset
|
3588 |
6580e2dfcaeb
patch 8.1.1711: listener callback called at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents:
17403
diff
changeset
|
3589 #ifdef FEAT_EVAL |
6580e2dfcaeb
patch 8.1.1711: listener callback called at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents:
17403
diff
changeset
|
3590 // When inserting above recorded changes: flush the changes before changing |
6580e2dfcaeb
patch 8.1.1711: listener callback called at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents:
17403
diff
changeset
|
3591 // the text. |
6580e2dfcaeb
patch 8.1.1711: listener callback called at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents:
17403
diff
changeset
|
3592 may_invoke_listeners(curbuf, lnum, lnum + 1, -1); |
6580e2dfcaeb
patch 8.1.1711: listener callback called at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents:
17403
diff
changeset
|
3593 #endif |
6580e2dfcaeb
patch 8.1.1711: listener callback called at the wrong moment
Bram Moolenaar <Bram@vim.org>
parents:
17403
diff
changeset
|
3594 |
7 | 3595 return ml_delete_int(curbuf, lnum, message); |
3596 } | |
3597 | |
3598 static int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3599 ml_delete_int(buf_T *buf, linenr_T lnum, int message) |
7 | 3600 { |
3601 bhdr_T *hp; | |
3602 memfile_T *mfp; | |
3603 DATA_BL *dp; | |
3604 PTR_BL *pp; | |
3605 infoptr_T *ip; | |
3606 int count; /* number of entries in block */ | |
3607 int idx; | |
3608 int stack_idx; | |
3609 int text_start; | |
3610 int line_start; | |
3611 long line_size; | |
3612 int i; | |
15292
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3613 int ret = FAIL; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3614 #ifdef FEAT_TEXT_PROP |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3615 char_u *textprop_save = NULL; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3616 int textprop_save_len; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3617 #endif |
7 | 3618 |
3619 if (lowest_marked && lowest_marked > lnum) | |
3620 lowest_marked--; | |
3621 | |
3622 /* | |
3623 * If the file becomes empty the last line is replaced by an empty line. | |
3624 */ | |
3625 if (buf->b_ml.ml_line_count == 1) /* file becomes empty */ | |
3626 { | |
3627 if (message | |
3628 #ifdef FEAT_NETBEANS_INTG | |
3629 && !netbeansSuppressNoLines | |
3630 #endif | |
3631 ) | |
680 | 3632 set_keep_msg((char_u *)_(no_lines_msg), 0); |
3633 | |
4352 | 3634 /* FEAT_BYTEOFF already handled in there, don't worry 'bout it below */ |
7 | 3635 i = ml_replace((linenr_T)1, (char_u *)"", TRUE); |
3636 buf->b_ml.ml_flags |= ML_EMPTY; | |
3637 | |
3638 return i; | |
3639 } | |
3640 | |
3641 /* | |
15292
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3642 * Find the data block containing the line. |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3643 * This also fills the stack with the blocks from the root to the data block. |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3644 * This also releases any locked block.. |
7 | 3645 */ |
3646 mfp = buf->b_ml.ml_mfp; | |
3647 if (mfp == NULL) | |
3648 return FAIL; | |
3649 | |
3650 if ((hp = ml_find_line(buf, lnum, ML_DELETE)) == NULL) | |
3651 return FAIL; | |
3652 | |
3653 dp = (DATA_BL *)(hp->bh_data); | |
3654 /* compute line count before the delete */ | |
3655 count = (long)(buf->b_ml.ml_locked_high) | |
3656 - (long)(buf->b_ml.ml_locked_low) + 2; | |
3657 idx = lnum - buf->b_ml.ml_locked_low; | |
3658 | |
3659 --buf->b_ml.ml_line_count; | |
3660 | |
3661 line_start = ((dp->db_index[idx]) & DB_INDEX_MASK); | |
3662 if (idx == 0) /* first line in block, text at the end */ | |
3663 line_size = dp->db_txt_end - line_start; | |
3664 else | |
3665 line_size = ((dp->db_index[idx - 1]) & DB_INDEX_MASK) - line_start; | |
3666 | |
3667 #ifdef FEAT_NETBEANS_INTG | |
2210 | 3668 if (netbeans_active()) |
34 | 3669 netbeans_removed(buf, lnum, 0, (long)line_size); |
7 | 3670 #endif |
15292
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3671 #ifdef FEAT_TEXT_PROP |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3672 // If there are text properties, make a copy, so that we can update |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3673 // properties in preceding and following lines. |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3674 if (buf->b_has_textprop) |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3675 { |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3676 size_t textlen = STRLEN((char_u *)dp + line_start) + 1; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3677 |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3678 if ((long)textlen < line_size) |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3679 { |
15353
21580db06cf3
patch 8.1.0684: warnings from 64-bit compiler
Bram Moolenaar <Bram@vim.org>
parents:
15294
diff
changeset
|
3680 textprop_save_len = line_size - (int)textlen; |
15292
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3681 textprop_save = vim_memsave((char_u *)dp + line_start + textlen, |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3682 textprop_save_len); |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3683 } |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3684 } |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3685 #endif |
7 | 3686 |
3687 /* | |
3688 * special case: If there is only one line in the data block it becomes empty. | |
3689 * Then we have to remove the entry, pointing to this data block, from the | |
3690 * pointer block. If this pointer block also becomes empty, we go up another | |
3691 * block, and so on, up to the root if necessary. | |
3692 * The line counts in the pointer blocks have already been adjusted by | |
3693 * ml_find_line(). | |
3694 */ | |
3695 if (count == 1) | |
3696 { | |
3697 mf_free(mfp, hp); /* free the data block */ | |
3698 buf->b_ml.ml_locked = NULL; | |
3699 | |
2823 | 3700 for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0; |
3701 --stack_idx) | |
7 | 3702 { |
3703 buf->b_ml.ml_stack_top = 0; /* stack is invalid when failing */ | |
3704 ip = &(buf->b_ml.ml_stack[stack_idx]); | |
3705 idx = ip->ip_index; | |
3706 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL) | |
15292
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3707 goto theend; |
7 | 3708 pp = (PTR_BL *)(hp->bh_data); /* must be pointer block */ |
3709 if (pp->pb_id != PTR_ID) | |
3710 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
3711 iemsg(_("E317: pointer block id wrong 4")); |
7 | 3712 mf_put(mfp, hp, FALSE, FALSE); |
15292
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3713 goto theend; |
7 | 3714 } |
3715 count = --(pp->pb_count); | |
3716 if (count == 0) /* the pointer block becomes empty! */ | |
3717 mf_free(mfp, hp); | |
3718 else | |
3719 { | |
3720 if (count != idx) /* move entries after the deleted one */ | |
3721 mch_memmove(&pp->pb_pointer[idx], &pp->pb_pointer[idx + 1], | |
3722 (size_t)(count - idx) * sizeof(PTR_EN)); | |
3723 mf_put(mfp, hp, TRUE, FALSE); | |
3724 | |
3725 buf->b_ml.ml_stack_top = stack_idx; /* truncate stack */ | |
1167 | 3726 /* fix line count for rest of blocks in the stack */ |
3727 if (buf->b_ml.ml_locked_lineadd != 0) | |
7 | 3728 { |
3729 ml_lineadd(buf, buf->b_ml.ml_locked_lineadd); | |
3730 buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high += | |
1167 | 3731 buf->b_ml.ml_locked_lineadd; |
7 | 3732 } |
3733 ++(buf->b_ml.ml_stack_top); | |
3734 | |
3735 break; | |
3736 } | |
3737 } | |
3738 CHECK(stack_idx < 0, _("deleted block 1?")); | |
3739 } | |
3740 else | |
3741 { | |
3742 /* | |
3743 * delete the text by moving the next lines forwards | |
3744 */ | |
3745 text_start = dp->db_txt_start; | |
3746 mch_memmove((char *)dp + text_start + line_size, | |
3747 (char *)dp + text_start, (size_t)(line_start - text_start)); | |
3748 | |
3749 /* | |
3750 * delete the index by moving the next indexes backwards | |
3751 * Adjust the indexes for the text movement. | |
3752 */ | |
3753 for (i = idx; i < count - 1; ++i) | |
3754 dp->db_index[i] = dp->db_index[i + 1] + line_size; | |
3755 | |
3756 dp->db_free += line_size + INDEX_SIZE; | |
3757 dp->db_txt_start += line_size; | |
3758 --(dp->db_line_count); | |
3759 | |
3760 /* | |
3761 * mark the block dirty and make sure it is in the file (for recovery) | |
3762 */ | |
3763 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS); | |
3764 } | |
3765 | |
3766 #ifdef FEAT_BYTEOFF | |
3767 ml_updatechunk(buf, lnum, line_size, ML_CHNK_DELLINE); | |
3768 #endif | |
15292
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3769 ret = OK; |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3770 |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3771 theend: |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3772 #ifdef FEAT_TEXT_PROP |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3773 if (textprop_save != NULL) |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3774 { |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3775 // Adjust text properties in the line above and below. |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3776 if (lnum > 1) |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3777 adjust_text_props_for_delete(buf, lnum - 1, textprop_save, textprop_save_len, TRUE); |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3778 if (lnum <= buf->b_ml.ml_line_count) |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3779 adjust_text_props_for_delete(buf, lnum, textprop_save, textprop_save_len, FALSE); |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3780 } |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3781 vim_free(textprop_save); |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3782 #endif |
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3783 return ret; |
7 | 3784 } |
3785 | |
3786 /* | |
15292
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3787 * set the DB_MARKED flag for line 'lnum' |
7 | 3788 */ |
3789 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3790 ml_setmarked(linenr_T lnum) |
7 | 3791 { |
3792 bhdr_T *hp; | |
3793 DATA_BL *dp; | |
3794 /* invalid line number */ | |
3795 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count | |
3796 || curbuf->b_ml.ml_mfp == NULL) | |
3797 return; /* give error message? */ | |
3798 | |
3799 if (lowest_marked == 0 || lowest_marked > lnum) | |
3800 lowest_marked = lnum; | |
3801 | |
3802 /* | |
3803 * find the data block containing the line | |
3804 * This also fills the stack with the blocks from the root to the data block | |
3805 * This also releases any locked block. | |
3806 */ | |
3807 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL) | |
3808 return; /* give error message? */ | |
3809 | |
3810 dp = (DATA_BL *)(hp->bh_data); | |
3811 dp->db_index[lnum - curbuf->b_ml.ml_locked_low] |= DB_MARKED; | |
3812 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY; | |
3813 } | |
3814 | |
3815 /* | |
15292
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
3816 * find the first line with its DB_MARKED flag set |
7 | 3817 */ |
3818 linenr_T | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3819 ml_firstmarked(void) |
7 | 3820 { |
3821 bhdr_T *hp; | |
3822 DATA_BL *dp; | |
3823 linenr_T lnum; | |
3824 int i; | |
3825 | |
3826 if (curbuf->b_ml.ml_mfp == NULL) | |
3827 return (linenr_T) 0; | |
3828 | |
3829 /* | |
3830 * The search starts with lowest_marked line. This is the last line where | |
3831 * a mark was found, adjusted by inserting/deleting lines. | |
3832 */ | |
3833 for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; ) | |
3834 { | |
3835 /* | |
3836 * Find the data block containing the line. | |
3837 * This also fills the stack with the blocks from the root to the data | |
3838 * block This also releases any locked block. | |
3839 */ | |
3840 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL) | |
3841 return (linenr_T)0; /* give error message? */ | |
3842 | |
3843 dp = (DATA_BL *)(hp->bh_data); | |
3844 | |
3845 for (i = lnum - curbuf->b_ml.ml_locked_low; | |
3846 lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum) | |
3847 if ((dp->db_index[i]) & DB_MARKED) | |
3848 { | |
3849 (dp->db_index[i]) &= DB_INDEX_MASK; | |
3850 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY; | |
3851 lowest_marked = lnum + 1; | |
3852 return lnum; | |
3853 } | |
3854 } | |
3855 | |
3856 return (linenr_T) 0; | |
3857 } | |
3858 | |
3859 /* | |
3860 * clear all DB_MARKED flags | |
3861 */ | |
3862 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3863 ml_clearmarked(void) |
7 | 3864 { |
3865 bhdr_T *hp; | |
3866 DATA_BL *dp; | |
3867 linenr_T lnum; | |
3868 int i; | |
3869 | |
3870 if (curbuf->b_ml.ml_mfp == NULL) /* nothing to do */ | |
3871 return; | |
3872 | |
3873 /* | |
3874 * The search starts with line lowest_marked. | |
3875 */ | |
3876 for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; ) | |
3877 { | |
3878 /* | |
3879 * Find the data block containing the line. | |
3880 * This also fills the stack with the blocks from the root to the data | |
3881 * block and releases any locked block. | |
3882 */ | |
3883 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL) | |
3884 return; /* give error message? */ | |
3885 | |
3886 dp = (DATA_BL *)(hp->bh_data); | |
3887 | |
3888 for (i = lnum - curbuf->b_ml.ml_locked_low; | |
3889 lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum) | |
3890 if ((dp->db_index[i]) & DB_MARKED) | |
3891 { | |
3892 (dp->db_index[i]) &= DB_INDEX_MASK; | |
3893 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY; | |
3894 } | |
3895 } | |
3896 | |
3897 lowest_marked = 0; | |
3898 return; | |
3899 } | |
3900 | |
3901 /* | |
3902 * flush ml_line if necessary | |
3903 */ | |
3904 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
3905 ml_flush_line(buf_T *buf) |
7 | 3906 { |
3907 bhdr_T *hp; | |
3908 DATA_BL *dp; | |
3909 linenr_T lnum; | |
3910 char_u *new_line; | |
3911 char_u *old_line; | |
3912 colnr_T new_len; | |
3913 int old_len; | |
3914 int extra; | |
3915 int idx; | |
3916 int start; | |
3917 int count; | |
3918 int i; | |
2075
903fcd726d90
updated for version 7.2.359
Bram Moolenaar <bram@zimbu.org>
parents:
2003
diff
changeset
|
3919 static int entered = FALSE; |
7 | 3920 |
3921 if (buf->b_ml.ml_line_lnum == 0 || buf->b_ml.ml_mfp == NULL) | |
3922 return; /* nothing to do */ | |
3923 | |
3924 if (buf->b_ml.ml_flags & ML_LINE_DIRTY) | |
3925 { | |
2075
903fcd726d90
updated for version 7.2.359
Bram Moolenaar <bram@zimbu.org>
parents:
2003
diff
changeset
|
3926 /* This code doesn't work recursively, but Netbeans may call back here |
903fcd726d90
updated for version 7.2.359
Bram Moolenaar <bram@zimbu.org>
parents:
2003
diff
changeset
|
3927 * when obtaining the cursor position. */ |
903fcd726d90
updated for version 7.2.359
Bram Moolenaar <bram@zimbu.org>
parents:
2003
diff
changeset
|
3928 if (entered) |
903fcd726d90
updated for version 7.2.359
Bram Moolenaar <bram@zimbu.org>
parents:
2003
diff
changeset
|
3929 return; |
903fcd726d90
updated for version 7.2.359
Bram Moolenaar <bram@zimbu.org>
parents:
2003
diff
changeset
|
3930 entered = TRUE; |
903fcd726d90
updated for version 7.2.359
Bram Moolenaar <bram@zimbu.org>
parents:
2003
diff
changeset
|
3931 |
7 | 3932 lnum = buf->b_ml.ml_line_lnum; |
3933 new_line = buf->b_ml.ml_line_ptr; | |
3934 | |
3935 hp = ml_find_line(buf, lnum, ML_FIND); | |
3936 if (hp == NULL) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
3937 siemsg(_("E320: Cannot find line %ld"), lnum); |
7 | 3938 else |
3939 { | |
3940 dp = (DATA_BL *)(hp->bh_data); | |
3941 idx = lnum - buf->b_ml.ml_locked_low; | |
3942 start = ((dp->db_index[idx]) & DB_INDEX_MASK); | |
3943 old_line = (char_u *)dp + start; | |
3944 if (idx == 0) /* line is last in block */ | |
3945 old_len = dp->db_txt_end - start; | |
3946 else /* text of previous line follows */ | |
3947 old_len = (dp->db_index[idx - 1] & DB_INDEX_MASK) - start; | |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
3948 new_len = buf->b_ml.ml_line_len; |
7 | 3949 extra = new_len - old_len; /* negative if lines gets smaller */ |
3950 | |
3951 /* | |
3952 * if new line fits in data block, replace directly | |
3953 */ | |
3954 if ((int)dp->db_free >= extra) | |
3955 { | |
3956 /* if the length changes and there are following lines */ | |
3957 count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low + 1; | |
3958 if (extra != 0 && idx < count - 1) | |
3959 { | |
3960 /* move text of following lines */ | |
3961 mch_memmove((char *)dp + dp->db_txt_start - extra, | |
3962 (char *)dp + dp->db_txt_start, | |
3963 (size_t)(start - dp->db_txt_start)); | |
3964 | |
3965 /* adjust pointers of this and following lines */ | |
3966 for (i = idx + 1; i < count; ++i) | |
3967 dp->db_index[i] -= extra; | |
3968 } | |
3969 dp->db_index[idx] -= extra; | |
3970 | |
3971 /* adjust free space */ | |
3972 dp->db_free -= extra; | |
3973 dp->db_txt_start -= extra; | |
3974 | |
3975 /* copy new line into the data block */ | |
3976 mch_memmove(old_line - extra, new_line, (size_t)new_len); | |
3977 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS); | |
3978 #ifdef FEAT_BYTEOFF | |
3979 /* The else case is already covered by the insert and delete */ | |
3980 ml_updatechunk(buf, lnum, (long)extra, ML_CHNK_UPDLINE); | |
3981 #endif | |
3982 } | |
3983 else | |
3984 { | |
3985 /* | |
3986 * Cannot do it in one data block: Delete and append. | |
3987 * Append first, because ml_delete_int() cannot delete the | |
3988 * last line in a buffer, which causes trouble for a buffer | |
3989 * that has only one line. | |
3990 * Don't forget to copy the mark! | |
3991 */ | |
3992 /* How about handling errors??? */ | |
3993 (void)ml_append_int(buf, lnum, new_line, new_len, FALSE, | |
3994 (dp->db_index[idx] & DB_MARKED)); | |
3995 (void)ml_delete_int(buf, lnum, FALSE); | |
3996 } | |
3997 } | |
3998 vim_free(new_line); | |
2075
903fcd726d90
updated for version 7.2.359
Bram Moolenaar <bram@zimbu.org>
parents:
2003
diff
changeset
|
3999 |
903fcd726d90
updated for version 7.2.359
Bram Moolenaar <bram@zimbu.org>
parents:
2003
diff
changeset
|
4000 entered = FALSE; |
7 | 4001 } |
4002 | |
4003 buf->b_ml.ml_line_lnum = 0; | |
4004 } | |
4005 | |
4006 /* | |
4007 * create a new, empty, data block | |
4008 */ | |
4009 static bhdr_T * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4010 ml_new_data(memfile_T *mfp, int negative, int page_count) |
7 | 4011 { |
4012 bhdr_T *hp; | |
4013 DATA_BL *dp; | |
4014 | |
4015 if ((hp = mf_new(mfp, negative, page_count)) == NULL) | |
4016 return NULL; | |
4017 | |
4018 dp = (DATA_BL *)(hp->bh_data); | |
4019 dp->db_id = DATA_ID; | |
4020 dp->db_txt_start = dp->db_txt_end = page_count * mfp->mf_page_size; | |
4021 dp->db_free = dp->db_txt_start - HEADER_SIZE; | |
4022 dp->db_line_count = 0; | |
4023 | |
4024 return hp; | |
4025 } | |
4026 | |
4027 /* | |
4028 * create a new, empty, pointer block | |
4029 */ | |
4030 static bhdr_T * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4031 ml_new_ptr(memfile_T *mfp) |
7 | 4032 { |
4033 bhdr_T *hp; | |
4034 PTR_BL *pp; | |
4035 | |
4036 if ((hp = mf_new(mfp, FALSE, 1)) == NULL) | |
4037 return NULL; | |
4038 | |
4039 pp = (PTR_BL *)(hp->bh_data); | |
4040 pp->pb_id = PTR_ID; | |
4041 pp->pb_count = 0; | |
2240
6b4879aea261
Add test for gettabvar() and settabvar().
Bram Moolenaar <bram@vim.org>
parents:
2221
diff
changeset
|
4042 pp->pb_count_max = (short_u)((mfp->mf_page_size - sizeof(PTR_BL)) |
6b4879aea261
Add test for gettabvar() and settabvar().
Bram Moolenaar <bram@vim.org>
parents:
2221
diff
changeset
|
4043 / sizeof(PTR_EN) + 1); |
7 | 4044 |
4045 return hp; | |
4046 } | |
4047 | |
4048 /* | |
15292
ba6f0f1bb9d0
patch 8.1.0654: when deleting a line text property flags are not adjusted
Bram Moolenaar <Bram@vim.org>
parents:
15269
diff
changeset
|
4049 * Lookup line 'lnum' in a memline. |
7 | 4050 * |
4051 * action: if ML_DELETE or ML_INSERT the line count is updated while searching | |
4052 * if ML_FLUSH only flush a locked block | |
4053 * if ML_FIND just find the line | |
4054 * | |
4055 * If the block was found it is locked and put in ml_locked. | |
4056 * The stack is updated to lead to the locked block. The ip_high field in | |
4057 * the stack is updated to reflect the last line in the block AFTER the | |
4058 * insert or delete, also if the pointer block has not been updated yet. But | |
1167 | 4059 * if ml_locked != NULL ml_locked_lineadd must be added to ip_high. |
7 | 4060 * |
4061 * return: NULL for failure, pointer to block header otherwise | |
4062 */ | |
4063 static bhdr_T * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4064 ml_find_line(buf_T *buf, linenr_T lnum, int action) |
7 | 4065 { |
4066 DATA_BL *dp; | |
4067 PTR_BL *pp; | |
4068 infoptr_T *ip; | |
4069 bhdr_T *hp; | |
4070 memfile_T *mfp; | |
4071 linenr_T t; | |
4072 blocknr_T bnum, bnum2; | |
4073 int dirty; | |
4074 linenr_T low, high; | |
4075 int top; | |
4076 int page_count; | |
4077 int idx; | |
4078 | |
4079 mfp = buf->b_ml.ml_mfp; | |
4080 | |
4081 /* | |
4082 * If there is a locked block check if the wanted line is in it. | |
4083 * If not, flush and release the locked block. | |
4084 * Don't do this for ML_INSERT_SAME, because the stack need to be updated. | |
4085 * Don't do this for ML_FLUSH, because we want to flush the locked block. | |
1066 | 4086 * Don't do this when 'swapfile' is reset, we want to load all the blocks. |
7 | 4087 */ |
4088 if (buf->b_ml.ml_locked) | |
4089 { | |
1066 | 4090 if (ML_SIMPLE(action) |
4091 && buf->b_ml.ml_locked_low <= lnum | |
4092 && buf->b_ml.ml_locked_high >= lnum | |
4093 && !mf_dont_release) | |
7 | 4094 { |
1066 | 4095 /* remember to update pointer blocks and stack later */ |
7 | 4096 if (action == ML_INSERT) |
4097 { | |
4098 ++(buf->b_ml.ml_locked_lineadd); | |
4099 ++(buf->b_ml.ml_locked_high); | |
4100 } | |
4101 else if (action == ML_DELETE) | |
4102 { | |
4103 --(buf->b_ml.ml_locked_lineadd); | |
4104 --(buf->b_ml.ml_locked_high); | |
4105 } | |
4106 return (buf->b_ml.ml_locked); | |
4107 } | |
4108 | |
4109 mf_put(mfp, buf->b_ml.ml_locked, buf->b_ml.ml_flags & ML_LOCKED_DIRTY, | |
4110 buf->b_ml.ml_flags & ML_LOCKED_POS); | |
4111 buf->b_ml.ml_locked = NULL; | |
4112 | |
1167 | 4113 /* |
4114 * If lines have been added or deleted in the locked block, need to | |
4115 * update the line count in pointer blocks. | |
4116 */ | |
4117 if (buf->b_ml.ml_locked_lineadd != 0) | |
7 | 4118 ml_lineadd(buf, buf->b_ml.ml_locked_lineadd); |
4119 } | |
4120 | |
4121 if (action == ML_FLUSH) /* nothing else to do */ | |
4122 return NULL; | |
4123 | |
4124 bnum = 1; /* start at the root of the tree */ | |
4125 page_count = 1; | |
4126 low = 1; | |
4127 high = buf->b_ml.ml_line_count; | |
4128 | |
4129 if (action == ML_FIND) /* first try stack entries */ | |
4130 { | |
4131 for (top = buf->b_ml.ml_stack_top - 1; top >= 0; --top) | |
4132 { | |
4133 ip = &(buf->b_ml.ml_stack[top]); | |
4134 if (ip->ip_low <= lnum && ip->ip_high >= lnum) | |
4135 { | |
4136 bnum = ip->ip_bnum; | |
4137 low = ip->ip_low; | |
4138 high = ip->ip_high; | |
4139 buf->b_ml.ml_stack_top = top; /* truncate stack at prev entry */ | |
4140 break; | |
4141 } | |
4142 } | |
4143 if (top < 0) | |
4144 buf->b_ml.ml_stack_top = 0; /* not found, start at the root */ | |
4145 } | |
4146 else /* ML_DELETE or ML_INSERT */ | |
4147 buf->b_ml.ml_stack_top = 0; /* start at the root */ | |
4148 | |
4149 /* | |
4150 * search downwards in the tree until a data block is found | |
4151 */ | |
4152 for (;;) | |
4153 { | |
4154 if ((hp = mf_get(mfp, bnum, page_count)) == NULL) | |
4155 goto error_noblock; | |
4156 | |
4157 /* | |
4158 * update high for insert/delete | |
4159 */ | |
4160 if (action == ML_INSERT) | |
4161 ++high; | |
4162 else if (action == ML_DELETE) | |
4163 --high; | |
4164 | |
4165 dp = (DATA_BL *)(hp->bh_data); | |
4166 if (dp->db_id == DATA_ID) /* data block */ | |
4167 { | |
4168 buf->b_ml.ml_locked = hp; | |
4169 buf->b_ml.ml_locked_low = low; | |
4170 buf->b_ml.ml_locked_high = high; | |
4171 buf->b_ml.ml_locked_lineadd = 0; | |
4172 buf->b_ml.ml_flags &= ~(ML_LOCKED_DIRTY | ML_LOCKED_POS); | |
4173 return hp; | |
4174 } | |
4175 | |
4176 pp = (PTR_BL *)(dp); /* must be pointer block */ | |
4177 if (pp->pb_id != PTR_ID) | |
4178 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
4179 iemsg(_("E317: pointer block id wrong")); |
7 | 4180 goto error_block; |
4181 } | |
4182 | |
4183 if ((top = ml_add_stack(buf)) < 0) /* add new entry to stack */ | |
4184 goto error_block; | |
4185 ip = &(buf->b_ml.ml_stack[top]); | |
4186 ip->ip_bnum = bnum; | |
4187 ip->ip_low = low; | |
4188 ip->ip_high = high; | |
4189 ip->ip_index = -1; /* index not known yet */ | |
4190 | |
4191 dirty = FALSE; | |
4192 for (idx = 0; idx < (int)pp->pb_count; ++idx) | |
4193 { | |
4194 t = pp->pb_pointer[idx].pe_line_count; | |
4195 CHECK(t == 0, _("pe_line_count is zero")); | |
4196 if ((low += t) > lnum) | |
4197 { | |
4198 ip->ip_index = idx; | |
4199 bnum = pp->pb_pointer[idx].pe_bnum; | |
4200 page_count = pp->pb_pointer[idx].pe_page_count; | |
4201 high = low - 1; | |
4202 low -= t; | |
4203 | |
4204 /* | |
4205 * a negative block number may have been changed | |
4206 */ | |
4207 if (bnum < 0) | |
4208 { | |
4209 bnum2 = mf_trans_del(mfp, bnum); | |
4210 if (bnum != bnum2) | |
4211 { | |
4212 bnum = bnum2; | |
4213 pp->pb_pointer[idx].pe_bnum = bnum; | |
4214 dirty = TRUE; | |
4215 } | |
4216 } | |
4217 | |
4218 break; | |
4219 } | |
4220 } | |
4221 if (idx >= (int)pp->pb_count) /* past the end: something wrong! */ | |
4222 { | |
4223 if (lnum > buf->b_ml.ml_line_count) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
4224 siemsg(_("E322: line number out of range: %ld past the end"), |
7 | 4225 lnum - buf->b_ml.ml_line_count); |
4226 | |
4227 else | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
4228 siemsg(_("E323: line count wrong in block %ld"), bnum); |
7 | 4229 goto error_block; |
4230 } | |
4231 if (action == ML_DELETE) | |
4232 { | |
4233 pp->pb_pointer[idx].pe_line_count--; | |
4234 dirty = TRUE; | |
4235 } | |
4236 else if (action == ML_INSERT) | |
4237 { | |
4238 pp->pb_pointer[idx].pe_line_count++; | |
4239 dirty = TRUE; | |
4240 } | |
4241 mf_put(mfp, hp, dirty, FALSE); | |
4242 } | |
4243 | |
4244 error_block: | |
4245 mf_put(mfp, hp, FALSE, FALSE); | |
4246 error_noblock: | |
2267 | 4247 /* |
4248 * If action is ML_DELETE or ML_INSERT we have to correct the tree for | |
4249 * the incremented/decremented line counts, because there won't be a line | |
4250 * inserted/deleted after all. | |
4251 */ | |
7 | 4252 if (action == ML_DELETE) |
4253 ml_lineadd(buf, 1); | |
4254 else if (action == ML_INSERT) | |
4255 ml_lineadd(buf, -1); | |
4256 buf->b_ml.ml_stack_top = 0; | |
4257 return NULL; | |
4258 } | |
4259 | |
4260 /* | |
4261 * add an entry to the info pointer stack | |
4262 * | |
4263 * return -1 for failure, number of the new entry otherwise | |
4264 */ | |
4265 static int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4266 ml_add_stack(buf_T *buf) |
7 | 4267 { |
4268 int top; | |
4269 infoptr_T *newstack; | |
4270 | |
4271 top = buf->b_ml.ml_stack_top; | |
4272 | |
2267 | 4273 /* may have to increase the stack size */ |
7 | 4274 if (top == buf->b_ml.ml_stack_size) |
4275 { | |
2267 | 4276 CHECK(top > 0, _("Stack size increases")); /* more than 5 levels??? */ |
7 | 4277 |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16786
diff
changeset
|
4278 newstack = ALLOC_MULT(infoptr_T, buf->b_ml.ml_stack_size + STACK_INCR); |
7 | 4279 if (newstack == NULL) |
4280 return -1; | |
6989 | 4281 if (top > 0) |
4282 mch_memmove(newstack, buf->b_ml.ml_stack, | |
1624 | 4283 (size_t)top * sizeof(infoptr_T)); |
7 | 4284 vim_free(buf->b_ml.ml_stack); |
4285 buf->b_ml.ml_stack = newstack; | |
4286 buf->b_ml.ml_stack_size += STACK_INCR; | |
4287 } | |
4288 | |
4289 buf->b_ml.ml_stack_top++; | |
4290 return top; | |
4291 } | |
4292 | |
4293 /* | |
4294 * Update the pointer blocks on the stack for inserted/deleted lines. | |
4295 * The stack itself is also updated. | |
4296 * | |
4297 * When a insert/delete line action fails, the line is not inserted/deleted, | |
4298 * but the pointer blocks have already been updated. That is fixed here by | |
4299 * walking through the stack. | |
4300 * | |
4301 * Count is the number of lines added, negative if lines have been deleted. | |
4302 */ | |
4303 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4304 ml_lineadd(buf_T *buf, int count) |
7 | 4305 { |
4306 int idx; | |
4307 infoptr_T *ip; | |
4308 PTR_BL *pp; | |
4309 memfile_T *mfp = buf->b_ml.ml_mfp; | |
4310 bhdr_T *hp; | |
4311 | |
4312 for (idx = buf->b_ml.ml_stack_top - 1; idx >= 0; --idx) | |
4313 { | |
4314 ip = &(buf->b_ml.ml_stack[idx]); | |
4315 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL) | |
4316 break; | |
4317 pp = (PTR_BL *)(hp->bh_data); /* must be pointer block */ | |
4318 if (pp->pb_id != PTR_ID) | |
4319 { | |
4320 mf_put(mfp, hp, FALSE, FALSE); | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
4321 iemsg(_("E317: pointer block id wrong 2")); |
7 | 4322 break; |
4323 } | |
4324 pp->pb_pointer[ip->ip_index].pe_line_count += count; | |
4325 ip->ip_high += count; | |
4326 mf_put(mfp, hp, TRUE, FALSE); | |
4327 } | |
4328 } | |
4329 | |
2214
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
4330 #if defined(HAVE_READLINK) || defined(PROTO) |
594 | 4331 /* |
4332 * Resolve a symlink in the last component of a file name. | |
4333 * Note that f_resolve() does it for every part of the path, we don't do that | |
4334 * here. | |
4335 * If it worked returns OK and the resolved link in "buf[MAXPATHL]". | |
4336 * Otherwise returns FAIL. | |
4337 */ | |
2214
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
4338 int |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4339 resolve_symlink(char_u *fname, char_u *buf) |
594 | 4340 { |
4341 char_u tmp[MAXPATHL]; | |
4342 int ret; | |
4343 int depth = 0; | |
4344 | |
4345 if (fname == NULL) | |
4346 return FAIL; | |
4347 | |
4348 /* Put the result so far in tmp[], starting with the original name. */ | |
4349 vim_strncpy(tmp, fname, MAXPATHL - 1); | |
4350 | |
4351 for (;;) | |
4352 { | |
4353 /* Limit symlink depth to 100, catch recursive loops. */ | |
4354 if (++depth == 100) | |
4355 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
4356 semsg(_("E773: Symlink loop for \"%s\""), fname); |
594 | 4357 return FAIL; |
4358 } | |
4359 | |
4360 ret = readlink((char *)tmp, (char *)buf, MAXPATHL - 1); | |
4361 if (ret <= 0) | |
4362 { | |
619 | 4363 if (errno == EINVAL || errno == ENOENT) |
594 | 4364 { |
619 | 4365 /* Found non-symlink or not existing file, stop here. |
1855 | 4366 * When at the first level use the unmodified name, skip the |
594 | 4367 * call to vim_FullName(). */ |
4368 if (depth == 1) | |
4369 return FAIL; | |
4370 | |
4371 /* Use the resolved name in tmp[]. */ | |
4372 break; | |
4373 } | |
4374 | |
4375 /* There must be some error reading links, use original name. */ | |
4376 return FAIL; | |
4377 } | |
4378 buf[ret] = NUL; | |
4379 | |
4380 /* | |
4381 * Check whether the symlink is relative or absolute. | |
4382 * If it's relative, build a new path based on the directory | |
4383 * portion of the filename (if any) and the path the symlink | |
4384 * points to. | |
4385 */ | |
4386 if (mch_isFullName(buf)) | |
4387 STRCPY(tmp, buf); | |
4388 else | |
4389 { | |
4390 char_u *tail; | |
4391 | |
4392 tail = gettail(tmp); | |
4393 if (STRLEN(tail) + STRLEN(buf) >= MAXPATHL) | |
4394 return FAIL; | |
4395 STRCPY(tail, buf); | |
4396 } | |
4397 } | |
4398 | |
4399 /* | |
4400 * Try to resolve the full name of the file so that the swapfile name will | |
4401 * be consistent even when opening a relative symlink from different | |
4402 * working directories. | |
4403 */ | |
4404 return vim_FullName(tmp, buf, MAXPATHL, TRUE); | |
4405 } | |
4406 #endif | |
4407 | |
7 | 4408 /* |
460 | 4409 * Make swap file name out of the file name and a directory name. |
4410 * Returns pointer to allocated memory or NULL. | |
7 | 4411 */ |
460 | 4412 char_u * |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4413 makeswapname( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4414 char_u *fname, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4415 char_u *ffname UNUSED, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4416 buf_T *buf, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4417 char_u *dir_name) |
7 | 4418 { |
4419 char_u *r, *s; | |
2145
de0e7ca61893
updated for version 7.2.427
Bram Moolenaar <bram@zimbu.org>
parents:
2108
diff
changeset
|
4420 char_u *fname_res = fname; |
594 | 4421 #ifdef HAVE_READLINK |
4422 char_u fname_buf[MAXPATHL]; | |
4423 #endif | |
7 | 4424 |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
4425 #if defined(UNIX) || defined(MSWIN) // Need _very_ long file names |
10996
2f041b367cd9
patch 8.0.0387: compiler warnings
Christian Brabandt <cb@256bit.org>
parents:
10952
diff
changeset
|
4426 int len = (int)STRLEN(dir_name); |
10896
d513b653f5d0
patch 8.0.0337: invalid memory access in :recover command
Christian Brabandt <cb@256bit.org>
parents:
10889
diff
changeset
|
4427 |
d513b653f5d0
patch 8.0.0337: invalid memory access in :recover command
Christian Brabandt <cb@256bit.org>
parents:
10889
diff
changeset
|
4428 s = dir_name + len; |
d513b653f5d0
patch 8.0.0337: invalid memory access in :recover command
Christian Brabandt <cb@256bit.org>
parents:
10889
diff
changeset
|
4429 if (after_pathsep(dir_name, s) && len > 1 && s[-1] == s[-2]) |
7 | 4430 { /* Ends with '//', Use Full path */ |
4431 r = NULL; | |
460 | 4432 if ((s = make_percent_swname(dir_name, fname)) != NULL) |
7 | 4433 { |
4434 r = modname(s, (char_u *)".swp", FALSE); | |
4435 vim_free(s); | |
4436 } | |
4437 return r; | |
4438 } | |
4439 #endif | |
4440 | |
594 | 4441 #ifdef HAVE_READLINK |
4442 /* Expand symlink in the file name, so that we put the swap file with the | |
4443 * actual file instead of with the symlink. */ | |
4444 if (resolve_symlink(fname, fname_buf) == OK) | |
4445 fname_res = fname_buf; | |
4446 #endif | |
4447 | |
7 | 4448 r = buf_modname( |
4449 (buf->b_p_sn || buf->b_shortname), | |
594 | 4450 fname_res, |
7 | 4451 (char_u *) |
2823 | 4452 #if defined(VMS) |
7 | 4453 "_swp", |
4454 #else | |
4455 ".swp", | |
4456 #endif | |
4457 /* Prepend a '.' to the swap file name for the current directory. */ | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
7961
diff
changeset
|
4458 dir_name[0] == '.' && dir_name[1] == NUL); |
7 | 4459 if (r == NULL) /* out of memory */ |
4460 return NULL; | |
4461 | |
4462 s = get_file_in_dir(r, dir_name); | |
4463 vim_free(r); | |
4464 return s; | |
4465 } | |
4466 | |
4467 /* | |
4468 * Get file name to use for swap file or backup file. | |
4469 * Use the name of the edited file "fname" and an entry in the 'dir' or 'bdir' | |
4470 * option "dname". | |
4471 * - If "dname" is ".", return "fname" (swap file in dir of file). | |
4472 * - If "dname" starts with "./", insert "dname" in "fname" (swap file | |
4473 * relative to dir of file). | |
4474 * - Otherwise, prepend "dname" to the tail of "fname" (swap file in specific | |
4475 * dir). | |
4476 * | |
4477 * The return value is an allocated string and can be NULL. | |
4478 */ | |
4479 char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4480 get_file_in_dir( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4481 char_u *fname, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4482 char_u *dname) /* don't use "dirname", it is a global for Alpha */ |
7 | 4483 { |
4484 char_u *t; | |
4485 char_u *tail; | |
4486 char_u *retval; | |
4487 int save_char; | |
4488 | |
4489 tail = gettail(fname); | |
4490 | |
4491 if (dname[0] == '.' && dname[1] == NUL) | |
4492 retval = vim_strsave(fname); | |
4493 else if (dname[0] == '.' && vim_ispathsep(dname[1])) | |
4494 { | |
4495 if (tail == fname) /* no path before file name */ | |
4496 retval = concat_fnames(dname + 2, tail, TRUE); | |
4497 else | |
4498 { | |
4499 save_char = *tail; | |
4500 *tail = NUL; | |
4501 t = concat_fnames(fname, dname + 2, TRUE); | |
4502 *tail = save_char; | |
4503 if (t == NULL) /* out of memory */ | |
4504 retval = NULL; | |
4505 else | |
4506 { | |
4507 retval = concat_fnames(t, tail, TRUE); | |
4508 vim_free(t); | |
4509 } | |
4510 } | |
4511 } | |
4512 else | |
4513 retval = concat_fnames(dname, tail, TRUE); | |
4514 | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
4515 #ifdef MSWIN |
5432 | 4516 if (retval != NULL) |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10996
diff
changeset
|
4517 for (t = gettail(retval); *t != NUL; MB_PTR_ADV(t)) |
5432 | 4518 if (*t == ':') |
4519 *t = '%'; | |
4520 #endif | |
4521 | |
7 | 4522 return retval; |
4523 } | |
4524 | |
580 | 4525 /* |
4526 * Print the ATTENTION message: info about an existing swap file. | |
4527 */ | |
4528 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4529 attention_message( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4530 buf_T *buf, /* buffer being edited */ |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4531 char_u *fname) /* swap file name */ |
580 | 4532 { |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9295
diff
changeset
|
4533 stat_T st; |
16621
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
4534 time_t swap_mtime; |
580 | 4535 |
4536 ++no_wait_return; | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
4537 (void)emsg(_("E325: ATTENTION")); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4538 msg_puts(_("\nFound a swap file by the name \"")); |
580 | 4539 msg_home_replace(fname); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4540 msg_puts("\"\n"); |
16621
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
4541 swap_mtime = swapfile_info(fname); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4542 msg_puts(_("While opening file \"")); |
580 | 4543 msg_outtrans(buf->b_fname); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4544 msg_puts("\"\n"); |
14923
95400980f7c9
patch 8.1.0473: user doesn't notice file does not exist when swap file does
Bram Moolenaar <Bram@vim.org>
parents:
14909
diff
changeset
|
4545 if (mch_stat((char *)buf->b_fname, &st) == -1) |
95400980f7c9
patch 8.1.0473: user doesn't notice file does not exist when swap file does
Bram Moolenaar <Bram@vim.org>
parents:
14909
diff
changeset
|
4546 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4547 msg_puts(_(" CANNOT BE FOUND")); |
14923
95400980f7c9
patch 8.1.0473: user doesn't notice file does not exist when swap file does
Bram Moolenaar <Bram@vim.org>
parents:
14909
diff
changeset
|
4548 } |
95400980f7c9
patch 8.1.0473: user doesn't notice file does not exist when swap file does
Bram Moolenaar <Bram@vim.org>
parents:
14909
diff
changeset
|
4549 else |
580 | 4550 { |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4551 msg_puts(_(" dated: ")); |
16621
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
4552 msg_puts(get_ctime(st.st_mtime, TRUE)); |
7ad3fc329e08
patch 8.1.1313: warnings for using localtime() and ctime()
Bram Moolenaar <Bram@vim.org>
parents:
16455
diff
changeset
|
4553 if (swap_mtime != 0 && st.st_mtime > swap_mtime) |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4554 msg_puts(_(" NEWER than swap file!\n")); |
580 | 4555 } |
4556 /* Some of these messages are long to allow translation to | |
4557 * other languages. */ | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4558 msg_puts(_("\n(1) Another program may be editing the same file. If this is the case,\n be careful not to end up with two different instances of the same\n file when making changes. Quit, or continue with caution.\n")); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4559 msg_puts(_("(2) An edit session for this file crashed.\n")); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4560 msg_puts(_(" If this is the case, use \":recover\" or \"vim -r ")); |
580 | 4561 msg_outtrans(buf->b_fname); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4562 msg_puts(_("\"\n to recover the changes (see \":help recovery\").\n")); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4563 msg_puts(_(" If you did this already, delete the swap file \"")); |
580 | 4564 msg_outtrans(fname); |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
4565 msg_puts(_("\"\n to avoid this message.\n")); |
580 | 4566 cmdline_row = msg_row; |
4567 --no_wait_return; | |
4568 } | |
4569 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
4570 #if defined(FEAT_EVAL) |
580 | 4571 /* |
4572 * Trigger the SwapExists autocommands. | |
4573 * Returns a value for equivalent to do_dialog() (see below): | |
4574 * 0: still need to ask for a choice | |
4575 * 1: open read-only | |
4576 * 2: edit anyway | |
4577 * 3: recover | |
4578 * 4: delete it | |
4579 * 5: quit | |
4580 * 6: abort | |
4581 */ | |
4582 static int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4583 do_swapexists(buf_T *buf, char_u *fname) |
580 | 4584 { |
4585 set_vim_var_string(VV_SWAPNAME, fname, -1); | |
4586 set_vim_var_string(VV_SWAPCHOICE, NULL, -1); | |
4587 | |
4588 /* Trigger SwapExists autocommands with <afile> set to the file being | |
1856 | 4589 * edited. Disallow changing directory here. */ |
4590 ++allbuf_lock; | |
580 | 4591 apply_autocmds(EVENT_SWAPEXISTS, buf->b_fname, NULL, FALSE, NULL); |
1856 | 4592 --allbuf_lock; |
580 | 4593 |
4594 set_vim_var_string(VV_SWAPNAME, NULL, -1); | |
4595 | |
4596 switch (*get_vim_var_str(VV_SWAPCHOICE)) | |
4597 { | |
4598 case 'o': return 1; | |
4599 case 'e': return 2; | |
4600 case 'r': return 3; | |
4601 case 'd': return 4; | |
4602 case 'q': return 5; | |
4603 case 'a': return 6; | |
4604 } | |
4605 | |
4606 return 0; | |
4607 } | |
4608 #endif | |
4609 | |
7 | 4610 /* |
4611 * Find out what name to use for the swap file for buffer 'buf'. | |
4612 * | |
4613 * Several names are tried to find one that does not exist | |
460 | 4614 * Returns the name in allocated memory or NULL. |
3158 | 4615 * When out of memory "dirp" is set to NULL. |
7 | 4616 * |
4617 * Note: If BASENAMELEN is not correct, you will get error messages for | |
2214
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
4618 * not being able to open the swap or undo file |
1856 | 4619 * Note: May trigger SwapExists autocmd, pointers may change! |
7 | 4620 */ |
4621 static char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4622 findswapname( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4623 buf_T *buf, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4624 char_u **dirp, /* pointer to list of directories */ |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
4625 char_u *old_fname) /* don't give warning for this file name */ |
7 | 4626 { |
4627 char_u *fname; | |
4628 int n; | |
4629 char_u *dir_name; | |
4630 #ifdef AMIGA | |
4631 BPTR fh; | |
4632 #endif | |
4633 int r; | |
5432 | 4634 char_u *buf_fname = buf->b_fname; |
7 | 4635 |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
7961
diff
changeset
|
4636 #if !defined(UNIX) |
7 | 4637 # define CREATE_DUMMY_FILE |
4638 FILE *dummyfd = NULL; | |
4639 | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
4640 # ifdef MSWIN |
5432 | 4641 if (buf_fname != NULL && !mch_isFullName(buf_fname) |
4642 && vim_strchr(gettail(buf_fname), ':')) | |
4643 { | |
4644 char_u *t; | |
4645 | |
4646 buf_fname = vim_strsave(buf_fname); | |
4647 if (buf_fname == NULL) | |
4648 buf_fname = buf->b_fname; | |
4649 else | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10996
diff
changeset
|
4650 for (t = gettail(buf_fname); *t != NUL; MB_PTR_ADV(t)) |
5432 | 4651 if (*t == ':') |
4652 *t = '%'; | |
4653 } | |
4654 # endif | |
4655 | |
2214
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
4656 /* |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
4657 * If we start editing a new file, e.g. "test.doc", which resides on an |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
4658 * MSDOS compatible filesystem, it is possible that the file |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
4659 * "test.doc.swp" which we create will be exactly the same file. To avoid |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
4660 * this problem we temporarily create "test.doc". Don't do this when the |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
4661 * check below for a 8.3 file name is used. |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
4662 */ |
5432 | 4663 if (!(buf->b_p_sn || buf->b_shortname) && buf_fname != NULL |
4664 && mch_getperm(buf_fname) < 0) | |
4665 dummyfd = mch_fopen((char *)buf_fname, "w"); | |
7 | 4666 #endif |
4667 | |
2214
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
4668 /* |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
4669 * Isolate a directory name from *dirp and put it in dir_name. |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
4670 * First allocate some memory to put the directory name in. |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
4671 */ |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4672 dir_name = alloc(STRLEN(*dirp) + 1); |
3158 | 4673 if (dir_name == NULL) |
4674 *dirp = NULL; | |
4675 else | |
7 | 4676 (void)copy_option_part(dirp, dir_name, 31000, ","); |
4677 | |
2214
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
4678 /* |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
4679 * we try different names until we find one that does not exist yet |
f8222d1f9a73
Included patch for persistent undo. Lots of changes and added test.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
4680 */ |
7 | 4681 if (dir_name == NULL) /* out of memory */ |
4682 fname = NULL; | |
4683 else | |
5432 | 4684 fname = makeswapname(buf_fname, buf->b_ffname, buf, dir_name); |
7 | 4685 |
4686 for (;;) | |
4687 { | |
4688 if (fname == NULL) /* must be out of memory */ | |
4689 break; | |
4690 if ((n = (int)STRLEN(fname)) == 0) /* safety check */ | |
4691 { | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12975
diff
changeset
|
4692 VIM_CLEAR(fname); |
7 | 4693 break; |
4694 } | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
7961
diff
changeset
|
4695 #if defined(UNIX) |
7 | 4696 /* |
4697 * Some systems have a MS-DOS compatible filesystem that use 8.3 character | |
4698 * file names. If this is the first try and the swap file name does not fit in | |
4699 * 8.3, detect if this is the case, set shortname and try again. | |
4700 */ | |
4701 if (fname[n - 2] == 'w' && fname[n - 1] == 'p' | |
4702 && !(buf->b_p_sn || buf->b_shortname)) | |
4703 { | |
4704 char_u *tail; | |
4705 char_u *fname2; | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9295
diff
changeset
|
4706 stat_T s1, s2; |
7 | 4707 int f1, f2; |
4708 int created1 = FALSE, created2 = FALSE; | |
4709 int same = FALSE; | |
4710 | |
4711 /* | |
4712 * Check if swapfile name does not fit in 8.3: | |
4713 * It either contains two dots, is longer than 8 chars, or starts | |
4714 * with a dot. | |
4715 */ | |
5432 | 4716 tail = gettail(buf_fname); |
7 | 4717 if ( vim_strchr(tail, '.') != NULL |
4718 || STRLEN(tail) > (size_t)8 | |
4719 || *gettail(fname) == '.') | |
4720 { | |
4721 fname2 = alloc(n + 2); | |
4722 if (fname2 != NULL) | |
4723 { | |
4724 STRCPY(fname2, fname); | |
4725 /* if fname == "xx.xx.swp", fname2 = "xx.xx.swx" | |
4726 * if fname == ".xx.swp", fname2 = ".xx.swpx" | |
4727 * if fname == "123456789.swp", fname2 = "12345678x.swp" | |
4728 */ | |
4729 if (vim_strchr(tail, '.') != NULL) | |
4730 fname2[n - 1] = 'x'; | |
4731 else if (*gettail(fname) == '.') | |
4732 { | |
4733 fname2[n] = 'x'; | |
4734 fname2[n + 1] = NUL; | |
4735 } | |
4736 else | |
4737 fname2[n - 5] += 1; | |
4738 /* | |
4739 * may need to create the files to be able to use mch_stat() | |
4740 */ | |
4741 f1 = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0); | |
4742 if (f1 < 0) | |
4743 { | |
4744 f1 = mch_open_rw((char *)fname, | |
4745 O_RDWR|O_CREAT|O_EXCL|O_EXTRA); | |
4746 created1 = TRUE; | |
4747 } | |
4748 if (f1 >= 0) | |
4749 { | |
4750 f2 = mch_open((char *)fname2, O_RDONLY | O_EXTRA, 0); | |
4751 if (f2 < 0) | |
4752 { | |
4753 f2 = mch_open_rw((char *)fname2, | |
4754 O_RDWR|O_CREAT|O_EXCL|O_EXTRA); | |
4755 created2 = TRUE; | |
4756 } | |
4757 if (f2 >= 0) | |
4758 { | |
4759 /* | |
4760 * Both files exist now. If mch_stat() returns the | |
4761 * same device and inode they are the same file. | |
4762 */ | |
4763 if (mch_fstat(f1, &s1) != -1 | |
4764 && mch_fstat(f2, &s2) != -1 | |
4765 && s1.st_dev == s2.st_dev | |
4766 && s1.st_ino == s2.st_ino) | |
4767 same = TRUE; | |
4768 close(f2); | |
4769 if (created2) | |
4770 mch_remove(fname2); | |
4771 } | |
4772 close(f1); | |
4773 if (created1) | |
4774 mch_remove(fname); | |
4775 } | |
4776 vim_free(fname2); | |
4777 if (same) | |
4778 { | |
4779 buf->b_shortname = TRUE; | |
4780 vim_free(fname); | |
5432 | 4781 fname = makeswapname(buf_fname, buf->b_ffname, |
460 | 4782 buf, dir_name); |
7 | 4783 continue; /* try again with b_shortname set */ |
4784 } | |
4785 } | |
4786 } | |
4787 } | |
4788 #endif | |
4789 /* | |
4790 * check if the swapfile already exists | |
4791 */ | |
4792 if (mch_getperm(fname) < 0) /* it does not exist */ | |
4793 { | |
4794 #ifdef HAVE_LSTAT | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9295
diff
changeset
|
4795 stat_T sb; |
7 | 4796 |
4797 /* | |
4798 * Extra security check: When a swap file is a symbolic link, this | |
4799 * is most likely a symlink attack. | |
4800 */ | |
4801 if (mch_lstat((char *)fname, &sb) < 0) | |
4802 #else | |
4803 # ifdef AMIGA | |
4804 fh = Open((UBYTE *)fname, (long)MODE_NEWFILE); | |
4805 /* | |
4806 * on the Amiga mch_getperm() will return -1 when the file exists | |
4807 * but is being used by another program. This happens if you edit | |
4808 * a file twice. | |
4809 */ | |
4810 if (fh != (BPTR)NULL) /* can open file, OK */ | |
4811 { | |
4812 Close(fh); | |
4813 mch_remove(fname); | |
4814 break; | |
4815 } | |
4816 if (IoErr() != ERROR_OBJECT_IN_USE | |
4817 && IoErr() != ERROR_OBJECT_EXISTS) | |
4818 # endif | |
4819 #endif | |
4820 break; | |
4821 } | |
4822 | |
4823 /* | |
4824 * A file name equal to old_fname is OK to use. | |
4825 */ | |
4826 if (old_fname != NULL && fnamecmp(fname, old_fname) == 0) | |
4827 break; | |
4828 | |
4829 /* | |
4830 * get here when file already exists | |
4831 */ | |
4832 if (fname[n - 2] == 'w' && fname[n - 1] == 'p') /* first try */ | |
4833 { | |
4834 /* | |
4835 * on MS-DOS compatible filesystems (e.g. messydos) file.doc.swp | |
4836 * and file.doc are the same file. To guess if this problem is | |
4837 * present try if file.doc.swx exists. If it does, we set | |
4838 * buf->b_shortname and try file_doc.swp (dots replaced by | |
4839 * underscores for this file), and try again. If it doesn't we | |
4840 * assume that "file.doc.swp" already exists. | |
4841 */ | |
4842 if (!(buf->b_p_sn || buf->b_shortname)) /* not tried yet */ | |
4843 { | |
4844 fname[n - 1] = 'x'; | |
4845 r = mch_getperm(fname); /* try "file.swx" */ | |
4846 fname[n - 1] = 'p'; | |
4847 if (r >= 0) /* "file.swx" seems to exist */ | |
4848 { | |
4849 buf->b_shortname = TRUE; | |
4850 vim_free(fname); | |
5432 | 4851 fname = makeswapname(buf_fname, buf->b_ffname, |
460 | 4852 buf, dir_name); |
7 | 4853 continue; /* try again with '.' replaced with '_' */ |
4854 } | |
4855 } | |
4856 /* | |
4857 * If we get here the ".swp" file really exists. | |
4858 * Give an error message, unless recovering, no file name, we are | |
4859 * viewing a help file or when the path of the file is different | |
4860 * (happens when all .swp files are in one directory). | |
4861 */ | |
5432 | 4862 if (!recoverymode && buf_fname != NULL |
43 | 4863 && !buf->b_help && !(buf->b_flags & BF_DUMMY)) |
7 | 4864 { |
4865 int fd; | |
4866 struct block0 b0; | |
4867 int differ = FALSE; | |
4868 | |
4869 /* | |
4870 * Try to read block 0 from the swap file to get the original | |
4871 * file name (and inode number). | |
4872 */ | |
4873 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0); | |
4874 if (fd >= 0) | |
4875 { | |
2664 | 4876 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0)) |
7 | 4877 { |
4878 /* | |
39 | 4879 * If the swapfile has the same directory as the |
4880 * buffer don't compare the directory names, they can | |
4881 * have a different mountpoint. | |
7 | 4882 */ |
39 | 4883 if (b0.b0_flags & B0_SAME_DIR) |
4884 { | |
4885 if (fnamecmp(gettail(buf->b_ffname), | |
4886 gettail(b0.b0_fname)) != 0 | |
4887 || !same_directory(fname, buf->b_ffname)) | |
594 | 4888 { |
4889 #ifdef CHECK_INODE | |
4890 /* Symlinks may point to the same file even | |
4891 * when the name differs, need to check the | |
4892 * inode too. */ | |
4893 expand_env(b0.b0_fname, NameBuff, MAXPATHL); | |
4894 if (fnamecmp_ino(buf->b_ffname, NameBuff, | |
4895 char_to_long(b0.b0_ino))) | |
4896 #endif | |
4897 differ = TRUE; | |
4898 } | |
39 | 4899 } |
4900 else | |
4901 { | |
4902 /* | |
4903 * The name in the swap file may be | |
4904 * "~user/path/file". Expand it first. | |
4905 */ | |
4906 expand_env(b0.b0_fname, NameBuff, MAXPATHL); | |
7 | 4907 #ifdef CHECK_INODE |
39 | 4908 if (fnamecmp_ino(buf->b_ffname, NameBuff, |
594 | 4909 char_to_long(b0.b0_ino))) |
39 | 4910 differ = TRUE; |
7 | 4911 #else |
39 | 4912 if (fnamecmp(NameBuff, buf->b_ffname) != 0) |
4913 differ = TRUE; | |
7 | 4914 #endif |
39 | 4915 } |
7 | 4916 } |
4917 close(fd); | |
4918 } | |
4919 | |
4920 /* give the ATTENTION message when there is an old swap file | |
4921 * for the current file, and the buffer was not recovered. */ | |
4922 if (differ == FALSE && !(curbuf->b_flags & BF_RECOVERED) | |
4923 && vim_strchr(p_shm, SHM_ATTENTION) == NULL) | |
4924 { | |
580 | 4925 int choice = 0; |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
4926 stat_T st; |
7 | 4927 #ifdef CREATE_DUMMY_FILE |
4928 int did_use_dummy = FALSE; | |
4929 | |
4930 /* Avoid getting a warning for the file being created | |
4931 * outside of Vim, it was created at the start of this | |
4932 * function. Delete the file now, because Vim might exit | |
4933 * here if the window is closed. */ | |
4934 if (dummyfd != NULL) | |
4935 { | |
4936 fclose(dummyfd); | |
4937 dummyfd = NULL; | |
5432 | 4938 mch_remove(buf_fname); |
7 | 4939 did_use_dummy = TRUE; |
4940 } | |
4941 #endif | |
4942 | |
16455
1ae13586edf8
patch 8.1.1232: can't build on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
4943 #ifdef HAVE_PROCESS_STILL_RUNNING |
7 | 4944 process_still_running = FALSE; |
4945 #endif | |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
4946 // It's safe to delete the swap file if all these are true: |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
4947 // - the edited file exists |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
4948 // - the swap file has no changes and looks OK |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
4949 if (mch_stat((char *)buf->b_fname, &st) == 0 |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
4950 && swapfile_unchanged(fname)) |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
4951 { |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
4952 choice = 4; |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
4953 if (p_verbose > 0) |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
4954 verb_msg(_("Found a swap file that is not useful, deleting it")); |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
4955 } |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
4956 |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
4957 #if defined(FEAT_EVAL) |
580 | 4958 /* |
4959 * If there is an SwapExists autocommand and we can handle | |
4960 * the response, trigger it. It may return 0 to ask the | |
4961 * user anyway. | |
4962 */ | |
16453
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
4963 if (choice == 0 |
4e9bea9b8025
patch 8.1.1231: asking about existing swap file unnecessarily
Bram Moolenaar <Bram@vim.org>
parents:
16451
diff
changeset
|
4964 && swap_exists_action != SEA_NONE |
5432 | 4965 && has_autocmd(EVENT_SWAPEXISTS, buf_fname, buf)) |
580 | 4966 choice = do_swapexists(buf, fname); |
4967 | |
4968 if (choice == 0) | |
4969 #endif | |
7 | 4970 { |
580 | 4971 #ifdef FEAT_GUI |
14903
c1ee9f32bec3
patch 8.1.0463: "simalt ~x" in .vimrc blocks swap file prompt
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
4972 // If we are supposed to start the GUI but it wasn't |
c1ee9f32bec3
patch 8.1.0463: "simalt ~x" in .vimrc blocks swap file prompt
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
4973 // completely started yet, start it now. This makes |
c1ee9f32bec3
patch 8.1.0463: "simalt ~x" in .vimrc blocks swap file prompt
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
4974 // the messages displayed in the Vim window when |
c1ee9f32bec3
patch 8.1.0463: "simalt ~x" in .vimrc blocks swap file prompt
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
4975 // loading a session from the .gvimrc file. |
580 | 4976 if (gui.starting && !gui.in_use) |
16451
7ae2396cef62
patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents:
16162
diff
changeset
|
4977 gui_start(NULL); |
580 | 4978 #endif |
14903
c1ee9f32bec3
patch 8.1.0463: "simalt ~x" in .vimrc blocks swap file prompt
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
4979 // Show info about the existing swap file. |
580 | 4980 attention_message(buf, fname); |
4981 | |
14903
c1ee9f32bec3
patch 8.1.0463: "simalt ~x" in .vimrc blocks swap file prompt
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
4982 // We don't want a 'q' typed at the more-prompt |
c1ee9f32bec3
patch 8.1.0463: "simalt ~x" in .vimrc blocks swap file prompt
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
4983 // interrupt loading a file. |
580 | 4984 got_int = FALSE; |
14903
c1ee9f32bec3
patch 8.1.0463: "simalt ~x" in .vimrc blocks swap file prompt
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
4985 |
c1ee9f32bec3
patch 8.1.0463: "simalt ~x" in .vimrc blocks swap file prompt
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
4986 // If vimrc has "simalt ~x" we don't want it to |
c1ee9f32bec3
patch 8.1.0463: "simalt ~x" in .vimrc blocks swap file prompt
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
4987 // interfere with the prompt here. |
14909
c97b4b537572
patch 8.1.0466: autocmd test fails
Bram Moolenaar <Bram@vim.org>
parents:
14903
diff
changeset
|
4988 flush_buffers(FLUSH_TYPEAHEAD); |
7 | 4989 } |
4990 | |
4991 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
580 | 4992 if (swap_exists_action != SEA_NONE && choice == 0) |
7 | 4993 { |
4994 char_u *name; | |
4995 | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4996 name = alloc(STRLEN(fname) |
7 | 4997 + STRLEN(_("Swap file \"")) |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16738
diff
changeset
|
4998 + STRLEN(_("\" already exists!")) + 5); |
7 | 4999 if (name != NULL) |
5000 { | |
5001 STRCPY(name, _("Swap file \"")); | |
5002 home_replace(NULL, fname, name + STRLEN(name), | |
5003 1000, TRUE); | |
5004 STRCAT(name, _("\" already exists!")); | |
5005 } | |
580 | 5006 choice = do_dialog(VIM_WARNING, |
7 | 5007 (char_u *)_("VIM - ATTENTION"), |
5008 name == NULL | |
5009 ? (char_u *)_("Swap file already exists!") | |
5010 : name, | |
16455
1ae13586edf8
patch 8.1.1232: can't build on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
5011 # ifdef HAVE_PROCESS_STILL_RUNNING |
7 | 5012 process_still_running |
5013 ? (char_u *)_("&Open Read-Only\n&Edit anyway\n&Recover\n&Quit\n&Abort") : | |
5014 # endif | |
2684 | 5015 (char_u *)_("&Open Read-Only\n&Edit anyway\n&Recover\n&Delete it\n&Quit\n&Abort"), 1, NULL, FALSE); |
580 | 5016 |
16455
1ae13586edf8
patch 8.1.1232: can't build on MS-Windows
Bram Moolenaar <Bram@vim.org>
parents:
16453
diff
changeset
|
5017 # ifdef HAVE_PROCESS_STILL_RUNNING |
580 | 5018 if (process_still_running && choice >= 4) |
5019 choice++; /* Skip missing "Delete it" button */ | |
5020 # endif | |
5021 vim_free(name); | |
5022 | |
5023 /* pretend screen didn't scroll, need redraw anyway */ | |
5024 msg_scrolled = 0; | |
5025 redraw_all_later(NOT_VALID); | |
5026 } | |
5027 #endif | |
5028 | |
5029 if (choice > 0) | |
5030 { | |
5031 switch (choice) | |
7 | 5032 { |
5033 case 1: | |
5034 buf->b_p_ro = TRUE; | |
5035 break; | |
5036 case 2: | |
5037 break; | |
5038 case 3: | |
5039 swap_exists_action = SEA_RECOVER; | |
5040 break; | |
5041 case 4: | |
580 | 5042 mch_remove(fname); |
5043 break; | |
5044 case 5: | |
7 | 5045 swap_exists_action = SEA_QUIT; |
5046 break; | |
580 | 5047 case 6: |
7 | 5048 swap_exists_action = SEA_QUIT; |
5049 got_int = TRUE; | |
5050 break; | |
5051 } | |
5052 | |
5053 /* If the file was deleted this fname can be used. */ | |
5054 if (mch_getperm(fname) < 0) | |
5055 break; | |
5056 } | |
5057 else | |
5058 { | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
5059 msg_puts("\n"); |
625 | 5060 if (msg_silent == 0) |
5061 /* call wait_return() later */ | |
5062 need_wait_return = TRUE; | |
7 | 5063 } |
5064 | |
5065 #ifdef CREATE_DUMMY_FILE | |
5066 /* Going to try another name, need the dummy file again. */ | |
5067 if (did_use_dummy) | |
5432 | 5068 dummyfd = mch_fopen((char *)buf_fname, "w"); |
7 | 5069 #endif |
5070 } | |
5071 } | |
5072 } | |
5073 | |
5074 /* | |
5075 * Change the ".swp" extension to find another file that can be used. | |
5076 * First decrement the last char: ".swo", ".swn", etc. | |
5077 * If that still isn't enough decrement the last but one char: ".svz" | |
9 | 5078 * Can happen when editing many "No Name" buffers. |
7 | 5079 */ |
5080 if (fname[n - 1] == 'a') /* ".s?a" */ | |
5081 { | |
5082 if (fname[n - 2] == 'a') /* ".saa": tried enough, give up */ | |
5083 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15361
diff
changeset
|
5084 emsg(_("E326: Too many swap files found")); |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12975
diff
changeset
|
5085 VIM_CLEAR(fname); |
7 | 5086 break; |
5087 } | |
5088 --fname[n - 2]; /* ".svz", ".suz", etc. */ | |
5089 fname[n - 1] = 'z' + 1; | |
5090 } | |
5091 --fname[n - 1]; /* ".swo", ".swn", etc. */ | |
5092 } | |
5093 | |
5094 vim_free(dir_name); | |
5095 #ifdef CREATE_DUMMY_FILE | |
5096 if (dummyfd != NULL) /* file has been created temporarily */ | |
5097 { | |
5098 fclose(dummyfd); | |
5432 | 5099 mch_remove(buf_fname); |
7 | 5100 } |
5101 #endif | |
15868
7fad90423bd2
patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15636
diff
changeset
|
5102 #ifdef MSWIN |
5432 | 5103 if (buf_fname != buf->b_fname) |
5104 vim_free(buf_fname); | |
5105 #endif | |
7 | 5106 return fname; |
5107 } | |
5108 | |
5109 static int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5110 b0_magic_wrong(ZERO_BL *b0p) |
7 | 5111 { |
5112 return (b0p->b0_magic_long != (long)B0_MAGIC_LONG | |
5113 || b0p->b0_magic_int != (int)B0_MAGIC_INT | |
5114 || b0p->b0_magic_short != (short)B0_MAGIC_SHORT | |
5115 || b0p->b0_magic_char != B0_MAGIC_CHAR); | |
5116 } | |
5117 | |
5118 #ifdef CHECK_INODE | |
5119 /* | |
5120 * Compare current file name with file name from swap file. | |
5121 * Try to use inode numbers when possible. | |
5122 * Return non-zero when files are different. | |
5123 * | |
5124 * When comparing file names a few things have to be taken into consideration: | |
5125 * - When working over a network the full path of a file depends on the host. | |
5126 * We check the inode number if possible. It is not 100% reliable though, | |
5127 * because the device number cannot be used over a network. | |
5128 * - When a file does not exist yet (editing a new file) there is no inode | |
5129 * number. | |
5130 * - The file name in a swap file may not be valid on the current host. The | |
5131 * "~user" form is used whenever possible to avoid this. | |
5132 * | |
5133 * This is getting complicated, let's make a table: | |
5134 * | |
5135 * ino_c ino_s fname_c fname_s differ = | |
5136 * | |
5137 * both files exist -> compare inode numbers: | |
5138 * != 0 != 0 X X ino_c != ino_s | |
5139 * | |
5140 * inode number(s) unknown, file names available -> compare file names | |
5141 * == 0 X OK OK fname_c != fname_s | |
5142 * X == 0 OK OK fname_c != fname_s | |
5143 * | |
5144 * current file doesn't exist, file for swap file exist, file name(s) not | |
5145 * available -> probably different | |
5146 * == 0 != 0 FAIL X TRUE | |
5147 * == 0 != 0 X FAIL TRUE | |
5148 * | |
5149 * current file exists, inode for swap unknown, file name(s) not | |
5150 * available -> probably different | |
5151 * != 0 == 0 FAIL X TRUE | |
5152 * != 0 == 0 X FAIL TRUE | |
5153 * | |
5154 * current file doesn't exist, inode for swap unknown, one file name not | |
5155 * available -> probably different | |
5156 * == 0 == 0 FAIL OK TRUE | |
5157 * == 0 == 0 OK FAIL TRUE | |
5158 * | |
5159 * current file doesn't exist, inode for swap unknown, both file names not | |
13896
4d5a1ada407e
patch 8.0.1819: swap file warning for file with non-existing directory
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
5160 * available -> compare file names |
4d5a1ada407e
patch 8.0.1819: swap file warning for file with non-existing directory
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
5161 * == 0 == 0 FAIL FAIL fname_c != fname_s |
7 | 5162 * |
5163 * Note that when the ino_t is 64 bits, only the last 32 will be used. This | |
5164 * can't be changed without making the block 0 incompatible with 32 bit | |
5165 * versions. | |
5166 */ | |
5167 | |
5168 static int | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5169 fnamecmp_ino( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5170 char_u *fname_c, /* current file name */ |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5171 char_u *fname_s, /* file name from swap file */ |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5172 long ino_block0) |
7 | 5173 { |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9295
diff
changeset
|
5174 stat_T st; |
7 | 5175 ino_t ino_c = 0; /* ino of current file */ |
5176 ino_t ino_s; /* ino of file from swap file */ | |
5177 char_u buf_c[MAXPATHL]; /* full path of fname_c */ | |
5178 char_u buf_s[MAXPATHL]; /* full path of fname_s */ | |
5179 int retval_c; /* flag: buf_c valid */ | |
5180 int retval_s; /* flag: buf_s valid */ | |
5181 | |
5182 if (mch_stat((char *)fname_c, &st) == 0) | |
5183 ino_c = (ino_t)st.st_ino; | |
5184 | |
5185 /* | |
5186 * First we try to get the inode from the file name, because the inode in | |
5187 * the swap file may be outdated. If that fails (e.g. this path is not | |
5188 * valid on this machine), use the inode from block 0. | |
5189 */ | |
5190 if (mch_stat((char *)fname_s, &st) == 0) | |
5191 ino_s = (ino_t)st.st_ino; | |
5192 else | |
5193 ino_s = (ino_t)ino_block0; | |
5194 | |
5195 if (ino_c && ino_s) | |
5196 return (ino_c != ino_s); | |
5197 | |
5198 /* | |
5199 * One of the inode numbers is unknown, try a forced vim_FullName() and | |
5200 * compare the file names. | |
5201 */ | |
5202 retval_c = vim_FullName(fname_c, buf_c, MAXPATHL, TRUE); | |
5203 retval_s = vim_FullName(fname_s, buf_s, MAXPATHL, TRUE); | |
5204 if (retval_c == OK && retval_s == OK) | |
13896
4d5a1ada407e
patch 8.0.1819: swap file warning for file with non-existing directory
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
5205 return STRCMP(buf_c, buf_s) != 0; |
7 | 5206 |
5207 /* | |
5208 * Can't compare inodes or file names, guess that the files are different, | |
13896
4d5a1ada407e
patch 8.0.1819: swap file warning for file with non-existing directory
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
5209 * unless both appear not to exist at all, then compare with the file name |
4d5a1ada407e
patch 8.0.1819: swap file warning for file with non-existing directory
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
5210 * in the swap file. |
7 | 5211 */ |
5212 if (ino_s == 0 && ino_c == 0 && retval_c == FAIL && retval_s == FAIL) | |
13896
4d5a1ada407e
patch 8.0.1819: swap file warning for file with non-existing directory
Christian Brabandt <cb@256bit.org>
parents:
13632
diff
changeset
|
5213 return STRCMP(fname_c, fname_s) != 0; |
7 | 5214 return TRUE; |
5215 } | |
5216 #endif /* CHECK_INODE */ | |
5217 | |
5218 /* | |
5219 * Move a long integer into a four byte character array. | |
5220 * Used for machine independency in block zero. | |
5221 */ | |
5222 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5223 long_to_char(long n, char_u *s) |
7 | 5224 { |
5225 s[0] = (char_u)(n & 0xff); | |
5226 n = (unsigned)n >> 8; | |
5227 s[1] = (char_u)(n & 0xff); | |
5228 n = (unsigned)n >> 8; | |
5229 s[2] = (char_u)(n & 0xff); | |
5230 n = (unsigned)n >> 8; | |
5231 s[3] = (char_u)(n & 0xff); | |
5232 } | |
5233 | |
5234 static long | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5235 char_to_long(char_u *s) |
7 | 5236 { |
5237 long retval; | |
5238 | |
5239 retval = s[3]; | |
5240 retval <<= 8; | |
5241 retval |= s[2]; | |
5242 retval <<= 8; | |
5243 retval |= s[1]; | |
5244 retval <<= 8; | |
5245 retval |= s[0]; | |
5246 | |
5247 return retval; | |
5248 } | |
5249 | |
39 | 5250 /* |
5251 * Set the flags in the first block of the swap file: | |
5252 * - file is modified or not: buf->b_changed | |
5253 * - 'fileformat' | |
5254 * - 'fileencoding' | |
5255 */ | |
7 | 5256 void |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5257 ml_setflags(buf_T *buf) |
7 | 5258 { |
5259 bhdr_T *hp; | |
5260 ZERO_BL *b0p; | |
5261 | |
5262 if (!buf->b_ml.ml_mfp) | |
5263 return; | |
5264 for (hp = buf->b_ml.ml_mfp->mf_used_last; hp != NULL; hp = hp->bh_prev) | |
5265 { | |
5266 if (hp->bh_bnum == 0) | |
5267 { | |
5268 b0p = (ZERO_BL *)(hp->bh_data); | |
39 | 5269 b0p->b0_dirty = buf->b_changed ? B0_DIRTY : 0; |
5270 b0p->b0_flags = (b0p->b0_flags & ~B0_FF_MASK) | |
5271 | (get_fileformat(buf) + 1); | |
5272 add_b0_fenc(b0p, buf); | |
7 | 5273 hp->bh_flags |= BH_DIRTY; |
5274 mf_sync(buf->b_ml.ml_mfp, MFS_ZERO); | |
5275 break; | |
5276 } | |
5277 } | |
5278 } | |
5279 | |
2267 | 5280 #if defined(FEAT_CRYPT) || defined(PROTO) |
5281 /* | |
5282 * If "data" points to a data block encrypt the text in it and return a copy | |
5283 * in allocated memory. Return NULL when out of memory. | |
5284 * Otherwise return "data". | |
5285 */ | |
5286 char_u * | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5287 ml_encrypt_data( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5288 memfile_T *mfp, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5289 char_u *data, |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9295
diff
changeset
|
5290 off_T offset, |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5291 unsigned size) |
2267 | 5292 { |
5293 DATA_BL *dp = (DATA_BL *)data; | |
5294 char_u *head_end; | |
5295 char_u *text_start; | |
5296 char_u *new_data; | |
5297 int text_len; | |
6122 | 5298 cryptstate_T *state; |
2267 | 5299 |
5300 if (dp->db_id != DATA_ID) | |
5301 return data; | |
5302 | |
6817 | 5303 state = ml_crypt_prepare(mfp, offset, FALSE); |
5304 if (state == NULL) | |
5305 return data; | |
5306 | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16786
diff
changeset
|
5307 new_data = alloc(size); |
2267 | 5308 if (new_data == NULL) |
5309 return NULL; | |
5310 head_end = (char_u *)(&dp->db_index[dp->db_line_count]); | |
5311 text_start = (char_u *)dp + dp->db_txt_start; | |
5312 text_len = size - dp->db_txt_start; | |
5313 | |
5314 /* Copy the header and the text. */ | |
5315 mch_memmove(new_data, dp, head_end - (char_u *)dp); | |
5316 | |
5317 /* Encrypt the text. */ | |
6122 | 5318 crypt_encode(state, text_start, text_len, new_data + dp->db_txt_start); |
5319 crypt_free_state(state); | |
2267 | 5320 |
5321 /* Clear the gap. */ | |
5322 if (head_end < text_start) | |
5323 vim_memset(new_data + (head_end - data), 0, text_start - head_end); | |
5324 | |
5325 return new_data; | |
5326 } | |
5327 | |
5328 /* | |
6817 | 5329 * Decrypt the text in "data" if it points to an encrypted data block. |
2267 | 5330 */ |
5331 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5332 ml_decrypt_data( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5333 memfile_T *mfp, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5334 char_u *data, |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9295
diff
changeset
|
5335 off_T offset, |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5336 unsigned size) |
2267 | 5337 { |
5338 DATA_BL *dp = (DATA_BL *)data; | |
5339 char_u *head_end; | |
5340 char_u *text_start; | |
5341 int text_len; | |
6122 | 5342 cryptstate_T *state; |
2267 | 5343 |
5344 if (dp->db_id == DATA_ID) | |
5345 { | |
5346 head_end = (char_u *)(&dp->db_index[dp->db_line_count]); | |
5347 text_start = (char_u *)dp + dp->db_txt_start; | |
5348 text_len = dp->db_txt_end - dp->db_txt_start; | |
5349 | |
5350 if (head_end > text_start || dp->db_txt_start > size | |
5351 || dp->db_txt_end > size) | |
5352 return; /* data was messed up */ | |
5353 | |
6122 | 5354 state = ml_crypt_prepare(mfp, offset, TRUE); |
6817 | 5355 if (state != NULL) |
5356 { | |
5357 /* Decrypt the text in place. */ | |
5358 crypt_decode_inplace(state, text_start, text_len); | |
5359 crypt_free_state(state); | |
5360 } | |
2267 | 5361 } |
5362 } | |
5363 | |
5364 /* | |
5365 * Prepare for encryption/decryption, using the key, seed and offset. | |
6122 | 5366 * Return an allocated cryptstate_T *. |
2267 | 5367 */ |
6122 | 5368 static cryptstate_T * |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9295
diff
changeset
|
5369 ml_crypt_prepare(memfile_T *mfp, off_T offset, int reading) |
2267 | 5370 { |
5371 buf_T *buf = mfp->mf_buffer; | |
5372 char_u salt[50]; | |
6122 | 5373 int method_nr; |
2267 | 5374 char_u *key; |
5375 char_u *seed; | |
5376 | |
5377 if (reading && mfp->mf_old_key != NULL) | |
5378 { | |
5379 /* Reading back blocks with the previous key/method/seed. */ | |
6122 | 5380 method_nr = mfp->mf_old_cm; |
2267 | 5381 key = mfp->mf_old_key; |
5382 seed = mfp->mf_old_seed; | |
5383 } | |
5384 else | |
5385 { | |
6122 | 5386 method_nr = crypt_get_method_nr(buf); |
2267 | 5387 key = buf->b_p_key; |
5388 seed = mfp->mf_seed; | |
5389 } | |
6817 | 5390 if (*key == NUL) |
5391 return NULL; | |
2267 | 5392 |
6122 | 5393 if (method_nr == CRYPT_M_ZIP) |
2267 | 5394 { |
6122 | 5395 /* For PKzip: Append the offset to the key, so that we use a different |
5396 * key for every block. */ | |
2267 | 5397 vim_snprintf((char *)salt, sizeof(salt), "%s%ld", key, (long)offset); |
6122 | 5398 return crypt_create(method_nr, salt, NULL, 0, NULL, 0); |
2267 | 5399 } |
6122 | 5400 |
5401 /* Using blowfish or better: add salt and seed. We use the byte offset | |
5402 * of the block for the salt. */ | |
5403 vim_snprintf((char *)salt, sizeof(salt), "%ld", (long)offset); | |
5404 return crypt_create(method_nr, key, salt, (int)STRLEN(salt), | |
5405 seed, MF_SEED_LEN); | |
2267 | 5406 } |
5407 | |
5408 #endif | |
5409 | |
5410 | |
7 | 5411 #if defined(FEAT_BYTEOFF) || defined(PROTO) |
5412 | |
5413 #define MLCS_MAXL 800 /* max no of lines in chunk */ | |
5414 #define MLCS_MINL 400 /* should be half of MLCS_MAXL */ | |
5415 | |
5416 /* | |
2407
6bc102a4bff8
Fix memory access to 'cryptmethod' during recovery. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
5417 * Keep information for finding byte offset of a line, updtype may be one of: |
7 | 5418 * ML_CHNK_ADDLINE: Add len to parent chunk, possibly splitting it |
5419 * Careful: ML_CHNK_ADDLINE may cause ml_find_line() to be called. | |
5420 * ML_CHNK_DELLINE: Subtract len from parent chunk, possibly deleting it | |
5421 * ML_CHNK_UPDLINE: Add len to parent chunk, as a signed entity. | |
5422 */ | |
5423 static void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5424 ml_updatechunk( |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5425 buf_T *buf, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5426 linenr_T line, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5427 long len, |
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5428 int updtype) |
7 | 5429 { |
5430 static buf_T *ml_upd_lastbuf = NULL; | |
5431 static linenr_T ml_upd_lastline; | |
5432 static linenr_T ml_upd_lastcurline; | |
5433 static int ml_upd_lastcurix; | |
5434 | |
5435 linenr_T curline = ml_upd_lastcurline; | |
5436 int curix = ml_upd_lastcurix; | |
5437 long size; | |
5438 chunksize_T *curchnk; | |
5439 int rest; | |
5440 bhdr_T *hp; | |
5441 DATA_BL *dp; | |
5442 | |
5443 if (buf->b_ml.ml_usedchunks == -1 || len == 0) | |
5444 return; | |
5445 if (buf->b_ml.ml_chunksize == NULL) | |
5446 { | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16786
diff
changeset
|
5447 buf->b_ml.ml_chunksize = ALLOC_MULT(chunksize_T, 100); |
7 | 5448 if (buf->b_ml.ml_chunksize == NULL) |
5449 { | |
5450 buf->b_ml.ml_usedchunks = -1; | |
5451 return; | |
5452 } | |
5453 buf->b_ml.ml_numchunks = 100; | |
5454 buf->b_ml.ml_usedchunks = 1; | |
5455 buf->b_ml.ml_chunksize[0].mlcs_numlines = 1; | |
5456 buf->b_ml.ml_chunksize[0].mlcs_totalsize = 1; | |
5457 } | |
5458 | |
5459 if (updtype == ML_CHNK_UPDLINE && buf->b_ml.ml_line_count == 1) | |
5460 { | |
5461 /* | |
5462 * First line in empty buffer from ml_flush_line() -- reset | |
5463 */ | |
5464 buf->b_ml.ml_usedchunks = 1; | |
5465 buf->b_ml.ml_chunksize[0].mlcs_numlines = 1; | |
15138
9df130fd5e0d
patch 8.1.0579: cannot attach properties to text
Bram Moolenaar <Bram@vim.org>
parents:
14980
diff
changeset
|
5466 buf->b_ml.ml_chunksize[0].mlcs_totalsize = (long)buf->b_ml.ml_line_len; |
7 | 5467 return; |
5468 } | |
5469 | |
5470 /* | |
5471 * Find chunk that our line belongs to, curline will be at start of the | |
5472 * chunk. | |
5473 */ | |
5474 if (buf != ml_upd_lastbuf || line != ml_upd_lastline + 1 | |
5475 || updtype != ML_CHNK_ADDLINE) | |
5476 { | |
5477 for (curline = 1, curix = 0; | |
5478 curix < buf->b_ml.ml_usedchunks - 1 | |
5479 && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines; | |
5480 curix++) | |
5481 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines; | |
5482 } | |
14980
c98810dfebaf
patch 8.1.0501: cppcheck warns for using array index before bounds check
Bram Moolenaar <Bram@vim.org>
parents:
14923
diff
changeset
|
5483 else if (curix < buf->b_ml.ml_usedchunks - 1 |
c98810dfebaf
patch 8.1.0501: cppcheck warns for using array index before bounds check
Bram Moolenaar <Bram@vim.org>
parents:
14923
diff
changeset
|
5484 && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines) |
7 | 5485 { |
5486 /* Adjust cached curix & curline */ | |
5487 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines; | |
5488 curix++; | |
5489 } | |
5490 curchnk = buf->b_ml.ml_chunksize + curix; | |
5491 | |
5492 if (updtype == ML_CHNK_DELLINE) | |
1030 | 5493 len = -len; |
7 | 5494 curchnk->mlcs_totalsize += len; |
5495 if (updtype == ML_CHNK_ADDLINE) | |
5496 { | |
5497 curchnk->mlcs_numlines++; | |
5498 | |
5499 /* May resize here so we don't have to do it in both cases below */ | |
5500 if (buf->b_ml.ml_usedchunks + 1 >= buf->b_ml.ml_numchunks) | |
5501 { | |
6596 | 5502 chunksize_T *t_chunksize = buf->b_ml.ml_chunksize; |
5503 | |
7 | 5504 buf->b_ml.ml_numchunks = buf->b_ml.ml_numchunks * 3 / 2; |
5505 buf->b_ml.ml_chunksize = (chunksize_T *) | |
5506 vim_realloc(buf->b_ml.ml_chunksize, | |
5507 sizeof(chunksize_T) * buf->b_ml.ml_numchunks); | |
5508 if (buf->b_ml.ml_chunksize == NULL) | |
5509 { | |
5510 /* Hmmmm, Give up on offset for this buffer */ | |
6596 | 5511 vim_free(t_chunksize); |
7 | 5512 buf->b_ml.ml_usedchunks = -1; |
5513 return; | |
5514 } | |
5515 } | |
5516 | |
5517 if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MAXL) | |
5518 { | |
5519 int count; /* number of entries in block */ | |
5520 int idx; | |
15255
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5521 int end_idx; |
7 | 5522 int text_end; |
5523 int linecnt; | |
5524 | |
5525 mch_memmove(buf->b_ml.ml_chunksize + curix + 1, | |
5526 buf->b_ml.ml_chunksize + curix, | |
5527 (buf->b_ml.ml_usedchunks - curix) * | |
5528 sizeof(chunksize_T)); | |
1855 | 5529 /* Compute length of first half of lines in the split chunk */ |
7 | 5530 size = 0; |
5531 linecnt = 0; | |
5532 while (curline < buf->b_ml.ml_line_count | |
5533 && linecnt < MLCS_MINL) | |
5534 { | |
5535 if ((hp = ml_find_line(buf, curline, ML_FIND)) == NULL) | |
5536 { | |
5537 buf->b_ml.ml_usedchunks = -1; | |
5538 return; | |
5539 } | |
5540 dp = (DATA_BL *)(hp->bh_data); | |
5541 count = (long)(buf->b_ml.ml_locked_high) - | |
5542 (long)(buf->b_ml.ml_locked_low) + 1; | |
5543 idx = curline - buf->b_ml.ml_locked_low; | |
5544 curline = buf->b_ml.ml_locked_high + 1; | |
15255
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5545 |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5546 // compute index of last line to use in this MEMLINE |
7 | 5547 rest = count - idx; |
5548 if (linecnt + rest > MLCS_MINL) | |
5549 { | |
15255
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5550 end_idx = idx + MLCS_MINL - linecnt - 1; |
7 | 5551 linecnt = MLCS_MINL; |
5552 } | |
5553 else | |
5554 { | |
15255
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5555 end_idx = count - 1; |
7 | 5556 linecnt += rest; |
5557 } | |
15255
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5558 #ifdef FEAT_TEXT_PROP |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5559 if (buf->b_has_textprop) |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5560 { |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5561 int i; |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5562 |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5563 // We cannot use the text pointers to get the text length, |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5564 // the text prop info would also be counted. Go over the |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5565 // lines. |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5566 for (i = end_idx; i < idx; ++i) |
15353
21580db06cf3
patch 8.1.0684: warnings from 64-bit compiler
Bram Moolenaar <Bram@vim.org>
parents:
15294
diff
changeset
|
5567 size += (int)STRLEN((char_u *)dp + (dp->db_index[i] & DB_INDEX_MASK)) + 1; |
15255
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5568 } |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5569 else |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5570 #endif |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5571 { |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5572 if (idx == 0)/* first line in block, text at the end */ |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5573 text_end = dp->db_txt_end; |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5574 else |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5575 text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK); |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5576 size += text_end - ((dp->db_index[end_idx]) & DB_INDEX_MASK); |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5577 } |
7 | 5578 } |
5579 buf->b_ml.ml_chunksize[curix].mlcs_numlines = linecnt; | |
5580 buf->b_ml.ml_chunksize[curix + 1].mlcs_numlines -= linecnt; | |
5581 buf->b_ml.ml_chunksize[curix].mlcs_totalsize = size; | |
5582 buf->b_ml.ml_chunksize[curix + 1].mlcs_totalsize -= size; | |
5583 buf->b_ml.ml_usedchunks++; | |
5584 ml_upd_lastbuf = NULL; /* Force recalc of curix & curline */ | |
5585 return; | |
5586 } | |
5587 else if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MINL | |
5588 && curix == buf->b_ml.ml_usedchunks - 1 | |
5589 && buf->b_ml.ml_line_count - line <= 1) | |
5590 { | |
5591 /* | |
5592 * We are in the last chunk and it is cheap to crate a new one | |
5593 * after this. Do it now to avoid the loop above later on | |
5594 */ | |
5595 curchnk = buf->b_ml.ml_chunksize + curix + 1; | |
5596 buf->b_ml.ml_usedchunks++; | |
5597 if (line == buf->b_ml.ml_line_count) | |
5598 { | |
5599 curchnk->mlcs_numlines = 0; | |
5600 curchnk->mlcs_totalsize = 0; | |
5601 } | |
5602 else | |
5603 { | |
5604 /* | |
5605 * Line is just prior to last, move count for last | |
5606 * This is the common case when loading a new file | |
5607 */ | |
5608 hp = ml_find_line(buf, buf->b_ml.ml_line_count, ML_FIND); | |
5609 if (hp == NULL) | |
5610 { | |
5611 buf->b_ml.ml_usedchunks = -1; | |
5612 return; | |
5613 } | |
5614 dp = (DATA_BL *)(hp->bh_data); | |
5615 if (dp->db_line_count == 1) | |
5616 rest = dp->db_txt_end - dp->db_txt_start; | |
5617 else | |
5618 rest = | |
5619 ((dp->db_index[dp->db_line_count - 2]) & DB_INDEX_MASK) | |
5620 - dp->db_txt_start; | |
5621 curchnk->mlcs_totalsize = rest; | |
5622 curchnk->mlcs_numlines = 1; | |
5623 curchnk[-1].mlcs_totalsize -= rest; | |
5624 curchnk[-1].mlcs_numlines -= 1; | |
5625 } | |
5626 } | |
5627 } | |
5628 else if (updtype == ML_CHNK_DELLINE) | |
5629 { | |
5630 curchnk->mlcs_numlines--; | |
5631 ml_upd_lastbuf = NULL; /* Force recalc of curix & curline */ | |
5632 if (curix < (buf->b_ml.ml_usedchunks - 1) | |
5633 && (curchnk->mlcs_numlines + curchnk[1].mlcs_numlines) | |
5634 <= MLCS_MINL) | |
5635 { | |
5636 curix++; | |
5637 curchnk = buf->b_ml.ml_chunksize + curix; | |
5638 } | |
5639 else if (curix == 0 && curchnk->mlcs_numlines <= 0) | |
5640 { | |
5641 buf->b_ml.ml_usedchunks--; | |
5642 mch_memmove(buf->b_ml.ml_chunksize, buf->b_ml.ml_chunksize + 1, | |
5643 buf->b_ml.ml_usedchunks * sizeof(chunksize_T)); | |
5644 return; | |
5645 } | |
5646 else if (curix == 0 || (curchnk->mlcs_numlines > 10 | |
5647 && (curchnk->mlcs_numlines + curchnk[-1].mlcs_numlines) | |
5648 > MLCS_MINL)) | |
5649 { | |
5650 return; | |
5651 } | |
5652 | |
5653 /* Collapse chunks */ | |
5654 curchnk[-1].mlcs_numlines += curchnk->mlcs_numlines; | |
5655 curchnk[-1].mlcs_totalsize += curchnk->mlcs_totalsize; | |
5656 buf->b_ml.ml_usedchunks--; | |
5657 if (curix < buf->b_ml.ml_usedchunks) | |
5658 { | |
5659 mch_memmove(buf->b_ml.ml_chunksize + curix, | |
5660 buf->b_ml.ml_chunksize + curix + 1, | |
5661 (buf->b_ml.ml_usedchunks - curix) * | |
5662 sizeof(chunksize_T)); | |
5663 } | |
5664 return; | |
5665 } | |
5666 ml_upd_lastbuf = buf; | |
5667 ml_upd_lastline = line; | |
5668 ml_upd_lastcurline = curline; | |
5669 ml_upd_lastcurix = curix; | |
5670 } | |
5671 | |
5672 /* | |
5673 * Find offset for line or line with offset. | |
169 | 5674 * Find line with offset if "lnum" is 0; return remaining offset in offp |
5675 * Find offset of line if "lnum" > 0 | |
7 | 5676 * return -1 if information is not available |
5677 */ | |
5678 long | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5679 ml_find_line_or_offset(buf_T *buf, linenr_T lnum, long *offp) |
7 | 5680 { |
5681 linenr_T curline; | |
5682 int curix; | |
5683 long size; | |
5684 bhdr_T *hp; | |
5685 DATA_BL *dp; | |
5686 int count; /* number of entries in block */ | |
5687 int idx; | |
5688 int start_idx; | |
5689 int text_end; | |
5690 long offset; | |
5691 int len; | |
5692 int ffdos = (get_fileformat(buf) == EOL_DOS); | |
5693 int extra = 0; | |
5694 | |
169 | 5695 /* take care of cached line first */ |
5696 ml_flush_line(curbuf); | |
5697 | |
7 | 5698 if (buf->b_ml.ml_usedchunks == -1 |
5699 || buf->b_ml.ml_chunksize == NULL | |
169 | 5700 || lnum < 0) |
7 | 5701 return -1; |
5702 | |
5703 if (offp == NULL) | |
5704 offset = 0; | |
5705 else | |
5706 offset = *offp; | |
169 | 5707 if (lnum == 0 && offset <= 0) |
7 | 5708 return 1; /* Not a "find offset" and offset 0 _must_ be in line 1 */ |
5709 /* | |
5710 * Find the last chunk before the one containing our line. Last chunk is | |
5711 * special because it will never qualify | |
5712 */ | |
5713 curline = 1; | |
5714 curix = size = 0; | |
5715 while (curix < buf->b_ml.ml_usedchunks - 1 | |
169 | 5716 && ((lnum != 0 |
5717 && lnum >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines) | |
7 | 5718 || (offset != 0 |
5719 && offset > size + buf->b_ml.ml_chunksize[curix].mlcs_totalsize | |
5720 + ffdos * buf->b_ml.ml_chunksize[curix].mlcs_numlines))) | |
5721 { | |
5722 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines; | |
5723 size += buf->b_ml.ml_chunksize[curix].mlcs_totalsize; | |
5724 if (offset && ffdos) | |
5725 size += buf->b_ml.ml_chunksize[curix].mlcs_numlines; | |
5726 curix++; | |
5727 } | |
5728 | |
169 | 5729 while ((lnum != 0 && curline < lnum) || (offset != 0 && size < offset)) |
7 | 5730 { |
5731 if (curline > buf->b_ml.ml_line_count | |
5732 || (hp = ml_find_line(buf, curline, ML_FIND)) == NULL) | |
5733 return -1; | |
5734 dp = (DATA_BL *)(hp->bh_data); | |
5735 count = (long)(buf->b_ml.ml_locked_high) - | |
5736 (long)(buf->b_ml.ml_locked_low) + 1; | |
5737 start_idx = idx = curline - buf->b_ml.ml_locked_low; | |
5738 if (idx == 0)/* first line in block, text at the end */ | |
5739 text_end = dp->db_txt_end; | |
5740 else | |
5741 text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK); | |
5742 /* Compute index of last line to use in this MEMLINE */ | |
169 | 5743 if (lnum != 0) |
7 | 5744 { |
169 | 5745 if (curline + (count - idx) >= lnum) |
5746 idx += lnum - curline - 1; | |
7 | 5747 else |
5748 idx = count - 1; | |
5749 } | |
5750 else | |
5751 { | |
5752 extra = 0; | |
5753 while (offset >= size | |
5754 + text_end - (int)((dp->db_index[idx]) & DB_INDEX_MASK) | |
5755 + ffdos) | |
5756 { | |
5757 if (ffdos) | |
5758 size++; | |
5759 if (idx == count - 1) | |
5760 { | |
5761 extra = 1; | |
5762 break; | |
5763 } | |
5764 idx++; | |
5765 } | |
5766 } | |
15255
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5767 #ifdef FEAT_TEXT_PROP |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5768 if (buf->b_has_textprop) |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5769 { |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5770 int i; |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5771 |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5772 // cannot use the db_index pointer, need to get the actual text |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5773 // lengths. |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5774 len = 0; |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5775 for (i = start_idx; i <= idx; ++i) |
15353
21580db06cf3
patch 8.1.0684: warnings from 64-bit compiler
Bram Moolenaar <Bram@vim.org>
parents:
15294
diff
changeset
|
5776 len += (int)STRLEN((char_u *)dp + ((dp->db_index[i]) & DB_INDEX_MASK)) + 1; |
15255
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5777 } |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5778 else |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5779 #endif |
19e79a1ed6b6
patch 8.1.0636: line2byte() gives wrong values with text properties
Bram Moolenaar <Bram@vim.org>
parents:
15182
diff
changeset
|
5780 len = text_end - ((dp->db_index[idx]) & DB_INDEX_MASK); |
7 | 5781 size += len; |
5782 if (offset != 0 && size >= offset) | |
5783 { | |
5784 if (size + ffdos == offset) | |
5785 *offp = 0; | |
5786 else if (idx == start_idx) | |
5787 *offp = offset - size + len; | |
5788 else | |
5789 *offp = offset - size + len | |
5790 - (text_end - ((dp->db_index[idx - 1]) & DB_INDEX_MASK)); | |
5791 curline += idx - start_idx + extra; | |
5792 if (curline > buf->b_ml.ml_line_count) | |
5793 return -1; /* exactly one byte beyond the end */ | |
5794 return curline; | |
5795 } | |
5796 curline = buf->b_ml.ml_locked_high + 1; | |
5797 } | |
5798 | |
169 | 5799 if (lnum != 0) |
20 | 5800 { |
5801 /* Count extra CR characters. */ | |
5802 if (ffdos) | |
169 | 5803 size += lnum - 1; |
20 | 5804 |
6933 | 5805 /* Don't count the last line break if 'noeol' and ('bin' or |
5806 * 'nofixeol'). */ | |
5807 if ((!buf->b_p_fixeol || buf->b_p_bin) && !buf->b_p_eol | |
14579
23d6d9e9ae3e
patch 8.1.0303: line2byte() is wrong for last line with 'noeol'
Christian Brabandt <cb@256bit.org>
parents:
14475
diff
changeset
|
5808 && lnum > buf->b_ml.ml_line_count) |
20 | 5809 size -= ffdos + 1; |
5810 } | |
5811 | |
7 | 5812 return size; |
5813 } | |
5814 | |
5815 /* | |
5816 * Goto byte in buffer with offset 'cnt'. | |
5817 */ | |
5818 void | |
7827
41789f16d6b2
commit https://github.com/vim/vim/commit/52ea13da0fe86df1abf34de52841e367035170c0
Christian Brabandt <cb@256bit.org>
parents:
7803
diff
changeset
|
5819 goto_byte(long cnt) |
7 | 5820 { |
5821 long boff = cnt; | |
5822 linenr_T lnum; | |
5823 | |
5824 ml_flush_line(curbuf); /* cached line may be dirty */ | |
5825 setpcmark(); | |
5826 if (boff) | |
5827 --boff; | |
5828 lnum = ml_find_line_or_offset(curbuf, (linenr_T)0, &boff); | |
5829 if (lnum < 1) /* past the end */ | |
5830 { | |
5831 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
5832 curwin->w_curswant = MAXCOL; | |
5833 coladvance((colnr_T)MAXCOL); | |
5834 } | |
5835 else | |
5836 { | |
5837 curwin->w_cursor.lnum = lnum; | |
5838 curwin->w_cursor.col = (colnr_T)boff; | |
572 | 5839 curwin->w_cursor.coladd = 0; |
7 | 5840 curwin->w_set_curswant = TRUE; |
5841 } | |
5842 check_cursor(); | |
5843 | |
5844 /* Make sure the cursor is on the first byte of a multi-byte char. */ | |
5845 if (has_mbyte) | |
5846 mb_adjust_cursor(); | |
5847 } | |
5848 #endif |