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