blob: 12dedd6c573a445e8467b7706d54e5350d736e5f [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * spellfile.c: code for reading and writing spell files.
12 *
13 * See spell.c for information about spell checking.
14 */
15
16/*
17 * Vim spell file format: <HEADER>
18 * <SECTIONS>
19 * <LWORDTREE>
20 * <KWORDTREE>
21 * <PREFIXTREE>
22 *
23 * <HEADER>: <fileID> <versionnr>
24 *
25 * <fileID> 8 bytes "VIMspell"
26 * <versionnr> 1 byte VIMSPELLVERSION
27 *
28 *
29 * Sections make it possible to add information to the .spl file without
30 * making it incompatible with previous versions. There are two kinds of
31 * sections:
32 * 1. Not essential for correct spell checking. E.g. for making suggestions.
33 * These are skipped when not supported.
34 * 2. Optional information, but essential for spell checking when present.
35 * E.g. conditions for affixes. When this section is present but not
36 * supported an error message is given.
37 *
38 * <SECTIONS>: <section> ... <sectionend>
39 *
40 * <section>: <sectionID> <sectionflags> <sectionlen> (section contents)
41 *
42 * <sectionID> 1 byte number from 0 to 254 identifying the section
43 *
44 * <sectionflags> 1 byte SNF_REQUIRED: this section is required for correct
45 * spell checking
46 *
47 * <sectionlen> 4 bytes length of section contents, MSB first
48 *
49 * <sectionend> 1 byte SN_END
50 *
51 *
52 * sectionID == SN_INFO: <infotext>
53 * <infotext> N bytes free format text with spell file info (version,
54 * website, etc)
55 *
56 * sectionID == SN_REGION: <regionname> ...
Bram Moolenaar2993ac52018-02-10 14:12:43 +010057 * <regionname> 2 bytes Up to MAXREGIONS region names: ca, au, etc. Lower
58 * case. First <regionname> is region 1.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +020059 *
60 * sectionID == SN_CHARFLAGS: <charflagslen> <charflags>
61 * <folcharslen> <folchars>
62 * <charflagslen> 1 byte Number of bytes in <charflags> (should be 128).
63 * <charflags> N bytes List of flags (first one is for character 128):
64 * 0x01 word character CF_WORD
65 * 0x02 upper-case character CF_UPPER
66 * <folcharslen> 2 bytes Number of bytes in <folchars>.
67 * <folchars> N bytes Folded characters, first one is for character 128.
68 *
69 * sectionID == SN_MIDWORD: <midword>
70 * <midword> N bytes Characters that are word characters only when used
71 * in the middle of a word.
72 *
73 * sectionID == SN_PREFCOND: <prefcondcnt> <prefcond> ...
74 * <prefcondcnt> 2 bytes Number of <prefcond> items following.
75 * <prefcond> : <condlen> <condstr>
76 * <condlen> 1 byte Length of <condstr>.
77 * <condstr> N bytes Condition for the prefix.
78 *
79 * sectionID == SN_REP: <repcount> <rep> ...
80 * <repcount> 2 bytes number of <rep> items, MSB first.
81 * <rep> : <repfromlen> <repfrom> <reptolen> <repto>
82 * <repfromlen> 1 byte length of <repfrom>
83 * <repfrom> N bytes "from" part of replacement
84 * <reptolen> 1 byte length of <repto>
85 * <repto> N bytes "to" part of replacement
86 *
87 * sectionID == SN_REPSAL: <repcount> <rep> ...
88 * just like SN_REP but for soundfolded words
89 *
90 * sectionID == SN_SAL: <salflags> <salcount> <sal> ...
91 * <salflags> 1 byte flags for soundsalike conversion:
92 * SAL_F0LLOWUP
93 * SAL_COLLAPSE
94 * SAL_REM_ACCENTS
95 * <salcount> 2 bytes number of <sal> items following
96 * <sal> : <salfromlen> <salfrom> <saltolen> <salto>
97 * <salfromlen> 1 byte length of <salfrom>
98 * <salfrom> N bytes "from" part of soundsalike
99 * <saltolen> 1 byte length of <salto>
100 * <salto> N bytes "to" part of soundsalike
101 *
102 * sectionID == SN_SOFO: <sofofromlen> <sofofrom> <sofotolen> <sofoto>
103 * <sofofromlen> 2 bytes length of <sofofrom>
104 * <sofofrom> N bytes "from" part of soundfold
105 * <sofotolen> 2 bytes length of <sofoto>
106 * <sofoto> N bytes "to" part of soundfold
107 *
108 * sectionID == SN_SUGFILE: <timestamp>
109 * <timestamp> 8 bytes time in seconds that must match with .sug file
110 *
111 * sectionID == SN_NOSPLITSUGS: nothing
112 *
113 * sectionID == SN_NOCOMPOUNDSUGS: nothing
114 *
115 * sectionID == SN_WORDS: <word> ...
116 * <word> N bytes NUL terminated common word
117 *
118 * sectionID == SN_MAP: <mapstr>
119 * <mapstr> N bytes String with sequences of similar characters,
120 * separated by slashes.
121 *
122 * sectionID == SN_COMPOUND: <compmax> <compminlen> <compsylmax> <compoptions>
123 * <comppatcount> <comppattern> ... <compflags>
124 * <compmax> 1 byte Maximum nr of words in compound word.
125 * <compminlen> 1 byte Minimal word length for compounding.
126 * <compsylmax> 1 byte Maximum nr of syllables in compound word.
127 * <compoptions> 2 bytes COMP_ flags.
128 * <comppatcount> 2 bytes number of <comppattern> following
129 * <compflags> N bytes Flags from COMPOUNDRULE items, separated by
130 * slashes.
131 *
132 * <comppattern>: <comppatlen> <comppattext>
133 * <comppatlen> 1 byte length of <comppattext>
134 * <comppattext> N bytes end or begin chars from CHECKCOMPOUNDPATTERN
135 *
136 * sectionID == SN_NOBREAK: (empty, its presence is what matters)
137 *
138 * sectionID == SN_SYLLABLE: <syllable>
139 * <syllable> N bytes String from SYLLABLE item.
140 *
141 * <LWORDTREE>: <wordtree>
142 *
143 * <KWORDTREE>: <wordtree>
144 *
145 * <PREFIXTREE>: <wordtree>
146 *
147 *
148 * <wordtree>: <nodecount> <nodedata> ...
149 *
150 * <nodecount> 4 bytes Number of nodes following. MSB first.
151 *
152 * <nodedata>: <siblingcount> <sibling> ...
153 *
154 * <siblingcount> 1 byte Number of siblings in this node. The siblings
155 * follow in sorted order.
156 *
157 * <sibling>: <byte> [ <nodeidx> <xbyte>
158 * | <flags> [<flags2>] [<region>] [<affixID>]
159 * | [<pflags>] <affixID> <prefcondnr> ]
160 *
161 * <byte> 1 byte Byte value of the sibling. Special cases:
162 * BY_NOFLAGS: End of word without flags and for all
163 * regions.
164 * For PREFIXTREE <affixID> and
165 * <prefcondnr> follow.
166 * BY_FLAGS: End of word, <flags> follow.
167 * For PREFIXTREE <pflags>, <affixID>
168 * and <prefcondnr> follow.
169 * BY_FLAGS2: End of word, <flags> and <flags2>
170 * follow. Not used in PREFIXTREE.
171 * BY_INDEX: Child of sibling is shared, <nodeidx>
172 * and <xbyte> follow.
173 *
174 * <nodeidx> 3 bytes Index of child for this sibling, MSB first.
175 *
176 * <xbyte> 1 byte byte value of the sibling.
177 *
178 * <flags> 1 byte bitmask of:
179 * WF_ALLCAP word must have only capitals
180 * WF_ONECAP first char of word must be capital
181 * WF_KEEPCAP keep-case word
182 * WF_FIXCAP keep-case word, all caps not allowed
183 * WF_RARE rare word
184 * WF_BANNED bad word
185 * WF_REGION <region> follows
186 * WF_AFX <affixID> follows
187 *
188 * <flags2> 1 byte Bitmask of:
189 * WF_HAS_AFF >> 8 word includes affix
190 * WF_NEEDCOMP >> 8 word only valid in compound
191 * WF_NOSUGGEST >> 8 word not used for suggestions
192 * WF_COMPROOT >> 8 word already a compound
193 * WF_NOCOMPBEF >> 8 no compounding before this word
194 * WF_NOCOMPAFT >> 8 no compounding after this word
195 *
196 * <pflags> 1 byte bitmask of:
197 * WFP_RARE rare prefix
198 * WFP_NC non-combining prefix
199 * WFP_UP letter after prefix made upper case
200 *
201 * <region> 1 byte Bitmask for regions in which word is valid. When
202 * omitted it's valid in all regions.
203 * Lowest bit is for region 1.
204 *
205 * <affixID> 1 byte ID of affix that can be used with this word. In
206 * PREFIXTREE used for the required prefix ID.
207 *
208 * <prefcondnr> 2 bytes Prefix condition number, index in <prefcond> list
209 * from HEADER.
210 *
211 * All text characters are in 'encoding', but stored as single bytes.
212 */
213
214/*
215 * Vim .sug file format: <SUGHEADER>
216 * <SUGWORDTREE>
217 * <SUGTABLE>
218 *
219 * <SUGHEADER>: <fileID> <versionnr> <timestamp>
220 *
221 * <fileID> 6 bytes "VIMsug"
222 * <versionnr> 1 byte VIMSUGVERSION
223 * <timestamp> 8 bytes timestamp that must match with .spl file
224 *
225 *
226 * <SUGWORDTREE>: <wordtree> (see above, no flags or region used)
227 *
228 *
229 * <SUGTABLE>: <sugwcount> <sugline> ...
230 *
231 * <sugwcount> 4 bytes number of <sugline> following
232 *
233 * <sugline>: <sugnr> ... NUL
234 *
235 * <sugnr>: X bytes word number that results in this soundfolded word,
236 * stored as an offset to the previous number in as
237 * few bytes as possible, see offset2bytes())
238 */
239
240#include "vim.h"
241
242#if defined(FEAT_SPELL) || defined(PROTO)
243
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100244#ifndef UNIX // it's in os_unix.h for Unix
245# include <time.h> // for time_t
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200246#endif
247
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100248#ifndef UNIX // it's in os_unix.h for Unix
249# include <time.h> // for time_t
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200250#endif
251
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100252// Special byte values for <byte>. Some are only used in the tree for
253// postponed prefixes, some only in the other trees. This is a bit messy...
254#define BY_NOFLAGS 0 // end of word without flags or region; for
255 // postponed prefix: no <pflags>
256#define BY_INDEX 1 // child is shared, index follows
257#define BY_FLAGS 2 // end of word, <flags> byte follows; for
258 // postponed prefix: <pflags> follows
259#define BY_FLAGS2 3 // end of word, <flags> and <flags2> bytes
260 // follow; never used in prefix tree
261#define BY_SPECIAL BY_FLAGS2 // highest special byte value
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200262
Bram Moolenaar3d2a47c2019-11-07 20:48:42 +0100263#define ZERO_FLAG 65009 // used when flag is zero: "0"
264
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100265// Flags used in .spl file for soundsalike flags.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200266#define SAL_F0LLOWUP 1
267#define SAL_COLLAPSE 2
268#define SAL_REM_ACCENTS 4
269
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100270#define VIMSPELLMAGIC "VIMspell" // string at start of Vim spell file
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200271#define VIMSPELLMAGICL 8
272#define VIMSPELLVERSION 50
273
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100274// Section IDs. Only renumber them when VIMSPELLVERSION changes!
275#define SN_REGION 0 // <regionname> section
276#define SN_CHARFLAGS 1 // charflags section
277#define SN_MIDWORD 2 // <midword> section
278#define SN_PREFCOND 3 // <prefcond> section
279#define SN_REP 4 // REP items section
280#define SN_SAL 5 // SAL items section
281#define SN_SOFO 6 // soundfolding section
282#define SN_MAP 7 // MAP items section
283#define SN_COMPOUND 8 // compound words section
284#define SN_SYLLABLE 9 // syllable section
285#define SN_NOBREAK 10 // NOBREAK section
286#define SN_SUGFILE 11 // timestamp for .sug file
287#define SN_REPSAL 12 // REPSAL items section
288#define SN_WORDS 13 // common words
289#define SN_NOSPLITSUGS 14 // don't split word for suggestions
290#define SN_INFO 15 // info section
291#define SN_NOCOMPOUNDSUGS 16 // don't compound for suggestions
292#define SN_END 255 // end of sections
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200293
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100294#define SNF_REQUIRED 1 // <sectionflags>: required section
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200295
296#define CF_WORD 0x01
297#define CF_UPPER 0x02
298
Bram Moolenaaraeea7212020-04-02 18:50:46 +0200299/*
300 * Loop through all the siblings of a node (including the node)
301 */
302#define FOR_ALL_NODE_SIBLINGS(node, np) \
303 for ((np) = (node); (np) != NULL; (np) = (np)->wn_sibling)
304
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200305static int set_spell_finish(spelltab_T *new_st);
306static int write_spell_prefcond(FILE *fd, garray_T *gap);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200307static int read_region_section(FILE *fd, slang_T *slang, int len);
308static int read_charflags_section(FILE *fd);
309static int read_prefcond_section(FILE *fd, slang_T *lp);
310static int read_rep_section(FILE *fd, garray_T *gap, short *first);
311static int read_sal_section(FILE *fd, slang_T *slang);
312static int read_words_section(FILE *fd, slang_T *lp, int len);
313static int read_sofo_section(FILE *fd, slang_T *slang);
314static int read_compound(FILE *fd, slang_T *slang, int len);
315static int set_sofo(slang_T *lp, char_u *from, char_u *to);
316static void set_sal_first(slang_T *lp);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200317static int *mb_str2wide(char_u *s);
Bram Moolenaar07399e72020-08-24 20:05:50 +0200318static int spell_read_tree(FILE *fd, char_u **bytsp, long *bytsp_len, idx_T **idxsp, int prefixtree, int prefixcnt);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200319static idx_T read_tree_node(FILE *fd, char_u *byts, idx_T *idxs, int maxidx, idx_T startidx, int prefixtree, int maxprefcondnr);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200320static void set_spell_charflags(char_u *flags, int cnt, char_u *upp);
321static int set_spell_chartab(char_u *fol, char_u *low, char_u *upp);
322static void set_map_str(slang_T *lp, char_u *map);
323
324
325static char *e_spell_trunc = N_("E758: Truncated spell file");
326static char *e_afftrailing = N_("Trailing text in %s line %d: %s");
327static char *e_affname = N_("Affix name too long in %s line %d: %s");
328static char *e_affform = N_("E761: Format error in affix file FOL, LOW or UPP");
329static char *e_affrange = N_("E762: Character in FOL, LOW or UPP is out of range");
330static char *msg_compressing = N_("Compressing word tree...");
331
332/*
333 * Load one spell file and store the info into a slang_T.
334 *
335 * This is invoked in three ways:
336 * - From spell_load_cb() to load a spell file for the first time. "lang" is
337 * the language name, "old_lp" is NULL. Will allocate an slang_T.
338 * - To reload a spell file that was changed. "lang" is NULL and "old_lp"
339 * points to the existing slang_T.
340 * - Just after writing a .spl file; it's read back to produce the .sug file.
341 * "old_lp" is NULL and "lang" is NULL. Will allocate an slang_T.
342 *
343 * Returns the slang_T the spell file was loaded into. NULL for error.
344 */
345 slang_T *
346spell_load_file(
347 char_u *fname,
348 char_u *lang,
349 slang_T *old_lp,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100350 int silent) // no error if file doesn't exist
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200351{
352 FILE *fd;
353 char_u buf[VIMSPELLMAGICL];
354 char_u *p;
355 int i;
356 int n;
357 int len;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200358 slang_T *lp = NULL;
359 int c = 0;
360 int res;
Bram Moolenaarce6db022020-01-07 20:11:42 +0100361 int did_estack_push = FALSE;
Bram Moolenaare31ee862020-01-07 20:59:34 +0100362 ESTACK_CHECK_DECLARATION
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200363
364 fd = mch_fopen((char *)fname, "r");
365 if (fd == NULL)
366 {
367 if (!silent)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100368 semsg(_(e_notopen), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200369 else if (p_verbose > 2)
370 {
371 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100372 smsg((const char *)e_notopen, fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200373 verbose_leave();
374 }
375 goto endFAIL;
376 }
377 if (p_verbose > 2)
378 {
379 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100380 smsg(_("Reading spell file \"%s\""), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200381 verbose_leave();
382 }
383
384 if (old_lp == NULL)
385 {
386 lp = slang_alloc(lang);
387 if (lp == NULL)
388 goto endFAIL;
389
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100390 // Remember the file name, used to reload the file when it's updated.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200391 lp->sl_fname = vim_strsave(fname);
392 if (lp->sl_fname == NULL)
393 goto endFAIL;
394
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100395 // Check for .add.spl (_add.spl for VMS).
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200396 lp->sl_add = strstr((char *)gettail(fname), SPL_FNAME_ADD) != NULL;
397 }
398 else
399 lp = old_lp;
400
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100401 // Set sourcing_name, so that error messages mention the file name.
Bram Moolenaar1a47ae32019-12-29 23:04:25 +0100402 estack_push(ETYPE_SPELL, fname, 0);
Bram Moolenaare31ee862020-01-07 20:59:34 +0100403 ESTACK_CHECK_SETUP
Bram Moolenaarce6db022020-01-07 20:11:42 +0100404 did_estack_push = TRUE;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200405
406 /*
407 * <HEADER>: <fileID>
408 */
409 for (i = 0; i < VIMSPELLMAGICL; ++i)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100410 buf[i] = getc(fd); // <fileID>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200411 if (STRNCMP(buf, VIMSPELLMAGIC, VIMSPELLMAGICL) != 0)
412 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100413 emsg(_("E757: This does not look like a spell file"));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200414 goto endFAIL;
415 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100416 c = getc(fd); // <versionnr>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200417 if (c < VIMSPELLVERSION)
418 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100419 emsg(_("E771: Old spell file, needs to be updated"));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200420 goto endFAIL;
421 }
422 else if (c > VIMSPELLVERSION)
423 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100424 emsg(_("E772: Spell file is for newer version of Vim"));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200425 goto endFAIL;
426 }
427
428
429 /*
430 * <SECTIONS>: <section> ... <sectionend>
431 * <section>: <sectionID> <sectionflags> <sectionlen> (section contents)
432 */
433 for (;;)
434 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100435 n = getc(fd); // <sectionID> or <sectionend>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200436 if (n == SN_END)
437 break;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100438 c = getc(fd); // <sectionflags>
439 len = get4c(fd); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200440 if (len < 0)
441 goto truncerr;
442
443 res = 0;
444 switch (n)
445 {
446 case SN_INFO:
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100447 lp->sl_info = read_string(fd, len); // <infotext>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200448 if (lp->sl_info == NULL)
449 goto endFAIL;
450 break;
451
452 case SN_REGION:
453 res = read_region_section(fd, lp, len);
454 break;
455
456 case SN_CHARFLAGS:
457 res = read_charflags_section(fd);
458 break;
459
460 case SN_MIDWORD:
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100461 lp->sl_midword = read_string(fd, len); // <midword>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200462 if (lp->sl_midword == NULL)
463 goto endFAIL;
464 break;
465
466 case SN_PREFCOND:
467 res = read_prefcond_section(fd, lp);
468 break;
469
470 case SN_REP:
471 res = read_rep_section(fd, &lp->sl_rep, lp->sl_rep_first);
472 break;
473
474 case SN_REPSAL:
475 res = read_rep_section(fd, &lp->sl_repsal, lp->sl_repsal_first);
476 break;
477
478 case SN_SAL:
479 res = read_sal_section(fd, lp);
480 break;
481
482 case SN_SOFO:
483 res = read_sofo_section(fd, lp);
484 break;
485
486 case SN_MAP:
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100487 p = read_string(fd, len); // <mapstr>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200488 if (p == NULL)
489 goto endFAIL;
490 set_map_str(lp, p);
491 vim_free(p);
492 break;
493
494 case SN_WORDS:
495 res = read_words_section(fd, lp, len);
496 break;
497
498 case SN_SUGFILE:
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100499 lp->sl_sugtime = get8ctime(fd); // <timestamp>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200500 break;
501
502 case SN_NOSPLITSUGS:
503 lp->sl_nosplitsugs = TRUE;
504 break;
505
506 case SN_NOCOMPOUNDSUGS:
507 lp->sl_nocompoundsugs = TRUE;
508 break;
509
510 case SN_COMPOUND:
511 res = read_compound(fd, lp, len);
512 break;
513
514 case SN_NOBREAK:
515 lp->sl_nobreak = TRUE;
516 break;
517
518 case SN_SYLLABLE:
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100519 lp->sl_syllable = read_string(fd, len); // <syllable>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200520 if (lp->sl_syllable == NULL)
521 goto endFAIL;
Bram Moolenaarfc2a47f2020-08-20 15:41:55 +0200522 if (init_syl_tab(lp) != OK)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200523 goto endFAIL;
524 break;
525
526 default:
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100527 // Unsupported section. When it's required give an error
528 // message. When it's not required skip the contents.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200529 if (c & SNF_REQUIRED)
530 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100531 emsg(_("E770: Unsupported section in spell file"));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200532 goto endFAIL;
533 }
534 while (--len >= 0)
535 if (getc(fd) < 0)
536 goto truncerr;
537 break;
538 }
539someerror:
540 if (res == SP_FORMERROR)
541 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100542 emsg(_(e_format));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200543 goto endFAIL;
544 }
545 if (res == SP_TRUNCERROR)
546 {
547truncerr:
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100548 emsg(_(e_spell_trunc));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200549 goto endFAIL;
550 }
551 if (res == SP_OTHERERROR)
552 goto endFAIL;
553 }
554
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100555 // <LWORDTREE>
Bram Moolenaar07399e72020-08-24 20:05:50 +0200556 res = spell_read_tree(fd, &lp->sl_fbyts, &lp->sl_fbyts_len,
557 &lp->sl_fidxs, FALSE, 0);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200558 if (res != 0)
559 goto someerror;
560
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100561 // <KWORDTREE>
Bram Moolenaar07399e72020-08-24 20:05:50 +0200562 res = spell_read_tree(fd, &lp->sl_kbyts, NULL, &lp->sl_kidxs, FALSE, 0);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200563 if (res != 0)
564 goto someerror;
565
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100566 // <PREFIXTREE>
Bram Moolenaar07399e72020-08-24 20:05:50 +0200567 res = spell_read_tree(fd, &lp->sl_pbyts, NULL, &lp->sl_pidxs, TRUE,
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200568 lp->sl_prefixcnt);
569 if (res != 0)
570 goto someerror;
571
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100572 // For a new file link it in the list of spell files.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200573 if (old_lp == NULL && lang != NULL)
574 {
575 lp->sl_next = first_lang;
576 first_lang = lp;
577 }
578
579 goto endOK;
580
581endFAIL:
582 if (lang != NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100583 // truncating the name signals the error to spell_load_lang()
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200584 *lang = NUL;
585 if (lp != NULL && old_lp == NULL)
586 slang_free(lp);
587 lp = NULL;
588
589endOK:
590 if (fd != NULL)
591 fclose(fd);
Bram Moolenaarce6db022020-01-07 20:11:42 +0100592 if (did_estack_push)
Bram Moolenaare31ee862020-01-07 20:59:34 +0100593 {
594 ESTACK_CHECK_NOW
Bram Moolenaarce6db022020-01-07 20:11:42 +0100595 estack_pop();
Bram Moolenaare31ee862020-01-07 20:59:34 +0100596 }
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200597
598 return lp;
599}
600
601/*
602 * Fill in the wordcount fields for a trie.
603 * Returns the total number of words.
604 */
605 static void
606tree_count_words(char_u *byts, idx_T *idxs)
607{
608 int depth;
609 idx_T arridx[MAXWLEN];
610 int curi[MAXWLEN];
611 int c;
612 idx_T n;
613 int wordcount[MAXWLEN];
614
615 arridx[0] = 0;
616 curi[0] = 1;
617 wordcount[0] = 0;
618 depth = 0;
619 while (depth >= 0 && !got_int)
620 {
621 if (curi[depth] > byts[arridx[depth]])
622 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100623 // Done all bytes at this node, go up one level.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200624 idxs[arridx[depth]] = wordcount[depth];
625 if (depth > 0)
626 wordcount[depth - 1] += wordcount[depth];
627
628 --depth;
629 fast_breakcheck();
630 }
631 else
632 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100633 // Do one more byte at this node.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200634 n = arridx[depth] + curi[depth];
635 ++curi[depth];
636
637 c = byts[n];
638 if (c == 0)
639 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100640 // End of word, count it.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200641 ++wordcount[depth];
642
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100643 // Skip over any other NUL bytes (same word with different
644 // flags).
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200645 while (byts[n + 1] == 0)
646 {
647 ++n;
648 ++curi[depth];
649 }
650 }
651 else
652 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100653 // Normal char, go one level deeper to count the words.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200654 ++depth;
655 arridx[depth] = idxs[n];
656 curi[depth] = 1;
657 wordcount[depth] = 0;
658 }
659 }
660 }
661}
662
663/*
664 * Load the .sug files for languages that have one and weren't loaded yet.
665 */
666 void
667suggest_load_files(void)
668{
669 langp_T *lp;
670 int lpi;
671 slang_T *slang;
672 char_u *dotp;
673 FILE *fd;
674 char_u buf[MAXWLEN];
675 int i;
676 time_t timestamp;
677 int wcount;
678 int wordnr;
679 garray_T ga;
680 int c;
681
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100682 // Do this for all languages that support sound folding.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200683 for (lpi = 0; lpi < curwin->w_s->b_langp.ga_len; ++lpi)
684 {
685 lp = LANGP_ENTRY(curwin->w_s->b_langp, lpi);
686 slang = lp->lp_slang;
687 if (slang->sl_sugtime != 0 && !slang->sl_sugloaded)
688 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100689 // Change ".spl" to ".sug" and open the file. When the file isn't
690 // found silently skip it. Do set "sl_sugloaded" so that we
691 // don't try again and again.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200692 slang->sl_sugloaded = TRUE;
693
694 dotp = vim_strrchr(slang->sl_fname, '.');
695 if (dotp == NULL || fnamecmp(dotp, ".spl") != 0)
696 continue;
697 STRCPY(dotp, ".sug");
698 fd = mch_fopen((char *)slang->sl_fname, "r");
699 if (fd == NULL)
700 goto nextone;
701
702 /*
703 * <SUGHEADER>: <fileID> <versionnr> <timestamp>
704 */
705 for (i = 0; i < VIMSUGMAGICL; ++i)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100706 buf[i] = getc(fd); // <fileID>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200707 if (STRNCMP(buf, VIMSUGMAGIC, VIMSUGMAGICL) != 0)
708 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100709 semsg(_("E778: This does not look like a .sug file: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200710 slang->sl_fname);
711 goto nextone;
712 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100713 c = getc(fd); // <versionnr>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200714 if (c < VIMSUGVERSION)
715 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100716 semsg(_("E779: Old .sug file, needs to be updated: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200717 slang->sl_fname);
718 goto nextone;
719 }
720 else if (c > VIMSUGVERSION)
721 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100722 semsg(_("E780: .sug file is for newer version of Vim: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200723 slang->sl_fname);
724 goto nextone;
725 }
726
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100727 // Check the timestamp, it must be exactly the same as the one in
728 // the .spl file. Otherwise the word numbers won't match.
729 timestamp = get8ctime(fd); // <timestamp>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200730 if (timestamp != slang->sl_sugtime)
731 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100732 semsg(_("E781: .sug file doesn't match .spl file: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200733 slang->sl_fname);
734 goto nextone;
735 }
736
737 /*
738 * <SUGWORDTREE>: <wordtree>
739 * Read the trie with the soundfolded words.
740 */
Bram Moolenaar07399e72020-08-24 20:05:50 +0200741 if (spell_read_tree(fd, &slang->sl_sbyts, NULL, &slang->sl_sidxs,
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200742 FALSE, 0) != 0)
743 {
744someerror:
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100745 semsg(_("E782: error while reading .sug file: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200746 slang->sl_fname);
747 slang_clear_sug(slang);
748 goto nextone;
749 }
750
751 /*
752 * <SUGTABLE>: <sugwcount> <sugline> ...
753 *
754 * Read the table with word numbers. We use a file buffer for
755 * this, because it's so much like a file with lines. Makes it
756 * possible to swap the info and save on memory use.
757 */
758 slang->sl_sugbuf = open_spellbuf();
759 if (slang->sl_sugbuf == NULL)
760 goto someerror;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100761 // <sugwcount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200762 wcount = get4c(fd);
763 if (wcount < 0)
764 goto someerror;
765
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100766 // Read all the wordnr lists into the buffer, one NUL terminated
767 // list per line.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200768 ga_init2(&ga, 1, 100);
769 for (wordnr = 0; wordnr < wcount; ++wordnr)
770 {
771 ga.ga_len = 0;
772 for (;;)
773 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100774 c = getc(fd); // <sugline>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200775 if (c < 0 || ga_grow(&ga, 1) == FAIL)
776 goto someerror;
777 ((char_u *)ga.ga_data)[ga.ga_len++] = c;
778 if (c == NUL)
779 break;
780 }
781 if (ml_append_buf(slang->sl_sugbuf, (linenr_T)wordnr,
782 ga.ga_data, ga.ga_len, TRUE) == FAIL)
783 goto someerror;
784 }
785 ga_clear(&ga);
786
787 /*
788 * Need to put word counts in the word tries, so that we can find
789 * a word by its number.
790 */
791 tree_count_words(slang->sl_fbyts, slang->sl_fidxs);
792 tree_count_words(slang->sl_sbyts, slang->sl_sidxs);
793
794nextone:
795 if (fd != NULL)
796 fclose(fd);
797 STRCPY(dotp, ".spl");
798 }
799 }
800}
801
802
803/*
804 * Read a length field from "fd" in "cnt_bytes" bytes.
805 * Allocate memory, read the string into it and add a NUL at the end.
806 * Returns NULL when the count is zero.
807 * Sets "*cntp" to SP_*ERROR when there is an error, length of the result
808 * otherwise.
809 */
810 static char_u *
811read_cnt_string(FILE *fd, int cnt_bytes, int *cntp)
812{
813 int cnt = 0;
814 int i;
815 char_u *str;
816
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100817 // read the length bytes, MSB first
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200818 for (i = 0; i < cnt_bytes; ++i)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200819 {
Bram Moolenaar4ad739f2020-09-02 10:25:45 +0200820 int c = getc(fd);
821
822 if (c == EOF)
823 {
824 *cntp = SP_TRUNCERROR;
825 return NULL;
826 }
827 cnt = (cnt << 8) + (unsigned)c;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200828 }
829 *cntp = cnt;
830 if (cnt == 0)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100831 return NULL; // nothing to read, return NULL
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200832
833 str = read_string(fd, cnt);
834 if (str == NULL)
835 *cntp = SP_OTHERERROR;
836 return str;
837}
838
839/*
840 * Read SN_REGION: <regionname> ...
841 * Return SP_*ERROR flags.
842 */
843 static int
844read_region_section(FILE *fd, slang_T *lp, int len)
845{
846 int i;
847
Bram Moolenaar2993ac52018-02-10 14:12:43 +0100848 if (len > MAXREGIONS * 2)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200849 return SP_FORMERROR;
850 for (i = 0; i < len; ++i)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100851 lp->sl_regions[i] = getc(fd); // <regionname>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200852 lp->sl_regions[len] = NUL;
853 return 0;
854}
855
856/*
857 * Read SN_CHARFLAGS section: <charflagslen> <charflags>
858 * <folcharslen> <folchars>
859 * Return SP_*ERROR flags.
860 */
861 static int
862read_charflags_section(FILE *fd)
863{
864 char_u *flags;
865 char_u *fol;
866 int flagslen, follen;
867
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100868 // <charflagslen> <charflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200869 flags = read_cnt_string(fd, 1, &flagslen);
870 if (flagslen < 0)
871 return flagslen;
872
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100873 // <folcharslen> <folchars>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200874 fol = read_cnt_string(fd, 2, &follen);
875 if (follen < 0)
876 {
877 vim_free(flags);
878 return follen;
879 }
880
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100881 // Set the word-char flags and fill SPELL_ISUPPER() table.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200882 if (flags != NULL && fol != NULL)
883 set_spell_charflags(flags, flagslen, fol);
884
885 vim_free(flags);
886 vim_free(fol);
887
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100888 // When <charflagslen> is zero then <fcharlen> must also be zero.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200889 if ((flags == NULL) != (fol == NULL))
890 return SP_FORMERROR;
891 return 0;
892}
893
894/*
895 * Read SN_PREFCOND section.
896 * Return SP_*ERROR flags.
897 */
898 static int
899read_prefcond_section(FILE *fd, slang_T *lp)
900{
901 int cnt;
902 int i;
903 int n;
904 char_u *p;
905 char_u buf[MAXWLEN + 1];
906
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100907 // <prefcondcnt> <prefcond> ...
908 cnt = get2c(fd); // <prefcondcnt>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200909 if (cnt <= 0)
910 return SP_FORMERROR;
911
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200912 lp->sl_prefprog = ALLOC_CLEAR_MULT(regprog_T *, cnt);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200913 if (lp->sl_prefprog == NULL)
914 return SP_OTHERERROR;
915 lp->sl_prefixcnt = cnt;
916
917 for (i = 0; i < cnt; ++i)
918 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100919 // <prefcond> : <condlen> <condstr>
920 n = getc(fd); // <condlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200921 if (n < 0 || n >= MAXWLEN)
922 return SP_FORMERROR;
923
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100924 // When <condlen> is zero we have an empty condition. Otherwise
925 // compile the regexp program used to check for the condition.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200926 if (n > 0)
927 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100928 buf[0] = '^'; // always match at one position only
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200929 p = buf + 1;
930 while (n-- > 0)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100931 *p++ = getc(fd); // <condstr>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200932 *p = NUL;
933 lp->sl_prefprog[i] = vim_regcomp(buf, RE_MAGIC + RE_STRING);
934 }
935 }
936 return 0;
937}
938
939/*
940 * Read REP or REPSAL items section from "fd": <repcount> <rep> ...
941 * Return SP_*ERROR flags.
942 */
943 static int
944read_rep_section(FILE *fd, garray_T *gap, short *first)
945{
946 int cnt;
947 fromto_T *ftp;
948 int i;
949
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100950 cnt = get2c(fd); // <repcount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200951 if (cnt < 0)
952 return SP_TRUNCERROR;
953
954 if (ga_grow(gap, cnt) == FAIL)
955 return SP_OTHERERROR;
956
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100957 // <rep> : <repfromlen> <repfrom> <reptolen> <repto>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200958 for (; gap->ga_len < cnt; ++gap->ga_len)
959 {
960 ftp = &((fromto_T *)gap->ga_data)[gap->ga_len];
961 ftp->ft_from = read_cnt_string(fd, 1, &i);
962 if (i < 0)
963 return i;
964 if (i == 0)
965 return SP_FORMERROR;
966 ftp->ft_to = read_cnt_string(fd, 1, &i);
967 if (i <= 0)
968 {
969 vim_free(ftp->ft_from);
970 if (i < 0)
971 return i;
972 return SP_FORMERROR;
973 }
974 }
975
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100976 // Fill the first-index table.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200977 for (i = 0; i < 256; ++i)
978 first[i] = -1;
979 for (i = 0; i < gap->ga_len; ++i)
980 {
981 ftp = &((fromto_T *)gap->ga_data)[i];
982 if (first[*ftp->ft_from] == -1)
983 first[*ftp->ft_from] = i;
984 }
985 return 0;
986}
987
988/*
989 * Read SN_SAL section: <salflags> <salcount> <sal> ...
990 * Return SP_*ERROR flags.
991 */
992 static int
993read_sal_section(FILE *fd, slang_T *slang)
994{
995 int i;
996 int cnt;
997 garray_T *gap;
998 salitem_T *smp;
999 int ccnt;
1000 char_u *p;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001001
1002 slang->sl_sofo = FALSE;
1003
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001004 i = getc(fd); // <salflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001005 if (i & SAL_F0LLOWUP)
1006 slang->sl_followup = TRUE;
1007 if (i & SAL_COLLAPSE)
1008 slang->sl_collapse = TRUE;
1009 if (i & SAL_REM_ACCENTS)
1010 slang->sl_rem_accents = TRUE;
1011
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001012 cnt = get2c(fd); // <salcount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001013 if (cnt < 0)
1014 return SP_TRUNCERROR;
1015
1016 gap = &slang->sl_sal;
1017 ga_init2(gap, sizeof(salitem_T), 10);
1018 if (ga_grow(gap, cnt + 1) == FAIL)
1019 return SP_OTHERERROR;
1020
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001021 // <sal> : <salfromlen> <salfrom> <saltolen> <salto>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001022 for (; gap->ga_len < cnt; ++gap->ga_len)
1023 {
Bram Moolenaar97d2f342020-07-10 20:03:03 +02001024 int c = NUL;
1025
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001026 smp = &((salitem_T *)gap->ga_data)[gap->ga_len];
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001027 ccnt = getc(fd); // <salfromlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001028 if (ccnt < 0)
1029 return SP_TRUNCERROR;
1030 if ((p = alloc(ccnt + 2)) == NULL)
1031 return SP_OTHERERROR;
1032 smp->sm_lead = p;
1033
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001034 // Read up to the first special char into sm_lead.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001035 for (i = 0; i < ccnt; ++i)
1036 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001037 c = getc(fd); // <salfrom>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001038 if (vim_strchr((char_u *)"0123456789(-<^$", c) != NULL)
1039 break;
1040 *p++ = c;
1041 }
1042 smp->sm_leadlen = (int)(p - smp->sm_lead);
1043 *p++ = NUL;
1044
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001045 // Put (abc) chars in sm_oneof, if any.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001046 if (c == '(')
1047 {
1048 smp->sm_oneof = p;
1049 for (++i; i < ccnt; ++i)
1050 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001051 c = getc(fd); // <salfrom>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001052 if (c == ')')
1053 break;
1054 *p++ = c;
1055 }
1056 *p++ = NUL;
1057 if (++i < ccnt)
1058 c = getc(fd);
1059 }
1060 else
1061 smp->sm_oneof = NULL;
1062
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001063 // Any following chars go in sm_rules.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001064 smp->sm_rules = p;
1065 if (i < ccnt)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001066 // store the char we got while checking for end of sm_lead
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001067 *p++ = c;
1068 for (++i; i < ccnt; ++i)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001069 *p++ = getc(fd); // <salfrom>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001070 *p++ = NUL;
1071
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001072 // <saltolen> <salto>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001073 smp->sm_to = read_cnt_string(fd, 1, &ccnt);
1074 if (ccnt < 0)
1075 {
1076 vim_free(smp->sm_lead);
1077 return ccnt;
1078 }
1079
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001080 if (has_mbyte)
1081 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001082 // convert the multi-byte strings to wide char strings
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001083 smp->sm_lead_w = mb_str2wide(smp->sm_lead);
1084 smp->sm_leadlen = mb_charlen(smp->sm_lead);
1085 if (smp->sm_oneof == NULL)
1086 smp->sm_oneof_w = NULL;
1087 else
1088 smp->sm_oneof_w = mb_str2wide(smp->sm_oneof);
1089 if (smp->sm_to == NULL)
1090 smp->sm_to_w = NULL;
1091 else
1092 smp->sm_to_w = mb_str2wide(smp->sm_to);
1093 if (smp->sm_lead_w == NULL
1094 || (smp->sm_oneof_w == NULL && smp->sm_oneof != NULL)
1095 || (smp->sm_to_w == NULL && smp->sm_to != NULL))
1096 {
1097 vim_free(smp->sm_lead);
1098 vim_free(smp->sm_to);
1099 vim_free(smp->sm_lead_w);
1100 vim_free(smp->sm_oneof_w);
1101 vim_free(smp->sm_to_w);
1102 return SP_OTHERERROR;
1103 }
1104 }
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001105 }
1106
1107 if (gap->ga_len > 0)
1108 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001109 // Add one extra entry to mark the end with an empty sm_lead. Avoids
1110 // that we need to check the index every time.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001111 smp = &((salitem_T *)gap->ga_data)[gap->ga_len];
1112 if ((p = alloc(1)) == NULL)
1113 return SP_OTHERERROR;
1114 p[0] = NUL;
1115 smp->sm_lead = p;
1116 smp->sm_leadlen = 0;
1117 smp->sm_oneof = NULL;
1118 smp->sm_rules = p;
1119 smp->sm_to = NULL;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001120 if (has_mbyte)
1121 {
1122 smp->sm_lead_w = mb_str2wide(smp->sm_lead);
1123 smp->sm_leadlen = 0;
1124 smp->sm_oneof_w = NULL;
1125 smp->sm_to_w = NULL;
1126 }
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001127 ++gap->ga_len;
1128 }
1129
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001130 // Fill the first-index table.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001131 set_sal_first(slang);
1132
1133 return 0;
1134}
1135
1136/*
1137 * Read SN_WORDS: <word> ...
1138 * Return SP_*ERROR flags.
1139 */
1140 static int
1141read_words_section(FILE *fd, slang_T *lp, int len)
1142{
1143 int done = 0;
1144 int i;
1145 int c;
1146 char_u word[MAXWLEN];
1147
1148 while (done < len)
1149 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001150 // Read one word at a time.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001151 for (i = 0; ; ++i)
1152 {
1153 c = getc(fd);
1154 if (c == EOF)
1155 return SP_TRUNCERROR;
1156 word[i] = c;
1157 if (word[i] == NUL)
1158 break;
1159 if (i == MAXWLEN - 1)
1160 return SP_FORMERROR;
1161 }
1162
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001163 // Init the count to 10.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001164 count_common_word(lp, word, -1, 10);
1165 done += i + 1;
1166 }
1167 return 0;
1168}
1169
1170/*
1171 * SN_SOFO: <sofofromlen> <sofofrom> <sofotolen> <sofoto>
1172 * Return SP_*ERROR flags.
1173 */
1174 static int
1175read_sofo_section(FILE *fd, slang_T *slang)
1176{
1177 int cnt;
1178 char_u *from, *to;
1179 int res;
1180
1181 slang->sl_sofo = TRUE;
1182
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001183 // <sofofromlen> <sofofrom>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001184 from = read_cnt_string(fd, 2, &cnt);
1185 if (cnt < 0)
1186 return cnt;
1187
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001188 // <sofotolen> <sofoto>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001189 to = read_cnt_string(fd, 2, &cnt);
1190 if (cnt < 0)
1191 {
1192 vim_free(from);
1193 return cnt;
1194 }
1195
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001196 // Store the info in slang->sl_sal and/or slang->sl_sal_first.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001197 if (from != NULL && to != NULL)
1198 res = set_sofo(slang, from, to);
1199 else if (from != NULL || to != NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001200 res = SP_FORMERROR; // only one of two strings is an error
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001201 else
1202 res = 0;
1203
1204 vim_free(from);
1205 vim_free(to);
1206 return res;
1207}
1208
1209/*
1210 * Read the compound section from the .spl file:
1211 * <compmax> <compminlen> <compsylmax> <compoptions> <compflags>
1212 * Returns SP_*ERROR flags.
1213 */
1214 static int
1215read_compound(FILE *fd, slang_T *slang, int len)
1216{
1217 int todo = len;
1218 int c;
1219 int atstart;
1220 char_u *pat;
1221 char_u *pp;
1222 char_u *cp;
1223 char_u *ap;
1224 char_u *crp;
1225 int cnt;
1226 garray_T *gap;
1227
1228 if (todo < 2)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001229 return SP_FORMERROR; // need at least two bytes
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001230
1231 --todo;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001232 c = getc(fd); // <compmax>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001233 if (c < 2)
1234 c = MAXWLEN;
1235 slang->sl_compmax = c;
1236
1237 --todo;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001238 c = getc(fd); // <compminlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001239 if (c < 1)
1240 c = 0;
1241 slang->sl_compminlen = c;
1242
1243 --todo;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001244 c = getc(fd); // <compsylmax>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001245 if (c < 1)
1246 c = MAXWLEN;
1247 slang->sl_compsylmax = c;
1248
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001249 c = getc(fd); // <compoptions>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001250 if (c != 0)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001251 ungetc(c, fd); // be backwards compatible with Vim 7.0b
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001252 else
1253 {
1254 --todo;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001255 c = getc(fd); // only use the lower byte for now
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001256 --todo;
1257 slang->sl_compoptions = c;
1258
1259 gap = &slang->sl_comppat;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001260 c = get2c(fd); // <comppatcount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001261 todo -= 2;
1262 ga_init2(gap, sizeof(char_u *), c);
1263 if (ga_grow(gap, c) == OK)
1264 while (--c >= 0)
1265 {
1266 ((char_u **)(gap->ga_data))[gap->ga_len++] =
1267 read_cnt_string(fd, 1, &cnt);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001268 // <comppatlen> <comppattext>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001269 if (cnt < 0)
1270 return cnt;
1271 todo -= cnt + 1;
1272 }
1273 }
1274 if (todo < 0)
1275 return SP_FORMERROR;
1276
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001277 // Turn the COMPOUNDRULE items into a regexp pattern:
1278 // "a[bc]/a*b+" -> "^\(a[bc]\|a*b\+\)$".
1279 // Inserting backslashes may double the length, "^\(\)$<Nul>" is 7 bytes.
1280 // Conversion to utf-8 may double the size.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001281 c = todo * 2 + 7;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001282 if (enc_utf8)
1283 c += todo * 2;
Bram Moolenaar964b3742019-05-24 18:54:09 +02001284 pat = alloc(c);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001285 if (pat == NULL)
1286 return SP_OTHERERROR;
1287
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001288 // We also need a list of all flags that can appear at the start and one
1289 // for all flags.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001290 cp = alloc(todo + 1);
1291 if (cp == NULL)
1292 {
1293 vim_free(pat);
1294 return SP_OTHERERROR;
1295 }
1296 slang->sl_compstartflags = cp;
1297 *cp = NUL;
1298
1299 ap = alloc(todo + 1);
1300 if (ap == NULL)
1301 {
1302 vim_free(pat);
1303 return SP_OTHERERROR;
1304 }
1305 slang->sl_compallflags = ap;
1306 *ap = NUL;
1307
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001308 // And a list of all patterns in their original form, for checking whether
1309 // compounding may work in match_compoundrule(). This is freed when we
1310 // encounter a wildcard, the check doesn't work then.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001311 crp = alloc(todo + 1);
1312 slang->sl_comprules = crp;
1313
1314 pp = pat;
1315 *pp++ = '^';
1316 *pp++ = '\\';
1317 *pp++ = '(';
1318
1319 atstart = 1;
1320 while (todo-- > 0)
1321 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001322 c = getc(fd); // <compflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001323 if (c == EOF)
1324 {
1325 vim_free(pat);
1326 return SP_TRUNCERROR;
1327 }
1328
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001329 // Add all flags to "sl_compallflags".
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001330 if (vim_strchr((char_u *)"?*+[]/", c) == NULL
1331 && !byte_in_str(slang->sl_compallflags, c))
1332 {
1333 *ap++ = c;
1334 *ap = NUL;
1335 }
1336
1337 if (atstart != 0)
1338 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001339 // At start of item: copy flags to "sl_compstartflags". For a
1340 // [abc] item set "atstart" to 2 and copy up to the ']'.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001341 if (c == '[')
1342 atstart = 2;
1343 else if (c == ']')
1344 atstart = 0;
1345 else
1346 {
1347 if (!byte_in_str(slang->sl_compstartflags, c))
1348 {
1349 *cp++ = c;
1350 *cp = NUL;
1351 }
1352 if (atstart == 1)
1353 atstart = 0;
1354 }
1355 }
1356
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001357 // Copy flag to "sl_comprules", unless we run into a wildcard.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001358 if (crp != NULL)
1359 {
1360 if (c == '?' || c == '+' || c == '*')
1361 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01001362 VIM_CLEAR(slang->sl_comprules);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001363 crp = NULL;
1364 }
1365 else
1366 *crp++ = c;
1367 }
1368
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001369 if (c == '/') // slash separates two items
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001370 {
1371 *pp++ = '\\';
1372 *pp++ = '|';
1373 atstart = 1;
1374 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001375 else // normal char, "[abc]" and '*' are copied as-is
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001376 {
1377 if (c == '?' || c == '+' || c == '~')
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001378 *pp++ = '\\'; // "a?" becomes "a\?", "a+" becomes "a\+"
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001379 if (enc_utf8)
1380 pp += mb_char2bytes(c, pp);
1381 else
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001382 *pp++ = c;
1383 }
1384 }
1385
1386 *pp++ = '\\';
1387 *pp++ = ')';
1388 *pp++ = '$';
1389 *pp = NUL;
1390
1391 if (crp != NULL)
1392 *crp = NUL;
1393
1394 slang->sl_compprog = vim_regcomp(pat, RE_MAGIC + RE_STRING + RE_STRICT);
1395 vim_free(pat);
1396 if (slang->sl_compprog == NULL)
1397 return SP_FORMERROR;
1398
1399 return 0;
1400}
1401
1402/*
1403 * Set the SOFOFROM and SOFOTO items in language "lp".
1404 * Returns SP_*ERROR flags when there is something wrong.
1405 */
1406 static int
1407set_sofo(slang_T *lp, char_u *from, char_u *to)
1408{
1409 int i;
1410
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001411 garray_T *gap;
1412 char_u *s;
1413 char_u *p;
1414 int c;
1415 int *inp;
1416
1417 if (has_mbyte)
1418 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001419 // Use "sl_sal" as an array with 256 pointers to a list of wide
1420 // characters. The index is the low byte of the character.
1421 // The list contains from-to pairs with a terminating NUL.
1422 // sl_sal_first[] is used for latin1 "from" characters.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001423 gap = &lp->sl_sal;
1424 ga_init2(gap, sizeof(int *), 1);
1425 if (ga_grow(gap, 256) == FAIL)
1426 return SP_OTHERERROR;
1427 vim_memset(gap->ga_data, 0, sizeof(int *) * 256);
1428 gap->ga_len = 256;
1429
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001430 // First count the number of items for each list. Temporarily use
1431 // sl_sal_first[] for this.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001432 for (p = from, s = to; *p != NUL && *s != NUL; )
1433 {
1434 c = mb_cptr2char_adv(&p);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001435 MB_CPTR_ADV(s);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001436 if (c >= 256)
1437 ++lp->sl_sal_first[c & 0xff];
1438 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001439 if (*p != NUL || *s != NUL) // lengths differ
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001440 return SP_FORMERROR;
1441
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001442 // Allocate the lists.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001443 for (i = 0; i < 256; ++i)
1444 if (lp->sl_sal_first[i] > 0)
1445 {
1446 p = alloc(sizeof(int) * (lp->sl_sal_first[i] * 2 + 1));
1447 if (p == NULL)
1448 return SP_OTHERERROR;
1449 ((int **)gap->ga_data)[i] = (int *)p;
1450 *(int *)p = 0;
1451 }
1452
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001453 // Put the characters up to 255 in sl_sal_first[] the rest in a sl_sal
1454 // list.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001455 vim_memset(lp->sl_sal_first, 0, sizeof(salfirst_T) * 256);
1456 for (p = from, s = to; *p != NUL && *s != NUL; )
1457 {
1458 c = mb_cptr2char_adv(&p);
1459 i = mb_cptr2char_adv(&s);
1460 if (c >= 256)
1461 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001462 // Append the from-to chars at the end of the list with
1463 // the low byte.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001464 inp = ((int **)gap->ga_data)[c & 0xff];
1465 while (*inp != 0)
1466 ++inp;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001467 *inp++ = c; // from char
1468 *inp++ = i; // to char
1469 *inp++ = NUL; // NUL at the end
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001470 }
1471 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001472 // mapping byte to char is done in sl_sal_first[]
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001473 lp->sl_sal_first[c] = i;
1474 }
1475 }
1476 else
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001477 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001478 // mapping bytes to bytes is done in sl_sal_first[]
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001479 if (STRLEN(from) != STRLEN(to))
1480 return SP_FORMERROR;
1481
1482 for (i = 0; to[i] != NUL; ++i)
1483 lp->sl_sal_first[from[i]] = to[i];
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001484 lp->sl_sal.ga_len = 1; // indicates we have soundfolding
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001485 }
1486
1487 return 0;
1488}
1489
1490/*
1491 * Fill the first-index table for "lp".
1492 */
1493 static void
1494set_sal_first(slang_T *lp)
1495{
1496 salfirst_T *sfirst;
1497 int i;
1498 salitem_T *smp;
1499 int c;
1500 garray_T *gap = &lp->sl_sal;
1501
1502 sfirst = lp->sl_sal_first;
1503 for (i = 0; i < 256; ++i)
1504 sfirst[i] = -1;
1505 smp = (salitem_T *)gap->ga_data;
1506 for (i = 0; i < gap->ga_len; ++i)
1507 {
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001508 if (has_mbyte)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001509 // Use the lowest byte of the first character. For latin1 it's
1510 // the character, for other encodings it should differ for most
1511 // characters.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001512 c = *smp[i].sm_lead_w & 0xff;
1513 else
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001514 c = *smp[i].sm_lead;
1515 if (sfirst[c] == -1)
1516 {
1517 sfirst[c] = i;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001518 if (has_mbyte)
1519 {
1520 int n;
1521
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001522 // Make sure all entries with this byte are following each
1523 // other. Move the ones that are in the wrong position. Do
1524 // keep the same ordering!
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001525 while (i + 1 < gap->ga_len
1526 && (*smp[i + 1].sm_lead_w & 0xff) == c)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001527 // Skip over entry with same index byte.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001528 ++i;
1529
1530 for (n = 1; i + n < gap->ga_len; ++n)
1531 if ((*smp[i + n].sm_lead_w & 0xff) == c)
1532 {
1533 salitem_T tsal;
1534
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001535 // Move entry with same index byte after the entries
1536 // we already found.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001537 ++i;
1538 --n;
1539 tsal = smp[i + n];
1540 mch_memmove(smp + i + 1, smp + i,
1541 sizeof(salitem_T) * n);
1542 smp[i] = tsal;
1543 }
1544 }
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001545 }
1546 }
1547}
1548
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001549/*
1550 * Turn a multi-byte string into a wide character string.
1551 * Return it in allocated memory (NULL for out-of-memory)
1552 */
1553 static int *
1554mb_str2wide(char_u *s)
1555{
1556 int *res;
1557 char_u *p;
1558 int i = 0;
1559
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001560 res = ALLOC_MULT(int, mb_charlen(s) + 1);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001561 if (res != NULL)
1562 {
1563 for (p = s; *p != NUL; )
1564 res[i++] = mb_ptr2char_adv(&p);
1565 res[i] = NUL;
1566 }
1567 return res;
1568}
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001569
1570/*
1571 * Read a tree from the .spl or .sug file.
1572 * Allocates the memory and stores pointers in "bytsp" and "idxsp".
1573 * This is skipped when the tree has zero length.
1574 * Returns zero when OK, SP_ value for an error.
1575 */
1576 static int
1577spell_read_tree(
1578 FILE *fd,
1579 char_u **bytsp,
Bram Moolenaar07399e72020-08-24 20:05:50 +02001580 long *bytsp_len,
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001581 idx_T **idxsp,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001582 int prefixtree, // TRUE for the prefix tree
1583 int prefixcnt) // when "prefixtree" is TRUE: prefix count
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001584{
Bram Moolenaar6d3c8582017-02-26 15:27:23 +01001585 long len;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001586 int idx;
1587 char_u *bp;
1588 idx_T *ip;
1589
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001590 // The tree size was computed when writing the file, so that we can
1591 // allocate it as one long block. <nodecount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001592 len = get4c(fd);
1593 if (len < 0)
1594 return SP_TRUNCERROR;
Bram Moolenaar6d3c8582017-02-26 15:27:23 +01001595 if (len >= LONG_MAX / (long)sizeof(int))
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001596 // Invalid length, multiply with sizeof(int) would overflow.
Bram Moolenaar399c2972017-02-09 21:07:12 +01001597 return SP_FORMERROR;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001598 if (len > 0)
1599 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001600 // Allocate the byte array.
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02001601 bp = alloc(len);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001602 if (bp == NULL)
1603 return SP_OTHERERROR;
1604 *bytsp = bp;
Bram Moolenaar07399e72020-08-24 20:05:50 +02001605 if (bytsp_len != NULL)
1606 *bytsp_len = len;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001607
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001608 // Allocate the index array.
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001609 ip = lalloc_clear(len * sizeof(int), TRUE);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001610 if (ip == NULL)
1611 return SP_OTHERERROR;
1612 *idxsp = ip;
1613
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001614 // Recursively read the tree and store it in the array.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001615 idx = read_tree_node(fd, bp, ip, len, 0, prefixtree, prefixcnt);
1616 if (idx < 0)
1617 return idx;
1618 }
1619 return 0;
1620}
1621
1622/*
1623 * Read one row of siblings from the spell file and store it in the byte array
1624 * "byts" and index array "idxs". Recursively read the children.
1625 *
1626 * NOTE: The code here must match put_node()!
1627 *
1628 * Returns the index (>= 0) following the siblings.
1629 * Returns SP_TRUNCERROR if the file is shorter than expected.
1630 * Returns SP_FORMERROR if there is a format error.
1631 */
1632 static idx_T
1633read_tree_node(
1634 FILE *fd,
1635 char_u *byts,
1636 idx_T *idxs,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001637 int maxidx, // size of arrays
1638 idx_T startidx, // current index in "byts" and "idxs"
1639 int prefixtree, // TRUE for reading PREFIXTREE
1640 int maxprefcondnr) // maximum for <prefcondnr>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001641{
1642 int len;
1643 int i;
1644 int n;
1645 idx_T idx = startidx;
1646 int c;
1647 int c2;
1648#define SHARED_MASK 0x8000000
1649
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001650 len = getc(fd); // <siblingcount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001651 if (len <= 0)
1652 return SP_TRUNCERROR;
1653
1654 if (startidx + len >= maxidx)
1655 return SP_FORMERROR;
1656 byts[idx++] = len;
1657
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001658 // Read the byte values, flag/region bytes and shared indexes.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001659 for (i = 1; i <= len; ++i)
1660 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001661 c = getc(fd); // <byte>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001662 if (c < 0)
1663 return SP_TRUNCERROR;
1664 if (c <= BY_SPECIAL)
1665 {
1666 if (c == BY_NOFLAGS && !prefixtree)
1667 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001668 // No flags, all regions.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001669 idxs[idx] = 0;
1670 c = 0;
1671 }
1672 else if (c != BY_INDEX)
1673 {
1674 if (prefixtree)
1675 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001676 // Read the optional pflags byte, the prefix ID and the
1677 // condition nr. In idxs[] store the prefix ID in the low
1678 // byte, the condition index shifted up 8 bits, the flags
1679 // shifted up 24 bits.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001680 if (c == BY_FLAGS)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001681 c = getc(fd) << 24; // <pflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001682 else
1683 c = 0;
1684
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001685 c |= getc(fd); // <affixID>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001686
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001687 n = get2c(fd); // <prefcondnr>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001688 if (n >= maxprefcondnr)
1689 return SP_FORMERROR;
1690 c |= (n << 8);
1691 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001692 else // c must be BY_FLAGS or BY_FLAGS2
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001693 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001694 // Read flags and optional region and prefix ID. In
1695 // idxs[] the flags go in the low two bytes, region above
1696 // that and prefix ID above the region.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001697 c2 = c;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001698 c = getc(fd); // <flags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001699 if (c2 == BY_FLAGS2)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001700 c = (getc(fd) << 8) + c; // <flags2>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001701 if (c & WF_REGION)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001702 c = (getc(fd) << 16) + c; // <region>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001703 if (c & WF_AFX)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001704 c = (getc(fd) << 24) + c; // <affixID>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001705 }
1706
1707 idxs[idx] = c;
1708 c = 0;
1709 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001710 else // c == BY_INDEX
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001711 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001712 // <nodeidx>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001713 n = get3c(fd);
1714 if (n < 0 || n >= maxidx)
1715 return SP_FORMERROR;
1716 idxs[idx] = n + SHARED_MASK;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001717 c = getc(fd); // <xbyte>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001718 }
1719 }
1720 byts[idx++] = c;
1721 }
1722
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001723 // Recursively read the children for non-shared siblings.
1724 // Skip the end-of-word ones (zero byte value) and the shared ones (and
1725 // remove SHARED_MASK)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001726 for (i = 1; i <= len; ++i)
1727 if (byts[startidx + i] != 0)
1728 {
1729 if (idxs[startidx + i] & SHARED_MASK)
1730 idxs[startidx + i] &= ~SHARED_MASK;
1731 else
1732 {
1733 idxs[startidx + i] = idx;
1734 idx = read_tree_node(fd, byts, idxs, maxidx, idx,
1735 prefixtree, maxprefcondnr);
1736 if (idx < 0)
1737 break;
1738 }
1739 }
1740
1741 return idx;
1742}
1743
1744/*
1745 * Reload the spell file "fname" if it's loaded.
1746 */
1747 static void
1748spell_reload_one(
1749 char_u *fname,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001750 int added_word) // invoked through "zg"
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001751{
1752 slang_T *slang;
1753 int didit = FALSE;
1754
Bram Moolenaaraeea7212020-04-02 18:50:46 +02001755 FOR_ALL_SPELL_LANGS(slang)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001756 {
Bram Moolenaar99499b12019-05-23 21:35:48 +02001757 if (fullpathcmp(fname, slang->sl_fname, FALSE, TRUE) == FPC_SAME)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001758 {
1759 slang_clear(slang);
1760 if (spell_load_file(fname, NULL, slang, FALSE) == NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001761 // reloading failed, clear the language
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001762 slang_clear(slang);
1763 redraw_all_later(SOME_VALID);
1764 didit = TRUE;
1765 }
1766 }
1767
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001768 // When "zg" was used and the file wasn't loaded yet, should redo
1769 // 'spelllang' to load it now.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001770 if (added_word && !didit)
1771 did_set_spelllang(curwin);
1772}
1773
1774
1775/*
1776 * Functions for ":mkspell".
1777 */
1778
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001779#define MAXLINELEN 500 // Maximum length in bytes of a line in a .aff
1780 // and .dic file.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001781/*
1782 * Main structure to store the contents of a ".aff" file.
1783 */
1784typedef struct afffile_S
1785{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001786 char_u *af_enc; // "SET", normalized, alloc'ed string or NULL
1787 int af_flagtype; // AFT_CHAR, AFT_LONG, AFT_NUM or AFT_CAPLONG
1788 unsigned af_rare; // RARE ID for rare word
1789 unsigned af_keepcase; // KEEPCASE ID for keep-case word
1790 unsigned af_bad; // BAD ID for banned word
1791 unsigned af_needaffix; // NEEDAFFIX ID
1792 unsigned af_circumfix; // CIRCUMFIX ID
1793 unsigned af_needcomp; // NEEDCOMPOUND ID
1794 unsigned af_comproot; // COMPOUNDROOT ID
1795 unsigned af_compforbid; // COMPOUNDFORBIDFLAG ID
1796 unsigned af_comppermit; // COMPOUNDPERMITFLAG ID
1797 unsigned af_nosuggest; // NOSUGGEST ID
1798 int af_pfxpostpone; // postpone prefixes without chop string and
1799 // without flags
1800 int af_ignoreextra; // IGNOREEXTRA present
1801 hashtab_T af_pref; // hashtable for prefixes, affheader_T
1802 hashtab_T af_suff; // hashtable for suffixes, affheader_T
1803 hashtab_T af_comp; // hashtable for compound flags, compitem_T
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001804} afffile_T;
1805
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001806#define AFT_CHAR 0 // flags are one character
1807#define AFT_LONG 1 // flags are two characters
1808#define AFT_CAPLONG 2 // flags are one or two characters
1809#define AFT_NUM 3 // flags are numbers, comma separated
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001810
1811typedef struct affentry_S affentry_T;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001812// Affix entry from ".aff" file. Used for prefixes and suffixes.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001813struct affentry_S
1814{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001815 affentry_T *ae_next; // next affix with same name/number
1816 char_u *ae_chop; // text to chop off basic word (can be NULL)
1817 char_u *ae_add; // text to add to basic word (can be NULL)
1818 char_u *ae_flags; // flags on the affix (can be NULL)
1819 char_u *ae_cond; // condition (NULL for ".")
1820 regprog_T *ae_prog; // regexp program for ae_cond or NULL
1821 char ae_compforbid; // COMPOUNDFORBIDFLAG found
1822 char ae_comppermit; // COMPOUNDPERMITFLAG found
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001823};
1824
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001825#define AH_KEY_LEN 17 // 2 x 8 bytes + NUL
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001826
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001827// Affix header from ".aff" file. Used for af_pref and af_suff.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001828typedef struct affheader_S
1829{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001830 char_u ah_key[AH_KEY_LEN]; // key for hashtab == name of affix
1831 unsigned ah_flag; // affix name as number, uses "af_flagtype"
1832 int ah_newID; // prefix ID after renumbering; 0 if not used
1833 int ah_combine; // suffix may combine with prefix
1834 int ah_follows; // another affix block should be following
1835 affentry_T *ah_first; // first affix entry
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001836} affheader_T;
1837
1838#define HI2AH(hi) ((affheader_T *)(hi)->hi_key)
1839
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001840// Flag used in compound items.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001841typedef struct compitem_S
1842{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001843 char_u ci_key[AH_KEY_LEN]; // key for hashtab == name of compound
1844 unsigned ci_flag; // affix name as number, uses "af_flagtype"
1845 int ci_newID; // affix ID after renumbering.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001846} compitem_T;
1847
1848#define HI2CI(hi) ((compitem_T *)(hi)->hi_key)
1849
1850/*
1851 * Structure that is used to store the items in the word tree. This avoids
1852 * the need to keep track of each allocated thing, everything is freed all at
1853 * once after ":mkspell" is done.
1854 * Note: "sb_next" must be just before "sb_data" to make sure the alignment of
1855 * "sb_data" is correct for systems where pointers must be aligned on
1856 * pointer-size boundaries and sizeof(pointer) > sizeof(int) (e.g., Sparc).
1857 */
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001858#define SBLOCKSIZE 16000 // size of sb_data
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001859typedef struct sblock_S sblock_T;
1860struct sblock_S
1861{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001862 int sb_used; // nr of bytes already in use
1863 sblock_T *sb_next; // next block in list
1864 char_u sb_data[1]; // data, actually longer
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001865};
1866
1867/*
1868 * A node in the tree.
1869 */
1870typedef struct wordnode_S wordnode_T;
1871struct wordnode_S
1872{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001873 union // shared to save space
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001874 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001875 char_u hashkey[6]; // the hash key, only used while compressing
1876 int index; // index in written nodes (valid after first
1877 // round)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001878 } wn_u1;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001879 union // shared to save space
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001880 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001881 wordnode_T *next; // next node with same hash key
1882 wordnode_T *wnode; // parent node that will write this node
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001883 } wn_u2;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001884 wordnode_T *wn_child; // child (next byte in word)
1885 wordnode_T *wn_sibling; // next sibling (alternate byte in word,
1886 // always sorted)
1887 int wn_refs; // Nr. of references to this node. Only
1888 // relevant for first node in a list of
1889 // siblings, in following siblings it is
1890 // always one.
1891 char_u wn_byte; // Byte for this node. NUL for word end
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001892
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001893 // Info for when "wn_byte" is NUL.
1894 // In PREFIXTREE "wn_region" is used for the prefcondnr.
1895 // In the soundfolded word tree "wn_flags" has the MSW of the wordnr and
1896 // "wn_region" the LSW of the wordnr.
1897 char_u wn_affixID; // supported/required prefix ID or 0
1898 short_u wn_flags; // WF_ flags
1899 short wn_region; // region mask
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001900
1901#ifdef SPELL_PRINTTREE
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001902 int wn_nr; // sequence nr for printing
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001903#endif
1904};
1905
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001906#define WN_MASK 0xffff // mask relevant bits of "wn_flags"
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001907
1908#define HI2WN(hi) (wordnode_T *)((hi)->hi_key)
1909
1910/*
1911 * Info used while reading the spell files.
1912 */
1913typedef struct spellinfo_S
1914{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001915 wordnode_T *si_foldroot; // tree with case-folded words
1916 long si_foldwcount; // nr of words in si_foldroot
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001917
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001918 wordnode_T *si_keeproot; // tree with keep-case words
1919 long si_keepwcount; // nr of words in si_keeproot
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001920
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001921 wordnode_T *si_prefroot; // tree with postponed prefixes
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001922
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001923 long si_sugtree; // creating the soundfolding trie
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001924
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001925 sblock_T *si_blocks; // memory blocks used
1926 long si_blocks_cnt; // memory blocks allocated
1927 int si_did_emsg; // TRUE when ran out of memory
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001928
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001929 long si_compress_cnt; // words to add before lowering
1930 // compression limit
1931 wordnode_T *si_first_free; // List of nodes that have been freed during
1932 // compression, linked by "wn_child" field.
1933 long si_free_count; // number of nodes in si_first_free
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001934#ifdef SPELL_PRINTTREE
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001935 int si_wordnode_nr; // sequence nr for nodes
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001936#endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001937 buf_T *si_spellbuf; // buffer used to store soundfold word table
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001938
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001939 int si_ascii; // handling only ASCII words
1940 int si_add; // addition file
1941 int si_clear_chartab; // when TRUE clear char tables
1942 int si_region; // region mask
1943 vimconv_T si_conv; // for conversion to 'encoding'
1944 int si_memtot; // runtime memory used
1945 int si_verbose; // verbose messages
1946 int si_msg_count; // number of words added since last message
1947 char_u *si_info; // info text chars or NULL
1948 int si_region_count; // number of regions supported (1 when there
1949 // are no regions)
Bram Moolenaar2993ac52018-02-10 14:12:43 +01001950 char_u si_region_name[MAXREGIONS * 2 + 1];
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001951 // region names; used only if
1952 // si_region_count > 1)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001953
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001954 garray_T si_rep; // list of fromto_T entries from REP lines
1955 garray_T si_repsal; // list of fromto_T entries from REPSAL lines
1956 garray_T si_sal; // list of fromto_T entries from SAL lines
1957 char_u *si_sofofr; // SOFOFROM text
1958 char_u *si_sofoto; // SOFOTO text
1959 int si_nosugfile; // NOSUGFILE item found
1960 int si_nosplitsugs; // NOSPLITSUGS item found
1961 int si_nocompoundsugs; // NOCOMPOUNDSUGS item found
1962 int si_followup; // soundsalike: ?
1963 int si_collapse; // soundsalike: ?
1964 hashtab_T si_commonwords; // hashtable for common words
1965 time_t si_sugtime; // timestamp for .sug file
1966 int si_rem_accents; // soundsalike: remove accents
1967 garray_T si_map; // MAP info concatenated
1968 char_u *si_midword; // MIDWORD chars or NULL
1969 int si_compmax; // max nr of words for compounding
1970 int si_compminlen; // minimal length for compounding
1971 int si_compsylmax; // max nr of syllables for compounding
1972 int si_compoptions; // COMP_ flags
1973 garray_T si_comppat; // CHECKCOMPOUNDPATTERN items, each stored as
1974 // a string
1975 char_u *si_compflags; // flags used for compounding
1976 char_u si_nobreak; // NOBREAK
1977 char_u *si_syllable; // syllable string
1978 garray_T si_prefcond; // table with conditions for postponed
1979 // prefixes, each stored as a string
1980 int si_newprefID; // current value for ah_newID
1981 int si_newcompID; // current value for compound ID
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001982} spellinfo_T;
1983
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001984static int is_aff_rule(char_u **items, int itemcnt, char *rulename, int mincount);
1985static void aff_process_flags(afffile_T *affile, affentry_T *entry);
1986static int spell_info_item(char_u *s);
1987static unsigned affitem2flag(int flagtype, char_u *item, char_u *fname, int lnum);
1988static unsigned get_affitem(int flagtype, char_u **pp);
1989static void process_compflags(spellinfo_T *spin, afffile_T *aff, char_u *compflags);
1990static void check_renumber(spellinfo_T *spin);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001991static void aff_check_number(int spinval, int affval, char *name);
1992static void aff_check_string(char_u *spinval, char_u *affval, char *name);
1993static int str_equal(char_u *s1, char_u *s2);
1994static void add_fromto(spellinfo_T *spin, garray_T *gap, char_u *from, char_u *to);
1995static int sal_to_bool(char_u *s);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001996static int get_affix_flags(afffile_T *affile, char_u *afflist);
1997static int get_pfxlist(afffile_T *affile, char_u *afflist, char_u *store_afflist);
1998static void get_compflags(afffile_T *affile, char_u *afflist, char_u *store_afflist);
1999static int store_aff_word(spellinfo_T *spin, char_u *word, char_u *afflist, afffile_T *affile, hashtab_T *ht, hashtab_T *xht, int condit, int flags, char_u *pfxlist, int pfxlen);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002000static void *getroom(spellinfo_T *spin, size_t len, int align);
2001static char_u *getroom_save(spellinfo_T *spin, char_u *s);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002002static int store_word(spellinfo_T *spin, char_u *word, int flags, int region, char_u *pfxlist, int need_affix);
2003static int tree_add_word(spellinfo_T *spin, char_u *word, wordnode_T *tree, int flags, int region, int affixID);
2004static wordnode_T *get_wordnode(spellinfo_T *spin);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002005static void free_wordnode(spellinfo_T *spin, wordnode_T *n);
Bram Moolenaar408c23b2020-06-03 22:15:45 +02002006static void wordtree_compress(spellinfo_T *spin, wordnode_T *root, char *name);
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02002007static long node_compress(spellinfo_T *spin, wordnode_T *node, hashtab_T *ht, long *tot);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002008static int node_equal(wordnode_T *n1, wordnode_T *n2);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002009static void clear_node(wordnode_T *node);
2010static int put_node(FILE *fd, wordnode_T *node, int idx, int regionmask, int prefixtree);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002011static int sug_filltree(spellinfo_T *spin, slang_T *slang);
2012static int sug_maketable(spellinfo_T *spin);
2013static int sug_filltable(spellinfo_T *spin, wordnode_T *node, int startwordnr, garray_T *gap);
2014static int offset2bytes(int nr, char_u *buf);
2015static void sug_write(spellinfo_T *spin, char_u *fname);
2016static void spell_message(spellinfo_T *spin, char_u *str);
2017static void init_spellfile(void);
2018
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002019// In the postponed prefixes tree wn_flags is used to store the WFP_ flags,
2020// but it must be negative to indicate the prefix tree to tree_add_word().
2021// Use a negative number with the lower 8 bits zero.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002022#define PFX_FLAGS -256
2023
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002024// flags for "condit" argument of store_aff_word()
2025#define CONDIT_COMB 1 // affix must combine
2026#define CONDIT_CFIX 2 // affix must have CIRCUMFIX flag
2027#define CONDIT_SUF 4 // add a suffix for matching flags
2028#define CONDIT_AFF 8 // word already has an affix
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002029
2030/*
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02002031 * Tunable parameters for when the tree is compressed. Filled from the
2032 * 'mkspellmem' option.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002033 */
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002034static long compress_start = 30000; // memory / SBLOCKSIZE
2035static long compress_inc = 100; // memory / SBLOCKSIZE
2036static long compress_added = 500000; // word count
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002037
2038/*
2039 * Check the 'mkspellmem' option. Return FAIL if it's wrong.
2040 * Sets "sps_flags".
2041 */
2042 int
2043spell_check_msm(void)
2044{
2045 char_u *p = p_msm;
2046 long start = 0;
2047 long incr = 0;
2048 long added = 0;
2049
2050 if (!VIM_ISDIGIT(*p))
2051 return FAIL;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002052 // block count = (value * 1024) / SBLOCKSIZE (but avoid overflow)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002053 start = (getdigits(&p) * 10) / (SBLOCKSIZE / 102);
2054 if (*p != ',')
2055 return FAIL;
2056 ++p;
2057 if (!VIM_ISDIGIT(*p))
2058 return FAIL;
2059 incr = (getdigits(&p) * 102) / (SBLOCKSIZE / 10);
2060 if (*p != ',')
2061 return FAIL;
2062 ++p;
2063 if (!VIM_ISDIGIT(*p))
2064 return FAIL;
2065 added = getdigits(&p) * 1024;
2066 if (*p != NUL)
2067 return FAIL;
2068
2069 if (start == 0 || incr == 0 || added == 0 || incr > start)
2070 return FAIL;
2071
2072 compress_start = start;
2073 compress_inc = incr;
2074 compress_added = added;
2075 return OK;
2076}
2077
2078#ifdef SPELL_PRINTTREE
2079/*
2080 * For debugging the tree code: print the current tree in a (more or less)
2081 * readable format, so that we can see what happens when adding a word and/or
2082 * compressing the tree.
2083 * Based on code from Olaf Seibert.
2084 */
2085#define PRINTLINESIZE 1000
2086#define PRINTWIDTH 6
2087
2088#define PRINTSOME(l, depth, fmt, a1, a2) vim_snprintf(l + depth * PRINTWIDTH, \
2089 PRINTLINESIZE - PRINTWIDTH * depth, fmt, a1, a2)
2090
2091static char line1[PRINTLINESIZE];
2092static char line2[PRINTLINESIZE];
2093static char line3[PRINTLINESIZE];
2094
2095 static void
2096spell_clear_flags(wordnode_T *node)
2097{
2098 wordnode_T *np;
2099
Bram Moolenaaraeea7212020-04-02 18:50:46 +02002100 FOR_ALL_NODE_SIBLINGS(node, np)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002101 {
2102 np->wn_u1.index = FALSE;
2103 spell_clear_flags(np->wn_child);
2104 }
2105}
2106
2107 static void
2108spell_print_node(wordnode_T *node, int depth)
2109{
2110 if (node->wn_u1.index)
2111 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002112 // Done this node before, print the reference.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002113 PRINTSOME(line1, depth, "(%d)", node->wn_nr, 0);
2114 PRINTSOME(line2, depth, " ", 0, 0);
2115 PRINTSOME(line3, depth, " ", 0, 0);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002116 msg(line1);
2117 msg(line2);
2118 msg(line3);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002119 }
2120 else
2121 {
2122 node->wn_u1.index = TRUE;
2123
2124 if (node->wn_byte != NUL)
2125 {
2126 if (node->wn_child != NULL)
2127 PRINTSOME(line1, depth, " %c -> ", node->wn_byte, 0);
2128 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002129 // Cannot happen?
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002130 PRINTSOME(line1, depth, " %c ???", node->wn_byte, 0);
2131 }
2132 else
2133 PRINTSOME(line1, depth, " $ ", 0, 0);
2134
2135 PRINTSOME(line2, depth, "%d/%d ", node->wn_nr, node->wn_refs);
2136
2137 if (node->wn_sibling != NULL)
2138 PRINTSOME(line3, depth, " | ", 0, 0);
2139 else
2140 PRINTSOME(line3, depth, " ", 0, 0);
2141
2142 if (node->wn_byte == NUL)
2143 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002144 msg(line1);
2145 msg(line2);
2146 msg(line3);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002147 }
2148
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002149 // do the children
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002150 if (node->wn_byte != NUL && node->wn_child != NULL)
2151 spell_print_node(node->wn_child, depth + 1);
2152
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002153 // do the siblings
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002154 if (node->wn_sibling != NULL)
2155 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002156 // get rid of all parent details except |
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002157 STRCPY(line1, line3);
2158 STRCPY(line2, line3);
2159 spell_print_node(node->wn_sibling, depth);
2160 }
2161 }
2162}
2163
2164 static void
2165spell_print_tree(wordnode_T *root)
2166{
2167 if (root != NULL)
2168 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002169 // Clear the "wn_u1.index" fields, used to remember what has been
2170 // done.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002171 spell_clear_flags(root);
2172
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002173 // Recursively print the tree.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002174 spell_print_node(root, 0);
2175 }
2176}
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002177#endif // SPELL_PRINTTREE
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002178
2179/*
2180 * Read the affix file "fname".
2181 * Returns an afffile_T, NULL for complete failure.
2182 */
2183 static afffile_T *
2184spell_read_aff(spellinfo_T *spin, char_u *fname)
2185{
2186 FILE *fd;
2187 afffile_T *aff;
2188 char_u rline[MAXLINELEN];
2189 char_u *line;
2190 char_u *pc = NULL;
2191#define MAXITEMCNT 30
2192 char_u *(items[MAXITEMCNT]);
2193 int itemcnt;
2194 char_u *p;
2195 int lnum = 0;
2196 affheader_T *cur_aff = NULL;
2197 int did_postpone_prefix = FALSE;
2198 int aff_todo = 0;
2199 hashtab_T *tp;
2200 char_u *low = NULL;
2201 char_u *fol = NULL;
2202 char_u *upp = NULL;
2203 int do_rep;
2204 int do_repsal;
2205 int do_sal;
2206 int do_mapline;
2207 int found_map = FALSE;
2208 hashitem_T *hi;
2209 int l;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002210 int compminlen = 0; // COMPOUNDMIN value
2211 int compsylmax = 0; // COMPOUNDSYLMAX value
2212 int compoptions = 0; // COMP_ flags
2213 int compmax = 0; // COMPOUNDWORDMAX value
2214 char_u *compflags = NULL; // COMPOUNDFLAG and COMPOUNDRULE
2215 // concatenated
2216 char_u *midword = NULL; // MIDWORD value
2217 char_u *syllable = NULL; // SYLLABLE value
2218 char_u *sofofrom = NULL; // SOFOFROM value
2219 char_u *sofoto = NULL; // SOFOTO value
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002220
2221 /*
2222 * Open the file.
2223 */
2224 fd = mch_fopen((char *)fname, "r");
2225 if (fd == NULL)
2226 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002227 semsg(_(e_notopen), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002228 return NULL;
2229 }
2230
Bram Moolenaarc1669272018-06-19 14:23:53 +02002231 vim_snprintf((char *)IObuff, IOSIZE, _("Reading affix file %s..."), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002232 spell_message(spin, IObuff);
2233
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002234 // Only do REP lines when not done in another .aff file already.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002235 do_rep = spin->si_rep.ga_len == 0;
2236
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002237 // Only do REPSAL lines when not done in another .aff file already.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002238 do_repsal = spin->si_repsal.ga_len == 0;
2239
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002240 // Only do SAL lines when not done in another .aff file already.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002241 do_sal = spin->si_sal.ga_len == 0;
2242
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002243 // Only do MAP lines when not done in another .aff file already.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002244 do_mapline = spin->si_map.ga_len == 0;
2245
2246 /*
2247 * Allocate and init the afffile_T structure.
2248 */
2249 aff = (afffile_T *)getroom(spin, sizeof(afffile_T), TRUE);
2250 if (aff == NULL)
2251 {
2252 fclose(fd);
2253 return NULL;
2254 }
2255 hash_init(&aff->af_pref);
2256 hash_init(&aff->af_suff);
2257 hash_init(&aff->af_comp);
2258
2259 /*
2260 * Read all the lines in the file one by one.
2261 */
2262 while (!vim_fgets(rline, MAXLINELEN, fd) && !got_int)
2263 {
2264 line_breakcheck();
2265 ++lnum;
2266
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002267 // Skip comment lines.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002268 if (*rline == '#')
2269 continue;
2270
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002271 // Convert from "SET" to 'encoding' when needed.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002272 vim_free(pc);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002273 if (spin->si_conv.vc_type != CONV_NONE)
2274 {
2275 pc = string_convert(&spin->si_conv, rline, NULL);
2276 if (pc == NULL)
2277 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002278 smsg(_("Conversion failure for word in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002279 fname, lnum, rline);
2280 continue;
2281 }
2282 line = pc;
2283 }
2284 else
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002285 {
2286 pc = NULL;
2287 line = rline;
2288 }
2289
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002290 // Split the line up in white separated items. Put a NUL after each
2291 // item.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002292 itemcnt = 0;
2293 for (p = line; ; )
2294 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002295 while (*p != NUL && *p <= ' ') // skip white space and CR/NL
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002296 ++p;
2297 if (*p == NUL)
2298 break;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002299 if (itemcnt == MAXITEMCNT) // too many items
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002300 break;
2301 items[itemcnt++] = p;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002302 // A few items have arbitrary text argument, don't split them.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002303 if (itemcnt == 2 && spell_info_item(items[0]))
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002304 while (*p >= ' ' || *p == TAB) // skip until CR/NL
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002305 ++p;
2306 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002307 while (*p > ' ') // skip until white space or CR/NL
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002308 ++p;
2309 if (*p == NUL)
2310 break;
2311 *p++ = NUL;
2312 }
2313
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002314 // Handle non-empty lines.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002315 if (itemcnt > 0)
2316 {
2317 if (is_aff_rule(items, itemcnt, "SET", 2) && aff->af_enc == NULL)
2318 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002319 // Setup for conversion from "ENC" to 'encoding'.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002320 aff->af_enc = enc_canonize(items[1]);
2321 if (aff->af_enc != NULL && !spin->si_ascii
2322 && convert_setup(&spin->si_conv, aff->af_enc,
2323 p_enc) == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002324 smsg(_("Conversion in %s not supported: from %s to %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002325 fname, aff->af_enc, p_enc);
2326 spin->si_conv.vc_fail = TRUE;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002327 }
2328 else if (is_aff_rule(items, itemcnt, "FLAG", 2)
2329 && aff->af_flagtype == AFT_CHAR)
2330 {
2331 if (STRCMP(items[1], "long") == 0)
2332 aff->af_flagtype = AFT_LONG;
2333 else if (STRCMP(items[1], "num") == 0)
2334 aff->af_flagtype = AFT_NUM;
2335 else if (STRCMP(items[1], "caplong") == 0)
2336 aff->af_flagtype = AFT_CAPLONG;
2337 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002338 smsg(_("Invalid value for FLAG in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002339 fname, lnum, items[1]);
2340 if (aff->af_rare != 0
2341 || aff->af_keepcase != 0
2342 || aff->af_bad != 0
2343 || aff->af_needaffix != 0
2344 || aff->af_circumfix != 0
2345 || aff->af_needcomp != 0
2346 || aff->af_comproot != 0
2347 || aff->af_nosuggest != 0
2348 || compflags != NULL
2349 || aff->af_suff.ht_used > 0
2350 || aff->af_pref.ht_used > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002351 smsg(_("FLAG after using flags in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002352 fname, lnum, items[1]);
2353 }
2354 else if (spell_info_item(items[0]))
2355 {
2356 p = (char_u *)getroom(spin,
2357 (spin->si_info == NULL ? 0 : STRLEN(spin->si_info))
2358 + STRLEN(items[0])
2359 + STRLEN(items[1]) + 3, FALSE);
2360 if (p != NULL)
2361 {
2362 if (spin->si_info != NULL)
2363 {
2364 STRCPY(p, spin->si_info);
2365 STRCAT(p, "\n");
2366 }
2367 STRCAT(p, items[0]);
2368 STRCAT(p, " ");
2369 STRCAT(p, items[1]);
2370 spin->si_info = p;
2371 }
2372 }
2373 else if (is_aff_rule(items, itemcnt, "MIDWORD", 2)
2374 && midword == NULL)
2375 {
2376 midword = getroom_save(spin, items[1]);
2377 }
2378 else if (is_aff_rule(items, itemcnt, "TRY", 2))
2379 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002380 // ignored, we look in the tree for what chars may appear
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002381 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002382 // TODO: remove "RAR" later
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002383 else if ((is_aff_rule(items, itemcnt, "RAR", 2)
2384 || is_aff_rule(items, itemcnt, "RARE", 2))
2385 && aff->af_rare == 0)
2386 {
2387 aff->af_rare = affitem2flag(aff->af_flagtype, items[1],
2388 fname, lnum);
2389 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002390 // TODO: remove "KEP" later
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002391 else if ((is_aff_rule(items, itemcnt, "KEP", 2)
2392 || is_aff_rule(items, itemcnt, "KEEPCASE", 2))
2393 && aff->af_keepcase == 0)
2394 {
2395 aff->af_keepcase = affitem2flag(aff->af_flagtype, items[1],
2396 fname, lnum);
2397 }
2398 else if ((is_aff_rule(items, itemcnt, "BAD", 2)
2399 || is_aff_rule(items, itemcnt, "FORBIDDENWORD", 2))
2400 && aff->af_bad == 0)
2401 {
2402 aff->af_bad = affitem2flag(aff->af_flagtype, items[1],
2403 fname, lnum);
2404 }
2405 else if (is_aff_rule(items, itemcnt, "NEEDAFFIX", 2)
2406 && aff->af_needaffix == 0)
2407 {
2408 aff->af_needaffix = affitem2flag(aff->af_flagtype, items[1],
2409 fname, lnum);
2410 }
2411 else if (is_aff_rule(items, itemcnt, "CIRCUMFIX", 2)
2412 && aff->af_circumfix == 0)
2413 {
2414 aff->af_circumfix = affitem2flag(aff->af_flagtype, items[1],
2415 fname, lnum);
2416 }
2417 else if (is_aff_rule(items, itemcnt, "NOSUGGEST", 2)
2418 && aff->af_nosuggest == 0)
2419 {
2420 aff->af_nosuggest = affitem2flag(aff->af_flagtype, items[1],
2421 fname, lnum);
2422 }
2423 else if ((is_aff_rule(items, itemcnt, "NEEDCOMPOUND", 2)
2424 || is_aff_rule(items, itemcnt, "ONLYINCOMPOUND", 2))
2425 && aff->af_needcomp == 0)
2426 {
2427 aff->af_needcomp = affitem2flag(aff->af_flagtype, items[1],
2428 fname, lnum);
2429 }
2430 else if (is_aff_rule(items, itemcnt, "COMPOUNDROOT", 2)
2431 && aff->af_comproot == 0)
2432 {
2433 aff->af_comproot = affitem2flag(aff->af_flagtype, items[1],
2434 fname, lnum);
2435 }
2436 else if (is_aff_rule(items, itemcnt, "COMPOUNDFORBIDFLAG", 2)
2437 && aff->af_compforbid == 0)
2438 {
2439 aff->af_compforbid = affitem2flag(aff->af_flagtype, items[1],
2440 fname, lnum);
2441 if (aff->af_pref.ht_used > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002442 smsg(_("Defining COMPOUNDFORBIDFLAG after PFX item may give wrong results in %s line %d"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002443 fname, lnum);
2444 }
2445 else if (is_aff_rule(items, itemcnt, "COMPOUNDPERMITFLAG", 2)
2446 && aff->af_comppermit == 0)
2447 {
2448 aff->af_comppermit = affitem2flag(aff->af_flagtype, items[1],
2449 fname, lnum);
2450 if (aff->af_pref.ht_used > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002451 smsg(_("Defining COMPOUNDPERMITFLAG after PFX item may give wrong results in %s line %d"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002452 fname, lnum);
2453 }
2454 else if (is_aff_rule(items, itemcnt, "COMPOUNDFLAG", 2)
2455 && compflags == NULL)
2456 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002457 // Turn flag "c" into COMPOUNDRULE compatible string "c+",
2458 // "Na" into "Na+", "1234" into "1234+".
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002459 p = getroom(spin, STRLEN(items[1]) + 2, FALSE);
2460 if (p != NULL)
2461 {
2462 STRCPY(p, items[1]);
2463 STRCAT(p, "+");
2464 compflags = p;
2465 }
2466 }
2467 else if (is_aff_rule(items, itemcnt, "COMPOUNDRULES", 2))
2468 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002469 // We don't use the count, but do check that it's a number and
2470 // not COMPOUNDRULE mistyped.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002471 if (atoi((char *)items[1]) == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002472 smsg(_("Wrong COMPOUNDRULES value in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002473 fname, lnum, items[1]);
2474 }
2475 else if (is_aff_rule(items, itemcnt, "COMPOUNDRULE", 2))
2476 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002477 // Don't use the first rule if it is a number.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002478 if (compflags != NULL || *skipdigits(items[1]) != NUL)
2479 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002480 // Concatenate this string to previously defined ones,
2481 // using a slash to separate them.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002482 l = (int)STRLEN(items[1]) + 1;
2483 if (compflags != NULL)
2484 l += (int)STRLEN(compflags) + 1;
2485 p = getroom(spin, l, FALSE);
2486 if (p != NULL)
2487 {
2488 if (compflags != NULL)
2489 {
2490 STRCPY(p, compflags);
2491 STRCAT(p, "/");
2492 }
2493 STRCAT(p, items[1]);
2494 compflags = p;
2495 }
2496 }
2497 }
2498 else if (is_aff_rule(items, itemcnt, "COMPOUNDWORDMAX", 2)
2499 && compmax == 0)
2500 {
2501 compmax = atoi((char *)items[1]);
2502 if (compmax == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002503 smsg(_("Wrong COMPOUNDWORDMAX value in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002504 fname, lnum, items[1]);
2505 }
2506 else if (is_aff_rule(items, itemcnt, "COMPOUNDMIN", 2)
2507 && compminlen == 0)
2508 {
2509 compminlen = atoi((char *)items[1]);
2510 if (compminlen == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002511 smsg(_("Wrong COMPOUNDMIN value in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002512 fname, lnum, items[1]);
2513 }
2514 else if (is_aff_rule(items, itemcnt, "COMPOUNDSYLMAX", 2)
2515 && compsylmax == 0)
2516 {
2517 compsylmax = atoi((char *)items[1]);
2518 if (compsylmax == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002519 smsg(_("Wrong COMPOUNDSYLMAX value in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002520 fname, lnum, items[1]);
2521 }
2522 else if (is_aff_rule(items, itemcnt, "CHECKCOMPOUNDDUP", 1))
2523 {
2524 compoptions |= COMP_CHECKDUP;
2525 }
2526 else if (is_aff_rule(items, itemcnt, "CHECKCOMPOUNDREP", 1))
2527 {
2528 compoptions |= COMP_CHECKREP;
2529 }
2530 else if (is_aff_rule(items, itemcnt, "CHECKCOMPOUNDCASE", 1))
2531 {
2532 compoptions |= COMP_CHECKCASE;
2533 }
2534 else if (is_aff_rule(items, itemcnt, "CHECKCOMPOUNDTRIPLE", 1))
2535 {
2536 compoptions |= COMP_CHECKTRIPLE;
2537 }
2538 else if (is_aff_rule(items, itemcnt, "CHECKCOMPOUNDPATTERN", 2))
2539 {
2540 if (atoi((char *)items[1]) == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002541 smsg(_("Wrong CHECKCOMPOUNDPATTERN value in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002542 fname, lnum, items[1]);
2543 }
2544 else if (is_aff_rule(items, itemcnt, "CHECKCOMPOUNDPATTERN", 3))
2545 {
2546 garray_T *gap = &spin->si_comppat;
2547 int i;
2548
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002549 // Only add the couple if it isn't already there.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002550 for (i = 0; i < gap->ga_len - 1; i += 2)
2551 if (STRCMP(((char_u **)(gap->ga_data))[i], items[1]) == 0
2552 && STRCMP(((char_u **)(gap->ga_data))[i + 1],
2553 items[2]) == 0)
2554 break;
2555 if (i >= gap->ga_len && ga_grow(gap, 2) == OK)
2556 {
2557 ((char_u **)(gap->ga_data))[gap->ga_len++]
2558 = getroom_save(spin, items[1]);
2559 ((char_u **)(gap->ga_data))[gap->ga_len++]
2560 = getroom_save(spin, items[2]);
2561 }
2562 }
2563 else if (is_aff_rule(items, itemcnt, "SYLLABLE", 2)
2564 && syllable == NULL)
2565 {
2566 syllable = getroom_save(spin, items[1]);
2567 }
2568 else if (is_aff_rule(items, itemcnt, "NOBREAK", 1))
2569 {
2570 spin->si_nobreak = TRUE;
2571 }
2572 else if (is_aff_rule(items, itemcnt, "NOSPLITSUGS", 1))
2573 {
2574 spin->si_nosplitsugs = TRUE;
2575 }
2576 else if (is_aff_rule(items, itemcnt, "NOCOMPOUNDSUGS", 1))
2577 {
2578 spin->si_nocompoundsugs = TRUE;
2579 }
2580 else if (is_aff_rule(items, itemcnt, "NOSUGFILE", 1))
2581 {
2582 spin->si_nosugfile = TRUE;
2583 }
2584 else if (is_aff_rule(items, itemcnt, "PFXPOSTPONE", 1))
2585 {
2586 aff->af_pfxpostpone = TRUE;
2587 }
2588 else if (is_aff_rule(items, itemcnt, "IGNOREEXTRA", 1))
2589 {
2590 aff->af_ignoreextra = TRUE;
2591 }
2592 else if ((STRCMP(items[0], "PFX") == 0
2593 || STRCMP(items[0], "SFX") == 0)
2594 && aff_todo == 0
2595 && itemcnt >= 4)
2596 {
2597 int lasti = 4;
2598 char_u key[AH_KEY_LEN];
2599
2600 if (*items[0] == 'P')
2601 tp = &aff->af_pref;
2602 else
2603 tp = &aff->af_suff;
2604
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002605 // Myspell allows the same affix name to be used multiple
2606 // times. The affix files that do this have an undocumented
2607 // "S" flag on all but the last block, thus we check for that
2608 // and store it in ah_follows.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002609 vim_strncpy(key, items[1], AH_KEY_LEN - 1);
2610 hi = hash_find(tp, key);
2611 if (!HASHITEM_EMPTY(hi))
2612 {
2613 cur_aff = HI2AH(hi);
2614 if (cur_aff->ah_combine != (*items[2] == 'Y'))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002615 smsg(_("Different combining flag in continued affix block in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002616 fname, lnum, items[1]);
2617 if (!cur_aff->ah_follows)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002618 smsg(_("Duplicate affix in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002619 fname, lnum, items[1]);
2620 }
2621 else
2622 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002623 // New affix letter.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002624 cur_aff = (affheader_T *)getroom(spin,
2625 sizeof(affheader_T), TRUE);
2626 if (cur_aff == NULL)
2627 break;
2628 cur_aff->ah_flag = affitem2flag(aff->af_flagtype, items[1],
2629 fname, lnum);
2630 if (cur_aff->ah_flag == 0 || STRLEN(items[1]) >= AH_KEY_LEN)
2631 break;
2632 if (cur_aff->ah_flag == aff->af_bad
2633 || cur_aff->ah_flag == aff->af_rare
2634 || cur_aff->ah_flag == aff->af_keepcase
2635 || cur_aff->ah_flag == aff->af_needaffix
2636 || cur_aff->ah_flag == aff->af_circumfix
2637 || cur_aff->ah_flag == aff->af_nosuggest
2638 || cur_aff->ah_flag == aff->af_needcomp
2639 || cur_aff->ah_flag == aff->af_comproot)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002640 smsg(_("Affix also used for BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002641 fname, lnum, items[1]);
2642 STRCPY(cur_aff->ah_key, items[1]);
2643 hash_add(tp, cur_aff->ah_key);
2644
2645 cur_aff->ah_combine = (*items[2] == 'Y');
2646 }
2647
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002648 // Check for the "S" flag, which apparently means that another
2649 // block with the same affix name is following.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002650 if (itemcnt > lasti && STRCMP(items[lasti], "S") == 0)
2651 {
2652 ++lasti;
2653 cur_aff->ah_follows = TRUE;
2654 }
2655 else
2656 cur_aff->ah_follows = FALSE;
2657
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002658 // Myspell allows extra text after the item, but that might
2659 // mean mistakes go unnoticed. Require a comment-starter.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002660 if (itemcnt > lasti && *items[lasti] != '#')
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002661 smsg(_(e_afftrailing), fname, lnum, items[lasti]);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002662
2663 if (STRCMP(items[2], "Y") != 0 && STRCMP(items[2], "N") != 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002664 smsg(_("Expected Y or N in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002665 fname, lnum, items[2]);
2666
2667 if (*items[0] == 'P' && aff->af_pfxpostpone)
2668 {
2669 if (cur_aff->ah_newID == 0)
2670 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002671 // Use a new number in the .spl file later, to be able
2672 // to handle multiple .aff files.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002673 check_renumber(spin);
2674 cur_aff->ah_newID = ++spin->si_newprefID;
2675
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002676 // We only really use ah_newID if the prefix is
2677 // postponed. We know that only after handling all
2678 // the items.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002679 did_postpone_prefix = FALSE;
2680 }
2681 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002682 // Did use the ID in a previous block.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002683 did_postpone_prefix = TRUE;
2684 }
2685
2686 aff_todo = atoi((char *)items[3]);
2687 }
2688 else if ((STRCMP(items[0], "PFX") == 0
2689 || STRCMP(items[0], "SFX") == 0)
2690 && aff_todo > 0
2691 && STRCMP(cur_aff->ah_key, items[1]) == 0
2692 && itemcnt >= 5)
2693 {
2694 affentry_T *aff_entry;
2695 int upper = FALSE;
2696 int lasti = 5;
2697
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002698 // Myspell allows extra text after the item, but that might
2699 // mean mistakes go unnoticed. Require a comment-starter,
2700 // unless IGNOREEXTRA is used. Hunspell uses a "-" item.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002701 if (itemcnt > lasti
2702 && !aff->af_ignoreextra
2703 && *items[lasti] != '#'
2704 && (STRCMP(items[lasti], "-") != 0
2705 || itemcnt != lasti + 1))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002706 smsg(_(e_afftrailing), fname, lnum, items[lasti]);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002707
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002708 // New item for an affix letter.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002709 --aff_todo;
2710 aff_entry = (affentry_T *)getroom(spin,
2711 sizeof(affentry_T), TRUE);
2712 if (aff_entry == NULL)
2713 break;
2714
2715 if (STRCMP(items[2], "0") != 0)
2716 aff_entry->ae_chop = getroom_save(spin, items[2]);
2717 if (STRCMP(items[3], "0") != 0)
2718 {
2719 aff_entry->ae_add = getroom_save(spin, items[3]);
2720
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002721 // Recognize flags on the affix: abcd/XYZ
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002722 aff_entry->ae_flags = vim_strchr(aff_entry->ae_add, '/');
2723 if (aff_entry->ae_flags != NULL)
2724 {
2725 *aff_entry->ae_flags++ = NUL;
2726 aff_process_flags(aff, aff_entry);
2727 }
2728 }
2729
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002730 // Don't use an affix entry with non-ASCII characters when
2731 // "spin->si_ascii" is TRUE.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002732 if (!spin->si_ascii || !(has_non_ascii(aff_entry->ae_chop)
2733 || has_non_ascii(aff_entry->ae_add)))
2734 {
2735 aff_entry->ae_next = cur_aff->ah_first;
2736 cur_aff->ah_first = aff_entry;
2737
2738 if (STRCMP(items[4], ".") != 0)
2739 {
2740 char_u buf[MAXLINELEN];
2741
2742 aff_entry->ae_cond = getroom_save(spin, items[4]);
2743 if (*items[0] == 'P')
2744 sprintf((char *)buf, "^%s", items[4]);
2745 else
2746 sprintf((char *)buf, "%s$", items[4]);
2747 aff_entry->ae_prog = vim_regcomp(buf,
2748 RE_MAGIC + RE_STRING + RE_STRICT);
2749 if (aff_entry->ae_prog == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002750 smsg(_("Broken condition in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002751 fname, lnum, items[4]);
2752 }
2753
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002754 // For postponed prefixes we need an entry in si_prefcond
2755 // for the condition. Use an existing one if possible.
2756 // Can't be done for an affix with flags, ignoring
2757 // COMPOUNDFORBIDFLAG and COMPOUNDPERMITFLAG.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002758 if (*items[0] == 'P' && aff->af_pfxpostpone
2759 && aff_entry->ae_flags == NULL)
2760 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002761 // When the chop string is one lower-case letter and
2762 // the add string ends in the upper-case letter we set
2763 // the "upper" flag, clear "ae_chop" and remove the
2764 // letters from "ae_add". The condition must either
2765 // be empty or start with the same letter.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002766 if (aff_entry->ae_chop != NULL
2767 && aff_entry->ae_add != NULL
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002768 && aff_entry->ae_chop[(*mb_ptr2len)(
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002769 aff_entry->ae_chop)] == NUL)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002770 {
2771 int c, c_up;
2772
2773 c = PTR2CHAR(aff_entry->ae_chop);
2774 c_up = SPELL_TOUPPER(c);
2775 if (c_up != c
2776 && (aff_entry->ae_cond == NULL
2777 || PTR2CHAR(aff_entry->ae_cond) == c))
2778 {
2779 p = aff_entry->ae_add
2780 + STRLEN(aff_entry->ae_add);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002781 MB_PTR_BACK(aff_entry->ae_add, p);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002782 if (PTR2CHAR(p) == c_up)
2783 {
2784 upper = TRUE;
2785 aff_entry->ae_chop = NULL;
2786 *p = NUL;
2787
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002788 // The condition is matched with the
2789 // actual word, thus must check for the
2790 // upper-case letter.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002791 if (aff_entry->ae_cond != NULL)
2792 {
2793 char_u buf[MAXLINELEN];
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002794
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002795 if (has_mbyte)
2796 {
2797 onecap_copy(items[4], buf, TRUE);
2798 aff_entry->ae_cond = getroom_save(
2799 spin, buf);
2800 }
2801 else
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002802 *aff_entry->ae_cond = c_up;
2803 if (aff_entry->ae_cond != NULL)
2804 {
2805 sprintf((char *)buf, "^%s",
2806 aff_entry->ae_cond);
2807 vim_regfree(aff_entry->ae_prog);
2808 aff_entry->ae_prog = vim_regcomp(
2809 buf, RE_MAGIC + RE_STRING);
2810 }
2811 }
2812 }
2813 }
2814 }
2815
2816 if (aff_entry->ae_chop == NULL
2817 && aff_entry->ae_flags == NULL)
2818 {
2819 int idx;
2820 char_u **pp;
2821 int n;
2822
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002823 // Find a previously used condition.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002824 for (idx = spin->si_prefcond.ga_len - 1; idx >= 0;
2825 --idx)
2826 {
2827 p = ((char_u **)spin->si_prefcond.ga_data)[idx];
2828 if (str_equal(p, aff_entry->ae_cond))
2829 break;
2830 }
2831 if (idx < 0 && ga_grow(&spin->si_prefcond, 1) == OK)
2832 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002833 // Not found, add a new condition.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002834 idx = spin->si_prefcond.ga_len++;
2835 pp = ((char_u **)spin->si_prefcond.ga_data)
2836 + idx;
2837 if (aff_entry->ae_cond == NULL)
2838 *pp = NULL;
2839 else
2840 *pp = getroom_save(spin,
2841 aff_entry->ae_cond);
2842 }
2843
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002844 // Add the prefix to the prefix tree.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002845 if (aff_entry->ae_add == NULL)
2846 p = (char_u *)"";
2847 else
2848 p = aff_entry->ae_add;
2849
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002850 // PFX_FLAGS is a negative number, so that
2851 // tree_add_word() knows this is the prefix tree.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002852 n = PFX_FLAGS;
2853 if (!cur_aff->ah_combine)
2854 n |= WFP_NC;
2855 if (upper)
2856 n |= WFP_UP;
2857 if (aff_entry->ae_comppermit)
2858 n |= WFP_COMPPERMIT;
2859 if (aff_entry->ae_compforbid)
2860 n |= WFP_COMPFORBID;
2861 tree_add_word(spin, p, spin->si_prefroot, n,
2862 idx, cur_aff->ah_newID);
2863 did_postpone_prefix = TRUE;
2864 }
2865
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002866 // Didn't actually use ah_newID, backup si_newprefID.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002867 if (aff_todo == 0 && !did_postpone_prefix)
2868 {
2869 --spin->si_newprefID;
2870 cur_aff->ah_newID = 0;
2871 }
2872 }
2873 }
2874 }
2875 else if (is_aff_rule(items, itemcnt, "FOL", 2) && fol == NULL)
2876 {
2877 fol = vim_strsave(items[1]);
2878 }
2879 else if (is_aff_rule(items, itemcnt, "LOW", 2) && low == NULL)
2880 {
2881 low = vim_strsave(items[1]);
2882 }
2883 else if (is_aff_rule(items, itemcnt, "UPP", 2) && upp == NULL)
2884 {
2885 upp = vim_strsave(items[1]);
2886 }
2887 else if (is_aff_rule(items, itemcnt, "REP", 2)
2888 || is_aff_rule(items, itemcnt, "REPSAL", 2))
2889 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002890 // Ignore REP/REPSAL count
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002891 if (!isdigit(*items[1]))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002892 smsg(_("Expected REP(SAL) count in %s line %d"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002893 fname, lnum);
2894 }
2895 else if ((STRCMP(items[0], "REP") == 0
2896 || STRCMP(items[0], "REPSAL") == 0)
2897 && itemcnt >= 3)
2898 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002899 // REP/REPSAL item
2900 // Myspell ignores extra arguments, we require it starts with
2901 // # to detect mistakes.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002902 if (itemcnt > 3 && items[3][0] != '#')
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002903 smsg(_(e_afftrailing), fname, lnum, items[3]);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002904 if (items[0][3] == 'S' ? do_repsal : do_rep)
2905 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002906 // Replace underscore with space (can't include a space
2907 // directly).
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002908 for (p = items[1]; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002909 if (*p == '_')
2910 *p = ' ';
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002911 for (p = items[2]; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002912 if (*p == '_')
2913 *p = ' ';
2914 add_fromto(spin, items[0][3] == 'S'
2915 ? &spin->si_repsal
2916 : &spin->si_rep, items[1], items[2]);
2917 }
2918 }
2919 else if (is_aff_rule(items, itemcnt, "MAP", 2))
2920 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002921 // MAP item or count
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002922 if (!found_map)
2923 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002924 // First line contains the count.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002925 found_map = TRUE;
2926 if (!isdigit(*items[1]))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002927 smsg(_("Expected MAP count in %s line %d"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002928 fname, lnum);
2929 }
2930 else if (do_mapline)
2931 {
2932 int c;
2933
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002934 // Check that every character appears only once.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002935 for (p = items[1]; *p != NUL; )
2936 {
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002937 c = mb_ptr2char_adv(&p);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002938 if ((spin->si_map.ga_len > 0
2939 && vim_strchr(spin->si_map.ga_data, c)
2940 != NULL)
2941 || vim_strchr(p, c) != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002942 smsg(_("Duplicate character in MAP in %s line %d"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002943 fname, lnum);
2944 }
2945
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002946 // We simply concatenate all the MAP strings, separated by
2947 // slashes.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002948 ga_concat(&spin->si_map, items[1]);
2949 ga_append(&spin->si_map, '/');
2950 }
2951 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002952 // Accept "SAL from to" and "SAL from to #comment".
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002953 else if (is_aff_rule(items, itemcnt, "SAL", 3))
2954 {
2955 if (do_sal)
2956 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002957 // SAL item (sounds-a-like)
2958 // Either one of the known keys or a from-to pair.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002959 if (STRCMP(items[1], "followup") == 0)
2960 spin->si_followup = sal_to_bool(items[2]);
2961 else if (STRCMP(items[1], "collapse_result") == 0)
2962 spin->si_collapse = sal_to_bool(items[2]);
2963 else if (STRCMP(items[1], "remove_accents") == 0)
2964 spin->si_rem_accents = sal_to_bool(items[2]);
2965 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002966 // when "to" is "_" it means empty
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002967 add_fromto(spin, &spin->si_sal, items[1],
2968 STRCMP(items[2], "_") == 0 ? (char_u *)""
2969 : items[2]);
2970 }
2971 }
2972 else if (is_aff_rule(items, itemcnt, "SOFOFROM", 2)
2973 && sofofrom == NULL)
2974 {
2975 sofofrom = getroom_save(spin, items[1]);
2976 }
2977 else if (is_aff_rule(items, itemcnt, "SOFOTO", 2)
2978 && sofoto == NULL)
2979 {
2980 sofoto = getroom_save(spin, items[1]);
2981 }
2982 else if (STRCMP(items[0], "COMMON") == 0)
2983 {
2984 int i;
2985
2986 for (i = 1; i < itemcnt; ++i)
2987 {
2988 if (HASHITEM_EMPTY(hash_find(&spin->si_commonwords,
2989 items[i])))
2990 {
2991 p = vim_strsave(items[i]);
2992 if (p == NULL)
2993 break;
2994 hash_add(&spin->si_commonwords, p);
2995 }
2996 }
2997 }
2998 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002999 smsg(_("Unrecognized or duplicate item in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003000 fname, lnum, items[0]);
3001 }
3002 }
3003
3004 if (fol != NULL || low != NULL || upp != NULL)
3005 {
3006 if (spin->si_clear_chartab)
3007 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003008 // Clear the char type tables, don't want to use any of the
3009 // currently used spell properties.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003010 init_spell_chartab();
3011 spin->si_clear_chartab = FALSE;
3012 }
3013
3014 /*
3015 * Don't write a word table for an ASCII file, so that we don't check
3016 * for conflicts with a word table that matches 'encoding'.
3017 * Don't write one for utf-8 either, we use utf_*() and
3018 * mb_get_class(), the list of chars in the file will be incomplete.
3019 */
Bram Moolenaar264b74f2019-01-24 17:18:42 +01003020 if (!spin->si_ascii && !enc_utf8)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003021 {
3022 if (fol == NULL || low == NULL || upp == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003023 smsg(_("Missing FOL/LOW/UPP line in %s"), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003024 else
3025 (void)set_spell_chartab(fol, low, upp);
3026 }
3027
3028 vim_free(fol);
3029 vim_free(low);
3030 vim_free(upp);
3031 }
3032
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003033 // Use compound specifications of the .aff file for the spell info.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003034 if (compmax != 0)
3035 {
3036 aff_check_number(spin->si_compmax, compmax, "COMPOUNDWORDMAX");
3037 spin->si_compmax = compmax;
3038 }
3039
3040 if (compminlen != 0)
3041 {
3042 aff_check_number(spin->si_compminlen, compminlen, "COMPOUNDMIN");
3043 spin->si_compminlen = compminlen;
3044 }
3045
3046 if (compsylmax != 0)
3047 {
3048 if (syllable == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003049 smsg(_("COMPOUNDSYLMAX used without SYLLABLE"));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003050 aff_check_number(spin->si_compsylmax, compsylmax, "COMPOUNDSYLMAX");
3051 spin->si_compsylmax = compsylmax;
3052 }
3053
3054 if (compoptions != 0)
3055 {
3056 aff_check_number(spin->si_compoptions, compoptions, "COMPOUND options");
3057 spin->si_compoptions |= compoptions;
3058 }
3059
3060 if (compflags != NULL)
3061 process_compflags(spin, aff, compflags);
3062
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003063 // Check that we didn't use too many renumbered flags.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003064 if (spin->si_newcompID < spin->si_newprefID)
3065 {
3066 if (spin->si_newcompID == 127 || spin->si_newcompID == 255)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003067 msg(_("Too many postponed prefixes"));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003068 else if (spin->si_newprefID == 0 || spin->si_newprefID == 127)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003069 msg(_("Too many compound flags"));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003070 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01003071 msg(_("Too many postponed prefixes and/or compound flags"));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003072 }
3073
3074 if (syllable != NULL)
3075 {
3076 aff_check_string(spin->si_syllable, syllable, "SYLLABLE");
3077 spin->si_syllable = syllable;
3078 }
3079
3080 if (sofofrom != NULL || sofoto != NULL)
3081 {
3082 if (sofofrom == NULL || sofoto == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003083 smsg(_("Missing SOFO%s line in %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003084 sofofrom == NULL ? "FROM" : "TO", fname);
3085 else if (spin->si_sal.ga_len > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003086 smsg(_("Both SAL and SOFO lines in %s"), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003087 else
3088 {
3089 aff_check_string(spin->si_sofofr, sofofrom, "SOFOFROM");
3090 aff_check_string(spin->si_sofoto, sofoto, "SOFOTO");
3091 spin->si_sofofr = sofofrom;
3092 spin->si_sofoto = sofoto;
3093 }
3094 }
3095
3096 if (midword != NULL)
3097 {
3098 aff_check_string(spin->si_midword, midword, "MIDWORD");
3099 spin->si_midword = midword;
3100 }
3101
3102 vim_free(pc);
3103 fclose(fd);
3104 return aff;
3105}
3106
3107/*
3108 * Return TRUE when items[0] equals "rulename", there are "mincount" items or
3109 * a comment is following after item "mincount".
3110 */
3111 static int
3112is_aff_rule(
3113 char_u **items,
3114 int itemcnt,
3115 char *rulename,
3116 int mincount)
3117{
3118 return (STRCMP(items[0], rulename) == 0
3119 && (itemcnt == mincount
3120 || (itemcnt > mincount && items[mincount][0] == '#')));
3121}
3122
3123/*
3124 * For affix "entry" move COMPOUNDFORBIDFLAG and COMPOUNDPERMITFLAG from
3125 * ae_flags to ae_comppermit and ae_compforbid.
3126 */
3127 static void
3128aff_process_flags(afffile_T *affile, affentry_T *entry)
3129{
3130 char_u *p;
3131 char_u *prevp;
3132 unsigned flag;
3133
3134 if (entry->ae_flags != NULL
3135 && (affile->af_compforbid != 0 || affile->af_comppermit != 0))
3136 {
3137 for (p = entry->ae_flags; *p != NUL; )
3138 {
3139 prevp = p;
3140 flag = get_affitem(affile->af_flagtype, &p);
3141 if (flag == affile->af_comppermit || flag == affile->af_compforbid)
3142 {
3143 STRMOVE(prevp, p);
3144 p = prevp;
3145 if (flag == affile->af_comppermit)
3146 entry->ae_comppermit = TRUE;
3147 else
3148 entry->ae_compforbid = TRUE;
3149 }
3150 if (affile->af_flagtype == AFT_NUM && *p == ',')
3151 ++p;
3152 }
3153 if (*entry->ae_flags == NUL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003154 entry->ae_flags = NULL; // nothing left
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003155 }
3156}
3157
3158/*
3159 * Return TRUE if "s" is the name of an info item in the affix file.
3160 */
3161 static int
3162spell_info_item(char_u *s)
3163{
3164 return STRCMP(s, "NAME") == 0
3165 || STRCMP(s, "HOME") == 0
3166 || STRCMP(s, "VERSION") == 0
3167 || STRCMP(s, "AUTHOR") == 0
3168 || STRCMP(s, "EMAIL") == 0
3169 || STRCMP(s, "COPYRIGHT") == 0;
3170}
3171
3172/*
3173 * Turn an affix flag name into a number, according to the FLAG type.
3174 * returns zero for failure.
3175 */
3176 static unsigned
3177affitem2flag(
3178 int flagtype,
3179 char_u *item,
3180 char_u *fname,
3181 int lnum)
3182{
3183 unsigned res;
3184 char_u *p = item;
3185
3186 res = get_affitem(flagtype, &p);
3187 if (res == 0)
3188 {
3189 if (flagtype == AFT_NUM)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003190 smsg(_("Flag is not a number in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003191 fname, lnum, item);
3192 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003193 smsg(_("Illegal flag in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003194 fname, lnum, item);
3195 }
3196 if (*p != NUL)
3197 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003198 smsg(_(e_affname), fname, lnum, item);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003199 return 0;
3200 }
3201
3202 return res;
3203}
3204
3205/*
3206 * Get one affix name from "*pp" and advance the pointer.
Bram Moolenaar3d2a47c2019-11-07 20:48:42 +01003207 * Returns ZERO_FLAG for "0".
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003208 * Returns zero for an error, still advances the pointer then.
3209 */
3210 static unsigned
3211get_affitem(int flagtype, char_u **pp)
3212{
3213 int res;
3214
3215 if (flagtype == AFT_NUM)
3216 {
3217 if (!VIM_ISDIGIT(**pp))
3218 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003219 ++*pp; // always advance, avoid getting stuck
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003220 return 0;
3221 }
3222 res = getdigits(pp);
Bram Moolenaar3d2a47c2019-11-07 20:48:42 +01003223 if (res == 0)
3224 res = ZERO_FLAG;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003225 }
3226 else
3227 {
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003228 res = mb_ptr2char_adv(pp);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003229 if (flagtype == AFT_LONG || (flagtype == AFT_CAPLONG
3230 && res >= 'A' && res <= 'Z'))
3231 {
3232 if (**pp == NUL)
3233 return 0;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003234 res = mb_ptr2char_adv(pp) + (res << 16);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003235 }
3236 }
3237 return res;
3238}
3239
3240/*
3241 * Process the "compflags" string used in an affix file and append it to
3242 * spin->si_compflags.
3243 * The processing involves changing the affix names to ID numbers, so that
3244 * they fit in one byte.
3245 */
3246 static void
3247process_compflags(
3248 spellinfo_T *spin,
3249 afffile_T *aff,
3250 char_u *compflags)
3251{
3252 char_u *p;
3253 char_u *prevp;
3254 unsigned flag;
3255 compitem_T *ci;
3256 int id;
3257 int len;
3258 char_u *tp;
3259 char_u key[AH_KEY_LEN];
3260 hashitem_T *hi;
3261
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003262 // Make room for the old and the new compflags, concatenated with a / in
3263 // between. Processing it makes it shorter, but we don't know by how
3264 // much, thus allocate the maximum.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003265 len = (int)STRLEN(compflags) + 1;
3266 if (spin->si_compflags != NULL)
3267 len += (int)STRLEN(spin->si_compflags) + 1;
3268 p = getroom(spin, len, FALSE);
3269 if (p == NULL)
3270 return;
3271 if (spin->si_compflags != NULL)
3272 {
3273 STRCPY(p, spin->si_compflags);
3274 STRCAT(p, "/");
3275 }
3276 spin->si_compflags = p;
3277 tp = p + STRLEN(p);
3278
3279 for (p = compflags; *p != NUL; )
3280 {
3281 if (vim_strchr((char_u *)"/?*+[]", *p) != NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003282 // Copy non-flag characters directly.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003283 *tp++ = *p++;
3284 else
3285 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003286 // First get the flag number, also checks validity.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003287 prevp = p;
3288 flag = get_affitem(aff->af_flagtype, &p);
3289 if (flag != 0)
3290 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003291 // Find the flag in the hashtable. If it was used before, use
3292 // the existing ID. Otherwise add a new entry.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003293 vim_strncpy(key, prevp, p - prevp);
3294 hi = hash_find(&aff->af_comp, key);
3295 if (!HASHITEM_EMPTY(hi))
3296 id = HI2CI(hi)->ci_newID;
3297 else
3298 {
3299 ci = (compitem_T *)getroom(spin, sizeof(compitem_T), TRUE);
3300 if (ci == NULL)
3301 break;
3302 STRCPY(ci->ci_key, key);
3303 ci->ci_flag = flag;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003304 // Avoid using a flag ID that has a special meaning in a
3305 // regexp (also inside []).
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003306 do
3307 {
3308 check_renumber(spin);
3309 id = spin->si_newcompID--;
3310 } while (vim_strchr((char_u *)"/?*+[]\\-^", id) != NULL);
3311 ci->ci_newID = id;
3312 hash_add(&aff->af_comp, ci->ci_key);
3313 }
3314 *tp++ = id;
3315 }
3316 if (aff->af_flagtype == AFT_NUM && *p == ',')
3317 ++p;
3318 }
3319 }
3320
3321 *tp = NUL;
3322}
3323
3324/*
3325 * Check that the new IDs for postponed affixes and compounding don't overrun
3326 * each other. We have almost 255 available, but start at 0-127 to avoid
3327 * using two bytes for utf-8. When the 0-127 range is used up go to 128-255.
3328 * When that is used up an error message is given.
3329 */
3330 static void
3331check_renumber(spellinfo_T *spin)
3332{
3333 if (spin->si_newprefID == spin->si_newcompID && spin->si_newcompID < 128)
3334 {
3335 spin->si_newprefID = 127;
3336 spin->si_newcompID = 255;
3337 }
3338}
3339
3340/*
3341 * Return TRUE if flag "flag" appears in affix list "afflist".
3342 */
3343 static int
3344flag_in_afflist(int flagtype, char_u *afflist, unsigned flag)
3345{
3346 char_u *p;
3347 unsigned n;
3348
3349 switch (flagtype)
3350 {
3351 case AFT_CHAR:
3352 return vim_strchr(afflist, flag) != NULL;
3353
3354 case AFT_CAPLONG:
3355 case AFT_LONG:
3356 for (p = afflist; *p != NUL; )
3357 {
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003358 n = mb_ptr2char_adv(&p);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003359 if ((flagtype == AFT_LONG || (n >= 'A' && n <= 'Z'))
3360 && *p != NUL)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003361 n = mb_ptr2char_adv(&p) + (n << 16);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003362 if (n == flag)
3363 return TRUE;
3364 }
3365 break;
3366
3367 case AFT_NUM:
3368 for (p = afflist; *p != NUL; )
3369 {
3370 n = getdigits(&p);
Bram Moolenaar3d2a47c2019-11-07 20:48:42 +01003371 if (n == 0)
3372 n = ZERO_FLAG;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003373 if (n == flag)
3374 return TRUE;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003375 if (*p != NUL) // skip over comma
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003376 ++p;
3377 }
3378 break;
3379 }
3380 return FALSE;
3381}
3382
3383/*
3384 * Give a warning when "spinval" and "affval" numbers are set and not the same.
3385 */
3386 static void
3387aff_check_number(int spinval, int affval, char *name)
3388{
3389 if (spinval != 0 && spinval != affval)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003390 smsg(_("%s value differs from what is used in another .aff file"), name);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003391}
3392
3393/*
3394 * Give a warning when "spinval" and "affval" strings are set and not the same.
3395 */
3396 static void
3397aff_check_string(char_u *spinval, char_u *affval, char *name)
3398{
3399 if (spinval != NULL && STRCMP(spinval, affval) != 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003400 smsg(_("%s value differs from what is used in another .aff file"), name);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003401}
3402
3403/*
3404 * Return TRUE if strings "s1" and "s2" are equal. Also consider both being
3405 * NULL as equal.
3406 */
3407 static int
3408str_equal(char_u *s1, char_u *s2)
3409{
3410 if (s1 == NULL || s2 == NULL)
3411 return s1 == s2;
3412 return STRCMP(s1, s2) == 0;
3413}
3414
3415/*
3416 * Add a from-to item to "gap". Used for REP and SAL items.
3417 * They are stored case-folded.
3418 */
3419 static void
3420add_fromto(
3421 spellinfo_T *spin,
3422 garray_T *gap,
3423 char_u *from,
3424 char_u *to)
3425{
3426 fromto_T *ftp;
3427 char_u word[MAXWLEN];
3428
3429 if (ga_grow(gap, 1) == OK)
3430 {
3431 ftp = ((fromto_T *)gap->ga_data) + gap->ga_len;
3432 (void)spell_casefold(from, (int)STRLEN(from), word, MAXWLEN);
3433 ftp->ft_from = getroom_save(spin, word);
3434 (void)spell_casefold(to, (int)STRLEN(to), word, MAXWLEN);
3435 ftp->ft_to = getroom_save(spin, word);
3436 ++gap->ga_len;
3437 }
3438}
3439
3440/*
3441 * Convert a boolean argument in a SAL line to TRUE or FALSE;
3442 */
3443 static int
3444sal_to_bool(char_u *s)
3445{
3446 return STRCMP(s, "1") == 0 || STRCMP(s, "true") == 0;
3447}
3448
3449/*
3450 * Free the structure filled by spell_read_aff().
3451 */
3452 static void
3453spell_free_aff(afffile_T *aff)
3454{
3455 hashtab_T *ht;
3456 hashitem_T *hi;
3457 int todo;
3458 affheader_T *ah;
3459 affentry_T *ae;
3460
3461 vim_free(aff->af_enc);
3462
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003463 // All this trouble to free the "ae_prog" items...
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003464 for (ht = &aff->af_pref; ; ht = &aff->af_suff)
3465 {
3466 todo = (int)ht->ht_used;
3467 for (hi = ht->ht_array; todo > 0; ++hi)
3468 {
3469 if (!HASHITEM_EMPTY(hi))
3470 {
3471 --todo;
3472 ah = HI2AH(hi);
3473 for (ae = ah->ah_first; ae != NULL; ae = ae->ae_next)
3474 vim_regfree(ae->ae_prog);
3475 }
3476 }
3477 if (ht == &aff->af_suff)
3478 break;
3479 }
3480
3481 hash_clear(&aff->af_pref);
3482 hash_clear(&aff->af_suff);
3483 hash_clear(&aff->af_comp);
3484}
3485
3486/*
3487 * Read dictionary file "fname".
3488 * Returns OK or FAIL;
3489 */
3490 static int
3491spell_read_dic(spellinfo_T *spin, char_u *fname, afffile_T *affile)
3492{
3493 hashtab_T ht;
3494 char_u line[MAXLINELEN];
3495 char_u *p;
3496 char_u *afflist;
3497 char_u store_afflist[MAXWLEN];
3498 int pfxlen;
3499 int need_affix;
3500 char_u *dw;
3501 char_u *pc;
3502 char_u *w;
3503 int l;
3504 hash_T hash;
3505 hashitem_T *hi;
3506 FILE *fd;
3507 int lnum = 1;
3508 int non_ascii = 0;
3509 int retval = OK;
3510 char_u message[MAXLINELEN + MAXWLEN];
3511 int flags;
3512 int duplicate = 0;
Bram Moolenaar408c23b2020-06-03 22:15:45 +02003513 time_T last_msg_time = 0;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003514
3515 /*
3516 * Open the file.
3517 */
3518 fd = mch_fopen((char *)fname, "r");
3519 if (fd == NULL)
3520 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003521 semsg(_(e_notopen), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003522 return FAIL;
3523 }
3524
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003525 // The hashtable is only used to detect duplicated words.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003526 hash_init(&ht);
3527
3528 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaarc1669272018-06-19 14:23:53 +02003529 _("Reading dictionary file %s..."), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003530 spell_message(spin, IObuff);
3531
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003532 // start with a message for the first line
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003533 spin->si_msg_count = 999999;
3534
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003535 // Read and ignore the first line: word count.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003536 (void)vim_fgets(line, MAXLINELEN, fd);
3537 if (!vim_isdigit(*skipwhite(line)))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003538 semsg(_("E760: No word count in %s"), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003539
3540 /*
3541 * Read all the lines in the file one by one.
3542 * The words are converted to 'encoding' here, before being added to
3543 * the hashtable.
3544 */
3545 while (!vim_fgets(line, MAXLINELEN, fd) && !got_int)
3546 {
3547 line_breakcheck();
3548 ++lnum;
3549 if (line[0] == '#' || line[0] == '/')
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003550 continue; // comment line
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003551
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003552 // Remove CR, LF and white space from the end. White space halfway
3553 // the word is kept to allow e.g., "et al.".
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003554 l = (int)STRLEN(line);
3555 while (l > 0 && line[l - 1] <= ' ')
3556 --l;
3557 if (l == 0)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003558 continue; // empty line
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003559 line[l] = NUL;
3560
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003561 // Convert from "SET" to 'encoding' when needed.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003562 if (spin->si_conv.vc_type != CONV_NONE)
3563 {
3564 pc = string_convert(&spin->si_conv, line, NULL);
3565 if (pc == NULL)
3566 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003567 smsg(_("Conversion failure for word in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003568 fname, lnum, line);
3569 continue;
3570 }
3571 w = pc;
3572 }
3573 else
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003574 {
3575 pc = NULL;
3576 w = line;
3577 }
3578
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003579 // Truncate the word at the "/", set "afflist" to what follows.
3580 // Replace "\/" by "/" and "\\" by "\".
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003581 afflist = NULL;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003582 for (p = w; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003583 {
3584 if (*p == '\\' && (p[1] == '\\' || p[1] == '/'))
3585 STRMOVE(p, p + 1);
3586 else if (*p == '/')
3587 {
3588 *p = NUL;
3589 afflist = p + 1;
3590 break;
3591 }
3592 }
3593
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003594 // Skip non-ASCII words when "spin->si_ascii" is TRUE.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003595 if (spin->si_ascii && has_non_ascii(w))
3596 {
3597 ++non_ascii;
3598 vim_free(pc);
3599 continue;
3600 }
3601
Bram Moolenaar408c23b2020-06-03 22:15:45 +02003602 // This takes time, print a message every 10000 words, but not more
3603 // often than once per second.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003604 if (spin->si_verbose && spin->si_msg_count > 10000)
3605 {
3606 spin->si_msg_count = 0;
Bram Moolenaar408c23b2020-06-03 22:15:45 +02003607 if (vim_time() > last_msg_time)
3608 {
3609 last_msg_time = vim_time();
3610 vim_snprintf((char *)message, sizeof(message),
3611 _("line %6d, word %6ld - %s"),
3612 lnum, spin->si_foldwcount + spin->si_keepwcount, w);
3613 msg_start();
3614 msg_outtrans_long_attr(message, 0);
3615 msg_clr_eos();
3616 msg_didout = FALSE;
3617 msg_col = 0;
3618 out_flush();
3619 }
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003620 }
3621
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003622 // Store the word in the hashtable to be able to find duplicates.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003623 dw = (char_u *)getroom_save(spin, w);
3624 if (dw == NULL)
3625 {
3626 retval = FAIL;
3627 vim_free(pc);
3628 break;
3629 }
3630
3631 hash = hash_hash(dw);
3632 hi = hash_lookup(&ht, dw, hash);
3633 if (!HASHITEM_EMPTY(hi))
3634 {
3635 if (p_verbose > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003636 smsg(_("Duplicate word in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003637 fname, lnum, dw);
3638 else if (duplicate == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003639 smsg(_("First duplicate word in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003640 fname, lnum, dw);
3641 ++duplicate;
3642 }
3643 else
3644 hash_add_item(&ht, hi, dw, hash);
3645
3646 flags = 0;
3647 store_afflist[0] = NUL;
3648 pfxlen = 0;
3649 need_affix = FALSE;
3650 if (afflist != NULL)
3651 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003652 // Extract flags from the affix list.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003653 flags |= get_affix_flags(affile, afflist);
3654
3655 if (affile->af_needaffix != 0 && flag_in_afflist(
3656 affile->af_flagtype, afflist, affile->af_needaffix))
3657 need_affix = TRUE;
3658
3659 if (affile->af_pfxpostpone)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003660 // Need to store the list of prefix IDs with the word.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003661 pfxlen = get_pfxlist(affile, afflist, store_afflist);
3662
3663 if (spin->si_compflags != NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003664 // Need to store the list of compound flags with the word.
3665 // Concatenate them to the list of prefix IDs.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003666 get_compflags(affile, afflist, store_afflist + pfxlen);
3667 }
3668
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003669 // Add the word to the word tree(s).
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003670 if (store_word(spin, dw, flags, spin->si_region,
3671 store_afflist, need_affix) == FAIL)
3672 retval = FAIL;
3673
3674 if (afflist != NULL)
3675 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003676 // Find all matching suffixes and add the resulting words.
3677 // Additionally do matching prefixes that combine.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003678 if (store_aff_word(spin, dw, afflist, affile,
3679 &affile->af_suff, &affile->af_pref,
3680 CONDIT_SUF, flags, store_afflist, pfxlen) == FAIL)
3681 retval = FAIL;
3682
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003683 // Find all matching prefixes and add the resulting words.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003684 if (store_aff_word(spin, dw, afflist, affile,
3685 &affile->af_pref, NULL,
3686 CONDIT_SUF, flags, store_afflist, pfxlen) == FAIL)
3687 retval = FAIL;
3688 }
3689
3690 vim_free(pc);
3691 }
3692
3693 if (duplicate > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003694 smsg(_("%d duplicate word(s) in %s"), duplicate, fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003695 if (spin->si_ascii && non_ascii > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003696 smsg(_("Ignored %d word(s) with non-ASCII characters in %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003697 non_ascii, fname);
3698 hash_clear(&ht);
3699
3700 fclose(fd);
3701 return retval;
3702}
3703
3704/*
3705 * Check for affix flags in "afflist" that are turned into word flags.
3706 * Return WF_ flags.
3707 */
3708 static int
3709get_affix_flags(afffile_T *affile, char_u *afflist)
3710{
3711 int flags = 0;
3712
3713 if (affile->af_keepcase != 0 && flag_in_afflist(
3714 affile->af_flagtype, afflist, affile->af_keepcase))
3715 flags |= WF_KEEPCAP | WF_FIXCAP;
3716 if (affile->af_rare != 0 && flag_in_afflist(
3717 affile->af_flagtype, afflist, affile->af_rare))
3718 flags |= WF_RARE;
3719 if (affile->af_bad != 0 && flag_in_afflist(
3720 affile->af_flagtype, afflist, affile->af_bad))
3721 flags |= WF_BANNED;
3722 if (affile->af_needcomp != 0 && flag_in_afflist(
3723 affile->af_flagtype, afflist, affile->af_needcomp))
3724 flags |= WF_NEEDCOMP;
3725 if (affile->af_comproot != 0 && flag_in_afflist(
3726 affile->af_flagtype, afflist, affile->af_comproot))
3727 flags |= WF_COMPROOT;
3728 if (affile->af_nosuggest != 0 && flag_in_afflist(
3729 affile->af_flagtype, afflist, affile->af_nosuggest))
3730 flags |= WF_NOSUGGEST;
3731 return flags;
3732}
3733
3734/*
3735 * Get the list of prefix IDs from the affix list "afflist".
3736 * Used for PFXPOSTPONE.
3737 * Put the resulting flags in "store_afflist[MAXWLEN]" with a terminating NUL
3738 * and return the number of affixes.
3739 */
3740 static int
3741get_pfxlist(
3742 afffile_T *affile,
3743 char_u *afflist,
3744 char_u *store_afflist)
3745{
3746 char_u *p;
3747 char_u *prevp;
3748 int cnt = 0;
3749 int id;
3750 char_u key[AH_KEY_LEN];
3751 hashitem_T *hi;
3752
3753 for (p = afflist; *p != NUL; )
3754 {
3755 prevp = p;
3756 if (get_affitem(affile->af_flagtype, &p) != 0)
3757 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003758 // A flag is a postponed prefix flag if it appears in "af_pref"
3759 // and its ID is not zero.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003760 vim_strncpy(key, prevp, p - prevp);
3761 hi = hash_find(&affile->af_pref, key);
3762 if (!HASHITEM_EMPTY(hi))
3763 {
3764 id = HI2AH(hi)->ah_newID;
3765 if (id != 0)
3766 store_afflist[cnt++] = id;
3767 }
3768 }
3769 if (affile->af_flagtype == AFT_NUM && *p == ',')
3770 ++p;
3771 }
3772
3773 store_afflist[cnt] = NUL;
3774 return cnt;
3775}
3776
3777/*
3778 * Get the list of compound IDs from the affix list "afflist" that are used
3779 * for compound words.
3780 * Puts the flags in "store_afflist[]".
3781 */
3782 static void
3783get_compflags(
3784 afffile_T *affile,
3785 char_u *afflist,
3786 char_u *store_afflist)
3787{
3788 char_u *p;
3789 char_u *prevp;
3790 int cnt = 0;
3791 char_u key[AH_KEY_LEN];
3792 hashitem_T *hi;
3793
3794 for (p = afflist; *p != NUL; )
3795 {
3796 prevp = p;
3797 if (get_affitem(affile->af_flagtype, &p) != 0)
3798 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003799 // A flag is a compound flag if it appears in "af_comp".
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003800 vim_strncpy(key, prevp, p - prevp);
3801 hi = hash_find(&affile->af_comp, key);
3802 if (!HASHITEM_EMPTY(hi))
3803 store_afflist[cnt++] = HI2CI(hi)->ci_newID;
3804 }
3805 if (affile->af_flagtype == AFT_NUM && *p == ',')
3806 ++p;
3807 }
3808
3809 store_afflist[cnt] = NUL;
3810}
3811
3812/*
3813 * Apply affixes to a word and store the resulting words.
3814 * "ht" is the hashtable with affentry_T that need to be applied, either
3815 * prefixes or suffixes.
3816 * "xht", when not NULL, is the prefix hashtable, to be used additionally on
3817 * the resulting words for combining affixes.
3818 *
3819 * Returns FAIL when out of memory.
3820 */
3821 static int
3822store_aff_word(
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003823 spellinfo_T *spin, // spell info
3824 char_u *word, // basic word start
3825 char_u *afflist, // list of names of supported affixes
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003826 afffile_T *affile,
3827 hashtab_T *ht,
3828 hashtab_T *xht,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003829 int condit, // CONDIT_SUF et al.
3830 int flags, // flags for the word
3831 char_u *pfxlist, // list of prefix IDs
3832 int pfxlen) // nr of flags in "pfxlist" for prefixes, rest
3833 // is compound flags
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003834{
3835 int todo;
3836 hashitem_T *hi;
3837 affheader_T *ah;
3838 affentry_T *ae;
3839 char_u newword[MAXWLEN];
3840 int retval = OK;
3841 int i, j;
3842 char_u *p;
3843 int use_flags;
3844 char_u *use_pfxlist;
3845 int use_pfxlen;
3846 int need_affix;
3847 char_u store_afflist[MAXWLEN];
3848 char_u pfx_pfxlist[MAXWLEN];
3849 size_t wordlen = STRLEN(word);
3850 int use_condit;
3851
3852 todo = (int)ht->ht_used;
3853 for (hi = ht->ht_array; todo > 0 && retval == OK; ++hi)
3854 {
3855 if (!HASHITEM_EMPTY(hi))
3856 {
3857 --todo;
3858 ah = HI2AH(hi);
3859
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003860 // Check that the affix combines, if required, and that the word
3861 // supports this affix.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003862 if (((condit & CONDIT_COMB) == 0 || ah->ah_combine)
3863 && flag_in_afflist(affile->af_flagtype, afflist,
3864 ah->ah_flag))
3865 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003866 // Loop over all affix entries with this name.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003867 for (ae = ah->ah_first; ae != NULL; ae = ae->ae_next)
3868 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003869 // Check the condition. It's not logical to match case
3870 // here, but it is required for compatibility with
3871 // Myspell.
3872 // Another requirement from Myspell is that the chop
3873 // string is shorter than the word itself.
3874 // For prefixes, when "PFXPOSTPONE" was used, only do
3875 // prefixes with a chop string and/or flags.
3876 // When a previously added affix had CIRCUMFIX this one
3877 // must have it too, if it had not then this one must not
3878 // have one either.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003879 if ((xht != NULL || !affile->af_pfxpostpone
3880 || ae->ae_chop != NULL
3881 || ae->ae_flags != NULL)
3882 && (ae->ae_chop == NULL
3883 || STRLEN(ae->ae_chop) < wordlen)
3884 && (ae->ae_prog == NULL
3885 || vim_regexec_prog(&ae->ae_prog, FALSE,
3886 word, (colnr_T)0))
3887 && (((condit & CONDIT_CFIX) == 0)
3888 == ((condit & CONDIT_AFF) == 0
3889 || ae->ae_flags == NULL
3890 || !flag_in_afflist(affile->af_flagtype,
3891 ae->ae_flags, affile->af_circumfix))))
3892 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003893 // Match. Remove the chop and add the affix.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003894 if (xht == NULL)
3895 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003896 // prefix: chop/add at the start of the word
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003897 if (ae->ae_add == NULL)
3898 *newword = NUL;
3899 else
3900 vim_strncpy(newword, ae->ae_add, MAXWLEN - 1);
3901 p = word;
3902 if (ae->ae_chop != NULL)
3903 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003904 // Skip chop string.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003905 if (has_mbyte)
3906 {
3907 i = mb_charlen(ae->ae_chop);
3908 for ( ; i > 0; --i)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003909 MB_PTR_ADV(p);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003910 }
3911 else
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003912 p += STRLEN(ae->ae_chop);
3913 }
3914 STRCAT(newword, p);
3915 }
3916 else
3917 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003918 // suffix: chop/add at the end of the word
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003919 vim_strncpy(newword, word, MAXWLEN - 1);
3920 if (ae->ae_chop != NULL)
3921 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003922 // Remove chop string.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003923 p = newword + STRLEN(newword);
3924 i = (int)MB_CHARLEN(ae->ae_chop);
3925 for ( ; i > 0; --i)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003926 MB_PTR_BACK(newword, p);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003927 *p = NUL;
3928 }
3929 if (ae->ae_add != NULL)
3930 STRCAT(newword, ae->ae_add);
3931 }
3932
3933 use_flags = flags;
3934 use_pfxlist = pfxlist;
3935 use_pfxlen = pfxlen;
3936 need_affix = FALSE;
3937 use_condit = condit | CONDIT_COMB | CONDIT_AFF;
3938 if (ae->ae_flags != NULL)
3939 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003940 // Extract flags from the affix list.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003941 use_flags |= get_affix_flags(affile, ae->ae_flags);
3942
3943 if (affile->af_needaffix != 0 && flag_in_afflist(
3944 affile->af_flagtype, ae->ae_flags,
3945 affile->af_needaffix))
3946 need_affix = TRUE;
3947
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003948 // When there is a CIRCUMFIX flag the other affix
3949 // must also have it and we don't add the word
3950 // with one affix.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003951 if (affile->af_circumfix != 0 && flag_in_afflist(
3952 affile->af_flagtype, ae->ae_flags,
3953 affile->af_circumfix))
3954 {
3955 use_condit |= CONDIT_CFIX;
3956 if ((condit & CONDIT_CFIX) == 0)
3957 need_affix = TRUE;
3958 }
3959
3960 if (affile->af_pfxpostpone
3961 || spin->si_compflags != NULL)
3962 {
3963 if (affile->af_pfxpostpone)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003964 // Get prefix IDS from the affix list.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003965 use_pfxlen = get_pfxlist(affile,
3966 ae->ae_flags, store_afflist);
3967 else
3968 use_pfxlen = 0;
3969 use_pfxlist = store_afflist;
3970
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003971 // Combine the prefix IDs. Avoid adding the
3972 // same ID twice.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003973 for (i = 0; i < pfxlen; ++i)
3974 {
3975 for (j = 0; j < use_pfxlen; ++j)
3976 if (pfxlist[i] == use_pfxlist[j])
3977 break;
3978 if (j == use_pfxlen)
3979 use_pfxlist[use_pfxlen++] = pfxlist[i];
3980 }
3981
3982 if (spin->si_compflags != NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003983 // Get compound IDS from the affix list.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003984 get_compflags(affile, ae->ae_flags,
3985 use_pfxlist + use_pfxlen);
3986
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003987 // Combine the list of compound flags.
3988 // Concatenate them to the prefix IDs list.
3989 // Avoid adding the same ID twice.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003990 for (i = pfxlen; pfxlist[i] != NUL; ++i)
3991 {
3992 for (j = use_pfxlen;
3993 use_pfxlist[j] != NUL; ++j)
3994 if (pfxlist[i] == use_pfxlist[j])
3995 break;
3996 if (use_pfxlist[j] == NUL)
3997 {
3998 use_pfxlist[j++] = pfxlist[i];
3999 use_pfxlist[j] = NUL;
4000 }
4001 }
4002 }
4003 }
4004
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004005 // Obey a "COMPOUNDFORBIDFLAG" of the affix: don't
4006 // use the compound flags.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004007 if (use_pfxlist != NULL && ae->ae_compforbid)
4008 {
4009 vim_strncpy(pfx_pfxlist, use_pfxlist, use_pfxlen);
4010 use_pfxlist = pfx_pfxlist;
4011 }
4012
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004013 // When there are postponed prefixes...
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004014 if (spin->si_prefroot != NULL
4015 && spin->si_prefroot->wn_sibling != NULL)
4016 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004017 // ... add a flag to indicate an affix was used.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004018 use_flags |= WF_HAS_AFF;
4019
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004020 // ... don't use a prefix list if combining
4021 // affixes is not allowed. But do use the
4022 // compound flags after them.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004023 if (!ah->ah_combine && use_pfxlist != NULL)
4024 use_pfxlist += use_pfxlen;
4025 }
4026
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004027 // When compounding is supported and there is no
4028 // "COMPOUNDPERMITFLAG" then forbid compounding on the
4029 // side where the affix is applied.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004030 if (spin->si_compflags != NULL && !ae->ae_comppermit)
4031 {
4032 if (xht != NULL)
4033 use_flags |= WF_NOCOMPAFT;
4034 else
4035 use_flags |= WF_NOCOMPBEF;
4036 }
4037
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004038 // Store the modified word.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004039 if (store_word(spin, newword, use_flags,
4040 spin->si_region, use_pfxlist,
4041 need_affix) == FAIL)
4042 retval = FAIL;
4043
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004044 // When added a prefix or a first suffix and the affix
4045 // has flags may add a(nother) suffix. RECURSIVE!
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004046 if ((condit & CONDIT_SUF) && ae->ae_flags != NULL)
4047 if (store_aff_word(spin, newword, ae->ae_flags,
4048 affile, &affile->af_suff, xht,
4049 use_condit & (xht == NULL
4050 ? ~0 : ~CONDIT_SUF),
4051 use_flags, use_pfxlist, pfxlen) == FAIL)
4052 retval = FAIL;
4053
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004054 // When added a suffix and combining is allowed also
4055 // try adding a prefix additionally. Both for the
4056 // word flags and for the affix flags. RECURSIVE!
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004057 if (xht != NULL && ah->ah_combine)
4058 {
4059 if (store_aff_word(spin, newword,
4060 afflist, affile,
4061 xht, NULL, use_condit,
4062 use_flags, use_pfxlist,
4063 pfxlen) == FAIL
4064 || (ae->ae_flags != NULL
4065 && store_aff_word(spin, newword,
4066 ae->ae_flags, affile,
4067 xht, NULL, use_condit,
4068 use_flags, use_pfxlist,
4069 pfxlen) == FAIL))
4070 retval = FAIL;
4071 }
4072 }
4073 }
4074 }
4075 }
4076 }
4077
4078 return retval;
4079}
4080
4081/*
4082 * Read a file with a list of words.
4083 */
4084 static int
4085spell_read_wordfile(spellinfo_T *spin, char_u *fname)
4086{
4087 FILE *fd;
4088 long lnum = 0;
4089 char_u rline[MAXLINELEN];
4090 char_u *line;
4091 char_u *pc = NULL;
4092 char_u *p;
4093 int l;
4094 int retval = OK;
4095 int did_word = FALSE;
4096 int non_ascii = 0;
4097 int flags;
4098 int regionmask;
4099
4100 /*
4101 * Open the file.
4102 */
4103 fd = mch_fopen((char *)fname, "r");
4104 if (fd == NULL)
4105 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004106 semsg(_(e_notopen), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004107 return FAIL;
4108 }
4109
Bram Moolenaarc1669272018-06-19 14:23:53 +02004110 vim_snprintf((char *)IObuff, IOSIZE, _("Reading word file %s..."), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004111 spell_message(spin, IObuff);
4112
4113 /*
4114 * Read all the lines in the file one by one.
4115 */
4116 while (!vim_fgets(rline, MAXLINELEN, fd) && !got_int)
4117 {
4118 line_breakcheck();
4119 ++lnum;
4120
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004121 // Skip comment lines.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004122 if (*rline == '#')
4123 continue;
4124
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004125 // Remove CR, LF and white space from the end.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004126 l = (int)STRLEN(rline);
4127 while (l > 0 && rline[l - 1] <= ' ')
4128 --l;
4129 if (l == 0)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004130 continue; // empty or blank line
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004131 rline[l] = NUL;
4132
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004133 // Convert from "/encoding={encoding}" to 'encoding' when needed.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004134 vim_free(pc);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004135 if (spin->si_conv.vc_type != CONV_NONE)
4136 {
4137 pc = string_convert(&spin->si_conv, rline, NULL);
4138 if (pc == NULL)
4139 {
Bram Moolenaardb99f9f2020-03-23 22:12:22 +01004140 smsg(_("Conversion failure for word in %s line %ld: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004141 fname, lnum, rline);
4142 continue;
4143 }
4144 line = pc;
4145 }
4146 else
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004147 {
4148 pc = NULL;
4149 line = rline;
4150 }
4151
4152 if (*line == '/')
4153 {
4154 ++line;
4155 if (STRNCMP(line, "encoding=", 9) == 0)
4156 {
4157 if (spin->si_conv.vc_type != CONV_NONE)
Bram Moolenaardb99f9f2020-03-23 22:12:22 +01004158 smsg(_("Duplicate /encoding= line ignored in %s line %ld: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004159 fname, lnum, line - 1);
4160 else if (did_word)
Bram Moolenaardb99f9f2020-03-23 22:12:22 +01004161 smsg(_("/encoding= line after word ignored in %s line %ld: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004162 fname, lnum, line - 1);
4163 else
4164 {
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004165 char_u *enc;
4166
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004167 // Setup for conversion to 'encoding'.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004168 line += 9;
4169 enc = enc_canonize(line);
4170 if (enc != NULL && !spin->si_ascii
4171 && convert_setup(&spin->si_conv, enc,
4172 p_enc) == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004173 smsg(_("Conversion in %s not supported: from %s to %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004174 fname, line, p_enc);
4175 vim_free(enc);
4176 spin->si_conv.vc_fail = TRUE;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004177 }
4178 continue;
4179 }
4180
4181 if (STRNCMP(line, "regions=", 8) == 0)
4182 {
4183 if (spin->si_region_count > 1)
Bram Moolenaardb99f9f2020-03-23 22:12:22 +01004184 smsg(_("Duplicate /regions= line ignored in %s line %ld: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004185 fname, lnum, line);
4186 else
4187 {
4188 line += 8;
Bram Moolenaar2993ac52018-02-10 14:12:43 +01004189 if (STRLEN(line) > MAXREGIONS * 2)
Bram Moolenaardb99f9f2020-03-23 22:12:22 +01004190 smsg(_("Too many regions in %s line %ld: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004191 fname, lnum, line);
4192 else
4193 {
4194 spin->si_region_count = (int)STRLEN(line) / 2;
4195 STRCPY(spin->si_region_name, line);
4196
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004197 // Adjust the mask for a word valid in all regions.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004198 spin->si_region = (1 << spin->si_region_count) - 1;
4199 }
4200 }
4201 continue;
4202 }
4203
Bram Moolenaardb99f9f2020-03-23 22:12:22 +01004204 smsg(_("/ line ignored in %s line %ld: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004205 fname, lnum, line - 1);
4206 continue;
4207 }
4208
4209 flags = 0;
4210 regionmask = spin->si_region;
4211
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004212 // Check for flags and region after a slash.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004213 p = vim_strchr(line, '/');
4214 if (p != NULL)
4215 {
4216 *p++ = NUL;
4217 while (*p != NUL)
4218 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004219 if (*p == '=') // keep-case word
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004220 flags |= WF_KEEPCAP | WF_FIXCAP;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004221 else if (*p == '!') // Bad, bad, wicked word.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004222 flags |= WF_BANNED;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004223 else if (*p == '?') // Rare word.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004224 flags |= WF_RARE;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004225 else if (VIM_ISDIGIT(*p)) // region number(s)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004226 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004227 if ((flags & WF_REGION) == 0) // first one
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004228 regionmask = 0;
4229 flags |= WF_REGION;
4230
4231 l = *p - '0';
Bram Moolenaaree03b942017-10-27 00:57:05 +02004232 if (l == 0 || l > spin->si_region_count)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004233 {
Bram Moolenaardb99f9f2020-03-23 22:12:22 +01004234 smsg(_("Invalid region nr in %s line %ld: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004235 fname, lnum, p);
4236 break;
4237 }
4238 regionmask |= 1 << (l - 1);
4239 }
4240 else
4241 {
Bram Moolenaardb99f9f2020-03-23 22:12:22 +01004242 smsg(_("Unrecognized flags in %s line %ld: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004243 fname, lnum, p);
4244 break;
4245 }
4246 ++p;
4247 }
4248 }
4249
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004250 // Skip non-ASCII words when "spin->si_ascii" is TRUE.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004251 if (spin->si_ascii && has_non_ascii(line))
4252 {
4253 ++non_ascii;
4254 continue;
4255 }
4256
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004257 // Normal word: store it.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004258 if (store_word(spin, line, flags, regionmask, NULL, FALSE) == FAIL)
4259 {
4260 retval = FAIL;
4261 break;
4262 }
4263 did_word = TRUE;
4264 }
4265
4266 vim_free(pc);
4267 fclose(fd);
4268
4269 if (spin->si_ascii && non_ascii > 0)
4270 {
4271 vim_snprintf((char *)IObuff, IOSIZE,
4272 _("Ignored %d words with non-ASCII characters"), non_ascii);
4273 spell_message(spin, IObuff);
4274 }
4275
4276 return retval;
4277}
4278
4279/*
4280 * Get part of an sblock_T, "len" bytes long.
4281 * This avoids calling free() for every little struct we use (and keeping
4282 * track of them).
4283 * The memory is cleared to all zeros.
4284 * Returns NULL when out of memory.
4285 */
4286 static void *
4287getroom(
4288 spellinfo_T *spin,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004289 size_t len, // length needed
4290 int align) // align for pointer
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004291{
4292 char_u *p;
4293 sblock_T *bl = spin->si_blocks;
4294
4295 if (align && bl != NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004296 // Round size up for alignment. On some systems structures need to be
4297 // aligned to the size of a pointer (e.g., SPARC).
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004298 bl->sb_used = (bl->sb_used + sizeof(char *) - 1)
4299 & ~(sizeof(char *) - 1);
4300
4301 if (bl == NULL || bl->sb_used + len > SBLOCKSIZE)
4302 {
4303 if (len >= SBLOCKSIZE)
4304 bl = NULL;
4305 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004306 // Allocate a block of memory. It is not freed until much later.
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004307 bl = alloc_clear(sizeof(sblock_T) + SBLOCKSIZE);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004308 if (bl == NULL)
4309 {
4310 if (!spin->si_did_emsg)
4311 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004312 emsg(_("E845: Insufficient memory, word list will be incomplete"));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004313 spin->si_did_emsg = TRUE;
4314 }
4315 return NULL;
4316 }
4317 bl->sb_next = spin->si_blocks;
4318 spin->si_blocks = bl;
4319 bl->sb_used = 0;
4320 ++spin->si_blocks_cnt;
4321 }
4322
4323 p = bl->sb_data + bl->sb_used;
4324 bl->sb_used += (int)len;
4325
4326 return p;
4327}
4328
4329/*
4330 * Make a copy of a string into memory allocated with getroom().
4331 * Returns NULL when out of memory.
4332 */
4333 static char_u *
4334getroom_save(spellinfo_T *spin, char_u *s)
4335{
4336 char_u *sc;
4337
4338 sc = (char_u *)getroom(spin, STRLEN(s) + 1, FALSE);
4339 if (sc != NULL)
4340 STRCPY(sc, s);
4341 return sc;
4342}
4343
4344
4345/*
4346 * Free the list of allocated sblock_T.
4347 */
4348 static void
4349free_blocks(sblock_T *bl)
4350{
4351 sblock_T *next;
4352
4353 while (bl != NULL)
4354 {
4355 next = bl->sb_next;
4356 vim_free(bl);
4357 bl = next;
4358 }
4359}
4360
4361/*
4362 * Allocate the root of a word tree.
4363 * Returns NULL when out of memory.
4364 */
4365 static wordnode_T *
4366wordtree_alloc(spellinfo_T *spin)
4367{
4368 return (wordnode_T *)getroom(spin, sizeof(wordnode_T), TRUE);
4369}
4370
4371/*
4372 * Store a word in the tree(s).
4373 * Always store it in the case-folded tree. For a keep-case word this is
4374 * useful when the word can also be used with all caps (no WF_FIXCAP flag) and
4375 * used to find suggestions.
4376 * For a keep-case word also store it in the keep-case tree.
4377 * When "pfxlist" is not NULL store the word for each postponed prefix ID and
4378 * compound flag.
4379 */
4380 static int
4381store_word(
4382 spellinfo_T *spin,
4383 char_u *word,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004384 int flags, // extra flags, WF_BANNED
4385 int region, // supported region(s)
4386 char_u *pfxlist, // list of prefix IDs or NULL
4387 int need_affix) // only store word with affix ID
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004388{
4389 int len = (int)STRLEN(word);
4390 int ct = captype(word, word + len);
4391 char_u foldword[MAXWLEN];
4392 int res = OK;
4393 char_u *p;
4394
4395 (void)spell_casefold(word, len, foldword, MAXWLEN);
4396 for (p = pfxlist; res == OK; ++p)
4397 {
4398 if (!need_affix || (p != NULL && *p != NUL))
4399 res = tree_add_word(spin, foldword, spin->si_foldroot, ct | flags,
4400 region, p == NULL ? 0 : *p);
4401 if (p == NULL || *p == NUL)
4402 break;
4403 }
4404 ++spin->si_foldwcount;
4405
4406 if (res == OK && (ct == WF_KEEPCAP || (flags & WF_KEEPCAP)))
4407 {
4408 for (p = pfxlist; res == OK; ++p)
4409 {
4410 if (!need_affix || (p != NULL && *p != NUL))
4411 res = tree_add_word(spin, word, spin->si_keeproot, flags,
4412 region, p == NULL ? 0 : *p);
4413 if (p == NULL || *p == NUL)
4414 break;
4415 }
4416 ++spin->si_keepwcount;
4417 }
4418 return res;
4419}
4420
4421/*
4422 * Add word "word" to a word tree at "root".
4423 * When "flags" < 0 we are adding to the prefix tree where "flags" is used for
4424 * "rare" and "region" is the condition nr.
4425 * Returns FAIL when out of memory.
4426 */
4427 static int
4428tree_add_word(
4429 spellinfo_T *spin,
4430 char_u *word,
4431 wordnode_T *root,
4432 int flags,
4433 int region,
4434 int affixID)
4435{
4436 wordnode_T *node = root;
4437 wordnode_T *np;
4438 wordnode_T *copyp, **copyprev;
4439 wordnode_T **prev = NULL;
4440 int i;
4441
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004442 // Add each byte of the word to the tree, including the NUL at the end.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004443 for (i = 0; ; ++i)
4444 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004445 // When there is more than one reference to this node we need to make
4446 // a copy, so that we can modify it. Copy the whole list of siblings
4447 // (we don't optimize for a partly shared list of siblings).
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004448 if (node != NULL && node->wn_refs > 1)
4449 {
4450 --node->wn_refs;
4451 copyprev = prev;
Bram Moolenaaraeea7212020-04-02 18:50:46 +02004452 FOR_ALL_NODE_SIBLINGS(node, copyp)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004453 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004454 // Allocate a new node and copy the info.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004455 np = get_wordnode(spin);
4456 if (np == NULL)
4457 return FAIL;
4458 np->wn_child = copyp->wn_child;
4459 if (np->wn_child != NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004460 ++np->wn_child->wn_refs; // child gets extra ref
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004461 np->wn_byte = copyp->wn_byte;
4462 if (np->wn_byte == NUL)
4463 {
4464 np->wn_flags = copyp->wn_flags;
4465 np->wn_region = copyp->wn_region;
4466 np->wn_affixID = copyp->wn_affixID;
4467 }
4468
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004469 // Link the new node in the list, there will be one ref.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004470 np->wn_refs = 1;
4471 if (copyprev != NULL)
4472 *copyprev = np;
4473 copyprev = &np->wn_sibling;
4474
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004475 // Let "node" point to the head of the copied list.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004476 if (copyp == node)
4477 node = np;
4478 }
4479 }
4480
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004481 // Look for the sibling that has the same character. They are sorted
4482 // on byte value, thus stop searching when a sibling is found with a
4483 // higher byte value. For zero bytes (end of word) the sorting is
4484 // done on flags and then on affixID.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004485 while (node != NULL
4486 && (node->wn_byte < word[i]
4487 || (node->wn_byte == NUL
4488 && (flags < 0
4489 ? node->wn_affixID < (unsigned)affixID
4490 : (node->wn_flags < (unsigned)(flags & WN_MASK)
4491 || (node->wn_flags == (flags & WN_MASK)
4492 && (spin->si_sugtree
4493 ? (node->wn_region & 0xffff) < region
4494 : node->wn_affixID
4495 < (unsigned)affixID)))))))
4496 {
4497 prev = &node->wn_sibling;
4498 node = *prev;
4499 }
4500 if (node == NULL
4501 || node->wn_byte != word[i]
4502 || (word[i] == NUL
4503 && (flags < 0
4504 || spin->si_sugtree
4505 || node->wn_flags != (flags & WN_MASK)
4506 || node->wn_affixID != affixID)))
4507 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004508 // Allocate a new node.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004509 np = get_wordnode(spin);
4510 if (np == NULL)
4511 return FAIL;
4512 np->wn_byte = word[i];
4513
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004514 // If "node" is NULL this is a new child or the end of the sibling
4515 // list: ref count is one. Otherwise use ref count of sibling and
4516 // make ref count of sibling one (matters when inserting in front
4517 // of the list of siblings).
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004518 if (node == NULL)
4519 np->wn_refs = 1;
4520 else
4521 {
4522 np->wn_refs = node->wn_refs;
4523 node->wn_refs = 1;
4524 }
4525 if (prev != NULL)
4526 *prev = np;
4527 np->wn_sibling = node;
4528 node = np;
4529 }
4530
4531 if (word[i] == NUL)
4532 {
4533 node->wn_flags = flags;
4534 node->wn_region |= region;
4535 node->wn_affixID = affixID;
4536 break;
4537 }
4538 prev = &node->wn_child;
4539 node = *prev;
4540 }
4541#ifdef SPELL_PRINTTREE
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004542 smsg("Added \"%s\"", word);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004543 spell_print_tree(root->wn_sibling);
4544#endif
4545
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004546 // count nr of words added since last message
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004547 ++spin->si_msg_count;
4548
4549 if (spin->si_compress_cnt > 1)
4550 {
4551 if (--spin->si_compress_cnt == 1)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004552 // Did enough words to lower the block count limit.
Bram Moolenaar408c23b2020-06-03 22:15:45 +02004553 spin->si_blocks_cnt += compress_inc;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004554 }
4555
4556 /*
4557 * When we have allocated lots of memory we need to compress the word tree
4558 * to free up some room. But compression is slow, and we might actually
4559 * need that room, thus only compress in the following situations:
4560 * 1. When not compressed before (si_compress_cnt == 0): when using
4561 * "compress_start" blocks.
Bram Moolenaar408c23b2020-06-03 22:15:45 +02004562 * 2. When compressed before and used "compress_inc" blocks before
4563 * adding "compress_added" words (si_compress_cnt > 1).
4564 * 3. When compressed before, added "compress_added" words
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004565 * (si_compress_cnt == 1) and the number of free nodes drops below the
4566 * maximum word length.
4567 */
4568#ifndef SPELL_COMPRESS_ALLWAYS
4569 if (spin->si_compress_cnt == 1
4570 ? spin->si_free_count < MAXWLEN
4571 : spin->si_blocks_cnt >= compress_start)
4572#endif
4573 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004574 // Decrement the block counter. The effect is that we compress again
Bram Moolenaar408c23b2020-06-03 22:15:45 +02004575 // when the freed up room has been used and another "compress_inc"
4576 // blocks have been allocated. Unless "compress_added" words have
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004577 // been added, then the limit is put back again.
Bram Moolenaar408c23b2020-06-03 22:15:45 +02004578 spin->si_blocks_cnt -= compress_inc;
4579 spin->si_compress_cnt = compress_added;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004580
4581 if (spin->si_verbose)
4582 {
4583 msg_start();
Bram Moolenaar32526b32019-01-19 17:43:09 +01004584 msg_puts(_(msg_compressing));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004585 msg_clr_eos();
4586 msg_didout = FALSE;
4587 msg_col = 0;
4588 out_flush();
4589 }
4590
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004591 // Compress both trees. Either they both have many nodes, which makes
4592 // compression useful, or one of them is small, which means
4593 // compression goes fast. But when filling the soundfold word tree
4594 // there is no keep-case tree.
Bram Moolenaar408c23b2020-06-03 22:15:45 +02004595 wordtree_compress(spin, spin->si_foldroot, "case-folded");
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004596 if (affixID >= 0)
Bram Moolenaar408c23b2020-06-03 22:15:45 +02004597 wordtree_compress(spin, spin->si_keeproot, "keep-case");
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004598 }
4599
4600 return OK;
4601}
4602
4603/*
4604 * Get a wordnode_T, either from the list of previously freed nodes or
4605 * allocate a new one.
4606 * Returns NULL when out of memory.
4607 */
4608 static wordnode_T *
4609get_wordnode(spellinfo_T *spin)
4610{
4611 wordnode_T *n;
4612
4613 if (spin->si_first_free == NULL)
4614 n = (wordnode_T *)getroom(spin, sizeof(wordnode_T), TRUE);
4615 else
4616 {
4617 n = spin->si_first_free;
4618 spin->si_first_free = n->wn_child;
Bram Moolenaara80faa82020-04-12 19:37:17 +02004619 CLEAR_POINTER(n);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004620 --spin->si_free_count;
4621 }
4622#ifdef SPELL_PRINTTREE
4623 if (n != NULL)
4624 n->wn_nr = ++spin->si_wordnode_nr;
4625#endif
4626 return n;
4627}
4628
4629/*
4630 * Decrement the reference count on a node (which is the head of a list of
4631 * siblings). If the reference count becomes zero free the node and its
4632 * siblings.
4633 * Returns the number of nodes actually freed.
4634 */
4635 static int
4636deref_wordnode(spellinfo_T *spin, wordnode_T *node)
4637{
4638 wordnode_T *np;
4639 int cnt = 0;
4640
4641 if (--node->wn_refs == 0)
4642 {
Bram Moolenaaraeea7212020-04-02 18:50:46 +02004643 FOR_ALL_NODE_SIBLINGS(node, np)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004644 {
4645 if (np->wn_child != NULL)
4646 cnt += deref_wordnode(spin, np->wn_child);
4647 free_wordnode(spin, np);
4648 ++cnt;
4649 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004650 ++cnt; // length field
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004651 }
4652 return cnt;
4653}
4654
4655/*
4656 * Free a wordnode_T for re-use later.
4657 * Only the "wn_child" field becomes invalid.
4658 */
4659 static void
4660free_wordnode(spellinfo_T *spin, wordnode_T *n)
4661{
4662 n->wn_child = spin->si_first_free;
4663 spin->si_first_free = n;
4664 ++spin->si_free_count;
4665}
4666
4667/*
4668 * Compress a tree: find tails that are identical and can be shared.
4669 */
4670 static void
Bram Moolenaar408c23b2020-06-03 22:15:45 +02004671wordtree_compress(spellinfo_T *spin, wordnode_T *root, char *name)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004672{
4673 hashtab_T ht;
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02004674 long n;
4675 long tot = 0;
4676 long perc;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004677
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004678 // Skip the root itself, it's not actually used. The first sibling is the
4679 // start of the tree.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004680 if (root->wn_sibling != NULL)
4681 {
4682 hash_init(&ht);
4683 n = node_compress(spin, root->wn_sibling, &ht, &tot);
4684
4685#ifndef SPELL_PRINTTREE
4686 if (spin->si_verbose || p_verbose > 2)
4687#endif
4688 {
4689 if (tot > 1000000)
4690 perc = (tot - n) / (tot / 100);
4691 else if (tot == 0)
4692 perc = 0;
4693 else
4694 perc = (tot - n) * 100 / tot;
4695 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar408c23b2020-06-03 22:15:45 +02004696 _("Compressed %s: %ld of %ld nodes; %ld (%ld%%) remaining"),
4697 name, n, tot, tot - n, perc);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004698 spell_message(spin, IObuff);
4699 }
4700#ifdef SPELL_PRINTTREE
4701 spell_print_tree(root->wn_sibling);
4702#endif
4703 hash_clear(&ht);
4704 }
4705}
4706
4707/*
4708 * Compress a node, its siblings and its children, depth first.
4709 * Returns the number of compressed nodes.
4710 */
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02004711 static long
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004712node_compress(
4713 spellinfo_T *spin,
4714 wordnode_T *node,
4715 hashtab_T *ht,
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02004716 long *tot) // total count of nodes before compressing,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004717 // incremented while going through the tree
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004718{
4719 wordnode_T *np;
4720 wordnode_T *tp;
4721 wordnode_T *child;
4722 hash_T hash;
4723 hashitem_T *hi;
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02004724 long len = 0;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004725 unsigned nr, n;
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02004726 long compressed = 0;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004727
4728 /*
4729 * Go through the list of siblings. Compress each child and then try
4730 * finding an identical child to replace it.
4731 * Note that with "child" we mean not just the node that is pointed to,
4732 * but the whole list of siblings of which the child node is the first.
4733 */
4734 for (np = node; np != NULL && !got_int; np = np->wn_sibling)
4735 {
4736 ++len;
4737 if ((child = np->wn_child) != NULL)
4738 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004739 // Compress the child first. This fills hashkey.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004740 compressed += node_compress(spin, child, ht, tot);
4741
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004742 // Try to find an identical child.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004743 hash = hash_hash(child->wn_u1.hashkey);
4744 hi = hash_lookup(ht, child->wn_u1.hashkey, hash);
4745 if (!HASHITEM_EMPTY(hi))
4746 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004747 // There are children we encountered before with a hash value
4748 // identical to the current child. Now check if there is one
4749 // that is really identical.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004750 for (tp = HI2WN(hi); tp != NULL; tp = tp->wn_u2.next)
4751 if (node_equal(child, tp))
4752 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004753 // Found one! Now use that child in place of the
4754 // current one. This means the current child and all
4755 // its siblings is unlinked from the tree.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004756 ++tp->wn_refs;
4757 compressed += deref_wordnode(spin, child);
4758 np->wn_child = tp;
4759 break;
4760 }
4761 if (tp == NULL)
4762 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004763 // No other child with this hash value equals the child of
4764 // the node, add it to the linked list after the first
4765 // item.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004766 tp = HI2WN(hi);
4767 child->wn_u2.next = tp->wn_u2.next;
4768 tp->wn_u2.next = child;
4769 }
4770 }
4771 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004772 // No other child has this hash value, add it to the
4773 // hashtable.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004774 hash_add_item(ht, hi, child->wn_u1.hashkey, hash);
4775 }
4776 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004777 *tot += len + 1; // add one for the node that stores the length
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004778
4779 /*
4780 * Make a hash key for the node and its siblings, so that we can quickly
4781 * find a lookalike node. This must be done after compressing the sibling
4782 * list, otherwise the hash key would become invalid by the compression.
4783 */
4784 node->wn_u1.hashkey[0] = len;
4785 nr = 0;
Bram Moolenaaraeea7212020-04-02 18:50:46 +02004786 FOR_ALL_NODE_SIBLINGS(node, np)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004787 {
4788 if (np->wn_byte == NUL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004789 // end node: use wn_flags, wn_region and wn_affixID
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004790 n = np->wn_flags + (np->wn_region << 8) + (np->wn_affixID << 16);
4791 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004792 // byte node: use the byte value and the child pointer
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004793 n = (unsigned)(np->wn_byte + ((long_u)np->wn_child << 8));
4794 nr = nr * 101 + n;
4795 }
4796
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004797 // Avoid NUL bytes, it terminates the hash key.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004798 n = nr & 0xff;
4799 node->wn_u1.hashkey[1] = n == 0 ? 1 : n;
4800 n = (nr >> 8) & 0xff;
4801 node->wn_u1.hashkey[2] = n == 0 ? 1 : n;
4802 n = (nr >> 16) & 0xff;
4803 node->wn_u1.hashkey[3] = n == 0 ? 1 : n;
4804 n = (nr >> 24) & 0xff;
4805 node->wn_u1.hashkey[4] = n == 0 ? 1 : n;
4806 node->wn_u1.hashkey[5] = NUL;
4807
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004808 // Check for CTRL-C pressed now and then.
Bram Moolenaar408c23b2020-06-03 22:15:45 +02004809 veryfast_breakcheck();
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004810
4811 return compressed;
4812}
4813
4814/*
4815 * Return TRUE when two nodes have identical siblings and children.
4816 */
4817 static int
4818node_equal(wordnode_T *n1, wordnode_T *n2)
4819{
4820 wordnode_T *p1;
4821 wordnode_T *p2;
4822
4823 for (p1 = n1, p2 = n2; p1 != NULL && p2 != NULL;
4824 p1 = p1->wn_sibling, p2 = p2->wn_sibling)
4825 if (p1->wn_byte != p2->wn_byte
4826 || (p1->wn_byte == NUL
4827 ? (p1->wn_flags != p2->wn_flags
4828 || p1->wn_region != p2->wn_region
4829 || p1->wn_affixID != p2->wn_affixID)
4830 : (p1->wn_child != p2->wn_child)))
4831 break;
4832
4833 return p1 == NULL && p2 == NULL;
4834}
4835
Bram Moolenaareae1b912019-05-09 15:12:55 +02004836static int rep_compare(const void *s1, const void *s2);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004837
4838/*
4839 * Function given to qsort() to sort the REP items on "from" string.
4840 */
4841 static int
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004842rep_compare(const void *s1, const void *s2)
4843{
4844 fromto_T *p1 = (fromto_T *)s1;
4845 fromto_T *p2 = (fromto_T *)s2;
4846
4847 return STRCMP(p1->ft_from, p2->ft_from);
4848}
4849
4850/*
4851 * Write the Vim .spl file "fname".
4852 * Return FAIL or OK;
4853 */
4854 static int
4855write_vim_spell(spellinfo_T *spin, char_u *fname)
4856{
4857 FILE *fd;
4858 int regionmask;
4859 int round;
4860 wordnode_T *tree;
4861 int nodecount;
4862 int i;
4863 int l;
4864 garray_T *gap;
4865 fromto_T *ftp;
4866 char_u *p;
4867 int rr;
4868 int retval = OK;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004869 size_t fwv = 1; // collect return value of fwrite() to avoid
4870 // warnings from picky compiler
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004871
4872 fd = mch_fopen((char *)fname, "w");
4873 if (fd == NULL)
4874 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004875 semsg(_(e_notopen), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004876 return FAIL;
4877 }
4878
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004879 // <HEADER>: <fileID> <versionnr>
4880 // <fileID>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004881 fwv &= fwrite(VIMSPELLMAGIC, VIMSPELLMAGICL, (size_t)1, fd);
4882 if (fwv != (size_t)1)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004883 // Catch first write error, don't try writing more.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004884 goto theend;
4885
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004886 putc(VIMSPELLVERSION, fd); // <versionnr>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004887
4888 /*
4889 * <SECTIONS>: <section> ... <sectionend>
4890 */
4891
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004892 // SN_INFO: <infotext>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004893 if (spin->si_info != NULL)
4894 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004895 putc(SN_INFO, fd); // <sectionID>
4896 putc(0, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004897
4898 i = (int)STRLEN(spin->si_info);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004899 put_bytes(fd, (long_u)i, 4); // <sectionlen>
4900 fwv &= fwrite(spin->si_info, (size_t)i, (size_t)1, fd); // <infotext>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004901 }
4902
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004903 // SN_REGION: <regionname> ...
4904 // Write the region names only if there is more than one.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004905 if (spin->si_region_count > 1)
4906 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004907 putc(SN_REGION, fd); // <sectionID>
4908 putc(SNF_REQUIRED, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004909 l = spin->si_region_count * 2;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004910 put_bytes(fd, (long_u)l, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004911 fwv &= fwrite(spin->si_region_name, (size_t)l, (size_t)1, fd);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004912 // <regionname> ...
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004913 regionmask = (1 << spin->si_region_count) - 1;
4914 }
4915 else
4916 regionmask = 0;
4917
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004918 // SN_CHARFLAGS: <charflagslen> <charflags> <folcharslen> <folchars>
4919 //
4920 // The table with character flags and the table for case folding.
4921 // This makes sure the same characters are recognized as word characters
4922 // when generating an when using a spell file.
4923 // Skip this for ASCII, the table may conflict with the one used for
4924 // 'encoding'.
4925 // Also skip this for an .add.spl file, the main spell file must contain
4926 // the table (avoids that it conflicts). File is shorter too.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004927 if (!spin->si_ascii && !spin->si_add)
4928 {
4929 char_u folchars[128 * 8];
4930 int flags;
4931
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004932 putc(SN_CHARFLAGS, fd); // <sectionID>
4933 putc(SNF_REQUIRED, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004934
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004935 // Form the <folchars> string first, we need to know its length.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004936 l = 0;
4937 for (i = 128; i < 256; ++i)
4938 {
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004939 if (has_mbyte)
4940 l += mb_char2bytes(spelltab.st_fold[i], folchars + l);
4941 else
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004942 folchars[l++] = spelltab.st_fold[i];
4943 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004944 put_bytes(fd, (long_u)(1 + 128 + 2 + l), 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004945
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004946 fputc(128, fd); // <charflagslen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004947 for (i = 128; i < 256; ++i)
4948 {
4949 flags = 0;
4950 if (spelltab.st_isw[i])
4951 flags |= CF_WORD;
4952 if (spelltab.st_isu[i])
4953 flags |= CF_UPPER;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004954 fputc(flags, fd); // <charflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004955 }
4956
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004957 put_bytes(fd, (long_u)l, 2); // <folcharslen>
4958 fwv &= fwrite(folchars, (size_t)l, (size_t)1, fd); // <folchars>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004959 }
4960
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004961 // SN_MIDWORD: <midword>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004962 if (spin->si_midword != NULL)
4963 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004964 putc(SN_MIDWORD, fd); // <sectionID>
4965 putc(SNF_REQUIRED, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004966
4967 i = (int)STRLEN(spin->si_midword);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004968 put_bytes(fd, (long_u)i, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004969 fwv &= fwrite(spin->si_midword, (size_t)i, (size_t)1, fd);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004970 // <midword>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004971 }
4972
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004973 // SN_PREFCOND: <prefcondcnt> <prefcond> ...
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004974 if (spin->si_prefcond.ga_len > 0)
4975 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004976 putc(SN_PREFCOND, fd); // <sectionID>
4977 putc(SNF_REQUIRED, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004978
4979 l = write_spell_prefcond(NULL, &spin->si_prefcond);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004980 put_bytes(fd, (long_u)l, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004981
4982 write_spell_prefcond(fd, &spin->si_prefcond);
4983 }
4984
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004985 // SN_REP: <repcount> <rep> ...
4986 // SN_SAL: <salflags> <salcount> <sal> ...
4987 // SN_REPSAL: <repcount> <rep> ...
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004988
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004989 // round 1: SN_REP section
4990 // round 2: SN_SAL section (unless SN_SOFO is used)
4991 // round 3: SN_REPSAL section
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004992 for (round = 1; round <= 3; ++round)
4993 {
4994 if (round == 1)
4995 gap = &spin->si_rep;
4996 else if (round == 2)
4997 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004998 // Don't write SN_SAL when using a SN_SOFO section
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004999 if (spin->si_sofofr != NULL && spin->si_sofoto != NULL)
5000 continue;
5001 gap = &spin->si_sal;
5002 }
5003 else
5004 gap = &spin->si_repsal;
5005
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005006 // Don't write the section if there are no items.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005007 if (gap->ga_len == 0)
5008 continue;
5009
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005010 // Sort the REP/REPSAL items.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005011 if (round != 2)
5012 qsort(gap->ga_data, (size_t)gap->ga_len,
5013 sizeof(fromto_T), rep_compare);
5014
5015 i = round == 1 ? SN_REP : (round == 2 ? SN_SAL : SN_REPSAL);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005016 putc(i, fd); // <sectionID>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005017
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005018 // This is for making suggestions, section is not required.
5019 putc(0, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005020
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005021 // Compute the length of what follows.
5022 l = 2; // count <repcount> or <salcount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005023 for (i = 0; i < gap->ga_len; ++i)
5024 {
5025 ftp = &((fromto_T *)gap->ga_data)[i];
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005026 l += 1 + (int)STRLEN(ftp->ft_from); // count <*fromlen> and <*from>
5027 l += 1 + (int)STRLEN(ftp->ft_to); // count <*tolen> and <*to>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005028 }
5029 if (round == 2)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005030 ++l; // count <salflags>
5031 put_bytes(fd, (long_u)l, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005032
5033 if (round == 2)
5034 {
5035 i = 0;
5036 if (spin->si_followup)
5037 i |= SAL_F0LLOWUP;
5038 if (spin->si_collapse)
5039 i |= SAL_COLLAPSE;
5040 if (spin->si_rem_accents)
5041 i |= SAL_REM_ACCENTS;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005042 putc(i, fd); // <salflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005043 }
5044
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005045 put_bytes(fd, (long_u)gap->ga_len, 2); // <repcount> or <salcount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005046 for (i = 0; i < gap->ga_len; ++i)
5047 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005048 // <rep> : <repfromlen> <repfrom> <reptolen> <repto>
5049 // <sal> : <salfromlen> <salfrom> <saltolen> <salto>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005050 ftp = &((fromto_T *)gap->ga_data)[i];
5051 for (rr = 1; rr <= 2; ++rr)
5052 {
5053 p = rr == 1 ? ftp->ft_from : ftp->ft_to;
5054 l = (int)STRLEN(p);
5055 putc(l, fd);
5056 if (l > 0)
5057 fwv &= fwrite(p, l, (size_t)1, fd);
5058 }
5059 }
5060
5061 }
5062
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005063 // SN_SOFO: <sofofromlen> <sofofrom> <sofotolen> <sofoto>
5064 // This is for making suggestions, section is not required.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005065 if (spin->si_sofofr != NULL && spin->si_sofoto != NULL)
5066 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005067 putc(SN_SOFO, fd); // <sectionID>
5068 putc(0, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005069
5070 l = (int)STRLEN(spin->si_sofofr);
5071 put_bytes(fd, (long_u)(l + STRLEN(spin->si_sofoto) + 4), 4);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005072 // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005073
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005074 put_bytes(fd, (long_u)l, 2); // <sofofromlen>
5075 fwv &= fwrite(spin->si_sofofr, l, (size_t)1, fd); // <sofofrom>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005076
5077 l = (int)STRLEN(spin->si_sofoto);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005078 put_bytes(fd, (long_u)l, 2); // <sofotolen>
5079 fwv &= fwrite(spin->si_sofoto, l, (size_t)1, fd); // <sofoto>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005080 }
5081
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005082 // SN_WORDS: <word> ...
5083 // This is for making suggestions, section is not required.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005084 if (spin->si_commonwords.ht_used > 0)
5085 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005086 putc(SN_WORDS, fd); // <sectionID>
5087 putc(0, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005088
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005089 // round 1: count the bytes
5090 // round 2: write the bytes
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005091 for (round = 1; round <= 2; ++round)
5092 {
5093 int todo;
5094 int len = 0;
5095 hashitem_T *hi;
5096
5097 todo = (int)spin->si_commonwords.ht_used;
5098 for (hi = spin->si_commonwords.ht_array; todo > 0; ++hi)
5099 if (!HASHITEM_EMPTY(hi))
5100 {
5101 l = (int)STRLEN(hi->hi_key) + 1;
5102 len += l;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005103 if (round == 2) // <word>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005104 fwv &= fwrite(hi->hi_key, (size_t)l, (size_t)1, fd);
5105 --todo;
5106 }
5107 if (round == 1)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005108 put_bytes(fd, (long_u)len, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005109 }
5110 }
5111
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005112 // SN_MAP: <mapstr>
5113 // This is for making suggestions, section is not required.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005114 if (spin->si_map.ga_len > 0)
5115 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005116 putc(SN_MAP, fd); // <sectionID>
5117 putc(0, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005118 l = spin->si_map.ga_len;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005119 put_bytes(fd, (long_u)l, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005120 fwv &= fwrite(spin->si_map.ga_data, (size_t)l, (size_t)1, fd);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005121 // <mapstr>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005122 }
5123
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005124 // SN_SUGFILE: <timestamp>
5125 // This is used to notify that a .sug file may be available and at the
5126 // same time allows for checking that a .sug file that is found matches
5127 // with this .spl file. That's because the word numbers must be exactly
5128 // right.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005129 if (!spin->si_nosugfile
5130 && (spin->si_sal.ga_len > 0
5131 || (spin->si_sofofr != NULL && spin->si_sofoto != NULL)))
5132 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005133 putc(SN_SUGFILE, fd); // <sectionID>
5134 putc(0, fd); // <sectionflags>
5135 put_bytes(fd, (long_u)8, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005136
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005137 // Set si_sugtime and write it to the file.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005138 spin->si_sugtime = time(NULL);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005139 put_time(fd, spin->si_sugtime); // <timestamp>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005140 }
5141
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005142 // SN_NOSPLITSUGS: nothing
5143 // This is used to notify that no suggestions with word splits are to be
5144 // made.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005145 if (spin->si_nosplitsugs)
5146 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005147 putc(SN_NOSPLITSUGS, fd); // <sectionID>
5148 putc(0, fd); // <sectionflags>
5149 put_bytes(fd, (long_u)0, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005150 }
5151
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005152 // SN_NOCOMPUNDSUGS: nothing
5153 // This is used to notify that no suggestions with compounds are to be
5154 // made.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005155 if (spin->si_nocompoundsugs)
5156 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005157 putc(SN_NOCOMPOUNDSUGS, fd); // <sectionID>
5158 putc(0, fd); // <sectionflags>
5159 put_bytes(fd, (long_u)0, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005160 }
5161
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005162 // SN_COMPOUND: compound info.
5163 // We don't mark it required, when not supported all compound words will
5164 // be bad words.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005165 if (spin->si_compflags != NULL)
5166 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005167 putc(SN_COMPOUND, fd); // <sectionID>
5168 putc(0, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005169
5170 l = (int)STRLEN(spin->si_compflags);
5171 for (i = 0; i < spin->si_comppat.ga_len; ++i)
5172 l += (int)STRLEN(((char_u **)(spin->si_comppat.ga_data))[i]) + 1;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005173 put_bytes(fd, (long_u)(l + 7), 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005174
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005175 putc(spin->si_compmax, fd); // <compmax>
5176 putc(spin->si_compminlen, fd); // <compminlen>
5177 putc(spin->si_compsylmax, fd); // <compsylmax>
5178 putc(0, fd); // for Vim 7.0b compatibility
5179 putc(spin->si_compoptions, fd); // <compoptions>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005180 put_bytes(fd, (long_u)spin->si_comppat.ga_len, 2);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005181 // <comppatcount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005182 for (i = 0; i < spin->si_comppat.ga_len; ++i)
5183 {
5184 p = ((char_u **)(spin->si_comppat.ga_data))[i];
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005185 putc((int)STRLEN(p), fd); // <comppatlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005186 fwv &= fwrite(p, (size_t)STRLEN(p), (size_t)1, fd);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005187 // <comppattext>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005188 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005189 // <compflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005190 fwv &= fwrite(spin->si_compflags, (size_t)STRLEN(spin->si_compflags),
5191 (size_t)1, fd);
5192 }
5193
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005194 // SN_NOBREAK: NOBREAK flag
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005195 if (spin->si_nobreak)
5196 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005197 putc(SN_NOBREAK, fd); // <sectionID>
5198 putc(0, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005199
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005200 // It's empty, the presence of the section flags the feature.
5201 put_bytes(fd, (long_u)0, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005202 }
5203
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005204 // SN_SYLLABLE: syllable info.
5205 // We don't mark it required, when not supported syllables will not be
5206 // counted.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005207 if (spin->si_syllable != NULL)
5208 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005209 putc(SN_SYLLABLE, fd); // <sectionID>
5210 putc(0, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005211
5212 l = (int)STRLEN(spin->si_syllable);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005213 put_bytes(fd, (long_u)l, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005214 fwv &= fwrite(spin->si_syllable, (size_t)l, (size_t)1, fd);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005215 // <syllable>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005216 }
5217
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005218 // end of <SECTIONS>
5219 putc(SN_END, fd); // <sectionend>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005220
5221
5222 /*
5223 * <LWORDTREE> <KWORDTREE> <PREFIXTREE>
5224 */
5225 spin->si_memtot = 0;
5226 for (round = 1; round <= 3; ++round)
5227 {
5228 if (round == 1)
5229 tree = spin->si_foldroot->wn_sibling;
5230 else if (round == 2)
5231 tree = spin->si_keeproot->wn_sibling;
5232 else
5233 tree = spin->si_prefroot->wn_sibling;
5234
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005235 // Clear the index and wnode fields in the tree.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005236 clear_node(tree);
5237
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005238 // Count the number of nodes. Needed to be able to allocate the
5239 // memory when reading the nodes. Also fills in index for shared
5240 // nodes.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005241 nodecount = put_node(NULL, tree, 0, regionmask, round == 3);
5242
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005243 // number of nodes in 4 bytes
5244 put_bytes(fd, (long_u)nodecount, 4); // <nodecount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005245 spin->si_memtot += nodecount + nodecount * sizeof(int);
5246
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005247 // Write the nodes.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005248 (void)put_node(fd, tree, 0, regionmask, round == 3);
5249 }
5250
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005251 // Write another byte to check for errors (file system full).
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005252 if (putc(0, fd) == EOF)
5253 retval = FAIL;
5254theend:
5255 if (fclose(fd) == EOF)
5256 retval = FAIL;
5257
5258 if (fwv != (size_t)1)
5259 retval = FAIL;
5260 if (retval == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005261 emsg(_(e_write));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005262
5263 return retval;
5264}
5265
5266/*
5267 * Clear the index and wnode fields of "node", it siblings and its
5268 * children. This is needed because they are a union with other items to save
5269 * space.
5270 */
5271 static void
5272clear_node(wordnode_T *node)
5273{
5274 wordnode_T *np;
5275
5276 if (node != NULL)
Bram Moolenaaraeea7212020-04-02 18:50:46 +02005277 FOR_ALL_NODE_SIBLINGS(node, np)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005278 {
5279 np->wn_u1.index = 0;
5280 np->wn_u2.wnode = NULL;
5281
5282 if (np->wn_byte != NUL)
5283 clear_node(np->wn_child);
5284 }
5285}
5286
5287
5288/*
5289 * Dump a word tree at node "node".
5290 *
5291 * This first writes the list of possible bytes (siblings). Then for each
5292 * byte recursively write the children.
5293 *
5294 * NOTE: The code here must match the code in read_tree_node(), since
5295 * assumptions are made about the indexes (so that we don't have to write them
5296 * in the file).
5297 *
5298 * Returns the number of nodes used.
5299 */
5300 static int
5301put_node(
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005302 FILE *fd, // NULL when only counting
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005303 wordnode_T *node,
5304 int idx,
5305 int regionmask,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005306 int prefixtree) // TRUE for PREFIXTREE
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005307{
5308 int newindex = idx;
5309 int siblingcount = 0;
5310 wordnode_T *np;
5311 int flags;
5312
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005313 // If "node" is zero the tree is empty.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005314 if (node == NULL)
5315 return 0;
5316
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005317 // Store the index where this node is written.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005318 node->wn_u1.index = idx;
5319
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005320 // Count the number of siblings.
Bram Moolenaaraeea7212020-04-02 18:50:46 +02005321 FOR_ALL_NODE_SIBLINGS(node, np)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005322 ++siblingcount;
5323
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005324 // Write the sibling count.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005325 if (fd != NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005326 putc(siblingcount, fd); // <siblingcount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005327
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005328 // Write each sibling byte and optionally extra info.
Bram Moolenaaraeea7212020-04-02 18:50:46 +02005329 FOR_ALL_NODE_SIBLINGS(node, np)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005330 {
5331 if (np->wn_byte == 0)
5332 {
5333 if (fd != NULL)
5334 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005335 // For a NUL byte (end of word) write the flags etc.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005336 if (prefixtree)
5337 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005338 // In PREFIXTREE write the required affixID and the
5339 // associated condition nr (stored in wn_region). The
5340 // byte value is misused to store the "rare" and "not
5341 // combining" flags
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005342 if (np->wn_flags == (short_u)PFX_FLAGS)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005343 putc(BY_NOFLAGS, fd); // <byte>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005344 else
5345 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005346 putc(BY_FLAGS, fd); // <byte>
5347 putc(np->wn_flags, fd); // <pflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005348 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005349 putc(np->wn_affixID, fd); // <affixID>
5350 put_bytes(fd, (long_u)np->wn_region, 2); // <prefcondnr>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005351 }
5352 else
5353 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005354 // For word trees we write the flag/region items.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005355 flags = np->wn_flags;
5356 if (regionmask != 0 && np->wn_region != regionmask)
5357 flags |= WF_REGION;
5358 if (np->wn_affixID != 0)
5359 flags |= WF_AFX;
5360 if (flags == 0)
5361 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005362 // word without flags or region
5363 putc(BY_NOFLAGS, fd); // <byte>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005364 }
5365 else
5366 {
5367 if (np->wn_flags >= 0x100)
5368 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005369 putc(BY_FLAGS2, fd); // <byte>
5370 putc(flags, fd); // <flags>
5371 putc((unsigned)flags >> 8, fd); // <flags2>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005372 }
5373 else
5374 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005375 putc(BY_FLAGS, fd); // <byte>
5376 putc(flags, fd); // <flags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005377 }
5378 if (flags & WF_REGION)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005379 putc(np->wn_region, fd); // <region>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005380 if (flags & WF_AFX)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005381 putc(np->wn_affixID, fd); // <affixID>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005382 }
5383 }
5384 }
5385 }
5386 else
5387 {
5388 if (np->wn_child->wn_u1.index != 0
5389 && np->wn_child->wn_u2.wnode != node)
5390 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005391 // The child is written elsewhere, write the reference.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005392 if (fd != NULL)
5393 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005394 putc(BY_INDEX, fd); // <byte>
5395 // <nodeidx>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005396 put_bytes(fd, (long_u)np->wn_child->wn_u1.index, 3);
5397 }
5398 }
5399 else if (np->wn_child->wn_u2.wnode == NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005400 // We will write the child below and give it an index.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005401 np->wn_child->wn_u2.wnode = node;
5402
5403 if (fd != NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005404 if (putc(np->wn_byte, fd) == EOF) // <byte> or <xbyte>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005405 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005406 emsg(_(e_write));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005407 return 0;
5408 }
5409 }
5410 }
5411
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005412 // Space used in the array when reading: one for each sibling and one for
5413 // the count.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005414 newindex += siblingcount + 1;
5415
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005416 // Recursively dump the children of each sibling.
Bram Moolenaaraeea7212020-04-02 18:50:46 +02005417 FOR_ALL_NODE_SIBLINGS(node, np)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005418 if (np->wn_byte != 0 && np->wn_child->wn_u2.wnode == node)
5419 newindex = put_node(fd, np->wn_child, newindex, regionmask,
5420 prefixtree);
5421
5422 return newindex;
5423}
5424
5425
5426/*
5427 * ":mkspell [-ascii] outfile infile ..."
5428 * ":mkspell [-ascii] addfile"
5429 */
5430 void
5431ex_mkspell(exarg_T *eap)
5432{
5433 int fcount;
5434 char_u **fnames;
5435 char_u *arg = eap->arg;
5436 int ascii = FALSE;
5437
5438 if (STRNCMP(arg, "-ascii", 6) == 0)
5439 {
5440 ascii = TRUE;
5441 arg = skipwhite(arg + 6);
5442 }
5443
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005444 // Expand all the remaining arguments (e.g., $VIMRUNTIME).
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005445 if (get_arglist_exp(arg, &fcount, &fnames, FALSE) == OK)
5446 {
5447 mkspell(fcount, fnames, ascii, eap->forceit, FALSE);
5448 FreeWild(fcount, fnames);
5449 }
5450}
5451
5452/*
5453 * Create the .sug file.
5454 * Uses the soundfold info in "spin".
5455 * Writes the file with the name "wfname", with ".spl" changed to ".sug".
5456 */
5457 static void
5458spell_make_sugfile(spellinfo_T *spin, char_u *wfname)
5459{
5460 char_u *fname = NULL;
5461 int len;
5462 slang_T *slang;
5463 int free_slang = FALSE;
5464
5465 /*
5466 * Read back the .spl file that was written. This fills the required
5467 * info for soundfolding. This also uses less memory than the
5468 * pointer-linked version of the trie. And it avoids having two versions
5469 * of the code for the soundfolding stuff.
5470 * It might have been done already by spell_reload_one().
5471 */
Bram Moolenaaraeea7212020-04-02 18:50:46 +02005472 FOR_ALL_SPELL_LANGS(slang)
Bram Moolenaar99499b12019-05-23 21:35:48 +02005473 if (fullpathcmp(wfname, slang->sl_fname, FALSE, TRUE) == FPC_SAME)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005474 break;
5475 if (slang == NULL)
5476 {
5477 spell_message(spin, (char_u *)_("Reading back spell file..."));
5478 slang = spell_load_file(wfname, NULL, NULL, FALSE);
5479 if (slang == NULL)
5480 return;
5481 free_slang = TRUE;
5482 }
5483
5484 /*
5485 * Clear the info in "spin" that is used.
5486 */
5487 spin->si_blocks = NULL;
5488 spin->si_blocks_cnt = 0;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005489 spin->si_compress_cnt = 0; // will stay at 0 all the time
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005490 spin->si_free_count = 0;
5491 spin->si_first_free = NULL;
5492 spin->si_foldwcount = 0;
5493
5494 /*
5495 * Go through the trie of good words, soundfold each word and add it to
5496 * the soundfold trie.
5497 */
5498 spell_message(spin, (char_u *)_("Performing soundfolding..."));
5499 if (sug_filltree(spin, slang) == FAIL)
5500 goto theend;
5501
5502 /*
5503 * Create the table which links each soundfold word with a list of the
5504 * good words it may come from. Creates buffer "spin->si_spellbuf".
5505 * This also removes the wordnr from the NUL byte entries to make
5506 * compression possible.
5507 */
5508 if (sug_maketable(spin) == FAIL)
5509 goto theend;
5510
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005511 smsg(_("Number of words after soundfolding: %ld"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005512 (long)spin->si_spellbuf->b_ml.ml_line_count);
5513
5514 /*
5515 * Compress the soundfold trie.
5516 */
5517 spell_message(spin, (char_u *)_(msg_compressing));
Bram Moolenaar408c23b2020-06-03 22:15:45 +02005518 wordtree_compress(spin, spin->si_foldroot, "case-folded");
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005519
5520 /*
5521 * Write the .sug file.
5522 * Make the file name by changing ".spl" to ".sug".
5523 */
5524 fname = alloc(MAXPATHL);
5525 if (fname == NULL)
5526 goto theend;
5527 vim_strncpy(fname, wfname, MAXPATHL - 1);
5528 len = (int)STRLEN(fname);
5529 fname[len - 2] = 'u';
5530 fname[len - 1] = 'g';
5531 sug_write(spin, fname);
5532
5533theend:
5534 vim_free(fname);
5535 if (free_slang)
5536 slang_free(slang);
5537 free_blocks(spin->si_blocks);
5538 close_spellbuf(spin->si_spellbuf);
5539}
5540
5541/*
5542 * Build the soundfold trie for language "slang".
5543 */
5544 static int
5545sug_filltree(spellinfo_T *spin, slang_T *slang)
5546{
5547 char_u *byts;
5548 idx_T *idxs;
5549 int depth;
5550 idx_T arridx[MAXWLEN];
5551 int curi[MAXWLEN];
5552 char_u tword[MAXWLEN];
5553 char_u tsalword[MAXWLEN];
5554 int c;
5555 idx_T n;
5556 unsigned words_done = 0;
5557 int wordcount[MAXWLEN];
5558
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005559 // We use si_foldroot for the soundfolded trie.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005560 spin->si_foldroot = wordtree_alloc(spin);
5561 if (spin->si_foldroot == NULL)
5562 return FAIL;
5563
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005564 // let tree_add_word() know we're adding to the soundfolded tree
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005565 spin->si_sugtree = TRUE;
5566
5567 /*
5568 * Go through the whole case-folded tree, soundfold each word and put it
5569 * in the trie.
5570 */
5571 byts = slang->sl_fbyts;
5572 idxs = slang->sl_fidxs;
5573
5574 arridx[0] = 0;
5575 curi[0] = 1;
5576 wordcount[0] = 0;
5577
5578 depth = 0;
5579 while (depth >= 0 && !got_int)
5580 {
5581 if (curi[depth] > byts[arridx[depth]])
5582 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005583 // Done all bytes at this node, go up one level.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005584 idxs[arridx[depth]] = wordcount[depth];
5585 if (depth > 0)
5586 wordcount[depth - 1] += wordcount[depth];
5587
5588 --depth;
5589 line_breakcheck();
5590 }
5591 else
5592 {
5593
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005594 // Do one more byte at this node.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005595 n = arridx[depth] + curi[depth];
5596 ++curi[depth];
5597
5598 c = byts[n];
5599 if (c == 0)
5600 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005601 // Sound-fold the word.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005602 tword[depth] = NUL;
5603 spell_soundfold(slang, tword, TRUE, tsalword);
5604
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005605 // We use the "flags" field for the MSB of the wordnr,
5606 // "region" for the LSB of the wordnr.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005607 if (tree_add_word(spin, tsalword, spin->si_foldroot,
5608 words_done >> 16, words_done & 0xffff,
5609 0) == FAIL)
5610 return FAIL;
5611
5612 ++words_done;
5613 ++wordcount[depth];
5614
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005615 // Reset the block count each time to avoid compression
5616 // kicking in.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005617 spin->si_blocks_cnt = 0;
5618
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005619 // Skip over any other NUL bytes (same word with different
Bram Moolenaar07399e72020-08-24 20:05:50 +02005620 // flags). But don't go over the end.
5621 while (n + 1 < slang->sl_fbyts_len && byts[n + 1] == 0)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005622 {
5623 ++n;
5624 ++curi[depth];
5625 }
5626 }
5627 else
5628 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005629 // Normal char, go one level deeper.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005630 tword[depth++] = c;
5631 arridx[depth] = idxs[n];
5632 curi[depth] = 1;
5633 wordcount[depth] = 0;
5634 }
5635 }
5636 }
5637
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005638 smsg(_("Total number of words: %d"), words_done);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005639
5640 return OK;
5641}
5642
5643/*
5644 * Make the table that links each word in the soundfold trie to the words it
5645 * can be produced from.
5646 * This is not unlike lines in a file, thus use a memfile to be able to access
5647 * the table efficiently.
5648 * Returns FAIL when out of memory.
5649 */
5650 static int
5651sug_maketable(spellinfo_T *spin)
5652{
5653 garray_T ga;
5654 int res = OK;
5655
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005656 // Allocate a buffer, open a memline for it and create the swap file
5657 // (uses a temp file, not a .swp file).
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005658 spin->si_spellbuf = open_spellbuf();
5659 if (spin->si_spellbuf == NULL)
5660 return FAIL;
5661
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005662 // Use a buffer to store the line info, avoids allocating many small
5663 // pieces of memory.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005664 ga_init2(&ga, 1, 100);
5665
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005666 // recursively go through the tree
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005667 if (sug_filltable(spin, spin->si_foldroot->wn_sibling, 0, &ga) == -1)
5668 res = FAIL;
5669
5670 ga_clear(&ga);
5671 return res;
5672}
5673
5674/*
5675 * Fill the table for one node and its children.
5676 * Returns the wordnr at the start of the node.
5677 * Returns -1 when out of memory.
5678 */
5679 static int
5680sug_filltable(
5681 spellinfo_T *spin,
5682 wordnode_T *node,
5683 int startwordnr,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005684 garray_T *gap) // place to store line of numbers
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005685{
5686 wordnode_T *p, *np;
5687 int wordnr = startwordnr;
5688 int nr;
5689 int prev_nr;
5690
Bram Moolenaaraeea7212020-04-02 18:50:46 +02005691 FOR_ALL_NODE_SIBLINGS(node, p)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005692 {
5693 if (p->wn_byte == NUL)
5694 {
5695 gap->ga_len = 0;
5696 prev_nr = 0;
5697 for (np = p; np != NULL && np->wn_byte == NUL; np = np->wn_sibling)
5698 {
5699 if (ga_grow(gap, 10) == FAIL)
5700 return -1;
5701
5702 nr = (np->wn_flags << 16) + (np->wn_region & 0xffff);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005703 // Compute the offset from the previous nr and store the
5704 // offset in a way that it takes a minimum number of bytes.
5705 // It's a bit like utf-8, but without the need to mark
5706 // following bytes.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005707 nr -= prev_nr;
5708 prev_nr += nr;
5709 gap->ga_len += offset2bytes(nr,
5710 (char_u *)gap->ga_data + gap->ga_len);
5711 }
5712
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005713 // add the NUL byte
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005714 ((char_u *)gap->ga_data)[gap->ga_len++] = NUL;
5715
5716 if (ml_append_buf(spin->si_spellbuf, (linenr_T)wordnr,
5717 gap->ga_data, gap->ga_len, TRUE) == FAIL)
5718 return -1;
5719 ++wordnr;
5720
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005721 // Remove extra NUL entries, we no longer need them. We don't
5722 // bother freeing the nodes, the won't be reused anyway.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005723 while (p->wn_sibling != NULL && p->wn_sibling->wn_byte == NUL)
5724 p->wn_sibling = p->wn_sibling->wn_sibling;
5725
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005726 // Clear the flags on the remaining NUL node, so that compression
5727 // works a lot better.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005728 p->wn_flags = 0;
5729 p->wn_region = 0;
5730 }
5731 else
5732 {
5733 wordnr = sug_filltable(spin, p->wn_child, wordnr, gap);
5734 if (wordnr == -1)
5735 return -1;
5736 }
5737 }
5738 return wordnr;
5739}
5740
5741/*
5742 * Convert an offset into a minimal number of bytes.
5743 * Similar to utf_char2byters, but use 8 bits in followup bytes and avoid NUL
5744 * bytes.
5745 */
5746 static int
5747offset2bytes(int nr, char_u *buf)
5748{
5749 int rem;
5750 int b1, b2, b3, b4;
5751
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005752 // Split the number in parts of base 255. We need to avoid NUL bytes.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005753 b1 = nr % 255 + 1;
5754 rem = nr / 255;
5755 b2 = rem % 255 + 1;
5756 rem = rem / 255;
5757 b3 = rem % 255 + 1;
5758 b4 = rem / 255 + 1;
5759
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005760 if (b4 > 1 || b3 > 0x1f) // 4 bytes
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005761 {
5762 buf[0] = 0xe0 + b4;
5763 buf[1] = b3;
5764 buf[2] = b2;
5765 buf[3] = b1;
5766 return 4;
5767 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005768 if (b3 > 1 || b2 > 0x3f ) // 3 bytes
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005769 {
5770 buf[0] = 0xc0 + b3;
5771 buf[1] = b2;
5772 buf[2] = b1;
5773 return 3;
5774 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005775 if (b2 > 1 || b1 > 0x7f ) // 2 bytes
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005776 {
5777 buf[0] = 0x80 + b2;
5778 buf[1] = b1;
5779 return 2;
5780 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005781 // 1 byte
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005782 buf[0] = b1;
5783 return 1;
5784}
5785
5786/*
5787 * Write the .sug file in "fname".
5788 */
5789 static void
5790sug_write(spellinfo_T *spin, char_u *fname)
5791{
5792 FILE *fd;
5793 wordnode_T *tree;
5794 int nodecount;
5795 int wcount;
5796 char_u *line;
5797 linenr_T lnum;
5798 int len;
5799
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005800 // Create the file. Note that an existing file is silently overwritten!
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005801 fd = mch_fopen((char *)fname, "w");
5802 if (fd == NULL)
5803 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005804 semsg(_(e_notopen), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005805 return;
5806 }
5807
5808 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaarc1669272018-06-19 14:23:53 +02005809 _("Writing suggestion file %s..."), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005810 spell_message(spin, IObuff);
5811
5812 /*
5813 * <SUGHEADER>: <fileID> <versionnr> <timestamp>
5814 */
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005815 if (fwrite(VIMSUGMAGIC, VIMSUGMAGICL, (size_t)1, fd) != 1) // <fileID>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005816 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005817 emsg(_(e_write));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005818 goto theend;
5819 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005820 putc(VIMSUGVERSION, fd); // <versionnr>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005821
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005822 // Write si_sugtime to the file.
5823 put_time(fd, spin->si_sugtime); // <timestamp>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005824
5825 /*
5826 * <SUGWORDTREE>
5827 */
5828 spin->si_memtot = 0;
5829 tree = spin->si_foldroot->wn_sibling;
5830
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005831 // Clear the index and wnode fields in the tree.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005832 clear_node(tree);
5833
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005834 // Count the number of nodes. Needed to be able to allocate the
5835 // memory when reading the nodes. Also fills in index for shared
5836 // nodes.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005837 nodecount = put_node(NULL, tree, 0, 0, FALSE);
5838
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005839 // number of nodes in 4 bytes
5840 put_bytes(fd, (long_u)nodecount, 4); // <nodecount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005841 spin->si_memtot += nodecount + nodecount * sizeof(int);
5842
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005843 // Write the nodes.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005844 (void)put_node(fd, tree, 0, 0, FALSE);
5845
5846 /*
5847 * <SUGTABLE>: <sugwcount> <sugline> ...
5848 */
5849 wcount = spin->si_spellbuf->b_ml.ml_line_count;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005850 put_bytes(fd, (long_u)wcount, 4); // <sugwcount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005851
5852 for (lnum = 1; lnum <= (linenr_T)wcount; ++lnum)
5853 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005854 // <sugline>: <sugnr> ... NUL
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005855 line = ml_get_buf(spin->si_spellbuf, lnum, FALSE);
5856 len = (int)STRLEN(line) + 1;
5857 if (fwrite(line, (size_t)len, (size_t)1, fd) == 0)
5858 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005859 emsg(_(e_write));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005860 goto theend;
5861 }
5862 spin->si_memtot += len;
5863 }
5864
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005865 // Write another byte to check for errors.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005866 if (putc(0, fd) == EOF)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005867 emsg(_(e_write));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005868
5869 vim_snprintf((char *)IObuff, IOSIZE,
5870 _("Estimated runtime memory use: %d bytes"), spin->si_memtot);
5871 spell_message(spin, IObuff);
5872
5873theend:
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005874 // close the file
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005875 fclose(fd);
5876}
5877
5878
5879/*
5880 * Create a Vim spell file from one or more word lists.
5881 * "fnames[0]" is the output file name.
5882 * "fnames[fcount - 1]" is the last input file name.
5883 * Exception: when "fnames[0]" ends in ".add" it's used as the input file name
5884 * and ".spl" is appended to make the output file name.
5885 */
5886 void
5887mkspell(
5888 int fcount,
5889 char_u **fnames,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005890 int ascii, // -ascii argument given
5891 int over_write, // overwrite existing output file
5892 int added_word) // invoked through "zg"
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005893{
5894 char_u *fname = NULL;
5895 char_u *wfname;
5896 char_u **innames;
5897 int incount;
Bram Moolenaar2993ac52018-02-10 14:12:43 +01005898 afffile_T *(afile[MAXREGIONS]);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005899 int i;
5900 int len;
5901 stat_T st;
5902 int error = FALSE;
5903 spellinfo_T spin;
5904
Bram Moolenaara80faa82020-04-12 19:37:17 +02005905 CLEAR_FIELD(spin);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005906 spin.si_verbose = !added_word;
5907 spin.si_ascii = ascii;
5908 spin.si_followup = TRUE;
5909 spin.si_rem_accents = TRUE;
5910 ga_init2(&spin.si_rep, (int)sizeof(fromto_T), 20);
5911 ga_init2(&spin.si_repsal, (int)sizeof(fromto_T), 20);
5912 ga_init2(&spin.si_sal, (int)sizeof(fromto_T), 20);
5913 ga_init2(&spin.si_map, (int)sizeof(char_u), 100);
5914 ga_init2(&spin.si_comppat, (int)sizeof(char_u *), 20);
5915 ga_init2(&spin.si_prefcond, (int)sizeof(char_u *), 50);
5916 hash_init(&spin.si_commonwords);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005917 spin.si_newcompID = 127; // start compound ID at first maximum
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005918
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005919 // default: fnames[0] is output file, following are input files
Bram Moolenaar927b7dd2020-06-29 22:24:56 +02005920 // When "fcount" is 1 there is only one file.
5921 innames = &fnames[fcount == 1 ? 0 : 1];
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005922 incount = fcount - 1;
5923
5924 wfname = alloc(MAXPATHL);
5925 if (wfname == NULL)
5926 return;
5927
5928 if (fcount >= 1)
5929 {
5930 len = (int)STRLEN(fnames[0]);
5931 if (fcount == 1 && len > 4 && STRCMP(fnames[0] + len - 4, ".add") == 0)
5932 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005933 // For ":mkspell path/en.latin1.add" output file is
5934 // "path/en.latin1.add.spl".
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005935 incount = 1;
5936 vim_snprintf((char *)wfname, MAXPATHL, "%s.spl", fnames[0]);
5937 }
5938 else if (fcount == 1)
5939 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005940 // For ":mkspell path/vim" output file is "path/vim.latin1.spl".
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005941 incount = 1;
5942 vim_snprintf((char *)wfname, MAXPATHL, SPL_FNAME_TMPL,
5943 fnames[0], spin.si_ascii ? (char_u *)"ascii" : spell_enc());
5944 }
5945 else if (len > 4 && STRCMP(fnames[0] + len - 4, ".spl") == 0)
5946 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005947 // Name ends in ".spl", use as the file name.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005948 vim_strncpy(wfname, fnames[0], MAXPATHL - 1);
5949 }
5950 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005951 // Name should be language, make the file name from it.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005952 vim_snprintf((char *)wfname, MAXPATHL, SPL_FNAME_TMPL,
5953 fnames[0], spin.si_ascii ? (char_u *)"ascii" : spell_enc());
5954
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005955 // Check for .ascii.spl.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005956 if (strstr((char *)gettail(wfname), SPL_FNAME_ASCII) != NULL)
5957 spin.si_ascii = TRUE;
5958
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005959 // Check for .add.spl.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005960 if (strstr((char *)gettail(wfname), SPL_FNAME_ADD) != NULL)
5961 spin.si_add = TRUE;
5962 }
5963
5964 if (incount <= 0)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005965 emsg(_(e_invarg)); // need at least output and input names
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005966 else if (vim_strchr(gettail(wfname), '_') != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005967 emsg(_("E751: Output file name must not have region name"));
Bram Moolenaar2993ac52018-02-10 14:12:43 +01005968 else if (incount > MAXREGIONS)
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01005969 semsg(_("E754: Only up to %d regions supported"), MAXREGIONS);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005970 else
5971 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005972 // Check for overwriting before doing things that may take a lot of
5973 // time.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005974 if (!over_write && mch_stat((char *)wfname, &st) >= 0)
5975 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005976 emsg(_(e_exists));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005977 goto theend;
5978 }
5979 if (mch_isdir(wfname))
5980 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005981 semsg(_(e_isadir2), wfname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005982 goto theend;
5983 }
5984
5985 fname = alloc(MAXPATHL);
5986 if (fname == NULL)
5987 goto theend;
5988
5989 /*
5990 * Init the aff and dic pointers.
5991 * Get the region names if there are more than 2 arguments.
5992 */
5993 for (i = 0; i < incount; ++i)
5994 {
5995 afile[i] = NULL;
5996
5997 if (incount > 1)
5998 {
5999 len = (int)STRLEN(innames[i]);
6000 if (STRLEN(gettail(innames[i])) < 5
6001 || innames[i][len - 3] != '_')
6002 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006003 semsg(_("E755: Invalid region in %s"), innames[i]);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006004 goto theend;
6005 }
6006 spin.si_region_name[i * 2] = TOLOWER_ASC(innames[i][len - 2]);
6007 spin.si_region_name[i * 2 + 1] =
6008 TOLOWER_ASC(innames[i][len - 1]);
6009 }
6010 }
6011 spin.si_region_count = incount;
6012
6013 spin.si_foldroot = wordtree_alloc(&spin);
6014 spin.si_keeproot = wordtree_alloc(&spin);
6015 spin.si_prefroot = wordtree_alloc(&spin);
6016 if (spin.si_foldroot == NULL
6017 || spin.si_keeproot == NULL
6018 || spin.si_prefroot == NULL)
6019 {
6020 free_blocks(spin.si_blocks);
6021 goto theend;
6022 }
6023
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006024 // When not producing a .add.spl file clear the character table when
6025 // we encounter one in the .aff file. This means we dump the current
6026 // one in the .spl file if the .aff file doesn't define one. That's
6027 // better than guessing the contents, the table will match a
6028 // previously loaded spell file.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006029 if (!spin.si_add)
6030 spin.si_clear_chartab = TRUE;
6031
6032 /*
6033 * Read all the .aff and .dic files.
6034 * Text is converted to 'encoding'.
6035 * Words are stored in the case-folded and keep-case trees.
6036 */
6037 for (i = 0; i < incount && !error; ++i)
6038 {
6039 spin.si_conv.vc_type = CONV_NONE;
6040 spin.si_region = 1 << i;
6041
6042 vim_snprintf((char *)fname, MAXPATHL, "%s.aff", innames[i]);
6043 if (mch_stat((char *)fname, &st) >= 0)
6044 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006045 // Read the .aff file. Will init "spin->si_conv" based on the
6046 // "SET" line.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006047 afile[i] = spell_read_aff(&spin, fname);
6048 if (afile[i] == NULL)
6049 error = TRUE;
6050 else
6051 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006052 // Read the .dic file and store the words in the trees.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006053 vim_snprintf((char *)fname, MAXPATHL, "%s.dic",
6054 innames[i]);
6055 if (spell_read_dic(&spin, fname, afile[i]) == FAIL)
6056 error = TRUE;
6057 }
6058 }
6059 else
6060 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006061 // No .aff file, try reading the file as a word list. Store
6062 // the words in the trees.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006063 if (spell_read_wordfile(&spin, innames[i]) == FAIL)
6064 error = TRUE;
6065 }
6066
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006067 // Free any conversion stuff.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006068 convert_setup(&spin.si_conv, NULL, NULL);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006069 }
6070
6071 if (spin.si_compflags != NULL && spin.si_nobreak)
Bram Moolenaar32526b32019-01-19 17:43:09 +01006072 msg(_("Warning: both compounding and NOBREAK specified"));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006073
6074 if (!error && !got_int)
6075 {
6076 /*
6077 * Combine tails in the tree.
6078 */
6079 spell_message(&spin, (char_u *)_(msg_compressing));
Bram Moolenaar408c23b2020-06-03 22:15:45 +02006080 wordtree_compress(&spin, spin.si_foldroot, "case-folded");
6081 wordtree_compress(&spin, spin.si_keeproot, "keep-case");
6082 wordtree_compress(&spin, spin.si_prefroot, "prefixes");
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006083 }
6084
6085 if (!error && !got_int)
6086 {
6087 /*
6088 * Write the info in the spell file.
6089 */
6090 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaarc1669272018-06-19 14:23:53 +02006091 _("Writing spell file %s..."), wfname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006092 spell_message(&spin, IObuff);
6093
6094 error = write_vim_spell(&spin, wfname) == FAIL;
6095
6096 spell_message(&spin, (char_u *)_("Done!"));
6097 vim_snprintf((char *)IObuff, IOSIZE,
6098 _("Estimated runtime memory use: %d bytes"), spin.si_memtot);
6099 spell_message(&spin, IObuff);
6100
6101 /*
6102 * If the file is loaded need to reload it.
6103 */
6104 if (!error)
6105 spell_reload_one(wfname, added_word);
6106 }
6107
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006108 // Free the allocated memory.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006109 ga_clear(&spin.si_rep);
6110 ga_clear(&spin.si_repsal);
6111 ga_clear(&spin.si_sal);
6112 ga_clear(&spin.si_map);
6113 ga_clear(&spin.si_comppat);
6114 ga_clear(&spin.si_prefcond);
6115 hash_clear_all(&spin.si_commonwords, 0);
6116
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006117 // Free the .aff file structures.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006118 for (i = 0; i < incount; ++i)
6119 if (afile[i] != NULL)
6120 spell_free_aff(afile[i]);
6121
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006122 // Free all the bits and pieces at once.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006123 free_blocks(spin.si_blocks);
6124
6125 /*
6126 * If there is soundfolding info and no NOSUGFILE item create the
6127 * .sug file with the soundfolded word trie.
6128 */
6129 if (spin.si_sugtime != 0 && !error && !got_int)
6130 spell_make_sugfile(&spin, wfname);
6131
6132 }
6133
6134theend:
6135 vim_free(fname);
6136 vim_free(wfname);
6137}
6138
6139/*
6140 * Display a message for spell file processing when 'verbose' is set or using
6141 * ":mkspell". "str" can be IObuff.
6142 */
6143 static void
6144spell_message(spellinfo_T *spin, char_u *str)
6145{
6146 if (spin->si_verbose || p_verbose > 2)
6147 {
6148 if (!spin->si_verbose)
6149 verbose_enter();
Bram Moolenaar32526b32019-01-19 17:43:09 +01006150 msg((char *)str);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006151 out_flush();
6152 if (!spin->si_verbose)
6153 verbose_leave();
6154 }
6155}
6156
6157/*
6158 * ":[count]spellgood {word}"
Bram Moolenaar08cc3742019-08-11 22:51:14 +02006159 * ":[count]spellwrong {word}"
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006160 * ":[count]spellundo {word}"
Bram Moolenaar08cc3742019-08-11 22:51:14 +02006161 * ":[count]spellrare {word}"
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006162 */
6163 void
6164ex_spell(exarg_T *eap)
6165{
Bram Moolenaar08cc3742019-08-11 22:51:14 +02006166 spell_add_word(eap->arg, (int)STRLEN(eap->arg),
6167 eap->cmdidx == CMD_spellwrong ? SPELL_ADD_BAD :
6168 eap->cmdidx == CMD_spellrare ? SPELL_ADD_RARE : SPELL_ADD_GOOD,
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006169 eap->forceit ? 0 : (int)eap->line2,
6170 eap->cmdidx == CMD_spellundo);
6171}
6172
6173/*
Bram Moolenaar08cc3742019-08-11 22:51:14 +02006174 * Add "word[len]" to 'spellfile' as a good, rare or bad word.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006175 */
6176 void
6177spell_add_word(
6178 char_u *word,
6179 int len,
Bram Moolenaar08cc3742019-08-11 22:51:14 +02006180 int what, // SPELL_ADD_ values
6181 int idx, // "zG" and "zW": zero, otherwise index in
6182 // 'spellfile'
6183 int undo) // TRUE for "zug", "zuG", "zuw" and "zuW"
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006184{
6185 FILE *fd = NULL;
6186 buf_T *buf = NULL;
6187 int new_spf = FALSE;
6188 char_u *fname;
6189 char_u *fnamebuf = NULL;
6190 char_u line[MAXWLEN * 2];
6191 long fpos, fpos_next = 0;
6192 int i;
6193 char_u *spf;
6194
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006195 if (idx == 0) // use internal wordlist
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006196 {
6197 if (int_wordlist == NULL)
6198 {
6199 int_wordlist = vim_tempname('s', FALSE);
6200 if (int_wordlist == NULL)
6201 return;
6202 }
6203 fname = int_wordlist;
6204 }
6205 else
6206 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006207 // If 'spellfile' isn't set figure out a good default value.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006208 if (*curwin->w_s->b_p_spf == NUL)
6209 {
6210 init_spellfile();
6211 new_spf = TRUE;
6212 }
6213
6214 if (*curwin->w_s->b_p_spf == NUL)
6215 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006216 semsg(_(e_notset), "spellfile");
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006217 return;
6218 }
6219 fnamebuf = alloc(MAXPATHL);
6220 if (fnamebuf == NULL)
6221 return;
6222
6223 for (spf = curwin->w_s->b_p_spf, i = 1; *spf != NUL; ++i)
6224 {
6225 copy_option_part(&spf, fnamebuf, MAXPATHL, ",");
6226 if (i == idx)
6227 break;
6228 if (*spf == NUL)
6229 {
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01006230 semsg(_("E765: 'spellfile' does not have %d entries"), idx);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006231 vim_free(fnamebuf);
6232 return;
6233 }
6234 }
6235
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006236 // Check that the user isn't editing the .add file somewhere.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006237 buf = buflist_findname_exp(fnamebuf);
6238 if (buf != NULL && buf->b_ml.ml_mfp == NULL)
6239 buf = NULL;
6240 if (buf != NULL && bufIsChanged(buf))
6241 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006242 emsg(_(e_bufloaded));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006243 vim_free(fnamebuf);
6244 return;
6245 }
6246
6247 fname = fnamebuf;
6248 }
6249
Bram Moolenaar08cc3742019-08-11 22:51:14 +02006250 if (what == SPELL_ADD_BAD || undo)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006251 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006252 // When the word appears as good word we need to remove that one,
6253 // since its flags sort before the one with WF_BANNED.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006254 fd = mch_fopen((char *)fname, "r");
6255 if (fd != NULL)
6256 {
6257 while (!vim_fgets(line, MAXWLEN * 2, fd))
6258 {
6259 fpos = fpos_next;
6260 fpos_next = ftell(fd);
6261 if (STRNCMP(word, line, len) == 0
6262 && (line[len] == '/' || line[len] < ' '))
6263 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006264 // Found duplicate word. Remove it by writing a '#' at
6265 // the start of the line. Mixing reading and writing
6266 // doesn't work for all systems, close the file first.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006267 fclose(fd);
6268 fd = mch_fopen((char *)fname, "r+");
6269 if (fd == NULL)
6270 break;
6271 if (fseek(fd, fpos, SEEK_SET) == 0)
6272 {
6273 fputc('#', fd);
6274 if (undo)
6275 {
6276 home_replace(NULL, fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006277 smsg(_("Word '%.*s' removed from %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006278 len, word, NameBuff);
6279 }
6280 }
6281 fseek(fd, fpos_next, SEEK_SET);
6282 }
6283 }
6284 if (fd != NULL)
6285 fclose(fd);
6286 }
6287 }
6288
6289 if (!undo)
6290 {
6291 fd = mch_fopen((char *)fname, "a");
6292 if (fd == NULL && new_spf)
6293 {
6294 char_u *p;
6295
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006296 // We just initialized the 'spellfile' option and can't open the
6297 // file. We may need to create the "spell" directory first. We
6298 // already checked the runtime directory is writable in
6299 // init_spellfile().
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006300 if (!dir_of_file_exists(fname) && (p = gettail_sep(fname)) != fname)
6301 {
6302 int c = *p;
6303
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006304 // The directory doesn't exist. Try creating it and opening
6305 // the file again.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006306 *p = NUL;
6307 vim_mkdir(fname, 0755);
6308 *p = c;
6309 fd = mch_fopen((char *)fname, "a");
6310 }
6311 }
6312
6313 if (fd == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006314 semsg(_(e_notopen), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006315 else
6316 {
Bram Moolenaar08cc3742019-08-11 22:51:14 +02006317 if (what == SPELL_ADD_BAD)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006318 fprintf(fd, "%.*s/!\n", len, word);
Bram Moolenaar08cc3742019-08-11 22:51:14 +02006319 else if (what == SPELL_ADD_RARE)
6320 fprintf(fd, "%.*s/?\n", len, word);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006321 else
6322 fprintf(fd, "%.*s\n", len, word);
6323 fclose(fd);
6324
6325 home_replace(NULL, fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006326 smsg(_("Word '%.*s' added to %s"), len, word, NameBuff);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006327 }
6328 }
6329
6330 if (fd != NULL)
6331 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006332 // Update the .add.spl file.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006333 mkspell(1, &fname, FALSE, TRUE, TRUE);
6334
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006335 // If the .add file is edited somewhere, reload it.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006336 if (buf != NULL)
6337 buf_reload(buf, buf->b_orig_mode);
6338
6339 redraw_all_later(SOME_VALID);
6340 }
6341 vim_free(fnamebuf);
6342}
6343
6344/*
6345 * Initialize 'spellfile' for the current buffer.
6346 */
6347 static void
6348init_spellfile(void)
6349{
6350 char_u *buf;
6351 int l;
6352 char_u *fname;
6353 char_u *rtp;
6354 char_u *lend;
6355 int aspath = FALSE;
6356 char_u *lstart = curbuf->b_s.b_p_spl;
6357
6358 if (*curwin->w_s->b_p_spl != NUL && curwin->w_s->b_langp.ga_len > 0)
6359 {
6360 buf = alloc(MAXPATHL);
6361 if (buf == NULL)
6362 return;
6363
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006364 // Find the end of the language name. Exclude the region. If there
6365 // is a path separator remember the start of the tail.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006366 for (lend = curwin->w_s->b_p_spl; *lend != NUL
6367 && vim_strchr((char_u *)",._", *lend) == NULL; ++lend)
6368 if (vim_ispathsep(*lend))
6369 {
6370 aspath = TRUE;
6371 lstart = lend + 1;
6372 }
6373
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006374 // Loop over all entries in 'runtimepath'. Use the first one where we
6375 // are allowed to write.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006376 rtp = p_rtp;
6377 while (*rtp != NUL)
6378 {
6379 if (aspath)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006380 // Use directory of an entry with path, e.g., for
6381 // "/dir/lg.utf-8.spl" use "/dir".
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006382 vim_strncpy(buf, curbuf->b_s.b_p_spl,
6383 lstart - curbuf->b_s.b_p_spl - 1);
6384 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006385 // Copy the path from 'runtimepath' to buf[].
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006386 copy_option_part(&rtp, buf, MAXPATHL, ",");
6387 if (filewritable(buf) == 2)
6388 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006389 // Use the first language name from 'spelllang' and the
6390 // encoding used in the first loaded .spl file.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006391 if (aspath)
6392 vim_strncpy(buf, curbuf->b_s.b_p_spl,
6393 lend - curbuf->b_s.b_p_spl);
6394 else
6395 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006396 // Create the "spell" directory if it doesn't exist yet.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006397 l = (int)STRLEN(buf);
6398 vim_snprintf((char *)buf + l, MAXPATHL - l, "/spell");
6399 if (filewritable(buf) != 2)
6400 vim_mkdir(buf, 0755);
6401
6402 l = (int)STRLEN(buf);
6403 vim_snprintf((char *)buf + l, MAXPATHL - l,
6404 "/%.*s", (int)(lend - lstart), lstart);
6405 }
6406 l = (int)STRLEN(buf);
6407 fname = LANGP_ENTRY(curwin->w_s->b_langp, 0)
6408 ->lp_slang->sl_fname;
6409 vim_snprintf((char *)buf + l, MAXPATHL - l, ".%s.add",
6410 fname != NULL
6411 && strstr((char *)gettail(fname), ".ascii.") != NULL
6412 ? (char_u *)"ascii" : spell_enc());
6413 set_option_value((char_u *)"spellfile", 0L, buf, OPT_LOCAL);
6414 break;
6415 }
6416 aspath = FALSE;
6417 }
6418
6419 vim_free(buf);
6420 }
6421}
6422
6423
6424
6425/*
6426 * Set the spell character tables from strings in the affix file.
6427 */
6428 static int
6429set_spell_chartab(char_u *fol, char_u *low, char_u *upp)
6430{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006431 // We build the new tables here first, so that we can compare with the
6432 // previous one.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006433 spelltab_T new_st;
6434 char_u *pf = fol, *pl = low, *pu = upp;
6435 int f, l, u;
6436
6437 clear_spell_chartab(&new_st);
6438
6439 while (*pf != NUL)
6440 {
6441 if (*pl == NUL || *pu == NUL)
6442 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006443 emsg(_(e_affform));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006444 return FAIL;
6445 }
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006446 f = mb_ptr2char_adv(&pf);
6447 l = mb_ptr2char_adv(&pl);
6448 u = mb_ptr2char_adv(&pu);
Bram Moolenaar264b74f2019-01-24 17:18:42 +01006449
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006450 // Every character that appears is a word character.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006451 if (f < 256)
6452 new_st.st_isw[f] = TRUE;
6453 if (l < 256)
6454 new_st.st_isw[l] = TRUE;
6455 if (u < 256)
6456 new_st.st_isw[u] = TRUE;
6457
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006458 // if "LOW" and "FOL" are not the same the "LOW" char needs
6459 // case-folding
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006460 if (l < 256 && l != f)
6461 {
6462 if (f >= 256)
6463 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006464 emsg(_(e_affrange));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006465 return FAIL;
6466 }
6467 new_st.st_fold[l] = f;
6468 }
6469
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006470 // if "UPP" and "FOL" are not the same the "UPP" char needs
6471 // case-folding, it's upper case and the "UPP" is the upper case of
6472 // "FOL" .
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006473 if (u < 256 && u != f)
6474 {
6475 if (f >= 256)
6476 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006477 emsg(_(e_affrange));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006478 return FAIL;
6479 }
6480 new_st.st_fold[u] = f;
6481 new_st.st_isu[u] = TRUE;
6482 new_st.st_upper[f] = u;
6483 }
6484 }
6485
6486 if (*pl != NUL || *pu != NUL)
6487 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006488 emsg(_(e_affform));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006489 return FAIL;
6490 }
6491
6492 return set_spell_finish(&new_st);
6493}
6494
6495/*
6496 * Set the spell character tables from strings in the .spl file.
6497 */
6498 static void
6499set_spell_charflags(
6500 char_u *flags,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006501 int cnt, // length of "flags"
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006502 char_u *fol)
6503{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006504 // We build the new tables here first, so that we can compare with the
6505 // previous one.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006506 spelltab_T new_st;
6507 int i;
6508 char_u *p = fol;
6509 int c;
6510
6511 clear_spell_chartab(&new_st);
6512
6513 for (i = 0; i < 128; ++i)
6514 {
6515 if (i < cnt)
6516 {
6517 new_st.st_isw[i + 128] = (flags[i] & CF_WORD) != 0;
6518 new_st.st_isu[i + 128] = (flags[i] & CF_UPPER) != 0;
6519 }
6520
6521 if (*p != NUL)
6522 {
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006523 c = mb_ptr2char_adv(&p);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006524 new_st.st_fold[i + 128] = c;
6525 if (i + 128 != c && new_st.st_isu[i + 128] && c < 256)
6526 new_st.st_upper[c] = i + 128;
6527 }
6528 }
6529
6530 (void)set_spell_finish(&new_st);
6531}
6532
6533 static int
6534set_spell_finish(spelltab_T *new_st)
6535{
6536 int i;
6537
6538 if (did_set_spelltab)
6539 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006540 // check that it's the same table
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006541 for (i = 0; i < 256; ++i)
6542 {
6543 if (spelltab.st_isw[i] != new_st->st_isw[i]
6544 || spelltab.st_isu[i] != new_st->st_isu[i]
6545 || spelltab.st_fold[i] != new_st->st_fold[i]
6546 || spelltab.st_upper[i] != new_st->st_upper[i])
6547 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006548 emsg(_("E763: Word characters differ between spell files"));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006549 return FAIL;
6550 }
6551 }
6552 }
6553 else
6554 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006555 // copy the new spelltab into the one being used
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006556 spelltab = *new_st;
6557 did_set_spelltab = TRUE;
6558 }
6559
6560 return OK;
6561}
6562
6563/*
6564 * Write the table with prefix conditions to the .spl file.
6565 * When "fd" is NULL only count the length of what is written.
6566 */
6567 static int
6568write_spell_prefcond(FILE *fd, garray_T *gap)
6569{
6570 int i;
6571 char_u *p;
6572 int len;
6573 int totlen;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006574 size_t x = 1; // collect return value of fwrite()
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006575
6576 if (fd != NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006577 put_bytes(fd, (long_u)gap->ga_len, 2); // <prefcondcnt>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006578
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006579 totlen = 2 + gap->ga_len; // length of <prefcondcnt> and <condlen> bytes
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006580
6581 for (i = 0; i < gap->ga_len; ++i)
6582 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006583 // <prefcond> : <condlen> <condstr>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006584 p = ((char_u **)gap->ga_data)[i];
6585 if (p != NULL)
6586 {
6587 len = (int)STRLEN(p);
6588 if (fd != NULL)
6589 {
6590 fputc(len, fd);
6591 x &= fwrite(p, (size_t)len, (size_t)1, fd);
6592 }
6593 totlen += len;
6594 }
6595 else if (fd != NULL)
6596 fputc(0, fd);
6597 }
6598
6599 return totlen;
6600}
6601
6602
6603/*
6604 * Use map string "map" for languages "lp".
6605 */
6606 static void
6607set_map_str(slang_T *lp, char_u *map)
6608{
6609 char_u *p;
6610 int headc = 0;
6611 int c;
6612 int i;
6613
6614 if (*map == NUL)
6615 {
6616 lp->sl_has_map = FALSE;
6617 return;
6618 }
6619 lp->sl_has_map = TRUE;
6620
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006621 // Init the array and hash tables empty.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006622 for (i = 0; i < 256; ++i)
6623 lp->sl_map_array[i] = 0;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006624 hash_init(&lp->sl_map_hash);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006625
6626 /*
6627 * The similar characters are stored separated with slashes:
6628 * "aaa/bbb/ccc/". Fill sl_map_array[c] with the character before c and
6629 * before the same slash. For characters above 255 sl_map_hash is used.
6630 */
6631 for (p = map; *p != NUL; )
6632 {
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006633 c = mb_cptr2char_adv(&p);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006634 if (c == '/')
6635 headc = 0;
6636 else
6637 {
6638 if (headc == 0)
6639 headc = c;
6640
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006641 // Characters above 255 don't fit in sl_map_array[], put them in
6642 // the hash table. Each entry is the char, a NUL the headchar and
6643 // a NUL.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006644 if (c >= 256)
6645 {
6646 int cl = mb_char2len(c);
6647 int headcl = mb_char2len(headc);
6648 char_u *b;
6649 hash_T hash;
6650 hashitem_T *hi;
6651
Bram Moolenaar964b3742019-05-24 18:54:09 +02006652 b = alloc(cl + headcl + 2);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006653 if (b == NULL)
6654 return;
6655 mb_char2bytes(c, b);
6656 b[cl] = NUL;
6657 mb_char2bytes(headc, b + cl + 1);
6658 b[cl + 1 + headcl] = NUL;
6659 hash = hash_hash(b);
6660 hi = hash_lookup(&lp->sl_map_hash, b, hash);
6661 if (HASHITEM_EMPTY(hi))
6662 hash_add_item(&lp->sl_map_hash, hi, b, hash);
6663 else
6664 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006665 // This should have been checked when generating the .spl
6666 // file.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006667 emsg(_("E783: duplicate char in MAP entry"));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006668 vim_free(b);
6669 }
6670 }
6671 else
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006672 lp->sl_map_array[c] = headc;
6673 }
6674 }
6675}
6676
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006677#endif // FEAT_SPELL