blob: 973aed564bdaa2df0513f61b32f4d3256148dc97 [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 Moolenaar9ccfebd2016-07-19 16:39:08 +0200318static int spell_read_tree(FILE *fd, char_u **bytsp, idx_T **idxsp, int prefixtree, int prefixcnt);
319static 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;
522 if (init_syl_tab(lp) == FAIL)
523 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 Moolenaar9ccfebd2016-07-19 16:39:08 +0200556 res = spell_read_tree(fd, &lp->sl_fbyts, &lp->sl_fidxs, FALSE, 0);
557 if (res != 0)
558 goto someerror;
559
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100560 // <KWORDTREE>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200561 res = spell_read_tree(fd, &lp->sl_kbyts, &lp->sl_kidxs, FALSE, 0);
562 if (res != 0)
563 goto someerror;
564
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100565 // <PREFIXTREE>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200566 res = spell_read_tree(fd, &lp->sl_pbyts, &lp->sl_pidxs, TRUE,
567 lp->sl_prefixcnt);
568 if (res != 0)
569 goto someerror;
570
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100571 // For a new file link it in the list of spell files.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200572 if (old_lp == NULL && lang != NULL)
573 {
574 lp->sl_next = first_lang;
575 first_lang = lp;
576 }
577
578 goto endOK;
579
580endFAIL:
581 if (lang != NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100582 // truncating the name signals the error to spell_load_lang()
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200583 *lang = NUL;
584 if (lp != NULL && old_lp == NULL)
585 slang_free(lp);
586 lp = NULL;
587
588endOK:
589 if (fd != NULL)
590 fclose(fd);
Bram Moolenaarce6db022020-01-07 20:11:42 +0100591 if (did_estack_push)
Bram Moolenaare31ee862020-01-07 20:59:34 +0100592 {
593 ESTACK_CHECK_NOW
Bram Moolenaarce6db022020-01-07 20:11:42 +0100594 estack_pop();
Bram Moolenaare31ee862020-01-07 20:59:34 +0100595 }
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200596
597 return lp;
598}
599
600/*
601 * Fill in the wordcount fields for a trie.
602 * Returns the total number of words.
603 */
604 static void
605tree_count_words(char_u *byts, idx_T *idxs)
606{
607 int depth;
608 idx_T arridx[MAXWLEN];
609 int curi[MAXWLEN];
610 int c;
611 idx_T n;
612 int wordcount[MAXWLEN];
613
614 arridx[0] = 0;
615 curi[0] = 1;
616 wordcount[0] = 0;
617 depth = 0;
618 while (depth >= 0 && !got_int)
619 {
620 if (curi[depth] > byts[arridx[depth]])
621 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100622 // Done all bytes at this node, go up one level.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200623 idxs[arridx[depth]] = wordcount[depth];
624 if (depth > 0)
625 wordcount[depth - 1] += wordcount[depth];
626
627 --depth;
628 fast_breakcheck();
629 }
630 else
631 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100632 // Do one more byte at this node.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200633 n = arridx[depth] + curi[depth];
634 ++curi[depth];
635
636 c = byts[n];
637 if (c == 0)
638 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100639 // End of word, count it.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200640 ++wordcount[depth];
641
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100642 // Skip over any other NUL bytes (same word with different
643 // flags).
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200644 while (byts[n + 1] == 0)
645 {
646 ++n;
647 ++curi[depth];
648 }
649 }
650 else
651 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100652 // Normal char, go one level deeper to count the words.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200653 ++depth;
654 arridx[depth] = idxs[n];
655 curi[depth] = 1;
656 wordcount[depth] = 0;
657 }
658 }
659 }
660}
661
662/*
663 * Load the .sug files for languages that have one and weren't loaded yet.
664 */
665 void
666suggest_load_files(void)
667{
668 langp_T *lp;
669 int lpi;
670 slang_T *slang;
671 char_u *dotp;
672 FILE *fd;
673 char_u buf[MAXWLEN];
674 int i;
675 time_t timestamp;
676 int wcount;
677 int wordnr;
678 garray_T ga;
679 int c;
680
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100681 // Do this for all languages that support sound folding.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200682 for (lpi = 0; lpi < curwin->w_s->b_langp.ga_len; ++lpi)
683 {
684 lp = LANGP_ENTRY(curwin->w_s->b_langp, lpi);
685 slang = lp->lp_slang;
686 if (slang->sl_sugtime != 0 && !slang->sl_sugloaded)
687 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100688 // Change ".spl" to ".sug" and open the file. When the file isn't
689 // found silently skip it. Do set "sl_sugloaded" so that we
690 // don't try again and again.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200691 slang->sl_sugloaded = TRUE;
692
693 dotp = vim_strrchr(slang->sl_fname, '.');
694 if (dotp == NULL || fnamecmp(dotp, ".spl") != 0)
695 continue;
696 STRCPY(dotp, ".sug");
697 fd = mch_fopen((char *)slang->sl_fname, "r");
698 if (fd == NULL)
699 goto nextone;
700
701 /*
702 * <SUGHEADER>: <fileID> <versionnr> <timestamp>
703 */
704 for (i = 0; i < VIMSUGMAGICL; ++i)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100705 buf[i] = getc(fd); // <fileID>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200706 if (STRNCMP(buf, VIMSUGMAGIC, VIMSUGMAGICL) != 0)
707 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100708 semsg(_("E778: This does not look like a .sug file: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200709 slang->sl_fname);
710 goto nextone;
711 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100712 c = getc(fd); // <versionnr>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200713 if (c < VIMSUGVERSION)
714 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100715 semsg(_("E779: Old .sug file, needs to be updated: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200716 slang->sl_fname);
717 goto nextone;
718 }
719 else if (c > VIMSUGVERSION)
720 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100721 semsg(_("E780: .sug file is for newer version of Vim: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200722 slang->sl_fname);
723 goto nextone;
724 }
725
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100726 // Check the timestamp, it must be exactly the same as the one in
727 // the .spl file. Otherwise the word numbers won't match.
728 timestamp = get8ctime(fd); // <timestamp>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200729 if (timestamp != slang->sl_sugtime)
730 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100731 semsg(_("E781: .sug file doesn't match .spl file: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200732 slang->sl_fname);
733 goto nextone;
734 }
735
736 /*
737 * <SUGWORDTREE>: <wordtree>
738 * Read the trie with the soundfolded words.
739 */
740 if (spell_read_tree(fd, &slang->sl_sbyts, &slang->sl_sidxs,
741 FALSE, 0) != 0)
742 {
743someerror:
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100744 semsg(_("E782: error while reading .sug file: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200745 slang->sl_fname);
746 slang_clear_sug(slang);
747 goto nextone;
748 }
749
750 /*
751 * <SUGTABLE>: <sugwcount> <sugline> ...
752 *
753 * Read the table with word numbers. We use a file buffer for
754 * this, because it's so much like a file with lines. Makes it
755 * possible to swap the info and save on memory use.
756 */
757 slang->sl_sugbuf = open_spellbuf();
758 if (slang->sl_sugbuf == NULL)
759 goto someerror;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100760 // <sugwcount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200761 wcount = get4c(fd);
762 if (wcount < 0)
763 goto someerror;
764
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100765 // Read all the wordnr lists into the buffer, one NUL terminated
766 // list per line.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200767 ga_init2(&ga, 1, 100);
768 for (wordnr = 0; wordnr < wcount; ++wordnr)
769 {
770 ga.ga_len = 0;
771 for (;;)
772 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100773 c = getc(fd); // <sugline>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200774 if (c < 0 || ga_grow(&ga, 1) == FAIL)
775 goto someerror;
776 ((char_u *)ga.ga_data)[ga.ga_len++] = c;
777 if (c == NUL)
778 break;
779 }
780 if (ml_append_buf(slang->sl_sugbuf, (linenr_T)wordnr,
781 ga.ga_data, ga.ga_len, TRUE) == FAIL)
782 goto someerror;
783 }
784 ga_clear(&ga);
785
786 /*
787 * Need to put word counts in the word tries, so that we can find
788 * a word by its number.
789 */
790 tree_count_words(slang->sl_fbyts, slang->sl_fidxs);
791 tree_count_words(slang->sl_sbyts, slang->sl_sidxs);
792
793nextone:
794 if (fd != NULL)
795 fclose(fd);
796 STRCPY(dotp, ".spl");
797 }
798 }
799}
800
801
802/*
803 * Read a length field from "fd" in "cnt_bytes" bytes.
804 * Allocate memory, read the string into it and add a NUL at the end.
805 * Returns NULL when the count is zero.
806 * Sets "*cntp" to SP_*ERROR when there is an error, length of the result
807 * otherwise.
808 */
809 static char_u *
810read_cnt_string(FILE *fd, int cnt_bytes, int *cntp)
811{
812 int cnt = 0;
813 int i;
814 char_u *str;
815
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100816 // read the length bytes, MSB first
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200817 for (i = 0; i < cnt_bytes; ++i)
818 cnt = (cnt << 8) + getc(fd);
819 if (cnt < 0)
820 {
821 *cntp = SP_TRUNCERROR;
822 return NULL;
823 }
824 *cntp = cnt;
825 if (cnt == 0)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100826 return NULL; // nothing to read, return NULL
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200827
828 str = read_string(fd, cnt);
829 if (str == NULL)
830 *cntp = SP_OTHERERROR;
831 return str;
832}
833
834/*
835 * Read SN_REGION: <regionname> ...
836 * Return SP_*ERROR flags.
837 */
838 static int
839read_region_section(FILE *fd, slang_T *lp, int len)
840{
841 int i;
842
Bram Moolenaar2993ac52018-02-10 14:12:43 +0100843 if (len > MAXREGIONS * 2)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200844 return SP_FORMERROR;
845 for (i = 0; i < len; ++i)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100846 lp->sl_regions[i] = getc(fd); // <regionname>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200847 lp->sl_regions[len] = NUL;
848 return 0;
849}
850
851/*
852 * Read SN_CHARFLAGS section: <charflagslen> <charflags>
853 * <folcharslen> <folchars>
854 * Return SP_*ERROR flags.
855 */
856 static int
857read_charflags_section(FILE *fd)
858{
859 char_u *flags;
860 char_u *fol;
861 int flagslen, follen;
862
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100863 // <charflagslen> <charflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200864 flags = read_cnt_string(fd, 1, &flagslen);
865 if (flagslen < 0)
866 return flagslen;
867
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100868 // <folcharslen> <folchars>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200869 fol = read_cnt_string(fd, 2, &follen);
870 if (follen < 0)
871 {
872 vim_free(flags);
873 return follen;
874 }
875
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100876 // Set the word-char flags and fill SPELL_ISUPPER() table.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200877 if (flags != NULL && fol != NULL)
878 set_spell_charflags(flags, flagslen, fol);
879
880 vim_free(flags);
881 vim_free(fol);
882
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100883 // When <charflagslen> is zero then <fcharlen> must also be zero.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200884 if ((flags == NULL) != (fol == NULL))
885 return SP_FORMERROR;
886 return 0;
887}
888
889/*
890 * Read SN_PREFCOND section.
891 * Return SP_*ERROR flags.
892 */
893 static int
894read_prefcond_section(FILE *fd, slang_T *lp)
895{
896 int cnt;
897 int i;
898 int n;
899 char_u *p;
900 char_u buf[MAXWLEN + 1];
901
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100902 // <prefcondcnt> <prefcond> ...
903 cnt = get2c(fd); // <prefcondcnt>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200904 if (cnt <= 0)
905 return SP_FORMERROR;
906
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200907 lp->sl_prefprog = ALLOC_CLEAR_MULT(regprog_T *, cnt);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200908 if (lp->sl_prefprog == NULL)
909 return SP_OTHERERROR;
910 lp->sl_prefixcnt = cnt;
911
912 for (i = 0; i < cnt; ++i)
913 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100914 // <prefcond> : <condlen> <condstr>
915 n = getc(fd); // <condlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200916 if (n < 0 || n >= MAXWLEN)
917 return SP_FORMERROR;
918
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100919 // When <condlen> is zero we have an empty condition. Otherwise
920 // compile the regexp program used to check for the condition.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200921 if (n > 0)
922 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100923 buf[0] = '^'; // always match at one position only
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200924 p = buf + 1;
925 while (n-- > 0)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100926 *p++ = getc(fd); // <condstr>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200927 *p = NUL;
928 lp->sl_prefprog[i] = vim_regcomp(buf, RE_MAGIC + RE_STRING);
929 }
930 }
931 return 0;
932}
933
934/*
935 * Read REP or REPSAL items section from "fd": <repcount> <rep> ...
936 * Return SP_*ERROR flags.
937 */
938 static int
939read_rep_section(FILE *fd, garray_T *gap, short *first)
940{
941 int cnt;
942 fromto_T *ftp;
943 int i;
944
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100945 cnt = get2c(fd); // <repcount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200946 if (cnt < 0)
947 return SP_TRUNCERROR;
948
949 if (ga_grow(gap, cnt) == FAIL)
950 return SP_OTHERERROR;
951
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100952 // <rep> : <repfromlen> <repfrom> <reptolen> <repto>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200953 for (; gap->ga_len < cnt; ++gap->ga_len)
954 {
955 ftp = &((fromto_T *)gap->ga_data)[gap->ga_len];
956 ftp->ft_from = read_cnt_string(fd, 1, &i);
957 if (i < 0)
958 return i;
959 if (i == 0)
960 return SP_FORMERROR;
961 ftp->ft_to = read_cnt_string(fd, 1, &i);
962 if (i <= 0)
963 {
964 vim_free(ftp->ft_from);
965 if (i < 0)
966 return i;
967 return SP_FORMERROR;
968 }
969 }
970
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +0100971 // Fill the first-index table.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +0200972 for (i = 0; i < 256; ++i)
973 first[i] = -1;
974 for (i = 0; i < gap->ga_len; ++i)
975 {
976 ftp = &((fromto_T *)gap->ga_data)[i];
977 if (first[*ftp->ft_from] == -1)
978 first[*ftp->ft_from] = i;
979 }
980 return 0;
981}
982
983/*
984 * Read SN_SAL section: <salflags> <salcount> <sal> ...
985 * Return SP_*ERROR flags.
986 */
987 static int
988read_sal_section(FILE *fd, slang_T *slang)
989{
990 int i;
991 int cnt;
992 garray_T *gap;
993 salitem_T *smp;
994 int ccnt;
995 char_u *p;
996 int c = NUL;
997
998 slang->sl_sofo = FALSE;
999
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001000 i = getc(fd); // <salflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001001 if (i & SAL_F0LLOWUP)
1002 slang->sl_followup = TRUE;
1003 if (i & SAL_COLLAPSE)
1004 slang->sl_collapse = TRUE;
1005 if (i & SAL_REM_ACCENTS)
1006 slang->sl_rem_accents = TRUE;
1007
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001008 cnt = get2c(fd); // <salcount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001009 if (cnt < 0)
1010 return SP_TRUNCERROR;
1011
1012 gap = &slang->sl_sal;
1013 ga_init2(gap, sizeof(salitem_T), 10);
1014 if (ga_grow(gap, cnt + 1) == FAIL)
1015 return SP_OTHERERROR;
1016
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001017 // <sal> : <salfromlen> <salfrom> <saltolen> <salto>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001018 for (; gap->ga_len < cnt; ++gap->ga_len)
1019 {
1020 smp = &((salitem_T *)gap->ga_data)[gap->ga_len];
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001021 ccnt = getc(fd); // <salfromlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001022 if (ccnt < 0)
1023 return SP_TRUNCERROR;
1024 if ((p = alloc(ccnt + 2)) == NULL)
1025 return SP_OTHERERROR;
1026 smp->sm_lead = p;
1027
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001028 // Read up to the first special char into sm_lead.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001029 for (i = 0; i < ccnt; ++i)
1030 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001031 c = getc(fd); // <salfrom>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001032 if (vim_strchr((char_u *)"0123456789(-<^$", c) != NULL)
1033 break;
1034 *p++ = c;
1035 }
1036 smp->sm_leadlen = (int)(p - smp->sm_lead);
1037 *p++ = NUL;
1038
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001039 // Put (abc) chars in sm_oneof, if any.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001040 if (c == '(')
1041 {
1042 smp->sm_oneof = p;
1043 for (++i; i < ccnt; ++i)
1044 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001045 c = getc(fd); // <salfrom>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001046 if (c == ')')
1047 break;
1048 *p++ = c;
1049 }
1050 *p++ = NUL;
1051 if (++i < ccnt)
1052 c = getc(fd);
1053 }
1054 else
1055 smp->sm_oneof = NULL;
1056
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001057 // Any following chars go in sm_rules.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001058 smp->sm_rules = p;
1059 if (i < ccnt)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001060 // store the char we got while checking for end of sm_lead
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001061 *p++ = c;
1062 for (++i; i < ccnt; ++i)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001063 *p++ = getc(fd); // <salfrom>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001064 *p++ = NUL;
1065
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001066 // <saltolen> <salto>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001067 smp->sm_to = read_cnt_string(fd, 1, &ccnt);
1068 if (ccnt < 0)
1069 {
1070 vim_free(smp->sm_lead);
1071 return ccnt;
1072 }
1073
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001074 if (has_mbyte)
1075 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001076 // convert the multi-byte strings to wide char strings
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001077 smp->sm_lead_w = mb_str2wide(smp->sm_lead);
1078 smp->sm_leadlen = mb_charlen(smp->sm_lead);
1079 if (smp->sm_oneof == NULL)
1080 smp->sm_oneof_w = NULL;
1081 else
1082 smp->sm_oneof_w = mb_str2wide(smp->sm_oneof);
1083 if (smp->sm_to == NULL)
1084 smp->sm_to_w = NULL;
1085 else
1086 smp->sm_to_w = mb_str2wide(smp->sm_to);
1087 if (smp->sm_lead_w == NULL
1088 || (smp->sm_oneof_w == NULL && smp->sm_oneof != NULL)
1089 || (smp->sm_to_w == NULL && smp->sm_to != NULL))
1090 {
1091 vim_free(smp->sm_lead);
1092 vim_free(smp->sm_to);
1093 vim_free(smp->sm_lead_w);
1094 vim_free(smp->sm_oneof_w);
1095 vim_free(smp->sm_to_w);
1096 return SP_OTHERERROR;
1097 }
1098 }
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001099 }
1100
1101 if (gap->ga_len > 0)
1102 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001103 // Add one extra entry to mark the end with an empty sm_lead. Avoids
1104 // that we need to check the index every time.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001105 smp = &((salitem_T *)gap->ga_data)[gap->ga_len];
1106 if ((p = alloc(1)) == NULL)
1107 return SP_OTHERERROR;
1108 p[0] = NUL;
1109 smp->sm_lead = p;
1110 smp->sm_leadlen = 0;
1111 smp->sm_oneof = NULL;
1112 smp->sm_rules = p;
1113 smp->sm_to = NULL;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001114 if (has_mbyte)
1115 {
1116 smp->sm_lead_w = mb_str2wide(smp->sm_lead);
1117 smp->sm_leadlen = 0;
1118 smp->sm_oneof_w = NULL;
1119 smp->sm_to_w = NULL;
1120 }
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001121 ++gap->ga_len;
1122 }
1123
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001124 // Fill the first-index table.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001125 set_sal_first(slang);
1126
1127 return 0;
1128}
1129
1130/*
1131 * Read SN_WORDS: <word> ...
1132 * Return SP_*ERROR flags.
1133 */
1134 static int
1135read_words_section(FILE *fd, slang_T *lp, int len)
1136{
1137 int done = 0;
1138 int i;
1139 int c;
1140 char_u word[MAXWLEN];
1141
1142 while (done < len)
1143 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001144 // Read one word at a time.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001145 for (i = 0; ; ++i)
1146 {
1147 c = getc(fd);
1148 if (c == EOF)
1149 return SP_TRUNCERROR;
1150 word[i] = c;
1151 if (word[i] == NUL)
1152 break;
1153 if (i == MAXWLEN - 1)
1154 return SP_FORMERROR;
1155 }
1156
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001157 // Init the count to 10.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001158 count_common_word(lp, word, -1, 10);
1159 done += i + 1;
1160 }
1161 return 0;
1162}
1163
1164/*
1165 * SN_SOFO: <sofofromlen> <sofofrom> <sofotolen> <sofoto>
1166 * Return SP_*ERROR flags.
1167 */
1168 static int
1169read_sofo_section(FILE *fd, slang_T *slang)
1170{
1171 int cnt;
1172 char_u *from, *to;
1173 int res;
1174
1175 slang->sl_sofo = TRUE;
1176
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001177 // <sofofromlen> <sofofrom>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001178 from = read_cnt_string(fd, 2, &cnt);
1179 if (cnt < 0)
1180 return cnt;
1181
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001182 // <sofotolen> <sofoto>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001183 to = read_cnt_string(fd, 2, &cnt);
1184 if (cnt < 0)
1185 {
1186 vim_free(from);
1187 return cnt;
1188 }
1189
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001190 // Store the info in slang->sl_sal and/or slang->sl_sal_first.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001191 if (from != NULL && to != NULL)
1192 res = set_sofo(slang, from, to);
1193 else if (from != NULL || to != NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001194 res = SP_FORMERROR; // only one of two strings is an error
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001195 else
1196 res = 0;
1197
1198 vim_free(from);
1199 vim_free(to);
1200 return res;
1201}
1202
1203/*
1204 * Read the compound section from the .spl file:
1205 * <compmax> <compminlen> <compsylmax> <compoptions> <compflags>
1206 * Returns SP_*ERROR flags.
1207 */
1208 static int
1209read_compound(FILE *fd, slang_T *slang, int len)
1210{
1211 int todo = len;
1212 int c;
1213 int atstart;
1214 char_u *pat;
1215 char_u *pp;
1216 char_u *cp;
1217 char_u *ap;
1218 char_u *crp;
1219 int cnt;
1220 garray_T *gap;
1221
1222 if (todo < 2)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001223 return SP_FORMERROR; // need at least two bytes
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001224
1225 --todo;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001226 c = getc(fd); // <compmax>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001227 if (c < 2)
1228 c = MAXWLEN;
1229 slang->sl_compmax = c;
1230
1231 --todo;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001232 c = getc(fd); // <compminlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001233 if (c < 1)
1234 c = 0;
1235 slang->sl_compminlen = c;
1236
1237 --todo;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001238 c = getc(fd); // <compsylmax>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001239 if (c < 1)
1240 c = MAXWLEN;
1241 slang->sl_compsylmax = c;
1242
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001243 c = getc(fd); // <compoptions>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001244 if (c != 0)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001245 ungetc(c, fd); // be backwards compatible with Vim 7.0b
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001246 else
1247 {
1248 --todo;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001249 c = getc(fd); // only use the lower byte for now
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001250 --todo;
1251 slang->sl_compoptions = c;
1252
1253 gap = &slang->sl_comppat;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001254 c = get2c(fd); // <comppatcount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001255 todo -= 2;
1256 ga_init2(gap, sizeof(char_u *), c);
1257 if (ga_grow(gap, c) == OK)
1258 while (--c >= 0)
1259 {
1260 ((char_u **)(gap->ga_data))[gap->ga_len++] =
1261 read_cnt_string(fd, 1, &cnt);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001262 // <comppatlen> <comppattext>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001263 if (cnt < 0)
1264 return cnt;
1265 todo -= cnt + 1;
1266 }
1267 }
1268 if (todo < 0)
1269 return SP_FORMERROR;
1270
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001271 // Turn the COMPOUNDRULE items into a regexp pattern:
1272 // "a[bc]/a*b+" -> "^\(a[bc]\|a*b\+\)$".
1273 // Inserting backslashes may double the length, "^\(\)$<Nul>" is 7 bytes.
1274 // Conversion to utf-8 may double the size.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001275 c = todo * 2 + 7;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001276 if (enc_utf8)
1277 c += todo * 2;
Bram Moolenaar964b3742019-05-24 18:54:09 +02001278 pat = alloc(c);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001279 if (pat == NULL)
1280 return SP_OTHERERROR;
1281
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001282 // We also need a list of all flags that can appear at the start and one
1283 // for all flags.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001284 cp = alloc(todo + 1);
1285 if (cp == NULL)
1286 {
1287 vim_free(pat);
1288 return SP_OTHERERROR;
1289 }
1290 slang->sl_compstartflags = cp;
1291 *cp = NUL;
1292
1293 ap = alloc(todo + 1);
1294 if (ap == NULL)
1295 {
1296 vim_free(pat);
1297 return SP_OTHERERROR;
1298 }
1299 slang->sl_compallflags = ap;
1300 *ap = NUL;
1301
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001302 // And a list of all patterns in their original form, for checking whether
1303 // compounding may work in match_compoundrule(). This is freed when we
1304 // encounter a wildcard, the check doesn't work then.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001305 crp = alloc(todo + 1);
1306 slang->sl_comprules = crp;
1307
1308 pp = pat;
1309 *pp++ = '^';
1310 *pp++ = '\\';
1311 *pp++ = '(';
1312
1313 atstart = 1;
1314 while (todo-- > 0)
1315 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001316 c = getc(fd); // <compflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001317 if (c == EOF)
1318 {
1319 vim_free(pat);
1320 return SP_TRUNCERROR;
1321 }
1322
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001323 // Add all flags to "sl_compallflags".
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001324 if (vim_strchr((char_u *)"?*+[]/", c) == NULL
1325 && !byte_in_str(slang->sl_compallflags, c))
1326 {
1327 *ap++ = c;
1328 *ap = NUL;
1329 }
1330
1331 if (atstart != 0)
1332 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001333 // At start of item: copy flags to "sl_compstartflags". For a
1334 // [abc] item set "atstart" to 2 and copy up to the ']'.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001335 if (c == '[')
1336 atstart = 2;
1337 else if (c == ']')
1338 atstart = 0;
1339 else
1340 {
1341 if (!byte_in_str(slang->sl_compstartflags, c))
1342 {
1343 *cp++ = c;
1344 *cp = NUL;
1345 }
1346 if (atstart == 1)
1347 atstart = 0;
1348 }
1349 }
1350
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001351 // Copy flag to "sl_comprules", unless we run into a wildcard.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001352 if (crp != NULL)
1353 {
1354 if (c == '?' || c == '+' || c == '*')
1355 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01001356 VIM_CLEAR(slang->sl_comprules);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001357 crp = NULL;
1358 }
1359 else
1360 *crp++ = c;
1361 }
1362
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001363 if (c == '/') // slash separates two items
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001364 {
1365 *pp++ = '\\';
1366 *pp++ = '|';
1367 atstart = 1;
1368 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001369 else // normal char, "[abc]" and '*' are copied as-is
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001370 {
1371 if (c == '?' || c == '+' || c == '~')
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001372 *pp++ = '\\'; // "a?" becomes "a\?", "a+" becomes "a\+"
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001373 if (enc_utf8)
1374 pp += mb_char2bytes(c, pp);
1375 else
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001376 *pp++ = c;
1377 }
1378 }
1379
1380 *pp++ = '\\';
1381 *pp++ = ')';
1382 *pp++ = '$';
1383 *pp = NUL;
1384
1385 if (crp != NULL)
1386 *crp = NUL;
1387
1388 slang->sl_compprog = vim_regcomp(pat, RE_MAGIC + RE_STRING + RE_STRICT);
1389 vim_free(pat);
1390 if (slang->sl_compprog == NULL)
1391 return SP_FORMERROR;
1392
1393 return 0;
1394}
1395
1396/*
1397 * Set the SOFOFROM and SOFOTO items in language "lp".
1398 * Returns SP_*ERROR flags when there is something wrong.
1399 */
1400 static int
1401set_sofo(slang_T *lp, char_u *from, char_u *to)
1402{
1403 int i;
1404
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001405 garray_T *gap;
1406 char_u *s;
1407 char_u *p;
1408 int c;
1409 int *inp;
1410
1411 if (has_mbyte)
1412 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001413 // Use "sl_sal" as an array with 256 pointers to a list of wide
1414 // characters. The index is the low byte of the character.
1415 // The list contains from-to pairs with a terminating NUL.
1416 // sl_sal_first[] is used for latin1 "from" characters.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001417 gap = &lp->sl_sal;
1418 ga_init2(gap, sizeof(int *), 1);
1419 if (ga_grow(gap, 256) == FAIL)
1420 return SP_OTHERERROR;
1421 vim_memset(gap->ga_data, 0, sizeof(int *) * 256);
1422 gap->ga_len = 256;
1423
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001424 // First count the number of items for each list. Temporarily use
1425 // sl_sal_first[] for this.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001426 for (p = from, s = to; *p != NUL && *s != NUL; )
1427 {
1428 c = mb_cptr2char_adv(&p);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001429 MB_CPTR_ADV(s);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001430 if (c >= 256)
1431 ++lp->sl_sal_first[c & 0xff];
1432 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001433 if (*p != NUL || *s != NUL) // lengths differ
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001434 return SP_FORMERROR;
1435
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001436 // Allocate the lists.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001437 for (i = 0; i < 256; ++i)
1438 if (lp->sl_sal_first[i] > 0)
1439 {
1440 p = alloc(sizeof(int) * (lp->sl_sal_first[i] * 2 + 1));
1441 if (p == NULL)
1442 return SP_OTHERERROR;
1443 ((int **)gap->ga_data)[i] = (int *)p;
1444 *(int *)p = 0;
1445 }
1446
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001447 // Put the characters up to 255 in sl_sal_first[] the rest in a sl_sal
1448 // list.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001449 vim_memset(lp->sl_sal_first, 0, sizeof(salfirst_T) * 256);
1450 for (p = from, s = to; *p != NUL && *s != NUL; )
1451 {
1452 c = mb_cptr2char_adv(&p);
1453 i = mb_cptr2char_adv(&s);
1454 if (c >= 256)
1455 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001456 // Append the from-to chars at the end of the list with
1457 // the low byte.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001458 inp = ((int **)gap->ga_data)[c & 0xff];
1459 while (*inp != 0)
1460 ++inp;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001461 *inp++ = c; // from char
1462 *inp++ = i; // to char
1463 *inp++ = NUL; // NUL at the end
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001464 }
1465 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001466 // mapping byte to char is done in sl_sal_first[]
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001467 lp->sl_sal_first[c] = i;
1468 }
1469 }
1470 else
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001471 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001472 // mapping bytes to bytes is done in sl_sal_first[]
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001473 if (STRLEN(from) != STRLEN(to))
1474 return SP_FORMERROR;
1475
1476 for (i = 0; to[i] != NUL; ++i)
1477 lp->sl_sal_first[from[i]] = to[i];
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001478 lp->sl_sal.ga_len = 1; // indicates we have soundfolding
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001479 }
1480
1481 return 0;
1482}
1483
1484/*
1485 * Fill the first-index table for "lp".
1486 */
1487 static void
1488set_sal_first(slang_T *lp)
1489{
1490 salfirst_T *sfirst;
1491 int i;
1492 salitem_T *smp;
1493 int c;
1494 garray_T *gap = &lp->sl_sal;
1495
1496 sfirst = lp->sl_sal_first;
1497 for (i = 0; i < 256; ++i)
1498 sfirst[i] = -1;
1499 smp = (salitem_T *)gap->ga_data;
1500 for (i = 0; i < gap->ga_len; ++i)
1501 {
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001502 if (has_mbyte)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001503 // Use the lowest byte of the first character. For latin1 it's
1504 // the character, for other encodings it should differ for most
1505 // characters.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001506 c = *smp[i].sm_lead_w & 0xff;
1507 else
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001508 c = *smp[i].sm_lead;
1509 if (sfirst[c] == -1)
1510 {
1511 sfirst[c] = i;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001512 if (has_mbyte)
1513 {
1514 int n;
1515
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001516 // Make sure all entries with this byte are following each
1517 // other. Move the ones that are in the wrong position. Do
1518 // keep the same ordering!
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001519 while (i + 1 < gap->ga_len
1520 && (*smp[i + 1].sm_lead_w & 0xff) == c)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001521 // Skip over entry with same index byte.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001522 ++i;
1523
1524 for (n = 1; i + n < gap->ga_len; ++n)
1525 if ((*smp[i + n].sm_lead_w & 0xff) == c)
1526 {
1527 salitem_T tsal;
1528
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001529 // Move entry with same index byte after the entries
1530 // we already found.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001531 ++i;
1532 --n;
1533 tsal = smp[i + n];
1534 mch_memmove(smp + i + 1, smp + i,
1535 sizeof(salitem_T) * n);
1536 smp[i] = tsal;
1537 }
1538 }
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001539 }
1540 }
1541}
1542
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001543/*
1544 * Turn a multi-byte string into a wide character string.
1545 * Return it in allocated memory (NULL for out-of-memory)
1546 */
1547 static int *
1548mb_str2wide(char_u *s)
1549{
1550 int *res;
1551 char_u *p;
1552 int i = 0;
1553
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001554 res = ALLOC_MULT(int, mb_charlen(s) + 1);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001555 if (res != NULL)
1556 {
1557 for (p = s; *p != NUL; )
1558 res[i++] = mb_ptr2char_adv(&p);
1559 res[i] = NUL;
1560 }
1561 return res;
1562}
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001563
1564/*
1565 * Read a tree from the .spl or .sug file.
1566 * Allocates the memory and stores pointers in "bytsp" and "idxsp".
1567 * This is skipped when the tree has zero length.
1568 * Returns zero when OK, SP_ value for an error.
1569 */
1570 static int
1571spell_read_tree(
1572 FILE *fd,
1573 char_u **bytsp,
1574 idx_T **idxsp,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001575 int prefixtree, // TRUE for the prefix tree
1576 int prefixcnt) // when "prefixtree" is TRUE: prefix count
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001577{
Bram Moolenaar6d3c8582017-02-26 15:27:23 +01001578 long len;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001579 int idx;
1580 char_u *bp;
1581 idx_T *ip;
1582
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001583 // The tree size was computed when writing the file, so that we can
1584 // allocate it as one long block. <nodecount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001585 len = get4c(fd);
1586 if (len < 0)
1587 return SP_TRUNCERROR;
Bram Moolenaar6d3c8582017-02-26 15:27:23 +01001588 if (len >= LONG_MAX / (long)sizeof(int))
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001589 // Invalid length, multiply with sizeof(int) would overflow.
Bram Moolenaar399c2972017-02-09 21:07:12 +01001590 return SP_FORMERROR;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001591 if (len > 0)
1592 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001593 // Allocate the byte array.
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02001594 bp = alloc(len);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001595 if (bp == NULL)
1596 return SP_OTHERERROR;
1597 *bytsp = bp;
1598
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001599 // Allocate the index array.
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001600 ip = lalloc_clear(len * sizeof(int), TRUE);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001601 if (ip == NULL)
1602 return SP_OTHERERROR;
1603 *idxsp = ip;
1604
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001605 // Recursively read the tree and store it in the array.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001606 idx = read_tree_node(fd, bp, ip, len, 0, prefixtree, prefixcnt);
1607 if (idx < 0)
1608 return idx;
1609 }
1610 return 0;
1611}
1612
1613/*
1614 * Read one row of siblings from the spell file and store it in the byte array
1615 * "byts" and index array "idxs". Recursively read the children.
1616 *
1617 * NOTE: The code here must match put_node()!
1618 *
1619 * Returns the index (>= 0) following the siblings.
1620 * Returns SP_TRUNCERROR if the file is shorter than expected.
1621 * Returns SP_FORMERROR if there is a format error.
1622 */
1623 static idx_T
1624read_tree_node(
1625 FILE *fd,
1626 char_u *byts,
1627 idx_T *idxs,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001628 int maxidx, // size of arrays
1629 idx_T startidx, // current index in "byts" and "idxs"
1630 int prefixtree, // TRUE for reading PREFIXTREE
1631 int maxprefcondnr) // maximum for <prefcondnr>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001632{
1633 int len;
1634 int i;
1635 int n;
1636 idx_T idx = startidx;
1637 int c;
1638 int c2;
1639#define SHARED_MASK 0x8000000
1640
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001641 len = getc(fd); // <siblingcount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001642 if (len <= 0)
1643 return SP_TRUNCERROR;
1644
1645 if (startidx + len >= maxidx)
1646 return SP_FORMERROR;
1647 byts[idx++] = len;
1648
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001649 // Read the byte values, flag/region bytes and shared indexes.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001650 for (i = 1; i <= len; ++i)
1651 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001652 c = getc(fd); // <byte>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001653 if (c < 0)
1654 return SP_TRUNCERROR;
1655 if (c <= BY_SPECIAL)
1656 {
1657 if (c == BY_NOFLAGS && !prefixtree)
1658 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001659 // No flags, all regions.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001660 idxs[idx] = 0;
1661 c = 0;
1662 }
1663 else if (c != BY_INDEX)
1664 {
1665 if (prefixtree)
1666 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001667 // Read the optional pflags byte, the prefix ID and the
1668 // condition nr. In idxs[] store the prefix ID in the low
1669 // byte, the condition index shifted up 8 bits, the flags
1670 // shifted up 24 bits.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001671 if (c == BY_FLAGS)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001672 c = getc(fd) << 24; // <pflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001673 else
1674 c = 0;
1675
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001676 c |= getc(fd); // <affixID>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001677
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001678 n = get2c(fd); // <prefcondnr>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001679 if (n >= maxprefcondnr)
1680 return SP_FORMERROR;
1681 c |= (n << 8);
1682 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001683 else // c must be BY_FLAGS or BY_FLAGS2
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001684 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001685 // Read flags and optional region and prefix ID. In
1686 // idxs[] the flags go in the low two bytes, region above
1687 // that and prefix ID above the region.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001688 c2 = c;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001689 c = getc(fd); // <flags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001690 if (c2 == BY_FLAGS2)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001691 c = (getc(fd) << 8) + c; // <flags2>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001692 if (c & WF_REGION)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001693 c = (getc(fd) << 16) + c; // <region>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001694 if (c & WF_AFX)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001695 c = (getc(fd) << 24) + c; // <affixID>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001696 }
1697
1698 idxs[idx] = c;
1699 c = 0;
1700 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001701 else // c == BY_INDEX
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001702 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001703 // <nodeidx>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001704 n = get3c(fd);
1705 if (n < 0 || n >= maxidx)
1706 return SP_FORMERROR;
1707 idxs[idx] = n + SHARED_MASK;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001708 c = getc(fd); // <xbyte>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001709 }
1710 }
1711 byts[idx++] = c;
1712 }
1713
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001714 // Recursively read the children for non-shared siblings.
1715 // Skip the end-of-word ones (zero byte value) and the shared ones (and
1716 // remove SHARED_MASK)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001717 for (i = 1; i <= len; ++i)
1718 if (byts[startidx + i] != 0)
1719 {
1720 if (idxs[startidx + i] & SHARED_MASK)
1721 idxs[startidx + i] &= ~SHARED_MASK;
1722 else
1723 {
1724 idxs[startidx + i] = idx;
1725 idx = read_tree_node(fd, byts, idxs, maxidx, idx,
1726 prefixtree, maxprefcondnr);
1727 if (idx < 0)
1728 break;
1729 }
1730 }
1731
1732 return idx;
1733}
1734
1735/*
1736 * Reload the spell file "fname" if it's loaded.
1737 */
1738 static void
1739spell_reload_one(
1740 char_u *fname,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001741 int added_word) // invoked through "zg"
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001742{
1743 slang_T *slang;
1744 int didit = FALSE;
1745
Bram Moolenaaraeea7212020-04-02 18:50:46 +02001746 FOR_ALL_SPELL_LANGS(slang)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001747 {
Bram Moolenaar99499b12019-05-23 21:35:48 +02001748 if (fullpathcmp(fname, slang->sl_fname, FALSE, TRUE) == FPC_SAME)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001749 {
1750 slang_clear(slang);
1751 if (spell_load_file(fname, NULL, slang, FALSE) == NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001752 // reloading failed, clear the language
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001753 slang_clear(slang);
1754 redraw_all_later(SOME_VALID);
1755 didit = TRUE;
1756 }
1757 }
1758
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001759 // When "zg" was used and the file wasn't loaded yet, should redo
1760 // 'spelllang' to load it now.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001761 if (added_word && !didit)
1762 did_set_spelllang(curwin);
1763}
1764
1765
1766/*
1767 * Functions for ":mkspell".
1768 */
1769
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001770#define MAXLINELEN 500 // Maximum length in bytes of a line in a .aff
1771 // and .dic file.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001772/*
1773 * Main structure to store the contents of a ".aff" file.
1774 */
1775typedef struct afffile_S
1776{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001777 char_u *af_enc; // "SET", normalized, alloc'ed string or NULL
1778 int af_flagtype; // AFT_CHAR, AFT_LONG, AFT_NUM or AFT_CAPLONG
1779 unsigned af_rare; // RARE ID for rare word
1780 unsigned af_keepcase; // KEEPCASE ID for keep-case word
1781 unsigned af_bad; // BAD ID for banned word
1782 unsigned af_needaffix; // NEEDAFFIX ID
1783 unsigned af_circumfix; // CIRCUMFIX ID
1784 unsigned af_needcomp; // NEEDCOMPOUND ID
1785 unsigned af_comproot; // COMPOUNDROOT ID
1786 unsigned af_compforbid; // COMPOUNDFORBIDFLAG ID
1787 unsigned af_comppermit; // COMPOUNDPERMITFLAG ID
1788 unsigned af_nosuggest; // NOSUGGEST ID
1789 int af_pfxpostpone; // postpone prefixes without chop string and
1790 // without flags
1791 int af_ignoreextra; // IGNOREEXTRA present
1792 hashtab_T af_pref; // hashtable for prefixes, affheader_T
1793 hashtab_T af_suff; // hashtable for suffixes, affheader_T
1794 hashtab_T af_comp; // hashtable for compound flags, compitem_T
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001795} afffile_T;
1796
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001797#define AFT_CHAR 0 // flags are one character
1798#define AFT_LONG 1 // flags are two characters
1799#define AFT_CAPLONG 2 // flags are one or two characters
1800#define AFT_NUM 3 // flags are numbers, comma separated
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001801
1802typedef struct affentry_S affentry_T;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001803// Affix entry from ".aff" file. Used for prefixes and suffixes.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001804struct affentry_S
1805{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001806 affentry_T *ae_next; // next affix with same name/number
1807 char_u *ae_chop; // text to chop off basic word (can be NULL)
1808 char_u *ae_add; // text to add to basic word (can be NULL)
1809 char_u *ae_flags; // flags on the affix (can be NULL)
1810 char_u *ae_cond; // condition (NULL for ".")
1811 regprog_T *ae_prog; // regexp program for ae_cond or NULL
1812 char ae_compforbid; // COMPOUNDFORBIDFLAG found
1813 char ae_comppermit; // COMPOUNDPERMITFLAG found
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001814};
1815
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001816#define AH_KEY_LEN 17 // 2 x 8 bytes + NUL
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001817
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001818// Affix header from ".aff" file. Used for af_pref and af_suff.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001819typedef struct affheader_S
1820{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001821 char_u ah_key[AH_KEY_LEN]; // key for hashtab == name of affix
1822 unsigned ah_flag; // affix name as number, uses "af_flagtype"
1823 int ah_newID; // prefix ID after renumbering; 0 if not used
1824 int ah_combine; // suffix may combine with prefix
1825 int ah_follows; // another affix block should be following
1826 affentry_T *ah_first; // first affix entry
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001827} affheader_T;
1828
1829#define HI2AH(hi) ((affheader_T *)(hi)->hi_key)
1830
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001831// Flag used in compound items.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001832typedef struct compitem_S
1833{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001834 char_u ci_key[AH_KEY_LEN]; // key for hashtab == name of compound
1835 unsigned ci_flag; // affix name as number, uses "af_flagtype"
1836 int ci_newID; // affix ID after renumbering.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001837} compitem_T;
1838
1839#define HI2CI(hi) ((compitem_T *)(hi)->hi_key)
1840
1841/*
1842 * Structure that is used to store the items in the word tree. This avoids
1843 * the need to keep track of each allocated thing, everything is freed all at
1844 * once after ":mkspell" is done.
1845 * Note: "sb_next" must be just before "sb_data" to make sure the alignment of
1846 * "sb_data" is correct for systems where pointers must be aligned on
1847 * pointer-size boundaries and sizeof(pointer) > sizeof(int) (e.g., Sparc).
1848 */
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001849#define SBLOCKSIZE 16000 // size of sb_data
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001850typedef struct sblock_S sblock_T;
1851struct sblock_S
1852{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001853 int sb_used; // nr of bytes already in use
1854 sblock_T *sb_next; // next block in list
1855 char_u sb_data[1]; // data, actually longer
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001856};
1857
1858/*
1859 * A node in the tree.
1860 */
1861typedef struct wordnode_S wordnode_T;
1862struct wordnode_S
1863{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001864 union // shared to save space
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001865 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001866 char_u hashkey[6]; // the hash key, only used while compressing
1867 int index; // index in written nodes (valid after first
1868 // round)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001869 } wn_u1;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001870 union // shared to save space
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001871 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001872 wordnode_T *next; // next node with same hash key
1873 wordnode_T *wnode; // parent node that will write this node
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001874 } wn_u2;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001875 wordnode_T *wn_child; // child (next byte in word)
1876 wordnode_T *wn_sibling; // next sibling (alternate byte in word,
1877 // always sorted)
1878 int wn_refs; // Nr. of references to this node. Only
1879 // relevant for first node in a list of
1880 // siblings, in following siblings it is
1881 // always one.
1882 char_u wn_byte; // Byte for this node. NUL for word end
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001883
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001884 // Info for when "wn_byte" is NUL.
1885 // In PREFIXTREE "wn_region" is used for the prefcondnr.
1886 // In the soundfolded word tree "wn_flags" has the MSW of the wordnr and
1887 // "wn_region" the LSW of the wordnr.
1888 char_u wn_affixID; // supported/required prefix ID or 0
1889 short_u wn_flags; // WF_ flags
1890 short wn_region; // region mask
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001891
1892#ifdef SPELL_PRINTTREE
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001893 int wn_nr; // sequence nr for printing
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001894#endif
1895};
1896
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001897#define WN_MASK 0xffff // mask relevant bits of "wn_flags"
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001898
1899#define HI2WN(hi) (wordnode_T *)((hi)->hi_key)
1900
1901/*
1902 * Info used while reading the spell files.
1903 */
1904typedef struct spellinfo_S
1905{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001906 wordnode_T *si_foldroot; // tree with case-folded words
1907 long si_foldwcount; // nr of words in si_foldroot
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001908
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001909 wordnode_T *si_keeproot; // tree with keep-case words
1910 long si_keepwcount; // nr of words in si_keeproot
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001911
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001912 wordnode_T *si_prefroot; // tree with postponed prefixes
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001913
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001914 long si_sugtree; // creating the soundfolding trie
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001915
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001916 sblock_T *si_blocks; // memory blocks used
1917 long si_blocks_cnt; // memory blocks allocated
1918 int si_did_emsg; // TRUE when ran out of memory
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001919
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001920 long si_compress_cnt; // words to add before lowering
1921 // compression limit
1922 wordnode_T *si_first_free; // List of nodes that have been freed during
1923 // compression, linked by "wn_child" field.
1924 long si_free_count; // number of nodes in si_first_free
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001925#ifdef SPELL_PRINTTREE
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001926 int si_wordnode_nr; // sequence nr for nodes
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001927#endif
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001928 buf_T *si_spellbuf; // buffer used to store soundfold word table
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001929
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001930 int si_ascii; // handling only ASCII words
1931 int si_add; // addition file
1932 int si_clear_chartab; // when TRUE clear char tables
1933 int si_region; // region mask
1934 vimconv_T si_conv; // for conversion to 'encoding'
1935 int si_memtot; // runtime memory used
1936 int si_verbose; // verbose messages
1937 int si_msg_count; // number of words added since last message
1938 char_u *si_info; // info text chars or NULL
1939 int si_region_count; // number of regions supported (1 when there
1940 // are no regions)
Bram Moolenaar2993ac52018-02-10 14:12:43 +01001941 char_u si_region_name[MAXREGIONS * 2 + 1];
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001942 // region names; used only if
1943 // si_region_count > 1)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001944
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01001945 garray_T si_rep; // list of fromto_T entries from REP lines
1946 garray_T si_repsal; // list of fromto_T entries from REPSAL lines
1947 garray_T si_sal; // list of fromto_T entries from SAL lines
1948 char_u *si_sofofr; // SOFOFROM text
1949 char_u *si_sofoto; // SOFOTO text
1950 int si_nosugfile; // NOSUGFILE item found
1951 int si_nosplitsugs; // NOSPLITSUGS item found
1952 int si_nocompoundsugs; // NOCOMPOUNDSUGS item found
1953 int si_followup; // soundsalike: ?
1954 int si_collapse; // soundsalike: ?
1955 hashtab_T si_commonwords; // hashtable for common words
1956 time_t si_sugtime; // timestamp for .sug file
1957 int si_rem_accents; // soundsalike: remove accents
1958 garray_T si_map; // MAP info concatenated
1959 char_u *si_midword; // MIDWORD chars or NULL
1960 int si_compmax; // max nr of words for compounding
1961 int si_compminlen; // minimal length for compounding
1962 int si_compsylmax; // max nr of syllables for compounding
1963 int si_compoptions; // COMP_ flags
1964 garray_T si_comppat; // CHECKCOMPOUNDPATTERN items, each stored as
1965 // a string
1966 char_u *si_compflags; // flags used for compounding
1967 char_u si_nobreak; // NOBREAK
1968 char_u *si_syllable; // syllable string
1969 garray_T si_prefcond; // table with conditions for postponed
1970 // prefixes, each stored as a string
1971 int si_newprefID; // current value for ah_newID
1972 int si_newcompID; // current value for compound ID
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001973} spellinfo_T;
1974
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001975static int is_aff_rule(char_u **items, int itemcnt, char *rulename, int mincount);
1976static void aff_process_flags(afffile_T *affile, affentry_T *entry);
1977static int spell_info_item(char_u *s);
1978static unsigned affitem2flag(int flagtype, char_u *item, char_u *fname, int lnum);
1979static unsigned get_affitem(int flagtype, char_u **pp);
1980static void process_compflags(spellinfo_T *spin, afffile_T *aff, char_u *compflags);
1981static void check_renumber(spellinfo_T *spin);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001982static void aff_check_number(int spinval, int affval, char *name);
1983static void aff_check_string(char_u *spinval, char_u *affval, char *name);
1984static int str_equal(char_u *s1, char_u *s2);
1985static void add_fromto(spellinfo_T *spin, garray_T *gap, char_u *from, char_u *to);
1986static int sal_to_bool(char_u *s);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001987static int get_affix_flags(afffile_T *affile, char_u *afflist);
1988static int get_pfxlist(afffile_T *affile, char_u *afflist, char_u *store_afflist);
1989static void get_compflags(afffile_T *affile, char_u *afflist, char_u *store_afflist);
1990static 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 +02001991static void *getroom(spellinfo_T *spin, size_t len, int align);
1992static char_u *getroom_save(spellinfo_T *spin, char_u *s);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001993static int store_word(spellinfo_T *spin, char_u *word, int flags, int region, char_u *pfxlist, int need_affix);
1994static int tree_add_word(spellinfo_T *spin, char_u *word, wordnode_T *tree, int flags, int region, int affixID);
1995static wordnode_T *get_wordnode(spellinfo_T *spin);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001996static void free_wordnode(spellinfo_T *spin, wordnode_T *n);
1997static void wordtree_compress(spellinfo_T *spin, wordnode_T *root);
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02001998static long node_compress(spellinfo_T *spin, wordnode_T *node, hashtab_T *ht, long *tot);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02001999static int node_equal(wordnode_T *n1, wordnode_T *n2);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002000static void clear_node(wordnode_T *node);
2001static int put_node(FILE *fd, wordnode_T *node, int idx, int regionmask, int prefixtree);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002002static int sug_filltree(spellinfo_T *spin, slang_T *slang);
2003static int sug_maketable(spellinfo_T *spin);
2004static int sug_filltable(spellinfo_T *spin, wordnode_T *node, int startwordnr, garray_T *gap);
2005static int offset2bytes(int nr, char_u *buf);
2006static void sug_write(spellinfo_T *spin, char_u *fname);
2007static void spell_message(spellinfo_T *spin, char_u *str);
2008static void init_spellfile(void);
2009
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002010// In the postponed prefixes tree wn_flags is used to store the WFP_ flags,
2011// but it must be negative to indicate the prefix tree to tree_add_word().
2012// Use a negative number with the lower 8 bits zero.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002013#define PFX_FLAGS -256
2014
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002015// flags for "condit" argument of store_aff_word()
2016#define CONDIT_COMB 1 // affix must combine
2017#define CONDIT_CFIX 2 // affix must have CIRCUMFIX flag
2018#define CONDIT_SUF 4 // add a suffix for matching flags
2019#define CONDIT_AFF 8 // word already has an affix
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002020
2021/*
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02002022 * Tunable parameters for when the tree is compressed. Filled from the
2023 * 'mkspellmem' option.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002024 */
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002025static long compress_start = 30000; // memory / SBLOCKSIZE
2026static long compress_inc = 100; // memory / SBLOCKSIZE
2027static long compress_added = 500000; // word count
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002028
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02002029// Actually used values. These can change if compression doesn't result in
2030// reducing the size.
2031static long used_compress_inc;
2032static long used_compress_added;
2033
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002034/*
2035 * Check the 'mkspellmem' option. Return FAIL if it's wrong.
2036 * Sets "sps_flags".
2037 */
2038 int
2039spell_check_msm(void)
2040{
2041 char_u *p = p_msm;
2042 long start = 0;
2043 long incr = 0;
2044 long added = 0;
2045
2046 if (!VIM_ISDIGIT(*p))
2047 return FAIL;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002048 // block count = (value * 1024) / SBLOCKSIZE (but avoid overflow)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002049 start = (getdigits(&p) * 10) / (SBLOCKSIZE / 102);
2050 if (*p != ',')
2051 return FAIL;
2052 ++p;
2053 if (!VIM_ISDIGIT(*p))
2054 return FAIL;
2055 incr = (getdigits(&p) * 102) / (SBLOCKSIZE / 10);
2056 if (*p != ',')
2057 return FAIL;
2058 ++p;
2059 if (!VIM_ISDIGIT(*p))
2060 return FAIL;
2061 added = getdigits(&p) * 1024;
2062 if (*p != NUL)
2063 return FAIL;
2064
2065 if (start == 0 || incr == 0 || added == 0 || incr > start)
2066 return FAIL;
2067
2068 compress_start = start;
2069 compress_inc = incr;
2070 compress_added = added;
2071 return OK;
2072}
2073
2074#ifdef SPELL_PRINTTREE
2075/*
2076 * For debugging the tree code: print the current tree in a (more or less)
2077 * readable format, so that we can see what happens when adding a word and/or
2078 * compressing the tree.
2079 * Based on code from Olaf Seibert.
2080 */
2081#define PRINTLINESIZE 1000
2082#define PRINTWIDTH 6
2083
2084#define PRINTSOME(l, depth, fmt, a1, a2) vim_snprintf(l + depth * PRINTWIDTH, \
2085 PRINTLINESIZE - PRINTWIDTH * depth, fmt, a1, a2)
2086
2087static char line1[PRINTLINESIZE];
2088static char line2[PRINTLINESIZE];
2089static char line3[PRINTLINESIZE];
2090
2091 static void
2092spell_clear_flags(wordnode_T *node)
2093{
2094 wordnode_T *np;
2095
Bram Moolenaaraeea7212020-04-02 18:50:46 +02002096 FOR_ALL_NODE_SIBLINGS(node, np)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002097 {
2098 np->wn_u1.index = FALSE;
2099 spell_clear_flags(np->wn_child);
2100 }
2101}
2102
2103 static void
2104spell_print_node(wordnode_T *node, int depth)
2105{
2106 if (node->wn_u1.index)
2107 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002108 // Done this node before, print the reference.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002109 PRINTSOME(line1, depth, "(%d)", node->wn_nr, 0);
2110 PRINTSOME(line2, depth, " ", 0, 0);
2111 PRINTSOME(line3, depth, " ", 0, 0);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002112 msg(line1);
2113 msg(line2);
2114 msg(line3);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002115 }
2116 else
2117 {
2118 node->wn_u1.index = TRUE;
2119
2120 if (node->wn_byte != NUL)
2121 {
2122 if (node->wn_child != NULL)
2123 PRINTSOME(line1, depth, " %c -> ", node->wn_byte, 0);
2124 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002125 // Cannot happen?
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002126 PRINTSOME(line1, depth, " %c ???", node->wn_byte, 0);
2127 }
2128 else
2129 PRINTSOME(line1, depth, " $ ", 0, 0);
2130
2131 PRINTSOME(line2, depth, "%d/%d ", node->wn_nr, node->wn_refs);
2132
2133 if (node->wn_sibling != NULL)
2134 PRINTSOME(line3, depth, " | ", 0, 0);
2135 else
2136 PRINTSOME(line3, depth, " ", 0, 0);
2137
2138 if (node->wn_byte == NUL)
2139 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002140 msg(line1);
2141 msg(line2);
2142 msg(line3);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002143 }
2144
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002145 // do the children
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002146 if (node->wn_byte != NUL && node->wn_child != NULL)
2147 spell_print_node(node->wn_child, depth + 1);
2148
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002149 // do the siblings
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002150 if (node->wn_sibling != NULL)
2151 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002152 // get rid of all parent details except |
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002153 STRCPY(line1, line3);
2154 STRCPY(line2, line3);
2155 spell_print_node(node->wn_sibling, depth);
2156 }
2157 }
2158}
2159
2160 static void
2161spell_print_tree(wordnode_T *root)
2162{
2163 if (root != NULL)
2164 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002165 // Clear the "wn_u1.index" fields, used to remember what has been
2166 // done.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002167 spell_clear_flags(root);
2168
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002169 // Recursively print the tree.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002170 spell_print_node(root, 0);
2171 }
2172}
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002173#endif // SPELL_PRINTTREE
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002174
2175/*
2176 * Read the affix file "fname".
2177 * Returns an afffile_T, NULL for complete failure.
2178 */
2179 static afffile_T *
2180spell_read_aff(spellinfo_T *spin, char_u *fname)
2181{
2182 FILE *fd;
2183 afffile_T *aff;
2184 char_u rline[MAXLINELEN];
2185 char_u *line;
2186 char_u *pc = NULL;
2187#define MAXITEMCNT 30
2188 char_u *(items[MAXITEMCNT]);
2189 int itemcnt;
2190 char_u *p;
2191 int lnum = 0;
2192 affheader_T *cur_aff = NULL;
2193 int did_postpone_prefix = FALSE;
2194 int aff_todo = 0;
2195 hashtab_T *tp;
2196 char_u *low = NULL;
2197 char_u *fol = NULL;
2198 char_u *upp = NULL;
2199 int do_rep;
2200 int do_repsal;
2201 int do_sal;
2202 int do_mapline;
2203 int found_map = FALSE;
2204 hashitem_T *hi;
2205 int l;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002206 int compminlen = 0; // COMPOUNDMIN value
2207 int compsylmax = 0; // COMPOUNDSYLMAX value
2208 int compoptions = 0; // COMP_ flags
2209 int compmax = 0; // COMPOUNDWORDMAX value
2210 char_u *compflags = NULL; // COMPOUNDFLAG and COMPOUNDRULE
2211 // concatenated
2212 char_u *midword = NULL; // MIDWORD value
2213 char_u *syllable = NULL; // SYLLABLE value
2214 char_u *sofofrom = NULL; // SOFOFROM value
2215 char_u *sofoto = NULL; // SOFOTO value
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002216
2217 /*
2218 * Open the file.
2219 */
2220 fd = mch_fopen((char *)fname, "r");
2221 if (fd == NULL)
2222 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002223 semsg(_(e_notopen), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002224 return NULL;
2225 }
2226
Bram Moolenaarc1669272018-06-19 14:23:53 +02002227 vim_snprintf((char *)IObuff, IOSIZE, _("Reading affix file %s..."), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002228 spell_message(spin, IObuff);
2229
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002230 // Only do REP lines when not done in another .aff file already.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002231 do_rep = spin->si_rep.ga_len == 0;
2232
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002233 // Only do REPSAL lines when not done in another .aff file already.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002234 do_repsal = spin->si_repsal.ga_len == 0;
2235
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002236 // Only do SAL lines when not done in another .aff file already.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002237 do_sal = spin->si_sal.ga_len == 0;
2238
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002239 // Only do MAP lines when not done in another .aff file already.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002240 do_mapline = spin->si_map.ga_len == 0;
2241
2242 /*
2243 * Allocate and init the afffile_T structure.
2244 */
2245 aff = (afffile_T *)getroom(spin, sizeof(afffile_T), TRUE);
2246 if (aff == NULL)
2247 {
2248 fclose(fd);
2249 return NULL;
2250 }
2251 hash_init(&aff->af_pref);
2252 hash_init(&aff->af_suff);
2253 hash_init(&aff->af_comp);
2254
2255 /*
2256 * Read all the lines in the file one by one.
2257 */
2258 while (!vim_fgets(rline, MAXLINELEN, fd) && !got_int)
2259 {
2260 line_breakcheck();
2261 ++lnum;
2262
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002263 // Skip comment lines.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002264 if (*rline == '#')
2265 continue;
2266
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002267 // Convert from "SET" to 'encoding' when needed.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002268 vim_free(pc);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002269 if (spin->si_conv.vc_type != CONV_NONE)
2270 {
2271 pc = string_convert(&spin->si_conv, rline, NULL);
2272 if (pc == NULL)
2273 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002274 smsg(_("Conversion failure for word in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002275 fname, lnum, rline);
2276 continue;
2277 }
2278 line = pc;
2279 }
2280 else
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002281 {
2282 pc = NULL;
2283 line = rline;
2284 }
2285
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002286 // Split the line up in white separated items. Put a NUL after each
2287 // item.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002288 itemcnt = 0;
2289 for (p = line; ; )
2290 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002291 while (*p != NUL && *p <= ' ') // skip white space and CR/NL
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002292 ++p;
2293 if (*p == NUL)
2294 break;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002295 if (itemcnt == MAXITEMCNT) // too many items
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002296 break;
2297 items[itemcnt++] = p;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002298 // A few items have arbitrary text argument, don't split them.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002299 if (itemcnt == 2 && spell_info_item(items[0]))
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002300 while (*p >= ' ' || *p == TAB) // skip until CR/NL
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002301 ++p;
2302 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002303 while (*p > ' ') // skip until white space or CR/NL
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002304 ++p;
2305 if (*p == NUL)
2306 break;
2307 *p++ = NUL;
2308 }
2309
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002310 // Handle non-empty lines.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002311 if (itemcnt > 0)
2312 {
2313 if (is_aff_rule(items, itemcnt, "SET", 2) && aff->af_enc == NULL)
2314 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002315 // Setup for conversion from "ENC" to 'encoding'.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002316 aff->af_enc = enc_canonize(items[1]);
2317 if (aff->af_enc != NULL && !spin->si_ascii
2318 && convert_setup(&spin->si_conv, aff->af_enc,
2319 p_enc) == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002320 smsg(_("Conversion in %s not supported: from %s to %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002321 fname, aff->af_enc, p_enc);
2322 spin->si_conv.vc_fail = TRUE;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002323 }
2324 else if (is_aff_rule(items, itemcnt, "FLAG", 2)
2325 && aff->af_flagtype == AFT_CHAR)
2326 {
2327 if (STRCMP(items[1], "long") == 0)
2328 aff->af_flagtype = AFT_LONG;
2329 else if (STRCMP(items[1], "num") == 0)
2330 aff->af_flagtype = AFT_NUM;
2331 else if (STRCMP(items[1], "caplong") == 0)
2332 aff->af_flagtype = AFT_CAPLONG;
2333 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002334 smsg(_("Invalid value for FLAG in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002335 fname, lnum, items[1]);
2336 if (aff->af_rare != 0
2337 || aff->af_keepcase != 0
2338 || aff->af_bad != 0
2339 || aff->af_needaffix != 0
2340 || aff->af_circumfix != 0
2341 || aff->af_needcomp != 0
2342 || aff->af_comproot != 0
2343 || aff->af_nosuggest != 0
2344 || compflags != NULL
2345 || aff->af_suff.ht_used > 0
2346 || aff->af_pref.ht_used > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002347 smsg(_("FLAG after using flags in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002348 fname, lnum, items[1]);
2349 }
2350 else if (spell_info_item(items[0]))
2351 {
2352 p = (char_u *)getroom(spin,
2353 (spin->si_info == NULL ? 0 : STRLEN(spin->si_info))
2354 + STRLEN(items[0])
2355 + STRLEN(items[1]) + 3, FALSE);
2356 if (p != NULL)
2357 {
2358 if (spin->si_info != NULL)
2359 {
2360 STRCPY(p, spin->si_info);
2361 STRCAT(p, "\n");
2362 }
2363 STRCAT(p, items[0]);
2364 STRCAT(p, " ");
2365 STRCAT(p, items[1]);
2366 spin->si_info = p;
2367 }
2368 }
2369 else if (is_aff_rule(items, itemcnt, "MIDWORD", 2)
2370 && midword == NULL)
2371 {
2372 midword = getroom_save(spin, items[1]);
2373 }
2374 else if (is_aff_rule(items, itemcnt, "TRY", 2))
2375 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002376 // ignored, we look in the tree for what chars may appear
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002377 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002378 // TODO: remove "RAR" later
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002379 else if ((is_aff_rule(items, itemcnt, "RAR", 2)
2380 || is_aff_rule(items, itemcnt, "RARE", 2))
2381 && aff->af_rare == 0)
2382 {
2383 aff->af_rare = affitem2flag(aff->af_flagtype, items[1],
2384 fname, lnum);
2385 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002386 // TODO: remove "KEP" later
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002387 else if ((is_aff_rule(items, itemcnt, "KEP", 2)
2388 || is_aff_rule(items, itemcnt, "KEEPCASE", 2))
2389 && aff->af_keepcase == 0)
2390 {
2391 aff->af_keepcase = affitem2flag(aff->af_flagtype, items[1],
2392 fname, lnum);
2393 }
2394 else if ((is_aff_rule(items, itemcnt, "BAD", 2)
2395 || is_aff_rule(items, itemcnt, "FORBIDDENWORD", 2))
2396 && aff->af_bad == 0)
2397 {
2398 aff->af_bad = affitem2flag(aff->af_flagtype, items[1],
2399 fname, lnum);
2400 }
2401 else if (is_aff_rule(items, itemcnt, "NEEDAFFIX", 2)
2402 && aff->af_needaffix == 0)
2403 {
2404 aff->af_needaffix = affitem2flag(aff->af_flagtype, items[1],
2405 fname, lnum);
2406 }
2407 else if (is_aff_rule(items, itemcnt, "CIRCUMFIX", 2)
2408 && aff->af_circumfix == 0)
2409 {
2410 aff->af_circumfix = affitem2flag(aff->af_flagtype, items[1],
2411 fname, lnum);
2412 }
2413 else if (is_aff_rule(items, itemcnt, "NOSUGGEST", 2)
2414 && aff->af_nosuggest == 0)
2415 {
2416 aff->af_nosuggest = affitem2flag(aff->af_flagtype, items[1],
2417 fname, lnum);
2418 }
2419 else if ((is_aff_rule(items, itemcnt, "NEEDCOMPOUND", 2)
2420 || is_aff_rule(items, itemcnt, "ONLYINCOMPOUND", 2))
2421 && aff->af_needcomp == 0)
2422 {
2423 aff->af_needcomp = affitem2flag(aff->af_flagtype, items[1],
2424 fname, lnum);
2425 }
2426 else if (is_aff_rule(items, itemcnt, "COMPOUNDROOT", 2)
2427 && aff->af_comproot == 0)
2428 {
2429 aff->af_comproot = affitem2flag(aff->af_flagtype, items[1],
2430 fname, lnum);
2431 }
2432 else if (is_aff_rule(items, itemcnt, "COMPOUNDFORBIDFLAG", 2)
2433 && aff->af_compforbid == 0)
2434 {
2435 aff->af_compforbid = affitem2flag(aff->af_flagtype, items[1],
2436 fname, lnum);
2437 if (aff->af_pref.ht_used > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002438 smsg(_("Defining COMPOUNDFORBIDFLAG after PFX item may give wrong results in %s line %d"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002439 fname, lnum);
2440 }
2441 else if (is_aff_rule(items, itemcnt, "COMPOUNDPERMITFLAG", 2)
2442 && aff->af_comppermit == 0)
2443 {
2444 aff->af_comppermit = affitem2flag(aff->af_flagtype, items[1],
2445 fname, lnum);
2446 if (aff->af_pref.ht_used > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002447 smsg(_("Defining COMPOUNDPERMITFLAG after PFX item may give wrong results in %s line %d"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002448 fname, lnum);
2449 }
2450 else if (is_aff_rule(items, itemcnt, "COMPOUNDFLAG", 2)
2451 && compflags == NULL)
2452 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002453 // Turn flag "c" into COMPOUNDRULE compatible string "c+",
2454 // "Na" into "Na+", "1234" into "1234+".
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002455 p = getroom(spin, STRLEN(items[1]) + 2, FALSE);
2456 if (p != NULL)
2457 {
2458 STRCPY(p, items[1]);
2459 STRCAT(p, "+");
2460 compflags = p;
2461 }
2462 }
2463 else if (is_aff_rule(items, itemcnt, "COMPOUNDRULES", 2))
2464 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002465 // We don't use the count, but do check that it's a number and
2466 // not COMPOUNDRULE mistyped.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002467 if (atoi((char *)items[1]) == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002468 smsg(_("Wrong COMPOUNDRULES value in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002469 fname, lnum, items[1]);
2470 }
2471 else if (is_aff_rule(items, itemcnt, "COMPOUNDRULE", 2))
2472 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002473 // Don't use the first rule if it is a number.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002474 if (compflags != NULL || *skipdigits(items[1]) != NUL)
2475 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002476 // Concatenate this string to previously defined ones,
2477 // using a slash to separate them.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002478 l = (int)STRLEN(items[1]) + 1;
2479 if (compflags != NULL)
2480 l += (int)STRLEN(compflags) + 1;
2481 p = getroom(spin, l, FALSE);
2482 if (p != NULL)
2483 {
2484 if (compflags != NULL)
2485 {
2486 STRCPY(p, compflags);
2487 STRCAT(p, "/");
2488 }
2489 STRCAT(p, items[1]);
2490 compflags = p;
2491 }
2492 }
2493 }
2494 else if (is_aff_rule(items, itemcnt, "COMPOUNDWORDMAX", 2)
2495 && compmax == 0)
2496 {
2497 compmax = atoi((char *)items[1]);
2498 if (compmax == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002499 smsg(_("Wrong COMPOUNDWORDMAX value in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002500 fname, lnum, items[1]);
2501 }
2502 else if (is_aff_rule(items, itemcnt, "COMPOUNDMIN", 2)
2503 && compminlen == 0)
2504 {
2505 compminlen = atoi((char *)items[1]);
2506 if (compminlen == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002507 smsg(_("Wrong COMPOUNDMIN value in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002508 fname, lnum, items[1]);
2509 }
2510 else if (is_aff_rule(items, itemcnt, "COMPOUNDSYLMAX", 2)
2511 && compsylmax == 0)
2512 {
2513 compsylmax = atoi((char *)items[1]);
2514 if (compsylmax == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002515 smsg(_("Wrong COMPOUNDSYLMAX value in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002516 fname, lnum, items[1]);
2517 }
2518 else if (is_aff_rule(items, itemcnt, "CHECKCOMPOUNDDUP", 1))
2519 {
2520 compoptions |= COMP_CHECKDUP;
2521 }
2522 else if (is_aff_rule(items, itemcnt, "CHECKCOMPOUNDREP", 1))
2523 {
2524 compoptions |= COMP_CHECKREP;
2525 }
2526 else if (is_aff_rule(items, itemcnt, "CHECKCOMPOUNDCASE", 1))
2527 {
2528 compoptions |= COMP_CHECKCASE;
2529 }
2530 else if (is_aff_rule(items, itemcnt, "CHECKCOMPOUNDTRIPLE", 1))
2531 {
2532 compoptions |= COMP_CHECKTRIPLE;
2533 }
2534 else if (is_aff_rule(items, itemcnt, "CHECKCOMPOUNDPATTERN", 2))
2535 {
2536 if (atoi((char *)items[1]) == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002537 smsg(_("Wrong CHECKCOMPOUNDPATTERN value in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002538 fname, lnum, items[1]);
2539 }
2540 else if (is_aff_rule(items, itemcnt, "CHECKCOMPOUNDPATTERN", 3))
2541 {
2542 garray_T *gap = &spin->si_comppat;
2543 int i;
2544
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002545 // Only add the couple if it isn't already there.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002546 for (i = 0; i < gap->ga_len - 1; i += 2)
2547 if (STRCMP(((char_u **)(gap->ga_data))[i], items[1]) == 0
2548 && STRCMP(((char_u **)(gap->ga_data))[i + 1],
2549 items[2]) == 0)
2550 break;
2551 if (i >= gap->ga_len && ga_grow(gap, 2) == OK)
2552 {
2553 ((char_u **)(gap->ga_data))[gap->ga_len++]
2554 = getroom_save(spin, items[1]);
2555 ((char_u **)(gap->ga_data))[gap->ga_len++]
2556 = getroom_save(spin, items[2]);
2557 }
2558 }
2559 else if (is_aff_rule(items, itemcnt, "SYLLABLE", 2)
2560 && syllable == NULL)
2561 {
2562 syllable = getroom_save(spin, items[1]);
2563 }
2564 else if (is_aff_rule(items, itemcnt, "NOBREAK", 1))
2565 {
2566 spin->si_nobreak = TRUE;
2567 }
2568 else if (is_aff_rule(items, itemcnt, "NOSPLITSUGS", 1))
2569 {
2570 spin->si_nosplitsugs = TRUE;
2571 }
2572 else if (is_aff_rule(items, itemcnt, "NOCOMPOUNDSUGS", 1))
2573 {
2574 spin->si_nocompoundsugs = TRUE;
2575 }
2576 else if (is_aff_rule(items, itemcnt, "NOSUGFILE", 1))
2577 {
2578 spin->si_nosugfile = TRUE;
2579 }
2580 else if (is_aff_rule(items, itemcnt, "PFXPOSTPONE", 1))
2581 {
2582 aff->af_pfxpostpone = TRUE;
2583 }
2584 else if (is_aff_rule(items, itemcnt, "IGNOREEXTRA", 1))
2585 {
2586 aff->af_ignoreextra = TRUE;
2587 }
2588 else if ((STRCMP(items[0], "PFX") == 0
2589 || STRCMP(items[0], "SFX") == 0)
2590 && aff_todo == 0
2591 && itemcnt >= 4)
2592 {
2593 int lasti = 4;
2594 char_u key[AH_KEY_LEN];
2595
2596 if (*items[0] == 'P')
2597 tp = &aff->af_pref;
2598 else
2599 tp = &aff->af_suff;
2600
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002601 // Myspell allows the same affix name to be used multiple
2602 // times. The affix files that do this have an undocumented
2603 // "S" flag on all but the last block, thus we check for that
2604 // and store it in ah_follows.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002605 vim_strncpy(key, items[1], AH_KEY_LEN - 1);
2606 hi = hash_find(tp, key);
2607 if (!HASHITEM_EMPTY(hi))
2608 {
2609 cur_aff = HI2AH(hi);
2610 if (cur_aff->ah_combine != (*items[2] == 'Y'))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002611 smsg(_("Different combining flag in continued affix block in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002612 fname, lnum, items[1]);
2613 if (!cur_aff->ah_follows)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002614 smsg(_("Duplicate affix in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002615 fname, lnum, items[1]);
2616 }
2617 else
2618 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002619 // New affix letter.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002620 cur_aff = (affheader_T *)getroom(spin,
2621 sizeof(affheader_T), TRUE);
2622 if (cur_aff == NULL)
2623 break;
2624 cur_aff->ah_flag = affitem2flag(aff->af_flagtype, items[1],
2625 fname, lnum);
2626 if (cur_aff->ah_flag == 0 || STRLEN(items[1]) >= AH_KEY_LEN)
2627 break;
2628 if (cur_aff->ah_flag == aff->af_bad
2629 || cur_aff->ah_flag == aff->af_rare
2630 || cur_aff->ah_flag == aff->af_keepcase
2631 || cur_aff->ah_flag == aff->af_needaffix
2632 || cur_aff->ah_flag == aff->af_circumfix
2633 || cur_aff->ah_flag == aff->af_nosuggest
2634 || cur_aff->ah_flag == aff->af_needcomp
2635 || cur_aff->ah_flag == aff->af_comproot)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002636 smsg(_("Affix also used for BAD/RARE/KEEPCASE/NEEDAFFIX/NEEDCOMPOUND/NOSUGGEST in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002637 fname, lnum, items[1]);
2638 STRCPY(cur_aff->ah_key, items[1]);
2639 hash_add(tp, cur_aff->ah_key);
2640
2641 cur_aff->ah_combine = (*items[2] == 'Y');
2642 }
2643
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002644 // Check for the "S" flag, which apparently means that another
2645 // block with the same affix name is following.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002646 if (itemcnt > lasti && STRCMP(items[lasti], "S") == 0)
2647 {
2648 ++lasti;
2649 cur_aff->ah_follows = TRUE;
2650 }
2651 else
2652 cur_aff->ah_follows = FALSE;
2653
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002654 // Myspell allows extra text after the item, but that might
2655 // mean mistakes go unnoticed. Require a comment-starter.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002656 if (itemcnt > lasti && *items[lasti] != '#')
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002657 smsg(_(e_afftrailing), fname, lnum, items[lasti]);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002658
2659 if (STRCMP(items[2], "Y") != 0 && STRCMP(items[2], "N") != 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002660 smsg(_("Expected Y or N in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002661 fname, lnum, items[2]);
2662
2663 if (*items[0] == 'P' && aff->af_pfxpostpone)
2664 {
2665 if (cur_aff->ah_newID == 0)
2666 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002667 // Use a new number in the .spl file later, to be able
2668 // to handle multiple .aff files.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002669 check_renumber(spin);
2670 cur_aff->ah_newID = ++spin->si_newprefID;
2671
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002672 // We only really use ah_newID if the prefix is
2673 // postponed. We know that only after handling all
2674 // the items.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002675 did_postpone_prefix = FALSE;
2676 }
2677 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002678 // Did use the ID in a previous block.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002679 did_postpone_prefix = TRUE;
2680 }
2681
2682 aff_todo = atoi((char *)items[3]);
2683 }
2684 else if ((STRCMP(items[0], "PFX") == 0
2685 || STRCMP(items[0], "SFX") == 0)
2686 && aff_todo > 0
2687 && STRCMP(cur_aff->ah_key, items[1]) == 0
2688 && itemcnt >= 5)
2689 {
2690 affentry_T *aff_entry;
2691 int upper = FALSE;
2692 int lasti = 5;
2693
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002694 // Myspell allows extra text after the item, but that might
2695 // mean mistakes go unnoticed. Require a comment-starter,
2696 // unless IGNOREEXTRA is used. Hunspell uses a "-" item.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002697 if (itemcnt > lasti
2698 && !aff->af_ignoreextra
2699 && *items[lasti] != '#'
2700 && (STRCMP(items[lasti], "-") != 0
2701 || itemcnt != lasti + 1))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002702 smsg(_(e_afftrailing), fname, lnum, items[lasti]);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002703
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002704 // New item for an affix letter.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002705 --aff_todo;
2706 aff_entry = (affentry_T *)getroom(spin,
2707 sizeof(affentry_T), TRUE);
2708 if (aff_entry == NULL)
2709 break;
2710
2711 if (STRCMP(items[2], "0") != 0)
2712 aff_entry->ae_chop = getroom_save(spin, items[2]);
2713 if (STRCMP(items[3], "0") != 0)
2714 {
2715 aff_entry->ae_add = getroom_save(spin, items[3]);
2716
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002717 // Recognize flags on the affix: abcd/XYZ
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002718 aff_entry->ae_flags = vim_strchr(aff_entry->ae_add, '/');
2719 if (aff_entry->ae_flags != NULL)
2720 {
2721 *aff_entry->ae_flags++ = NUL;
2722 aff_process_flags(aff, aff_entry);
2723 }
2724 }
2725
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002726 // Don't use an affix entry with non-ASCII characters when
2727 // "spin->si_ascii" is TRUE.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002728 if (!spin->si_ascii || !(has_non_ascii(aff_entry->ae_chop)
2729 || has_non_ascii(aff_entry->ae_add)))
2730 {
2731 aff_entry->ae_next = cur_aff->ah_first;
2732 cur_aff->ah_first = aff_entry;
2733
2734 if (STRCMP(items[4], ".") != 0)
2735 {
2736 char_u buf[MAXLINELEN];
2737
2738 aff_entry->ae_cond = getroom_save(spin, items[4]);
2739 if (*items[0] == 'P')
2740 sprintf((char *)buf, "^%s", items[4]);
2741 else
2742 sprintf((char *)buf, "%s$", items[4]);
2743 aff_entry->ae_prog = vim_regcomp(buf,
2744 RE_MAGIC + RE_STRING + RE_STRICT);
2745 if (aff_entry->ae_prog == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002746 smsg(_("Broken condition in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002747 fname, lnum, items[4]);
2748 }
2749
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002750 // For postponed prefixes we need an entry in si_prefcond
2751 // for the condition. Use an existing one if possible.
2752 // Can't be done for an affix with flags, ignoring
2753 // COMPOUNDFORBIDFLAG and COMPOUNDPERMITFLAG.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002754 if (*items[0] == 'P' && aff->af_pfxpostpone
2755 && aff_entry->ae_flags == NULL)
2756 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002757 // When the chop string is one lower-case letter and
2758 // the add string ends in the upper-case letter we set
2759 // the "upper" flag, clear "ae_chop" and remove the
2760 // letters from "ae_add". The condition must either
2761 // be empty or start with the same letter.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002762 if (aff_entry->ae_chop != NULL
2763 && aff_entry->ae_add != NULL
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002764 && aff_entry->ae_chop[(*mb_ptr2len)(
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002765 aff_entry->ae_chop)] == NUL)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002766 {
2767 int c, c_up;
2768
2769 c = PTR2CHAR(aff_entry->ae_chop);
2770 c_up = SPELL_TOUPPER(c);
2771 if (c_up != c
2772 && (aff_entry->ae_cond == NULL
2773 || PTR2CHAR(aff_entry->ae_cond) == c))
2774 {
2775 p = aff_entry->ae_add
2776 + STRLEN(aff_entry->ae_add);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002777 MB_PTR_BACK(aff_entry->ae_add, p);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002778 if (PTR2CHAR(p) == c_up)
2779 {
2780 upper = TRUE;
2781 aff_entry->ae_chop = NULL;
2782 *p = NUL;
2783
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002784 // The condition is matched with the
2785 // actual word, thus must check for the
2786 // upper-case letter.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002787 if (aff_entry->ae_cond != NULL)
2788 {
2789 char_u buf[MAXLINELEN];
Bram Moolenaar264b74f2019-01-24 17:18:42 +01002790
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002791 if (has_mbyte)
2792 {
2793 onecap_copy(items[4], buf, TRUE);
2794 aff_entry->ae_cond = getroom_save(
2795 spin, buf);
2796 }
2797 else
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002798 *aff_entry->ae_cond = c_up;
2799 if (aff_entry->ae_cond != NULL)
2800 {
2801 sprintf((char *)buf, "^%s",
2802 aff_entry->ae_cond);
2803 vim_regfree(aff_entry->ae_prog);
2804 aff_entry->ae_prog = vim_regcomp(
2805 buf, RE_MAGIC + RE_STRING);
2806 }
2807 }
2808 }
2809 }
2810 }
2811
2812 if (aff_entry->ae_chop == NULL
2813 && aff_entry->ae_flags == NULL)
2814 {
2815 int idx;
2816 char_u **pp;
2817 int n;
2818
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002819 // Find a previously used condition.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002820 for (idx = spin->si_prefcond.ga_len - 1; idx >= 0;
2821 --idx)
2822 {
2823 p = ((char_u **)spin->si_prefcond.ga_data)[idx];
2824 if (str_equal(p, aff_entry->ae_cond))
2825 break;
2826 }
2827 if (idx < 0 && ga_grow(&spin->si_prefcond, 1) == OK)
2828 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002829 // Not found, add a new condition.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002830 idx = spin->si_prefcond.ga_len++;
2831 pp = ((char_u **)spin->si_prefcond.ga_data)
2832 + idx;
2833 if (aff_entry->ae_cond == NULL)
2834 *pp = NULL;
2835 else
2836 *pp = getroom_save(spin,
2837 aff_entry->ae_cond);
2838 }
2839
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002840 // Add the prefix to the prefix tree.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002841 if (aff_entry->ae_add == NULL)
2842 p = (char_u *)"";
2843 else
2844 p = aff_entry->ae_add;
2845
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002846 // PFX_FLAGS is a negative number, so that
2847 // tree_add_word() knows this is the prefix tree.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002848 n = PFX_FLAGS;
2849 if (!cur_aff->ah_combine)
2850 n |= WFP_NC;
2851 if (upper)
2852 n |= WFP_UP;
2853 if (aff_entry->ae_comppermit)
2854 n |= WFP_COMPPERMIT;
2855 if (aff_entry->ae_compforbid)
2856 n |= WFP_COMPFORBID;
2857 tree_add_word(spin, p, spin->si_prefroot, n,
2858 idx, cur_aff->ah_newID);
2859 did_postpone_prefix = TRUE;
2860 }
2861
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002862 // Didn't actually use ah_newID, backup si_newprefID.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002863 if (aff_todo == 0 && !did_postpone_prefix)
2864 {
2865 --spin->si_newprefID;
2866 cur_aff->ah_newID = 0;
2867 }
2868 }
2869 }
2870 }
2871 else if (is_aff_rule(items, itemcnt, "FOL", 2) && fol == NULL)
2872 {
2873 fol = vim_strsave(items[1]);
2874 }
2875 else if (is_aff_rule(items, itemcnt, "LOW", 2) && low == NULL)
2876 {
2877 low = vim_strsave(items[1]);
2878 }
2879 else if (is_aff_rule(items, itemcnt, "UPP", 2) && upp == NULL)
2880 {
2881 upp = vim_strsave(items[1]);
2882 }
2883 else if (is_aff_rule(items, itemcnt, "REP", 2)
2884 || is_aff_rule(items, itemcnt, "REPSAL", 2))
2885 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002886 // Ignore REP/REPSAL count
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002887 if (!isdigit(*items[1]))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002888 smsg(_("Expected REP(SAL) count in %s line %d"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002889 fname, lnum);
2890 }
2891 else if ((STRCMP(items[0], "REP") == 0
2892 || STRCMP(items[0], "REPSAL") == 0)
2893 && itemcnt >= 3)
2894 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002895 // REP/REPSAL item
2896 // Myspell ignores extra arguments, we require it starts with
2897 // # to detect mistakes.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002898 if (itemcnt > 3 && items[3][0] != '#')
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002899 smsg(_(e_afftrailing), fname, lnum, items[3]);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002900 if (items[0][3] == 'S' ? do_repsal : do_rep)
2901 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002902 // Replace underscore with space (can't include a space
2903 // directly).
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002904 for (p = items[1]; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002905 if (*p == '_')
2906 *p = ' ';
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002907 for (p = items[2]; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002908 if (*p == '_')
2909 *p = ' ';
2910 add_fromto(spin, items[0][3] == 'S'
2911 ? &spin->si_repsal
2912 : &spin->si_rep, items[1], items[2]);
2913 }
2914 }
2915 else if (is_aff_rule(items, itemcnt, "MAP", 2))
2916 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002917 // MAP item or count
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002918 if (!found_map)
2919 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002920 // First line contains the count.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002921 found_map = TRUE;
2922 if (!isdigit(*items[1]))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002923 smsg(_("Expected MAP count in %s line %d"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002924 fname, lnum);
2925 }
2926 else if (do_mapline)
2927 {
2928 int c;
2929
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002930 // Check that every character appears only once.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002931 for (p = items[1]; *p != NUL; )
2932 {
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002933 c = mb_ptr2char_adv(&p);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002934 if ((spin->si_map.ga_len > 0
2935 && vim_strchr(spin->si_map.ga_data, c)
2936 != NULL)
2937 || vim_strchr(p, c) != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002938 smsg(_("Duplicate character in MAP in %s line %d"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002939 fname, lnum);
2940 }
2941
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002942 // We simply concatenate all the MAP strings, separated by
2943 // slashes.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002944 ga_concat(&spin->si_map, items[1]);
2945 ga_append(&spin->si_map, '/');
2946 }
2947 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002948 // Accept "SAL from to" and "SAL from to #comment".
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002949 else if (is_aff_rule(items, itemcnt, "SAL", 3))
2950 {
2951 if (do_sal)
2952 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002953 // SAL item (sounds-a-like)
2954 // Either one of the known keys or a from-to pair.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002955 if (STRCMP(items[1], "followup") == 0)
2956 spin->si_followup = sal_to_bool(items[2]);
2957 else if (STRCMP(items[1], "collapse_result") == 0)
2958 spin->si_collapse = sal_to_bool(items[2]);
2959 else if (STRCMP(items[1], "remove_accents") == 0)
2960 spin->si_rem_accents = sal_to_bool(items[2]);
2961 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01002962 // when "to" is "_" it means empty
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002963 add_fromto(spin, &spin->si_sal, items[1],
2964 STRCMP(items[2], "_") == 0 ? (char_u *)""
2965 : items[2]);
2966 }
2967 }
2968 else if (is_aff_rule(items, itemcnt, "SOFOFROM", 2)
2969 && sofofrom == NULL)
2970 {
2971 sofofrom = getroom_save(spin, items[1]);
2972 }
2973 else if (is_aff_rule(items, itemcnt, "SOFOTO", 2)
2974 && sofoto == NULL)
2975 {
2976 sofoto = getroom_save(spin, items[1]);
2977 }
2978 else if (STRCMP(items[0], "COMMON") == 0)
2979 {
2980 int i;
2981
2982 for (i = 1; i < itemcnt; ++i)
2983 {
2984 if (HASHITEM_EMPTY(hash_find(&spin->si_commonwords,
2985 items[i])))
2986 {
2987 p = vim_strsave(items[i]);
2988 if (p == NULL)
2989 break;
2990 hash_add(&spin->si_commonwords, p);
2991 }
2992 }
2993 }
2994 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002995 smsg(_("Unrecognized or duplicate item in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02002996 fname, lnum, items[0]);
2997 }
2998 }
2999
3000 if (fol != NULL || low != NULL || upp != NULL)
3001 {
3002 if (spin->si_clear_chartab)
3003 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003004 // Clear the char type tables, don't want to use any of the
3005 // currently used spell properties.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003006 init_spell_chartab();
3007 spin->si_clear_chartab = FALSE;
3008 }
3009
3010 /*
3011 * Don't write a word table for an ASCII file, so that we don't check
3012 * for conflicts with a word table that matches 'encoding'.
3013 * Don't write one for utf-8 either, we use utf_*() and
3014 * mb_get_class(), the list of chars in the file will be incomplete.
3015 */
Bram Moolenaar264b74f2019-01-24 17:18:42 +01003016 if (!spin->si_ascii && !enc_utf8)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003017 {
3018 if (fol == NULL || low == NULL || upp == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003019 smsg(_("Missing FOL/LOW/UPP line in %s"), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003020 else
3021 (void)set_spell_chartab(fol, low, upp);
3022 }
3023
3024 vim_free(fol);
3025 vim_free(low);
3026 vim_free(upp);
3027 }
3028
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003029 // Use compound specifications of the .aff file for the spell info.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003030 if (compmax != 0)
3031 {
3032 aff_check_number(spin->si_compmax, compmax, "COMPOUNDWORDMAX");
3033 spin->si_compmax = compmax;
3034 }
3035
3036 if (compminlen != 0)
3037 {
3038 aff_check_number(spin->si_compminlen, compminlen, "COMPOUNDMIN");
3039 spin->si_compminlen = compminlen;
3040 }
3041
3042 if (compsylmax != 0)
3043 {
3044 if (syllable == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003045 smsg(_("COMPOUNDSYLMAX used without SYLLABLE"));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003046 aff_check_number(spin->si_compsylmax, compsylmax, "COMPOUNDSYLMAX");
3047 spin->si_compsylmax = compsylmax;
3048 }
3049
3050 if (compoptions != 0)
3051 {
3052 aff_check_number(spin->si_compoptions, compoptions, "COMPOUND options");
3053 spin->si_compoptions |= compoptions;
3054 }
3055
3056 if (compflags != NULL)
3057 process_compflags(spin, aff, compflags);
3058
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003059 // Check that we didn't use too many renumbered flags.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003060 if (spin->si_newcompID < spin->si_newprefID)
3061 {
3062 if (spin->si_newcompID == 127 || spin->si_newcompID == 255)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003063 msg(_("Too many postponed prefixes"));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003064 else if (spin->si_newprefID == 0 || spin->si_newprefID == 127)
Bram Moolenaar32526b32019-01-19 17:43:09 +01003065 msg(_("Too many compound flags"));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003066 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01003067 msg(_("Too many postponed prefixes and/or compound flags"));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003068 }
3069
3070 if (syllable != NULL)
3071 {
3072 aff_check_string(spin->si_syllable, syllable, "SYLLABLE");
3073 spin->si_syllable = syllable;
3074 }
3075
3076 if (sofofrom != NULL || sofoto != NULL)
3077 {
3078 if (sofofrom == NULL || sofoto == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003079 smsg(_("Missing SOFO%s line in %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003080 sofofrom == NULL ? "FROM" : "TO", fname);
3081 else if (spin->si_sal.ga_len > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003082 smsg(_("Both SAL and SOFO lines in %s"), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003083 else
3084 {
3085 aff_check_string(spin->si_sofofr, sofofrom, "SOFOFROM");
3086 aff_check_string(spin->si_sofoto, sofoto, "SOFOTO");
3087 spin->si_sofofr = sofofrom;
3088 spin->si_sofoto = sofoto;
3089 }
3090 }
3091
3092 if (midword != NULL)
3093 {
3094 aff_check_string(spin->si_midword, midword, "MIDWORD");
3095 spin->si_midword = midword;
3096 }
3097
3098 vim_free(pc);
3099 fclose(fd);
3100 return aff;
3101}
3102
3103/*
3104 * Return TRUE when items[0] equals "rulename", there are "mincount" items or
3105 * a comment is following after item "mincount".
3106 */
3107 static int
3108is_aff_rule(
3109 char_u **items,
3110 int itemcnt,
3111 char *rulename,
3112 int mincount)
3113{
3114 return (STRCMP(items[0], rulename) == 0
3115 && (itemcnt == mincount
3116 || (itemcnt > mincount && items[mincount][0] == '#')));
3117}
3118
3119/*
3120 * For affix "entry" move COMPOUNDFORBIDFLAG and COMPOUNDPERMITFLAG from
3121 * ae_flags to ae_comppermit and ae_compforbid.
3122 */
3123 static void
3124aff_process_flags(afffile_T *affile, affentry_T *entry)
3125{
3126 char_u *p;
3127 char_u *prevp;
3128 unsigned flag;
3129
3130 if (entry->ae_flags != NULL
3131 && (affile->af_compforbid != 0 || affile->af_comppermit != 0))
3132 {
3133 for (p = entry->ae_flags; *p != NUL; )
3134 {
3135 prevp = p;
3136 flag = get_affitem(affile->af_flagtype, &p);
3137 if (flag == affile->af_comppermit || flag == affile->af_compforbid)
3138 {
3139 STRMOVE(prevp, p);
3140 p = prevp;
3141 if (flag == affile->af_comppermit)
3142 entry->ae_comppermit = TRUE;
3143 else
3144 entry->ae_compforbid = TRUE;
3145 }
3146 if (affile->af_flagtype == AFT_NUM && *p == ',')
3147 ++p;
3148 }
3149 if (*entry->ae_flags == NUL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003150 entry->ae_flags = NULL; // nothing left
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003151 }
3152}
3153
3154/*
3155 * Return TRUE if "s" is the name of an info item in the affix file.
3156 */
3157 static int
3158spell_info_item(char_u *s)
3159{
3160 return STRCMP(s, "NAME") == 0
3161 || STRCMP(s, "HOME") == 0
3162 || STRCMP(s, "VERSION") == 0
3163 || STRCMP(s, "AUTHOR") == 0
3164 || STRCMP(s, "EMAIL") == 0
3165 || STRCMP(s, "COPYRIGHT") == 0;
3166}
3167
3168/*
3169 * Turn an affix flag name into a number, according to the FLAG type.
3170 * returns zero for failure.
3171 */
3172 static unsigned
3173affitem2flag(
3174 int flagtype,
3175 char_u *item,
3176 char_u *fname,
3177 int lnum)
3178{
3179 unsigned res;
3180 char_u *p = item;
3181
3182 res = get_affitem(flagtype, &p);
3183 if (res == 0)
3184 {
3185 if (flagtype == AFT_NUM)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003186 smsg(_("Flag is not a number in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003187 fname, lnum, item);
3188 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003189 smsg(_("Illegal flag in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003190 fname, lnum, item);
3191 }
3192 if (*p != NUL)
3193 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003194 smsg(_(e_affname), fname, lnum, item);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003195 return 0;
3196 }
3197
3198 return res;
3199}
3200
3201/*
3202 * Get one affix name from "*pp" and advance the pointer.
Bram Moolenaar3d2a47c2019-11-07 20:48:42 +01003203 * Returns ZERO_FLAG for "0".
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003204 * Returns zero for an error, still advances the pointer then.
3205 */
3206 static unsigned
3207get_affitem(int flagtype, char_u **pp)
3208{
3209 int res;
3210
3211 if (flagtype == AFT_NUM)
3212 {
3213 if (!VIM_ISDIGIT(**pp))
3214 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003215 ++*pp; // always advance, avoid getting stuck
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003216 return 0;
3217 }
3218 res = getdigits(pp);
Bram Moolenaar3d2a47c2019-11-07 20:48:42 +01003219 if (res == 0)
3220 res = ZERO_FLAG;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003221 }
3222 else
3223 {
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003224 res = mb_ptr2char_adv(pp);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003225 if (flagtype == AFT_LONG || (flagtype == AFT_CAPLONG
3226 && res >= 'A' && res <= 'Z'))
3227 {
3228 if (**pp == NUL)
3229 return 0;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003230 res = mb_ptr2char_adv(pp) + (res << 16);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003231 }
3232 }
3233 return res;
3234}
3235
3236/*
3237 * Process the "compflags" string used in an affix file and append it to
3238 * spin->si_compflags.
3239 * The processing involves changing the affix names to ID numbers, so that
3240 * they fit in one byte.
3241 */
3242 static void
3243process_compflags(
3244 spellinfo_T *spin,
3245 afffile_T *aff,
3246 char_u *compflags)
3247{
3248 char_u *p;
3249 char_u *prevp;
3250 unsigned flag;
3251 compitem_T *ci;
3252 int id;
3253 int len;
3254 char_u *tp;
3255 char_u key[AH_KEY_LEN];
3256 hashitem_T *hi;
3257
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003258 // Make room for the old and the new compflags, concatenated with a / in
3259 // between. Processing it makes it shorter, but we don't know by how
3260 // much, thus allocate the maximum.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003261 len = (int)STRLEN(compflags) + 1;
3262 if (spin->si_compflags != NULL)
3263 len += (int)STRLEN(spin->si_compflags) + 1;
3264 p = getroom(spin, len, FALSE);
3265 if (p == NULL)
3266 return;
3267 if (spin->si_compflags != NULL)
3268 {
3269 STRCPY(p, spin->si_compflags);
3270 STRCAT(p, "/");
3271 }
3272 spin->si_compflags = p;
3273 tp = p + STRLEN(p);
3274
3275 for (p = compflags; *p != NUL; )
3276 {
3277 if (vim_strchr((char_u *)"/?*+[]", *p) != NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003278 // Copy non-flag characters directly.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003279 *tp++ = *p++;
3280 else
3281 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003282 // First get the flag number, also checks validity.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003283 prevp = p;
3284 flag = get_affitem(aff->af_flagtype, &p);
3285 if (flag != 0)
3286 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003287 // Find the flag in the hashtable. If it was used before, use
3288 // the existing ID. Otherwise add a new entry.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003289 vim_strncpy(key, prevp, p - prevp);
3290 hi = hash_find(&aff->af_comp, key);
3291 if (!HASHITEM_EMPTY(hi))
3292 id = HI2CI(hi)->ci_newID;
3293 else
3294 {
3295 ci = (compitem_T *)getroom(spin, sizeof(compitem_T), TRUE);
3296 if (ci == NULL)
3297 break;
3298 STRCPY(ci->ci_key, key);
3299 ci->ci_flag = flag;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003300 // Avoid using a flag ID that has a special meaning in a
3301 // regexp (also inside []).
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003302 do
3303 {
3304 check_renumber(spin);
3305 id = spin->si_newcompID--;
3306 } while (vim_strchr((char_u *)"/?*+[]\\-^", id) != NULL);
3307 ci->ci_newID = id;
3308 hash_add(&aff->af_comp, ci->ci_key);
3309 }
3310 *tp++ = id;
3311 }
3312 if (aff->af_flagtype == AFT_NUM && *p == ',')
3313 ++p;
3314 }
3315 }
3316
3317 *tp = NUL;
3318}
3319
3320/*
3321 * Check that the new IDs for postponed affixes and compounding don't overrun
3322 * each other. We have almost 255 available, but start at 0-127 to avoid
3323 * using two bytes for utf-8. When the 0-127 range is used up go to 128-255.
3324 * When that is used up an error message is given.
3325 */
3326 static void
3327check_renumber(spellinfo_T *spin)
3328{
3329 if (spin->si_newprefID == spin->si_newcompID && spin->si_newcompID < 128)
3330 {
3331 spin->si_newprefID = 127;
3332 spin->si_newcompID = 255;
3333 }
3334}
3335
3336/*
3337 * Return TRUE if flag "flag" appears in affix list "afflist".
3338 */
3339 static int
3340flag_in_afflist(int flagtype, char_u *afflist, unsigned flag)
3341{
3342 char_u *p;
3343 unsigned n;
3344
3345 switch (flagtype)
3346 {
3347 case AFT_CHAR:
3348 return vim_strchr(afflist, flag) != NULL;
3349
3350 case AFT_CAPLONG:
3351 case AFT_LONG:
3352 for (p = afflist; *p != NUL; )
3353 {
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003354 n = mb_ptr2char_adv(&p);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003355 if ((flagtype == AFT_LONG || (n >= 'A' && n <= 'Z'))
3356 && *p != NUL)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003357 n = mb_ptr2char_adv(&p) + (n << 16);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003358 if (n == flag)
3359 return TRUE;
3360 }
3361 break;
3362
3363 case AFT_NUM:
3364 for (p = afflist; *p != NUL; )
3365 {
3366 n = getdigits(&p);
Bram Moolenaar3d2a47c2019-11-07 20:48:42 +01003367 if (n == 0)
3368 n = ZERO_FLAG;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003369 if (n == flag)
3370 return TRUE;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003371 if (*p != NUL) // skip over comma
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003372 ++p;
3373 }
3374 break;
3375 }
3376 return FALSE;
3377}
3378
3379/*
3380 * Give a warning when "spinval" and "affval" numbers are set and not the same.
3381 */
3382 static void
3383aff_check_number(int spinval, int affval, char *name)
3384{
3385 if (spinval != 0 && spinval != affval)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003386 smsg(_("%s value differs from what is used in another .aff file"), name);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003387}
3388
3389/*
3390 * Give a warning when "spinval" and "affval" strings are set and not the same.
3391 */
3392 static void
3393aff_check_string(char_u *spinval, char_u *affval, char *name)
3394{
3395 if (spinval != NULL && STRCMP(spinval, affval) != 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003396 smsg(_("%s value differs from what is used in another .aff file"), name);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003397}
3398
3399/*
3400 * Return TRUE if strings "s1" and "s2" are equal. Also consider both being
3401 * NULL as equal.
3402 */
3403 static int
3404str_equal(char_u *s1, char_u *s2)
3405{
3406 if (s1 == NULL || s2 == NULL)
3407 return s1 == s2;
3408 return STRCMP(s1, s2) == 0;
3409}
3410
3411/*
3412 * Add a from-to item to "gap". Used for REP and SAL items.
3413 * They are stored case-folded.
3414 */
3415 static void
3416add_fromto(
3417 spellinfo_T *spin,
3418 garray_T *gap,
3419 char_u *from,
3420 char_u *to)
3421{
3422 fromto_T *ftp;
3423 char_u word[MAXWLEN];
3424
3425 if (ga_grow(gap, 1) == OK)
3426 {
3427 ftp = ((fromto_T *)gap->ga_data) + gap->ga_len;
3428 (void)spell_casefold(from, (int)STRLEN(from), word, MAXWLEN);
3429 ftp->ft_from = getroom_save(spin, word);
3430 (void)spell_casefold(to, (int)STRLEN(to), word, MAXWLEN);
3431 ftp->ft_to = getroom_save(spin, word);
3432 ++gap->ga_len;
3433 }
3434}
3435
3436/*
3437 * Convert a boolean argument in a SAL line to TRUE or FALSE;
3438 */
3439 static int
3440sal_to_bool(char_u *s)
3441{
3442 return STRCMP(s, "1") == 0 || STRCMP(s, "true") == 0;
3443}
3444
3445/*
3446 * Free the structure filled by spell_read_aff().
3447 */
3448 static void
3449spell_free_aff(afffile_T *aff)
3450{
3451 hashtab_T *ht;
3452 hashitem_T *hi;
3453 int todo;
3454 affheader_T *ah;
3455 affentry_T *ae;
3456
3457 vim_free(aff->af_enc);
3458
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003459 // All this trouble to free the "ae_prog" items...
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003460 for (ht = &aff->af_pref; ; ht = &aff->af_suff)
3461 {
3462 todo = (int)ht->ht_used;
3463 for (hi = ht->ht_array; todo > 0; ++hi)
3464 {
3465 if (!HASHITEM_EMPTY(hi))
3466 {
3467 --todo;
3468 ah = HI2AH(hi);
3469 for (ae = ah->ah_first; ae != NULL; ae = ae->ae_next)
3470 vim_regfree(ae->ae_prog);
3471 }
3472 }
3473 if (ht == &aff->af_suff)
3474 break;
3475 }
3476
3477 hash_clear(&aff->af_pref);
3478 hash_clear(&aff->af_suff);
3479 hash_clear(&aff->af_comp);
3480}
3481
3482/*
3483 * Read dictionary file "fname".
3484 * Returns OK or FAIL;
3485 */
3486 static int
3487spell_read_dic(spellinfo_T *spin, char_u *fname, afffile_T *affile)
3488{
3489 hashtab_T ht;
3490 char_u line[MAXLINELEN];
3491 char_u *p;
3492 char_u *afflist;
3493 char_u store_afflist[MAXWLEN];
3494 int pfxlen;
3495 int need_affix;
3496 char_u *dw;
3497 char_u *pc;
3498 char_u *w;
3499 int l;
3500 hash_T hash;
3501 hashitem_T *hi;
3502 FILE *fd;
3503 int lnum = 1;
3504 int non_ascii = 0;
3505 int retval = OK;
3506 char_u message[MAXLINELEN + MAXWLEN];
3507 int flags;
3508 int duplicate = 0;
3509
3510 /*
3511 * Open the file.
3512 */
3513 fd = mch_fopen((char *)fname, "r");
3514 if (fd == NULL)
3515 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003516 semsg(_(e_notopen), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003517 return FAIL;
3518 }
3519
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003520 // The hashtable is only used to detect duplicated words.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003521 hash_init(&ht);
3522
3523 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaarc1669272018-06-19 14:23:53 +02003524 _("Reading dictionary file %s..."), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003525 spell_message(spin, IObuff);
3526
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003527 // start with a message for the first line
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003528 spin->si_msg_count = 999999;
3529
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003530 // Read and ignore the first line: word count.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003531 (void)vim_fgets(line, MAXLINELEN, fd);
3532 if (!vim_isdigit(*skipwhite(line)))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003533 semsg(_("E760: No word count in %s"), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003534
3535 /*
3536 * Read all the lines in the file one by one.
3537 * The words are converted to 'encoding' here, before being added to
3538 * the hashtable.
3539 */
3540 while (!vim_fgets(line, MAXLINELEN, fd) && !got_int)
3541 {
3542 line_breakcheck();
3543 ++lnum;
3544 if (line[0] == '#' || line[0] == '/')
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003545 continue; // comment line
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003546
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003547 // Remove CR, LF and white space from the end. White space halfway
3548 // the word is kept to allow e.g., "et al.".
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003549 l = (int)STRLEN(line);
3550 while (l > 0 && line[l - 1] <= ' ')
3551 --l;
3552 if (l == 0)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003553 continue; // empty line
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003554 line[l] = NUL;
3555
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003556 // Convert from "SET" to 'encoding' when needed.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003557 if (spin->si_conv.vc_type != CONV_NONE)
3558 {
3559 pc = string_convert(&spin->si_conv, line, NULL);
3560 if (pc == NULL)
3561 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003562 smsg(_("Conversion failure for word in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003563 fname, lnum, line);
3564 continue;
3565 }
3566 w = pc;
3567 }
3568 else
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003569 {
3570 pc = NULL;
3571 w = line;
3572 }
3573
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003574 // Truncate the word at the "/", set "afflist" to what follows.
3575 // Replace "\/" by "/" and "\\" by "\".
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003576 afflist = NULL;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003577 for (p = w; *p != NUL; MB_PTR_ADV(p))
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003578 {
3579 if (*p == '\\' && (p[1] == '\\' || p[1] == '/'))
3580 STRMOVE(p, p + 1);
3581 else if (*p == '/')
3582 {
3583 *p = NUL;
3584 afflist = p + 1;
3585 break;
3586 }
3587 }
3588
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003589 // Skip non-ASCII words when "spin->si_ascii" is TRUE.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003590 if (spin->si_ascii && has_non_ascii(w))
3591 {
3592 ++non_ascii;
3593 vim_free(pc);
3594 continue;
3595 }
3596
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003597 // This takes time, print a message every 10000 words.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003598 if (spin->si_verbose && spin->si_msg_count > 10000)
3599 {
3600 spin->si_msg_count = 0;
3601 vim_snprintf((char *)message, sizeof(message),
Bram Moolenaarea391762018-04-08 13:07:22 +02003602 _("line %6d, word %6ld - %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003603 lnum, spin->si_foldwcount + spin->si_keepwcount, w);
3604 msg_start();
Bram Moolenaar32526b32019-01-19 17:43:09 +01003605 msg_outtrans_long_attr(message, 0);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003606 msg_clr_eos();
3607 msg_didout = FALSE;
3608 msg_col = 0;
3609 out_flush();
3610 }
3611
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003612 // Store the word in the hashtable to be able to find duplicates.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003613 dw = (char_u *)getroom_save(spin, w);
3614 if (dw == NULL)
3615 {
3616 retval = FAIL;
3617 vim_free(pc);
3618 break;
3619 }
3620
3621 hash = hash_hash(dw);
3622 hi = hash_lookup(&ht, dw, hash);
3623 if (!HASHITEM_EMPTY(hi))
3624 {
3625 if (p_verbose > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003626 smsg(_("Duplicate word in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003627 fname, lnum, dw);
3628 else if (duplicate == 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003629 smsg(_("First duplicate word in %s line %d: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003630 fname, lnum, dw);
3631 ++duplicate;
3632 }
3633 else
3634 hash_add_item(&ht, hi, dw, hash);
3635
3636 flags = 0;
3637 store_afflist[0] = NUL;
3638 pfxlen = 0;
3639 need_affix = FALSE;
3640 if (afflist != NULL)
3641 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003642 // Extract flags from the affix list.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003643 flags |= get_affix_flags(affile, afflist);
3644
3645 if (affile->af_needaffix != 0 && flag_in_afflist(
3646 affile->af_flagtype, afflist, affile->af_needaffix))
3647 need_affix = TRUE;
3648
3649 if (affile->af_pfxpostpone)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003650 // Need to store the list of prefix IDs with the word.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003651 pfxlen = get_pfxlist(affile, afflist, store_afflist);
3652
3653 if (spin->si_compflags != NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003654 // Need to store the list of compound flags with the word.
3655 // Concatenate them to the list of prefix IDs.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003656 get_compflags(affile, afflist, store_afflist + pfxlen);
3657 }
3658
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003659 // Add the word to the word tree(s).
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003660 if (store_word(spin, dw, flags, spin->si_region,
3661 store_afflist, need_affix) == FAIL)
3662 retval = FAIL;
3663
3664 if (afflist != NULL)
3665 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003666 // Find all matching suffixes and add the resulting words.
3667 // Additionally do matching prefixes that combine.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003668 if (store_aff_word(spin, dw, afflist, affile,
3669 &affile->af_suff, &affile->af_pref,
3670 CONDIT_SUF, flags, store_afflist, pfxlen) == FAIL)
3671 retval = FAIL;
3672
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003673 // Find all matching prefixes and add the resulting words.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003674 if (store_aff_word(spin, dw, afflist, affile,
3675 &affile->af_pref, NULL,
3676 CONDIT_SUF, flags, store_afflist, pfxlen) == FAIL)
3677 retval = FAIL;
3678 }
3679
3680 vim_free(pc);
3681 }
3682
3683 if (duplicate > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003684 smsg(_("%d duplicate word(s) in %s"), duplicate, fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003685 if (spin->si_ascii && non_ascii > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003686 smsg(_("Ignored %d word(s) with non-ASCII characters in %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003687 non_ascii, fname);
3688 hash_clear(&ht);
3689
3690 fclose(fd);
3691 return retval;
3692}
3693
3694/*
3695 * Check for affix flags in "afflist" that are turned into word flags.
3696 * Return WF_ flags.
3697 */
3698 static int
3699get_affix_flags(afffile_T *affile, char_u *afflist)
3700{
3701 int flags = 0;
3702
3703 if (affile->af_keepcase != 0 && flag_in_afflist(
3704 affile->af_flagtype, afflist, affile->af_keepcase))
3705 flags |= WF_KEEPCAP | WF_FIXCAP;
3706 if (affile->af_rare != 0 && flag_in_afflist(
3707 affile->af_flagtype, afflist, affile->af_rare))
3708 flags |= WF_RARE;
3709 if (affile->af_bad != 0 && flag_in_afflist(
3710 affile->af_flagtype, afflist, affile->af_bad))
3711 flags |= WF_BANNED;
3712 if (affile->af_needcomp != 0 && flag_in_afflist(
3713 affile->af_flagtype, afflist, affile->af_needcomp))
3714 flags |= WF_NEEDCOMP;
3715 if (affile->af_comproot != 0 && flag_in_afflist(
3716 affile->af_flagtype, afflist, affile->af_comproot))
3717 flags |= WF_COMPROOT;
3718 if (affile->af_nosuggest != 0 && flag_in_afflist(
3719 affile->af_flagtype, afflist, affile->af_nosuggest))
3720 flags |= WF_NOSUGGEST;
3721 return flags;
3722}
3723
3724/*
3725 * Get the list of prefix IDs from the affix list "afflist".
3726 * Used for PFXPOSTPONE.
3727 * Put the resulting flags in "store_afflist[MAXWLEN]" with a terminating NUL
3728 * and return the number of affixes.
3729 */
3730 static int
3731get_pfxlist(
3732 afffile_T *affile,
3733 char_u *afflist,
3734 char_u *store_afflist)
3735{
3736 char_u *p;
3737 char_u *prevp;
3738 int cnt = 0;
3739 int id;
3740 char_u key[AH_KEY_LEN];
3741 hashitem_T *hi;
3742
3743 for (p = afflist; *p != NUL; )
3744 {
3745 prevp = p;
3746 if (get_affitem(affile->af_flagtype, &p) != 0)
3747 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003748 // A flag is a postponed prefix flag if it appears in "af_pref"
3749 // and its ID is not zero.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003750 vim_strncpy(key, prevp, p - prevp);
3751 hi = hash_find(&affile->af_pref, key);
3752 if (!HASHITEM_EMPTY(hi))
3753 {
3754 id = HI2AH(hi)->ah_newID;
3755 if (id != 0)
3756 store_afflist[cnt++] = id;
3757 }
3758 }
3759 if (affile->af_flagtype == AFT_NUM && *p == ',')
3760 ++p;
3761 }
3762
3763 store_afflist[cnt] = NUL;
3764 return cnt;
3765}
3766
3767/*
3768 * Get the list of compound IDs from the affix list "afflist" that are used
3769 * for compound words.
3770 * Puts the flags in "store_afflist[]".
3771 */
3772 static void
3773get_compflags(
3774 afffile_T *affile,
3775 char_u *afflist,
3776 char_u *store_afflist)
3777{
3778 char_u *p;
3779 char_u *prevp;
3780 int cnt = 0;
3781 char_u key[AH_KEY_LEN];
3782 hashitem_T *hi;
3783
3784 for (p = afflist; *p != NUL; )
3785 {
3786 prevp = p;
3787 if (get_affitem(affile->af_flagtype, &p) != 0)
3788 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003789 // A flag is a compound flag if it appears in "af_comp".
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003790 vim_strncpy(key, prevp, p - prevp);
3791 hi = hash_find(&affile->af_comp, key);
3792 if (!HASHITEM_EMPTY(hi))
3793 store_afflist[cnt++] = HI2CI(hi)->ci_newID;
3794 }
3795 if (affile->af_flagtype == AFT_NUM && *p == ',')
3796 ++p;
3797 }
3798
3799 store_afflist[cnt] = NUL;
3800}
3801
3802/*
3803 * Apply affixes to a word and store the resulting words.
3804 * "ht" is the hashtable with affentry_T that need to be applied, either
3805 * prefixes or suffixes.
3806 * "xht", when not NULL, is the prefix hashtable, to be used additionally on
3807 * the resulting words for combining affixes.
3808 *
3809 * Returns FAIL when out of memory.
3810 */
3811 static int
3812store_aff_word(
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003813 spellinfo_T *spin, // spell info
3814 char_u *word, // basic word start
3815 char_u *afflist, // list of names of supported affixes
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003816 afffile_T *affile,
3817 hashtab_T *ht,
3818 hashtab_T *xht,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003819 int condit, // CONDIT_SUF et al.
3820 int flags, // flags for the word
3821 char_u *pfxlist, // list of prefix IDs
3822 int pfxlen) // nr of flags in "pfxlist" for prefixes, rest
3823 // is compound flags
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003824{
3825 int todo;
3826 hashitem_T *hi;
3827 affheader_T *ah;
3828 affentry_T *ae;
3829 char_u newword[MAXWLEN];
3830 int retval = OK;
3831 int i, j;
3832 char_u *p;
3833 int use_flags;
3834 char_u *use_pfxlist;
3835 int use_pfxlen;
3836 int need_affix;
3837 char_u store_afflist[MAXWLEN];
3838 char_u pfx_pfxlist[MAXWLEN];
3839 size_t wordlen = STRLEN(word);
3840 int use_condit;
3841
3842 todo = (int)ht->ht_used;
3843 for (hi = ht->ht_array; todo > 0 && retval == OK; ++hi)
3844 {
3845 if (!HASHITEM_EMPTY(hi))
3846 {
3847 --todo;
3848 ah = HI2AH(hi);
3849
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003850 // Check that the affix combines, if required, and that the word
3851 // supports this affix.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003852 if (((condit & CONDIT_COMB) == 0 || ah->ah_combine)
3853 && flag_in_afflist(affile->af_flagtype, afflist,
3854 ah->ah_flag))
3855 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003856 // Loop over all affix entries with this name.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003857 for (ae = ah->ah_first; ae != NULL; ae = ae->ae_next)
3858 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003859 // Check the condition. It's not logical to match case
3860 // here, but it is required for compatibility with
3861 // Myspell.
3862 // Another requirement from Myspell is that the chop
3863 // string is shorter than the word itself.
3864 // For prefixes, when "PFXPOSTPONE" was used, only do
3865 // prefixes with a chop string and/or flags.
3866 // When a previously added affix had CIRCUMFIX this one
3867 // must have it too, if it had not then this one must not
3868 // have one either.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003869 if ((xht != NULL || !affile->af_pfxpostpone
3870 || ae->ae_chop != NULL
3871 || ae->ae_flags != NULL)
3872 && (ae->ae_chop == NULL
3873 || STRLEN(ae->ae_chop) < wordlen)
3874 && (ae->ae_prog == NULL
3875 || vim_regexec_prog(&ae->ae_prog, FALSE,
3876 word, (colnr_T)0))
3877 && (((condit & CONDIT_CFIX) == 0)
3878 == ((condit & CONDIT_AFF) == 0
3879 || ae->ae_flags == NULL
3880 || !flag_in_afflist(affile->af_flagtype,
3881 ae->ae_flags, affile->af_circumfix))))
3882 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003883 // Match. Remove the chop and add the affix.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003884 if (xht == NULL)
3885 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003886 // prefix: chop/add at the start of the word
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003887 if (ae->ae_add == NULL)
3888 *newword = NUL;
3889 else
3890 vim_strncpy(newword, ae->ae_add, MAXWLEN - 1);
3891 p = word;
3892 if (ae->ae_chop != NULL)
3893 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003894 // Skip chop string.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003895 if (has_mbyte)
3896 {
3897 i = mb_charlen(ae->ae_chop);
3898 for ( ; i > 0; --i)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003899 MB_PTR_ADV(p);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003900 }
3901 else
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003902 p += STRLEN(ae->ae_chop);
3903 }
3904 STRCAT(newword, p);
3905 }
3906 else
3907 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003908 // suffix: chop/add at the end of the word
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003909 vim_strncpy(newword, word, MAXWLEN - 1);
3910 if (ae->ae_chop != NULL)
3911 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003912 // Remove chop string.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003913 p = newword + STRLEN(newword);
3914 i = (int)MB_CHARLEN(ae->ae_chop);
3915 for ( ; i > 0; --i)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003916 MB_PTR_BACK(newword, p);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003917 *p = NUL;
3918 }
3919 if (ae->ae_add != NULL)
3920 STRCAT(newword, ae->ae_add);
3921 }
3922
3923 use_flags = flags;
3924 use_pfxlist = pfxlist;
3925 use_pfxlen = pfxlen;
3926 need_affix = FALSE;
3927 use_condit = condit | CONDIT_COMB | CONDIT_AFF;
3928 if (ae->ae_flags != NULL)
3929 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003930 // Extract flags from the affix list.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003931 use_flags |= get_affix_flags(affile, ae->ae_flags);
3932
3933 if (affile->af_needaffix != 0 && flag_in_afflist(
3934 affile->af_flagtype, ae->ae_flags,
3935 affile->af_needaffix))
3936 need_affix = TRUE;
3937
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003938 // When there is a CIRCUMFIX flag the other affix
3939 // must also have it and we don't add the word
3940 // with one affix.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003941 if (affile->af_circumfix != 0 && flag_in_afflist(
3942 affile->af_flagtype, ae->ae_flags,
3943 affile->af_circumfix))
3944 {
3945 use_condit |= CONDIT_CFIX;
3946 if ((condit & CONDIT_CFIX) == 0)
3947 need_affix = TRUE;
3948 }
3949
3950 if (affile->af_pfxpostpone
3951 || spin->si_compflags != NULL)
3952 {
3953 if (affile->af_pfxpostpone)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003954 // Get prefix IDS from the affix list.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003955 use_pfxlen = get_pfxlist(affile,
3956 ae->ae_flags, store_afflist);
3957 else
3958 use_pfxlen = 0;
3959 use_pfxlist = store_afflist;
3960
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003961 // Combine the prefix IDs. Avoid adding the
3962 // same ID twice.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003963 for (i = 0; i < pfxlen; ++i)
3964 {
3965 for (j = 0; j < use_pfxlen; ++j)
3966 if (pfxlist[i] == use_pfxlist[j])
3967 break;
3968 if (j == use_pfxlen)
3969 use_pfxlist[use_pfxlen++] = pfxlist[i];
3970 }
3971
3972 if (spin->si_compflags != NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003973 // Get compound IDS from the affix list.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003974 get_compflags(affile, ae->ae_flags,
3975 use_pfxlist + use_pfxlen);
3976
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003977 // Combine the list of compound flags.
3978 // Concatenate them to the prefix IDs list.
3979 // Avoid adding the same ID twice.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003980 for (i = pfxlen; pfxlist[i] != NUL; ++i)
3981 {
3982 for (j = use_pfxlen;
3983 use_pfxlist[j] != NUL; ++j)
3984 if (pfxlist[i] == use_pfxlist[j])
3985 break;
3986 if (use_pfxlist[j] == NUL)
3987 {
3988 use_pfxlist[j++] = pfxlist[i];
3989 use_pfxlist[j] = NUL;
3990 }
3991 }
3992 }
3993 }
3994
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01003995 // Obey a "COMPOUNDFORBIDFLAG" of the affix: don't
3996 // use the compound flags.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02003997 if (use_pfxlist != NULL && ae->ae_compforbid)
3998 {
3999 vim_strncpy(pfx_pfxlist, use_pfxlist, use_pfxlen);
4000 use_pfxlist = pfx_pfxlist;
4001 }
4002
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004003 // When there are postponed prefixes...
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004004 if (spin->si_prefroot != NULL
4005 && spin->si_prefroot->wn_sibling != NULL)
4006 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004007 // ... add a flag to indicate an affix was used.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004008 use_flags |= WF_HAS_AFF;
4009
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004010 // ... don't use a prefix list if combining
4011 // affixes is not allowed. But do use the
4012 // compound flags after them.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004013 if (!ah->ah_combine && use_pfxlist != NULL)
4014 use_pfxlist += use_pfxlen;
4015 }
4016
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004017 // When compounding is supported and there is no
4018 // "COMPOUNDPERMITFLAG" then forbid compounding on the
4019 // side where the affix is applied.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004020 if (spin->si_compflags != NULL && !ae->ae_comppermit)
4021 {
4022 if (xht != NULL)
4023 use_flags |= WF_NOCOMPAFT;
4024 else
4025 use_flags |= WF_NOCOMPBEF;
4026 }
4027
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004028 // Store the modified word.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004029 if (store_word(spin, newword, use_flags,
4030 spin->si_region, use_pfxlist,
4031 need_affix) == FAIL)
4032 retval = FAIL;
4033
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004034 // When added a prefix or a first suffix and the affix
4035 // has flags may add a(nother) suffix. RECURSIVE!
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004036 if ((condit & CONDIT_SUF) && ae->ae_flags != NULL)
4037 if (store_aff_word(spin, newword, ae->ae_flags,
4038 affile, &affile->af_suff, xht,
4039 use_condit & (xht == NULL
4040 ? ~0 : ~CONDIT_SUF),
4041 use_flags, use_pfxlist, pfxlen) == FAIL)
4042 retval = FAIL;
4043
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004044 // When added a suffix and combining is allowed also
4045 // try adding a prefix additionally. Both for the
4046 // word flags and for the affix flags. RECURSIVE!
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004047 if (xht != NULL && ah->ah_combine)
4048 {
4049 if (store_aff_word(spin, newword,
4050 afflist, affile,
4051 xht, NULL, use_condit,
4052 use_flags, use_pfxlist,
4053 pfxlen) == FAIL
4054 || (ae->ae_flags != NULL
4055 && store_aff_word(spin, newword,
4056 ae->ae_flags, affile,
4057 xht, NULL, use_condit,
4058 use_flags, use_pfxlist,
4059 pfxlen) == FAIL))
4060 retval = FAIL;
4061 }
4062 }
4063 }
4064 }
4065 }
4066 }
4067
4068 return retval;
4069}
4070
4071/*
4072 * Read a file with a list of words.
4073 */
4074 static int
4075spell_read_wordfile(spellinfo_T *spin, char_u *fname)
4076{
4077 FILE *fd;
4078 long lnum = 0;
4079 char_u rline[MAXLINELEN];
4080 char_u *line;
4081 char_u *pc = NULL;
4082 char_u *p;
4083 int l;
4084 int retval = OK;
4085 int did_word = FALSE;
4086 int non_ascii = 0;
4087 int flags;
4088 int regionmask;
4089
4090 /*
4091 * Open the file.
4092 */
4093 fd = mch_fopen((char *)fname, "r");
4094 if (fd == NULL)
4095 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004096 semsg(_(e_notopen), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004097 return FAIL;
4098 }
4099
Bram Moolenaarc1669272018-06-19 14:23:53 +02004100 vim_snprintf((char *)IObuff, IOSIZE, _("Reading word file %s..."), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004101 spell_message(spin, IObuff);
4102
4103 /*
4104 * Read all the lines in the file one by one.
4105 */
4106 while (!vim_fgets(rline, MAXLINELEN, fd) && !got_int)
4107 {
4108 line_breakcheck();
4109 ++lnum;
4110
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004111 // Skip comment lines.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004112 if (*rline == '#')
4113 continue;
4114
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004115 // Remove CR, LF and white space from the end.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004116 l = (int)STRLEN(rline);
4117 while (l > 0 && rline[l - 1] <= ' ')
4118 --l;
4119 if (l == 0)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004120 continue; // empty or blank line
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004121 rline[l] = NUL;
4122
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004123 // Convert from "/encoding={encoding}" to 'encoding' when needed.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004124 vim_free(pc);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004125 if (spin->si_conv.vc_type != CONV_NONE)
4126 {
4127 pc = string_convert(&spin->si_conv, rline, NULL);
4128 if (pc == NULL)
4129 {
Bram Moolenaardb99f9f2020-03-23 22:12:22 +01004130 smsg(_("Conversion failure for word in %s line %ld: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004131 fname, lnum, rline);
4132 continue;
4133 }
4134 line = pc;
4135 }
4136 else
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004137 {
4138 pc = NULL;
4139 line = rline;
4140 }
4141
4142 if (*line == '/')
4143 {
4144 ++line;
4145 if (STRNCMP(line, "encoding=", 9) == 0)
4146 {
4147 if (spin->si_conv.vc_type != CONV_NONE)
Bram Moolenaardb99f9f2020-03-23 22:12:22 +01004148 smsg(_("Duplicate /encoding= line ignored in %s line %ld: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004149 fname, lnum, line - 1);
4150 else if (did_word)
Bram Moolenaardb99f9f2020-03-23 22:12:22 +01004151 smsg(_("/encoding= line after word ignored in %s line %ld: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004152 fname, lnum, line - 1);
4153 else
4154 {
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004155 char_u *enc;
4156
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004157 // Setup for conversion to 'encoding'.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004158 line += 9;
4159 enc = enc_canonize(line);
4160 if (enc != NULL && !spin->si_ascii
4161 && convert_setup(&spin->si_conv, enc,
4162 p_enc) == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004163 smsg(_("Conversion in %s not supported: from %s to %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004164 fname, line, p_enc);
4165 vim_free(enc);
4166 spin->si_conv.vc_fail = TRUE;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004167 }
4168 continue;
4169 }
4170
4171 if (STRNCMP(line, "regions=", 8) == 0)
4172 {
4173 if (spin->si_region_count > 1)
Bram Moolenaardb99f9f2020-03-23 22:12:22 +01004174 smsg(_("Duplicate /regions= line ignored in %s line %ld: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004175 fname, lnum, line);
4176 else
4177 {
4178 line += 8;
Bram Moolenaar2993ac52018-02-10 14:12:43 +01004179 if (STRLEN(line) > MAXREGIONS * 2)
Bram Moolenaardb99f9f2020-03-23 22:12:22 +01004180 smsg(_("Too many regions in %s line %ld: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004181 fname, lnum, line);
4182 else
4183 {
4184 spin->si_region_count = (int)STRLEN(line) / 2;
4185 STRCPY(spin->si_region_name, line);
4186
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004187 // Adjust the mask for a word valid in all regions.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004188 spin->si_region = (1 << spin->si_region_count) - 1;
4189 }
4190 }
4191 continue;
4192 }
4193
Bram Moolenaardb99f9f2020-03-23 22:12:22 +01004194 smsg(_("/ line ignored in %s line %ld: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004195 fname, lnum, line - 1);
4196 continue;
4197 }
4198
4199 flags = 0;
4200 regionmask = spin->si_region;
4201
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004202 // Check for flags and region after a slash.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004203 p = vim_strchr(line, '/');
4204 if (p != NULL)
4205 {
4206 *p++ = NUL;
4207 while (*p != NUL)
4208 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004209 if (*p == '=') // keep-case word
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004210 flags |= WF_KEEPCAP | WF_FIXCAP;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004211 else if (*p == '!') // Bad, bad, wicked word.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004212 flags |= WF_BANNED;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004213 else if (*p == '?') // Rare word.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004214 flags |= WF_RARE;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004215 else if (VIM_ISDIGIT(*p)) // region number(s)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004216 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004217 if ((flags & WF_REGION) == 0) // first one
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004218 regionmask = 0;
4219 flags |= WF_REGION;
4220
4221 l = *p - '0';
Bram Moolenaaree03b942017-10-27 00:57:05 +02004222 if (l == 0 || l > spin->si_region_count)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004223 {
Bram Moolenaardb99f9f2020-03-23 22:12:22 +01004224 smsg(_("Invalid region nr in %s line %ld: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004225 fname, lnum, p);
4226 break;
4227 }
4228 regionmask |= 1 << (l - 1);
4229 }
4230 else
4231 {
Bram Moolenaardb99f9f2020-03-23 22:12:22 +01004232 smsg(_("Unrecognized flags in %s line %ld: %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004233 fname, lnum, p);
4234 break;
4235 }
4236 ++p;
4237 }
4238 }
4239
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004240 // Skip non-ASCII words when "spin->si_ascii" is TRUE.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004241 if (spin->si_ascii && has_non_ascii(line))
4242 {
4243 ++non_ascii;
4244 continue;
4245 }
4246
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004247 // Normal word: store it.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004248 if (store_word(spin, line, flags, regionmask, NULL, FALSE) == FAIL)
4249 {
4250 retval = FAIL;
4251 break;
4252 }
4253 did_word = TRUE;
4254 }
4255
4256 vim_free(pc);
4257 fclose(fd);
4258
4259 if (spin->si_ascii && non_ascii > 0)
4260 {
4261 vim_snprintf((char *)IObuff, IOSIZE,
4262 _("Ignored %d words with non-ASCII characters"), non_ascii);
4263 spell_message(spin, IObuff);
4264 }
4265
4266 return retval;
4267}
4268
4269/*
4270 * Get part of an sblock_T, "len" bytes long.
4271 * This avoids calling free() for every little struct we use (and keeping
4272 * track of them).
4273 * The memory is cleared to all zeros.
4274 * Returns NULL when out of memory.
4275 */
4276 static void *
4277getroom(
4278 spellinfo_T *spin,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004279 size_t len, // length needed
4280 int align) // align for pointer
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004281{
4282 char_u *p;
4283 sblock_T *bl = spin->si_blocks;
4284
4285 if (align && bl != NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004286 // Round size up for alignment. On some systems structures need to be
4287 // aligned to the size of a pointer (e.g., SPARC).
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004288 bl->sb_used = (bl->sb_used + sizeof(char *) - 1)
4289 & ~(sizeof(char *) - 1);
4290
4291 if (bl == NULL || bl->sb_used + len > SBLOCKSIZE)
4292 {
4293 if (len >= SBLOCKSIZE)
4294 bl = NULL;
4295 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004296 // Allocate a block of memory. It is not freed until much later.
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004297 bl = alloc_clear(sizeof(sblock_T) + SBLOCKSIZE);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004298 if (bl == NULL)
4299 {
4300 if (!spin->si_did_emsg)
4301 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004302 emsg(_("E845: Insufficient memory, word list will be incomplete"));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004303 spin->si_did_emsg = TRUE;
4304 }
4305 return NULL;
4306 }
4307 bl->sb_next = spin->si_blocks;
4308 spin->si_blocks = bl;
4309 bl->sb_used = 0;
4310 ++spin->si_blocks_cnt;
4311 }
4312
4313 p = bl->sb_data + bl->sb_used;
4314 bl->sb_used += (int)len;
4315
4316 return p;
4317}
4318
4319/*
4320 * Make a copy of a string into memory allocated with getroom().
4321 * Returns NULL when out of memory.
4322 */
4323 static char_u *
4324getroom_save(spellinfo_T *spin, char_u *s)
4325{
4326 char_u *sc;
4327
4328 sc = (char_u *)getroom(spin, STRLEN(s) + 1, FALSE);
4329 if (sc != NULL)
4330 STRCPY(sc, s);
4331 return sc;
4332}
4333
4334
4335/*
4336 * Free the list of allocated sblock_T.
4337 */
4338 static void
4339free_blocks(sblock_T *bl)
4340{
4341 sblock_T *next;
4342
4343 while (bl != NULL)
4344 {
4345 next = bl->sb_next;
4346 vim_free(bl);
4347 bl = next;
4348 }
4349}
4350
4351/*
4352 * Allocate the root of a word tree.
4353 * Returns NULL when out of memory.
4354 */
4355 static wordnode_T *
4356wordtree_alloc(spellinfo_T *spin)
4357{
4358 return (wordnode_T *)getroom(spin, sizeof(wordnode_T), TRUE);
4359}
4360
4361/*
4362 * Store a word in the tree(s).
4363 * Always store it in the case-folded tree. For a keep-case word this is
4364 * useful when the word can also be used with all caps (no WF_FIXCAP flag) and
4365 * used to find suggestions.
4366 * For a keep-case word also store it in the keep-case tree.
4367 * When "pfxlist" is not NULL store the word for each postponed prefix ID and
4368 * compound flag.
4369 */
4370 static int
4371store_word(
4372 spellinfo_T *spin,
4373 char_u *word,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004374 int flags, // extra flags, WF_BANNED
4375 int region, // supported region(s)
4376 char_u *pfxlist, // list of prefix IDs or NULL
4377 int need_affix) // only store word with affix ID
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004378{
4379 int len = (int)STRLEN(word);
4380 int ct = captype(word, word + len);
4381 char_u foldword[MAXWLEN];
4382 int res = OK;
4383 char_u *p;
4384
4385 (void)spell_casefold(word, len, foldword, MAXWLEN);
4386 for (p = pfxlist; res == OK; ++p)
4387 {
4388 if (!need_affix || (p != NULL && *p != NUL))
4389 res = tree_add_word(spin, foldword, spin->si_foldroot, ct | flags,
4390 region, p == NULL ? 0 : *p);
4391 if (p == NULL || *p == NUL)
4392 break;
4393 }
4394 ++spin->si_foldwcount;
4395
4396 if (res == OK && (ct == WF_KEEPCAP || (flags & WF_KEEPCAP)))
4397 {
4398 for (p = pfxlist; res == OK; ++p)
4399 {
4400 if (!need_affix || (p != NULL && *p != NUL))
4401 res = tree_add_word(spin, word, spin->si_keeproot, flags,
4402 region, p == NULL ? 0 : *p);
4403 if (p == NULL || *p == NUL)
4404 break;
4405 }
4406 ++spin->si_keepwcount;
4407 }
4408 return res;
4409}
4410
4411/*
4412 * Add word "word" to a word tree at "root".
4413 * When "flags" < 0 we are adding to the prefix tree where "flags" is used for
4414 * "rare" and "region" is the condition nr.
4415 * Returns FAIL when out of memory.
4416 */
4417 static int
4418tree_add_word(
4419 spellinfo_T *spin,
4420 char_u *word,
4421 wordnode_T *root,
4422 int flags,
4423 int region,
4424 int affixID)
4425{
4426 wordnode_T *node = root;
4427 wordnode_T *np;
4428 wordnode_T *copyp, **copyprev;
4429 wordnode_T **prev = NULL;
4430 int i;
4431
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004432 // Add each byte of the word to the tree, including the NUL at the end.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004433 for (i = 0; ; ++i)
4434 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004435 // When there is more than one reference to this node we need to make
4436 // a copy, so that we can modify it. Copy the whole list of siblings
4437 // (we don't optimize for a partly shared list of siblings).
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004438 if (node != NULL && node->wn_refs > 1)
4439 {
4440 --node->wn_refs;
4441 copyprev = prev;
Bram Moolenaaraeea7212020-04-02 18:50:46 +02004442 FOR_ALL_NODE_SIBLINGS(node, copyp)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004443 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004444 // Allocate a new node and copy the info.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004445 np = get_wordnode(spin);
4446 if (np == NULL)
4447 return FAIL;
4448 np->wn_child = copyp->wn_child;
4449 if (np->wn_child != NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004450 ++np->wn_child->wn_refs; // child gets extra ref
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004451 np->wn_byte = copyp->wn_byte;
4452 if (np->wn_byte == NUL)
4453 {
4454 np->wn_flags = copyp->wn_flags;
4455 np->wn_region = copyp->wn_region;
4456 np->wn_affixID = copyp->wn_affixID;
4457 }
4458
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004459 // Link the new node in the list, there will be one ref.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004460 np->wn_refs = 1;
4461 if (copyprev != NULL)
4462 *copyprev = np;
4463 copyprev = &np->wn_sibling;
4464
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004465 // Let "node" point to the head of the copied list.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004466 if (copyp == node)
4467 node = np;
4468 }
4469 }
4470
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004471 // Look for the sibling that has the same character. They are sorted
4472 // on byte value, thus stop searching when a sibling is found with a
4473 // higher byte value. For zero bytes (end of word) the sorting is
4474 // done on flags and then on affixID.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004475 while (node != NULL
4476 && (node->wn_byte < word[i]
4477 || (node->wn_byte == NUL
4478 && (flags < 0
4479 ? node->wn_affixID < (unsigned)affixID
4480 : (node->wn_flags < (unsigned)(flags & WN_MASK)
4481 || (node->wn_flags == (flags & WN_MASK)
4482 && (spin->si_sugtree
4483 ? (node->wn_region & 0xffff) < region
4484 : node->wn_affixID
4485 < (unsigned)affixID)))))))
4486 {
4487 prev = &node->wn_sibling;
4488 node = *prev;
4489 }
4490 if (node == NULL
4491 || node->wn_byte != word[i]
4492 || (word[i] == NUL
4493 && (flags < 0
4494 || spin->si_sugtree
4495 || node->wn_flags != (flags & WN_MASK)
4496 || node->wn_affixID != affixID)))
4497 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004498 // Allocate a new node.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004499 np = get_wordnode(spin);
4500 if (np == NULL)
4501 return FAIL;
4502 np->wn_byte = word[i];
4503
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004504 // If "node" is NULL this is a new child or the end of the sibling
4505 // list: ref count is one. Otherwise use ref count of sibling and
4506 // make ref count of sibling one (matters when inserting in front
4507 // of the list of siblings).
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004508 if (node == NULL)
4509 np->wn_refs = 1;
4510 else
4511 {
4512 np->wn_refs = node->wn_refs;
4513 node->wn_refs = 1;
4514 }
4515 if (prev != NULL)
4516 *prev = np;
4517 np->wn_sibling = node;
4518 node = np;
4519 }
4520
4521 if (word[i] == NUL)
4522 {
4523 node->wn_flags = flags;
4524 node->wn_region |= region;
4525 node->wn_affixID = affixID;
4526 break;
4527 }
4528 prev = &node->wn_child;
4529 node = *prev;
4530 }
4531#ifdef SPELL_PRINTTREE
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004532 smsg("Added \"%s\"", word);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004533 spell_print_tree(root->wn_sibling);
4534#endif
4535
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004536 // count nr of words added since last message
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004537 ++spin->si_msg_count;
4538
4539 if (spin->si_compress_cnt > 1)
4540 {
4541 if (--spin->si_compress_cnt == 1)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004542 // Did enough words to lower the block count limit.
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02004543 spin->si_blocks_cnt += used_compress_inc;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004544 }
4545
4546 /*
4547 * When we have allocated lots of memory we need to compress the word tree
4548 * to free up some room. But compression is slow, and we might actually
4549 * need that room, thus only compress in the following situations:
4550 * 1. When not compressed before (si_compress_cnt == 0): when using
4551 * "compress_start" blocks.
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02004552 * 2. When compressed before and used "used_compress_inc" blocks before
4553 * adding "used_compress_added" words (si_compress_cnt > 1).
4554 * 3. When compressed before, added "used_compress_added" words
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004555 * (si_compress_cnt == 1) and the number of free nodes drops below the
4556 * maximum word length.
4557 */
4558#ifndef SPELL_COMPRESS_ALLWAYS
4559 if (spin->si_compress_cnt == 1
4560 ? spin->si_free_count < MAXWLEN
4561 : spin->si_blocks_cnt >= compress_start)
4562#endif
4563 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004564 // Decrement the block counter. The effect is that we compress again
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02004565 // when the freed up room has been used and another "used_compress_inc"
4566 // blocks have been allocated. Unless "used_compress_added" words have
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004567 // been added, then the limit is put back again.
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02004568 spin->si_blocks_cnt -= used_compress_inc;
4569 spin->si_compress_cnt = used_compress_added;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004570
4571 if (spin->si_verbose)
4572 {
4573 msg_start();
Bram Moolenaar32526b32019-01-19 17:43:09 +01004574 msg_puts(_(msg_compressing));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004575 msg_clr_eos();
4576 msg_didout = FALSE;
4577 msg_col = 0;
4578 out_flush();
4579 }
4580
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004581 // Compress both trees. Either they both have many nodes, which makes
4582 // compression useful, or one of them is small, which means
4583 // compression goes fast. But when filling the soundfold word tree
4584 // there is no keep-case tree.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004585 wordtree_compress(spin, spin->si_foldroot);
4586 if (affixID >= 0)
4587 wordtree_compress(spin, spin->si_keeproot);
4588 }
4589
4590 return OK;
4591}
4592
4593/*
4594 * Get a wordnode_T, either from the list of previously freed nodes or
4595 * allocate a new one.
4596 * Returns NULL when out of memory.
4597 */
4598 static wordnode_T *
4599get_wordnode(spellinfo_T *spin)
4600{
4601 wordnode_T *n;
4602
4603 if (spin->si_first_free == NULL)
4604 n = (wordnode_T *)getroom(spin, sizeof(wordnode_T), TRUE);
4605 else
4606 {
4607 n = spin->si_first_free;
4608 spin->si_first_free = n->wn_child;
Bram Moolenaara80faa82020-04-12 19:37:17 +02004609 CLEAR_POINTER(n);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004610 --spin->si_free_count;
4611 }
4612#ifdef SPELL_PRINTTREE
4613 if (n != NULL)
4614 n->wn_nr = ++spin->si_wordnode_nr;
4615#endif
4616 return n;
4617}
4618
4619/*
4620 * Decrement the reference count on a node (which is the head of a list of
4621 * siblings). If the reference count becomes zero free the node and its
4622 * siblings.
4623 * Returns the number of nodes actually freed.
4624 */
4625 static int
4626deref_wordnode(spellinfo_T *spin, wordnode_T *node)
4627{
4628 wordnode_T *np;
4629 int cnt = 0;
4630
4631 if (--node->wn_refs == 0)
4632 {
Bram Moolenaaraeea7212020-04-02 18:50:46 +02004633 FOR_ALL_NODE_SIBLINGS(node, np)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004634 {
4635 if (np->wn_child != NULL)
4636 cnt += deref_wordnode(spin, np->wn_child);
4637 free_wordnode(spin, np);
4638 ++cnt;
4639 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004640 ++cnt; // length field
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004641 }
4642 return cnt;
4643}
4644
4645/*
4646 * Free a wordnode_T for re-use later.
4647 * Only the "wn_child" field becomes invalid.
4648 */
4649 static void
4650free_wordnode(spellinfo_T *spin, wordnode_T *n)
4651{
4652 n->wn_child = spin->si_first_free;
4653 spin->si_first_free = n;
4654 ++spin->si_free_count;
4655}
4656
4657/*
4658 * Compress a tree: find tails that are identical and can be shared.
4659 */
4660 static void
4661wordtree_compress(spellinfo_T *spin, wordnode_T *root)
4662{
4663 hashtab_T ht;
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02004664 long n;
4665 long tot = 0;
4666 long perc;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004667
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004668 // Skip the root itself, it's not actually used. The first sibling is the
4669 // start of the tree.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004670 if (root->wn_sibling != NULL)
4671 {
4672 hash_init(&ht);
4673 n = node_compress(spin, root->wn_sibling, &ht, &tot);
4674
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02004675 if (tot == 0)
4676 {
4677 // Compression did not have effect. Increase the limits by 20% to
4678 // avoid wasting time on compression, memory will be used anyway.
4679 used_compress_inc += used_compress_inc / 5;
4680 used_compress_added += used_compress_added / 5;
4681 }
4682
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004683#ifndef SPELL_PRINTTREE
4684 if (spin->si_verbose || p_verbose > 2)
4685#endif
4686 {
4687 if (tot > 1000000)
4688 perc = (tot - n) / (tot / 100);
4689 else if (tot == 0)
4690 perc = 0;
4691 else
4692 perc = (tot - n) * 100 / tot;
4693 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02004694 _("Compressed %ld of %ld nodes; %ld (%ld%%) remaining"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004695 n, tot, tot - n, perc);
4696 spell_message(spin, IObuff);
4697 }
4698#ifdef SPELL_PRINTTREE
4699 spell_print_tree(root->wn_sibling);
4700#endif
4701 hash_clear(&ht);
4702 }
4703}
4704
4705/*
4706 * Compress a node, its siblings and its children, depth first.
4707 * Returns the number of compressed nodes.
4708 */
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02004709 static long
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004710node_compress(
4711 spellinfo_T *spin,
4712 wordnode_T *node,
4713 hashtab_T *ht,
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02004714 long *tot) // total count of nodes before compressing,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004715 // incremented while going through the tree
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004716{
4717 wordnode_T *np;
4718 wordnode_T *tp;
4719 wordnode_T *child;
4720 hash_T hash;
4721 hashitem_T *hi;
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02004722 long len = 0;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004723 unsigned nr, n;
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02004724 long compressed = 0;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004725
4726 /*
4727 * Go through the list of siblings. Compress each child and then try
4728 * finding an identical child to replace it.
4729 * Note that with "child" we mean not just the node that is pointed to,
4730 * but the whole list of siblings of which the child node is the first.
4731 */
4732 for (np = node; np != NULL && !got_int; np = np->wn_sibling)
4733 {
4734 ++len;
4735 if ((child = np->wn_child) != NULL)
4736 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004737 // Compress the child first. This fills hashkey.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004738 compressed += node_compress(spin, child, ht, tot);
4739
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004740 // Try to find an identical child.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004741 hash = hash_hash(child->wn_u1.hashkey);
4742 hi = hash_lookup(ht, child->wn_u1.hashkey, hash);
4743 if (!HASHITEM_EMPTY(hi))
4744 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004745 // There are children we encountered before with a hash value
4746 // identical to the current child. Now check if there is one
4747 // that is really identical.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004748 for (tp = HI2WN(hi); tp != NULL; tp = tp->wn_u2.next)
4749 if (node_equal(child, tp))
4750 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004751 // Found one! Now use that child in place of the
4752 // current one. This means the current child and all
4753 // its siblings is unlinked from the tree.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004754 ++tp->wn_refs;
4755 compressed += deref_wordnode(spin, child);
4756 np->wn_child = tp;
4757 break;
4758 }
4759 if (tp == NULL)
4760 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004761 // No other child with this hash value equals the child of
4762 // the node, add it to the linked list after the first
4763 // item.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004764 tp = HI2WN(hi);
4765 child->wn_u2.next = tp->wn_u2.next;
4766 tp->wn_u2.next = child;
4767 }
4768 }
4769 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004770 // No other child has this hash value, add it to the
4771 // hashtable.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004772 hash_add_item(ht, hi, child->wn_u1.hashkey, hash);
4773 }
4774 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004775 *tot += len + 1; // add one for the node that stores the length
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004776
4777 /*
4778 * Make a hash key for the node and its siblings, so that we can quickly
4779 * find a lookalike node. This must be done after compressing the sibling
4780 * list, otherwise the hash key would become invalid by the compression.
4781 */
4782 node->wn_u1.hashkey[0] = len;
4783 nr = 0;
Bram Moolenaaraeea7212020-04-02 18:50:46 +02004784 FOR_ALL_NODE_SIBLINGS(node, np)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004785 {
4786 if (np->wn_byte == NUL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004787 // end node: use wn_flags, wn_region and wn_affixID
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004788 n = np->wn_flags + (np->wn_region << 8) + (np->wn_affixID << 16);
4789 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004790 // byte node: use the byte value and the child pointer
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004791 n = (unsigned)(np->wn_byte + ((long_u)np->wn_child << 8));
4792 nr = nr * 101 + n;
4793 }
4794
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004795 // Avoid NUL bytes, it terminates the hash key.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004796 n = nr & 0xff;
4797 node->wn_u1.hashkey[1] = n == 0 ? 1 : n;
4798 n = (nr >> 8) & 0xff;
4799 node->wn_u1.hashkey[2] = n == 0 ? 1 : n;
4800 n = (nr >> 16) & 0xff;
4801 node->wn_u1.hashkey[3] = n == 0 ? 1 : n;
4802 n = (nr >> 24) & 0xff;
4803 node->wn_u1.hashkey[4] = n == 0 ? 1 : n;
4804 node->wn_u1.hashkey[5] = NUL;
4805
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004806 // Check for CTRL-C pressed now and then.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004807 fast_breakcheck();
4808
4809 return compressed;
4810}
4811
4812/*
4813 * Return TRUE when two nodes have identical siblings and children.
4814 */
4815 static int
4816node_equal(wordnode_T *n1, wordnode_T *n2)
4817{
4818 wordnode_T *p1;
4819 wordnode_T *p2;
4820
4821 for (p1 = n1, p2 = n2; p1 != NULL && p2 != NULL;
4822 p1 = p1->wn_sibling, p2 = p2->wn_sibling)
4823 if (p1->wn_byte != p2->wn_byte
4824 || (p1->wn_byte == NUL
4825 ? (p1->wn_flags != p2->wn_flags
4826 || p1->wn_region != p2->wn_region
4827 || p1->wn_affixID != p2->wn_affixID)
4828 : (p1->wn_child != p2->wn_child)))
4829 break;
4830
4831 return p1 == NULL && p2 == NULL;
4832}
4833
Bram Moolenaareae1b912019-05-09 15:12:55 +02004834static int rep_compare(const void *s1, const void *s2);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004835
4836/*
4837 * Function given to qsort() to sort the REP items on "from" string.
4838 */
4839 static int
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004840rep_compare(const void *s1, const void *s2)
4841{
4842 fromto_T *p1 = (fromto_T *)s1;
4843 fromto_T *p2 = (fromto_T *)s2;
4844
4845 return STRCMP(p1->ft_from, p2->ft_from);
4846}
4847
4848/*
4849 * Write the Vim .spl file "fname".
4850 * Return FAIL or OK;
4851 */
4852 static int
4853write_vim_spell(spellinfo_T *spin, char_u *fname)
4854{
4855 FILE *fd;
4856 int regionmask;
4857 int round;
4858 wordnode_T *tree;
4859 int nodecount;
4860 int i;
4861 int l;
4862 garray_T *gap;
4863 fromto_T *ftp;
4864 char_u *p;
4865 int rr;
4866 int retval = OK;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004867 size_t fwv = 1; // collect return value of fwrite() to avoid
4868 // warnings from picky compiler
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004869
4870 fd = mch_fopen((char *)fname, "w");
4871 if (fd == NULL)
4872 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004873 semsg(_(e_notopen), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004874 return FAIL;
4875 }
4876
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004877 // <HEADER>: <fileID> <versionnr>
4878 // <fileID>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004879 fwv &= fwrite(VIMSPELLMAGIC, VIMSPELLMAGICL, (size_t)1, fd);
4880 if (fwv != (size_t)1)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004881 // Catch first write error, don't try writing more.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004882 goto theend;
4883
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004884 putc(VIMSPELLVERSION, fd); // <versionnr>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004885
4886 /*
4887 * <SECTIONS>: <section> ... <sectionend>
4888 */
4889
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004890 // SN_INFO: <infotext>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004891 if (spin->si_info != NULL)
4892 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004893 putc(SN_INFO, fd); // <sectionID>
4894 putc(0, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004895
4896 i = (int)STRLEN(spin->si_info);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004897 put_bytes(fd, (long_u)i, 4); // <sectionlen>
4898 fwv &= fwrite(spin->si_info, (size_t)i, (size_t)1, fd); // <infotext>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004899 }
4900
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004901 // SN_REGION: <regionname> ...
4902 // Write the region names only if there is more than one.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004903 if (spin->si_region_count > 1)
4904 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004905 putc(SN_REGION, fd); // <sectionID>
4906 putc(SNF_REQUIRED, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004907 l = spin->si_region_count * 2;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004908 put_bytes(fd, (long_u)l, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004909 fwv &= fwrite(spin->si_region_name, (size_t)l, (size_t)1, fd);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004910 // <regionname> ...
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004911 regionmask = (1 << spin->si_region_count) - 1;
4912 }
4913 else
4914 regionmask = 0;
4915
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004916 // SN_CHARFLAGS: <charflagslen> <charflags> <folcharslen> <folchars>
4917 //
4918 // The table with character flags and the table for case folding.
4919 // This makes sure the same characters are recognized as word characters
4920 // when generating an when using a spell file.
4921 // Skip this for ASCII, the table may conflict with the one used for
4922 // 'encoding'.
4923 // Also skip this for an .add.spl file, the main spell file must contain
4924 // the table (avoids that it conflicts). File is shorter too.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004925 if (!spin->si_ascii && !spin->si_add)
4926 {
4927 char_u folchars[128 * 8];
4928 int flags;
4929
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004930 putc(SN_CHARFLAGS, fd); // <sectionID>
4931 putc(SNF_REQUIRED, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004932
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004933 // Form the <folchars> string first, we need to know its length.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004934 l = 0;
4935 for (i = 128; i < 256; ++i)
4936 {
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004937 if (has_mbyte)
4938 l += mb_char2bytes(spelltab.st_fold[i], folchars + l);
4939 else
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004940 folchars[l++] = spelltab.st_fold[i];
4941 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004942 put_bytes(fd, (long_u)(1 + 128 + 2 + l), 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004943
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004944 fputc(128, fd); // <charflagslen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004945 for (i = 128; i < 256; ++i)
4946 {
4947 flags = 0;
4948 if (spelltab.st_isw[i])
4949 flags |= CF_WORD;
4950 if (spelltab.st_isu[i])
4951 flags |= CF_UPPER;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004952 fputc(flags, fd); // <charflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004953 }
4954
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004955 put_bytes(fd, (long_u)l, 2); // <folcharslen>
4956 fwv &= fwrite(folchars, (size_t)l, (size_t)1, fd); // <folchars>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004957 }
4958
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004959 // SN_MIDWORD: <midword>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004960 if (spin->si_midword != NULL)
4961 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004962 putc(SN_MIDWORD, fd); // <sectionID>
4963 putc(SNF_REQUIRED, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004964
4965 i = (int)STRLEN(spin->si_midword);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004966 put_bytes(fd, (long_u)i, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004967 fwv &= fwrite(spin->si_midword, (size_t)i, (size_t)1, fd);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004968 // <midword>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004969 }
4970
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004971 // SN_PREFCOND: <prefcondcnt> <prefcond> ...
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004972 if (spin->si_prefcond.ga_len > 0)
4973 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004974 putc(SN_PREFCOND, fd); // <sectionID>
4975 putc(SNF_REQUIRED, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004976
4977 l = write_spell_prefcond(NULL, &spin->si_prefcond);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004978 put_bytes(fd, (long_u)l, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004979
4980 write_spell_prefcond(fd, &spin->si_prefcond);
4981 }
4982
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004983 // SN_REP: <repcount> <rep> ...
4984 // SN_SAL: <salflags> <salcount> <sal> ...
4985 // SN_REPSAL: <repcount> <rep> ...
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004986
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004987 // round 1: SN_REP section
4988 // round 2: SN_SAL section (unless SN_SOFO is used)
4989 // round 3: SN_REPSAL section
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004990 for (round = 1; round <= 3; ++round)
4991 {
4992 if (round == 1)
4993 gap = &spin->si_rep;
4994 else if (round == 2)
4995 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01004996 // Don't write SN_SAL when using a SN_SOFO section
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02004997 if (spin->si_sofofr != NULL && spin->si_sofoto != NULL)
4998 continue;
4999 gap = &spin->si_sal;
5000 }
5001 else
5002 gap = &spin->si_repsal;
5003
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005004 // Don't write the section if there are no items.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005005 if (gap->ga_len == 0)
5006 continue;
5007
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005008 // Sort the REP/REPSAL items.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005009 if (round != 2)
5010 qsort(gap->ga_data, (size_t)gap->ga_len,
5011 sizeof(fromto_T), rep_compare);
5012
5013 i = round == 1 ? SN_REP : (round == 2 ? SN_SAL : SN_REPSAL);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005014 putc(i, fd); // <sectionID>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005015
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005016 // This is for making suggestions, section is not required.
5017 putc(0, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005018
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005019 // Compute the length of what follows.
5020 l = 2; // count <repcount> or <salcount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005021 for (i = 0; i < gap->ga_len; ++i)
5022 {
5023 ftp = &((fromto_T *)gap->ga_data)[i];
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005024 l += 1 + (int)STRLEN(ftp->ft_from); // count <*fromlen> and <*from>
5025 l += 1 + (int)STRLEN(ftp->ft_to); // count <*tolen> and <*to>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005026 }
5027 if (round == 2)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005028 ++l; // count <salflags>
5029 put_bytes(fd, (long_u)l, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005030
5031 if (round == 2)
5032 {
5033 i = 0;
5034 if (spin->si_followup)
5035 i |= SAL_F0LLOWUP;
5036 if (spin->si_collapse)
5037 i |= SAL_COLLAPSE;
5038 if (spin->si_rem_accents)
5039 i |= SAL_REM_ACCENTS;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005040 putc(i, fd); // <salflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005041 }
5042
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005043 put_bytes(fd, (long_u)gap->ga_len, 2); // <repcount> or <salcount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005044 for (i = 0; i < gap->ga_len; ++i)
5045 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005046 // <rep> : <repfromlen> <repfrom> <reptolen> <repto>
5047 // <sal> : <salfromlen> <salfrom> <saltolen> <salto>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005048 ftp = &((fromto_T *)gap->ga_data)[i];
5049 for (rr = 1; rr <= 2; ++rr)
5050 {
5051 p = rr == 1 ? ftp->ft_from : ftp->ft_to;
5052 l = (int)STRLEN(p);
5053 putc(l, fd);
5054 if (l > 0)
5055 fwv &= fwrite(p, l, (size_t)1, fd);
5056 }
5057 }
5058
5059 }
5060
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005061 // SN_SOFO: <sofofromlen> <sofofrom> <sofotolen> <sofoto>
5062 // This is for making suggestions, section is not required.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005063 if (spin->si_sofofr != NULL && spin->si_sofoto != NULL)
5064 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005065 putc(SN_SOFO, fd); // <sectionID>
5066 putc(0, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005067
5068 l = (int)STRLEN(spin->si_sofofr);
5069 put_bytes(fd, (long_u)(l + STRLEN(spin->si_sofoto) + 4), 4);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005070 // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005071
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005072 put_bytes(fd, (long_u)l, 2); // <sofofromlen>
5073 fwv &= fwrite(spin->si_sofofr, l, (size_t)1, fd); // <sofofrom>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005074
5075 l = (int)STRLEN(spin->si_sofoto);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005076 put_bytes(fd, (long_u)l, 2); // <sofotolen>
5077 fwv &= fwrite(spin->si_sofoto, l, (size_t)1, fd); // <sofoto>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005078 }
5079
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005080 // SN_WORDS: <word> ...
5081 // This is for making suggestions, section is not required.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005082 if (spin->si_commonwords.ht_used > 0)
5083 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005084 putc(SN_WORDS, fd); // <sectionID>
5085 putc(0, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005086
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005087 // round 1: count the bytes
5088 // round 2: write the bytes
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005089 for (round = 1; round <= 2; ++round)
5090 {
5091 int todo;
5092 int len = 0;
5093 hashitem_T *hi;
5094
5095 todo = (int)spin->si_commonwords.ht_used;
5096 for (hi = spin->si_commonwords.ht_array; todo > 0; ++hi)
5097 if (!HASHITEM_EMPTY(hi))
5098 {
5099 l = (int)STRLEN(hi->hi_key) + 1;
5100 len += l;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005101 if (round == 2) // <word>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005102 fwv &= fwrite(hi->hi_key, (size_t)l, (size_t)1, fd);
5103 --todo;
5104 }
5105 if (round == 1)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005106 put_bytes(fd, (long_u)len, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005107 }
5108 }
5109
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005110 // SN_MAP: <mapstr>
5111 // This is for making suggestions, section is not required.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005112 if (spin->si_map.ga_len > 0)
5113 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005114 putc(SN_MAP, fd); // <sectionID>
5115 putc(0, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005116 l = spin->si_map.ga_len;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005117 put_bytes(fd, (long_u)l, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005118 fwv &= fwrite(spin->si_map.ga_data, (size_t)l, (size_t)1, fd);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005119 // <mapstr>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005120 }
5121
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005122 // SN_SUGFILE: <timestamp>
5123 // This is used to notify that a .sug file may be available and at the
5124 // same time allows for checking that a .sug file that is found matches
5125 // with this .spl file. That's because the word numbers must be exactly
5126 // right.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005127 if (!spin->si_nosugfile
5128 && (spin->si_sal.ga_len > 0
5129 || (spin->si_sofofr != NULL && spin->si_sofoto != NULL)))
5130 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005131 putc(SN_SUGFILE, fd); // <sectionID>
5132 putc(0, fd); // <sectionflags>
5133 put_bytes(fd, (long_u)8, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005134
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005135 // Set si_sugtime and write it to the file.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005136 spin->si_sugtime = time(NULL);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005137 put_time(fd, spin->si_sugtime); // <timestamp>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005138 }
5139
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005140 // SN_NOSPLITSUGS: nothing
5141 // This is used to notify that no suggestions with word splits are to be
5142 // made.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005143 if (spin->si_nosplitsugs)
5144 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005145 putc(SN_NOSPLITSUGS, fd); // <sectionID>
5146 putc(0, fd); // <sectionflags>
5147 put_bytes(fd, (long_u)0, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005148 }
5149
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005150 // SN_NOCOMPUNDSUGS: nothing
5151 // This is used to notify that no suggestions with compounds are to be
5152 // made.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005153 if (spin->si_nocompoundsugs)
5154 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005155 putc(SN_NOCOMPOUNDSUGS, fd); // <sectionID>
5156 putc(0, fd); // <sectionflags>
5157 put_bytes(fd, (long_u)0, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005158 }
5159
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005160 // SN_COMPOUND: compound info.
5161 // We don't mark it required, when not supported all compound words will
5162 // be bad words.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005163 if (spin->si_compflags != NULL)
5164 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005165 putc(SN_COMPOUND, fd); // <sectionID>
5166 putc(0, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005167
5168 l = (int)STRLEN(spin->si_compflags);
5169 for (i = 0; i < spin->si_comppat.ga_len; ++i)
5170 l += (int)STRLEN(((char_u **)(spin->si_comppat.ga_data))[i]) + 1;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005171 put_bytes(fd, (long_u)(l + 7), 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005172
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005173 putc(spin->si_compmax, fd); // <compmax>
5174 putc(spin->si_compminlen, fd); // <compminlen>
5175 putc(spin->si_compsylmax, fd); // <compsylmax>
5176 putc(0, fd); // for Vim 7.0b compatibility
5177 putc(spin->si_compoptions, fd); // <compoptions>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005178 put_bytes(fd, (long_u)spin->si_comppat.ga_len, 2);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005179 // <comppatcount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005180 for (i = 0; i < spin->si_comppat.ga_len; ++i)
5181 {
5182 p = ((char_u **)(spin->si_comppat.ga_data))[i];
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005183 putc((int)STRLEN(p), fd); // <comppatlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005184 fwv &= fwrite(p, (size_t)STRLEN(p), (size_t)1, fd);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005185 // <comppattext>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005186 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005187 // <compflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005188 fwv &= fwrite(spin->si_compflags, (size_t)STRLEN(spin->si_compflags),
5189 (size_t)1, fd);
5190 }
5191
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005192 // SN_NOBREAK: NOBREAK flag
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005193 if (spin->si_nobreak)
5194 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005195 putc(SN_NOBREAK, fd); // <sectionID>
5196 putc(0, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005197
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005198 // It's empty, the presence of the section flags the feature.
5199 put_bytes(fd, (long_u)0, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005200 }
5201
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005202 // SN_SYLLABLE: syllable info.
5203 // We don't mark it required, when not supported syllables will not be
5204 // counted.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005205 if (spin->si_syllable != NULL)
5206 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005207 putc(SN_SYLLABLE, fd); // <sectionID>
5208 putc(0, fd); // <sectionflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005209
5210 l = (int)STRLEN(spin->si_syllable);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005211 put_bytes(fd, (long_u)l, 4); // <sectionlen>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005212 fwv &= fwrite(spin->si_syllable, (size_t)l, (size_t)1, fd);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005213 // <syllable>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005214 }
5215
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005216 // end of <SECTIONS>
5217 putc(SN_END, fd); // <sectionend>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005218
5219
5220 /*
5221 * <LWORDTREE> <KWORDTREE> <PREFIXTREE>
5222 */
5223 spin->si_memtot = 0;
5224 for (round = 1; round <= 3; ++round)
5225 {
5226 if (round == 1)
5227 tree = spin->si_foldroot->wn_sibling;
5228 else if (round == 2)
5229 tree = spin->si_keeproot->wn_sibling;
5230 else
5231 tree = spin->si_prefroot->wn_sibling;
5232
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005233 // Clear the index and wnode fields in the tree.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005234 clear_node(tree);
5235
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005236 // Count the number of nodes. Needed to be able to allocate the
5237 // memory when reading the nodes. Also fills in index for shared
5238 // nodes.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005239 nodecount = put_node(NULL, tree, 0, regionmask, round == 3);
5240
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005241 // number of nodes in 4 bytes
5242 put_bytes(fd, (long_u)nodecount, 4); // <nodecount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005243 spin->si_memtot += nodecount + nodecount * sizeof(int);
5244
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005245 // Write the nodes.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005246 (void)put_node(fd, tree, 0, regionmask, round == 3);
5247 }
5248
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005249 // Write another byte to check for errors (file system full).
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005250 if (putc(0, fd) == EOF)
5251 retval = FAIL;
5252theend:
5253 if (fclose(fd) == EOF)
5254 retval = FAIL;
5255
5256 if (fwv != (size_t)1)
5257 retval = FAIL;
5258 if (retval == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005259 emsg(_(e_write));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005260
5261 return retval;
5262}
5263
5264/*
5265 * Clear the index and wnode fields of "node", it siblings and its
5266 * children. This is needed because they are a union with other items to save
5267 * space.
5268 */
5269 static void
5270clear_node(wordnode_T *node)
5271{
5272 wordnode_T *np;
5273
5274 if (node != NULL)
Bram Moolenaaraeea7212020-04-02 18:50:46 +02005275 FOR_ALL_NODE_SIBLINGS(node, np)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005276 {
5277 np->wn_u1.index = 0;
5278 np->wn_u2.wnode = NULL;
5279
5280 if (np->wn_byte != NUL)
5281 clear_node(np->wn_child);
5282 }
5283}
5284
5285
5286/*
5287 * Dump a word tree at node "node".
5288 *
5289 * This first writes the list of possible bytes (siblings). Then for each
5290 * byte recursively write the children.
5291 *
5292 * NOTE: The code here must match the code in read_tree_node(), since
5293 * assumptions are made about the indexes (so that we don't have to write them
5294 * in the file).
5295 *
5296 * Returns the number of nodes used.
5297 */
5298 static int
5299put_node(
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005300 FILE *fd, // NULL when only counting
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005301 wordnode_T *node,
5302 int idx,
5303 int regionmask,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005304 int prefixtree) // TRUE for PREFIXTREE
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005305{
5306 int newindex = idx;
5307 int siblingcount = 0;
5308 wordnode_T *np;
5309 int flags;
5310
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005311 // If "node" is zero the tree is empty.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005312 if (node == NULL)
5313 return 0;
5314
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005315 // Store the index where this node is written.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005316 node->wn_u1.index = idx;
5317
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005318 // Count the number of siblings.
Bram Moolenaaraeea7212020-04-02 18:50:46 +02005319 FOR_ALL_NODE_SIBLINGS(node, np)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005320 ++siblingcount;
5321
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005322 // Write the sibling count.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005323 if (fd != NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005324 putc(siblingcount, fd); // <siblingcount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005325
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005326 // Write each sibling byte and optionally extra info.
Bram Moolenaaraeea7212020-04-02 18:50:46 +02005327 FOR_ALL_NODE_SIBLINGS(node, np)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005328 {
5329 if (np->wn_byte == 0)
5330 {
5331 if (fd != NULL)
5332 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005333 // For a NUL byte (end of word) write the flags etc.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005334 if (prefixtree)
5335 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005336 // In PREFIXTREE write the required affixID and the
5337 // associated condition nr (stored in wn_region). The
5338 // byte value is misused to store the "rare" and "not
5339 // combining" flags
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005340 if (np->wn_flags == (short_u)PFX_FLAGS)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005341 putc(BY_NOFLAGS, fd); // <byte>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005342 else
5343 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005344 putc(BY_FLAGS, fd); // <byte>
5345 putc(np->wn_flags, fd); // <pflags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005346 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005347 putc(np->wn_affixID, fd); // <affixID>
5348 put_bytes(fd, (long_u)np->wn_region, 2); // <prefcondnr>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005349 }
5350 else
5351 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005352 // For word trees we write the flag/region items.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005353 flags = np->wn_flags;
5354 if (regionmask != 0 && np->wn_region != regionmask)
5355 flags |= WF_REGION;
5356 if (np->wn_affixID != 0)
5357 flags |= WF_AFX;
5358 if (flags == 0)
5359 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005360 // word without flags or region
5361 putc(BY_NOFLAGS, fd); // <byte>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005362 }
5363 else
5364 {
5365 if (np->wn_flags >= 0x100)
5366 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005367 putc(BY_FLAGS2, fd); // <byte>
5368 putc(flags, fd); // <flags>
5369 putc((unsigned)flags >> 8, fd); // <flags2>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005370 }
5371 else
5372 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005373 putc(BY_FLAGS, fd); // <byte>
5374 putc(flags, fd); // <flags>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005375 }
5376 if (flags & WF_REGION)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005377 putc(np->wn_region, fd); // <region>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005378 if (flags & WF_AFX)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005379 putc(np->wn_affixID, fd); // <affixID>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005380 }
5381 }
5382 }
5383 }
5384 else
5385 {
5386 if (np->wn_child->wn_u1.index != 0
5387 && np->wn_child->wn_u2.wnode != node)
5388 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005389 // The child is written elsewhere, write the reference.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005390 if (fd != NULL)
5391 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005392 putc(BY_INDEX, fd); // <byte>
5393 // <nodeidx>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005394 put_bytes(fd, (long_u)np->wn_child->wn_u1.index, 3);
5395 }
5396 }
5397 else if (np->wn_child->wn_u2.wnode == NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005398 // We will write the child below and give it an index.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005399 np->wn_child->wn_u2.wnode = node;
5400
5401 if (fd != NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005402 if (putc(np->wn_byte, fd) == EOF) // <byte> or <xbyte>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005403 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005404 emsg(_(e_write));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005405 return 0;
5406 }
5407 }
5408 }
5409
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005410 // Space used in the array when reading: one for each sibling and one for
5411 // the count.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005412 newindex += siblingcount + 1;
5413
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005414 // Recursively dump the children of each sibling.
Bram Moolenaaraeea7212020-04-02 18:50:46 +02005415 FOR_ALL_NODE_SIBLINGS(node, np)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005416 if (np->wn_byte != 0 && np->wn_child->wn_u2.wnode == node)
5417 newindex = put_node(fd, np->wn_child, newindex, regionmask,
5418 prefixtree);
5419
5420 return newindex;
5421}
5422
5423
5424/*
5425 * ":mkspell [-ascii] outfile infile ..."
5426 * ":mkspell [-ascii] addfile"
5427 */
5428 void
5429ex_mkspell(exarg_T *eap)
5430{
5431 int fcount;
5432 char_u **fnames;
5433 char_u *arg = eap->arg;
5434 int ascii = FALSE;
5435
5436 if (STRNCMP(arg, "-ascii", 6) == 0)
5437 {
5438 ascii = TRUE;
5439 arg = skipwhite(arg + 6);
5440 }
5441
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005442 // Expand all the remaining arguments (e.g., $VIMRUNTIME).
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005443 if (get_arglist_exp(arg, &fcount, &fnames, FALSE) == OK)
5444 {
5445 mkspell(fcount, fnames, ascii, eap->forceit, FALSE);
5446 FreeWild(fcount, fnames);
5447 }
5448}
5449
5450/*
5451 * Create the .sug file.
5452 * Uses the soundfold info in "spin".
5453 * Writes the file with the name "wfname", with ".spl" changed to ".sug".
5454 */
5455 static void
5456spell_make_sugfile(spellinfo_T *spin, char_u *wfname)
5457{
5458 char_u *fname = NULL;
5459 int len;
5460 slang_T *slang;
5461 int free_slang = FALSE;
5462
5463 /*
5464 * Read back the .spl file that was written. This fills the required
5465 * info for soundfolding. This also uses less memory than the
5466 * pointer-linked version of the trie. And it avoids having two versions
5467 * of the code for the soundfolding stuff.
5468 * It might have been done already by spell_reload_one().
5469 */
Bram Moolenaaraeea7212020-04-02 18:50:46 +02005470 FOR_ALL_SPELL_LANGS(slang)
Bram Moolenaar99499b12019-05-23 21:35:48 +02005471 if (fullpathcmp(wfname, slang->sl_fname, FALSE, TRUE) == FPC_SAME)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005472 break;
5473 if (slang == NULL)
5474 {
5475 spell_message(spin, (char_u *)_("Reading back spell file..."));
5476 slang = spell_load_file(wfname, NULL, NULL, FALSE);
5477 if (slang == NULL)
5478 return;
5479 free_slang = TRUE;
5480 }
5481
5482 /*
5483 * Clear the info in "spin" that is used.
5484 */
5485 spin->si_blocks = NULL;
5486 spin->si_blocks_cnt = 0;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005487 spin->si_compress_cnt = 0; // will stay at 0 all the time
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005488 spin->si_free_count = 0;
5489 spin->si_first_free = NULL;
5490 spin->si_foldwcount = 0;
5491
5492 /*
5493 * Go through the trie of good words, soundfold each word and add it to
5494 * the soundfold trie.
5495 */
5496 spell_message(spin, (char_u *)_("Performing soundfolding..."));
5497 if (sug_filltree(spin, slang) == FAIL)
5498 goto theend;
5499
5500 /*
5501 * Create the table which links each soundfold word with a list of the
5502 * good words it may come from. Creates buffer "spin->si_spellbuf".
5503 * This also removes the wordnr from the NUL byte entries to make
5504 * compression possible.
5505 */
5506 if (sug_maketable(spin) == FAIL)
5507 goto theend;
5508
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005509 smsg(_("Number of words after soundfolding: %ld"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005510 (long)spin->si_spellbuf->b_ml.ml_line_count);
5511
5512 /*
5513 * Compress the soundfold trie.
5514 */
5515 spell_message(spin, (char_u *)_(msg_compressing));
5516 wordtree_compress(spin, spin->si_foldroot);
5517
5518 /*
5519 * Write the .sug file.
5520 * Make the file name by changing ".spl" to ".sug".
5521 */
5522 fname = alloc(MAXPATHL);
5523 if (fname == NULL)
5524 goto theend;
5525 vim_strncpy(fname, wfname, MAXPATHL - 1);
5526 len = (int)STRLEN(fname);
5527 fname[len - 2] = 'u';
5528 fname[len - 1] = 'g';
5529 sug_write(spin, fname);
5530
5531theend:
5532 vim_free(fname);
5533 if (free_slang)
5534 slang_free(slang);
5535 free_blocks(spin->si_blocks);
5536 close_spellbuf(spin->si_spellbuf);
5537}
5538
5539/*
5540 * Build the soundfold trie for language "slang".
5541 */
5542 static int
5543sug_filltree(spellinfo_T *spin, slang_T *slang)
5544{
5545 char_u *byts;
5546 idx_T *idxs;
5547 int depth;
5548 idx_T arridx[MAXWLEN];
5549 int curi[MAXWLEN];
5550 char_u tword[MAXWLEN];
5551 char_u tsalword[MAXWLEN];
5552 int c;
5553 idx_T n;
5554 unsigned words_done = 0;
5555 int wordcount[MAXWLEN];
5556
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005557 // We use si_foldroot for the soundfolded trie.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005558 spin->si_foldroot = wordtree_alloc(spin);
5559 if (spin->si_foldroot == NULL)
5560 return FAIL;
5561
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005562 // let tree_add_word() know we're adding to the soundfolded tree
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005563 spin->si_sugtree = TRUE;
5564
5565 /*
5566 * Go through the whole case-folded tree, soundfold each word and put it
5567 * in the trie.
5568 */
5569 byts = slang->sl_fbyts;
5570 idxs = slang->sl_fidxs;
5571
5572 arridx[0] = 0;
5573 curi[0] = 1;
5574 wordcount[0] = 0;
5575
5576 depth = 0;
5577 while (depth >= 0 && !got_int)
5578 {
5579 if (curi[depth] > byts[arridx[depth]])
5580 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005581 // Done all bytes at this node, go up one level.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005582 idxs[arridx[depth]] = wordcount[depth];
5583 if (depth > 0)
5584 wordcount[depth - 1] += wordcount[depth];
5585
5586 --depth;
5587 line_breakcheck();
5588 }
5589 else
5590 {
5591
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005592 // Do one more byte at this node.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005593 n = arridx[depth] + curi[depth];
5594 ++curi[depth];
5595
5596 c = byts[n];
5597 if (c == 0)
5598 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005599 // Sound-fold the word.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005600 tword[depth] = NUL;
5601 spell_soundfold(slang, tword, TRUE, tsalword);
5602
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005603 // We use the "flags" field for the MSB of the wordnr,
5604 // "region" for the LSB of the wordnr.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005605 if (tree_add_word(spin, tsalword, spin->si_foldroot,
5606 words_done >> 16, words_done & 0xffff,
5607 0) == FAIL)
5608 return FAIL;
5609
5610 ++words_done;
5611 ++wordcount[depth];
5612
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005613 // Reset the block count each time to avoid compression
5614 // kicking in.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005615 spin->si_blocks_cnt = 0;
5616
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005617 // Skip over any other NUL bytes (same word with different
5618 // flags).
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005619 while (byts[n + 1] == 0)
5620 {
5621 ++n;
5622 ++curi[depth];
5623 }
5624 }
5625 else
5626 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005627 // Normal char, go one level deeper.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005628 tword[depth++] = c;
5629 arridx[depth] = idxs[n];
5630 curi[depth] = 1;
5631 wordcount[depth] = 0;
5632 }
5633 }
5634 }
5635
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005636 smsg(_("Total number of words: %d"), words_done);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005637
5638 return OK;
5639}
5640
5641/*
5642 * Make the table that links each word in the soundfold trie to the words it
5643 * can be produced from.
5644 * This is not unlike lines in a file, thus use a memfile to be able to access
5645 * the table efficiently.
5646 * Returns FAIL when out of memory.
5647 */
5648 static int
5649sug_maketable(spellinfo_T *spin)
5650{
5651 garray_T ga;
5652 int res = OK;
5653
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005654 // Allocate a buffer, open a memline for it and create the swap file
5655 // (uses a temp file, not a .swp file).
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005656 spin->si_spellbuf = open_spellbuf();
5657 if (spin->si_spellbuf == NULL)
5658 return FAIL;
5659
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005660 // Use a buffer to store the line info, avoids allocating many small
5661 // pieces of memory.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005662 ga_init2(&ga, 1, 100);
5663
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005664 // recursively go through the tree
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005665 if (sug_filltable(spin, spin->si_foldroot->wn_sibling, 0, &ga) == -1)
5666 res = FAIL;
5667
5668 ga_clear(&ga);
5669 return res;
5670}
5671
5672/*
5673 * Fill the table for one node and its children.
5674 * Returns the wordnr at the start of the node.
5675 * Returns -1 when out of memory.
5676 */
5677 static int
5678sug_filltable(
5679 spellinfo_T *spin,
5680 wordnode_T *node,
5681 int startwordnr,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005682 garray_T *gap) // place to store line of numbers
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005683{
5684 wordnode_T *p, *np;
5685 int wordnr = startwordnr;
5686 int nr;
5687 int prev_nr;
5688
Bram Moolenaaraeea7212020-04-02 18:50:46 +02005689 FOR_ALL_NODE_SIBLINGS(node, p)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005690 {
5691 if (p->wn_byte == NUL)
5692 {
5693 gap->ga_len = 0;
5694 prev_nr = 0;
5695 for (np = p; np != NULL && np->wn_byte == NUL; np = np->wn_sibling)
5696 {
5697 if (ga_grow(gap, 10) == FAIL)
5698 return -1;
5699
5700 nr = (np->wn_flags << 16) + (np->wn_region & 0xffff);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005701 // Compute the offset from the previous nr and store the
5702 // offset in a way that it takes a minimum number of bytes.
5703 // It's a bit like utf-8, but without the need to mark
5704 // following bytes.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005705 nr -= prev_nr;
5706 prev_nr += nr;
5707 gap->ga_len += offset2bytes(nr,
5708 (char_u *)gap->ga_data + gap->ga_len);
5709 }
5710
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005711 // add the NUL byte
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005712 ((char_u *)gap->ga_data)[gap->ga_len++] = NUL;
5713
5714 if (ml_append_buf(spin->si_spellbuf, (linenr_T)wordnr,
5715 gap->ga_data, gap->ga_len, TRUE) == FAIL)
5716 return -1;
5717 ++wordnr;
5718
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005719 // Remove extra NUL entries, we no longer need them. We don't
5720 // bother freeing the nodes, the won't be reused anyway.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005721 while (p->wn_sibling != NULL && p->wn_sibling->wn_byte == NUL)
5722 p->wn_sibling = p->wn_sibling->wn_sibling;
5723
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005724 // Clear the flags on the remaining NUL node, so that compression
5725 // works a lot better.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005726 p->wn_flags = 0;
5727 p->wn_region = 0;
5728 }
5729 else
5730 {
5731 wordnr = sug_filltable(spin, p->wn_child, wordnr, gap);
5732 if (wordnr == -1)
5733 return -1;
5734 }
5735 }
5736 return wordnr;
5737}
5738
5739/*
5740 * Convert an offset into a minimal number of bytes.
5741 * Similar to utf_char2byters, but use 8 bits in followup bytes and avoid NUL
5742 * bytes.
5743 */
5744 static int
5745offset2bytes(int nr, char_u *buf)
5746{
5747 int rem;
5748 int b1, b2, b3, b4;
5749
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005750 // Split the number in parts of base 255. We need to avoid NUL bytes.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005751 b1 = nr % 255 + 1;
5752 rem = nr / 255;
5753 b2 = rem % 255 + 1;
5754 rem = rem / 255;
5755 b3 = rem % 255 + 1;
5756 b4 = rem / 255 + 1;
5757
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005758 if (b4 > 1 || b3 > 0x1f) // 4 bytes
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005759 {
5760 buf[0] = 0xe0 + b4;
5761 buf[1] = b3;
5762 buf[2] = b2;
5763 buf[3] = b1;
5764 return 4;
5765 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005766 if (b3 > 1 || b2 > 0x3f ) // 3 bytes
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005767 {
5768 buf[0] = 0xc0 + b3;
5769 buf[1] = b2;
5770 buf[2] = b1;
5771 return 3;
5772 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005773 if (b2 > 1 || b1 > 0x7f ) // 2 bytes
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005774 {
5775 buf[0] = 0x80 + b2;
5776 buf[1] = b1;
5777 return 2;
5778 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005779 // 1 byte
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005780 buf[0] = b1;
5781 return 1;
5782}
5783
5784/*
5785 * Write the .sug file in "fname".
5786 */
5787 static void
5788sug_write(spellinfo_T *spin, char_u *fname)
5789{
5790 FILE *fd;
5791 wordnode_T *tree;
5792 int nodecount;
5793 int wcount;
5794 char_u *line;
5795 linenr_T lnum;
5796 int len;
5797
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005798 // Create the file. Note that an existing file is silently overwritten!
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005799 fd = mch_fopen((char *)fname, "w");
5800 if (fd == NULL)
5801 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005802 semsg(_(e_notopen), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005803 return;
5804 }
5805
5806 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaarc1669272018-06-19 14:23:53 +02005807 _("Writing suggestion file %s..."), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005808 spell_message(spin, IObuff);
5809
5810 /*
5811 * <SUGHEADER>: <fileID> <versionnr> <timestamp>
5812 */
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005813 if (fwrite(VIMSUGMAGIC, VIMSUGMAGICL, (size_t)1, fd) != 1) // <fileID>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005814 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005815 emsg(_(e_write));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005816 goto theend;
5817 }
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005818 putc(VIMSUGVERSION, fd); // <versionnr>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005819
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005820 // Write si_sugtime to the file.
5821 put_time(fd, spin->si_sugtime); // <timestamp>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005822
5823 /*
5824 * <SUGWORDTREE>
5825 */
5826 spin->si_memtot = 0;
5827 tree = spin->si_foldroot->wn_sibling;
5828
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005829 // Clear the index and wnode fields in the tree.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005830 clear_node(tree);
5831
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005832 // Count the number of nodes. Needed to be able to allocate the
5833 // memory when reading the nodes. Also fills in index for shared
5834 // nodes.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005835 nodecount = put_node(NULL, tree, 0, 0, FALSE);
5836
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005837 // number of nodes in 4 bytes
5838 put_bytes(fd, (long_u)nodecount, 4); // <nodecount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005839 spin->si_memtot += nodecount + nodecount * sizeof(int);
5840
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005841 // Write the nodes.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005842 (void)put_node(fd, tree, 0, 0, FALSE);
5843
5844 /*
5845 * <SUGTABLE>: <sugwcount> <sugline> ...
5846 */
5847 wcount = spin->si_spellbuf->b_ml.ml_line_count;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005848 put_bytes(fd, (long_u)wcount, 4); // <sugwcount>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005849
5850 for (lnum = 1; lnum <= (linenr_T)wcount; ++lnum)
5851 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005852 // <sugline>: <sugnr> ... NUL
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005853 line = ml_get_buf(spin->si_spellbuf, lnum, FALSE);
5854 len = (int)STRLEN(line) + 1;
5855 if (fwrite(line, (size_t)len, (size_t)1, fd) == 0)
5856 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005857 emsg(_(e_write));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005858 goto theend;
5859 }
5860 spin->si_memtot += len;
5861 }
5862
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005863 // Write another byte to check for errors.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005864 if (putc(0, fd) == EOF)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005865 emsg(_(e_write));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005866
5867 vim_snprintf((char *)IObuff, IOSIZE,
5868 _("Estimated runtime memory use: %d bytes"), spin->si_memtot);
5869 spell_message(spin, IObuff);
5870
5871theend:
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005872 // close the file
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005873 fclose(fd);
5874}
5875
5876
5877/*
5878 * Create a Vim spell file from one or more word lists.
5879 * "fnames[0]" is the output file name.
5880 * "fnames[fcount - 1]" is the last input file name.
5881 * Exception: when "fnames[0]" ends in ".add" it's used as the input file name
5882 * and ".spl" is appended to make the output file name.
5883 */
5884 void
5885mkspell(
5886 int fcount,
5887 char_u **fnames,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005888 int ascii, // -ascii argument given
5889 int over_write, // overwrite existing output file
5890 int added_word) // invoked through "zg"
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005891{
5892 char_u *fname = NULL;
5893 char_u *wfname;
5894 char_u **innames;
5895 int incount;
Bram Moolenaar2993ac52018-02-10 14:12:43 +01005896 afffile_T *(afile[MAXREGIONS]);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005897 int i;
5898 int len;
5899 stat_T st;
5900 int error = FALSE;
5901 spellinfo_T spin;
5902
Bram Moolenaara80faa82020-04-12 19:37:17 +02005903 CLEAR_FIELD(spin);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005904 spin.si_verbose = !added_word;
5905 spin.si_ascii = ascii;
5906 spin.si_followup = TRUE;
5907 spin.si_rem_accents = TRUE;
5908 ga_init2(&spin.si_rep, (int)sizeof(fromto_T), 20);
5909 ga_init2(&spin.si_repsal, (int)sizeof(fromto_T), 20);
5910 ga_init2(&spin.si_sal, (int)sizeof(fromto_T), 20);
5911 ga_init2(&spin.si_map, (int)sizeof(char_u), 100);
5912 ga_init2(&spin.si_comppat, (int)sizeof(char_u *), 20);
5913 ga_init2(&spin.si_prefcond, (int)sizeof(char_u *), 50);
5914 hash_init(&spin.si_commonwords);
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005915 spin.si_newcompID = 127; // start compound ID at first maximum
Bram Moolenaar59f88fb2020-06-03 20:51:11 +02005916 used_compress_inc = compress_inc;
5917 used_compress_added = compress_added;
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 Moolenaar9ccfebd2016-07-19 16:39:08 +02005920 innames = &fnames[1];
5921 incount = fcount - 1;
5922
5923 wfname = alloc(MAXPATHL);
5924 if (wfname == NULL)
5925 return;
5926
5927 if (fcount >= 1)
5928 {
5929 len = (int)STRLEN(fnames[0]);
5930 if (fcount == 1 && len > 4 && STRCMP(fnames[0] + len - 4, ".add") == 0)
5931 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005932 // For ":mkspell path/en.latin1.add" output file is
5933 // "path/en.latin1.add.spl".
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005934 innames = &fnames[0];
5935 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 innames = &fnames[0];
5942 incount = 1;
5943 vim_snprintf((char *)wfname, MAXPATHL, SPL_FNAME_TMPL,
5944 fnames[0], spin.si_ascii ? (char_u *)"ascii" : spell_enc());
5945 }
5946 else if (len > 4 && STRCMP(fnames[0] + len - 4, ".spl") == 0)
5947 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005948 // Name ends in ".spl", use as the file name.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005949 vim_strncpy(wfname, fnames[0], MAXPATHL - 1);
5950 }
5951 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005952 // Name should be language, make the file name from it.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005953 vim_snprintf((char *)wfname, MAXPATHL, SPL_FNAME_TMPL,
5954 fnames[0], spin.si_ascii ? (char_u *)"ascii" : spell_enc());
5955
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005956 // Check for .ascii.spl.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005957 if (strstr((char *)gettail(wfname), SPL_FNAME_ASCII) != NULL)
5958 spin.si_ascii = TRUE;
5959
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005960 // Check for .add.spl.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005961 if (strstr((char *)gettail(wfname), SPL_FNAME_ADD) != NULL)
5962 spin.si_add = TRUE;
5963 }
5964
5965 if (incount <= 0)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005966 emsg(_(e_invarg)); // need at least output and input names
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005967 else if (vim_strchr(gettail(wfname), '_') != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005968 emsg(_("E751: Output file name must not have region name"));
Bram Moolenaar2993ac52018-02-10 14:12:43 +01005969 else if (incount > MAXREGIONS)
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01005970 semsg(_("E754: Only up to %d regions supported"), MAXREGIONS);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005971 else
5972 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01005973 // Check for overwriting before doing things that may take a lot of
5974 // time.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005975 if (!over_write && mch_stat((char *)wfname, &st) >= 0)
5976 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005977 emsg(_(e_exists));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005978 goto theend;
5979 }
5980 if (mch_isdir(wfname))
5981 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005982 semsg(_(e_isadir2), wfname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02005983 goto theend;
5984 }
5985
5986 fname = alloc(MAXPATHL);
5987 if (fname == NULL)
5988 goto theend;
5989
5990 /*
5991 * Init the aff and dic pointers.
5992 * Get the region names if there are more than 2 arguments.
5993 */
5994 for (i = 0; i < incount; ++i)
5995 {
5996 afile[i] = NULL;
5997
5998 if (incount > 1)
5999 {
6000 len = (int)STRLEN(innames[i]);
6001 if (STRLEN(gettail(innames[i])) < 5
6002 || innames[i][len - 3] != '_')
6003 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006004 semsg(_("E755: Invalid region in %s"), innames[i]);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006005 goto theend;
6006 }
6007 spin.si_region_name[i * 2] = TOLOWER_ASC(innames[i][len - 2]);
6008 spin.si_region_name[i * 2 + 1] =
6009 TOLOWER_ASC(innames[i][len - 1]);
6010 }
6011 }
6012 spin.si_region_count = incount;
6013
6014 spin.si_foldroot = wordtree_alloc(&spin);
6015 spin.si_keeproot = wordtree_alloc(&spin);
6016 spin.si_prefroot = wordtree_alloc(&spin);
6017 if (spin.si_foldroot == NULL
6018 || spin.si_keeproot == NULL
6019 || spin.si_prefroot == NULL)
6020 {
6021 free_blocks(spin.si_blocks);
6022 goto theend;
6023 }
6024
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006025 // When not producing a .add.spl file clear the character table when
6026 // we encounter one in the .aff file. This means we dump the current
6027 // one in the .spl file if the .aff file doesn't define one. That's
6028 // better than guessing the contents, the table will match a
6029 // previously loaded spell file.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006030 if (!spin.si_add)
6031 spin.si_clear_chartab = TRUE;
6032
6033 /*
6034 * Read all the .aff and .dic files.
6035 * Text is converted to 'encoding'.
6036 * Words are stored in the case-folded and keep-case trees.
6037 */
6038 for (i = 0; i < incount && !error; ++i)
6039 {
6040 spin.si_conv.vc_type = CONV_NONE;
6041 spin.si_region = 1 << i;
6042
6043 vim_snprintf((char *)fname, MAXPATHL, "%s.aff", innames[i]);
6044 if (mch_stat((char *)fname, &st) >= 0)
6045 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006046 // Read the .aff file. Will init "spin->si_conv" based on the
6047 // "SET" line.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006048 afile[i] = spell_read_aff(&spin, fname);
6049 if (afile[i] == NULL)
6050 error = TRUE;
6051 else
6052 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006053 // Read the .dic file and store the words in the trees.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006054 vim_snprintf((char *)fname, MAXPATHL, "%s.dic",
6055 innames[i]);
6056 if (spell_read_dic(&spin, fname, afile[i]) == FAIL)
6057 error = TRUE;
6058 }
6059 }
6060 else
6061 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006062 // No .aff file, try reading the file as a word list. Store
6063 // the words in the trees.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006064 if (spell_read_wordfile(&spin, innames[i]) == FAIL)
6065 error = TRUE;
6066 }
6067
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006068 // Free any conversion stuff.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006069 convert_setup(&spin.si_conv, NULL, NULL);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006070 }
6071
6072 if (spin.si_compflags != NULL && spin.si_nobreak)
Bram Moolenaar32526b32019-01-19 17:43:09 +01006073 msg(_("Warning: both compounding and NOBREAK specified"));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006074
6075 if (!error && !got_int)
6076 {
6077 /*
6078 * Combine tails in the tree.
6079 */
6080 spell_message(&spin, (char_u *)_(msg_compressing));
6081 wordtree_compress(&spin, spin.si_foldroot);
6082 wordtree_compress(&spin, spin.si_keeproot);
6083 wordtree_compress(&spin, spin.si_prefroot);
6084 }
6085
6086 if (!error && !got_int)
6087 {
6088 /*
6089 * Write the info in the spell file.
6090 */
6091 vim_snprintf((char *)IObuff, IOSIZE,
Bram Moolenaarc1669272018-06-19 14:23:53 +02006092 _("Writing spell file %s..."), wfname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006093 spell_message(&spin, IObuff);
6094
6095 error = write_vim_spell(&spin, wfname) == FAIL;
6096
6097 spell_message(&spin, (char_u *)_("Done!"));
6098 vim_snprintf((char *)IObuff, IOSIZE,
6099 _("Estimated runtime memory use: %d bytes"), spin.si_memtot);
6100 spell_message(&spin, IObuff);
6101
6102 /*
6103 * If the file is loaded need to reload it.
6104 */
6105 if (!error)
6106 spell_reload_one(wfname, added_word);
6107 }
6108
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006109 // Free the allocated memory.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006110 ga_clear(&spin.si_rep);
6111 ga_clear(&spin.si_repsal);
6112 ga_clear(&spin.si_sal);
6113 ga_clear(&spin.si_map);
6114 ga_clear(&spin.si_comppat);
6115 ga_clear(&spin.si_prefcond);
6116 hash_clear_all(&spin.si_commonwords, 0);
6117
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006118 // Free the .aff file structures.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006119 for (i = 0; i < incount; ++i)
6120 if (afile[i] != NULL)
6121 spell_free_aff(afile[i]);
6122
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006123 // Free all the bits and pieces at once.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006124 free_blocks(spin.si_blocks);
6125
6126 /*
6127 * If there is soundfolding info and no NOSUGFILE item create the
6128 * .sug file with the soundfolded word trie.
6129 */
6130 if (spin.si_sugtime != 0 && !error && !got_int)
6131 spell_make_sugfile(&spin, wfname);
6132
6133 }
6134
6135theend:
6136 vim_free(fname);
6137 vim_free(wfname);
6138}
6139
6140/*
6141 * Display a message for spell file processing when 'verbose' is set or using
6142 * ":mkspell". "str" can be IObuff.
6143 */
6144 static void
6145spell_message(spellinfo_T *spin, char_u *str)
6146{
6147 if (spin->si_verbose || p_verbose > 2)
6148 {
6149 if (!spin->si_verbose)
6150 verbose_enter();
Bram Moolenaar32526b32019-01-19 17:43:09 +01006151 msg((char *)str);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006152 out_flush();
6153 if (!spin->si_verbose)
6154 verbose_leave();
6155 }
6156}
6157
6158/*
6159 * ":[count]spellgood {word}"
Bram Moolenaar08cc3742019-08-11 22:51:14 +02006160 * ":[count]spellwrong {word}"
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006161 * ":[count]spellundo {word}"
Bram Moolenaar08cc3742019-08-11 22:51:14 +02006162 * ":[count]spellrare {word}"
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006163 */
6164 void
6165ex_spell(exarg_T *eap)
6166{
Bram Moolenaar08cc3742019-08-11 22:51:14 +02006167 spell_add_word(eap->arg, (int)STRLEN(eap->arg),
6168 eap->cmdidx == CMD_spellwrong ? SPELL_ADD_BAD :
6169 eap->cmdidx == CMD_spellrare ? SPELL_ADD_RARE : SPELL_ADD_GOOD,
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006170 eap->forceit ? 0 : (int)eap->line2,
6171 eap->cmdidx == CMD_spellundo);
6172}
6173
6174/*
Bram Moolenaar08cc3742019-08-11 22:51:14 +02006175 * Add "word[len]" to 'spellfile' as a good, rare or bad word.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006176 */
6177 void
6178spell_add_word(
6179 char_u *word,
6180 int len,
Bram Moolenaar08cc3742019-08-11 22:51:14 +02006181 int what, // SPELL_ADD_ values
6182 int idx, // "zG" and "zW": zero, otherwise index in
6183 // 'spellfile'
6184 int undo) // TRUE for "zug", "zuG", "zuw" and "zuW"
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006185{
6186 FILE *fd = NULL;
6187 buf_T *buf = NULL;
6188 int new_spf = FALSE;
6189 char_u *fname;
6190 char_u *fnamebuf = NULL;
6191 char_u line[MAXWLEN * 2];
6192 long fpos, fpos_next = 0;
6193 int i;
6194 char_u *spf;
6195
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006196 if (idx == 0) // use internal wordlist
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006197 {
6198 if (int_wordlist == NULL)
6199 {
6200 int_wordlist = vim_tempname('s', FALSE);
6201 if (int_wordlist == NULL)
6202 return;
6203 }
6204 fname = int_wordlist;
6205 }
6206 else
6207 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006208 // If 'spellfile' isn't set figure out a good default value.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006209 if (*curwin->w_s->b_p_spf == NUL)
6210 {
6211 init_spellfile();
6212 new_spf = TRUE;
6213 }
6214
6215 if (*curwin->w_s->b_p_spf == NUL)
6216 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006217 semsg(_(e_notset), "spellfile");
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006218 return;
6219 }
6220 fnamebuf = alloc(MAXPATHL);
6221 if (fnamebuf == NULL)
6222 return;
6223
6224 for (spf = curwin->w_s->b_p_spf, i = 1; *spf != NUL; ++i)
6225 {
6226 copy_option_part(&spf, fnamebuf, MAXPATHL, ",");
6227 if (i == idx)
6228 break;
6229 if (*spf == NUL)
6230 {
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01006231 semsg(_("E765: 'spellfile' does not have %d entries"), idx);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006232 vim_free(fnamebuf);
6233 return;
6234 }
6235 }
6236
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006237 // Check that the user isn't editing the .add file somewhere.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006238 buf = buflist_findname_exp(fnamebuf);
6239 if (buf != NULL && buf->b_ml.ml_mfp == NULL)
6240 buf = NULL;
6241 if (buf != NULL && bufIsChanged(buf))
6242 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006243 emsg(_(e_bufloaded));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006244 vim_free(fnamebuf);
6245 return;
6246 }
6247
6248 fname = fnamebuf;
6249 }
6250
Bram Moolenaar08cc3742019-08-11 22:51:14 +02006251 if (what == SPELL_ADD_BAD || undo)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006252 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006253 // When the word appears as good word we need to remove that one,
6254 // since its flags sort before the one with WF_BANNED.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006255 fd = mch_fopen((char *)fname, "r");
6256 if (fd != NULL)
6257 {
6258 while (!vim_fgets(line, MAXWLEN * 2, fd))
6259 {
6260 fpos = fpos_next;
6261 fpos_next = ftell(fd);
6262 if (STRNCMP(word, line, len) == 0
6263 && (line[len] == '/' || line[len] < ' '))
6264 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006265 // Found duplicate word. Remove it by writing a '#' at
6266 // the start of the line. Mixing reading and writing
6267 // doesn't work for all systems, close the file first.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006268 fclose(fd);
6269 fd = mch_fopen((char *)fname, "r+");
6270 if (fd == NULL)
6271 break;
6272 if (fseek(fd, fpos, SEEK_SET) == 0)
6273 {
6274 fputc('#', fd);
6275 if (undo)
6276 {
6277 home_replace(NULL, fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006278 smsg(_("Word '%.*s' removed from %s"),
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006279 len, word, NameBuff);
6280 }
6281 }
6282 fseek(fd, fpos_next, SEEK_SET);
6283 }
6284 }
6285 if (fd != NULL)
6286 fclose(fd);
6287 }
6288 }
6289
6290 if (!undo)
6291 {
6292 fd = mch_fopen((char *)fname, "a");
6293 if (fd == NULL && new_spf)
6294 {
6295 char_u *p;
6296
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006297 // We just initialized the 'spellfile' option and can't open the
6298 // file. We may need to create the "spell" directory first. We
6299 // already checked the runtime directory is writable in
6300 // init_spellfile().
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006301 if (!dir_of_file_exists(fname) && (p = gettail_sep(fname)) != fname)
6302 {
6303 int c = *p;
6304
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006305 // The directory doesn't exist. Try creating it and opening
6306 // the file again.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006307 *p = NUL;
6308 vim_mkdir(fname, 0755);
6309 *p = c;
6310 fd = mch_fopen((char *)fname, "a");
6311 }
6312 }
6313
6314 if (fd == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006315 semsg(_(e_notopen), fname);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006316 else
6317 {
Bram Moolenaar08cc3742019-08-11 22:51:14 +02006318 if (what == SPELL_ADD_BAD)
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006319 fprintf(fd, "%.*s/!\n", len, word);
Bram Moolenaar08cc3742019-08-11 22:51:14 +02006320 else if (what == SPELL_ADD_RARE)
6321 fprintf(fd, "%.*s/?\n", len, word);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006322 else
6323 fprintf(fd, "%.*s\n", len, word);
6324 fclose(fd);
6325
6326 home_replace(NULL, fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006327 smsg(_("Word '%.*s' added to %s"), len, word, NameBuff);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006328 }
6329 }
6330
6331 if (fd != NULL)
6332 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006333 // Update the .add.spl file.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006334 mkspell(1, &fname, FALSE, TRUE, TRUE);
6335
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006336 // If the .add file is edited somewhere, reload it.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006337 if (buf != NULL)
6338 buf_reload(buf, buf->b_orig_mode);
6339
6340 redraw_all_later(SOME_VALID);
6341 }
6342 vim_free(fnamebuf);
6343}
6344
6345/*
6346 * Initialize 'spellfile' for the current buffer.
6347 */
6348 static void
6349init_spellfile(void)
6350{
6351 char_u *buf;
6352 int l;
6353 char_u *fname;
6354 char_u *rtp;
6355 char_u *lend;
6356 int aspath = FALSE;
6357 char_u *lstart = curbuf->b_s.b_p_spl;
6358
6359 if (*curwin->w_s->b_p_spl != NUL && curwin->w_s->b_langp.ga_len > 0)
6360 {
6361 buf = alloc(MAXPATHL);
6362 if (buf == NULL)
6363 return;
6364
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006365 // Find the end of the language name. Exclude the region. If there
6366 // is a path separator remember the start of the tail.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006367 for (lend = curwin->w_s->b_p_spl; *lend != NUL
6368 && vim_strchr((char_u *)",._", *lend) == NULL; ++lend)
6369 if (vim_ispathsep(*lend))
6370 {
6371 aspath = TRUE;
6372 lstart = lend + 1;
6373 }
6374
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006375 // Loop over all entries in 'runtimepath'. Use the first one where we
6376 // are allowed to write.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006377 rtp = p_rtp;
6378 while (*rtp != NUL)
6379 {
6380 if (aspath)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006381 // Use directory of an entry with path, e.g., for
6382 // "/dir/lg.utf-8.spl" use "/dir".
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006383 vim_strncpy(buf, curbuf->b_s.b_p_spl,
6384 lstart - curbuf->b_s.b_p_spl - 1);
6385 else
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006386 // Copy the path from 'runtimepath' to buf[].
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006387 copy_option_part(&rtp, buf, MAXPATHL, ",");
6388 if (filewritable(buf) == 2)
6389 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006390 // Use the first language name from 'spelllang' and the
6391 // encoding used in the first loaded .spl file.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006392 if (aspath)
6393 vim_strncpy(buf, curbuf->b_s.b_p_spl,
6394 lend - curbuf->b_s.b_p_spl);
6395 else
6396 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006397 // Create the "spell" directory if it doesn't exist yet.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006398 l = (int)STRLEN(buf);
6399 vim_snprintf((char *)buf + l, MAXPATHL - l, "/spell");
6400 if (filewritable(buf) != 2)
6401 vim_mkdir(buf, 0755);
6402
6403 l = (int)STRLEN(buf);
6404 vim_snprintf((char *)buf + l, MAXPATHL - l,
6405 "/%.*s", (int)(lend - lstart), lstart);
6406 }
6407 l = (int)STRLEN(buf);
6408 fname = LANGP_ENTRY(curwin->w_s->b_langp, 0)
6409 ->lp_slang->sl_fname;
6410 vim_snprintf((char *)buf + l, MAXPATHL - l, ".%s.add",
6411 fname != NULL
6412 && strstr((char *)gettail(fname), ".ascii.") != NULL
6413 ? (char_u *)"ascii" : spell_enc());
6414 set_option_value((char_u *)"spellfile", 0L, buf, OPT_LOCAL);
6415 break;
6416 }
6417 aspath = FALSE;
6418 }
6419
6420 vim_free(buf);
6421 }
6422}
6423
6424
6425
6426/*
6427 * Set the spell character tables from strings in the affix file.
6428 */
6429 static int
6430set_spell_chartab(char_u *fol, char_u *low, char_u *upp)
6431{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006432 // We build the new tables here first, so that we can compare with the
6433 // previous one.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006434 spelltab_T new_st;
6435 char_u *pf = fol, *pl = low, *pu = upp;
6436 int f, l, u;
6437
6438 clear_spell_chartab(&new_st);
6439
6440 while (*pf != NUL)
6441 {
6442 if (*pl == NUL || *pu == NUL)
6443 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006444 emsg(_(e_affform));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006445 return FAIL;
6446 }
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006447 f = mb_ptr2char_adv(&pf);
6448 l = mb_ptr2char_adv(&pl);
6449 u = mb_ptr2char_adv(&pu);
Bram Moolenaar264b74f2019-01-24 17:18:42 +01006450
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006451 // Every character that appears is a word character.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006452 if (f < 256)
6453 new_st.st_isw[f] = TRUE;
6454 if (l < 256)
6455 new_st.st_isw[l] = TRUE;
6456 if (u < 256)
6457 new_st.st_isw[u] = TRUE;
6458
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006459 // if "LOW" and "FOL" are not the same the "LOW" char needs
6460 // case-folding
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006461 if (l < 256 && l != f)
6462 {
6463 if (f >= 256)
6464 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006465 emsg(_(e_affrange));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006466 return FAIL;
6467 }
6468 new_st.st_fold[l] = f;
6469 }
6470
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006471 // if "UPP" and "FOL" are not the same the "UPP" char needs
6472 // case-folding, it's upper case and the "UPP" is the upper case of
6473 // "FOL" .
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006474 if (u < 256 && u != f)
6475 {
6476 if (f >= 256)
6477 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006478 emsg(_(e_affrange));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006479 return FAIL;
6480 }
6481 new_st.st_fold[u] = f;
6482 new_st.st_isu[u] = TRUE;
6483 new_st.st_upper[f] = u;
6484 }
6485 }
6486
6487 if (*pl != NUL || *pu != NUL)
6488 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006489 emsg(_(e_affform));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006490 return FAIL;
6491 }
6492
6493 return set_spell_finish(&new_st);
6494}
6495
6496/*
6497 * Set the spell character tables from strings in the .spl file.
6498 */
6499 static void
6500set_spell_charflags(
6501 char_u *flags,
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006502 int cnt, // length of "flags"
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006503 char_u *fol)
6504{
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006505 // We build the new tables here first, so that we can compare with the
6506 // previous one.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006507 spelltab_T new_st;
6508 int i;
6509 char_u *p = fol;
6510 int c;
6511
6512 clear_spell_chartab(&new_st);
6513
6514 for (i = 0; i < 128; ++i)
6515 {
6516 if (i < cnt)
6517 {
6518 new_st.st_isw[i + 128] = (flags[i] & CF_WORD) != 0;
6519 new_st.st_isu[i + 128] = (flags[i] & CF_UPPER) != 0;
6520 }
6521
6522 if (*p != NUL)
6523 {
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006524 c = mb_ptr2char_adv(&p);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006525 new_st.st_fold[i + 128] = c;
6526 if (i + 128 != c && new_st.st_isu[i + 128] && c < 256)
6527 new_st.st_upper[c] = i + 128;
6528 }
6529 }
6530
6531 (void)set_spell_finish(&new_st);
6532}
6533
6534 static int
6535set_spell_finish(spelltab_T *new_st)
6536{
6537 int i;
6538
6539 if (did_set_spelltab)
6540 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006541 // check that it's the same table
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006542 for (i = 0; i < 256; ++i)
6543 {
6544 if (spelltab.st_isw[i] != new_st->st_isw[i]
6545 || spelltab.st_isu[i] != new_st->st_isu[i]
6546 || spelltab.st_fold[i] != new_st->st_fold[i]
6547 || spelltab.st_upper[i] != new_st->st_upper[i])
6548 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006549 emsg(_("E763: Word characters differ between spell files"));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006550 return FAIL;
6551 }
6552 }
6553 }
6554 else
6555 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006556 // copy the new spelltab into the one being used
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006557 spelltab = *new_st;
6558 did_set_spelltab = TRUE;
6559 }
6560
6561 return OK;
6562}
6563
6564/*
6565 * Write the table with prefix conditions to the .spl file.
6566 * When "fd" is NULL only count the length of what is written.
6567 */
6568 static int
6569write_spell_prefcond(FILE *fd, garray_T *gap)
6570{
6571 int i;
6572 char_u *p;
6573 int len;
6574 int totlen;
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006575 size_t x = 1; // collect return value of fwrite()
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006576
6577 if (fd != NULL)
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006578 put_bytes(fd, (long_u)gap->ga_len, 2); // <prefcondcnt>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006579
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006580 totlen = 2 + gap->ga_len; // length of <prefcondcnt> and <condlen> bytes
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006581
6582 for (i = 0; i < gap->ga_len; ++i)
6583 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006584 // <prefcond> : <condlen> <condstr>
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006585 p = ((char_u **)gap->ga_data)[i];
6586 if (p != NULL)
6587 {
6588 len = (int)STRLEN(p);
6589 if (fd != NULL)
6590 {
6591 fputc(len, fd);
6592 x &= fwrite(p, (size_t)len, (size_t)1, fd);
6593 }
6594 totlen += len;
6595 }
6596 else if (fd != NULL)
6597 fputc(0, fd);
6598 }
6599
6600 return totlen;
6601}
6602
6603
6604/*
6605 * Use map string "map" for languages "lp".
6606 */
6607 static void
6608set_map_str(slang_T *lp, char_u *map)
6609{
6610 char_u *p;
6611 int headc = 0;
6612 int c;
6613 int i;
6614
6615 if (*map == NUL)
6616 {
6617 lp->sl_has_map = FALSE;
6618 return;
6619 }
6620 lp->sl_has_map = TRUE;
6621
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006622 // Init the array and hash tables empty.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006623 for (i = 0; i < 256; ++i)
6624 lp->sl_map_array[i] = 0;
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006625 hash_init(&lp->sl_map_hash);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006626
6627 /*
6628 * The similar characters are stored separated with slashes:
6629 * "aaa/bbb/ccc/". Fill sl_map_array[c] with the character before c and
6630 * before the same slash. For characters above 255 sl_map_hash is used.
6631 */
6632 for (p = map; *p != NUL; )
6633 {
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006634 c = mb_cptr2char_adv(&p);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006635 if (c == '/')
6636 headc = 0;
6637 else
6638 {
6639 if (headc == 0)
6640 headc = c;
6641
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006642 // Characters above 255 don't fit in sl_map_array[], put them in
6643 // the hash table. Each entry is the char, a NUL the headchar and
6644 // a NUL.
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006645 if (c >= 256)
6646 {
6647 int cl = mb_char2len(c);
6648 int headcl = mb_char2len(headc);
6649 char_u *b;
6650 hash_T hash;
6651 hashitem_T *hi;
6652
Bram Moolenaar964b3742019-05-24 18:54:09 +02006653 b = alloc(cl + headcl + 2);
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006654 if (b == NULL)
6655 return;
6656 mb_char2bytes(c, b);
6657 b[cl] = NUL;
6658 mb_char2bytes(headc, b + cl + 1);
6659 b[cl + 1 + headcl] = NUL;
6660 hash = hash_hash(b);
6661 hi = hash_lookup(&lp->sl_map_hash, b, hash);
6662 if (HASHITEM_EMPTY(hi))
6663 hash_add_item(&lp->sl_map_hash, hi, b, hash);
6664 else
6665 {
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006666 // This should have been checked when generating the .spl
6667 // file.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006668 emsg(_("E783: duplicate char in MAP entry"));
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006669 vim_free(b);
6670 }
6671 }
6672 else
Bram Moolenaar9ccfebd2016-07-19 16:39:08 +02006673 lp->sl_map_array[c] = headc;
6674 }
6675 }
6676}
6677
6678
Bram Moolenaar0d6f5d92019-12-05 21:33:15 +01006679#endif // FEAT_SPELL