blob: 4ff413a7148bd3b2f2a8698349ede1bd2a74b18a [file] [log] [blame]
Bram Moolenaare19defe2005-03-21 08:23:33 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * spell.c: code for spell checking
Bram Moolenaarfc735152005-03-22 22:54:12 +000012 *
Bram Moolenaar51485f02005-06-04 21:55:20 +000013 * The spell checking mechanism uses a tree (aka trie). Each node in the tree
14 * has a list of bytes that can appear (siblings). For each byte there is a
15 * pointer to the node with the byte that follows in the word (child).
Bram Moolenaar9f30f502005-06-14 22:01:04 +000016 *
17 * A NUL byte is used where the word may end. The bytes are sorted, so that
18 * binary searching can be used and the NUL bytes are at the start. The
19 * number of possible bytes is stored before the list of bytes.
20 *
21 * The tree uses two arrays: "byts" stores the characters, "idxs" stores
22 * either the next index or flags. The tree starts at index 0. For example,
23 * to lookup "vi" this sequence is followed:
24 * i = 0
25 * len = byts[i]
26 * n = where "v" appears in byts[i + 1] to byts[i + len]
27 * i = idxs[n]
28 * len = byts[i]
29 * n = where "i" appears in byts[i + 1] to byts[i + len]
30 * i = idxs[n]
31 * len = byts[i]
32 * find that byts[i + 1] is 0, idxs[i + 1] has flags for "vi".
Bram Moolenaar51485f02005-06-04 21:55:20 +000033 *
Bram Moolenaar1d73c882005-06-19 22:48:47 +000034 * There are two word trees: one with case-folded words and one with words in
Bram Moolenaar51485f02005-06-04 21:55:20 +000035 * original case. The second one is only used for keep-case words and is
36 * usually small.
37 *
Bram Moolenaar1d73c882005-06-19 22:48:47 +000038 * There is one additional tree for when prefixes are not applied when
39 * generating the .spl file. This tree stores all the possible prefixes, as
40 * if they were words. At each word (prefix) end the prefix nr is stored, the
41 * following word must support this prefix nr. And the condition nr is
42 * stored, used to lookup the condition that the word must match with.
43 *
Bram Moolenaar51485f02005-06-04 21:55:20 +000044 * Thanks to Olaf Seibert for providing an example implementation of this tree
45 * and the compression mechanism.
Bram Moolenaar63d5a1e2005-04-19 21:30:25 +000046 *
47 * Matching involves checking the caps type: Onecap ALLCAP KeepCap.
Bram Moolenaar63d5a1e2005-04-19 21:30:25 +000048 *
Bram Moolenaar402d2fe2005-04-15 21:00:38 +000049 * Why doesn't Vim use aspell/ispell/myspell/etc.?
50 * See ":help develop-spell".
51 */
52
Bram Moolenaar51485f02005-06-04 21:55:20 +000053/*
Bram Moolenaar9f30f502005-06-14 22:01:04 +000054 * Use this to adjust the score after finding suggestions, based on the
55 * suggested word sounding like the bad word. This is much faster than doing
56 * it for every possible suggestion.
57 * Disadvantage: When "the" is typed as "hte" it sounds different and goes
58 * down in the list.
Bram Moolenaard857f0e2005-06-21 22:37:39 +000059 * Used when 'spellsuggest' is set to "best".
60 */
61#define RESCORE(word_score, sound_score) ((3 * word_score + sound_score) / 4)
62
63/*
64 * The double scoring mechanism is based on the principle that there are two
65 * kinds of spelling mistakes:
66 * 1. You know how to spell the word, but mistype something. This results in
67 * a small editing distance (character swapped/omitted/inserted) and
68 * possibly a word that sounds completely different.
69 * 2. You don't know how to spell the word and type something that sounds
70 * right. The edit distance can be big but the word is similar after
71 * sound-folding.
72 * Since scores for these two mistakes will be very different we use a list
73 * for each.
74 * The sound-folding is slow, only do double scoring when 'spellsuggest' is
75 * "double".
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000076 */
77
78/*
Bram Moolenaar1d73c882005-06-19 22:48:47 +000079 * Vim spell file format: <HEADER>
80 * <SUGGEST>
81 * <LWORDTREE>
82 * <KWORDTREE>
83 * <PREFIXTREE>
Bram Moolenaar51485f02005-06-04 21:55:20 +000084 *
Bram Moolenaar1d73c882005-06-19 22:48:47 +000085 * <HEADER>: <fileID>
86 * <regioncnt> <regionname> ...
87 * <charflagslen> <charflags>
88 * <fcharslen> <fchars>
89 * <prefcondcnt> <prefcond> ...
Bram Moolenaar51485f02005-06-04 21:55:20 +000090 *
Bram Moolenaar1d73c882005-06-19 22:48:47 +000091 * <fileID> 10 bytes "VIMspell07"
Bram Moolenaar51485f02005-06-04 21:55:20 +000092 * <regioncnt> 1 byte number of regions following (8 supported)
Bram Moolenaarcfc6c432005-06-06 21:50:35 +000093 * <regionname> 2 bytes Region name: ca, au, etc. Lower case.
Bram Moolenaar51485f02005-06-04 21:55:20 +000094 * First <regionname> is region 1.
95 *
96 * <charflagslen> 1 byte Number of bytes in <charflags> (should be 128).
97 * <charflags> N bytes List of flags (first one is for character 128):
Bram Moolenaar9f30f502005-06-14 22:01:04 +000098 * 0x01 word character CF_WORD
99 * 0x02 upper-case character CF_UPPER
Bram Moolenaar51485f02005-06-04 21:55:20 +0000100 * <fcharslen> 2 bytes Number of bytes in <fchars>.
101 * <fchars> N bytes Folded characters, first one is for character 128.
102 *
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000103 * <prefcondcnt> 2 bytes Number of <prefcond> items following.
104 *
105 * <prefcond> : <condlen> <condstr>
106 *
107 * <condlen> 1 byte Length of <condstr>.
108 *
109 * <condstr> N bytes Condition for the prefix.
110 *
Bram Moolenaar51485f02005-06-04 21:55:20 +0000111 *
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000112 * <SUGGEST> : <repcount> <rep> ...
113 * <salflags> <salcount> <sal> ...
114 * <maplen> <mapstr>
Bram Moolenaar51485f02005-06-04 21:55:20 +0000115 *
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000116 * <repcount> 2 bytes number of <rep> items, MSB first.
117 *
118 * <rep> : <repfromlen> <repfrom> <reptolen> <repto>
119 *
120 * <repfromlen> 1 byte length of <repfrom>
121 *
122 * <repfrom> N bytes "from" part of replacement
123 *
124 * <reptolen> 1 byte length of <repto>
125 *
126 * <repto> N bytes "to" part of replacement
127 *
128 * <salflags> 1 byte flags for soundsalike conversion:
129 * SAL_F0LLOWUP
130 * SAL_COLLAPSE
131 * SAL_REM_ACCENTS
132 *
133 * <sal> : <salfromlen> <salfrom> <saltolen> <salto>
134 *
135 * <salfromlen> 1 byte length of <salfrom>
136 *
137 * <salfrom> N bytes "from" part of soundsalike
138 *
139 * <saltolen> 1 byte length of <salto>
140 *
141 * <salto> N bytes "to" part of soundsalike
142 *
143 * <maplen> 2 bytes length of <mapstr>, MSB first
144 *
145 * <mapstr> N bytes String with sequences of similar characters,
146 * separated by slashes.
Bram Moolenaar51485f02005-06-04 21:55:20 +0000147 *
148 *
149 * <LWORDTREE>: <wordtree>
150 *
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000151 * <KWORDTREE>: <wordtree>
152 *
153 * <PREFIXTREE>: <wordtree>
154 *
155 *
Bram Moolenaar51485f02005-06-04 21:55:20 +0000156 * <wordtree>: <nodecount> <nodedata> ...
157 *
158 * <nodecount> 4 bytes Number of nodes following. MSB first.
159 *
160 * <nodedata>: <siblingcount> <sibling> ...
161 *
162 * <siblingcount> 1 byte Number of siblings in this node. The siblings
163 * follow in sorted order.
164 *
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000165 * <sibling>: <byte> [ <nodeidx> <xbyte>
166 * | <flags> [<region>] [<prefixID>]
167 * | <prefixID> <prefcondnr> ]
Bram Moolenaar51485f02005-06-04 21:55:20 +0000168 *
169 * <byte> 1 byte Byte value of the sibling. Special cases:
170 * BY_NOFLAGS: End of word without flags and for all
171 * regions.
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000172 * BY_FLAGS: End of word, <flags> follow. For
173 * PREFIXTREE <prefixID> and <prefcondnr>
174 * follow.
Bram Moolenaar51485f02005-06-04 21:55:20 +0000175 * BY_INDEX: Child of sibling is shared, <nodeidx>
176 * and <xbyte> follow.
177 *
178 * <nodeidx> 3 bytes Index of child for this sibling, MSB first.
179 *
180 * <xbyte> 1 byte byte value of the sibling.
181 *
182 * <flags> 1 byte bitmask of:
183 * WF_ALLCAP word must have only capitals
184 * WF_ONECAP first char of word must be capital
185 * WF_RARE rare word
186 * WF_REGION <region> follows
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000187 * WF_PFX <prefixID> follows
Bram Moolenaar51485f02005-06-04 21:55:20 +0000188 *
189 * <region> 1 byte Bitmask for regions in which word is valid. When
190 * omitted it's valid in all regions.
191 * Lowest bit is for region 1.
192 *
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000193 * <prefixID> 1 byte ID of prefix that can be used with this word. For
194 * PREFIXTREE used for the required prefix ID.
195 *
196 * <prefcondnr> 2 bytes Prefix condition number, index in <prefcond> list
197 * from HEADER.
Bram Moolenaar51485f02005-06-04 21:55:20 +0000198 *
Bram Moolenaar51485f02005-06-04 21:55:20 +0000199 * All text characters are in 'encoding', but stored as single bytes.
Bram Moolenaar51485f02005-06-04 21:55:20 +0000200 */
201
Bram Moolenaare19defe2005-03-21 08:23:33 +0000202#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
203# include <io.h> /* for lseek(), must be before vim.h */
204#endif
205
206#include "vim.h"
207
208#if defined(FEAT_SYN_HL) || defined(PROTO)
209
210#ifdef HAVE_FCNTL_H
211# include <fcntl.h>
212#endif
213
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000214#define MAXWLEN 250 /* Assume max. word len is this many bytes.
215 Some places assume a word length fits in a
216 byte, thus it can't be above 255. */
Bram Moolenaarfc735152005-03-22 22:54:12 +0000217
Bram Moolenaar9f30f502005-06-14 22:01:04 +0000218/* Type used for indexes in the word tree need to be at least 3 bytes. If int
219 * is 8 bytes we could use something smaller, but what? */
220#if SIZEOF_INT > 2
221typedef int idx_T;
222#else
223typedef long idx_T;
224#endif
225
226/* Flags used for a word. Only the lowest byte can be used, the region byte
227 * comes above it. */
Bram Moolenaar51485f02005-06-04 21:55:20 +0000228#define WF_REGION 0x01 /* region byte follows */
229#define WF_ONECAP 0x02 /* word with one capital (or all capitals) */
230#define WF_ALLCAP 0x04 /* word must be all capitals */
231#define WF_RARE 0x08 /* rare word */
Bram Moolenaarcfc6c432005-06-06 21:50:35 +0000232#define WF_BANNED 0x10 /* bad word */
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000233#define WF_PFX 0x20 /* prefix ID list follows */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000234#define WF_KEEPCAP 0x80 /* keep-case word */
Bram Moolenaar51485f02005-06-04 21:55:20 +0000235
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000236#define WF_CAPMASK (WF_ONECAP | WF_ALLCAP | WF_KEEPCAP)
Bram Moolenaar51485f02005-06-04 21:55:20 +0000237
238#define BY_NOFLAGS 0 /* end of word without flags or region */
239#define BY_FLAGS 1 /* end of word, flag byte follows */
240#define BY_INDEX 2 /* child is shared, index follows */
241#define BY_SPECIAL BY_INDEX /* hightest special byte value */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000242
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000243/* Info from "REP" and "SAL" entries in ".aff" file used in si_rep, sl_rep,
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000244 * and si_sal. Not for sl_sal!
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000245 * One replacement: from "ft_from" to "ft_to". */
246typedef struct fromto_S
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000247{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000248 char_u *ft_from;
249 char_u *ft_to;
250} fromto_T;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000251
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000252/* Info from "SAL" entries in ".aff" file used in sl_sal.
253 * The info is split for quick processing by spell_soundfold().
254 * Note that "sm_oneof" and "sm_rules" point into sm_lead. */
255typedef struct salitem_S
256{
257 char_u *sm_lead; /* leading letters */
258 int sm_leadlen; /* length of "sm_lead" */
259 char_u *sm_oneoff; /* letters from () or NULL */
260 char_u *sm_rules; /* rules like ^, $, priority */
261 char_u *sm_to; /* replacement. */
262} salitem_T;
263
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000264/*
Bram Moolenaar63d5a1e2005-04-19 21:30:25 +0000265 * Structure used to store words and other info for one language, loaded from
266 * a .spl file.
Bram Moolenaar51485f02005-06-04 21:55:20 +0000267 * The main access is through the tree in "sl_fbyts/sl_fidxs", storing the
268 * case-folded words. "sl_kbyts/sl_kidxs" is for keep-case words.
269 *
270 * The "byts" array stores the possible bytes in each tree node, preceded by
271 * the number of possible bytes, sorted on byte value:
272 * <len> <byte1> <byte2> ...
273 * The "idxs" array stores the index of the child node corresponding to the
274 * byte in "byts".
275 * Exception: when the byte is zero, the word may end here and "idxs" holds
276 * the flags and region for the word. There may be several zeros in sequence
277 * for alternative flag/region combinations.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000278 */
279typedef struct slang_S slang_T;
280struct slang_S
281{
282 slang_T *sl_next; /* next language */
283 char_u *sl_name; /* language name "en", "en.rare", "nl", etc. */
Bram Moolenaarb765d632005-06-07 21:00:02 +0000284 char_u *sl_fname; /* name of .spl file */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000285 int sl_add; /* TRUE if it's a .add file. */
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000286
Bram Moolenaar51485f02005-06-04 21:55:20 +0000287 char_u *sl_fbyts; /* case-folded word bytes */
Bram Moolenaar9f30f502005-06-14 22:01:04 +0000288 idx_T *sl_fidxs; /* case-folded word indexes */
Bram Moolenaar51485f02005-06-04 21:55:20 +0000289 char_u *sl_kbyts; /* keep-case word bytes */
Bram Moolenaar9f30f502005-06-14 22:01:04 +0000290 idx_T *sl_kidxs; /* keep-case word indexes */
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000291 char_u *sl_pbyts; /* prefix tree word bytes */
292 idx_T *sl_pidxs; /* prefix tree word indexes */
293
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000294 char_u sl_regions[17]; /* table with up to 8 region names plus NUL */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000295
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000296 int sl_prefixcnt; /* number of items in "sl_prefprog" */
297 regprog_T **sl_prefprog; /* table with regprogs for prefixes */
298
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000299 garray_T sl_rep; /* list of fromto_T entries from REP lines */
300 short sl_rep_first[256]; /* indexes where byte first appears, -1 if
301 there is none */
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000302 garray_T sl_sal; /* list of salitem_T entries from SAL lines */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000303 short sl_sal_first[256]; /* indexes where byte first appears, -1 if
304 there is none */
305 int sl_followup; /* SAL followup */
306 int sl_collapse; /* SAL collapse_result */
307 int sl_rem_accents; /* SAL remove_accents */
Bram Moolenaarea424162005-06-16 21:51:00 +0000308 int sl_has_map; /* TRUE if there is a MAP line */
309#ifdef FEAT_MBYTE
310 hashtab_T sl_map_hash; /* MAP for multi-byte chars */
311 int sl_map_array[256]; /* MAP for first 256 chars */
312#else
313 char_u sl_map_array[256]; /* MAP for first 256 chars */
314#endif
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000315};
316
Bram Moolenaar63d5a1e2005-04-19 21:30:25 +0000317/* First language that is loaded, start of the linked list of loaded
318 * languages. */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000319static slang_T *first_lang = NULL;
320
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000321/* Flags used in .spl file for soundsalike flags. */
322#define SAL_F0LLOWUP 1
323#define SAL_COLLAPSE 2
324#define SAL_REM_ACCENTS 4
325
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000326/*
327 * Structure used in "b_langp", filled from 'spelllang'.
328 */
329typedef struct langp_S
330{
331 slang_T *lp_slang; /* info for this language (NULL for last one) */
332 int lp_region; /* bitmask for region or REGION_ALL */
333} langp_T;
334
335#define LANGP_ENTRY(ga, i) (((langp_T *)(ga).ga_data) + (i))
336
Bram Moolenaarcfc6c432005-06-06 21:50:35 +0000337#define REGION_ALL 0xff /* word valid in all regions */
338
339/* Result values. Lower number is accepted over higher one. */
340#define SP_BANNED -1
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000341#define SP_OK 0
Bram Moolenaarcfc6c432005-06-06 21:50:35 +0000342#define SP_RARE 1
343#define SP_LOCAL 2
344#define SP_BAD 3
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000345
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000346#define VIMSPELLMAGIC "VIMspell07" /* string at start of Vim spell file */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000347#define VIMSPELLMAGICL 10
348
349/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000350 * Information used when looking for suggestions.
351 */
352typedef struct suginfo_S
353{
354 garray_T su_ga; /* suggestions, contains "suggest_T" */
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000355 int su_maxcount; /* max. number of suggestions displayed */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000356 int su_maxscore; /* maximum score for adding to su_ga */
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000357 garray_T su_sga; /* like su_ga, sound-folded scoring */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000358 char_u *su_badptr; /* start of bad word in line */
359 int su_badlen; /* length of detected bad word in line */
Bram Moolenaar0c405862005-06-22 22:26:26 +0000360 int su_badflags; /* caps flags for bad word */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000361 char_u su_badword[MAXWLEN]; /* bad word truncated at su_badlen */
362 char_u su_fbadword[MAXWLEN]; /* su_badword case-folded */
363 hashtab_T su_banned; /* table with banned words */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000364} suginfo_T;
365
366/* One word suggestion. Used in "si_ga". */
367typedef struct suggest_S
368{
369 char_u *st_word; /* suggested word, allocated string */
370 int st_orglen; /* length of replaced text */
371 int st_score; /* lower is better */
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000372 int st_altscore; /* used when st_score compares equal */
373 int st_salscore; /* st_score is for soundalike */
Bram Moolenaar9f30f502005-06-14 22:01:04 +0000374 int st_had_bonus; /* bonus already included in score */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000375} suggest_T;
376
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000377#define SUG(ga, i) (((suggest_T *)(ga).ga_data)[i])
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000378
Bram Moolenaar9f30f502005-06-14 22:01:04 +0000379/* Number of suggestions kept when cleaning up. When rescore_suggestions() is
380 * called the score may change, thus we need to keep more than what is
381 * displayed. */
Bram Moolenaarf417f2b2005-06-23 22:29:21 +0000382#define SUG_CLEAN_COUNT(su) ((su)->su_maxcount < 50 ? 50 : (su)->su_maxcount)
Bram Moolenaar9f30f502005-06-14 22:01:04 +0000383
384/* Threshold for sorting and cleaning up suggestions. Don't want to keep lots
385 * of suggestions that are not going to be displayed. */
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000386#define SUG_MAX_COUNT(su) ((su)->su_maxcount + 50)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000387
388/* score for various changes */
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000389#define SCORE_SPLIT 149 /* split bad word */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000390#define SCORE_ICASE 52 /* slightly different case */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000391#define SCORE_REGION 70 /* word is for different region */
392#define SCORE_RARE 180 /* rare word */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000393#define SCORE_SWAP 90 /* swap two characters */
394#define SCORE_SWAP3 110 /* swap two characters in three */
395#define SCORE_REP 87 /* REP replacement */
396#define SCORE_SUBST 93 /* substitute a character */
397#define SCORE_SIMILAR 33 /* substitute a similar character */
Bram Moolenaar9f30f502005-06-14 22:01:04 +0000398#define SCORE_DEL 94 /* delete a character */
399#define SCORE_INS 96 /* insert a character */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000400
401#define SCORE_MAXINIT 350 /* Initial maximum score: higher == slower.
402 * 350 allows for about three changes. */
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000403
404#define SCORE_BIG SCORE_INS * 3 /* big difference */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000405#define SCORE_MAXMAX 999999 /* accept any score */
406
407/*
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000408 * Structure to store info for word matching.
409 */
410typedef struct matchinf_S
411{
412 langp_T *mi_lp; /* info for language and region */
Bram Moolenaar63d5a1e2005-04-19 21:30:25 +0000413
414 /* pointers to original text to be checked */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000415 char_u *mi_word; /* start of word being checked */
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000416 char_u *mi_end; /* end of matching word so far */
Bram Moolenaar63d5a1e2005-04-19 21:30:25 +0000417 char_u *mi_fend; /* next char to be added to mi_fword */
Bram Moolenaar51485f02005-06-04 21:55:20 +0000418 char_u *mi_cend; /* char after what was used for
419 mi_capflags */
Bram Moolenaar63d5a1e2005-04-19 21:30:25 +0000420
421 /* case-folded text */
422 char_u mi_fword[MAXWLEN + 1]; /* mi_word case-folded */
Bram Moolenaar51485f02005-06-04 21:55:20 +0000423 int mi_fwordlen; /* nr of valid bytes in mi_fword */
Bram Moolenaar63d5a1e2005-04-19 21:30:25 +0000424
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000425 /* for when checking word after a prefix */
426 int mi_prefarridx; /* index in sl_pidxs with list of
427 prefixID/condition */
428 int mi_prefcnt; /* number of entries at mi_prefarridx */
429 int mi_prefixlen; /* byte length of prefix */
430
Bram Moolenaar63d5a1e2005-04-19 21:30:25 +0000431 /* others */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000432 int mi_result; /* result so far: SP_BAD, SP_OK, etc. */
Bram Moolenaar51485f02005-06-04 21:55:20 +0000433 int mi_capflags; /* WF_ONECAP WF_ALLCAP WF_KEEPCAP */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000434} matchinf_T;
435
Bram Moolenaarcfc6c432005-06-06 21:50:35 +0000436/*
437 * The tables used for recognizing word characters according to spelling.
438 * These are only used for the first 256 characters of 'encoding'.
439 */
440typedef struct spelltab_S
441{
442 char_u st_isw[256]; /* flags: is word char */
443 char_u st_isu[256]; /* flags: is uppercase char */
444 char_u st_fold[256]; /* chars: folded case */
Bram Moolenaar9f30f502005-06-14 22:01:04 +0000445 char_u st_upper[256]; /* chars: upper case */
Bram Moolenaarcfc6c432005-06-06 21:50:35 +0000446} spelltab_T;
447
448static spelltab_T spelltab;
449static int did_set_spelltab;
450
Bram Moolenaar9f30f502005-06-14 22:01:04 +0000451#define CF_WORD 0x01
452#define CF_UPPER 0x02
Bram Moolenaarcfc6c432005-06-06 21:50:35 +0000453
454static void clear_spell_chartab __ARGS((spelltab_T *sp));
455static int set_spell_finish __ARGS((spelltab_T *new_st));
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000456static void write_spell_prefcond __ARGS((FILE *fd, garray_T *gap));
Bram Moolenaarcfc6c432005-06-06 21:50:35 +0000457
458/*
459 * Return TRUE if "p" points to a word character or "c" is a word character
460 * for spelling.
461 * Checking for a word character is done very often, avoid the function call
462 * overhead.
463 */
464#ifdef FEAT_MBYTE
465# define SPELL_ISWORDP(p) ((has_mbyte && MB_BYTE2LEN(*(p)) > 1) \
466 ? (mb_get_class(p) >= 2) : spelltab.st_isw[*(p)])
467#else
468# define SPELL_ISWORDP(p) (spelltab.st_isw[*(p)])
469#endif
470
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000471/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000472 * For finding suggestions: At each node in the tree these states are tried:
Bram Moolenaarea424162005-06-16 21:51:00 +0000473 */
474typedef enum
475{
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000476 STATE_START = 0, /* At start of node check for NUL bytes (goodword
477 * ends); if badword ends there is a match, otherwise
478 * try splitting word. */
479 STATE_SPLITUNDO, /* Undo splitting. */
Bram Moolenaarea424162005-06-16 21:51:00 +0000480 STATE_ENDNUL, /* Past NUL bytes at start of the node. */
481 STATE_PLAIN, /* Use each byte of the node. */
482 STATE_DEL, /* Delete a byte from the bad word. */
483 STATE_INS, /* Insert a byte in the bad word. */
484 STATE_SWAP, /* Swap two bytes. */
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000485 STATE_UNSWAP, /* Undo swap two characters. */
486 STATE_SWAP3, /* Swap two characters over three. */
487 STATE_UNSWAP3, /* Undo Swap two characters over three. */
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000488 STATE_UNROT3L, /* Undo rotate three characters left */
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000489 STATE_UNROT3R, /* Undo rotate three characters right */
Bram Moolenaarea424162005-06-16 21:51:00 +0000490 STATE_REP_INI, /* Prepare for using REP items. */
491 STATE_REP, /* Use matching REP items from the .aff file. */
492 STATE_REP_UNDO, /* Undo a REP item replacement. */
493 STATE_FINAL /* End of this node. */
494} state_T;
495
496/*
Bram Moolenaar0c405862005-06-22 22:26:26 +0000497 * Struct to keep the state at each level in suggest_try_change().
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000498 */
499typedef struct trystate_S
500{
Bram Moolenaarea424162005-06-16 21:51:00 +0000501 state_T ts_state; /* state at this level, STATE_ */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000502 int ts_score; /* score */
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000503 idx_T ts_arridx; /* index in tree array, start of node */
Bram Moolenaarea424162005-06-16 21:51:00 +0000504 short ts_curi; /* index in list of child nodes */
505 char_u ts_fidx; /* index in fword[], case-folded bad word */
506 char_u ts_fidxtry; /* ts_fidx at which bytes may be changed */
507 char_u ts_twordlen; /* valid length of tword[] */
508#ifdef FEAT_MBYTE
509 char_u ts_tcharlen; /* number of bytes in tword character */
510 char_u ts_tcharidx; /* current byte index in tword character */
511 char_u ts_isdiff; /* DIFF_ values */
512 char_u ts_fcharstart; /* index in fword where badword char started */
513#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000514 char_u ts_save_prewordlen; /* saved "prewordlen" */
Bram Moolenaarea424162005-06-16 21:51:00 +0000515 char_u ts_save_splitoff; /* su_splitoff saved here */
Bram Moolenaar0c405862005-06-22 22:26:26 +0000516 char_u ts_save_badflags; /* su_badflags saved here */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000517} trystate_T;
518
Bram Moolenaarea424162005-06-16 21:51:00 +0000519/* values for ts_isdiff */
520#define DIFF_NONE 0 /* no different byte (yet) */
521#define DIFF_YES 1 /* different byte found */
522#define DIFF_INSERT 2 /* inserting character */
523
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000524/* mode values for find_word */
525#define FIND_FOLDWORD 0 /* find word case-folded */
526#define FIND_KEEPWORD 1 /* find keep-case word */
527#define FIND_PREFIX 2 /* find word after prefix */
528
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000529static slang_T *slang_alloc __ARGS((char_u *lang));
530static void slang_free __ARGS((slang_T *lp));
Bram Moolenaarb765d632005-06-07 21:00:02 +0000531static void slang_clear __ARGS((slang_T *lp));
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000532static void find_word __ARGS((matchinf_T *mip, int mode));
Bram Moolenaarf417f2b2005-06-23 22:29:21 +0000533static int valid_word_prefix __ARGS((int totprefcnt, int arridx, int prefid, char_u *word, slang_T *slang));
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000534static void find_prefix __ARGS((matchinf_T *mip));
535static int fold_more __ARGS((matchinf_T *mip));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000536static int spell_valid_case __ARGS((int origflags, int treeflags));
Bram Moolenaarf417f2b2005-06-23 22:29:21 +0000537static int no_spell_checking __ARGS((void));
Bram Moolenaarcfc6c432005-06-06 21:50:35 +0000538static void spell_load_lang __ARGS((char_u *lang));
Bram Moolenaarb765d632005-06-07 21:00:02 +0000539static char_u *spell_enc __ARGS((void));
540static void spell_load_cb __ARGS((char_u *fname, void *cookie));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000541static slang_T *spell_load_file __ARGS((char_u *fname, char_u *lang, slang_T *old_lp, int silent));
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000542static idx_T read_tree __ARGS((FILE *fd, char_u *byts, idx_T *idxs, int maxidx, int startidx, int prefixtree, int maxprefcondnr));
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000543static int find_region __ARGS((char_u *rp, char_u *region));
544static int captype __ARGS((char_u *word, char_u *end));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000545static void spell_reload_one __ARGS((char_u *fname, int added_word));
Bram Moolenaarcfc6c432005-06-06 21:50:35 +0000546static int set_spell_charflags __ARGS((char_u *flags, int cnt, char_u *upp));
Bram Moolenaarcfc6c432005-06-06 21:50:35 +0000547static int set_spell_chartab __ARGS((char_u *fol, char_u *low, char_u *upp));
548static void write_spell_chartab __ARGS((FILE *fd));
Bram Moolenaarcfc6c432005-06-06 21:50:35 +0000549static int spell_casefold __ARGS((char_u *p, int len, char_u *buf, int buflen));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000550static void spell_find_suggest __ARGS((char_u *badptr, suginfo_T *su, int maxcount));
551static void spell_find_cleanup __ARGS((suginfo_T *su));
Bram Moolenaar9f30f502005-06-14 22:01:04 +0000552static void onecap_copy __ARGS((char_u *word, char_u *wcopy, int upper));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000553static void allcap_copy __ARGS((char_u *word, char_u *wcopy));
Bram Moolenaar0c405862005-06-22 22:26:26 +0000554static void suggest_try_special __ARGS((suginfo_T *su));
555static void suggest_try_change __ARGS((suginfo_T *su));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000556static int try_deeper __ARGS((suginfo_T *su, trystate_T *stack, int depth, int score_add));
557static void find_keepcap_word __ARGS((slang_T *slang, char_u *fword, char_u *kword));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000558static void score_comp_sal __ARGS((suginfo_T *su));
559static void score_combine __ARGS((suginfo_T *su));
Bram Moolenaarf417f2b2005-06-23 22:29:21 +0000560static int stp_sal_score __ARGS((suggest_T *stp, suginfo_T *su, slang_T *slang, char_u *badsound));
Bram Moolenaar0c405862005-06-22 22:26:26 +0000561static void suggest_try_soundalike __ARGS((suginfo_T *su));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000562static void make_case_word __ARGS((char_u *fword, char_u *cword, int flags));
Bram Moolenaarea424162005-06-16 21:51:00 +0000563static void set_map_str __ARGS((slang_T *lp, char_u *map));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000564static int similar_chars __ARGS((slang_T *slang, int c1, int c2));
Bram Moolenaarf417f2b2005-06-23 22:29:21 +0000565static void add_suggestion __ARGS((suginfo_T *su, garray_T *gap, char_u *goodword, int badlen, int score, int altscore, int had_bonus));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000566static void add_banned __ARGS((suginfo_T *su, char_u *word));
567static int was_banned __ARGS((suginfo_T *su, char_u *word));
568static void free_banned __ARGS((suginfo_T *su));
Bram Moolenaar9f30f502005-06-14 22:01:04 +0000569static void rescore_suggestions __ARGS((suginfo_T *su));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000570static int cleanup_suggestions __ARGS((garray_T *gap, int maxscore, int keep));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000571static void spell_soundfold __ARGS((slang_T *slang, char_u *inword, char_u *res));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000572static int soundalike_score __ARGS((char_u *goodsound, char_u *badsound));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000573static int spell_edit_score __ARGS((char_u *badword, char_u *goodword));
Bram Moolenaarf417f2b2005-06-23 22:29:21 +0000574static void dump_word __ARGS((char_u *word, int round, int flags, linenr_T lnum));
575static linenr_T apply_prefixes __ARGS((slang_T *slang, char_u *word, int round, int flags, linenr_T startlnum));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000576
Bram Moolenaar9f30f502005-06-14 22:01:04 +0000577/*
578 * Use our own character-case definitions, because the current locale may
579 * differ from what the .spl file uses.
580 * These must not be called with negative number!
581 */
582#ifndef FEAT_MBYTE
583/* Non-multi-byte implementation. */
584# define SPELL_TOFOLD(c) ((c) < 256 ? spelltab.st_fold[c] : (c))
585# define SPELL_TOUPPER(c) ((c) < 256 ? spelltab.st_upper[c] : (c))
586# define SPELL_ISUPPER(c) ((c) < 256 ? spelltab.st_isu[c] : FALSE)
587#else
588/* Multi-byte implementation. For Unicode we can call utf_*(), but don't do
589 * that for ASCII, because we don't want to use 'casemap' here. Otherwise use
590 * the "w" library function for characters above 255 if available. */
591# ifdef HAVE_TOWLOWER
592# define SPELL_TOFOLD(c) (enc_utf8 && (c) >= 128 ? utf_fold(c) \
593 : (c) < 256 ? spelltab.st_fold[c] : towlower(c))
594# else
595# define SPELL_TOFOLD(c) (enc_utf8 && (c) >= 128 ? utf_fold(c) \
596 : (c) < 256 ? spelltab.st_fold[c] : (c))
597# endif
598
599# ifdef HAVE_TOWUPPER
600# define SPELL_TOUPPER(c) (enc_utf8 && (c) >= 128 ? utf_toupper(c) \
601 : (c) < 256 ? spelltab.st_upper[c] : towupper(c))
602# else
603# define SPELL_TOUPPER(c) (enc_utf8 && (c) >= 128 ? utf_toupper(c) \
604 : (c) < 256 ? spelltab.st_upper[c] : (c))
605# endif
606
607# ifdef HAVE_ISWUPPER
608# define SPELL_ISUPPER(c) (enc_utf8 && (c) >= 128 ? utf_isupper(c) \
609 : (c) < 256 ? spelltab.st_isu[c] : iswupper(c))
610# else
611# define SPELL_ISUPPER(c) (enc_utf8 && (c) >= 128 ? utf_isupper(c) \
612 : (c) < 256 ? spelltab.st_isu[c] : (c))
613# endif
614#endif
615
Bram Moolenaarcfc6c432005-06-06 21:50:35 +0000616
617static char *e_format = N_("E759: Format error in spell file");
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000618
619/*
620 * Main spell-checking function.
Bram Moolenaar51485f02005-06-04 21:55:20 +0000621 * "ptr" points to a character that could be the start of a word.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000622 * "*attrp" is set to the attributes for a badly spelled word. For a non-word
623 * or when it's OK it remains unchanged.
624 * This must only be called when 'spelllang' is not empty.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000625 *
626 * "sug" is normally NULL. When looking for suggestions it points to
627 * suginfo_T. It's passed as a void pointer to keep the struct local.
628 *
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000629 * Returns the length of the word in bytes, also when it's OK, so that the
630 * caller can skip over the word.
631 */
632 int
Bram Moolenaar51485f02005-06-04 21:55:20 +0000633spell_check(wp, ptr, attrp)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000634 win_T *wp; /* current window */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000635 char_u *ptr;
636 int *attrp;
637{
638 matchinf_T mi; /* Most things are put in "mi" so that it can
639 be passed to functions quickly. */
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000640 int nrlen = 0; /* found a number first */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000641
Bram Moolenaarcfc6c432005-06-06 21:50:35 +0000642 /* A word never starts at a space or a control character. Return quickly
643 * then, skipping over the character. */
644 if (*ptr <= ' ')
645 return 1;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000646
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000647 /* A number is always OK. Also skip hexadecimal numbers 0xFF99 and
Bram Moolenaar0c405862005-06-22 22:26:26 +0000648 * 0X99FF. But when a word character follows do check spelling to find
649 * "3GPP". */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000650 if (*ptr >= '0' && *ptr <= '9')
Bram Moolenaar51485f02005-06-04 21:55:20 +0000651 {
Bram Moolenaar3982c542005-06-08 21:56:31 +0000652 if (*ptr == '0' && (ptr[1] == 'x' || ptr[1] == 'X'))
653 mi.mi_end = skiphex(ptr + 2);
Bram Moolenaar51485f02005-06-04 21:55:20 +0000654 else
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000655 {
Bram Moolenaar51485f02005-06-04 21:55:20 +0000656 mi.mi_end = skipdigits(ptr);
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000657 nrlen = mi.mi_end - ptr;
658 }
659 if (!SPELL_ISWORDP(mi.mi_end))
660 return (int)(mi.mi_end - ptr);
Bram Moolenaar0c405862005-06-22 22:26:26 +0000661
662 /* Try including the digits in the word. */
663 mi.mi_fend = ptr + nrlen;
Bram Moolenaar51485f02005-06-04 21:55:20 +0000664 }
Bram Moolenaar0c405862005-06-22 22:26:26 +0000665 else
666 mi.mi_fend = ptr;
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000667
Bram Moolenaar0c405862005-06-22 22:26:26 +0000668 /* Find the normal end of the word (until the next non-word character). */
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000669 mi.mi_word = ptr;
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000670 if (SPELL_ISWORDP(mi.mi_fend))
Bram Moolenaar51485f02005-06-04 21:55:20 +0000671 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000672 do
Bram Moolenaar51485f02005-06-04 21:55:20 +0000673 {
Bram Moolenaarcfc6c432005-06-06 21:50:35 +0000674 mb_ptr_adv(mi.mi_fend);
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000675 } while (*mi.mi_fend != NUL && SPELL_ISWORDP(mi.mi_fend));
676 }
Bram Moolenaarcfc6c432005-06-06 21:50:35 +0000677
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000678 /* We always use the characters up to the next non-word character,
679 * also for bad words. */
680 mi.mi_end = mi.mi_fend;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +0000681
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000682 /* Check caps type later. */
683 mi.mi_capflags = 0;
684 mi.mi_cend = NULL;
Bram Moolenaar51485f02005-06-04 21:55:20 +0000685
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000686 /* Include one non-word character so that we can check for the
687 * word end. */
688 if (*mi.mi_fend != NUL)
689 mb_ptr_adv(mi.mi_fend);
690
691 (void)spell_casefold(ptr, (int)(mi.mi_fend - ptr), mi.mi_fword,
692 MAXWLEN + 1);
693 mi.mi_fwordlen = STRLEN(mi.mi_fword);
694
695 /* The word is bad unless we recognize it. */
696 mi.mi_result = SP_BAD;
697
698 /*
699 * Loop over the languages specified in 'spelllang'.
700 * We check them all, because a matching word may be longer than an
701 * already found matching word.
702 */
703 for (mi.mi_lp = LANGP_ENTRY(wp->w_buffer->b_langp, 0);
704 mi.mi_lp->lp_slang != NULL; ++mi.mi_lp)
705 {
706 /* Check for a matching word in case-folded words. */
707 find_word(&mi, FIND_FOLDWORD);
708
709 /* Check for a matching word in keep-case words. */
710 find_word(&mi, FIND_KEEPWORD);
711
712 /* Check for matching prefixes. */
713 find_prefix(&mi);
714 }
715
716 if (mi.mi_result != SP_OK)
717 {
Bram Moolenaar0c405862005-06-22 22:26:26 +0000718 /* If we found a number skip over it. Allows for "42nd". Do flag
719 * rare and local words, e.g., "3GPP". */
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000720 if (nrlen > 0)
Bram Moolenaar0c405862005-06-22 22:26:26 +0000721 {
722 if (mi.mi_result == SP_BAD || mi.mi_result == SP_BANNED)
723 return nrlen;
724 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000725
726 /* When we are at a non-word character there is no error, just
727 * skip over the character (try looking for a word after it). */
Bram Moolenaar0c405862005-06-22 22:26:26 +0000728 else if (!SPELL_ISWORDP(ptr))
Bram Moolenaar63d5a1e2005-04-19 21:30:25 +0000729 {
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000730#ifdef FEAT_MBYTE
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000731 if (has_mbyte)
732 return mb_ptr2len_check(ptr);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000733#endif
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000734 return 1;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000735 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000736
737 if (mi.mi_result == SP_BAD || mi.mi_result == SP_BANNED)
738 *attrp = highlight_attr[HLF_SPB];
739 else if (mi.mi_result == SP_RARE)
740 *attrp = highlight_attr[HLF_SPR];
741 else
742 *attrp = highlight_attr[HLF_SPL];
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000743 }
744
Bram Moolenaar51485f02005-06-04 21:55:20 +0000745 return (int)(mi.mi_end - ptr);
746}
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000747
Bram Moolenaar51485f02005-06-04 21:55:20 +0000748/*
749 * Check if the word at "mip->mi_word" is in the tree.
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000750 * When "mode" is FIND_FOLDWORD check in fold-case word tree.
751 * When "mode" is FIND_KEEPWORD check in keep-case word tree.
752 * When "mode" is FIND_PREFIX check for word after prefix in fold-case word
753 * tree.
Bram Moolenaar51485f02005-06-04 21:55:20 +0000754 *
755 * For a match mip->mi_result is updated.
756 */
757 static void
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000758find_word(mip, mode)
Bram Moolenaar51485f02005-06-04 21:55:20 +0000759 matchinf_T *mip;
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000760 int mode;
Bram Moolenaar51485f02005-06-04 21:55:20 +0000761{
Bram Moolenaar9f30f502005-06-14 22:01:04 +0000762 idx_T arridx = 0;
Bram Moolenaar51485f02005-06-04 21:55:20 +0000763 int endlen[MAXWLEN]; /* length at possible word endings */
Bram Moolenaar9f30f502005-06-14 22:01:04 +0000764 idx_T endidx[MAXWLEN]; /* possible word endings */
Bram Moolenaar51485f02005-06-04 21:55:20 +0000765 int endidxcnt = 0;
766 int len;
767 int wlen = 0;
768 int flen;
769 int c;
770 char_u *ptr;
Bram Moolenaar9f30f502005-06-14 22:01:04 +0000771 idx_T lo, hi, m;
Bram Moolenaar51485f02005-06-04 21:55:20 +0000772#ifdef FEAT_MBYTE
773 char_u *s;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +0000774 char_u *p;
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000775#endif
Bram Moolenaarcfc6c432005-06-06 21:50:35 +0000776 int res = SP_BAD;
Bram Moolenaar51485f02005-06-04 21:55:20 +0000777 slang_T *slang = mip->mi_lp->lp_slang;
778 unsigned flags;
779 char_u *byts;
Bram Moolenaar9f30f502005-06-14 22:01:04 +0000780 idx_T *idxs;
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000781 int prefid;
Bram Moolenaar51485f02005-06-04 21:55:20 +0000782
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000783 if (mode == FIND_KEEPWORD)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000784 {
Bram Moolenaar51485f02005-06-04 21:55:20 +0000785 /* Check for word with matching case in keep-case tree. */
786 ptr = mip->mi_word;
787 flen = 9999; /* no case folding, always enough bytes */
788 byts = slang->sl_kbyts;
789 idxs = slang->sl_kidxs;
790 }
791 else
792 {
793 /* Check for case-folded in case-folded tree. */
794 ptr = mip->mi_fword;
795 flen = mip->mi_fwordlen; /* available case-folded bytes */
796 byts = slang->sl_fbyts;
797 idxs = slang->sl_fidxs;
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000798
799 if (mode == FIND_PREFIX)
800 {
801 /* Skip over the prefix. */
802 wlen = mip->mi_prefixlen;
803 flen -= mip->mi_prefixlen;
804 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000805 }
806
Bram Moolenaar51485f02005-06-04 21:55:20 +0000807 if (byts == NULL)
808 return; /* array is empty */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000809
Bram Moolenaar51485f02005-06-04 21:55:20 +0000810 /*
Bram Moolenaarcfc6c432005-06-06 21:50:35 +0000811 * Repeat advancing in the tree until:
812 * - there is a byte that doesn't match,
813 * - we reach the end of the tree,
814 * - or we reach the end of the line.
Bram Moolenaar51485f02005-06-04 21:55:20 +0000815 */
816 for (;;)
817 {
Bram Moolenaar0c405862005-06-22 22:26:26 +0000818 if (flen <= 0 && *mip->mi_fend != NUL)
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000819 flen = fold_more(mip);
Bram Moolenaar51485f02005-06-04 21:55:20 +0000820
821 len = byts[arridx++];
822
823 /* If the first possible byte is a zero the word could end here.
824 * Remember this index, we first check for the longest word. */
825 if (byts[arridx] == 0)
826 {
Bram Moolenaarcfc6c432005-06-06 21:50:35 +0000827 if (endidxcnt == MAXWLEN)
828 {
829 /* Must be a corrupted spell file. */
830 EMSG(_(e_format));
831 return;
832 }
Bram Moolenaar51485f02005-06-04 21:55:20 +0000833 endlen[endidxcnt] = wlen;
834 endidx[endidxcnt++] = arridx++;
835 --len;
836
837 /* Skip over the zeros, there can be several flag/region
838 * combinations. */
839 while (len > 0 && byts[arridx] == 0)
840 {
841 ++arridx;
842 --len;
843 }
844 if (len == 0)
845 break; /* no children, word must end here */
846 }
847
848 /* Stop looking at end of the line. */
849 if (ptr[wlen] == NUL)
850 break;
851
852 /* Perform a binary search in the list of accepted bytes. */
853 c = ptr[wlen];
Bram Moolenaar0c405862005-06-22 22:26:26 +0000854 if (c == TAB) /* <Tab> is handled like <Space> */
855 c = ' ';
Bram Moolenaar51485f02005-06-04 21:55:20 +0000856 lo = arridx;
857 hi = arridx + len - 1;
858 while (lo < hi)
859 {
860 m = (lo + hi) / 2;
861 if (byts[m] > c)
862 hi = m - 1;
863 else if (byts[m] < c)
864 lo = m + 1;
865 else
866 {
867 lo = hi = m;
868 break;
869 }
870 }
871
872 /* Stop if there is no matching byte. */
873 if (hi < lo || byts[lo] != c)
874 break;
875
876 /* Continue at the child (if there is one). */
877 arridx = idxs[lo];
878 ++wlen;
879 --flen;
Bram Moolenaar0c405862005-06-22 22:26:26 +0000880
881 /* One space in the good word may stand for several spaces in the
882 * checked word. */
883 if (c == ' ')
884 {
885 for (;;)
886 {
887 if (flen <= 0 && *mip->mi_fend != NUL)
888 flen = fold_more(mip);
889 if (ptr[wlen] != ' ' && ptr[wlen] != TAB)
890 break;
891 ++wlen;
892 --flen;
893 }
894 }
Bram Moolenaar51485f02005-06-04 21:55:20 +0000895 }
896
897 /*
898 * Verify that one of the possible endings is valid. Try the longest
899 * first.
900 */
901 while (endidxcnt > 0)
902 {
903 --endidxcnt;
904 arridx = endidx[endidxcnt];
905 wlen = endlen[endidxcnt];
906
907#ifdef FEAT_MBYTE
908 if ((*mb_head_off)(ptr, ptr + wlen) > 0)
909 continue; /* not at first byte of character */
910#endif
Bram Moolenaarcfc6c432005-06-06 21:50:35 +0000911 if (SPELL_ISWORDP(ptr + wlen))
Bram Moolenaar51485f02005-06-04 21:55:20 +0000912 continue; /* next char is a word character */
913
914#ifdef FEAT_MBYTE
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000915 if (mode != FIND_KEEPWORD && has_mbyte)
Bram Moolenaar51485f02005-06-04 21:55:20 +0000916 {
917 /* Compute byte length in original word, length may change
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000918 * when folding case. This can be slow, take a shortcut when the
919 * case-folded word is equal to the keep-case word. */
Bram Moolenaar51485f02005-06-04 21:55:20 +0000920 p = mip->mi_word;
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000921 if (STRNCMP(ptr, p, wlen) != 0)
922 {
923 for (s = ptr; s < ptr + wlen; mb_ptr_adv(s))
924 mb_ptr_adv(p);
925 wlen = p - mip->mi_word;
926 }
Bram Moolenaar51485f02005-06-04 21:55:20 +0000927 }
928#endif
929
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000930 /* Check flags and region. For FIND_PREFIX check the condition and
931 * prefix ID.
932 * Repeat this if there are more flags/region alternatives until there
933 * is a match. */
934 res = SP_BAD;
935 for (len = byts[arridx - 1]; len > 0 && byts[arridx] == 0;
936 --len, ++arridx)
Bram Moolenaar51485f02005-06-04 21:55:20 +0000937 {
938 flags = idxs[arridx];
Bram Moolenaar9f30f502005-06-14 22:01:04 +0000939
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000940 /* For the fold-case tree check that the case of the checked word
941 * matches with what the word in the tree requires.
942 * For keep-case tree the case is always right. For prefixes we
943 * don't bother to check. */
944 if (mode == FIND_FOLDWORD)
Bram Moolenaar51485f02005-06-04 21:55:20 +0000945 {
Bram Moolenaar51485f02005-06-04 21:55:20 +0000946 if (mip->mi_cend != mip->mi_word + wlen)
947 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000948 /* mi_capflags was set for a different word length, need
949 * to do it again. */
Bram Moolenaar51485f02005-06-04 21:55:20 +0000950 mip->mi_cend = mip->mi_word + wlen;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000951 mip->mi_capflags = captype(mip->mi_word, mip->mi_cend);
Bram Moolenaar51485f02005-06-04 21:55:20 +0000952 }
953
Bram Moolenaar0c405862005-06-22 22:26:26 +0000954 if (mip->mi_capflags == WF_KEEPCAP
955 || !spell_valid_case(mip->mi_capflags, flags))
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000956 continue;
Bram Moolenaar51485f02005-06-04 21:55:20 +0000957 }
958
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000959 /* When mode is FIND_PREFIX the word must support the prefix:
960 * check the prefix ID and the condition. Do that for the list at
961 * mip->mi_prefarridx. */
962 if (mode == FIND_PREFIX)
Bram Moolenaar51485f02005-06-04 21:55:20 +0000963 {
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000964 /* The prefix ID is stored two bytes above the flags. */
965 prefid = (unsigned)flags >> 16;
Bram Moolenaarf417f2b2005-06-23 22:29:21 +0000966 if (!valid_word_prefix(mip->mi_prefcnt, mip->mi_prefarridx,
967 prefid, mip->mi_fword + mip->mi_prefixlen,
968 slang))
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000969 continue;
970 }
971
972 if (flags & WF_BANNED)
973 res = SP_BANNED;
974 else if (flags & WF_REGION)
975 {
976 /* Check region. */
977 if ((mip->mi_lp->lp_region & (flags >> 8)) != 0)
978 res = SP_OK;
979 else
980 res = SP_LOCAL;
981 }
982 else if (flags & WF_RARE)
983 res = SP_RARE;
984 else
985 res = SP_OK;
986
987 /* Always use the longest match and the best result. */
988 if (mip->mi_result > res)
989 {
990 mip->mi_result = res;
991 mip->mi_end = mip->mi_word + wlen;
992 }
Bram Moolenaarf417f2b2005-06-23 22:29:21 +0000993 else if (mip->mi_result == res && mip->mi_end < mip->mi_word + wlen)
Bram Moolenaar1d73c882005-06-19 22:48:47 +0000994 mip->mi_end = mip->mi_word + wlen;
995
996 if (res == SP_OK)
997 break;
Bram Moolenaar51485f02005-06-04 21:55:20 +0000998 }
999
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00001000 if (res == SP_OK)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001001 break;
Bram Moolenaar51485f02005-06-04 21:55:20 +00001002 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001003}
1004
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001005/*
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00001006 * Return TRUE if the prefix indicated by "mip->mi_prefarridx" matches with
1007 * the prefix ID "prefid" for the word "word".
1008 */
1009 static int
1010valid_word_prefix(totprefcnt, arridx, prefid, word, slang)
1011 int totprefcnt; /* nr of prefix IDs */
1012 int arridx; /* idx in sl_pidxs[] */
1013 int prefid;
1014 char_u *word;
1015 slang_T *slang;
1016{
1017 int prefcnt;
1018 int pidx;
1019 regprog_T *rp;
1020 regmatch_T regmatch;
1021
1022 for (prefcnt = totprefcnt - 1; prefcnt >= 0; --prefcnt)
1023 {
1024 pidx = slang->sl_pidxs[arridx + prefcnt];
1025
1026 /* Check the prefix ID. */
1027 if (prefid != (pidx & 0xff))
1028 continue;
1029
1030 /* Check the condition, if there is one. The condition index is
1031 * stored above the prefix ID byte. */
1032 rp = slang->sl_prefprog[(unsigned)pidx >> 8];
1033 if (rp != NULL)
1034 {
1035 regmatch.regprog = rp;
1036 regmatch.rm_ic = FALSE;
1037 if (!vim_regexec(&regmatch, word, 0))
1038 continue;
1039 }
1040
1041 /* It's a match! */
1042 return TRUE;
1043 }
1044 return FALSE;
1045}
1046
1047/*
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001048 * Check if the word at "mip->mi_word" has a matching prefix.
1049 * If it does, then check the following word.
1050 *
1051 * For a match mip->mi_result is updated.
1052 */
1053 static void
1054find_prefix(mip)
1055 matchinf_T *mip;
1056{
1057 idx_T arridx = 0;
1058 int len;
1059 int wlen = 0;
1060 int flen;
1061 int c;
1062 char_u *ptr;
1063 idx_T lo, hi, m;
1064 slang_T *slang = mip->mi_lp->lp_slang;
1065 char_u *byts;
1066 idx_T *idxs;
1067
1068 /* We use the case-folded word here, since prefixes are always
1069 * case-folded. */
1070 ptr = mip->mi_fword;
1071 flen = mip->mi_fwordlen; /* available case-folded bytes */
1072 byts = slang->sl_pbyts;
1073 idxs = slang->sl_pidxs;
1074
1075 if (byts == NULL)
1076 return; /* array is empty */
1077
1078 /*
1079 * Repeat advancing in the tree until:
1080 * - there is a byte that doesn't match,
1081 * - we reach the end of the tree,
1082 * - or we reach the end of the line.
1083 */
1084 for (;;)
1085 {
1086 if (flen == 0 && *mip->mi_fend != NUL)
1087 flen = fold_more(mip);
1088
1089 len = byts[arridx++];
1090
1091 /* If the first possible byte is a zero the prefix could end here.
1092 * Check if the following word matches and supports the prefix. */
1093 if (byts[arridx] == 0)
1094 {
1095 /* There can be several prefixes with different conditions. We
1096 * try them all, since we don't know which one will give the
1097 * longest match. The word is the same each time, pass the list
1098 * of possible prefixes to find_word(). */
1099 mip->mi_prefarridx = arridx;
1100 mip->mi_prefcnt = len;
1101 while (len > 0 && byts[arridx] == 0)
1102 {
1103 ++arridx;
1104 --len;
1105 }
1106 mip->mi_prefcnt -= len;
1107
1108 /* Find the word that comes after the prefix. */
1109 mip->mi_prefixlen = wlen;
1110 find_word(mip, FIND_PREFIX);
1111
1112
1113 if (len == 0)
1114 break; /* no children, word must end here */
1115 }
1116
1117 /* Stop looking at end of the line. */
1118 if (ptr[wlen] == NUL)
1119 break;
1120
1121 /* Perform a binary search in the list of accepted bytes. */
1122 c = ptr[wlen];
1123 lo = arridx;
1124 hi = arridx + len - 1;
1125 while (lo < hi)
1126 {
1127 m = (lo + hi) / 2;
1128 if (byts[m] > c)
1129 hi = m - 1;
1130 else if (byts[m] < c)
1131 lo = m + 1;
1132 else
1133 {
1134 lo = hi = m;
1135 break;
1136 }
1137 }
1138
1139 /* Stop if there is no matching byte. */
1140 if (hi < lo || byts[lo] != c)
1141 break;
1142
1143 /* Continue at the child (if there is one). */
1144 arridx = idxs[lo];
1145 ++wlen;
1146 --flen;
1147 }
1148}
1149
1150/*
1151 * Need to fold at least one more character. Do until next non-word character
1152 * for efficiency.
1153 * Return the length of the folded chars in bytes.
1154 */
1155 static int
1156fold_more(mip)
1157 matchinf_T *mip;
1158{
1159 int flen;
1160 char_u *p;
1161
1162 p = mip->mi_fend;
1163 do
1164 {
1165 mb_ptr_adv(mip->mi_fend);
1166 } while (*mip->mi_fend != NUL && SPELL_ISWORDP(mip->mi_fend));
1167
1168 /* Include the non-word character so that we can check for the
1169 * word end. */
1170 if (*mip->mi_fend != NUL)
1171 mb_ptr_adv(mip->mi_fend);
1172
1173 (void)spell_casefold(p, (int)(mip->mi_fend - p),
1174 mip->mi_fword + mip->mi_fwordlen,
1175 MAXWLEN - mip->mi_fwordlen);
1176 flen = STRLEN(mip->mi_fword + mip->mi_fwordlen);
1177 mip->mi_fwordlen += flen;
1178 return flen;
1179}
1180
1181/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001182 * Check case flags for a word. Return TRUE if the word has the requested
1183 * case.
1184 */
1185 static int
1186spell_valid_case(origflags, treeflags)
1187 int origflags; /* flags for the checked word. */
1188 int treeflags; /* flags for the word in the spell tree */
1189{
1190 return (origflags == WF_ALLCAP
1191 || ((treeflags & (WF_ALLCAP | WF_KEEPCAP)) == 0
1192 && ((treeflags & WF_ONECAP) == 0 || origflags == WF_ONECAP)));
1193}
1194
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00001195/*
1196 * Return TRUE if spell checking is not enabled.
1197 */
1198 static int
1199no_spell_checking()
1200{
1201 if (!curwin->w_p_spell || *curbuf->b_p_spl == NUL)
1202 {
1203 EMSG(_("E756: Spell checking is not enabled"));
1204 return TRUE;
1205 }
1206 return FALSE;
1207}
Bram Moolenaar51485f02005-06-04 21:55:20 +00001208
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001209/*
1210 * Move to next spell error.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001211 * "curline" is TRUE for "z?": find word under/after cursor in the same line.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001212 * Return OK if found, FAIL otherwise.
1213 */
1214 int
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001215spell_move_to(dir, allwords, curline)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001216 int dir; /* FORWARD or BACKWARD */
1217 int allwords; /* TRUE for "[s" and "]s" */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001218 int curline;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001219{
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00001220 linenr_T lnum;
1221 pos_T found_pos;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001222 char_u *line;
1223 char_u *p;
Bram Moolenaar0c405862005-06-22 22:26:26 +00001224 char_u *endp;
1225 int attr;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001226 int len;
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00001227 int has_syntax = syntax_present(curbuf);
1228 int col;
1229 int can_spell;
Bram Moolenaar0c405862005-06-22 22:26:26 +00001230 char_u *buf = NULL;
1231 int buflen = 0;
1232 int skip = 0;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001233
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00001234 if (no_spell_checking())
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001235 return FAIL;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001236
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00001237 /*
1238 * Start looking for bad word at the start of the line, because we can't
Bram Moolenaar0c405862005-06-22 22:26:26 +00001239 * start halfway a word, we don't know where the it starts or ends.
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00001240 *
1241 * When searching backwards, we continue in the line to find the last
1242 * bad word (in the cursor line: before the cursor).
Bram Moolenaar0c405862005-06-22 22:26:26 +00001243 *
1244 * We concatenate the start of the next line, so that wrapped words work
1245 * (e.g. "et<line-break>cetera"). Doesn't work when searching backwards
1246 * though...
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00001247 */
1248 lnum = curwin->w_cursor.lnum;
1249 found_pos.lnum = 0;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001250
1251 while (!got_int)
1252 {
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00001253 line = ml_get(lnum);
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00001254
Bram Moolenaar0c405862005-06-22 22:26:26 +00001255 len = STRLEN(line);
1256 if (buflen < len + MAXWLEN + 2)
1257 {
1258 vim_free(buf);
1259 buflen = len + MAXWLEN + 2;
1260 buf = alloc(buflen);
1261 if (buf == NULL)
1262 break;
1263 }
1264
1265 /* Copy the line into "buf" and append the start of the next line if
1266 * possible. */
1267 STRCPY(buf, line);
1268 if (lnum < curbuf->b_ml.ml_line_count)
1269 spell_cat_line(buf + STRLEN(buf), ml_get(lnum + 1), MAXWLEN);
1270
1271 p = buf + skip;
1272 endp = buf + len;
1273 while (p < endp)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001274 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00001275 /* When searching backward don't search after the cursor. */
1276 if (dir == BACKWARD
1277 && lnum == curwin->w_cursor.lnum
Bram Moolenaar0c405862005-06-22 22:26:26 +00001278 && (colnr_T)(p - buf) >= curwin->w_cursor.col)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001279 break;
1280
1281 /* start of word */
Bram Moolenaar0c405862005-06-22 22:26:26 +00001282 attr = 0;
Bram Moolenaar51485f02005-06-04 21:55:20 +00001283 len = spell_check(curwin, p, &attr);
1284
1285 if (attr != 0)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001286 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00001287 /* We found a bad word. Check the attribute. */
Bram Moolenaar51485f02005-06-04 21:55:20 +00001288 if (allwords || attr == highlight_attr[HLF_SPB])
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001289 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00001290 /* When searching forward only accept a bad word after
1291 * the cursor. */
1292 if (dir == BACKWARD
1293 || lnum > curwin->w_cursor.lnum
1294 || (lnum == curwin->w_cursor.lnum
Bram Moolenaar0c405862005-06-22 22:26:26 +00001295 && (colnr_T)(curline ? p - buf + len
1296 : p - buf)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001297 > curwin->w_cursor.col))
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001298 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00001299 if (has_syntax)
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00001300 {
Bram Moolenaar0c405862005-06-22 22:26:26 +00001301 col = p - buf;
Bram Moolenaar51485f02005-06-04 21:55:20 +00001302 (void)syn_get_id(lnum, (colnr_T)col,
1303 FALSE, &can_spell);
Bram Moolenaar51485f02005-06-04 21:55:20 +00001304 }
1305 else
1306 can_spell = TRUE;
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00001307
Bram Moolenaar51485f02005-06-04 21:55:20 +00001308 if (can_spell)
1309 {
1310 found_pos.lnum = lnum;
Bram Moolenaar0c405862005-06-22 22:26:26 +00001311 found_pos.col = p - buf;
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00001312#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar51485f02005-06-04 21:55:20 +00001313 found_pos.coladd = 0;
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00001314#endif
Bram Moolenaar51485f02005-06-04 21:55:20 +00001315 if (dir == FORWARD)
1316 {
1317 /* No need to search further. */
1318 curwin->w_cursor = found_pos;
Bram Moolenaar0c405862005-06-22 22:26:26 +00001319 vim_free(buf);
Bram Moolenaar51485f02005-06-04 21:55:20 +00001320 return OK;
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00001321 }
1322 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001323 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001324 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001325 }
1326
Bram Moolenaar51485f02005-06-04 21:55:20 +00001327 /* advance to character after the word */
1328 p += len;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001329 }
1330
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001331 if (curline)
Bram Moolenaar0c405862005-06-22 22:26:26 +00001332 break; /* only check cursor line */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001333
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001334 /* Advance to next line. */
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00001335 if (dir == BACKWARD)
1336 {
1337 if (found_pos.lnum != 0)
1338 {
1339 /* Use the last match in the line. */
1340 curwin->w_cursor = found_pos;
Bram Moolenaar0c405862005-06-22 22:26:26 +00001341 vim_free(buf);
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00001342 return OK;
1343 }
1344 if (lnum == 1)
Bram Moolenaar0c405862005-06-22 22:26:26 +00001345 break;
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00001346 --lnum;
1347 }
1348 else
1349 {
1350 if (lnum == curbuf->b_ml.ml_line_count)
Bram Moolenaar0c405862005-06-22 22:26:26 +00001351 break;
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00001352 ++lnum;
Bram Moolenaar0c405862005-06-22 22:26:26 +00001353
1354 /* Skip the characters at the start of the next line that were
1355 * included in a match crossing line boundaries. */
1356 if (attr == 0)
1357 skip = p - endp;
1358 else
1359 skip = 0;
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00001360 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001361
1362 line_breakcheck();
1363 }
1364
Bram Moolenaar0c405862005-06-22 22:26:26 +00001365 vim_free(buf);
1366 return FAIL;
1367}
1368
1369/*
1370 * For spell checking: concatenate the start of the following line "line" into
1371 * "buf", blanking-out special characters. Copy less then "maxlen" bytes.
1372 */
1373 void
1374spell_cat_line(buf, line, maxlen)
1375 char_u *buf;
1376 char_u *line;
1377 int maxlen;
1378{
1379 char_u *p;
1380 int n;
1381
1382 p = skipwhite(line);
1383 while (vim_strchr((char_u *)"*#/\"\t", *p) != NULL)
1384 p = skipwhite(p + 1);
1385
1386 if (*p != NUL)
1387 {
1388 *buf = ' ';
1389 vim_strncpy(buf + 1, line, maxlen - 1);
1390 n = p - line;
1391 if (n >= maxlen)
1392 n = maxlen - 1;
1393 vim_memset(buf + 1, ' ', n);
1394 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001395}
1396
1397/*
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00001398 * Load word list(s) for "lang" from Vim spell file(s).
Bram Moolenaarb765d632005-06-07 21:00:02 +00001399 * "lang" must be the language without the region: e.g., "en".
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001400 */
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00001401 static void
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001402spell_load_lang(lang)
1403 char_u *lang;
1404{
Bram Moolenaarb765d632005-06-07 21:00:02 +00001405 char_u fname_enc[85];
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001406 int r;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00001407 char_u langcp[MAXWLEN + 1];
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001408
Bram Moolenaarb765d632005-06-07 21:00:02 +00001409 /* Copy the language name to pass it to spell_load_cb() as a cookie.
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00001410 * It's truncated when an error is detected. */
1411 STRCPY(langcp, lang);
1412
Bram Moolenaarb765d632005-06-07 21:00:02 +00001413 /*
1414 * Find the first spell file for "lang" in 'runtimepath' and load it.
1415 */
1416 vim_snprintf((char *)fname_enc, sizeof(fname_enc) - 5,
1417 "spell/%s.%s.spl", lang, spell_enc());
1418 r = do_in_runtimepath(fname_enc, FALSE, spell_load_cb, &langcp);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001419
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00001420 if (r == FAIL && *langcp != NUL)
1421 {
1422 /* Try loading the ASCII version. */
Bram Moolenaarb765d632005-06-07 21:00:02 +00001423 vim_snprintf((char *)fname_enc, sizeof(fname_enc) - 5,
Bram Moolenaar9c13b352005-05-19 20:53:52 +00001424 "spell/%s.ascii.spl", lang);
Bram Moolenaarb765d632005-06-07 21:00:02 +00001425 r = do_in_runtimepath(fname_enc, FALSE, spell_load_cb, &langcp);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001426 }
1427
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00001428 if (r == FAIL)
1429 smsg((char_u *)_("Warning: Cannot find word list \"%s\""),
1430 fname_enc + 6);
Bram Moolenaarb765d632005-06-07 21:00:02 +00001431 else if (*langcp != NUL)
1432 {
1433 /* Load all the additions. */
1434 STRCPY(fname_enc + STRLEN(fname_enc) - 3, "add.spl");
1435 do_in_runtimepath(fname_enc, TRUE, spell_load_cb, &langcp);
1436 }
1437}
1438
1439/*
1440 * Return the encoding used for spell checking: Use 'encoding', except that we
1441 * use "latin1" for "latin9". And limit to 60 characters (just in case).
1442 */
1443 static char_u *
1444spell_enc()
1445{
1446
1447#ifdef FEAT_MBYTE
1448 if (STRLEN(p_enc) < 60 && STRCMP(p_enc, "iso-8859-15") != 0)
1449 return p_enc;
1450#endif
1451 return (char_u *)"latin1";
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001452}
1453
1454/*
1455 * Allocate a new slang_T.
1456 * Caller must fill "sl_next".
1457 */
1458 static slang_T *
1459slang_alloc(lang)
1460 char_u *lang;
1461{
1462 slang_T *lp;
1463
Bram Moolenaar51485f02005-06-04 21:55:20 +00001464 lp = (slang_T *)alloc_clear(sizeof(slang_T));
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001465 if (lp != NULL)
1466 {
1467 lp->sl_name = vim_strsave(lang);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001468 ga_init2(&lp->sl_rep, sizeof(fromto_T), 10);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001469 ga_init2(&lp->sl_sal, sizeof(salitem_T), 10);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001470 }
1471 return lp;
1472}
1473
1474/*
1475 * Free the contents of an slang_T and the structure itself.
1476 */
1477 static void
1478slang_free(lp)
1479 slang_T *lp;
1480{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001481 vim_free(lp->sl_name);
Bram Moolenaarb765d632005-06-07 21:00:02 +00001482 vim_free(lp->sl_fname);
1483 slang_clear(lp);
1484 vim_free(lp);
1485}
1486
1487/*
1488 * Clear an slang_T so that the file can be reloaded.
1489 */
1490 static void
1491slang_clear(lp)
1492 slang_T *lp;
1493{
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001494 garray_T *gap;
1495 fromto_T *ftp;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001496 salitem_T *smp;
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001497 int i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001498
Bram Moolenaar51485f02005-06-04 21:55:20 +00001499 vim_free(lp->sl_fbyts);
Bram Moolenaarb765d632005-06-07 21:00:02 +00001500 lp->sl_fbyts = NULL;
Bram Moolenaar51485f02005-06-04 21:55:20 +00001501 vim_free(lp->sl_kbyts);
Bram Moolenaarb765d632005-06-07 21:00:02 +00001502 lp->sl_kbyts = NULL;
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001503 vim_free(lp->sl_pbyts);
1504 lp->sl_pbyts = NULL;
1505
Bram Moolenaar51485f02005-06-04 21:55:20 +00001506 vim_free(lp->sl_fidxs);
Bram Moolenaarb765d632005-06-07 21:00:02 +00001507 lp->sl_fidxs = NULL;
Bram Moolenaar51485f02005-06-04 21:55:20 +00001508 vim_free(lp->sl_kidxs);
Bram Moolenaarb765d632005-06-07 21:00:02 +00001509 lp->sl_kidxs = NULL;
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001510 vim_free(lp->sl_pidxs);
1511 lp->sl_pidxs = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001512
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001513 gap = &lp->sl_rep;
1514 while (gap->ga_len > 0)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001515 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001516 ftp = &((fromto_T *)gap->ga_data)[--gap->ga_len];
1517 vim_free(ftp->ft_from);
1518 vim_free(ftp->ft_to);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001519 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001520 ga_clear(gap);
1521
1522 gap = &lp->sl_sal;
1523 while (gap->ga_len > 0)
1524 {
1525 smp = &((salitem_T *)gap->ga_data)[--gap->ga_len];
1526 vim_free(smp->sm_lead);
1527 vim_free(smp->sm_to);
1528 }
1529 ga_clear(gap);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001530
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001531 for (i = 0; i < lp->sl_prefixcnt; ++i)
1532 vim_free(lp->sl_prefprog[i]);
1533 vim_free(lp->sl_prefprog);
1534
Bram Moolenaarea424162005-06-16 21:51:00 +00001535#ifdef FEAT_MBYTE
1536 {
1537 int todo = lp->sl_map_hash.ht_used;
1538 hashitem_T *hi;
1539
1540 for (hi = lp->sl_map_hash.ht_array; todo > 0; ++hi)
1541 if (!HASHITEM_EMPTY(hi))
1542 {
1543 --todo;
1544 vim_free(hi->hi_key);
1545 }
1546 }
1547 hash_clear(&lp->sl_map_hash);
1548#endif
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001549}
1550
1551/*
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00001552 * Load one spell file and store the info into a slang_T.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001553 * Invoked through do_in_runtimepath().
1554 */
1555 static void
Bram Moolenaarb765d632005-06-07 21:00:02 +00001556spell_load_cb(fname, cookie)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001557 char_u *fname;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00001558 void *cookie; /* points to the language name */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001559{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001560 (void)spell_load_file(fname, (char_u *)cookie, NULL, FALSE);
Bram Moolenaarb765d632005-06-07 21:00:02 +00001561}
1562
1563/*
1564 * Load one spell file and store the info into a slang_T.
1565 *
1566 * This is invoked in two ways:
1567 * - From spell_load_cb() to load a spell file for the first time. "lang" is
1568 * the language name, "old_lp" is NULL. Will allocate an slang_T.
1569 * - To reload a spell file that was changed. "lang" is NULL and "old_lp"
1570 * points to the existing slang_T.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001571 * Returns the slang_T the spell file was loaded into. NULL for error.
Bram Moolenaarb765d632005-06-07 21:00:02 +00001572 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001573 static slang_T *
1574spell_load_file(fname, lang, old_lp, silent)
Bram Moolenaarb765d632005-06-07 21:00:02 +00001575 char_u *fname;
1576 char_u *lang;
1577 slang_T *old_lp;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001578 int silent; /* no error if file doesn't exist */
Bram Moolenaarb765d632005-06-07 21:00:02 +00001579{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001580 FILE *fd;
1581 char_u buf[MAXWLEN + 1];
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001582 char_u *p;
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001583 char_u *bp;
1584 idx_T *ip;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001585 int i;
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001586 int n;
Bram Moolenaar51485f02005-06-04 21:55:20 +00001587 int len;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001588 int round;
1589 char_u *save_sourcing_name = sourcing_name;
1590 linenr_T save_sourcing_lnum = sourcing_lnum;
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00001591 int cnt, ccnt;
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00001592 char_u *fol;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00001593 slang_T *lp = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001594 garray_T *gap;
1595 fromto_T *ftp;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001596 salitem_T *smp;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001597 int rr;
1598 short *first;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00001599 idx_T idx;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001600 int c = 0;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001601
Bram Moolenaarb765d632005-06-07 21:00:02 +00001602 fd = mch_fopen((char *)fname, "r");
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001603 if (fd == NULL)
1604 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001605 if (!silent)
1606 EMSG2(_(e_notopen), fname);
1607 else if (p_verbose > 2)
1608 {
1609 verbose_enter();
1610 smsg((char_u *)e_notopen, fname);
1611 verbose_leave();
1612 }
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00001613 goto endFAIL;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001614 }
Bram Moolenaarb765d632005-06-07 21:00:02 +00001615 if (p_verbose > 2)
1616 {
1617 verbose_enter();
1618 smsg((char_u *)_("Reading spell file \"%s\""), fname);
1619 verbose_leave();
1620 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001621
Bram Moolenaarb765d632005-06-07 21:00:02 +00001622 if (old_lp == NULL)
1623 {
1624 lp = slang_alloc(lang);
1625 if (lp == NULL)
1626 goto endFAIL;
1627
1628 /* Remember the file name, used to reload the file when it's updated. */
1629 lp->sl_fname = vim_strsave(fname);
1630 if (lp->sl_fname == NULL)
1631 goto endFAIL;
1632
1633 /* Check for .add.spl. */
1634 lp->sl_add = strstr((char *)gettail(fname), ".add.") != NULL;
1635 }
1636 else
1637 lp = old_lp;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00001638
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001639 /* Set sourcing_name, so that error messages mention the file name. */
1640 sourcing_name = fname;
1641 sourcing_lnum = 0;
1642
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001643 /* <HEADER>: <fileID>
1644 * <regioncnt> <regionname> ...
1645 * <charflagslen> <charflags>
1646 * <fcharslen> <fchars>
1647 * <prefcondcnt> <prefcond> ...
1648 */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001649 for (i = 0; i < VIMSPELLMAGICL; ++i)
1650 buf[i] = getc(fd); /* <fileID> */
1651 if (STRNCMP(buf, VIMSPELLMAGIC, VIMSPELLMAGICL) != 0)
1652 {
1653 EMSG(_("E757: Wrong file ID in spell file"));
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00001654 goto endFAIL;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001655 }
1656
1657 cnt = getc(fd); /* <regioncnt> */
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00001658 if (cnt < 0)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001659 {
1660truncerr:
1661 EMSG(_("E758: Truncated spell file"));
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00001662 goto endFAIL;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001663 }
1664 if (cnt > 8)
1665 {
1666formerr:
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00001667 EMSG(_(e_format));
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00001668 goto endFAIL;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001669 }
1670 for (i = 0; i < cnt; ++i)
1671 {
1672 lp->sl_regions[i * 2] = getc(fd); /* <regionname> */
1673 lp->sl_regions[i * 2 + 1] = getc(fd);
1674 }
1675 lp->sl_regions[cnt * 2] = NUL;
1676
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00001677 cnt = getc(fd); /* <charflagslen> */
1678 if (cnt > 0)
1679 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00001680 p = alloc((unsigned)cnt);
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00001681 if (p == NULL)
1682 goto endFAIL;
1683 for (i = 0; i < cnt; ++i)
1684 p[i] = getc(fd); /* <charflags> */
1685
1686 ccnt = (getc(fd) << 8) + getc(fd); /* <fcharslen> */
1687 if (ccnt <= 0)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001688 {
1689 vim_free(p);
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00001690 goto formerr;
Bram Moolenaar51485f02005-06-04 21:55:20 +00001691 }
1692 fol = alloc((unsigned)ccnt + 1);
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00001693 if (fol == NULL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001694 {
1695 vim_free(p);
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00001696 goto endFAIL;
Bram Moolenaar51485f02005-06-04 21:55:20 +00001697 }
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00001698 for (i = 0; i < ccnt; ++i)
1699 fol[i] = getc(fd); /* <fchars> */
1700 fol[i] = NUL;
1701
Bram Moolenaar9f30f502005-06-14 22:01:04 +00001702 /* Set the word-char flags and fill SPELL_ISUPPER() table. */
Bram Moolenaar51485f02005-06-04 21:55:20 +00001703 i = set_spell_charflags(p, cnt, fol);
1704 vim_free(p);
1705 vim_free(fol);
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00001706#if 0 /* tolerate the differences */
Bram Moolenaar51485f02005-06-04 21:55:20 +00001707 if (i == FAIL)
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00001708 goto formerr;
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00001709#endif
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00001710 }
1711 else
1712 {
1713 /* When <charflagslen> is zero then <fcharlen> must also be zero. */
1714 cnt = (getc(fd) << 8) + getc(fd);
1715 if (cnt != 0)
1716 goto formerr;
1717 }
1718
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001719 /* <prefcondcnt> <prefcond> ... */
1720 cnt = (getc(fd) << 8) + getc(fd); /* <prefcondcnt> */
1721 if (cnt > 0)
1722 {
1723 lp->sl_prefprog = (regprog_T **)alloc_clear(
1724 (unsigned)sizeof(regprog_T *) * cnt);
1725 if (lp->sl_prefprog == NULL)
1726 goto endFAIL;
1727 lp->sl_prefixcnt = cnt;
1728
1729 for (i = 0; i < cnt; ++i)
1730 {
1731 /* <prefcond> : <condlen> <condstr> */
1732 n = getc(fd); /* <condlen> */
1733 if (n < 0)
1734 goto formerr;
1735 /* When <condlen> is zero we have an empty condition. Otherwise
1736 * compile the regexp program used to check for the condition. */
1737 if (n > 0)
1738 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001739 buf[0] = '^'; /* always match at one position only */
1740 p = buf + 1;
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001741 while (n-- > 0)
1742 *p++ = getc(fd); /* <condstr> */
1743 *p = NUL;
1744 lp->sl_prefprog[i] = vim_regcomp(buf, RE_MAGIC + RE_STRING);
1745 }
1746 }
1747 }
1748
1749
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001750 /* <SUGGEST> : <repcount> <rep> ...
1751 * <salflags> <salcount> <sal> ...
1752 * <maplen> <mapstr> */
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001753
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001754 cnt = (getc(fd) << 8) + getc(fd); /* <repcount> */
1755 if (cnt < 0)
1756 goto formerr;
1757
1758 gap = &lp->sl_rep;
1759 if (ga_grow(gap, cnt) == FAIL)
1760 goto endFAIL;
1761
1762 /* <rep> : <repfromlen> <repfrom> <reptolen> <repto> */
1763 for (; gap->ga_len < cnt; ++gap->ga_len)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001764 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001765 ftp = &((fromto_T *)gap->ga_data)[gap->ga_len];
1766 for (rr = 1; rr <= 2; ++rr)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001767 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001768 ccnt = getc(fd);
1769 if (ccnt < 0)
1770 {
1771 if (rr == 2)
1772 vim_free(ftp->ft_from);
1773 goto formerr;
1774 }
1775 if ((p = alloc(ccnt + 1)) == NULL)
1776 {
1777 if (rr == 2)
1778 vim_free(ftp->ft_from);
1779 goto endFAIL;
1780 }
1781 for (i = 0; i < ccnt; ++i)
1782 p[i] = getc(fd); /* <repfrom> or <repto> */
1783 p[i] = NUL;
1784 if (rr == 1)
1785 ftp->ft_from = p;
1786 else
1787 ftp->ft_to = p;
1788 }
1789 }
1790
1791 /* Fill the first-index table. */
1792 first = lp->sl_rep_first;
1793 for (i = 0; i < 256; ++i)
1794 first[i] = -1;
1795 for (i = 0; i < gap->ga_len; ++i)
1796 {
1797 ftp = &((fromto_T *)gap->ga_data)[i];
1798 if (first[*ftp->ft_from] == -1)
1799 first[*ftp->ft_from] = i;
1800 }
1801
1802 i = getc(fd); /* <salflags> */
1803 if (i & SAL_F0LLOWUP)
1804 lp->sl_followup = TRUE;
1805 if (i & SAL_COLLAPSE)
1806 lp->sl_collapse = TRUE;
1807 if (i & SAL_REM_ACCENTS)
1808 lp->sl_rem_accents = TRUE;
1809
1810 cnt = (getc(fd) << 8) + getc(fd); /* <salcount> */
1811 if (cnt < 0)
1812 goto formerr;
1813
1814 gap = &lp->sl_sal;
1815 if (ga_grow(gap, cnt) == FAIL)
1816 goto endFAIL;
1817
1818 /* <sal> : <salfromlen> <salfrom> <saltolen> <salto> */
1819 for (; gap->ga_len < cnt; ++gap->ga_len)
1820 {
1821 smp = &((salitem_T *)gap->ga_data)[gap->ga_len];
1822 ccnt = getc(fd); /* <salfromlen> */
1823 if (ccnt < 0)
1824 goto formerr;
1825 if ((p = alloc(ccnt + 2)) == NULL)
1826 goto endFAIL;
1827 smp->sm_lead = p;
1828
1829 /* Read up to the first special char into sm_lead. */
1830 for (i = 0; i < ccnt; ++i)
1831 {
1832 c = getc(fd); /* <salfrom> */
1833 if (vim_strchr((char_u *)"0123456789(-<^$", c) != NULL)
1834 break;
1835 *p++ = c;
1836 }
1837 smp->sm_leadlen = p - smp->sm_lead;
1838 *p++ = NUL;
1839
1840 /* Put optional chars in sm_oneoff, if any. */
1841 if (c == '(')
1842 {
1843 smp->sm_oneoff = p;
1844 for (++i; i < ccnt; ++i)
1845 {
1846 c = getc(fd); /* <salfrom> */
1847 if (c == ')')
1848 break;
1849 *p++ = c;
1850 }
1851 *p++ = NUL;
1852 if (++i < ccnt)
1853 c = getc(fd);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001854 }
1855 else
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001856 smp->sm_oneoff = NULL;
1857
1858 /* Any following chars go in sm_rules. */
1859 smp->sm_rules = p;
1860 if (i < ccnt)
1861 *p++ = c;
1862 for (++i; i < ccnt; ++i)
1863 *p++ = getc(fd); /* <salfrom> */
1864 *p++ = NUL;
1865
1866 ccnt = getc(fd); /* <saltolen> */
1867 if (ccnt < 0)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001868 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001869 vim_free(smp->sm_lead);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001870 goto formerr;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001871 }
1872 if ((p = alloc(ccnt + 1)) == NULL)
1873 {
1874 vim_free(smp->sm_lead);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001875 goto endFAIL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001876 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001877 smp->sm_to = p;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001878
Bram Moolenaard857f0e2005-06-21 22:37:39 +00001879 for (i = 0; i < ccnt; ++i)
1880 *p++ = getc(fd); /* <salto> */
1881 *p++ = NUL;
1882 }
1883
1884 /* Fill the first-index table. */
1885 first = lp->sl_sal_first;
1886 for (i = 0; i < 256; ++i)
1887 first[i] = -1;
1888 for (i = 0; i < gap->ga_len; ++i)
1889 {
1890 smp = &((salitem_T *)gap->ga_data)[i];
1891 if (first[*smp->sm_lead] == -1)
1892 first[*smp->sm_lead] = i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001893 }
1894
1895 cnt = (getc(fd) << 8) + getc(fd); /* <maplen> */
1896 if (cnt < 0)
1897 goto formerr;
1898 p = alloc(cnt + 1);
1899 if (p == NULL)
1900 goto endFAIL;
1901 for (i = 0; i < cnt; ++i)
1902 p[i] = getc(fd); /* <mapstr> */
1903 p[i] = NUL;
Bram Moolenaarea424162005-06-16 21:51:00 +00001904 set_map_str(lp, p);
1905 vim_free(p);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001906
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001907
Bram Moolenaar51485f02005-06-04 21:55:20 +00001908 /* round 1: <LWORDTREE>
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001909 * round 2: <KWORDTREE>
1910 * round 3: <PREFIXTREE> */
1911 for (round = 1; round <= 3; ++round)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001912 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00001913 /* The tree size was computed when writing the file, so that we can
1914 * allocate it as one long block. <nodecount> */
1915 len = (getc(fd) << 24) + (getc(fd) << 16) + (getc(fd) << 8) + getc(fd);
1916 if (len < 0)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001917 goto truncerr;
Bram Moolenaar51485f02005-06-04 21:55:20 +00001918 if (len > 0)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001919 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00001920 /* Allocate the byte array. */
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001921 bp = lalloc((long_u)len, TRUE);
1922 if (bp == NULL)
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00001923 goto endFAIL;
Bram Moolenaar51485f02005-06-04 21:55:20 +00001924 if (round == 1)
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001925 lp->sl_fbyts = bp;
1926 else if (round == 2)
1927 lp->sl_kbyts = bp;
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00001928 else
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001929 lp->sl_pbyts = bp;
Bram Moolenaar51485f02005-06-04 21:55:20 +00001930
1931 /* Allocate the index array. */
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001932 ip = (idx_T *)lalloc_clear((long_u)(len * sizeof(int)), TRUE);
1933 if (ip == NULL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001934 goto endFAIL;
1935 if (round == 1)
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001936 lp->sl_fidxs = ip;
1937 else if (round == 2)
1938 lp->sl_kidxs = ip;
Bram Moolenaar51485f02005-06-04 21:55:20 +00001939 else
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001940 lp->sl_pidxs = ip;
Bram Moolenaar51485f02005-06-04 21:55:20 +00001941
1942 /* Read the tree and store it in the array. */
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001943 idx = read_tree(fd, bp, ip, len, 0, round == 3, lp->sl_prefixcnt);
Bram Moolenaar9f30f502005-06-14 22:01:04 +00001944 if (idx == -1)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001945 goto truncerr;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00001946 if (idx < 0)
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00001947 goto formerr;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001948 }
1949 }
Bram Moolenaar51485f02005-06-04 21:55:20 +00001950
Bram Moolenaarb765d632005-06-07 21:00:02 +00001951 /* For a new file link it in the list of spell files. */
1952 if (old_lp == NULL)
1953 {
1954 lp->sl_next = first_lang;
1955 first_lang = lp;
1956 }
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00001957
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00001958 goto endOK;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001959
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00001960endFAIL:
Bram Moolenaarb765d632005-06-07 21:00:02 +00001961 if (lang != NULL)
1962 /* truncating the name signals the error to spell_load_lang() */
1963 *lang = NUL;
1964 if (lp != NULL && old_lp == NULL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001965 {
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00001966 slang_free(lp);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001967 lp = NULL;
1968 }
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00001969
1970endOK:
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001971 if (fd != NULL)
1972 fclose(fd);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001973 sourcing_name = save_sourcing_name;
1974 sourcing_lnum = save_sourcing_lnum;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001975
1976 return lp;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001977}
1978
1979/*
Bram Moolenaar51485f02005-06-04 21:55:20 +00001980 * Read one row of siblings from the spell file and store it in the byte array
1981 * "byts" and index array "idxs". Recursively read the children.
1982 *
Bram Moolenaar0c405862005-06-22 22:26:26 +00001983 * NOTE: The code here must match put_node().
Bram Moolenaar51485f02005-06-04 21:55:20 +00001984 *
1985 * Returns the index follosing the siblings.
1986 * Returns -1 if the file is shorter than expected.
1987 * Returns -2 if there is a format error.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001988 */
Bram Moolenaar9f30f502005-06-14 22:01:04 +00001989 static idx_T
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001990read_tree(fd, byts, idxs, maxidx, startidx, prefixtree, maxprefcondnr)
Bram Moolenaar51485f02005-06-04 21:55:20 +00001991 FILE *fd;
1992 char_u *byts;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00001993 idx_T *idxs;
Bram Moolenaar51485f02005-06-04 21:55:20 +00001994 int maxidx; /* size of arrays */
Bram Moolenaar9f30f502005-06-14 22:01:04 +00001995 idx_T startidx; /* current index in "byts" and "idxs" */
Bram Moolenaar1d73c882005-06-19 22:48:47 +00001996 int prefixtree; /* TRUE for reading PREFIXTREE */
1997 int maxprefcondnr; /* maximum for <prefcondnr> */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001998{
Bram Moolenaar51485f02005-06-04 21:55:20 +00001999 int len;
2000 int i;
2001 int n;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00002002 idx_T idx = startidx;
Bram Moolenaar51485f02005-06-04 21:55:20 +00002003 int c;
2004#define SHARED_MASK 0x8000000
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002005
Bram Moolenaar51485f02005-06-04 21:55:20 +00002006 len = getc(fd); /* <siblingcount> */
2007 if (len <= 0)
2008 return -1;
2009
2010 if (startidx + len >= maxidx)
2011 return -2;
2012 byts[idx++] = len;
2013
2014 /* Read the byte values, flag/region bytes and shared indexes. */
2015 for (i = 1; i <= len; ++i)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002016 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00002017 c = getc(fd); /* <byte> */
2018 if (c < 0)
2019 return -1;
2020 if (c <= BY_SPECIAL)
2021 {
2022 if (c == BY_NOFLAGS)
2023 {
2024 /* No flags, all regions. */
2025 idxs[idx] = 0;
2026 c = 0;
2027 }
2028 else if (c == BY_FLAGS)
2029 {
Bram Moolenaar1d73c882005-06-19 22:48:47 +00002030 if (prefixtree)
2031 {
2032 /* Read the prefix ID and the condition nr. In idxs[]
2033 * store the prefix ID in the low byte, the condition
2034 * index shifted up 8 bits. */
2035 c = getc(fd); /* <prefixID> */
2036 n = (getc(fd) << 8) + getc(fd); /* <prefcondnr> */
2037 if (n >= maxprefcondnr)
2038 return -2;
2039 c = (n << 8) + c;
2040 }
2041 else
2042 {
2043 /* Read flags and optional region and prefix ID. In
2044 * idxs[] the flags go in the low byte, region above that
2045 * and prefix ID above the region. */
2046 c = getc(fd); /* <flags> */
2047 if (c & WF_REGION)
2048 c = (getc(fd) << 8) + c; /* <region> */
2049 if (c & WF_PFX)
2050 c = (getc(fd) << 16) + c; /* <prefixID> */
2051 }
2052
Bram Moolenaar51485f02005-06-04 21:55:20 +00002053 idxs[idx] = c;
2054 c = 0;
2055 }
2056 else /* c == BY_INDEX */
2057 {
2058 /* <nodeidx> */
2059 n = (getc(fd) << 16) + (getc(fd) << 8) + getc(fd);
2060 if (n < 0 || n >= maxidx)
2061 return -2;
2062 idxs[idx] = n + SHARED_MASK;
2063 c = getc(fd); /* <xbyte> */
2064 }
2065 }
2066 byts[idx++] = c;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002067 }
2068
Bram Moolenaar51485f02005-06-04 21:55:20 +00002069 /* Recursively read the children for non-shared siblings.
2070 * Skip the end-of-word ones (zero byte value) and the shared ones (and
2071 * remove SHARED_MASK) */
2072 for (i = 1; i <= len; ++i)
2073 if (byts[startidx + i] != 0)
2074 {
2075 if (idxs[startidx + i] & SHARED_MASK)
2076 idxs[startidx + i] &= ~SHARED_MASK;
2077 else
2078 {
2079 idxs[startidx + i] = idx;
Bram Moolenaar1d73c882005-06-19 22:48:47 +00002080 idx = read_tree(fd, byts, idxs, maxidx, idx,
2081 prefixtree, maxprefcondnr);
Bram Moolenaar51485f02005-06-04 21:55:20 +00002082 if (idx < 0)
2083 break;
2084 }
2085 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002086
Bram Moolenaar51485f02005-06-04 21:55:20 +00002087 return idx;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002088}
2089
2090/*
2091 * Parse 'spelllang' and set buf->b_langp accordingly.
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002092 * Returns NULL if it's OK, an error message otherwise.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002093 */
2094 char_u *
2095did_set_spelllang(buf)
2096 buf_T *buf;
2097{
2098 garray_T ga;
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002099 char_u *splp;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002100 char_u *region;
2101 int region_mask;
2102 slang_T *lp;
2103 int c;
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002104 char_u lang[MAXWLEN + 1];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002105 char_u spf_name[MAXPATHL];
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002106 int load_spf;
2107 int len;
2108 char_u *p;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002109
2110 ga_init2(&ga, sizeof(langp_T), 2);
2111
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002112 /* Make the name of the .spl file associated with 'spellfile'. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002113 if (*buf->b_p_spf == NUL)
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002114 load_spf = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002115 else
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002116 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002117 vim_snprintf((char *)spf_name, sizeof(spf_name), "%s.spl",
2118 buf->b_p_spf);
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002119 load_spf = TRUE;
2120 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002121
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002122 /* loop over comma separated language names. */
2123 for (splp = buf->b_p_spl; *splp != NUL; )
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002124 {
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002125 /* Get one language name. */
2126 copy_option_part(&splp, lang, MAXWLEN, ",");
2127
2128 /* If there is a region name let "region" point to it and remove it
2129 * from the name. */
Bram Moolenaar5482f332005-04-17 20:18:43 +00002130 region = NULL;
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002131 len = STRLEN(lang);
2132 if (len > 3 && lang[len - 3] == '_')
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002133 {
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002134 region = lang + len - 2;
2135 len -= 3;
2136 lang[len] = NUL;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002137 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002138
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00002139 /* Check if we loaded this language before. */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002140 for (lp = first_lang; lp != NULL; lp = lp->sl_next)
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002141 if (STRICMP(lp->sl_name, lang) == 0)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002142 break;
2143
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002144 /* If not found try loading the language now. */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002145 if (lp == NULL)
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002146 spell_load_lang(lang);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002147
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00002148 /*
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002149 * Loop over the languages, there can be several files for "lang".
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00002150 */
2151 for (lp = first_lang; lp != NULL; lp = lp->sl_next)
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002152 if (STRICMP(lp->sl_name, lang) == 0)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002153 {
Bram Moolenaar3982c542005-06-08 21:56:31 +00002154 region_mask = REGION_ALL;
2155 if (region != NULL)
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00002156 {
2157 /* find region in sl_regions */
2158 c = find_region(lp->sl_regions, region);
2159 if (c == REGION_ALL)
2160 {
Bram Moolenaar3982c542005-06-08 21:56:31 +00002161 if (!lp->sl_add)
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002162 smsg((char_u *)
2163 _("Warning: region %s not supported"),
2164 region);
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00002165 }
2166 else
2167 region_mask = 1 << c;
2168 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002169
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00002170 if (ga_grow(&ga, 1) == FAIL)
2171 {
2172 ga_clear(&ga);
2173 return e_outofmem;
2174 }
2175 LANGP_ENTRY(ga, ga.ga_len)->lp_slang = lp;
2176 LANGP_ENTRY(ga, ga.ga_len)->lp_region = region_mask;
2177 ++ga.ga_len;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002178
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002179 /* Check if this is the spell file related to 'spellfile'. */
2180 if (load_spf && fullpathcmp(spf_name, lp->sl_fname, FALSE)
2181 == FPC_SAME)
2182 load_spf = FALSE;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002183 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002184 }
2185
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002186 /*
2187 * Make sure the 'spellfile' file is loaded. It may be in 'runtimepath',
2188 * then it's probably loaded above already. Otherwise load it here.
2189 */
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002190 if (load_spf)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002191 {
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002192 /* Check if it was loaded already. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002193 for (lp = first_lang; lp != NULL; lp = lp->sl_next)
2194 if (fullpathcmp(spf_name, lp->sl_fname, FALSE) == FPC_SAME)
2195 break;
2196 if (lp == NULL)
2197 {
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002198 /* Not loaded, try loading it now. The language name includes the
2199 * region name, the region is ignored otherwise. */
2200 vim_strncpy(lang, gettail(buf->b_p_spf), MAXWLEN);
2201 p = vim_strchr(lang, '.');
2202 if (p != NULL)
2203 *p = NUL; /* truncate at ".encoding.add" */
2204 lp = spell_load_file(spf_name, lang, NULL, TRUE);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002205 }
2206 if (lp != NULL && ga_grow(&ga, 1) == OK)
2207 {
2208 LANGP_ENTRY(ga, ga.ga_len)->lp_slang = lp;
2209 LANGP_ENTRY(ga, ga.ga_len)->lp_region = REGION_ALL;
2210 ++ga.ga_len;
2211 }
2212 }
2213
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002214 /* Add a NULL entry to mark the end of the list. */
2215 if (ga_grow(&ga, 1) == FAIL)
2216 {
2217 ga_clear(&ga);
2218 return e_outofmem;
2219 }
2220 LANGP_ENTRY(ga, ga.ga_len)->lp_slang = NULL;
2221 ++ga.ga_len;
2222
2223 /* Everything is fine, store the new b_langp value. */
2224 ga_clear(&buf->b_langp);
2225 buf->b_langp = ga;
2226
2227 return NULL;
2228}
2229
2230/*
2231 * Find the region "region[2]" in "rp" (points to "sl_regions").
2232 * Each region is simply stored as the two characters of it's name.
2233 * Returns the index if found, REGION_ALL if not found.
2234 */
2235 static int
2236find_region(rp, region)
2237 char_u *rp;
2238 char_u *region;
2239{
2240 int i;
2241
2242 for (i = 0; ; i += 2)
2243 {
2244 if (rp[i] == NUL)
2245 return REGION_ALL;
2246 if (rp[i] == region[0] && rp[i + 1] == region[1])
2247 break;
2248 }
2249 return i / 2;
2250}
2251
2252/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002253 * Return case type of word:
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002254 * w word 0
Bram Moolenaar51485f02005-06-04 21:55:20 +00002255 * Word WF_ONECAP
2256 * W WORD WF_ALLCAP
2257 * WoRd wOrd WF_KEEPCAP
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002258 */
2259 static int
2260captype(word, end)
2261 char_u *word;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002262 char_u *end; /* When NULL use up to NUL byte. */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002263{
2264 char_u *p;
2265 int c;
2266 int firstcap;
2267 int allcap;
2268 int past_second = FALSE; /* past second word char */
2269
2270 /* find first letter */
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00002271 for (p = word; !SPELL_ISWORDP(p); mb_ptr_adv(p))
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002272 if (end == NULL ? *p == NUL : p >= end)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002273 return 0; /* only non-word characters, illegal word */
2274#ifdef FEAT_MBYTE
Bram Moolenaarb765d632005-06-07 21:00:02 +00002275 if (has_mbyte)
2276 c = mb_ptr2char_adv(&p);
2277 else
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002278#endif
Bram Moolenaarb765d632005-06-07 21:00:02 +00002279 c = *p++;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00002280 firstcap = allcap = SPELL_ISUPPER(c);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002281
2282 /*
2283 * Need to check all letters to find a word with mixed upper/lower.
2284 * But a word with an upper char only at start is a ONECAP.
2285 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002286 for ( ; end == NULL ? *p != NUL : p < end; mb_ptr_adv(p))
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00002287 if (SPELL_ISWORDP(p))
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002288 {
2289#ifdef FEAT_MBYTE
2290 c = mb_ptr2char(p);
2291#else
2292 c = *p;
2293#endif
Bram Moolenaar9f30f502005-06-14 22:01:04 +00002294 if (!SPELL_ISUPPER(c))
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002295 {
2296 /* UUl -> KEEPCAP */
2297 if (past_second && allcap)
Bram Moolenaar51485f02005-06-04 21:55:20 +00002298 return WF_KEEPCAP;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002299 allcap = FALSE;
2300 }
2301 else if (!allcap)
2302 /* UlU -> KEEPCAP */
Bram Moolenaar51485f02005-06-04 21:55:20 +00002303 return WF_KEEPCAP;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002304 past_second = TRUE;
2305 }
2306
2307 if (allcap)
Bram Moolenaar51485f02005-06-04 21:55:20 +00002308 return WF_ALLCAP;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002309 if (firstcap)
Bram Moolenaar51485f02005-06-04 21:55:20 +00002310 return WF_ONECAP;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002311 return 0;
2312}
2313
2314# if defined(FEAT_MBYTE) || defined(PROTO)
2315/*
2316 * Clear all spelling tables and reload them.
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00002317 * Used after 'encoding' is set and when ":mkspell" was used.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002318 */
2319 void
2320spell_reload()
2321{
2322 buf_T *buf;
2323 slang_T *lp;
Bram Moolenaar3982c542005-06-08 21:56:31 +00002324 win_T *wp;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002325
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00002326 /* Initialize the table for SPELL_ISWORDP(). */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002327 init_spell_chartab();
2328
2329 /* Unload all allocated memory. */
2330 while (first_lang != NULL)
2331 {
2332 lp = first_lang;
2333 first_lang = lp->sl_next;
2334 slang_free(lp);
2335 }
2336
2337 /* Go through all buffers and handle 'spelllang'. */
2338 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2339 {
2340 ga_clear(&buf->b_langp);
Bram Moolenaar3982c542005-06-08 21:56:31 +00002341
2342 /* Only load the wordlists when 'spelllang' is set and there is a
2343 * window for this buffer in which 'spell' is set. */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002344 if (*buf->b_p_spl != NUL)
Bram Moolenaar3982c542005-06-08 21:56:31 +00002345 {
2346 FOR_ALL_WINDOWS(wp)
2347 if (wp->w_buffer == buf && wp->w_p_spell)
2348 {
2349 (void)did_set_spelllang(buf);
2350# ifdef FEAT_WINDOWS
2351 break;
2352# endif
2353 }
2354 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002355 }
2356}
2357# endif
2358
Bram Moolenaarb765d632005-06-07 21:00:02 +00002359/*
2360 * Reload the spell file "fname" if it's loaded.
2361 */
2362 static void
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002363spell_reload_one(fname, added_word)
Bram Moolenaarb765d632005-06-07 21:00:02 +00002364 char_u *fname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002365 int added_word; /* invoked through "zg" */
Bram Moolenaarb765d632005-06-07 21:00:02 +00002366{
2367 slang_T *lp;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002368 int didit = FALSE;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002369
Bram Moolenaarb765d632005-06-07 21:00:02 +00002370 for (lp = first_lang; lp != NULL; lp = lp->sl_next)
2371 if (fullpathcmp(fname, lp->sl_fname, FALSE) == FPC_SAME)
2372 {
2373 slang_clear(lp);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002374 (void)spell_load_file(fname, NULL, lp, FALSE);
Bram Moolenaarb765d632005-06-07 21:00:02 +00002375 redraw_all_later(NOT_VALID);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002376 didit = TRUE;
Bram Moolenaarb765d632005-06-07 21:00:02 +00002377 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002378
2379 /* When "zg" was used and the file wasn't loaded yet, should redo
2380 * 'spelllang' to get it loaded. */
2381 if (added_word && !didit)
2382 did_set_spelllang(curbuf);
Bram Moolenaarb765d632005-06-07 21:00:02 +00002383}
2384
2385
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002386/*
2387 * Functions for ":mkspell".
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002388 */
2389
Bram Moolenaar51485f02005-06-04 21:55:20 +00002390#define MAXLINELEN 500 /* Maximum length in bytes of a line in a .aff
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002391 and .dic file. */
2392/*
2393 * Main structure to store the contents of a ".aff" file.
2394 */
2395typedef struct afffile_S
2396{
2397 char_u *af_enc; /* "SET", normalized, alloc'ed string or NULL */
Bram Moolenaarb765d632005-06-07 21:00:02 +00002398 int af_rar; /* RAR ID for rare word */
2399 int af_kep; /* KEP ID for keep-case word */
Bram Moolenaar0c405862005-06-22 22:26:26 +00002400 int af_bad; /* BAD ID for banned word */
Bram Moolenaar1d73c882005-06-19 22:48:47 +00002401 int af_pfxpostpone; /* postpone prefixes without chop string */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002402 hashtab_T af_pref; /* hashtable for prefixes, affheader_T */
2403 hashtab_T af_suff; /* hashtable for suffixes, affheader_T */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002404} afffile_T;
2405
2406typedef struct affentry_S affentry_T;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002407/* Affix entry from ".aff" file. Used for prefixes and suffixes. */
2408struct affentry_S
2409{
2410 affentry_T *ae_next; /* next affix with same name/number */
2411 char_u *ae_chop; /* text to chop off basic word (can be NULL) */
2412 char_u *ae_add; /* text to add to basic word (can be NULL) */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002413 char_u *ae_cond; /* condition (NULL for ".") */
2414 regprog_T *ae_prog; /* regexp program for ae_cond or NULL */
Bram Moolenaar51485f02005-06-04 21:55:20 +00002415};
2416
2417/* Affix header from ".aff" file. Used for af_pref and af_suff. */
2418typedef struct affheader_S
2419{
2420 char_u ah_key[2]; /* key for hashtable == name of affix entry */
Bram Moolenaar1d73c882005-06-19 22:48:47 +00002421 int ah_newID; /* prefix ID after renumbering */
Bram Moolenaar51485f02005-06-04 21:55:20 +00002422 int ah_combine; /* suffix may combine with prefix */
2423 affentry_T *ah_first; /* first affix entry */
2424} affheader_T;
2425
2426#define HI2AH(hi) ((affheader_T *)(hi)->hi_key)
2427
2428/*
2429 * Structure that is used to store the items in the word tree. This avoids
2430 * the need to keep track of each allocated thing, it's freed all at once
2431 * after ":mkspell" is done.
2432 */
2433#define SBLOCKSIZE 16000 /* size of sb_data */
2434typedef struct sblock_S sblock_T;
2435struct sblock_S
2436{
2437 sblock_T *sb_next; /* next block in list */
2438 int sb_used; /* nr of bytes already in use */
2439 char_u sb_data[1]; /* data, actually longer */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002440};
2441
2442/*
Bram Moolenaar51485f02005-06-04 21:55:20 +00002443 * A node in the tree.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002444 */
Bram Moolenaar51485f02005-06-04 21:55:20 +00002445typedef struct wordnode_S wordnode_T;
2446struct wordnode_S
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002447{
Bram Moolenaar0c405862005-06-22 22:26:26 +00002448 union /* shared to save space */
2449 {
2450 char_u hashkey[6]; /* room for the hash key */
2451 int index; /* index in written nodes (valid after first
2452 round) */
2453 } wn_u1;
2454 union /* shared to save space */
2455 {
2456 wordnode_T *next; /* next node with same hash key */
2457 wordnode_T *wnode; /* parent node that will write this node */
2458 } wn_u2;
Bram Moolenaar51485f02005-06-04 21:55:20 +00002459 wordnode_T *wn_child; /* child (next byte in word) */
2460 wordnode_T *wn_sibling; /* next sibling (alternate byte in word,
2461 always sorted) */
Bram Moolenaar51485f02005-06-04 21:55:20 +00002462 char_u wn_byte; /* Byte for this node. NUL for word end */
2463 char_u wn_flags; /* when wn_byte is NUL: WF_ flags */
Bram Moolenaar1d73c882005-06-19 22:48:47 +00002464 short wn_region; /* when wn_byte is NUL: region mask; for
2465 PREFIXTREE it's the prefcondnr */
2466 char_u wn_prefixID; /* supported/required prefix ID or 0 */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002467};
2468
Bram Moolenaar51485f02005-06-04 21:55:20 +00002469#define HI2WN(hi) (wordnode_T *)((hi)->hi_key)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002470
Bram Moolenaar51485f02005-06-04 21:55:20 +00002471/*
2472 * Info used while reading the spell files.
2473 */
2474typedef struct spellinfo_S
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002475{
Bram Moolenaar51485f02005-06-04 21:55:20 +00002476 wordnode_T *si_foldroot; /* tree with case-folded words */
Bram Moolenaar8db73182005-06-17 21:51:16 +00002477 long si_foldwcount; /* nr of words in si_foldroot */
Bram Moolenaar51485f02005-06-04 21:55:20 +00002478 wordnode_T *si_keeproot; /* tree with keep-case words */
Bram Moolenaar8db73182005-06-17 21:51:16 +00002479 long si_keepwcount; /* nr of words in si_keeproot */
Bram Moolenaar1d73c882005-06-19 22:48:47 +00002480 wordnode_T *si_prefroot; /* tree with postponed prefixes */
Bram Moolenaar51485f02005-06-04 21:55:20 +00002481 sblock_T *si_blocks; /* memory blocks used */
2482 int si_ascii; /* handling only ASCII words */
Bram Moolenaarb765d632005-06-07 21:00:02 +00002483 int si_add; /* addition file */
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002484 int si_clear_chartab; /* when TRUE clear char tables */
Bram Moolenaar51485f02005-06-04 21:55:20 +00002485 int si_region; /* region mask */
2486 vimconv_T si_conv; /* for conversion to 'encoding' */
Bram Moolenaar50cde822005-06-05 21:54:54 +00002487 int si_memtot; /* runtime memory used */
Bram Moolenaarb765d632005-06-07 21:00:02 +00002488 int si_verbose; /* verbose messages */
Bram Moolenaar3982c542005-06-08 21:56:31 +00002489 int si_region_count; /* number of regions supported (1 when there
2490 are no regions) */
2491 char_u si_region_name[16]; /* region names (if count > 1) */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002492
2493 garray_T si_rep; /* list of fromto_T entries from REP lines */
2494 garray_T si_sal; /* list of fromto_T entries from SAL lines */
2495 int si_followup; /* soundsalike: ? */
2496 int si_collapse; /* soundsalike: ? */
2497 int si_rem_accents; /* soundsalike: remove accents */
2498 garray_T si_map; /* MAP info concatenated */
Bram Moolenaar1d73c882005-06-19 22:48:47 +00002499 garray_T si_prefcond; /* table with conditions for postponed
2500 * prefixes, each stored as a string */
2501 int si_newID; /* current value for ah_newID */
Bram Moolenaar51485f02005-06-04 21:55:20 +00002502} spellinfo_T;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002503
Bram Moolenaar51485f02005-06-04 21:55:20 +00002504static afffile_T *spell_read_aff __ARGS((char_u *fname, spellinfo_T *spin));
Bram Moolenaar1d73c882005-06-19 22:48:47 +00002505static int str_equal __ARGS((char_u *s1, char_u *s2));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002506static void add_fromto __ARGS((spellinfo_T *spin, garray_T *gap, char_u *from, char_u *to));
2507static int sal_to_bool __ARGS((char_u *s));
Bram Moolenaar5482f332005-04-17 20:18:43 +00002508static int has_non_ascii __ARGS((char_u *s));
Bram Moolenaar51485f02005-06-04 21:55:20 +00002509static void spell_free_aff __ARGS((afffile_T *aff));
2510static int spell_read_dic __ARGS((char_u *fname, spellinfo_T *spin, afffile_T *affile));
Bram Moolenaar1d73c882005-06-19 22:48:47 +00002511static char_u *get_pfxlist __ARGS((afffile_T *affile, char_u *afflist, sblock_T **blp));
2512static int store_aff_word __ARGS((char_u *word, spellinfo_T *spin, char_u *afflist, afffile_T *affile, hashtab_T *ht, hashtab_T *xht, int comb, int flags, char_u *pfxlist));
Bram Moolenaar51485f02005-06-04 21:55:20 +00002513static int spell_read_wordfile __ARGS((char_u *fname, spellinfo_T *spin));
2514static void *getroom __ARGS((sblock_T **blp, size_t len));
2515static char_u *getroom_save __ARGS((sblock_T **blp, char_u *s));
2516static void free_blocks __ARGS((sblock_T *bl));
2517static wordnode_T *wordtree_alloc __ARGS((sblock_T **blp));
Bram Moolenaar1d73c882005-06-19 22:48:47 +00002518static int store_word __ARGS((char_u *word, spellinfo_T *spin, int flags, int region, char_u *pfxlist));
2519static int tree_add_word __ARGS((char_u *word, wordnode_T *tree, int flags, int region, int prefixID, sblock_T **blp));
Bram Moolenaarb765d632005-06-07 21:00:02 +00002520static void wordtree_compress __ARGS((wordnode_T *root, spellinfo_T *spin));
Bram Moolenaar51485f02005-06-04 21:55:20 +00002521static int node_compress __ARGS((wordnode_T *node, hashtab_T *ht, int *tot));
2522static int node_equal __ARGS((wordnode_T *n1, wordnode_T *n2));
Bram Moolenaar3982c542005-06-08 21:56:31 +00002523static void write_vim_spell __ARGS((char_u *fname, spellinfo_T *spin));
Bram Moolenaar0c405862005-06-22 22:26:26 +00002524static void clear_node __ARGS((wordnode_T *node));
2525static int put_node __ARGS((FILE *fd, wordnode_T *node, int index, int regionmask, int prefixtree));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002526static void mkspell __ARGS((int fcount, char_u **fnames, int ascii, int overwrite, int added_word));
Bram Moolenaarb765d632005-06-07 21:00:02 +00002527static void init_spellfile __ARGS((void));
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002528
2529/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002530 * Read the affix file "fname".
Bram Moolenaar3982c542005-06-08 21:56:31 +00002531 * Returns an afffile_T, NULL for complete failure.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002532 */
2533 static afffile_T *
Bram Moolenaar51485f02005-06-04 21:55:20 +00002534spell_read_aff(fname, spin)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002535 char_u *fname;
Bram Moolenaar51485f02005-06-04 21:55:20 +00002536 spellinfo_T *spin;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002537{
2538 FILE *fd;
2539 afffile_T *aff;
2540 char_u rline[MAXLINELEN];
2541 char_u *line;
2542 char_u *pc = NULL;
Bram Moolenaar8db73182005-06-17 21:51:16 +00002543#define MAXITEMCNT 7
2544 char_u *(items[MAXITEMCNT]);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002545 int itemcnt;
2546 char_u *p;
2547 int lnum = 0;
2548 affheader_T *cur_aff = NULL;
2549 int aff_todo = 0;
2550 hashtab_T *tp;
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00002551 char_u *low = NULL;
2552 char_u *fol = NULL;
2553 char_u *upp = NULL;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00002554 static char *e_affname = N_("Affix name too long in %s line %d: %s");
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002555 int do_rep;
2556 int do_sal;
2557 int do_map;
2558 int found_map = FALSE;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00002559 hashitem_T *hi;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002560
Bram Moolenaar51485f02005-06-04 21:55:20 +00002561 /*
2562 * Open the file.
2563 */
Bram Moolenaarb765d632005-06-07 21:00:02 +00002564 fd = mch_fopen((char *)fname, "r");
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002565 if (fd == NULL)
2566 {
2567 EMSG2(_(e_notopen), fname);
2568 return NULL;
2569 }
2570
Bram Moolenaarb765d632005-06-07 21:00:02 +00002571 if (spin->si_verbose || p_verbose > 2)
2572 {
2573 if (!spin->si_verbose)
2574 verbose_enter();
2575 smsg((char_u *)_("Reading affix file %s..."), fname);
2576 out_flush();
2577 if (!spin->si_verbose)
2578 verbose_leave();
2579 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002580
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002581 /* Only do REP lines when not done in another .aff file already. */
2582 do_rep = spin->si_rep.ga_len == 0;
2583
2584 /* Only do SAL lines when not done in another .aff file already. */
2585 do_sal = spin->si_sal.ga_len == 0;
2586
2587 /* Only do MAP lines when not done in another .aff file already. */
2588 do_map = spin->si_map.ga_len == 0;
2589
Bram Moolenaar51485f02005-06-04 21:55:20 +00002590 /*
2591 * Allocate and init the afffile_T structure.
2592 */
2593 aff = (afffile_T *)getroom(&spin->si_blocks, sizeof(afffile_T));
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002594 if (aff == NULL)
2595 return NULL;
2596 hash_init(&aff->af_pref);
2597 hash_init(&aff->af_suff);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002598
2599 /*
2600 * Read all the lines in the file one by one.
2601 */
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00002602 while (!vim_fgets(rline, MAXLINELEN, fd) && !got_int)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002603 {
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00002604 line_breakcheck();
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002605 ++lnum;
2606
2607 /* Skip comment lines. */
2608 if (*rline == '#')
2609 continue;
2610
2611 /* Convert from "SET" to 'encoding' when needed. */
2612 vim_free(pc);
Bram Moolenaarb765d632005-06-07 21:00:02 +00002613#ifdef FEAT_MBYTE
Bram Moolenaar51485f02005-06-04 21:55:20 +00002614 if (spin->si_conv.vc_type != CONV_NONE)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002615 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00002616 pc = string_convert(&spin->si_conv, rline, NULL);
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00002617 if (pc == NULL)
2618 {
2619 smsg((char_u *)_("Conversion failure for word in %s line %d: %s"),
2620 fname, lnum, rline);
2621 continue;
2622 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002623 line = pc;
2624 }
2625 else
Bram Moolenaarb765d632005-06-07 21:00:02 +00002626#endif
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002627 {
2628 pc = NULL;
2629 line = rline;
2630 }
2631
2632 /* Split the line up in white separated items. Put a NUL after each
2633 * item. */
2634 itemcnt = 0;
2635 for (p = line; ; )
2636 {
2637 while (*p != NUL && *p <= ' ') /* skip white space and CR/NL */
2638 ++p;
2639 if (*p == NUL)
2640 break;
Bram Moolenaar8db73182005-06-17 21:51:16 +00002641 if (itemcnt == MAXITEMCNT) /* too many items */
Bram Moolenaar51485f02005-06-04 21:55:20 +00002642 break;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002643 items[itemcnt++] = p;
Bram Moolenaar51485f02005-06-04 21:55:20 +00002644 while (*p > ' ') /* skip until white space or CR/NL */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002645 ++p;
2646 if (*p == NUL)
2647 break;
2648 *p++ = NUL;
2649 }
2650
2651 /* Handle non-empty lines. */
2652 if (itemcnt > 0)
2653 {
2654 if (STRCMP(items[0], "SET") == 0 && itemcnt == 2
2655 && aff->af_enc == NULL)
2656 {
Bram Moolenaarb765d632005-06-07 21:00:02 +00002657#ifdef FEAT_MBYTE
Bram Moolenaar51485f02005-06-04 21:55:20 +00002658 /* Setup for conversion from "ENC" to 'encoding'. */
2659 aff->af_enc = enc_canonize(items[1]);
2660 if (aff->af_enc != NULL && !spin->si_ascii
2661 && convert_setup(&spin->si_conv, aff->af_enc,
2662 p_enc) == FAIL)
2663 smsg((char_u *)_("Conversion in %s not supported: from %s to %s"),
2664 fname, aff->af_enc, p_enc);
Bram Moolenaarb765d632005-06-07 21:00:02 +00002665#else
2666 smsg((char_u *)_("Conversion in %s not supported"), fname);
2667#endif
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002668 }
Bram Moolenaar50cde822005-06-05 21:54:54 +00002669 else if (STRCMP(items[0], "NOSPLITSUGS") == 0 && itemcnt == 1)
2670 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002671 /* ignored, we always split */
Bram Moolenaar50cde822005-06-05 21:54:54 +00002672 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002673 else if (STRCMP(items[0], "TRY") == 0 && itemcnt == 2)
Bram Moolenaar51485f02005-06-04 21:55:20 +00002674 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002675 /* ignored, we look in the tree for what chars may appear */
Bram Moolenaar51485f02005-06-04 21:55:20 +00002676 }
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00002677 else if (STRCMP(items[0], "RAR") == 0 && itemcnt == 2
2678 && aff->af_rar == 0)
2679 {
2680 aff->af_rar = items[1][0];
2681 if (items[1][1] != NUL)
2682 smsg((char_u *)_(e_affname), fname, lnum, items[1]);
2683 }
Bram Moolenaarb765d632005-06-07 21:00:02 +00002684 else if (STRCMP(items[0], "KEP") == 0 && itemcnt == 2
2685 && aff->af_kep == 0)
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00002686 {
Bram Moolenaarb765d632005-06-07 21:00:02 +00002687 aff->af_kep = items[1][0];
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00002688 if (items[1][1] != NUL)
2689 smsg((char_u *)_(e_affname), fname, lnum, items[1]);
2690 }
Bram Moolenaar0c405862005-06-22 22:26:26 +00002691 else if (STRCMP(items[0], "BAD") == 0 && itemcnt == 2
2692 && aff->af_bad == 0)
2693 {
2694 aff->af_bad = items[1][0];
2695 if (items[1][1] != NUL)
2696 smsg((char_u *)_(e_affname), fname, lnum, items[1]);
2697 }
Bram Moolenaar1d73c882005-06-19 22:48:47 +00002698 else if (STRCMP(items[0], "PFXPOSTPONE") == 0 && itemcnt == 1)
2699 {
2700 aff->af_pfxpostpone = TRUE;
2701 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002702 else if ((STRCMP(items[0], "PFX") == 0
2703 || STRCMP(items[0], "SFX") == 0)
2704 && aff_todo == 0
Bram Moolenaar8db73182005-06-17 21:51:16 +00002705 && itemcnt >= 4)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002706 {
Bram Moolenaar8db73182005-06-17 21:51:16 +00002707 /* Myspell allows extra text after the item, but that might
2708 * mean mistakes go unnoticed. Require a comment-starter. */
2709 if (itemcnt > 4 && *items[4] != '#')
2710 smsg((char_u *)_("Trailing text in %s line %d: %s"),
2711 fname, lnum, items[4]);
2712
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002713 /* New affix letter. */
Bram Moolenaar51485f02005-06-04 21:55:20 +00002714 cur_aff = (affheader_T *)getroom(&spin->si_blocks,
2715 sizeof(affheader_T));
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002716 if (cur_aff == NULL)
2717 break;
Bram Moolenaar1d73c882005-06-19 22:48:47 +00002718 cur_aff->ah_key[0] = *items[1]; /* TODO: multi-byte? */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002719 cur_aff->ah_key[1] = NUL;
2720 if (items[1][1] != NUL)
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00002721 smsg((char_u *)_(e_affname), fname, lnum, items[1]);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002722 if (*items[2] == 'Y')
2723 cur_aff->ah_combine = TRUE;
Bram Moolenaar51485f02005-06-04 21:55:20 +00002724 else if (*items[2] != 'N')
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002725 smsg((char_u *)_("Expected Y or N in %s line %d: %s"),
2726 fname, lnum, items[2]);
Bram Moolenaar1d73c882005-06-19 22:48:47 +00002727
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002728 if (*items[0] == 'P')
Bram Moolenaar1d73c882005-06-19 22:48:47 +00002729 {
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002730 tp = &aff->af_pref;
Bram Moolenaar1d73c882005-06-19 22:48:47 +00002731 /* Use a new number in the .spl file later, to be able to
2732 * handle multiple .aff files. */
2733 if (aff->af_pfxpostpone)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00002734 cur_aff->ah_newID = ++spin->si_newID;
Bram Moolenaar1d73c882005-06-19 22:48:47 +00002735 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002736 else
2737 tp = &aff->af_suff;
Bram Moolenaar51485f02005-06-04 21:55:20 +00002738 aff_todo = atoi((char *)items[3]);
Bram Moolenaar9f30f502005-06-14 22:01:04 +00002739 hi = hash_find(tp, cur_aff->ah_key);
2740 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar51485f02005-06-04 21:55:20 +00002741 {
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002742 smsg((char_u *)_("Duplicate affix in %s line %d: %s"),
2743 fname, lnum, items[1]);
Bram Moolenaar51485f02005-06-04 21:55:20 +00002744 aff_todo = 0;
2745 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002746 else
2747 hash_add(tp, cur_aff->ah_key);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002748 }
2749 else if ((STRCMP(items[0], "PFX") == 0
2750 || STRCMP(items[0], "SFX") == 0)
2751 && aff_todo > 0
2752 && STRCMP(cur_aff->ah_key, items[1]) == 0
Bram Moolenaar8db73182005-06-17 21:51:16 +00002753 && itemcnt >= 5)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002754 {
2755 affentry_T *aff_entry;
2756
Bram Moolenaar8db73182005-06-17 21:51:16 +00002757 /* Myspell allows extra text after the item, but that might
2758 * mean mistakes go unnoticed. Require a comment-starter. */
2759 if (itemcnt > 5 && *items[5] != '#')
2760 smsg((char_u *)_("Trailing text in %s line %d: %s"),
2761 fname, lnum, items[5]);
2762
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002763 /* New item for an affix letter. */
2764 --aff_todo;
Bram Moolenaar51485f02005-06-04 21:55:20 +00002765 aff_entry = (affentry_T *)getroom(&spin->si_blocks,
2766 sizeof(affentry_T));
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002767 if (aff_entry == NULL)
2768 break;
Bram Moolenaar5482f332005-04-17 20:18:43 +00002769
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002770 if (STRCMP(items[2], "0") != 0)
Bram Moolenaar51485f02005-06-04 21:55:20 +00002771 aff_entry->ae_chop = getroom_save(&spin->si_blocks,
2772 items[2]);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002773 if (STRCMP(items[3], "0") != 0)
Bram Moolenaar51485f02005-06-04 21:55:20 +00002774 aff_entry->ae_add = getroom_save(&spin->si_blocks,
2775 items[3]);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002776
Bram Moolenaar51485f02005-06-04 21:55:20 +00002777 /* Don't use an affix entry with non-ASCII characters when
2778 * "spin->si_ascii" is TRUE. */
2779 if (!spin->si_ascii || !(has_non_ascii(aff_entry->ae_chop)
Bram Moolenaar5482f332005-04-17 20:18:43 +00002780 || has_non_ascii(aff_entry->ae_add)))
2781 {
Bram Moolenaar5482f332005-04-17 20:18:43 +00002782 aff_entry->ae_next = cur_aff->ah_first;
2783 cur_aff->ah_first = aff_entry;
Bram Moolenaar51485f02005-06-04 21:55:20 +00002784
2785 if (STRCMP(items[4], ".") != 0)
2786 {
2787 char_u buf[MAXLINELEN];
2788
2789 aff_entry->ae_cond = getroom_save(&spin->si_blocks,
2790 items[4]);
2791 if (*items[0] == 'P')
2792 sprintf((char *)buf, "^%s", items[4]);
2793 else
2794 sprintf((char *)buf, "%s$", items[4]);
2795 aff_entry->ae_prog = vim_regcomp(buf,
2796 RE_MAGIC + RE_STRING);
2797 }
Bram Moolenaar1d73c882005-06-19 22:48:47 +00002798
2799 /* For postponed prefixes we need an entry in si_prefcond
2800 * for the condition. Use an existing one if possible. */
2801 if (*items[0] == 'P' && aff->af_pfxpostpone
2802 && aff_entry->ae_chop == NULL)
2803 {
2804 int idx;
2805 char_u **pp;
2806
2807 for (idx = spin->si_prefcond.ga_len - 1; idx >= 0;
2808 --idx)
2809 {
2810 p = ((char_u **)spin->si_prefcond.ga_data)[idx];
2811 if (str_equal(p, aff_entry->ae_cond))
2812 break;
2813 }
2814 if (idx < 0 && ga_grow(&spin->si_prefcond, 1) == OK)
2815 {
2816 /* Not found, add a new condition. */
2817 idx = spin->si_prefcond.ga_len++;
2818 pp = ((char_u **)spin->si_prefcond.ga_data) + idx;
2819 if (aff_entry->ae_cond == NULL)
2820 *pp = NULL;
2821 else
2822 *pp = getroom_save(&spin->si_blocks,
2823 aff_entry->ae_cond);
2824 }
2825
2826 /* Add the prefix to the prefix tree. */
2827 if (aff_entry->ae_add == NULL)
2828 p = (char_u *)"";
2829 else
2830 p = aff_entry->ae_add;
2831 tree_add_word(p, spin->si_prefroot, -1, idx,
2832 cur_aff->ah_newID, &spin->si_blocks);
2833 }
Bram Moolenaar5482f332005-04-17 20:18:43 +00002834 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002835 }
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00002836 else if (STRCMP(items[0], "FOL") == 0 && itemcnt == 2)
2837 {
2838 if (fol != NULL)
2839 smsg((char_u *)_("Duplicate FOL in %s line %d"),
2840 fname, lnum);
2841 else
2842 fol = vim_strsave(items[1]);
2843 }
2844 else if (STRCMP(items[0], "LOW") == 0 && itemcnt == 2)
2845 {
2846 if (low != NULL)
2847 smsg((char_u *)_("Duplicate LOW in %s line %d"),
2848 fname, lnum);
2849 else
2850 low = vim_strsave(items[1]);
2851 }
2852 else if (STRCMP(items[0], "UPP") == 0 && itemcnt == 2)
2853 {
2854 if (upp != NULL)
2855 smsg((char_u *)_("Duplicate UPP in %s line %d"),
2856 fname, lnum);
2857 else
2858 upp = vim_strsave(items[1]);
2859 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002860 else if (STRCMP(items[0], "REP") == 0 && itemcnt == 2)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002861 {
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002862 /* Ignore REP count */;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002863 if (!isdigit(*items[1]))
2864 smsg((char_u *)_("Expected REP count in %s line %d"),
2865 fname, lnum);
2866 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002867 else if (STRCMP(items[0], "REP") == 0 && itemcnt == 3)
2868 {
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002869 /* REP item */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002870 if (do_rep)
2871 add_fromto(spin, &spin->si_rep, items[1], items[2]);
2872 }
2873 else if (STRCMP(items[0], "MAP") == 0 && itemcnt == 2)
2874 {
2875 /* MAP item or count */
2876 if (!found_map)
2877 {
2878 /* First line contains the count. */
2879 found_map = TRUE;
2880 if (!isdigit(*items[1]))
2881 smsg((char_u *)_("Expected MAP count in %s line %d"),
2882 fname, lnum);
2883 }
2884 else if (do_map)
2885 {
Bram Moolenaar0c405862005-06-22 22:26:26 +00002886 int c;
2887
2888 /* Check that every character appears only once. */
2889 for (p = items[1]; *p != NUL; )
2890 {
2891#ifdef FEAT_MBYTE
2892 c = mb_ptr2char_adv(&p);
2893#else
2894 c = *p++;
2895#endif
2896 if ((spin->si_map.ga_len > 0
2897 && vim_strchr(spin->si_map.ga_data, c)
2898 != NULL)
2899 || vim_strchr(p, c) != NULL)
2900 smsg((char_u *)_("Duplicate character in MAP in %s line %d"),
2901 fname, lnum);
2902 }
2903
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002904 /* We simply concatenate all the MAP strings, separated by
2905 * slashes. */
2906 ga_concat(&spin->si_map, items[1]);
2907 ga_append(&spin->si_map, '/');
2908 }
2909 }
2910 else if (STRCMP(items[0], "SAL") == 0 && itemcnt == 3)
2911 {
2912 if (do_sal)
2913 {
2914 /* SAL item (sounds-a-like)
2915 * Either one of the known keys or a from-to pair. */
2916 if (STRCMP(items[1], "followup") == 0)
2917 spin->si_followup = sal_to_bool(items[2]);
2918 else if (STRCMP(items[1], "collapse_result") == 0)
2919 spin->si_collapse = sal_to_bool(items[2]);
2920 else if (STRCMP(items[1], "remove_accents") == 0)
2921 spin->si_rem_accents = sal_to_bool(items[2]);
2922 else
2923 /* when "to" is "_" it means empty */
2924 add_fromto(spin, &spin->si_sal, items[1],
2925 STRCMP(items[2], "_") == 0 ? (char_u *)""
2926 : items[2]);
2927 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002928 }
Bram Moolenaar51485f02005-06-04 21:55:20 +00002929 else
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002930 smsg((char_u *)_("Unrecognized item in %s line %d: %s"),
2931 fname, lnum, items[0]);
2932 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002933 }
2934
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00002935 if (fol != NULL || low != NULL || upp != NULL)
2936 {
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00002937 if (spin->si_clear_chartab)
2938 {
2939 /* Clear the char type tables, don't want to use any of the
2940 * currently used spell properties. */
2941 init_spell_chartab();
2942 spin->si_clear_chartab = FALSE;
2943 }
2944
Bram Moolenaar3982c542005-06-08 21:56:31 +00002945 /*
2946 * Don't write a word table for an ASCII file, so that we don't check
2947 * for conflicts with a word table that matches 'encoding'.
Bram Moolenaar9f30f502005-06-14 22:01:04 +00002948 * Don't write one for utf-8 either, we use utf_*() and
Bram Moolenaar3982c542005-06-08 21:56:31 +00002949 * mb_get_class(), the list of chars in the file will be incomplete.
2950 */
2951 if (!spin->si_ascii
2952#ifdef FEAT_MBYTE
2953 && !enc_utf8
2954#endif
2955 )
Bram Moolenaar6f3058f2005-04-24 21:58:05 +00002956 {
2957 if (fol == NULL || low == NULL || upp == NULL)
2958 smsg((char_u *)_("Missing FOL/LOW/UPP line in %s"), fname);
2959 else
Bram Moolenaar3982c542005-06-08 21:56:31 +00002960 (void)set_spell_chartab(fol, low, upp);
Bram Moolenaar6f3058f2005-04-24 21:58:05 +00002961 }
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00002962
2963 vim_free(fol);
2964 vim_free(low);
2965 vim_free(upp);
2966 }
2967
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002968 vim_free(pc);
2969 fclose(fd);
2970 return aff;
2971}
2972
2973/*
Bram Moolenaar1d73c882005-06-19 22:48:47 +00002974 * Return TRUE if strings "s1" and "s2" are equal. Also consider both being
2975 * NULL as equal.
2976 */
2977 static int
2978str_equal(s1, s2)
2979 char_u *s1;
2980 char_u *s2;
2981{
2982 if (s1 == NULL || s2 == NULL)
2983 return s1 == s2;
2984 return STRCMP(s1, s2) == 0;
2985}
2986
2987/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002988 * Add a from-to item to "gap". Used for REP and SAL items.
2989 * They are stored case-folded.
2990 */
2991 static void
2992add_fromto(spin, gap, from, to)
2993 spellinfo_T *spin;
2994 garray_T *gap;
2995 char_u *from;
2996 char_u *to;
2997{
2998 fromto_T *ftp;
2999 char_u word[MAXWLEN];
3000
3001 if (ga_grow(gap, 1) == OK)
3002 {
3003 ftp = ((fromto_T *)gap->ga_data) + gap->ga_len;
3004 (void)spell_casefold(from, STRLEN(from), word, MAXWLEN);
3005 ftp->ft_from = getroom_save(&spin->si_blocks, word);
3006 (void)spell_casefold(to, STRLEN(to), word, MAXWLEN);
3007 ftp->ft_to = getroom_save(&spin->si_blocks, word);
3008 ++gap->ga_len;
3009 }
3010}
3011
3012/*
3013 * Convert a boolean argument in a SAL line to TRUE or FALSE;
3014 */
3015 static int
3016sal_to_bool(s)
3017 char_u *s;
3018{
3019 return STRCMP(s, "1") == 0 || STRCMP(s, "true") == 0;
3020}
3021
3022/*
Bram Moolenaar5482f332005-04-17 20:18:43 +00003023 * Return TRUE if string "s" contains a non-ASCII character (128 or higher).
3024 * When "s" is NULL FALSE is returned.
3025 */
3026 static int
3027has_non_ascii(s)
3028 char_u *s;
3029{
3030 char_u *p;
3031
3032 if (s != NULL)
3033 for (p = s; *p != NUL; ++p)
3034 if (*p >= 128)
3035 return TRUE;
3036 return FALSE;
3037}
3038
3039/*
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003040 * Free the structure filled by spell_read_aff().
3041 */
3042 static void
3043spell_free_aff(aff)
3044 afffile_T *aff;
3045{
3046 hashtab_T *ht;
3047 hashitem_T *hi;
3048 int todo;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003049 affheader_T *ah;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003050 affentry_T *ae;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003051
3052 vim_free(aff->af_enc);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003053
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003054 /* All this trouble to free the "ae_prog" items... */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003055 for (ht = &aff->af_pref; ; ht = &aff->af_suff)
3056 {
3057 todo = ht->ht_used;
3058 for (hi = ht->ht_array; todo > 0; ++hi)
3059 {
3060 if (!HASHITEM_EMPTY(hi))
3061 {
3062 --todo;
3063 ah = HI2AH(hi);
Bram Moolenaar51485f02005-06-04 21:55:20 +00003064 for (ae = ah->ah_first; ae != NULL; ae = ae->ae_next)
3065 vim_free(ae->ae_prog);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003066 }
3067 }
3068 if (ht == &aff->af_suff)
3069 break;
3070 }
Bram Moolenaar51485f02005-06-04 21:55:20 +00003071
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003072 hash_clear(&aff->af_pref);
3073 hash_clear(&aff->af_suff);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003074}
3075
3076/*
Bram Moolenaar51485f02005-06-04 21:55:20 +00003077 * Read dictionary file "fname".
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003078 * Returns OK or FAIL;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003079 */
3080 static int
Bram Moolenaar51485f02005-06-04 21:55:20 +00003081spell_read_dic(fname, spin, affile)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003082 char_u *fname;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003083 spellinfo_T *spin;
3084 afffile_T *affile;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003085{
Bram Moolenaar51485f02005-06-04 21:55:20 +00003086 hashtab_T ht;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003087 char_u line[MAXLINELEN];
Bram Moolenaar51485f02005-06-04 21:55:20 +00003088 char_u *afflist;
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003089 char_u *pfxlist;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003090 char_u *dw;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003091 char_u *pc;
3092 char_u *w;
3093 int l;
3094 hash_T hash;
3095 hashitem_T *hi;
3096 FILE *fd;
3097 int lnum = 1;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003098 int non_ascii = 0;
3099 int retval = OK;
3100 char_u message[MAXLINELEN + MAXWLEN];
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00003101 int flags;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003102
Bram Moolenaar51485f02005-06-04 21:55:20 +00003103 /*
3104 * Open the file.
3105 */
Bram Moolenaarb765d632005-06-07 21:00:02 +00003106 fd = mch_fopen((char *)fname, "r");
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003107 if (fd == NULL)
3108 {
3109 EMSG2(_(e_notopen), fname);
3110 return FAIL;
3111 }
3112
Bram Moolenaar51485f02005-06-04 21:55:20 +00003113 /* The hashtable is only used to detect duplicated words. */
3114 hash_init(&ht);
3115
Bram Moolenaar8db73182005-06-17 21:51:16 +00003116 spin->si_foldwcount = 0;
3117 spin->si_keepwcount = 0;
3118
Bram Moolenaarb765d632005-06-07 21:00:02 +00003119 if (spin->si_verbose || p_verbose > 2)
3120 {
3121 if (!spin->si_verbose)
3122 verbose_enter();
3123 smsg((char_u *)_("Reading dictionary file %s..."), fname);
3124 out_flush();
3125 if (!spin->si_verbose)
3126 verbose_leave();
3127 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003128
3129 /* Read and ignore the first line: word count. */
3130 (void)vim_fgets(line, MAXLINELEN, fd);
Bram Moolenaar9f30f502005-06-14 22:01:04 +00003131 if (!vim_isdigit(*skipwhite(line)))
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003132 EMSG2(_("E760: No word count in %s"), fname);
3133
3134 /*
3135 * Read all the lines in the file one by one.
3136 * The words are converted to 'encoding' here, before being added to
3137 * the hashtable.
3138 */
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00003139 while (!vim_fgets(line, MAXLINELEN, fd) && !got_int)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003140 {
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00003141 line_breakcheck();
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003142 ++lnum;
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00003143 if (line[0] == '#')
3144 continue; /* comment line */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003145
Bram Moolenaar51485f02005-06-04 21:55:20 +00003146 /* Remove CR, LF and white space from the end. White space halfway
3147 * the word is kept to allow e.g., "et al.". */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003148 l = STRLEN(line);
3149 while (l > 0 && line[l - 1] <= ' ')
3150 --l;
3151 if (l == 0)
3152 continue; /* empty line */
3153 line[l] = NUL;
3154
Bram Moolenaar51485f02005-06-04 21:55:20 +00003155 /* Find the optional affix names. */
3156 afflist = vim_strchr(line, '/');
3157 if (afflist != NULL)
3158 *afflist++ = NUL;
3159
3160 /* Skip non-ASCII words when "spin->si_ascii" is TRUE. */
3161 if (spin->si_ascii && has_non_ascii(line))
3162 {
3163 ++non_ascii;
Bram Moolenaar5482f332005-04-17 20:18:43 +00003164 continue;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003165 }
Bram Moolenaar5482f332005-04-17 20:18:43 +00003166
Bram Moolenaarb765d632005-06-07 21:00:02 +00003167#ifdef FEAT_MBYTE
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003168 /* Convert from "SET" to 'encoding' when needed. */
Bram Moolenaar51485f02005-06-04 21:55:20 +00003169 if (spin->si_conv.vc_type != CONV_NONE)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003170 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00003171 pc = string_convert(&spin->si_conv, line, NULL);
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00003172 if (pc == NULL)
3173 {
3174 smsg((char_u *)_("Conversion failure for word in %s line %d: %s"),
3175 fname, lnum, line);
3176 continue;
3177 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003178 w = pc;
3179 }
3180 else
Bram Moolenaarb765d632005-06-07 21:00:02 +00003181#endif
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003182 {
3183 pc = NULL;
3184 w = line;
3185 }
3186
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003187 /* This takes time, print a message now and then. */
3188 if (spin->si_verbose && (lnum & 0x3ff) == 0)
3189 {
3190 vim_snprintf((char *)message, sizeof(message),
3191 _("line %6d, word %6d - %s"),
3192 lnum, spin->si_foldwcount + spin->si_keepwcount, w);
3193 msg_start();
3194 msg_puts_long_attr(message, 0);
3195 msg_clr_eos();
3196 msg_didout = FALSE;
3197 msg_col = 0;
3198 out_flush();
3199 }
3200
Bram Moolenaar51485f02005-06-04 21:55:20 +00003201 /* Store the word in the hashtable to be able to find duplicates. */
3202 dw = (char_u *)getroom_save(&spin->si_blocks, w);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003203 if (dw == NULL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00003204 retval = FAIL;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003205 vim_free(pc);
Bram Moolenaar51485f02005-06-04 21:55:20 +00003206 if (retval == FAIL)
3207 break;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003208
Bram Moolenaar51485f02005-06-04 21:55:20 +00003209 hash = hash_hash(dw);
3210 hi = hash_lookup(&ht, dw, hash);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003211 if (!HASHITEM_EMPTY(hi))
3212 smsg((char_u *)_("Duplicate word in %s line %d: %s"),
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003213 fname, lnum, w);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003214 else
Bram Moolenaar51485f02005-06-04 21:55:20 +00003215 hash_add_item(&ht, hi, dw, hash);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003216
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00003217 flags = 0;
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003218 pfxlist = NULL;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00003219 if (afflist != NULL)
3220 {
3221 /* Check for affix name that stands for keep-case word and stands
3222 * for rare word (if defined). */
Bram Moolenaarb765d632005-06-07 21:00:02 +00003223 if (affile->af_kep != NUL
3224 && vim_strchr(afflist, affile->af_kep) != NULL)
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00003225 flags |= WF_KEEPCAP;
3226 if (affile->af_rar != NUL
3227 && vim_strchr(afflist, affile->af_rar) != NULL)
3228 flags |= WF_RARE;
Bram Moolenaar0c405862005-06-22 22:26:26 +00003229 if (affile->af_bad != NUL
3230 && vim_strchr(afflist, affile->af_bad) != NULL)
3231 flags |= WF_BANNED;
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003232
3233 if (affile->af_pfxpostpone)
3234 /* Need to store the list of prefix IDs with the word. */
3235 pfxlist = get_pfxlist(affile, afflist, &spin->si_blocks);
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00003236 }
3237
Bram Moolenaar51485f02005-06-04 21:55:20 +00003238 /* Add the word to the word tree(s). */
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003239 if (store_word(dw, spin, flags, spin->si_region, pfxlist) == FAIL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00003240 retval = FAIL;
3241
3242 if (afflist != NULL)
3243 {
3244 /* Find all matching suffixes and add the resulting words.
3245 * Additionally do matching prefixes that combine. */
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003246 if (store_aff_word(dw, spin, afflist, affile,
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00003247 &affile->af_suff, &affile->af_pref,
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003248 FALSE, flags, pfxlist) == FAIL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00003249 retval = FAIL;
3250
3251 /* Find all matching prefixes and add the resulting words. */
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003252 if (store_aff_word(dw, spin, afflist, affile,
3253 &affile->af_pref, NULL,
3254 FALSE, flags, pfxlist) == FAIL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00003255 retval = FAIL;
3256 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003257 }
3258
Bram Moolenaar51485f02005-06-04 21:55:20 +00003259 if (spin->si_ascii && non_ascii > 0)
3260 smsg((char_u *)_("Ignored %d words with non-ASCII characters"),
3261 non_ascii);
3262 hash_clear(&ht);
3263
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003264 fclose(fd);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003265 return retval;
3266}
3267
3268/*
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003269 * Get the list of prefix IDs from the affix list "afflist".
3270 * Used for PFXPOSTPONE.
3271 * Returns a string allocated with getroom(). NULL when there are no prefixes
3272 * or when out of memory.
3273 */
3274 static char_u *
3275get_pfxlist(affile, afflist, blp)
3276 afffile_T *affile;
3277 char_u *afflist;
3278 sblock_T **blp;
3279{
3280 char_u *p;
3281 int cnt;
3282 int round;
3283 char_u *res = NULL;
3284 char_u key[2];
3285 hashitem_T *hi;
3286
3287 key[1] = NUL;
3288
3289 /* round 1: count the number of prefix IDs.
3290 * round 2: move prefix IDs to "res" */
3291 for (round = 1; round <= 2; ++round)
3292 {
3293 cnt = 0;
3294 for (p = afflist; *p != NUL; ++p)
3295 {
3296 key[0] = *p;
3297 hi = hash_find(&affile->af_pref, key);
3298 if (!HASHITEM_EMPTY(hi))
3299 {
3300 /* This is a prefix ID, use the new number. */
3301 if (round == 2)
3302 res[cnt] = HI2AH(hi)->ah_newID;
3303 ++cnt;
3304 }
3305 }
3306 if (round == 1 && cnt > 0)
3307 res = getroom(blp, cnt + 1);
3308 if (res == NULL)
3309 break;
3310 }
3311
3312 if (res != NULL)
3313 res[cnt] = NUL;
3314 return res;
3315}
3316
3317/*
Bram Moolenaar51485f02005-06-04 21:55:20 +00003318 * Apply affixes to a word and store the resulting words.
3319 * "ht" is the hashtable with affentry_T that need to be applied, either
3320 * prefixes or suffixes.
3321 * "xht", when not NULL, is the prefix hashtable, to be used additionally on
3322 * the resulting words for combining affixes.
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00003323 *
3324 * Returns FAIL when out of memory.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003325 */
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00003326 static int
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003327store_aff_word(word, spin, afflist, affile, ht, xht, comb, flags, pfxlist)
Bram Moolenaar51485f02005-06-04 21:55:20 +00003328 char_u *word; /* basic word start */
3329 spellinfo_T *spin; /* spell info */
3330 char_u *afflist; /* list of names of supported affixes */
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003331 afffile_T *affile;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003332 hashtab_T *ht;
3333 hashtab_T *xht;
3334 int comb; /* only use affixes that combine */
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00003335 int flags; /* flags for the word */
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003336 char_u *pfxlist; /* list of prefix IDs */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003337{
3338 int todo;
3339 hashitem_T *hi;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003340 affheader_T *ah;
3341 affentry_T *ae;
3342 regmatch_T regmatch;
3343 char_u newword[MAXWLEN];
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00003344 int retval = OK;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003345 int i;
3346 char_u *p;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003347
Bram Moolenaar51485f02005-06-04 21:55:20 +00003348 todo = ht->ht_used;
3349 for (hi = ht->ht_array; todo > 0 && retval == OK; ++hi)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003350 {
3351 if (!HASHITEM_EMPTY(hi))
3352 {
3353 --todo;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003354 ah = HI2AH(hi);
Bram Moolenaar5482f332005-04-17 20:18:43 +00003355
Bram Moolenaar51485f02005-06-04 21:55:20 +00003356 /* Check that the affix combines, if required, and that the word
3357 * supports this affix. */
3358 if ((!comb || ah->ah_combine)
3359 && vim_strchr(afflist, *ah->ah_key) != NULL)
Bram Moolenaar5482f332005-04-17 20:18:43 +00003360 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00003361 /* Loop over all affix entries with this name. */
3362 for (ae = ah->ah_first; ae != NULL; ae = ae->ae_next)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003363 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00003364 /* Check the condition. It's not logical to match case
3365 * here, but it is required for compatibility with
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003366 * Myspell.
3367 * For prefixes, when "PFXPOSTPONE" was used, only do
3368 * prefixes with a chop string. */
Bram Moolenaar51485f02005-06-04 21:55:20 +00003369 regmatch.regprog = ae->ae_prog;
3370 regmatch.rm_ic = FALSE;
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003371 if ((xht != NULL || !affile->af_pfxpostpone
3372 || ae->ae_chop != NULL)
3373 && (ae->ae_prog == NULL
3374 || vim_regexec(&regmatch, word, (colnr_T)0)))
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003375 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00003376 /* Match. Remove the chop and add the affix. */
3377 if (xht == NULL)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003378 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00003379 /* prefix: chop/add at the start of the word */
3380 if (ae->ae_add == NULL)
3381 *newword = NUL;
3382 else
3383 STRCPY(newword, ae->ae_add);
3384 p = word;
3385 if (ae->ae_chop != NULL)
Bram Moolenaarb765d632005-06-07 21:00:02 +00003386 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00003387 /* Skip chop string. */
Bram Moolenaarb765d632005-06-07 21:00:02 +00003388#ifdef FEAT_MBYTE
3389 if (has_mbyte)
Bram Moolenaar9f30f502005-06-14 22:01:04 +00003390 {
Bram Moolenaarb765d632005-06-07 21:00:02 +00003391 i = mb_charlen(ae->ae_chop);
Bram Moolenaar9f30f502005-06-14 22:01:04 +00003392 for ( ; i > 0; --i)
3393 mb_ptr_adv(p);
3394 }
Bram Moolenaarb765d632005-06-07 21:00:02 +00003395 else
3396#endif
Bram Moolenaar9f30f502005-06-14 22:01:04 +00003397 p += STRLEN(ae->ae_chop);
Bram Moolenaarb765d632005-06-07 21:00:02 +00003398 }
Bram Moolenaar51485f02005-06-04 21:55:20 +00003399 STRCAT(newword, p);
3400 }
3401 else
3402 {
3403 /* suffix: chop/add at the end of the word */
3404 STRCPY(newword, word);
3405 if (ae->ae_chop != NULL)
3406 {
3407 /* Remove chop string. */
3408 p = newword + STRLEN(newword);
Bram Moolenaarb765d632005-06-07 21:00:02 +00003409#ifdef FEAT_MBYTE
3410 if (has_mbyte)
3411 i = mb_charlen(ae->ae_chop);
3412 else
3413#endif
3414 i = STRLEN(ae->ae_chop);
3415 for ( ; i > 0; --i)
Bram Moolenaar51485f02005-06-04 21:55:20 +00003416 mb_ptr_back(newword, p);
3417 *p = NUL;
3418 }
3419 if (ae->ae_add != NULL)
3420 STRCAT(newword, ae->ae_add);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003421 }
3422
Bram Moolenaar51485f02005-06-04 21:55:20 +00003423 /* Store the modified word. */
Bram Moolenaar3982c542005-06-08 21:56:31 +00003424 if (store_word(newword, spin,
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003425 flags, spin->si_region, pfxlist) == FAIL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00003426 retval = FAIL;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003427
Bram Moolenaar51485f02005-06-04 21:55:20 +00003428 /* When added a suffix and combining is allowed also
3429 * try adding prefixes additionally. */
3430 if (xht != NULL && ah->ah_combine)
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003431 if (store_aff_word(newword, spin, afflist, affile,
3432 xht, NULL, TRUE, flags, pfxlist) == FAIL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00003433 retval = FAIL;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003434 }
3435 }
3436 }
3437 }
3438 }
3439
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00003440 return retval;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003441}
3442
3443/*
Bram Moolenaar51485f02005-06-04 21:55:20 +00003444 * Read a file with a list of words.
3445 */
3446 static int
3447spell_read_wordfile(fname, spin)
3448 char_u *fname;
3449 spellinfo_T *spin;
3450{
3451 FILE *fd;
3452 long lnum = 0;
3453 char_u rline[MAXLINELEN];
3454 char_u *line;
3455 char_u *pc = NULL;
3456 int l;
3457 int retval = OK;
3458 int did_word = FALSE;
3459 int non_ascii = 0;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00003460 int flags;
Bram Moolenaar3982c542005-06-08 21:56:31 +00003461 int regionmask;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003462
3463 /*
3464 * Open the file.
3465 */
Bram Moolenaarb765d632005-06-07 21:00:02 +00003466 fd = mch_fopen((char *)fname, "r");
Bram Moolenaar51485f02005-06-04 21:55:20 +00003467 if (fd == NULL)
3468 {
3469 EMSG2(_(e_notopen), fname);
3470 return FAIL;
3471 }
3472
Bram Moolenaarb765d632005-06-07 21:00:02 +00003473 if (spin->si_verbose || p_verbose > 2)
3474 {
3475 if (!spin->si_verbose)
3476 verbose_enter();
3477 smsg((char_u *)_("Reading word file %s..."), fname);
3478 out_flush();
3479 if (!spin->si_verbose)
3480 verbose_leave();
3481 }
Bram Moolenaar51485f02005-06-04 21:55:20 +00003482
3483 /*
3484 * Read all the lines in the file one by one.
3485 */
3486 while (!vim_fgets(rline, MAXLINELEN, fd) && !got_int)
3487 {
3488 line_breakcheck();
3489 ++lnum;
3490
3491 /* Skip comment lines. */
3492 if (*rline == '#')
3493 continue;
3494
3495 /* Remove CR, LF and white space from the end. */
3496 l = STRLEN(rline);
3497 while (l > 0 && rline[l - 1] <= ' ')
3498 --l;
3499 if (l == 0)
3500 continue; /* empty or blank line */
3501 rline[l] = NUL;
3502
3503 /* Convert from "=encoding={encoding}" to 'encoding' when needed. */
3504 vim_free(pc);
Bram Moolenaarb765d632005-06-07 21:00:02 +00003505#ifdef FEAT_MBYTE
Bram Moolenaar51485f02005-06-04 21:55:20 +00003506 if (spin->si_conv.vc_type != CONV_NONE)
3507 {
3508 pc = string_convert(&spin->si_conv, rline, NULL);
3509 if (pc == NULL)
3510 {
3511 smsg((char_u *)_("Conversion failure for word in %s line %d: %s"),
3512 fname, lnum, rline);
3513 continue;
3514 }
3515 line = pc;
3516 }
3517 else
Bram Moolenaarb765d632005-06-07 21:00:02 +00003518#endif
Bram Moolenaar51485f02005-06-04 21:55:20 +00003519 {
3520 pc = NULL;
3521 line = rline;
3522 }
3523
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00003524 flags = 0;
Bram Moolenaar3982c542005-06-08 21:56:31 +00003525 regionmask = spin->si_region;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00003526
3527 if (*line == '/')
Bram Moolenaar51485f02005-06-04 21:55:20 +00003528 {
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00003529 ++line;
Bram Moolenaar3982c542005-06-08 21:56:31 +00003530
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00003531 if (STRNCMP(line, "encoding=", 9) == 0)
Bram Moolenaar51485f02005-06-04 21:55:20 +00003532 {
3533 if (spin->si_conv.vc_type != CONV_NONE)
Bram Moolenaar3982c542005-06-08 21:56:31 +00003534 smsg((char_u *)_("Duplicate /encoding= line ignored in %s line %d: %s"),
3535 fname, lnum, line - 1);
Bram Moolenaar51485f02005-06-04 21:55:20 +00003536 else if (did_word)
Bram Moolenaar3982c542005-06-08 21:56:31 +00003537 smsg((char_u *)_("/encoding= line after word ignored in %s line %d: %s"),
3538 fname, lnum, line - 1);
Bram Moolenaar51485f02005-06-04 21:55:20 +00003539 else
3540 {
Bram Moolenaarb765d632005-06-07 21:00:02 +00003541#ifdef FEAT_MBYTE
3542 char_u *enc;
3543
Bram Moolenaar51485f02005-06-04 21:55:20 +00003544 /* Setup for conversion to 'encoding'. */
Bram Moolenaar3982c542005-06-08 21:56:31 +00003545 line += 10;
3546 enc = enc_canonize(line);
Bram Moolenaar51485f02005-06-04 21:55:20 +00003547 if (enc != NULL && !spin->si_ascii
3548 && convert_setup(&spin->si_conv, enc,
3549 p_enc) == FAIL)
3550 smsg((char_u *)_("Conversion in %s not supported: from %s to %s"),
Bram Moolenaar3982c542005-06-08 21:56:31 +00003551 fname, line, p_enc);
Bram Moolenaar51485f02005-06-04 21:55:20 +00003552 vim_free(enc);
Bram Moolenaarb765d632005-06-07 21:00:02 +00003553#else
3554 smsg((char_u *)_("Conversion in %s not supported"), fname);
3555#endif
Bram Moolenaar51485f02005-06-04 21:55:20 +00003556 }
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00003557 continue;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003558 }
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00003559
Bram Moolenaar3982c542005-06-08 21:56:31 +00003560 if (STRNCMP(line, "regions=", 8) == 0)
3561 {
3562 if (spin->si_region_count > 1)
3563 smsg((char_u *)_("Duplicate /regions= line ignored in %s line %d: %s"),
3564 fname, lnum, line);
3565 else
3566 {
3567 line += 8;
3568 if (STRLEN(line) > 16)
3569 smsg((char_u *)_("Too many regions in %s line %d: %s"),
3570 fname, lnum, line);
3571 else
3572 {
3573 spin->si_region_count = STRLEN(line) / 2;
3574 STRCPY(spin->si_region_name, line);
3575 }
3576 }
3577 continue;
3578 }
3579
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00003580 if (*line == '=')
3581 {
3582 /* keep-case word */
3583 flags |= WF_KEEPCAP;
3584 ++line;
3585 }
3586
3587 if (*line == '!')
3588 {
3589 /* Bad, bad, wicked word. */
3590 flags |= WF_BANNED;
3591 ++line;
3592 }
3593 else if (*line == '?')
3594 {
3595 /* Rare word. */
3596 flags |= WF_RARE;
3597 ++line;
3598 }
3599
Bram Moolenaar3982c542005-06-08 21:56:31 +00003600 if (VIM_ISDIGIT(*line))
3601 {
3602 /* region number(s) */
3603 regionmask = 0;
3604 while (VIM_ISDIGIT(*line))
3605 {
3606 l = *line - '0';
3607 if (l > spin->si_region_count)
3608 {
3609 smsg((char_u *)_("Invalid region nr in %s line %d: %s"),
3610 fname, lnum, line);
3611 break;
3612 }
3613 regionmask |= 1 << (l - 1);
3614 ++line;
3615 }
3616 flags |= WF_REGION;
3617 }
3618
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00003619 if (flags == 0)
3620 {
3621 smsg((char_u *)_("/ line ignored in %s line %d: %s"),
Bram Moolenaar51485f02005-06-04 21:55:20 +00003622 fname, lnum, line);
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00003623 continue;
3624 }
Bram Moolenaar51485f02005-06-04 21:55:20 +00003625 }
3626
3627 /* Skip non-ASCII words when "spin->si_ascii" is TRUE. */
3628 if (spin->si_ascii && has_non_ascii(line))
3629 {
3630 ++non_ascii;
3631 continue;
3632 }
3633
3634 /* Normal word: store it. */
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003635 if (store_word(line, spin, flags, regionmask, NULL) == FAIL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00003636 {
3637 retval = FAIL;
3638 break;
3639 }
3640 did_word = TRUE;
3641 }
3642
3643 vim_free(pc);
3644 fclose(fd);
3645
Bram Moolenaarb765d632005-06-07 21:00:02 +00003646 if (spin->si_ascii && non_ascii > 0 && (spin->si_verbose || p_verbose > 2))
3647 {
3648 if (p_verbose > 2)
3649 verbose_enter();
Bram Moolenaar51485f02005-06-04 21:55:20 +00003650 smsg((char_u *)_("Ignored %d words with non-ASCII characters"),
3651 non_ascii);
Bram Moolenaarb765d632005-06-07 21:00:02 +00003652 if (p_verbose > 2)
3653 verbose_leave();
3654 }
Bram Moolenaar51485f02005-06-04 21:55:20 +00003655 return retval;
3656}
3657
3658/*
3659 * Get part of an sblock_T, "len" bytes long.
3660 * This avoids calling free() for every little struct we use.
3661 * The memory is cleared to all zeros.
3662 * Returns NULL when out of memory.
3663 */
3664 static void *
3665getroom(blp, len)
3666 sblock_T **blp;
3667 size_t len; /* length needed */
3668{
3669 char_u *p;
3670 sblock_T *bl = *blp;
3671
3672 if (bl == NULL || bl->sb_used + len > SBLOCKSIZE)
3673 {
3674 /* Allocate a block of memory. This is not freed until much later. */
3675 bl = (sblock_T *)alloc_clear((unsigned)(sizeof(sblock_T) + SBLOCKSIZE));
3676 if (bl == NULL)
3677 return NULL;
3678 bl->sb_next = *blp;
3679 *blp = bl;
3680 bl->sb_used = 0;
3681 }
3682
3683 p = bl->sb_data + bl->sb_used;
3684 bl->sb_used += len;
3685
3686 return p;
3687}
3688
3689/*
3690 * Make a copy of a string into memory allocated with getroom().
3691 */
3692 static char_u *
3693getroom_save(blp, s)
3694 sblock_T **blp;
3695 char_u *s;
3696{
3697 char_u *sc;
3698
3699 sc = (char_u *)getroom(blp, STRLEN(s) + 1);
3700 if (sc != NULL)
3701 STRCPY(sc, s);
3702 return sc;
3703}
3704
3705
3706/*
3707 * Free the list of allocated sblock_T.
3708 */
3709 static void
3710free_blocks(bl)
3711 sblock_T *bl;
3712{
3713 sblock_T *next;
3714
3715 while (bl != NULL)
3716 {
3717 next = bl->sb_next;
3718 vim_free(bl);
3719 bl = next;
3720 }
3721}
3722
3723/*
3724 * Allocate the root of a word tree.
3725 */
3726 static wordnode_T *
3727wordtree_alloc(blp)
3728 sblock_T **blp;
3729{
3730 return (wordnode_T *)getroom(blp, sizeof(wordnode_T));
3731}
3732
3733/*
3734 * Store a word in the tree(s).
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00003735 * Always store it in the case-folded tree. A keep-case word can also be used
3736 * with all caps.
Bram Moolenaar51485f02005-06-04 21:55:20 +00003737 * For a keep-case word also store it in the keep-case tree.
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003738 * When "pfxlist" is not NULL store the word for each prefix ID.
Bram Moolenaar51485f02005-06-04 21:55:20 +00003739 */
3740 static int
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003741store_word(word, spin, flags, region, pfxlist)
Bram Moolenaar51485f02005-06-04 21:55:20 +00003742 char_u *word;
3743 spellinfo_T *spin;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00003744 int flags; /* extra flags, WF_BANNED */
Bram Moolenaar3982c542005-06-08 21:56:31 +00003745 int region; /* supported region(s) */
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003746 char_u *pfxlist; /* list of prefix IDs or NULL */
Bram Moolenaar51485f02005-06-04 21:55:20 +00003747{
3748 int len = STRLEN(word);
3749 int ct = captype(word, word + len);
3750 char_u foldword[MAXWLEN];
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003751 int res = OK;
3752 char_u *p;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003753
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003754 (void)spell_casefold(word, len, foldword, MAXWLEN);
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003755 for (p = pfxlist; res == OK; ++p)
3756 {
3757 res = tree_add_word(foldword, spin->si_foldroot, ct | flags,
3758 region, p == NULL ? 0 : *p, &spin->si_blocks);
3759 if (p == NULL || *p == NUL)
3760 break;
3761 }
Bram Moolenaar8db73182005-06-17 21:51:16 +00003762 ++spin->si_foldwcount;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00003763
3764 if (res == OK && (ct == WF_KEEPCAP || flags & WF_KEEPCAP))
Bram Moolenaar8db73182005-06-17 21:51:16 +00003765 {
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003766 for (p = pfxlist; res == OK; ++p)
3767 {
3768 res = tree_add_word(word, spin->si_keeproot, flags,
3769 region, p == NULL ? 0 : *p, &spin->si_blocks);
3770 if (p == NULL || *p == NUL)
3771 break;
3772 }
Bram Moolenaar8db73182005-06-17 21:51:16 +00003773 ++spin->si_keepwcount;
3774 }
Bram Moolenaar51485f02005-06-04 21:55:20 +00003775 return res;
3776}
3777
3778/*
3779 * Add word "word" to a word tree at "root".
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003780 * When "flags" is -1 we are adding to the prefix tree where flags don't
3781 * matter and "region" is the condition nr.
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00003782 * Returns FAIL when out of memory.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003783 */
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00003784 static int
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003785tree_add_word(word, root, flags, region, prefixID, blp)
Bram Moolenaar51485f02005-06-04 21:55:20 +00003786 char_u *word;
3787 wordnode_T *root;
3788 int flags;
3789 int region;
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003790 int prefixID;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003791 sblock_T **blp;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003792{
Bram Moolenaar51485f02005-06-04 21:55:20 +00003793 wordnode_T *node = root;
3794 wordnode_T *np;
3795 wordnode_T **prev = NULL;
3796 int i;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003797
Bram Moolenaar51485f02005-06-04 21:55:20 +00003798 /* Add each byte of the word to the tree, including the NUL at the end. */
3799 for (i = 0; ; ++i)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003800 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00003801 /* Look for the sibling that has the same character. They are sorted
3802 * on byte value, thus stop searching when a sibling is found with a
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003803 * higher byte value. For zero bytes (end of word) the sorting is
3804 * done on flags and then on prefixID
Bram Moolenaar51485f02005-06-04 21:55:20 +00003805 */
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003806 while (node != NULL
3807 && (node->wn_byte < word[i]
3808 || (node->wn_byte == NUL
3809 && (flags < 0
3810 ? node->wn_prefixID < prefixID
3811 : node->wn_flags < (flags & 0xff)
3812 || (node->wn_flags == (flags & 0xff)
3813 && node->wn_prefixID < prefixID)))))
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003814 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00003815 prev = &node->wn_sibling;
3816 node = *prev;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003817 }
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003818 if (node == NULL
3819 || node->wn_byte != word[i]
3820 || (word[i] == NUL
3821 && (flags < 0
3822 || node->wn_flags != (flags & 0xff)
3823 || node->wn_prefixID != prefixID)))
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003824 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00003825 /* Allocate a new node. */
3826 np = (wordnode_T *)getroom(blp, sizeof(wordnode_T));
3827 if (np == NULL)
3828 return FAIL;
3829 np->wn_byte = word[i];
3830 *prev = np;
3831 np->wn_sibling = node;
3832 node = np;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003833 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003834
Bram Moolenaar51485f02005-06-04 21:55:20 +00003835 if (word[i] == NUL)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003836 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00003837 node->wn_flags = flags;
3838 node->wn_region |= region;
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003839 node->wn_prefixID = prefixID;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003840 break;
Bram Moolenaar63d5a1e2005-04-19 21:30:25 +00003841 }
Bram Moolenaar51485f02005-06-04 21:55:20 +00003842 prev = &node->wn_child;
3843 node = *prev;
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00003844 }
3845
3846 return OK;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003847}
3848
3849/*
Bram Moolenaar51485f02005-06-04 21:55:20 +00003850 * Compress a tree: find tails that are identical and can be shared.
3851 */
3852 static void
Bram Moolenaarb765d632005-06-07 21:00:02 +00003853wordtree_compress(root, spin)
Bram Moolenaar51485f02005-06-04 21:55:20 +00003854 wordnode_T *root;
Bram Moolenaarb765d632005-06-07 21:00:02 +00003855 spellinfo_T *spin;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003856{
3857 hashtab_T ht;
3858 int n;
3859 int tot = 0;
3860
3861 if (root != NULL)
3862 {
3863 hash_init(&ht);
3864 n = node_compress(root, &ht, &tot);
Bram Moolenaarb765d632005-06-07 21:00:02 +00003865 if (spin->si_verbose || p_verbose > 2)
3866 {
3867 if (!spin->si_verbose)
3868 verbose_enter();
3869 smsg((char_u *)_("Compressed %d of %d nodes; %d%% remaining"),
Bram Moolenaar51485f02005-06-04 21:55:20 +00003870 n, tot, (tot - n) * 100 / tot);
Bram Moolenaarb765d632005-06-07 21:00:02 +00003871 if (p_verbose > 2)
3872 verbose_leave();
3873 }
Bram Moolenaar51485f02005-06-04 21:55:20 +00003874 hash_clear(&ht);
3875 }
3876}
3877
3878/*
3879 * Compress a node, its siblings and its children, depth first.
3880 * Returns the number of compressed nodes.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003881 */
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00003882 static int
Bram Moolenaar51485f02005-06-04 21:55:20 +00003883node_compress(node, ht, tot)
3884 wordnode_T *node;
3885 hashtab_T *ht;
3886 int *tot; /* total count of nodes before compressing,
3887 incremented while going through the tree */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003888{
Bram Moolenaar51485f02005-06-04 21:55:20 +00003889 wordnode_T *np;
3890 wordnode_T *tp;
3891 wordnode_T *child;
3892 hash_T hash;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003893 hashitem_T *hi;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003894 int len = 0;
3895 unsigned nr, n;
3896 int compressed = 0;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003897
Bram Moolenaar51485f02005-06-04 21:55:20 +00003898 /*
3899 * Go through the list of siblings. Compress each child and then try
3900 * finding an identical child to replace it.
3901 * Note that with "child" we mean not just the node that is pointed to,
3902 * but the whole list of siblings, of which the node is the first.
3903 */
3904 for (np = node; np != NULL; np = np->wn_sibling)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003905 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00003906 ++len;
3907 if ((child = np->wn_child) != NULL)
3908 {
Bram Moolenaar0c405862005-06-22 22:26:26 +00003909 /* Compress the child. This fills hashkey. */
Bram Moolenaar51485f02005-06-04 21:55:20 +00003910 compressed += node_compress(child, ht, tot);
3911
3912 /* Try to find an identical child. */
Bram Moolenaar0c405862005-06-22 22:26:26 +00003913 hash = hash_hash(child->wn_u1.hashkey);
3914 hi = hash_lookup(ht, child->wn_u1.hashkey, hash);
Bram Moolenaar51485f02005-06-04 21:55:20 +00003915 tp = NULL;
3916 if (!HASHITEM_EMPTY(hi))
3917 {
3918 /* There are children with an identical hash value. Now check
3919 * if there is one that is really identical. */
Bram Moolenaar0c405862005-06-22 22:26:26 +00003920 for (tp = HI2WN(hi); tp != NULL; tp = tp->wn_u2.next)
Bram Moolenaar51485f02005-06-04 21:55:20 +00003921 if (node_equal(child, tp))
3922 {
3923 /* Found one! Now use that child in place of the
3924 * current one. This means the current child is
3925 * dropped from the tree. */
3926 np->wn_child = tp;
3927 ++compressed;
3928 break;
3929 }
3930 if (tp == NULL)
3931 {
3932 /* No other child with this hash value equals the child of
3933 * the node, add it to the linked list after the first
3934 * item. */
3935 tp = HI2WN(hi);
Bram Moolenaar0c405862005-06-22 22:26:26 +00003936 child->wn_u2.next = tp->wn_u2.next;
3937 tp->wn_u2.next = child;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003938 }
3939 }
3940 else
3941 /* No other child has this hash value, add it to the
3942 * hashtable. */
Bram Moolenaar0c405862005-06-22 22:26:26 +00003943 hash_add_item(ht, hi, child->wn_u1.hashkey, hash);
Bram Moolenaar51485f02005-06-04 21:55:20 +00003944 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003945 }
Bram Moolenaar51485f02005-06-04 21:55:20 +00003946 *tot += len;
3947
3948 /*
3949 * Make a hash key for the node and its siblings, so that we can quickly
3950 * find a lookalike node. This must be done after compressing the sibling
3951 * list, otherwise the hash key would become invalid by the compression.
3952 */
Bram Moolenaar0c405862005-06-22 22:26:26 +00003953 node->wn_u1.hashkey[0] = len;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003954 nr = 0;
3955 for (np = node; np != NULL; np = np->wn_sibling)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003956 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00003957 if (np->wn_byte == NUL)
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003958 /* end node: use wn_flags, wn_region and wn_prefixID */
3959 n = np->wn_flags + (np->wn_region << 8) + (np->wn_prefixID << 16);
Bram Moolenaar51485f02005-06-04 21:55:20 +00003960 else
3961 /* byte node: use the byte value and the child pointer */
3962 n = np->wn_byte + ((long_u)np->wn_child << 8);
3963 nr = nr * 101 + n;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003964 }
Bram Moolenaar51485f02005-06-04 21:55:20 +00003965
3966 /* Avoid NUL bytes, it terminates the hash key. */
3967 n = nr & 0xff;
Bram Moolenaar0c405862005-06-22 22:26:26 +00003968 node->wn_u1.hashkey[1] = n == 0 ? 1 : n;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003969 n = (nr >> 8) & 0xff;
Bram Moolenaar0c405862005-06-22 22:26:26 +00003970 node->wn_u1.hashkey[2] = n == 0 ? 1 : n;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003971 n = (nr >> 16) & 0xff;
Bram Moolenaar0c405862005-06-22 22:26:26 +00003972 node->wn_u1.hashkey[3] = n == 0 ? 1 : n;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003973 n = (nr >> 24) & 0xff;
Bram Moolenaar0c405862005-06-22 22:26:26 +00003974 node->wn_u1.hashkey[4] = n == 0 ? 1 : n;
3975 node->wn_u1.hashkey[5] = NUL;
Bram Moolenaar51485f02005-06-04 21:55:20 +00003976
3977 return compressed;
3978}
3979
3980/*
3981 * Return TRUE when two nodes have identical siblings and children.
3982 */
3983 static int
3984node_equal(n1, n2)
3985 wordnode_T *n1;
3986 wordnode_T *n2;
3987{
3988 wordnode_T *p1;
3989 wordnode_T *p2;
3990
3991 for (p1 = n1, p2 = n2; p1 != NULL && p2 != NULL;
3992 p1 = p1->wn_sibling, p2 = p2->wn_sibling)
3993 if (p1->wn_byte != p2->wn_byte
3994 || (p1->wn_byte == NUL
3995 ? (p1->wn_flags != p2->wn_flags
Bram Moolenaar1d73c882005-06-19 22:48:47 +00003996 || p1->wn_region != p2->wn_region
3997 || p1->wn_prefixID != p2->wn_prefixID)
Bram Moolenaar51485f02005-06-04 21:55:20 +00003998 : (p1->wn_child != p2->wn_child)))
3999 break;
4000
4001 return p1 == NULL && p2 == NULL;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004002}
4003
4004/*
4005 * Write a number to file "fd", MSB first, in "len" bytes.
4006 */
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00004007 void
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004008put_bytes(fd, nr, len)
4009 FILE *fd;
4010 long_u nr;
4011 int len;
4012{
4013 int i;
4014
4015 for (i = len - 1; i >= 0; --i)
4016 putc((int)(nr >> (i * 8)), fd);
4017}
4018
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004019static int
4020#ifdef __BORLANDC__
4021_RTLENTRYF
4022#endif
4023rep_compare __ARGS((const void *s1, const void *s2));
4024
4025/*
4026 * Function given to qsort() to sort the REP items on "from" string.
4027 */
4028 static int
4029#ifdef __BORLANDC__
4030_RTLENTRYF
4031#endif
4032rep_compare(s1, s2)
4033 const void *s1;
4034 const void *s2;
4035{
4036 fromto_T *p1 = (fromto_T *)s1;
4037 fromto_T *p2 = (fromto_T *)s2;
4038
4039 return STRCMP(p1->ft_from, p2->ft_from);
4040}
4041
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004042/*
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004043 * Write the Vim spell file "fname".
4044 */
4045 static void
Bram Moolenaar3982c542005-06-08 21:56:31 +00004046write_vim_spell(fname, spin)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004047 char_u *fname;
Bram Moolenaar51485f02005-06-04 21:55:20 +00004048 spellinfo_T *spin;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004049{
Bram Moolenaar51485f02005-06-04 21:55:20 +00004050 FILE *fd;
4051 int regionmask;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004052 int round;
Bram Moolenaar51485f02005-06-04 21:55:20 +00004053 wordnode_T *tree;
4054 int nodecount;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004055 int i;
4056 int l;
4057 garray_T *gap;
4058 fromto_T *ftp;
4059 char_u *p;
4060 int rr;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004061
Bram Moolenaarb765d632005-06-07 21:00:02 +00004062 fd = mch_fopen((char *)fname, "w");
Bram Moolenaar51485f02005-06-04 21:55:20 +00004063 if (fd == NULL)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004064 {
4065 EMSG2(_(e_notopen), fname);
4066 return;
4067 }
4068
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00004069 /* <HEADER>: <fileID> <regioncnt> <regionname> ...
Bram Moolenaar1d73c882005-06-19 22:48:47 +00004070 * <charflagslen> <charflags>
4071 * <fcharslen> <fchars>
4072 * <prefcondcnt> <prefcond> ... */
Bram Moolenaar51485f02005-06-04 21:55:20 +00004073
4074 /* <fileID> */
4075 if (fwrite(VIMSPELLMAGIC, VIMSPELLMAGICL, (size_t)1, fd) != 1)
4076 EMSG(_(e_write));
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004077
4078 /* write the region names if there is more than one */
Bram Moolenaar3982c542005-06-08 21:56:31 +00004079 if (spin->si_region_count > 1)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004080 {
Bram Moolenaar3982c542005-06-08 21:56:31 +00004081 putc(spin->si_region_count, fd); /* <regioncnt> <regionname> ... */
4082 fwrite(spin->si_region_name, (size_t)(spin->si_region_count * 2),
4083 (size_t)1, fd);
4084 regionmask = (1 << spin->si_region_count) - 1;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004085 }
4086 else
4087 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00004088 putc(0, fd);
4089 regionmask = 0;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004090 }
4091
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004092 /*
4093 * Write the table with character flags and table for case folding.
Bram Moolenaar6f3058f2005-04-24 21:58:05 +00004094 * <charflagslen> <charflags> <fcharlen> <fchars>
4095 * Skip this for ASCII, the table may conflict with the one used for
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004096 * 'encoding'.
4097 * Also skip this for an .add.spl file, the main spell file must contain
4098 * the table (avoids that it conflicts). File is shorter too.
4099 */
4100 if (spin->si_ascii || spin->si_add)
Bram Moolenaar6f3058f2005-04-24 21:58:05 +00004101 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00004102 putc(0, fd);
4103 putc(0, fd);
4104 putc(0, fd);
Bram Moolenaar6f3058f2005-04-24 21:58:05 +00004105 }
4106 else
Bram Moolenaar51485f02005-06-04 21:55:20 +00004107 write_spell_chartab(fd);
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00004108
Bram Moolenaar1d73c882005-06-19 22:48:47 +00004109 /* Write the prefix conditions. */
4110 write_spell_prefcond(fd, &spin->si_prefcond);
4111
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004112 /* Sort the REP items. */
4113 qsort(spin->si_rep.ga_data, (size_t)spin->si_rep.ga_len,
4114 sizeof(fromto_T), rep_compare);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004115
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004116 /* <SUGGEST> : <repcount> <rep> ...
4117 * <salflags> <salcount> <sal> ...
4118 * <maplen> <mapstr> */
4119 for (round = 1; round <= 2; ++round)
4120 {
4121 if (round == 1)
4122 gap = &spin->si_rep;
4123 else
4124 {
4125 gap = &spin->si_sal;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004126
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004127 i = 0;
4128 if (spin->si_followup)
4129 i |= SAL_F0LLOWUP;
4130 if (spin->si_collapse)
4131 i |= SAL_COLLAPSE;
4132 if (spin->si_rem_accents)
4133 i |= SAL_REM_ACCENTS;
4134 putc(i, fd); /* <salflags> */
4135 }
4136
4137 put_bytes(fd, (long_u)gap->ga_len, 2); /* <repcount> or <salcount> */
4138 for (i = 0; i < gap->ga_len; ++i)
4139 {
4140 /* <rep> : <repfromlen> <repfrom> <reptolen> <repto> */
4141 /* <sal> : <salfromlen> <salfrom> <saltolen> <salto> */
4142 ftp = &((fromto_T *)gap->ga_data)[i];
4143 for (rr = 1; rr <= 2; ++rr)
4144 {
4145 p = rr == 1 ? ftp->ft_from : ftp->ft_to;
4146 l = STRLEN(p);
4147 putc(l, fd);
4148 fwrite(p, l, (size_t)1, fd);
4149 }
4150 }
4151 }
4152
4153 put_bytes(fd, (long_u)spin->si_map.ga_len, 2); /* <maplen> */
4154 if (spin->si_map.ga_len > 0) /* <mapstr> */
4155 fwrite(spin->si_map.ga_data, (size_t)spin->si_map.ga_len,
4156 (size_t)1, fd);
Bram Moolenaar50cde822005-06-05 21:54:54 +00004157
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004158 /*
Bram Moolenaar1d73c882005-06-19 22:48:47 +00004159 * <LWORDTREE> <KWORDTREE> <PREFIXTREE>
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004160 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004161 spin->si_memtot = 0;
Bram Moolenaar1d73c882005-06-19 22:48:47 +00004162 for (round = 1; round <= 3; ++round)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004163 {
Bram Moolenaar1d73c882005-06-19 22:48:47 +00004164 if (round == 1)
4165 tree = spin->si_foldroot;
4166 else if (round == 2)
4167 tree = spin->si_keeproot;
4168 else
4169 tree = spin->si_prefroot;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004170
Bram Moolenaar0c405862005-06-22 22:26:26 +00004171 /* Clear the index and wnode fields in the tree. */
4172 clear_node(tree);
4173
Bram Moolenaar51485f02005-06-04 21:55:20 +00004174 /* Count the number of nodes. Needed to be able to allocate the
Bram Moolenaar0c405862005-06-22 22:26:26 +00004175 * memory when reading the nodes. Also fills in index for shared
Bram Moolenaar51485f02005-06-04 21:55:20 +00004176 * nodes. */
Bram Moolenaar0c405862005-06-22 22:26:26 +00004177 nodecount = put_node(NULL, tree, 0, regionmask, round == 3);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004178
Bram Moolenaar51485f02005-06-04 21:55:20 +00004179 /* number of nodes in 4 bytes */
4180 put_bytes(fd, (long_u)nodecount, 4); /* <nodecount> */
Bram Moolenaar50cde822005-06-05 21:54:54 +00004181 spin->si_memtot += nodecount + nodecount * sizeof(int);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004182
Bram Moolenaar51485f02005-06-04 21:55:20 +00004183 /* Write the nodes. */
Bram Moolenaar0c405862005-06-22 22:26:26 +00004184 (void)put_node(fd, tree, 0, regionmask, round == 3);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004185 }
4186
Bram Moolenaar51485f02005-06-04 21:55:20 +00004187 fclose(fd);
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00004188}
4189
4190/*
Bram Moolenaar0c405862005-06-22 22:26:26 +00004191 * Clear the index and wnode fields of "node", it siblings and its
4192 * children. This is needed because they are a union with other items to save
4193 * space.
4194 */
4195 static void
4196clear_node(node)
4197 wordnode_T *node;
4198{
4199 wordnode_T *np;
4200
4201 if (node != NULL)
4202 for (np = node; np != NULL; np = np->wn_sibling)
4203 {
4204 np->wn_u1.index = 0;
4205 np->wn_u2.wnode = NULL;
4206
4207 if (np->wn_byte != NUL)
4208 clear_node(np->wn_child);
4209 }
4210}
4211
4212
4213/*
Bram Moolenaar51485f02005-06-04 21:55:20 +00004214 * Dump a word tree at node "node".
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004215 *
Bram Moolenaar51485f02005-06-04 21:55:20 +00004216 * This first writes the list of possible bytes (siblings). Then for each
4217 * byte recursively write the children.
4218 *
4219 * NOTE: The code here must match the code in read_tree(), since assumptions
4220 * are made about the indexes (so that we don't have to write them in the
4221 * file).
4222 *
4223 * Returns the number of nodes used.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004224 */
Bram Moolenaar51485f02005-06-04 21:55:20 +00004225 static int
Bram Moolenaar0c405862005-06-22 22:26:26 +00004226put_node(fd, node, index, regionmask, prefixtree)
Bram Moolenaar1d73c882005-06-19 22:48:47 +00004227 FILE *fd; /* NULL when only counting */
Bram Moolenaar51485f02005-06-04 21:55:20 +00004228 wordnode_T *node;
4229 int index;
4230 int regionmask;
Bram Moolenaar1d73c882005-06-19 22:48:47 +00004231 int prefixtree; /* TRUE for PREFIXTREE */
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004232{
Bram Moolenaar51485f02005-06-04 21:55:20 +00004233 int newindex = index;
4234 int siblingcount = 0;
4235 wordnode_T *np;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004236 int flags;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004237
Bram Moolenaar51485f02005-06-04 21:55:20 +00004238 /* If "node" is zero the tree is empty. */
4239 if (node == NULL)
4240 return 0;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004241
Bram Moolenaar51485f02005-06-04 21:55:20 +00004242 /* Store the index where this node is written. */
Bram Moolenaar0c405862005-06-22 22:26:26 +00004243 node->wn_u1.index = index;
Bram Moolenaar51485f02005-06-04 21:55:20 +00004244
4245 /* Count the number of siblings. */
4246 for (np = node; np != NULL; np = np->wn_sibling)
4247 ++siblingcount;
4248
4249 /* Write the sibling count. */
4250 if (fd != NULL)
4251 putc(siblingcount, fd); /* <siblingcount> */
4252
4253 /* Write each sibling byte and optionally extra info. */
4254 for (np = node; np != NULL; np = np->wn_sibling)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004255 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00004256 if (np->wn_byte == 0)
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00004257 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00004258 if (fd != NULL)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004259 {
Bram Moolenaar1d73c882005-06-19 22:48:47 +00004260 /* For a NUL byte (end of word) write the flags etc. */
4261 if (prefixtree)
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00004262 {
Bram Moolenaar1d73c882005-06-19 22:48:47 +00004263 /* In PREFIXTREE write the required prefixID and the
4264 * associated condition nr (stored in wn_region). */
4265 putc(BY_FLAGS, fd); /* <byte> */
4266 putc(np->wn_prefixID, fd); /* <prefixID> */
4267 put_bytes(fd, (long_u)np->wn_region, 2); /* <prefcondnr> */
Bram Moolenaar51485f02005-06-04 21:55:20 +00004268 }
4269 else
4270 {
Bram Moolenaar1d73c882005-06-19 22:48:47 +00004271 /* For word trees we write the flag/region items. */
4272 flags = np->wn_flags;
4273 if (regionmask != 0 && np->wn_region != regionmask)
4274 flags |= WF_REGION;
4275 if (np->wn_prefixID != 0)
4276 flags |= WF_PFX;
4277 if (flags == 0)
4278 {
4279 /* word without flags or region */
4280 putc(BY_NOFLAGS, fd); /* <byte> */
4281 }
4282 else
4283 {
4284 putc(BY_FLAGS, fd); /* <byte> */
4285 putc(flags, fd); /* <flags> */
4286 if (flags & WF_REGION)
4287 putc(np->wn_region, fd); /* <region> */
4288 if (flags & WF_PFX)
4289 putc(np->wn_prefixID, fd); /* <prefixID> */
4290 }
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00004291 }
4292 }
Bram Moolenaar2cf8b302005-04-20 19:37:22 +00004293 }
Bram Moolenaar51485f02005-06-04 21:55:20 +00004294 else
4295 {
Bram Moolenaar0c405862005-06-22 22:26:26 +00004296 if (np->wn_child->wn_u1.index != 0
4297 && np->wn_child->wn_u2.wnode != node)
Bram Moolenaar51485f02005-06-04 21:55:20 +00004298 {
4299 /* The child is written elsewhere, write the reference. */
4300 if (fd != NULL)
4301 {
4302 putc(BY_INDEX, fd); /* <byte> */
4303 /* <nodeidx> */
Bram Moolenaar0c405862005-06-22 22:26:26 +00004304 put_bytes(fd, (long_u)np->wn_child->wn_u1.index, 3);
Bram Moolenaar51485f02005-06-04 21:55:20 +00004305 }
4306 }
Bram Moolenaar0c405862005-06-22 22:26:26 +00004307 else if (np->wn_child->wn_u2.wnode == NULL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00004308 /* We will write the child below and give it an index. */
Bram Moolenaar0c405862005-06-22 22:26:26 +00004309 np->wn_child->wn_u2.wnode = node;
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00004310
Bram Moolenaar51485f02005-06-04 21:55:20 +00004311 if (fd != NULL)
4312 if (putc(np->wn_byte, fd) == EOF) /* <byte> or <xbyte> */
4313 {
4314 EMSG(_(e_write));
4315 return 0;
4316 }
4317 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004318 }
Bram Moolenaar51485f02005-06-04 21:55:20 +00004319
4320 /* Space used in the array when reading: one for each sibling and one for
4321 * the count. */
4322 newindex += siblingcount + 1;
4323
4324 /* Recursively dump the children of each sibling. */
4325 for (np = node; np != NULL; np = np->wn_sibling)
Bram Moolenaar0c405862005-06-22 22:26:26 +00004326 if (np->wn_byte != 0 && np->wn_child->wn_u2.wnode == node)
4327 newindex = put_node(fd, np->wn_child, newindex, regionmask,
Bram Moolenaar1d73c882005-06-19 22:48:47 +00004328 prefixtree);
Bram Moolenaar51485f02005-06-04 21:55:20 +00004329
4330 return newindex;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004331}
4332
4333
4334/*
Bram Moolenaarb765d632005-06-07 21:00:02 +00004335 * ":mkspell [-ascii] outfile infile ..."
4336 * ":mkspell [-ascii] addfile"
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004337 */
4338 void
4339ex_mkspell(eap)
4340 exarg_T *eap;
4341{
4342 int fcount;
4343 char_u **fnames;
Bram Moolenaarb765d632005-06-07 21:00:02 +00004344 char_u *arg = eap->arg;
4345 int ascii = FALSE;
4346
4347 if (STRNCMP(arg, "-ascii", 6) == 0)
4348 {
4349 ascii = TRUE;
4350 arg = skipwhite(arg + 6);
4351 }
4352
4353 /* Expand all the remaining arguments (e.g., $VIMRUNTIME). */
4354 if (get_arglist_exp(arg, &fcount, &fnames) == OK)
4355 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004356 mkspell(fcount, fnames, ascii, eap->forceit, FALSE);
Bram Moolenaarb765d632005-06-07 21:00:02 +00004357 FreeWild(fcount, fnames);
4358 }
4359}
4360
4361/*
4362 * Create a Vim spell file from one or more word lists.
4363 * "fnames[0]" is the output file name.
4364 * "fnames[fcount - 1]" is the last input file name.
4365 * Exception: when "fnames[0]" ends in ".add" it's used as the input file name
4366 * and ".spl" is appended to make the output file name.
4367 */
4368 static void
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004369mkspell(fcount, fnames, ascii, overwrite, added_word)
Bram Moolenaarb765d632005-06-07 21:00:02 +00004370 int fcount;
4371 char_u **fnames;
4372 int ascii; /* -ascii argument given */
4373 int overwrite; /* overwrite existing output file */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004374 int added_word; /* invoked through "zg" */
Bram Moolenaarb765d632005-06-07 21:00:02 +00004375{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004376 char_u fname[MAXPATHL];
4377 char_u wfname[MAXPATHL];
Bram Moolenaarb765d632005-06-07 21:00:02 +00004378 char_u **innames;
4379 int incount;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004380 afffile_T *(afile[8]);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004381 int i;
4382 int len;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004383 struct stat st;
Bram Moolenaar8fef2ad2005-04-23 20:42:23 +00004384 int error = FALSE;
Bram Moolenaar51485f02005-06-04 21:55:20 +00004385 spellinfo_T spin;
4386
4387 vim_memset(&spin, 0, sizeof(spin));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004388 spin.si_verbose = !added_word;
Bram Moolenaarb765d632005-06-07 21:00:02 +00004389 spin.si_ascii = ascii;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004390 spin.si_followup = TRUE;
4391 spin.si_rem_accents = TRUE;
4392 ga_init2(&spin.si_rep, (int)sizeof(fromto_T), 20);
4393 ga_init2(&spin.si_sal, (int)sizeof(fromto_T), 20);
4394 ga_init2(&spin.si_map, (int)sizeof(char_u), 100);
Bram Moolenaar1d73c882005-06-19 22:48:47 +00004395 ga_init2(&spin.si_prefcond, (int)sizeof(char_u *), 50);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004396
Bram Moolenaarb765d632005-06-07 21:00:02 +00004397 /* default: fnames[0] is output file, following are input files */
4398 innames = &fnames[1];
4399 incount = fcount - 1;
4400
4401 if (fcount >= 1)
Bram Moolenaar5482f332005-04-17 20:18:43 +00004402 {
Bram Moolenaarb765d632005-06-07 21:00:02 +00004403 len = STRLEN(fnames[0]);
4404 if (fcount == 1 && len > 4 && STRCMP(fnames[0] + len - 4, ".add") == 0)
4405 {
4406 /* For ":mkspell path/en.latin1.add" output file is
4407 * "path/en.latin1.add.spl". */
4408 innames = &fnames[0];
4409 incount = 1;
4410 vim_snprintf((char *)wfname, sizeof(wfname), "%s.spl", fnames[0]);
4411 }
4412 else if (len > 4 && STRCMP(fnames[0] + len - 4, ".spl") == 0)
4413 {
4414 /* Name ends in ".spl", use as the file name. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004415 vim_strncpy(wfname, fnames[0], sizeof(wfname) - 1);
Bram Moolenaarb765d632005-06-07 21:00:02 +00004416 }
4417 else
4418 /* Name should be language, make the file name from it. */
4419 vim_snprintf((char *)wfname, sizeof(wfname), "%s.%s.spl", fnames[0],
4420 spin.si_ascii ? (char_u *)"ascii" : spell_enc());
4421
4422 /* Check for .ascii.spl. */
4423 if (strstr((char *)gettail(wfname), ".ascii.") != NULL)
4424 spin.si_ascii = TRUE;
4425
4426 /* Check for .add.spl. */
4427 if (strstr((char *)gettail(wfname), ".add.") != NULL)
4428 spin.si_add = TRUE;
Bram Moolenaar5482f332005-04-17 20:18:43 +00004429 }
4430
Bram Moolenaarb765d632005-06-07 21:00:02 +00004431 if (incount <= 0)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004432 EMSG(_(e_invarg)); /* need at least output and input names */
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00004433 else if (vim_strchr(gettail(wfname), '_') != NULL)
4434 EMSG(_("E751: Output file name must not have region name"));
Bram Moolenaarb765d632005-06-07 21:00:02 +00004435 else if (incount > 8)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004436 EMSG(_("E754: Only up to 8 regions supported"));
4437 else
4438 {
4439 /* Check for overwriting before doing things that may take a lot of
4440 * time. */
Bram Moolenaarb765d632005-06-07 21:00:02 +00004441 if (!overwrite && mch_stat((char *)wfname, &st) >= 0)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004442 {
4443 EMSG(_(e_exists));
Bram Moolenaarb765d632005-06-07 21:00:02 +00004444 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004445 }
Bram Moolenaarb765d632005-06-07 21:00:02 +00004446 if (mch_isdir(wfname))
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004447 {
Bram Moolenaarb765d632005-06-07 21:00:02 +00004448 EMSG2(_(e_isadir2), wfname);
4449 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004450 }
4451
4452 /*
4453 * Init the aff and dic pointers.
4454 * Get the region names if there are more than 2 arguments.
4455 */
Bram Moolenaarb765d632005-06-07 21:00:02 +00004456 for (i = 0; i < incount; ++i)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004457 {
Bram Moolenaarb765d632005-06-07 21:00:02 +00004458 afile[i] = NULL;
Bram Moolenaar51485f02005-06-04 21:55:20 +00004459
Bram Moolenaar3982c542005-06-08 21:56:31 +00004460 if (incount > 1)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004461 {
Bram Moolenaarb765d632005-06-07 21:00:02 +00004462 len = STRLEN(innames[i]);
4463 if (STRLEN(gettail(innames[i])) < 5
4464 || innames[i][len - 3] != '_')
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004465 {
Bram Moolenaarb765d632005-06-07 21:00:02 +00004466 EMSG2(_("E755: Invalid region in %s"), innames[i]);
4467 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004468 }
Bram Moolenaar3982c542005-06-08 21:56:31 +00004469 spin.si_region_name[i * 2] = TOLOWER_ASC(innames[i][len - 2]);
4470 spin.si_region_name[i * 2 + 1] =
4471 TOLOWER_ASC(innames[i][len - 1]);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004472 }
4473 }
Bram Moolenaar3982c542005-06-08 21:56:31 +00004474 spin.si_region_count = incount;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004475
Bram Moolenaar51485f02005-06-04 21:55:20 +00004476 spin.si_foldroot = wordtree_alloc(&spin.si_blocks);
4477 spin.si_keeproot = wordtree_alloc(&spin.si_blocks);
Bram Moolenaar1d73c882005-06-19 22:48:47 +00004478 spin.si_prefroot = wordtree_alloc(&spin.si_blocks);
4479 if (spin.si_foldroot == NULL
4480 || spin.si_keeproot == NULL
4481 || spin.si_prefroot == NULL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00004482 {
4483 error = TRUE;
Bram Moolenaarb765d632005-06-07 21:00:02 +00004484 return;
Bram Moolenaar51485f02005-06-04 21:55:20 +00004485 }
4486
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00004487 /* When not producing a .add.spl file clear the character table when
4488 * we encounter one in the .aff file. This means we dump the current
4489 * one in the .spl file if the .aff file doesn't define one. That's
4490 * better than guessing the contents, the table will match a
4491 * previously loaded spell file. */
4492 if (!spin.si_add)
4493 spin.si_clear_chartab = TRUE;
4494
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004495 /*
4496 * Read all the .aff and .dic files.
4497 * Text is converted to 'encoding'.
Bram Moolenaar51485f02005-06-04 21:55:20 +00004498 * Words are stored in the case-folded and keep-case trees.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004499 */
Bram Moolenaarb765d632005-06-07 21:00:02 +00004500 for (i = 0; i < incount && !error; ++i)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004501 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00004502 spin.si_conv.vc_type = CONV_NONE;
Bram Moolenaarb765d632005-06-07 21:00:02 +00004503 spin.si_region = 1 << i;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004504
Bram Moolenaarb765d632005-06-07 21:00:02 +00004505 vim_snprintf((char *)fname, sizeof(fname), "%s.aff", innames[i]);
Bram Moolenaar51485f02005-06-04 21:55:20 +00004506 if (mch_stat((char *)fname, &st) >= 0)
4507 {
4508 /* Read the .aff file. Will init "spin->si_conv" based on the
4509 * "SET" line. */
Bram Moolenaarb765d632005-06-07 21:00:02 +00004510 afile[i] = spell_read_aff(fname, &spin);
4511 if (afile[i] == NULL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00004512 error = TRUE;
4513 else
4514 {
4515 /* Read the .dic file and store the words in the trees. */
4516 vim_snprintf((char *)fname, sizeof(fname), "%s.dic",
Bram Moolenaarb765d632005-06-07 21:00:02 +00004517 innames[i]);
4518 if (spell_read_dic(fname, &spin, afile[i]) == FAIL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00004519 error = TRUE;
4520 }
4521 }
4522 else
4523 {
4524 /* No .aff file, try reading the file as a word list. Store
4525 * the words in the trees. */
Bram Moolenaarb765d632005-06-07 21:00:02 +00004526 if (spell_read_wordfile(innames[i], &spin) == FAIL)
Bram Moolenaar51485f02005-06-04 21:55:20 +00004527 error = TRUE;
4528 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004529
Bram Moolenaarb765d632005-06-07 21:00:02 +00004530#ifdef FEAT_MBYTE
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004531 /* Free any conversion stuff. */
Bram Moolenaar51485f02005-06-04 21:55:20 +00004532 convert_setup(&spin.si_conv, NULL, NULL);
Bram Moolenaarb765d632005-06-07 21:00:02 +00004533#endif
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004534 }
4535
Bram Moolenaar51485f02005-06-04 21:55:20 +00004536 if (!error)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004537 {
Bram Moolenaar51485f02005-06-04 21:55:20 +00004538 /*
4539 * Remove the dummy NUL from the start of the tree root.
4540 */
4541 spin.si_foldroot = spin.si_foldroot->wn_sibling;
4542 spin.si_keeproot = spin.si_keeproot->wn_sibling;
Bram Moolenaar1d73c882005-06-19 22:48:47 +00004543 spin.si_prefroot = spin.si_prefroot->wn_sibling;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004544
4545 /*
Bram Moolenaar51485f02005-06-04 21:55:20 +00004546 * Combine tails in the tree.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004547 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004548 if (!added_word || p_verbose > 2)
Bram Moolenaarb765d632005-06-07 21:00:02 +00004549 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004550 if (added_word)
Bram Moolenaarb765d632005-06-07 21:00:02 +00004551 verbose_enter();
4552 MSG(_("Compressing word tree..."));
4553 out_flush();
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004554 if (added_word)
Bram Moolenaarb765d632005-06-07 21:00:02 +00004555 verbose_leave();
4556 }
4557 wordtree_compress(spin.si_foldroot, &spin);
4558 wordtree_compress(spin.si_keeproot, &spin);
Bram Moolenaar1d73c882005-06-19 22:48:47 +00004559 wordtree_compress(spin.si_prefroot, &spin);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004560 }
4561
Bram Moolenaar51485f02005-06-04 21:55:20 +00004562 if (!error)
4563 {
4564 /*
4565 * Write the info in the spell file.
4566 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004567 if (!added_word || p_verbose > 2)
Bram Moolenaarb765d632005-06-07 21:00:02 +00004568 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004569 if (added_word)
Bram Moolenaarb765d632005-06-07 21:00:02 +00004570 verbose_enter();
4571 smsg((char_u *)_("Writing spell file %s..."), wfname);
4572 out_flush();
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004573 if (added_word)
Bram Moolenaarb765d632005-06-07 21:00:02 +00004574 verbose_leave();
4575 }
Bram Moolenaar50cde822005-06-05 21:54:54 +00004576
Bram Moolenaar3982c542005-06-08 21:56:31 +00004577 write_vim_spell(wfname, &spin);
Bram Moolenaarb765d632005-06-07 21:00:02 +00004578
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004579 if (!added_word || p_verbose > 2)
Bram Moolenaarb765d632005-06-07 21:00:02 +00004580 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004581 if (added_word)
Bram Moolenaarb765d632005-06-07 21:00:02 +00004582 verbose_enter();
4583 MSG(_("Done!"));
4584 smsg((char_u *)_("Estimated runtime memory use: %d bytes"),
Bram Moolenaar50cde822005-06-05 21:54:54 +00004585 spin.si_memtot);
Bram Moolenaarb765d632005-06-07 21:00:02 +00004586 out_flush();
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004587 if (added_word)
Bram Moolenaarb765d632005-06-07 21:00:02 +00004588 verbose_leave();
4589 }
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004590
Bram Moolenaarb765d632005-06-07 21:00:02 +00004591 /* If the file is loaded need to reload it. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004592 spell_reload_one(wfname, added_word);
Bram Moolenaar51485f02005-06-04 21:55:20 +00004593 }
4594
4595 /* Free the allocated memory. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004596 ga_clear(&spin.si_rep);
4597 ga_clear(&spin.si_sal);
4598 ga_clear(&spin.si_map);
Bram Moolenaar1d73c882005-06-19 22:48:47 +00004599 ga_clear(&spin.si_prefcond);
Bram Moolenaar51485f02005-06-04 21:55:20 +00004600
4601 /* Free the .aff file structures. */
Bram Moolenaarb765d632005-06-07 21:00:02 +00004602 for (i = 0; i < incount; ++i)
4603 if (afile[i] != NULL)
4604 spell_free_aff(afile[i]);
Bram Moolenaar1d73c882005-06-19 22:48:47 +00004605
4606 /* Free all the bits and pieces at once. */
4607 free_blocks(spin.si_blocks);
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004608 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004609}
4610
Bram Moolenaarb765d632005-06-07 21:00:02 +00004611
4612/*
4613 * ":spellgood {word}"
4614 * ":spellwrong {word}"
4615 */
4616 void
4617ex_spell(eap)
4618 exarg_T *eap;
4619{
4620 spell_add_word(eap->arg, STRLEN(eap->arg), eap->cmdidx == CMD_spellwrong);
4621}
4622
4623/*
4624 * Add "word[len]" to 'spellfile' as a good or bad word.
4625 */
4626 void
4627spell_add_word(word, len, bad)
4628 char_u *word;
4629 int len;
4630 int bad;
4631{
4632 FILE *fd;
4633 buf_T *buf;
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00004634 int new_spf = FALSE;
4635 struct stat st;
Bram Moolenaarb765d632005-06-07 21:00:02 +00004636
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00004637 /* If 'spellfile' isn't set figure out a good default value. */
Bram Moolenaarb765d632005-06-07 21:00:02 +00004638 if (*curbuf->b_p_spf == NUL)
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00004639 {
Bram Moolenaarb765d632005-06-07 21:00:02 +00004640 init_spellfile();
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00004641 new_spf = TRUE;
4642 }
4643
Bram Moolenaarb765d632005-06-07 21:00:02 +00004644 if (*curbuf->b_p_spf == NUL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004645 EMSG(_("E764: 'spellfile' is not set"));
Bram Moolenaarb765d632005-06-07 21:00:02 +00004646 else
4647 {
4648 /* Check that the user isn't editing the .add file somewhere. */
4649 buf = buflist_findname_exp(curbuf->b_p_spf);
4650 if (buf != NULL && buf->b_ml.ml_mfp == NULL)
4651 buf = NULL;
4652 if (buf != NULL && bufIsChanged(buf))
4653 EMSG(_(e_bufloaded));
4654 else
4655 {
4656 fd = mch_fopen((char *)curbuf->b_p_spf, "a");
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00004657 if (fd == NULL && new_spf)
4658 {
4659 /* We just initialized the 'spellfile' option and can't open
4660 * the file. We may need to create the "spell" directory
4661 * first. We already checked the runtime directory is
4662 * writable in init_spellfile(). */
4663 STRCPY(NameBuff, curbuf->b_p_spf);
4664 *gettail_sep(NameBuff) = NUL;
4665 if (mch_stat((char *)NameBuff, &st) < 0)
4666 {
4667 /* The directory doesn't exist. Try creating it and
4668 * opening the file again. */
4669 vim_mkdir(NameBuff, 0755);
4670 fd = mch_fopen((char *)curbuf->b_p_spf, "a");
4671 }
4672 }
4673
Bram Moolenaarb765d632005-06-07 21:00:02 +00004674 if (fd == NULL)
4675 EMSG2(_(e_notopen), curbuf->b_p_spf);
4676 else
4677 {
4678 if (bad)
4679 fprintf(fd, "/!%.*s\n", len, word);
4680 else
4681 fprintf(fd, "%.*s\n", len, word);
4682 fclose(fd);
4683
4684 /* Update the .add.spl file. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004685 mkspell(1, &curbuf->b_p_spf, FALSE, TRUE, TRUE);
Bram Moolenaarb765d632005-06-07 21:00:02 +00004686
4687 /* If the .add file is edited somewhere, reload it. */
4688 if (buf != NULL)
4689 buf_reload(buf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004690
4691 redraw_all_later(NOT_VALID);
Bram Moolenaarb765d632005-06-07 21:00:02 +00004692 }
4693 }
4694 }
4695}
4696
4697/*
4698 * Initialize 'spellfile' for the current buffer.
4699 */
4700 static void
4701init_spellfile()
4702{
4703 char_u buf[MAXPATHL];
4704 int l;
4705 slang_T *sl;
4706 char_u *rtp;
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00004707 char_u *lend;
Bram Moolenaarb765d632005-06-07 21:00:02 +00004708
4709 if (*curbuf->b_p_spl != NUL && curbuf->b_langp.ga_len > 0)
4710 {
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00004711 /* Find the end of the language name. Exclude the region. */
4712 for (lend = curbuf->b_p_spl; *lend != NUL
4713 && vim_strchr((char_u *)",._", *lend) == NULL; ++lend)
4714 ;
4715
4716 /* Loop over all entries in 'runtimepath'. Use the first one where we
4717 * are allowed to write. */
Bram Moolenaarb765d632005-06-07 21:00:02 +00004718 rtp = p_rtp;
4719 while (*rtp != NUL)
4720 {
4721 /* Copy the path from 'runtimepath' to buf[]. */
4722 copy_option_part(&rtp, buf, MAXPATHL, ",");
4723 if (filewritable(buf) == 2)
4724 {
Bram Moolenaar3982c542005-06-08 21:56:31 +00004725 /* Use the first language name from 'spelllang' and the
4726 * encoding used in the first loaded .spl file. */
Bram Moolenaarb765d632005-06-07 21:00:02 +00004727 sl = LANGP_ENTRY(curbuf->b_langp, 0)->lp_slang;
4728 l = STRLEN(buf);
4729 vim_snprintf((char *)buf + l, MAXPATHL - l,
Bram Moolenaar3982c542005-06-08 21:56:31 +00004730 "/spell/%.*s.%s.add",
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00004731 (int)(lend - curbuf->b_p_spl), curbuf->b_p_spl,
Bram Moolenaarb765d632005-06-07 21:00:02 +00004732 strstr((char *)gettail(sl->sl_fname), ".ascii.") != NULL
4733 ? (char_u *)"ascii" : spell_enc());
4734 set_option_value((char_u *)"spellfile", 0L, buf, OPT_LOCAL);
4735 break;
4736 }
4737 }
4738 }
4739}
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00004740
Bram Moolenaar51485f02005-06-04 21:55:20 +00004741
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004742/*
4743 * Init the chartab used for spelling for ASCII.
4744 * EBCDIC is not supported!
4745 */
4746 static void
4747clear_spell_chartab(sp)
4748 spelltab_T *sp;
4749{
Bram Moolenaar9f30f502005-06-14 22:01:04 +00004750 int i;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004751
4752 /* Init everything to FALSE. */
4753 vim_memset(sp->st_isw, FALSE, sizeof(sp->st_isw));
4754 vim_memset(sp->st_isu, FALSE, sizeof(sp->st_isu));
4755 for (i = 0; i < 256; ++i)
Bram Moolenaar9f30f502005-06-14 22:01:04 +00004756 {
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004757 sp->st_fold[i] = i;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00004758 sp->st_upper[i] = i;
4759 }
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004760
4761 /* We include digits. A word shouldn't start with a digit, but handling
4762 * that is done separately. */
4763 for (i = '0'; i <= '9'; ++i)
4764 sp->st_isw[i] = TRUE;
4765 for (i = 'A'; i <= 'Z'; ++i)
4766 {
4767 sp->st_isw[i] = TRUE;
4768 sp->st_isu[i] = TRUE;
4769 sp->st_fold[i] = i + 0x20;
4770 }
4771 for (i = 'a'; i <= 'z'; ++i)
Bram Moolenaar9f30f502005-06-14 22:01:04 +00004772 {
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004773 sp->st_isw[i] = TRUE;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00004774 sp->st_upper[i] = i - 0x20;
4775 }
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004776}
4777
4778/*
4779 * Init the chartab used for spelling. Only depends on 'encoding'.
4780 * Called once while starting up and when 'encoding' changes.
4781 * The default is to use isalpha(), but the spell file should define the word
4782 * characters to make it possible that 'encoding' differs from the current
4783 * locale.
4784 */
4785 void
4786init_spell_chartab()
4787{
4788 int i;
4789
4790 did_set_spelltab = FALSE;
4791 clear_spell_chartab(&spelltab);
4792
4793#ifdef FEAT_MBYTE
4794 if (enc_dbcs)
4795 {
4796 /* DBCS: assume double-wide characters are word characters. */
4797 for (i = 128; i <= 255; ++i)
4798 if (MB_BYTE2LEN(i) == 2)
4799 spelltab.st_isw[i] = TRUE;
4800 }
Bram Moolenaar9f30f502005-06-14 22:01:04 +00004801 else if (enc_utf8)
4802 {
4803 for (i = 128; i < 256; ++i)
4804 {
4805 spelltab.st_isu[i] = utf_isupper(i);
4806 spelltab.st_isw[i] = spelltab.st_isu[i] || utf_islower(i);
4807 spelltab.st_fold[i] = utf_fold(i);
4808 spelltab.st_upper[i] = utf_toupper(i);
4809 }
4810 }
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004811 else
4812#endif
4813 {
Bram Moolenaar9f30f502005-06-14 22:01:04 +00004814 /* Rough guess: use locale-dependent library functions. */
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004815 for (i = 128; i < 256; ++i)
4816 {
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004817 if (MB_ISUPPER(i))
4818 {
Bram Moolenaar9f30f502005-06-14 22:01:04 +00004819 spelltab.st_isw[i] = TRUE;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004820 spelltab.st_isu[i] = TRUE;
4821 spelltab.st_fold[i] = MB_TOLOWER(i);
4822 }
Bram Moolenaar9f30f502005-06-14 22:01:04 +00004823 else if (MB_ISLOWER(i))
4824 {
4825 spelltab.st_isw[i] = TRUE;
4826 spelltab.st_upper[i] = MB_TOUPPER(i);
4827 }
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004828 }
4829 }
4830}
4831
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004832static char *e_affform = N_("E761: Format error in affix file FOL, LOW or UPP");
4833static char *e_affrange = N_("E762: Character in FOL, LOW or UPP is out of range");
4834
4835/*
4836 * Set the spell character tables from strings in the affix file.
4837 */
4838 static int
4839set_spell_chartab(fol, low, upp)
4840 char_u *fol;
4841 char_u *low;
4842 char_u *upp;
4843{
4844 /* We build the new tables here first, so that we can compare with the
4845 * previous one. */
4846 spelltab_T new_st;
4847 char_u *pf = fol, *pl = low, *pu = upp;
4848 int f, l, u;
4849
4850 clear_spell_chartab(&new_st);
4851
4852 while (*pf != NUL)
4853 {
4854 if (*pl == NUL || *pu == NUL)
4855 {
4856 EMSG(_(e_affform));
4857 return FAIL;
4858 }
4859#ifdef FEAT_MBYTE
4860 f = mb_ptr2char_adv(&pf);
4861 l = mb_ptr2char_adv(&pl);
4862 u = mb_ptr2char_adv(&pu);
4863#else
4864 f = *pf++;
4865 l = *pl++;
4866 u = *pu++;
4867#endif
4868 /* Every character that appears is a word character. */
4869 if (f < 256)
4870 new_st.st_isw[f] = TRUE;
4871 if (l < 256)
4872 new_st.st_isw[l] = TRUE;
4873 if (u < 256)
4874 new_st.st_isw[u] = TRUE;
4875
4876 /* if "LOW" and "FOL" are not the same the "LOW" char needs
4877 * case-folding */
4878 if (l < 256 && l != f)
4879 {
4880 if (f >= 256)
4881 {
4882 EMSG(_(e_affrange));
4883 return FAIL;
4884 }
4885 new_st.st_fold[l] = f;
4886 }
4887
4888 /* if "UPP" and "FOL" are not the same the "UPP" char needs
Bram Moolenaar9f30f502005-06-14 22:01:04 +00004889 * case-folding, it's upper case and the "UPP" is the upper case of
4890 * "FOL" . */
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004891 if (u < 256 && u != f)
4892 {
4893 if (f >= 256)
4894 {
4895 EMSG(_(e_affrange));
4896 return FAIL;
4897 }
4898 new_st.st_fold[u] = f;
4899 new_st.st_isu[u] = TRUE;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00004900 new_st.st_upper[f] = u;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004901 }
4902 }
4903
4904 if (*pl != NUL || *pu != NUL)
4905 {
4906 EMSG(_(e_affform));
4907 return FAIL;
4908 }
4909
4910 return set_spell_finish(&new_st);
4911}
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004912
4913/*
4914 * Set the spell character tables from strings in the .spl file.
4915 */
4916 static int
4917set_spell_charflags(flags, cnt, upp)
4918 char_u *flags;
4919 int cnt;
4920 char_u *upp;
4921{
4922 /* We build the new tables here first, so that we can compare with the
4923 * previous one. */
4924 spelltab_T new_st;
4925 int i;
4926 char_u *p = upp;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00004927 int c;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004928
4929 clear_spell_chartab(&new_st);
4930
4931 for (i = 0; i < cnt; ++i)
4932 {
Bram Moolenaar9f30f502005-06-14 22:01:04 +00004933 new_st.st_isw[i + 128] = (flags[i] & CF_WORD) != 0;
4934 new_st.st_isu[i + 128] = (flags[i] & CF_UPPER) != 0;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004935
4936 if (*p == NUL)
4937 return FAIL;
4938#ifdef FEAT_MBYTE
Bram Moolenaar9f30f502005-06-14 22:01:04 +00004939 c = mb_ptr2char_adv(&p);
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004940#else
Bram Moolenaar9f30f502005-06-14 22:01:04 +00004941 c = *p++;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004942#endif
Bram Moolenaar9f30f502005-06-14 22:01:04 +00004943 new_st.st_fold[i + 128] = c;
4944 if (i + 128 != c && new_st.st_isu[i + 128] && c < 256)
4945 new_st.st_upper[c] = i + 128;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004946 }
4947
4948 return set_spell_finish(&new_st);
4949}
4950
4951 static int
4952set_spell_finish(new_st)
4953 spelltab_T *new_st;
4954{
4955 int i;
4956
4957 if (did_set_spelltab)
4958 {
4959 /* check that it's the same table */
4960 for (i = 0; i < 256; ++i)
4961 {
4962 if (spelltab.st_isw[i] != new_st->st_isw[i]
4963 || spelltab.st_isu[i] != new_st->st_isu[i]
Bram Moolenaar9f30f502005-06-14 22:01:04 +00004964 || spelltab.st_fold[i] != new_st->st_fold[i]
4965 || spelltab.st_upper[i] != new_st->st_upper[i])
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004966 {
4967 EMSG(_("E763: Word characters differ between spell files"));
4968 return FAIL;
4969 }
4970 }
4971 }
4972 else
4973 {
4974 /* copy the new spelltab into the one being used */
4975 spelltab = *new_st;
4976 did_set_spelltab = TRUE;
4977 }
4978
4979 return OK;
4980}
4981
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00004982/*
Bram Moolenaar1d73c882005-06-19 22:48:47 +00004983 * Write the table with prefix conditions to the .spl file.
4984 */
4985 static void
4986write_spell_prefcond(fd, gap)
4987 FILE *fd;
4988 garray_T *gap;
4989{
4990 int i;
4991 char_u *p;
4992 int len;
4993
4994 put_bytes(fd, (long_u)gap->ga_len, 2); /* <prefcondcnt> */
4995
4996 for (i = 0; i < gap->ga_len; ++i)
4997 {
4998 /* <prefcond> : <condlen> <condstr> */
4999 p = ((char_u **)gap->ga_data)[i];
5000 if (p == NULL)
5001 fputc(0, fd);
5002 else
5003 {
5004 len = STRLEN(p);
5005 fputc(len, fd);
5006 fwrite(p, (size_t)len, (size_t)1, fd);
5007 }
5008 }
5009}
5010
5011/*
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00005012 * Write the current tables into the .spl file.
5013 * This makes sure the same characters are recognized as word characters when
5014 * generating an when using a spell file.
5015 */
5016 static void
5017write_spell_chartab(fd)
5018 FILE *fd;
5019{
5020 char_u charbuf[256 * 4];
5021 int len = 0;
5022 int flags;
5023 int i;
5024
5025 fputc(128, fd); /* <charflagslen> */
5026 for (i = 128; i < 256; ++i)
5027 {
5028 flags = 0;
5029 if (spelltab.st_isw[i])
Bram Moolenaar9f30f502005-06-14 22:01:04 +00005030 flags |= CF_WORD;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00005031 if (spelltab.st_isu[i])
Bram Moolenaar9f30f502005-06-14 22:01:04 +00005032 flags |= CF_UPPER;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00005033 fputc(flags, fd); /* <charflags> */
5034
Bram Moolenaarb765d632005-06-07 21:00:02 +00005035#ifdef FEAT_MBYTE
5036 if (has_mbyte)
5037 len += mb_char2bytes(spelltab.st_fold[i], charbuf + len);
5038 else
5039#endif
5040 charbuf[len++] = spelltab.st_fold[i];
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00005041 }
5042
5043 put_bytes(fd, (long_u)len, 2); /* <fcharlen> */
5044 fwrite(charbuf, (size_t)len, (size_t)1, fd); /* <fchars> */
5045}
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00005046
5047/*
Bram Moolenaar9f30f502005-06-14 22:01:04 +00005048 * Case-fold "str[len]" into "buf[buflen]". The result is NUL terminated.
5049 * Uses the character definitions from the .spl file.
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00005050 * When using a multi-byte 'encoding' the length may change!
5051 * Returns FAIL when something wrong.
5052 */
5053 static int
Bram Moolenaar9f30f502005-06-14 22:01:04 +00005054spell_casefold(str, len, buf, buflen)
5055 char_u *str;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00005056 int len;
5057 char_u *buf;
5058 int buflen;
5059{
5060 int i;
5061
5062 if (len >= buflen)
5063 {
5064 buf[0] = NUL;
5065 return FAIL; /* result will not fit */
5066 }
5067
5068#ifdef FEAT_MBYTE
5069 if (has_mbyte)
5070 {
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00005071 int outi = 0;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00005072 char_u *p;
5073 int c;
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00005074
5075 /* Fold one character at a time. */
Bram Moolenaar9f30f502005-06-14 22:01:04 +00005076 for (p = str; p < str + len; )
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00005077 {
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00005078 if (outi + MB_MAXBYTES > buflen)
5079 {
5080 buf[outi] = NUL;
5081 return FAIL;
5082 }
Bram Moolenaar9f30f502005-06-14 22:01:04 +00005083 c = mb_ptr2char_adv(&p);
5084 outi += mb_char2bytes(SPELL_TOFOLD(c), buf + outi);
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00005085 }
5086 buf[outi] = NUL;
5087 }
5088 else
5089#endif
5090 {
5091 /* Be quick for non-multibyte encodings. */
5092 for (i = 0; i < len; ++i)
Bram Moolenaar9f30f502005-06-14 22:01:04 +00005093 buf[i] = spelltab.st_fold[str[i]];
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00005094 buf[i] = NUL;
5095 }
5096
5097 return OK;
5098}
5099
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005100/*
5101 * "z?": Find badly spelled word under or after the cursor.
5102 * Give suggestions for the properly spelled word.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005103 */
5104 void
5105spell_suggest()
5106{
5107 char_u *line;
5108 pos_T prev_cursor = curwin->w_cursor;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005109 char_u wcopy[MAXWLEN + 2];
5110 char_u *p;
5111 int i;
5112 int c;
5113 suginfo_T sug;
5114 suggest_T *stp;
5115
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005116 /* Find the start of the badly spelled word. */
Bram Moolenaar0c405862005-06-22 22:26:26 +00005117 if (spell_move_to(FORWARD, TRUE, TRUE) == FAIL
5118 || curwin->w_cursor.col > prev_cursor.col)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005119 {
Bram Moolenaar0c405862005-06-22 22:26:26 +00005120 if (!curwin->w_p_spell || *curbuf->b_p_spl == NUL)
5121 return;
5122
5123 /* No bad word or it starts after the cursor: use the word under the
5124 * cursor. */
5125 curwin->w_cursor = prev_cursor;
5126 line = ml_get_curline();
5127 p = line + curwin->w_cursor.col;
5128 /* Backup to before start of word. */
5129 while (p > line && SPELL_ISWORDP(p))
5130 mb_ptr_back(line, p);
5131 /* Forward to start of word. */
5132 while (!SPELL_ISWORDP(p))
5133 mb_ptr_adv(p);
5134
5135 if (!SPELL_ISWORDP(p)) /* No word found. */
5136 {
5137 beep_flush();
5138 return;
5139 }
5140 curwin->w_cursor.col = p - line;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005141 }
5142
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005143 /* Get the word and its length. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005144 line = ml_get_curline();
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005145
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005146 /* Get the list of suggestions */
5147 spell_find_suggest(line + curwin->w_cursor.col, &sug, (int)Rows - 2);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005148
5149 if (sug.su_ga.ga_len == 0)
5150 MSG(_("Sorry, no suggestions"));
5151 else
5152 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005153 /* List the suggestions. */
5154 msg_start();
5155 vim_snprintf((char *)IObuff, IOSIZE, _("Change \"%.*s\" to:"),
5156 sug.su_badlen, sug.su_badptr);
5157 msg_puts(IObuff);
5158 msg_clr_eos();
5159 msg_putchar('\n');
Bram Moolenaar0c405862005-06-22 22:26:26 +00005160
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005161 msg_scroll = TRUE;
5162 for (i = 0; i < sug.su_ga.ga_len; ++i)
5163 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005164 stp = &SUG(sug.su_ga, i);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005165
5166 /* The suggested word may replace only part of the bad word, add
5167 * the not replaced part. */
5168 STRCPY(wcopy, stp->st_word);
5169 if (sug.su_badlen > stp->st_orglen)
5170 vim_strncpy(wcopy + STRLEN(wcopy),
5171 sug.su_badptr + stp->st_orglen,
5172 sug.su_badlen - stp->st_orglen);
Bram Moolenaar0c405862005-06-22 22:26:26 +00005173 vim_snprintf((char *)IObuff, IOSIZE, _("%2d \"%s\""), i + 1, wcopy);
5174 msg_puts(IObuff);
5175
5176 /* The word may replace more than "su_badlen". */
5177 if (sug.su_badlen < stp->st_orglen)
5178 {
5179 vim_snprintf((char *)IObuff, IOSIZE, _(" < \"%.*s\""),
5180 stp->st_orglen, sug.su_badptr);
5181 msg_puts(IObuff);
5182 }
5183
Bram Moolenaar9f30f502005-06-14 22:01:04 +00005184 if (p_verbose > 0)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005185 {
Bram Moolenaar0c405862005-06-22 22:26:26 +00005186 /* Add the score. */
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00005187 if (sps_flags & (SPS_DOUBLE | SPS_BEST))
Bram Moolenaar0c405862005-06-22 22:26:26 +00005188 vim_snprintf((char *)IObuff, IOSIZE, _(" (%s%d - %d)"),
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005189 stp->st_salscore ? "s " : "",
5190 stp->st_score, stp->st_altscore);
5191 else
Bram Moolenaar0c405862005-06-22 22:26:26 +00005192 vim_snprintf((char *)IObuff, IOSIZE, _(" (%d)"),
5193 stp->st_score);
5194 msg_advance(30);
5195 msg_puts(IObuff);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005196 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005197 lines_left = 3; /* avoid more prompt */
5198 msg_putchar('\n');
5199 }
5200
5201 /* Ask for choice. */
5202 i = prompt_for_number();
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005203 if (i > 0 && i <= sug.su_ga.ga_len && u_save_cursor() == OK)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005204 {
5205 /* Replace the word. */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005206 stp = &SUG(sug.su_ga, i - 1);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005207 p = alloc(STRLEN(line) - stp->st_orglen + STRLEN(stp->st_word) + 1);
5208 if (p != NULL)
5209 {
5210 c = sug.su_badptr - line;
5211 mch_memmove(p, line, c);
5212 STRCPY(p + c, stp->st_word);
5213 STRCAT(p, sug.su_badptr + stp->st_orglen);
5214 ml_replace(curwin->w_cursor.lnum, p, FALSE);
5215 curwin->w_cursor.col = c;
5216 changed_bytes(curwin->w_cursor.lnum, c);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005217
5218 /* For redo we use a change-word command. */
5219 ResetRedobuff();
5220 AppendToRedobuff((char_u *)"ciw");
5221 AppendToRedobuff(stp->st_word);
5222 AppendCharToRedobuff(ESC);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005223 }
5224 }
5225 else
5226 curwin->w_cursor = prev_cursor;
5227 }
5228
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005229 spell_find_cleanup(&sug);
5230}
5231
5232/*
5233 * Find spell suggestions for "word". Return them in the growarray "*gap" as
5234 * a list of allocated strings.
5235 */
5236 void
5237spell_suggest_list(gap, word, maxcount)
5238 garray_T *gap;
5239 char_u *word;
5240 int maxcount; /* maximum nr of suggestions */
5241{
5242 suginfo_T sug;
5243 int i;
5244 suggest_T *stp;
5245 char_u *wcopy;
5246
5247 spell_find_suggest(word, &sug, maxcount);
5248
5249 /* Make room in "gap". */
5250 ga_init2(gap, sizeof(char_u *), sug.su_ga.ga_len + 1);
5251 if (ga_grow(gap, sug.su_ga.ga_len) == FAIL)
5252 return;
5253
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005254 for (i = 0; i < sug.su_ga.ga_len; ++i)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005255 {
5256 stp = &SUG(sug.su_ga, i);
5257
5258 /* The suggested word may replace only part of "word", add the not
5259 * replaced part. */
5260 wcopy = alloc(STRLEN(stp->st_word)
5261 + STRLEN(sug.su_badptr + stp->st_orglen) + 1);
5262 if (wcopy == NULL)
5263 break;
5264 STRCPY(wcopy, stp->st_word);
5265 STRCAT(wcopy, sug.su_badptr + stp->st_orglen);
5266 ((char_u **)gap->ga_data)[gap->ga_len++] = wcopy;
5267 }
5268
5269 spell_find_cleanup(&sug);
5270}
5271
5272/*
5273 * Find spell suggestions for the word at the start of "badptr".
5274 * Return the suggestions in "su->su_ga".
5275 * The maximum number of suggestions is "maxcount".
5276 * Note: does use info for the current window.
5277 * This is based on the mechanisms of Aspell, but completely reimplemented.
5278 */
5279 static void
5280spell_find_suggest(badptr, su, maxcount)
5281 char_u *badptr;
5282 suginfo_T *su;
5283 int maxcount;
5284{
5285 int attr;
5286
5287 /*
5288 * Set the info in "*su".
5289 */
5290 vim_memset(su, 0, sizeof(suginfo_T));
5291 ga_init2(&su->su_ga, (int)sizeof(suggest_T), 10);
5292 ga_init2(&su->su_sga, (int)sizeof(suggest_T), 10);
5293 hash_init(&su->su_banned);
5294
5295 su->su_badptr = badptr;
5296 su->su_badlen = spell_check(curwin, su->su_badptr, &attr);
5297 su->su_maxcount = maxcount;
5298
5299 if (su->su_badlen >= MAXWLEN)
5300 su->su_badlen = MAXWLEN - 1; /* just in case */
5301 vim_strncpy(su->su_badword, su->su_badptr, su->su_badlen);
5302 (void)spell_casefold(su->su_badptr, su->su_badlen,
5303 su->su_fbadword, MAXWLEN);
Bram Moolenaar0c405862005-06-22 22:26:26 +00005304 /* get caps flags for bad word */
5305 su->su_badflags = captype(su->su_badptr, su->su_badptr + su->su_badlen);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005306
5307 /* Ban the bad word itself. It may appear in another region. */
5308 add_banned(su, su->su_badword);
5309
5310 /*
Bram Moolenaar0c405862005-06-22 22:26:26 +00005311 * 1. Try special cases, such as repeating a word: "the the" -> "the".
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005312 *
5313 * Set a maximum score to limit the combination of operations that is
5314 * tried.
5315 */
5316 su->su_maxscore = SCORE_MAXINIT;
Bram Moolenaar0c405862005-06-22 22:26:26 +00005317 suggest_try_special(su);
5318
5319 /*
5320 * 2. Try inserting/deleting/swapping/changing a letter, use REP entries
5321 * from the .aff file and inserting a space (split the word).
5322 */
5323 suggest_try_change(su);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005324
5325 /* For the resulting top-scorers compute the sound-a-like score. */
5326 if (sps_flags & SPS_DOUBLE)
5327 score_comp_sal(su);
5328
5329 /*
Bram Moolenaar0c405862005-06-22 22:26:26 +00005330 * 3. Try finding sound-a-like words.
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005331 *
5332 * Only do this when we don't have a lot of suggestions yet, because it's
5333 * very slow and often doesn't find new suggestions.
5334 */
5335 if ((sps_flags & SPS_DOUBLE)
5336 || (!(sps_flags & SPS_FAST)
5337 && su->su_ga.ga_len < SUG_CLEAN_COUNT(su)))
5338 {
5339 /* Allow a higher score now. */
5340 su->su_maxscore = SCORE_MAXMAX;
Bram Moolenaar0c405862005-06-22 22:26:26 +00005341 suggest_try_soundalike(su);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005342 }
5343
5344 /* When CTRL-C was hit while searching do show the results. */
5345 ui_breakcheck();
5346 if (got_int)
5347 {
5348 (void)vgetc();
5349 got_int = FALSE;
5350 }
5351
5352 if (sps_flags & SPS_DOUBLE)
5353 {
5354 /* Combine the two list of suggestions. */
5355 score_combine(su);
5356 }
5357 else if (su->su_ga.ga_len != 0)
5358 {
5359 if (sps_flags & SPS_BEST)
5360 /* Adjust the word score for how it sounds like. */
5361 rescore_suggestions(su);
5362
5363 /* Sort the suggestions and truncate at "maxcount". */
5364 (void)cleanup_suggestions(&su->su_ga, su->su_maxscore, maxcount);
5365 }
5366}
5367
5368/*
5369 * Free the info put in "*su" by spell_find_suggest().
5370 */
5371 static void
5372spell_find_cleanup(su)
5373 suginfo_T *su;
5374{
5375 int i;
5376
5377 /* Free the suggestions. */
5378 for (i = 0; i < su->su_ga.ga_len; ++i)
5379 vim_free(SUG(su->su_ga, i).st_word);
5380 ga_clear(&su->su_ga);
5381 for (i = 0; i < su->su_sga.ga_len; ++i)
5382 vim_free(SUG(su->su_sga, i).st_word);
5383 ga_clear(&su->su_sga);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005384
5385 /* Free the banned words. */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005386 free_banned(su);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005387}
5388
5389/*
Bram Moolenaar9f30f502005-06-14 22:01:04 +00005390 * Make a copy of "word", with the first letter upper or lower cased, to
5391 * "wcopy[MAXWLEN]". "word" must not be empty.
5392 * The result is NUL terminated.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005393 */
5394 static void
Bram Moolenaar9f30f502005-06-14 22:01:04 +00005395onecap_copy(word, wcopy, upper)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005396 char_u *word;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005397 char_u *wcopy;
5398 int upper; /* TRUE: first letter made upper case */
5399{
5400 char_u *p;
5401 int c;
5402 int l;
5403
5404 p = word;
5405#ifdef FEAT_MBYTE
5406 if (has_mbyte)
5407 c = mb_ptr2char_adv(&p);
5408 else
5409#endif
5410 c = *p++;
5411 if (upper)
Bram Moolenaar9f30f502005-06-14 22:01:04 +00005412 c = SPELL_TOUPPER(c);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005413 else
Bram Moolenaar9f30f502005-06-14 22:01:04 +00005414 c = SPELL_TOFOLD(c);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005415#ifdef FEAT_MBYTE
5416 if (has_mbyte)
5417 l = mb_char2bytes(c, wcopy);
5418 else
5419#endif
5420 {
5421 l = 1;
5422 wcopy[0] = c;
5423 }
Bram Moolenaar9f30f502005-06-14 22:01:04 +00005424 vim_strncpy(wcopy + l, p, MAXWLEN - l);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005425}
5426
5427/*
Bram Moolenaar9f30f502005-06-14 22:01:04 +00005428 * Make a copy of "word" with all the letters upper cased into
5429 * "wcopy[MAXWLEN]". The result is NUL terminated.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005430 */
5431 static void
5432allcap_copy(word, wcopy)
5433 char_u *word;
5434 char_u *wcopy;
5435{
5436 char_u *s;
5437 char_u *d;
5438 int c;
5439
5440 d = wcopy;
5441 for (s = word; *s != NUL; )
5442 {
5443#ifdef FEAT_MBYTE
5444 if (has_mbyte)
5445 c = mb_ptr2char_adv(&s);
5446 else
5447#endif
5448 c = *s++;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00005449 c = SPELL_TOUPPER(c);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005450
5451#ifdef FEAT_MBYTE
5452 if (has_mbyte)
5453 {
5454 if (d - wcopy >= MAXWLEN - MB_MAXBYTES)
5455 break;
5456 d += mb_char2bytes(c, d);
5457 }
5458 else
5459#endif
5460 {
5461 if (d - wcopy >= MAXWLEN - 1)
5462 break;
5463 *d++ = c;
5464 }
5465 }
5466 *d = NUL;
5467}
5468
5469/*
Bram Moolenaar0c405862005-06-22 22:26:26 +00005470 * Try finding suggestions by recognizing specific situations.
5471 */
5472 static void
5473suggest_try_special(su)
5474 suginfo_T *su;
5475{
5476 char_u *p;
5477 int len;
5478 int c;
5479 char_u word[MAXWLEN];
5480
5481 /*
5482 * Recognize a word that is repeated: "the the".
5483 */
5484 p = skiptowhite(su->su_fbadword);
5485 len = p - su->su_fbadword;
5486 p = skipwhite(p);
5487 if (STRLEN(p) == len && STRNCMP(su->su_fbadword, p, len) == 0)
5488 {
5489 /* Include badflags: if the badword is onecap or allcap
5490 * use that for the goodword too: "The the" -> "The". */
5491 c = su->su_fbadword[len];
5492 su->su_fbadword[len] = NUL;
5493 make_case_word(su->su_fbadword, word, su->su_badflags);
5494 su->su_fbadword[len] = c;
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00005495 add_suggestion(su, &su->su_ga, word, su->su_badlen, SCORE_DEL, 0, TRUE);
Bram Moolenaar0c405862005-06-22 22:26:26 +00005496 }
5497}
5498
5499/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005500 * Try finding suggestions by adding/removing/swapping letters.
Bram Moolenaarea424162005-06-16 21:51:00 +00005501 *
5502 * This uses a state machine. At each node in the tree we try various
5503 * operations. When trying if an operation work "depth" is increased and the
5504 * stack[] is used to store info. This allows combinations, thus insert one
5505 * character, replace one and delete another. The number of changes is
5506 * limited by su->su_maxscore, checked in try_deeper().
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005507 */
5508 static void
Bram Moolenaar0c405862005-06-22 22:26:26 +00005509suggest_try_change(su)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005510 suginfo_T *su;
5511{
5512 char_u fword[MAXWLEN]; /* copy of the bad word, case-folded */
5513 char_u tword[MAXWLEN]; /* good word collected so far */
5514 trystate_T stack[MAXWLEN];
5515 char_u preword[MAXWLEN * 3]; /* word found with proper case (appended
5516 * to for word split) */
5517 char_u prewordlen = 0; /* length of word in "preword" */
5518 int splitoff = 0; /* index in tword after last split */
5519 trystate_T *sp;
5520 int newscore;
5521 langp_T *lp;
5522 char_u *byts;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00005523 idx_T *idxs;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005524 int depth;
Bram Moolenaarea424162005-06-16 21:51:00 +00005525 int c, c2, c3;
5526 int n = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005527 int flags;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005528 garray_T *gap;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00005529 idx_T arridx;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005530 int len;
5531 char_u *p;
5532 fromto_T *ftp;
Bram Moolenaarea424162005-06-16 21:51:00 +00005533 int fl = 0, tl;
Bram Moolenaar0c405862005-06-22 22:26:26 +00005534 int repextra = 0; /* extra bytes in fword[] from REP item */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005535
5536 /* We make a copy of the case-folded bad word, so that we can modify it
Bram Moolenaar0c405862005-06-22 22:26:26 +00005537 * to find matches (esp. REP items). Append some more text, changing
5538 * chars after the bad word may help. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005539 STRCPY(fword, su->su_fbadword);
Bram Moolenaar0c405862005-06-22 22:26:26 +00005540 n = STRLEN(fword);
5541 p = su->su_badptr + su->su_badlen;
5542 (void)spell_casefold(p, STRLEN(p), fword + n, MAXWLEN - n);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005543
5544 for (lp = LANGP_ENTRY(curwin->w_buffer->b_langp, 0);
5545 lp->lp_slang != NULL; ++lp)
5546 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005547 /*
5548 * Go through the whole case-fold tree, try changes at each node.
5549 * "tword[]" contains the word collected from nodes in the tree.
5550 * "fword[]" the word we are trying to match with (initially the bad
5551 * word).
5552 */
5553 byts = lp->lp_slang->sl_fbyts;
5554 idxs = lp->lp_slang->sl_fidxs;
5555
5556 depth = 0;
5557 stack[0].ts_state = STATE_START;
5558 stack[0].ts_score = 0;
5559 stack[0].ts_curi = 1;
5560 stack[0].ts_fidx = 0;
5561 stack[0].ts_fidxtry = 0;
5562 stack[0].ts_twordlen = 0;
5563 stack[0].ts_arridx = 0;
Bram Moolenaarea424162005-06-16 21:51:00 +00005564#ifdef FEAT_MBYTE
5565 stack[0].ts_tcharlen = 0;
5566#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005567
Bram Moolenaarea424162005-06-16 21:51:00 +00005568 /*
5569 * Loop to find all suggestions. At each round we either:
5570 * - For the current state try one operation, advance "ts_curi",
5571 * increase "depth".
5572 * - When a state is done go to the next, set "ts_state".
5573 * - When all states are tried decrease "depth".
5574 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005575 while (depth >= 0 && !got_int)
5576 {
5577 sp = &stack[depth];
5578 switch (sp->ts_state)
5579 {
5580 case STATE_START:
5581 /*
5582 * Start of node: Deal with NUL bytes, which means
5583 * tword[] may end here.
5584 */
5585 arridx = sp->ts_arridx; /* current node in the tree */
5586 len = byts[arridx]; /* bytes in this node */
5587 arridx += sp->ts_curi; /* index of current byte */
5588
Bram Moolenaar0c405862005-06-22 22:26:26 +00005589 if (sp->ts_curi > len || byts[arridx] != 0)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005590 {
5591 /* Past bytes in node and/or past NUL bytes. */
5592 sp->ts_state = STATE_ENDNUL;
5593 break;
5594 }
5595
5596 /*
5597 * End of word in tree.
5598 */
5599 ++sp->ts_curi; /* eat one NUL byte */
5600
Bram Moolenaar9f30f502005-06-14 22:01:04 +00005601 flags = (int)idxs[arridx];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005602
5603 /*
5604 * Form the word with proper case in preword.
5605 * If there is a word from a previous split, append.
5606 */
5607 tword[sp->ts_twordlen] = NUL;
5608 if (flags & WF_KEEPCAP)
5609 /* Must find the word in the keep-case tree. */
5610 find_keepcap_word(lp->lp_slang, tword + splitoff,
5611 preword + prewordlen);
5612 else
Bram Moolenaar0c405862005-06-22 22:26:26 +00005613 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005614 /* Include badflags: if the badword is onecap or allcap
Bram Moolenaar0c405862005-06-22 22:26:26 +00005615 * use that for the goodword too. But if the badword is
5616 * allcap and it's only one char long use onecap. */
5617 c = su->su_badflags;
5618 if ((c & WF_ALLCAP)
5619#ifdef FEAT_MBYTE
5620 && su->su_badlen == mb_ptr2len_check(su->su_badptr)
5621#else
5622 && su->su_badlen == 1
5623#endif
5624 )
5625 c = WF_ONECAP;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005626 make_case_word(tword + splitoff,
Bram Moolenaar0c405862005-06-22 22:26:26 +00005627 preword + prewordlen, flags | c);
5628 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005629
5630 /* Don't use a banned word. It may appear again as a good
5631 * word, thus remember it. */
5632 if (flags & WF_BANNED)
5633 {
5634 add_banned(su, preword + prewordlen);
5635 break;
5636 }
5637 if (was_banned(su, preword + prewordlen))
5638 break;
5639
5640 newscore = 0;
5641 if ((flags & WF_REGION)
5642 && (((unsigned)flags >> 8) & lp->lp_region) == 0)
5643 newscore += SCORE_REGION;
5644 if (flags & WF_RARE)
5645 newscore += SCORE_RARE;
5646
Bram Moolenaar0c405862005-06-22 22:26:26 +00005647 if (!spell_valid_case(su->su_badflags,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005648 captype(preword + prewordlen, NULL)))
5649 newscore += SCORE_ICASE;
5650
Bram Moolenaar0c405862005-06-22 22:26:26 +00005651 if ((fword[sp->ts_fidx] == NUL
5652 || !SPELL_ISWORDP(fword + sp->ts_fidx))
5653 && sp->ts_fidx >= sp->ts_fidxtry)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005654 {
5655 /* The badword also ends: add suggestions, */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00005656 add_suggestion(su, &su->su_ga, preword,
Bram Moolenaar0c405862005-06-22 22:26:26 +00005657 sp->ts_fidx - repextra,
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00005658 sp->ts_score + newscore, 0, FALSE);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005659 }
Bram Moolenaarea424162005-06-16 21:51:00 +00005660 else if (sp->ts_fidx >= sp->ts_fidxtry
5661#ifdef FEAT_MBYTE
5662 /* Don't split halfway a character. */
5663 && (!has_mbyte || sp->ts_tcharlen == 0)
5664#endif
5665 )
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005666 {
5667 /* The word in the tree ends but the badword
5668 * continues: try inserting a space and check that a valid
5669 * words starts at fword[sp->ts_fidx]. */
5670 if (try_deeper(su, stack, depth, newscore + SCORE_SPLIT))
5671 {
5672 /* Save things to be restored at STATE_SPLITUNDO. */
5673 sp->ts_save_prewordlen = prewordlen;
Bram Moolenaar0c405862005-06-22 22:26:26 +00005674 sp->ts_save_badflags = su->su_badflags;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005675 sp->ts_save_splitoff = splitoff;
5676
5677 /* Append a space to preword. */
5678 STRCAT(preword, " ");
5679 prewordlen = STRLEN(preword);
5680 splitoff = sp->ts_twordlen;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00005681#ifdef FEAT_MBYTE
5682 if (has_mbyte)
5683 {
5684 int i = 0;
5685
5686 /* Case-folding may change the number of bytes:
5687 * Count nr of chars in fword[sp->ts_fidx] and
5688 * advance that many chars in su->su_badptr. */
5689 for (p = fword; p < fword + sp->ts_fidx;
5690 mb_ptr_adv(p))
5691 ++i;
5692 for (p = su->su_badptr; i > 0; mb_ptr_adv(p))
5693 --i;
5694 }
5695 else
5696#endif
5697 p = su->su_badptr + sp->ts_fidx;
Bram Moolenaar0c405862005-06-22 22:26:26 +00005698 su->su_badflags = captype(p, su->su_badptr
5699 + su->su_badlen);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005700
5701 sp->ts_state = STATE_SPLITUNDO;
5702 ++depth;
5703 /* Restart at top of the tree. */
5704 stack[depth].ts_arridx = 0;
5705 }
5706 }
5707 break;
5708
5709 case STATE_SPLITUNDO:
Bram Moolenaar0c405862005-06-22 22:26:26 +00005710 /* Undo the changes done for word split. */
5711 su->su_badflags = sp->ts_save_badflags;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005712 splitoff = sp->ts_save_splitoff;
5713 prewordlen = sp->ts_save_prewordlen;
5714
5715 /* Continue looking for NUL bytes. */
5716 sp->ts_state = STATE_START;
5717 break;
5718
5719 case STATE_ENDNUL:
5720 /* Past the NUL bytes in the node. */
Bram Moolenaar0c405862005-06-22 22:26:26 +00005721 if (fword[sp->ts_fidx] == NUL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005722 {
5723 /* The badword ends, can't use the bytes in this node. */
5724 sp->ts_state = STATE_DEL;
5725 break;
5726 }
5727 sp->ts_state = STATE_PLAIN;
5728 /*FALLTHROUGH*/
5729
5730 case STATE_PLAIN:
5731 /*
5732 * Go over all possible bytes at this node, add each to
5733 * tword[] and use child node. "ts_curi" is the index.
5734 */
5735 arridx = sp->ts_arridx;
5736 if (sp->ts_curi > byts[arridx])
5737 {
5738 /* Done all bytes at this node, do next state. When still
5739 * at already changed bytes skip the other tricks. */
5740 if (sp->ts_fidx >= sp->ts_fidxtry)
5741 sp->ts_state = STATE_DEL;
5742 else
5743 sp->ts_state = STATE_FINAL;
5744 }
5745 else
5746 {
5747 arridx += sp->ts_curi++;
5748 c = byts[arridx];
5749
5750 /* Normal byte, go one level deeper. If it's not equal to
5751 * the byte in the bad word adjust the score. But don't
5752 * even try when the byte was already changed. */
Bram Moolenaarea424162005-06-16 21:51:00 +00005753 if (c == fword[sp->ts_fidx]
5754#ifdef FEAT_MBYTE
5755 || (sp->ts_tcharlen > 0
5756 && sp->ts_isdiff != DIFF_NONE)
Bram Moolenaar9f30f502005-06-14 22:01:04 +00005757#endif
Bram Moolenaarea424162005-06-16 21:51:00 +00005758 )
5759 newscore = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005760 else
5761 newscore = SCORE_SUBST;
5762 if ((newscore == 0 || sp->ts_fidx >= sp->ts_fidxtry)
5763 && try_deeper(su, stack, depth, newscore))
5764 {
5765 ++depth;
Bram Moolenaarea424162005-06-16 21:51:00 +00005766 sp = &stack[depth];
5767 ++sp->ts_fidx;
5768 tword[sp->ts_twordlen++] = c;
5769 sp->ts_arridx = idxs[arridx];
5770#ifdef FEAT_MBYTE
5771 if (newscore == SCORE_SUBST)
5772 sp->ts_isdiff = DIFF_YES;
5773 if (has_mbyte)
5774 {
5775 /* Multi-byte characters are a bit complicated to
5776 * handle: They differ when any of the bytes
5777 * differ and then their length may also differ. */
5778 if (sp->ts_tcharlen == 0)
5779 {
5780 /* First byte. */
5781 sp->ts_tcharidx = 0;
5782 sp->ts_tcharlen = MB_BYTE2LEN(c);
5783 sp->ts_fcharstart = sp->ts_fidx - 1;
5784 sp->ts_isdiff = (newscore != 0)
5785 ? DIFF_YES : DIFF_NONE;
5786 }
5787 else if (sp->ts_isdiff == DIFF_INSERT)
5788 /* When inserting trail bytes don't advance in
5789 * the bad word. */
5790 --sp->ts_fidx;
5791 if (++sp->ts_tcharidx == sp->ts_tcharlen)
5792 {
5793 /* Last byte of character. */
5794 if (sp->ts_isdiff == DIFF_YES)
5795 {
5796 /* Correct ts_fidx for the byte length of
5797 * the character (we didn't check that
5798 * before). */
5799 sp->ts_fidx = sp->ts_fcharstart
5800 + MB_BYTE2LEN(
5801 fword[sp->ts_fcharstart]);
5802
5803 /* For a similar character adjust score
5804 * from SCORE_SUBST to SCORE_SIMILAR. */
5805 if (lp->lp_slang->sl_has_map
5806 && similar_chars(lp->lp_slang,
5807 mb_ptr2char(tword
5808 + sp->ts_twordlen
5809 - sp->ts_tcharlen),
5810 mb_ptr2char(fword
5811 + sp->ts_fcharstart)))
5812 sp->ts_score -=
5813 SCORE_SUBST - SCORE_SIMILAR;
5814 }
5815
5816 /* Starting a new char, reset the length. */
5817 sp->ts_tcharlen = 0;
5818 }
5819 }
5820 else
5821#endif
5822 {
5823 /* If we found a similar char adjust the score.
5824 * We do this after calling try_deeper() because
5825 * it's slow. */
5826 if (newscore != 0
5827 && lp->lp_slang->sl_has_map
5828 && similar_chars(lp->lp_slang,
5829 c, fword[sp->ts_fidx - 1]))
5830 sp->ts_score -= SCORE_SUBST - SCORE_SIMILAR;
5831 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005832 }
5833 }
5834 break;
5835
5836 case STATE_DEL:
Bram Moolenaarea424162005-06-16 21:51:00 +00005837#ifdef FEAT_MBYTE
5838 /* When past the first byte of a multi-byte char don't try
5839 * delete/insert/swap a character. */
5840 if (has_mbyte && sp->ts_tcharlen > 0)
5841 {
5842 sp->ts_state = STATE_FINAL;
5843 break;
5844 }
5845#endif
5846 /*
5847 * Try skipping one character in the bad word (delete it).
5848 */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005849 sp->ts_state = STATE_INS;
5850 sp->ts_curi = 1;
5851 if (fword[sp->ts_fidx] != NUL
5852 && try_deeper(su, stack, depth, SCORE_DEL))
5853 {
5854 ++depth;
Bram Moolenaarea424162005-06-16 21:51:00 +00005855#ifdef FEAT_MBYTE
5856 if (has_mbyte)
5857 stack[depth].ts_fidx += MB_BYTE2LEN(fword[sp->ts_fidx]);
5858 else
5859#endif
5860 ++stack[depth].ts_fidx;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005861 break;
5862 }
5863 /*FALLTHROUGH*/
5864
5865 case STATE_INS:
Bram Moolenaarea424162005-06-16 21:51:00 +00005866 /* Insert one byte. Do this for each possible byte at this
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005867 * node. */
5868 n = sp->ts_arridx;
5869 if (sp->ts_curi > byts[n])
5870 {
5871 /* Done all bytes at this node, do next state. */
5872 sp->ts_state = STATE_SWAP;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005873 }
5874 else
5875 {
Bram Moolenaarea424162005-06-16 21:51:00 +00005876 /* Do one more byte at this node. Skip NUL bytes. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005877 n += sp->ts_curi++;
5878 c = byts[n];
5879 if (c != 0 && try_deeper(su, stack, depth, SCORE_INS))
5880 {
5881 ++depth;
Bram Moolenaarea424162005-06-16 21:51:00 +00005882 sp = &stack[depth];
5883 tword[sp->ts_twordlen++] = c;
5884 sp->ts_arridx = idxs[n];
5885#ifdef FEAT_MBYTE
5886 if (has_mbyte)
5887 {
5888 fl = MB_BYTE2LEN(c);
5889 if (fl > 1)
5890 {
5891 /* There are following bytes for the same
5892 * character. We must find all bytes before
5893 * trying delete/insert/swap/etc. */
5894 sp->ts_tcharlen = fl;
5895 sp->ts_tcharidx = 1;
5896 sp->ts_isdiff = DIFF_INSERT;
5897 }
5898 }
5899#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005900 }
5901 }
5902 break;
5903
5904 case STATE_SWAP:
Bram Moolenaarea424162005-06-16 21:51:00 +00005905 /*
5906 * Swap two bytes in the bad word: "12" -> "21".
5907 * We change "fword" here, it's changed back afterwards.
5908 */
5909 p = fword + sp->ts_fidx;
5910 c = *p;
5911 if (c == NUL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005912 {
Bram Moolenaarea424162005-06-16 21:51:00 +00005913 /* End of word, can't swap or replace. */
5914 sp->ts_state = STATE_FINAL;
5915 break;
5916 }
5917#ifdef FEAT_MBYTE
5918 if (has_mbyte)
5919 {
5920 n = mb_ptr2len_check(p);
5921 c = mb_ptr2char(p);
5922 c2 = mb_ptr2char(p + n);
5923 }
5924 else
5925#endif
5926 c2 = p[1];
5927 if (c == c2)
5928 {
5929 /* Characters are identical, swap won't do anything. */
5930 sp->ts_state = STATE_SWAP3;
5931 break;
5932 }
5933 if (c2 != NUL && try_deeper(su, stack, depth, SCORE_SWAP))
5934 {
5935 sp->ts_state = STATE_UNSWAP;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005936 ++depth;
Bram Moolenaarea424162005-06-16 21:51:00 +00005937#ifdef FEAT_MBYTE
5938 if (has_mbyte)
5939 {
5940 fl = mb_char2len(c2);
5941 mch_memmove(p, p + n, fl);
5942 mb_char2bytes(c, p + fl);
5943 stack[depth].ts_fidxtry = sp->ts_fidx + n + fl;
5944 }
5945 else
5946#endif
5947 {
5948 p[0] = c2;
5949 p[1] = c;
5950 stack[depth].ts_fidxtry = sp->ts_fidx + 2;
5951 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005952 }
5953 else
5954 /* If this swap doesn't work then SWAP3 won't either. */
5955 sp->ts_state = STATE_REP_INI;
5956 break;
5957
Bram Moolenaarea424162005-06-16 21:51:00 +00005958 case STATE_UNSWAP:
5959 /* Undo the STATE_SWAP swap: "21" -> "12". */
5960 p = fword + sp->ts_fidx;
5961#ifdef FEAT_MBYTE
5962 if (has_mbyte)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005963 {
Bram Moolenaarea424162005-06-16 21:51:00 +00005964 n = MB_BYTE2LEN(*p);
5965 c = mb_ptr2char(p + n);
5966 mch_memmove(p + MB_BYTE2LEN(p[n]), p, n);
5967 mb_char2bytes(c, p);
5968 }
5969 else
5970#endif
5971 {
5972 c = *p;
5973 *p = p[1];
5974 p[1] = c;
5975 }
5976 /*FALLTHROUGH*/
5977
5978 case STATE_SWAP3:
5979 /* Swap two bytes, skipping one: "123" -> "321". We change
5980 * "fword" here, it's changed back afterwards. */
5981 p = fword + sp->ts_fidx;
5982#ifdef FEAT_MBYTE
5983 if (has_mbyte)
5984 {
5985 n = mb_ptr2len_check(p);
5986 c = mb_ptr2char(p);
5987 fl = mb_ptr2len_check(p + n);
5988 c2 = mb_ptr2char(p + n);
5989 c3 = mb_ptr2char(p + n + fl);
5990 }
5991 else
5992#endif
5993 {
5994 c = *p;
5995 c2 = p[1];
5996 c3 = p[2];
5997 }
5998
5999 /* When characters are identical: "121" then SWAP3 result is
6000 * identical, ROT3L result is same as SWAP: "211", ROT3L
6001 * result is same as SWAP on next char: "112". Thus skip all
6002 * swapping. Also skip when c3 is NUL. */
6003 if (c == c3 || c3 == NUL)
6004 {
6005 sp->ts_state = STATE_REP_INI;
6006 break;
6007 }
6008 if (try_deeper(su, stack, depth, SCORE_SWAP3))
6009 {
6010 sp->ts_state = STATE_UNSWAP3;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006011 ++depth;
Bram Moolenaarea424162005-06-16 21:51:00 +00006012#ifdef FEAT_MBYTE
6013 if (has_mbyte)
6014 {
6015 tl = mb_char2len(c3);
6016 mch_memmove(p, p + n + fl, tl);
6017 mb_char2bytes(c2, p + tl);
6018 mb_char2bytes(c, p + fl + tl);
6019 stack[depth].ts_fidxtry = sp->ts_fidx + n + fl + tl;
6020 }
6021 else
6022#endif
6023 {
6024 p[0] = p[2];
6025 p[2] = c;
6026 stack[depth].ts_fidxtry = sp->ts_fidx + 3;
6027 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006028 }
6029 else
6030 sp->ts_state = STATE_REP_INI;
6031 break;
6032
Bram Moolenaarea424162005-06-16 21:51:00 +00006033 case STATE_UNSWAP3:
6034 /* Undo STATE_SWAP3: "321" -> "123" */
6035 p = fword + sp->ts_fidx;
6036#ifdef FEAT_MBYTE
6037 if (has_mbyte)
6038 {
6039 n = MB_BYTE2LEN(*p);
6040 c2 = mb_ptr2char(p + n);
6041 fl = MB_BYTE2LEN(p[n]);
6042 c = mb_ptr2char(p + n + fl);
6043 tl = MB_BYTE2LEN(p[n + fl]);
6044 mch_memmove(p + fl + tl, p, n);
6045 mb_char2bytes(c, p);
6046 mb_char2bytes(c2, p + tl);
6047 }
6048 else
6049#endif
6050 {
6051 c = *p;
6052 *p = p[2];
6053 p[2] = c;
6054 }
Bram Moolenaarea424162005-06-16 21:51:00 +00006055
Bram Moolenaarea424162005-06-16 21:51:00 +00006056 /* Rotate three characters left: "123" -> "231". We change
6057 * "fword" here, it's changed back afterwards. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006058 if (try_deeper(su, stack, depth, SCORE_SWAP3))
6059 {
Bram Moolenaarea424162005-06-16 21:51:00 +00006060 sp->ts_state = STATE_UNROT3L;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006061 ++depth;
Bram Moolenaarea424162005-06-16 21:51:00 +00006062 p = fword + sp->ts_fidx;
6063#ifdef FEAT_MBYTE
6064 if (has_mbyte)
6065 {
6066 n = mb_ptr2len_check(p);
6067 c = mb_ptr2char(p);
6068 fl = mb_ptr2len_check(p + n);
6069 fl += mb_ptr2len_check(p + n + fl);
6070 mch_memmove(p, p + n, fl);
6071 mb_char2bytes(c, p + fl);
6072 stack[depth].ts_fidxtry = sp->ts_fidx + n + fl;
6073 }
6074 else
6075#endif
6076 {
6077 c = *p;
6078 *p = p[1];
6079 p[1] = p[2];
6080 p[2] = c;
6081 stack[depth].ts_fidxtry = sp->ts_fidx + 3;
6082 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006083 }
6084 else
6085 sp->ts_state = STATE_REP_INI;
6086 break;
6087
Bram Moolenaarea424162005-06-16 21:51:00 +00006088 case STATE_UNROT3L:
Bram Moolenaar0c405862005-06-22 22:26:26 +00006089 /* Undo ROT3L: "231" -> "123" */
Bram Moolenaarea424162005-06-16 21:51:00 +00006090 p = fword + sp->ts_fidx;
6091#ifdef FEAT_MBYTE
6092 if (has_mbyte)
6093 {
6094 n = MB_BYTE2LEN(*p);
6095 n += MB_BYTE2LEN(p[n]);
6096 c = mb_ptr2char(p + n);
6097 tl = MB_BYTE2LEN(p[n]);
6098 mch_memmove(p + tl, p, n);
6099 mb_char2bytes(c, p);
6100 }
6101 else
6102#endif
6103 {
6104 c = p[2];
6105 p[2] = p[1];
6106 p[1] = *p;
6107 *p = c;
6108 }
Bram Moolenaarea424162005-06-16 21:51:00 +00006109
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006110 /* Rotate three bytes right: "123" -> "312". We change
Bram Moolenaarea424162005-06-16 21:51:00 +00006111 * "fword" here, it's changed back afterwards. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006112 if (try_deeper(su, stack, depth, SCORE_SWAP3))
6113 {
Bram Moolenaarea424162005-06-16 21:51:00 +00006114 sp->ts_state = STATE_UNROT3R;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006115 ++depth;
Bram Moolenaarea424162005-06-16 21:51:00 +00006116 p = fword + sp->ts_fidx;
6117#ifdef FEAT_MBYTE
6118 if (has_mbyte)
6119 {
6120 n = mb_ptr2len_check(p);
6121 n += mb_ptr2len_check(p + n);
6122 c = mb_ptr2char(p + n);
6123 tl = mb_ptr2len_check(p + n);
6124 mch_memmove(p + tl, p, n);
6125 mb_char2bytes(c, p);
6126 stack[depth].ts_fidxtry = sp->ts_fidx + n + tl;
6127 }
6128 else
6129#endif
6130 {
6131 c = p[2];
6132 p[2] = p[1];
6133 p[1] = *p;
6134 *p = c;
6135 stack[depth].ts_fidxtry = sp->ts_fidx + 3;
6136 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006137 }
6138 else
6139 sp->ts_state = STATE_REP_INI;
6140 break;
6141
Bram Moolenaarea424162005-06-16 21:51:00 +00006142 case STATE_UNROT3R:
Bram Moolenaar0c405862005-06-22 22:26:26 +00006143 /* Undo ROT3R: "312" -> "123" */
Bram Moolenaarea424162005-06-16 21:51:00 +00006144 p = fword + sp->ts_fidx;
6145#ifdef FEAT_MBYTE
6146 if (has_mbyte)
6147 {
6148 c = mb_ptr2char(p);
6149 tl = MB_BYTE2LEN(*p);
6150 n = MB_BYTE2LEN(p[tl]);
6151 n += MB_BYTE2LEN(p[tl + n]);
6152 mch_memmove(p, p + tl, n);
6153 mb_char2bytes(c, p + n);
6154 }
6155 else
6156#endif
6157 {
6158 c = *p;
6159 *p = p[1];
6160 p[1] = p[2];
6161 p[2] = c;
6162 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006163 /*FALLTHROUGH*/
6164
6165 case STATE_REP_INI:
6166 /* Check if matching with REP items from the .aff file would
6167 * work. Quickly skip if there are no REP items or the score
6168 * is going to be too high anyway. */
6169 gap = &lp->lp_slang->sl_rep;
6170 if (gap->ga_len == 0
6171 || sp->ts_score + SCORE_REP >= su->su_maxscore)
6172 {
6173 sp->ts_state = STATE_FINAL;
6174 break;
6175 }
6176
6177 /* Use the first byte to quickly find the first entry that
Bram Moolenaarea424162005-06-16 21:51:00 +00006178 * may match. If the index is -1 there is none. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006179 sp->ts_curi = lp->lp_slang->sl_rep_first[fword[sp->ts_fidx]];
6180 if (sp->ts_curi < 0)
6181 {
6182 sp->ts_state = STATE_FINAL;
6183 break;
6184 }
6185
6186 sp->ts_state = STATE_REP;
6187 /*FALLTHROUGH*/
6188
6189 case STATE_REP:
6190 /* Try matching with REP items from the .aff file. For each
Bram Moolenaarea424162005-06-16 21:51:00 +00006191 * match replace the characters and check if the resulting
6192 * word is valid. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006193 p = fword + sp->ts_fidx;
6194
6195 gap = &lp->lp_slang->sl_rep;
6196 while (sp->ts_curi < gap->ga_len)
6197 {
6198 ftp = (fromto_T *)gap->ga_data + sp->ts_curi++;
6199 if (*ftp->ft_from != *p)
6200 {
6201 /* past possible matching entries */
6202 sp->ts_curi = gap->ga_len;
6203 break;
6204 }
6205 if (STRNCMP(ftp->ft_from, p, STRLEN(ftp->ft_from)) == 0
6206 && try_deeper(su, stack, depth, SCORE_REP))
6207 {
6208 /* Need to undo this afterwards. */
6209 sp->ts_state = STATE_REP_UNDO;
6210
6211 /* Change the "from" to the "to" string. */
6212 ++depth;
6213 fl = STRLEN(ftp->ft_from);
6214 tl = STRLEN(ftp->ft_to);
6215 if (fl != tl)
Bram Moolenaar0c405862005-06-22 22:26:26 +00006216 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006217 mch_memmove(p + tl, p + fl, STRLEN(p + fl) + 1);
Bram Moolenaar0c405862005-06-22 22:26:26 +00006218 repextra += tl - fl;
6219 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006220 mch_memmove(p, ftp->ft_to, tl);
6221 stack[depth].ts_fidxtry = sp->ts_fidx + tl;
Bram Moolenaarea424162005-06-16 21:51:00 +00006222#ifdef FEAT_MBYTE
6223 stack[depth].ts_tcharlen = 0;
6224#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006225 break;
6226 }
6227 }
6228
6229 if (sp->ts_curi >= gap->ga_len)
6230 /* No (more) matches. */
6231 sp->ts_state = STATE_FINAL;
6232
6233 break;
6234
6235 case STATE_REP_UNDO:
6236 /* Undo a REP replacement and continue with the next one. */
6237 ftp = (fromto_T *)lp->lp_slang->sl_rep.ga_data
6238 + sp->ts_curi - 1;
6239 fl = STRLEN(ftp->ft_from);
6240 tl = STRLEN(ftp->ft_to);
6241 p = fword + sp->ts_fidx;
6242 if (fl != tl)
Bram Moolenaar0c405862005-06-22 22:26:26 +00006243 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006244 mch_memmove(p + fl, p + tl, STRLEN(p + tl) + 1);
Bram Moolenaar0c405862005-06-22 22:26:26 +00006245 repextra -= tl - fl;
6246 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006247 mch_memmove(p, ftp->ft_from, fl);
6248 sp->ts_state = STATE_REP;
6249 break;
6250
6251 default:
6252 /* Did all possible states at this level, go up one level. */
6253 --depth;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006254
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006255 /* Don't check for CTRL-C too often, it takes time. */
6256 line_breakcheck();
6257 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006258 }
6259 }
6260}
6261
6262/*
6263 * Try going one level deeper in the tree.
6264 */
6265 static int
6266try_deeper(su, stack, depth, score_add)
6267 suginfo_T *su;
6268 trystate_T *stack;
6269 int depth;
6270 int score_add;
6271{
6272 int newscore;
6273
6274 /* Refuse to go deeper if the scrore is getting too big. */
6275 newscore = stack[depth].ts_score + score_add;
6276 if (newscore >= su->su_maxscore)
6277 return FALSE;
6278
Bram Moolenaarea424162005-06-16 21:51:00 +00006279 stack[depth + 1] = stack[depth];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006280 stack[depth + 1].ts_state = STATE_START;
6281 stack[depth + 1].ts_score = newscore;
6282 stack[depth + 1].ts_curi = 1; /* start just after length byte */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006283 return TRUE;
6284}
6285
6286/*
6287 * "fword" is a good word with case folded. Find the matching keep-case
6288 * words and put it in "kword".
6289 * Theoretically there could be several keep-case words that result in the
6290 * same case-folded word, but we only find one...
6291 */
6292 static void
6293find_keepcap_word(slang, fword, kword)
6294 slang_T *slang;
6295 char_u *fword;
6296 char_u *kword;
6297{
6298 char_u uword[MAXWLEN]; /* "fword" in upper-case */
6299 int depth;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00006300 idx_T tryidx;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006301
6302 /* The following arrays are used at each depth in the tree. */
Bram Moolenaar9f30f502005-06-14 22:01:04 +00006303 idx_T arridx[MAXWLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006304 int round[MAXWLEN];
6305 int fwordidx[MAXWLEN];
6306 int uwordidx[MAXWLEN];
6307 int kwordlen[MAXWLEN];
6308
6309 int flen, ulen;
6310 int l;
6311 int len;
6312 int c;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00006313 idx_T lo, hi, m;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006314 char_u *p;
6315 char_u *byts = slang->sl_kbyts; /* array with bytes of the words */
Bram Moolenaar9f30f502005-06-14 22:01:04 +00006316 idx_T *idxs = slang->sl_kidxs; /* array with indexes */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006317
6318 if (byts == NULL)
6319 {
6320 /* array is empty: "cannot happen" */
6321 *kword = NUL;
6322 return;
6323 }
6324
6325 /* Make an all-cap version of "fword". */
6326 allcap_copy(fword, uword);
6327
6328 /*
6329 * Each character needs to be tried both case-folded and upper-case.
6330 * All this gets very complicated if we keep in mind that changing case
6331 * may change the byte length of a multi-byte character...
6332 */
6333 depth = 0;
6334 arridx[0] = 0;
6335 round[0] = 0;
6336 fwordidx[0] = 0;
6337 uwordidx[0] = 0;
6338 kwordlen[0] = 0;
6339 while (depth >= 0)
6340 {
6341 if (fword[fwordidx[depth]] == NUL)
6342 {
6343 /* We are at the end of "fword". If the tree allows a word to end
6344 * here we have found a match. */
6345 if (byts[arridx[depth] + 1] == 0)
6346 {
6347 kword[kwordlen[depth]] = NUL;
6348 return;
6349 }
6350
6351 /* kword is getting too long, continue one level up */
6352 --depth;
6353 }
6354 else if (++round[depth] > 2)
6355 {
6356 /* tried both fold-case and upper-case character, continue one
6357 * level up */
6358 --depth;
6359 }
6360 else
6361 {
6362 /*
6363 * round[depth] == 1: Try using the folded-case character.
6364 * round[depth] == 2: Try using the upper-case character.
6365 */
6366#ifdef FEAT_MBYTE
6367 if (has_mbyte)
6368 {
6369 flen = mb_ptr2len_check(fword + fwordidx[depth]);
6370 ulen = mb_ptr2len_check(uword + uwordidx[depth]);
6371 }
6372 else
6373#endif
6374 ulen = flen = 1;
6375 if (round[depth] == 1)
6376 {
6377 p = fword + fwordidx[depth];
6378 l = flen;
6379 }
6380 else
6381 {
6382 p = uword + uwordidx[depth];
6383 l = ulen;
6384 }
6385
6386 for (tryidx = arridx[depth]; l > 0; --l)
6387 {
6388 /* Perform a binary search in the list of accepted bytes. */
6389 len = byts[tryidx++];
6390 c = *p++;
6391 lo = tryidx;
6392 hi = tryidx + len - 1;
6393 while (lo < hi)
6394 {
6395 m = (lo + hi) / 2;
6396 if (byts[m] > c)
6397 hi = m - 1;
6398 else if (byts[m] < c)
6399 lo = m + 1;
6400 else
6401 {
6402 lo = hi = m;
6403 break;
6404 }
6405 }
6406
6407 /* Stop if there is no matching byte. */
6408 if (hi < lo || byts[lo] != c)
6409 break;
6410
6411 /* Continue at the child (if there is one). */
6412 tryidx = idxs[lo];
6413 }
6414
6415 if (l == 0)
6416 {
6417 /*
6418 * Found the matching char. Copy it to "kword" and go a
6419 * level deeper.
6420 */
6421 if (round[depth] == 1)
6422 {
6423 STRNCPY(kword + kwordlen[depth], fword + fwordidx[depth],
6424 flen);
6425 kwordlen[depth + 1] = kwordlen[depth] + flen;
6426 }
6427 else
6428 {
6429 STRNCPY(kword + kwordlen[depth], uword + uwordidx[depth],
6430 ulen);
6431 kwordlen[depth + 1] = kwordlen[depth] + ulen;
6432 }
6433 fwordidx[depth + 1] = fwordidx[depth] + flen;
6434 uwordidx[depth + 1] = uwordidx[depth] + ulen;
6435
6436 ++depth;
6437 arridx[depth] = tryidx;
6438 round[depth] = 0;
6439 }
6440 }
6441 }
6442
6443 /* Didn't find it: "cannot happen". */
6444 *kword = NUL;
6445}
6446
6447/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006448 * Compute the sound-a-like score for suggestions in su->su_ga and add them to
6449 * su->su_sga.
6450 */
6451 static void
6452score_comp_sal(su)
6453 suginfo_T *su;
6454{
6455 langp_T *lp;
6456 char_u badsound[MAXWLEN];
6457 int i;
6458 suggest_T *stp;
6459 suggest_T *sstp;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006460 int score;
6461
6462 if (ga_grow(&su->su_sga, su->su_ga.ga_len) == FAIL)
6463 return;
6464
6465 /* Use the sound-folding of the first language that supports it. */
6466 for (lp = LANGP_ENTRY(curwin->w_buffer->b_langp, 0);
6467 lp->lp_slang != NULL; ++lp)
6468 if (lp->lp_slang->sl_sal.ga_len > 0)
6469 {
6470 /* soundfold the bad word */
6471 spell_soundfold(lp->lp_slang, su->su_fbadword, badsound);
6472
6473 for (i = 0; i < su->su_ga.ga_len; ++i)
6474 {
6475 stp = &SUG(su->su_ga, i);
6476
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00006477 /* Case-fold the suggested word, sound-fold it and compute the
6478 * sound-a-like score. */
6479 score = stp_sal_score(stp, su, lp->lp_slang, badsound);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006480 if (score < SCORE_MAXMAX)
6481 {
6482 /* Add the suggestion. */
6483 sstp = &SUG(su->su_sga, su->su_sga.ga_len);
6484 sstp->st_word = vim_strsave(stp->st_word);
6485 if (sstp->st_word != NULL)
6486 {
6487 sstp->st_score = score;
6488 sstp->st_altscore = 0;
6489 sstp->st_orglen = stp->st_orglen;
6490 ++su->su_sga.ga_len;
6491 }
6492 }
6493 }
6494 break;
6495 }
6496}
6497
6498/*
6499 * Combine the list of suggestions in su->su_ga and su->su_sga.
6500 * They are intwined.
6501 */
6502 static void
6503score_combine(su)
6504 suginfo_T *su;
6505{
6506 int i;
6507 int j;
6508 garray_T ga;
6509 garray_T *gap;
6510 langp_T *lp;
6511 suggest_T *stp;
6512 char_u *p;
6513 char_u badsound[MAXWLEN];
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006514 int round;
6515
6516 /* Add the alternate score to su_ga. */
6517 for (lp = LANGP_ENTRY(curwin->w_buffer->b_langp, 0);
6518 lp->lp_slang != NULL; ++lp)
6519 {
6520 if (lp->lp_slang->sl_sal.ga_len > 0)
6521 {
6522 /* soundfold the bad word */
6523 spell_soundfold(lp->lp_slang, su->su_fbadword, badsound);
6524
6525 for (i = 0; i < su->su_ga.ga_len; ++i)
6526 {
6527 stp = &SUG(su->su_ga, i);
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00006528 stp->st_altscore = stp_sal_score(stp, su, lp->lp_slang,
6529 badsound);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006530 if (stp->st_altscore == SCORE_MAXMAX)
6531 stp->st_score = (stp->st_score * 3 + SCORE_BIG) / 4;
6532 else
6533 stp->st_score = (stp->st_score * 3
6534 + stp->st_altscore) / 4;
6535 stp->st_salscore = FALSE;
6536 }
6537 break;
6538 }
6539 }
6540
6541 /* Add the alternate score to su_sga. */
6542 for (i = 0; i < su->su_sga.ga_len; ++i)
6543 {
6544 stp = &SUG(su->su_sga, i);
6545 stp->st_altscore = spell_edit_score(su->su_badword, stp->st_word);
6546 if (stp->st_score == SCORE_MAXMAX)
6547 stp->st_score = (SCORE_BIG * 7 + stp->st_altscore) / 8;
6548 else
6549 stp->st_score = (stp->st_score * 7 + stp->st_altscore) / 8;
6550 stp->st_salscore = TRUE;
6551 }
6552
6553 /* Sort the suggestions and truncate at "maxcount" for both lists. */
6554 (void)cleanup_suggestions(&su->su_ga, su->su_maxscore, su->su_maxcount);
6555 (void)cleanup_suggestions(&su->su_sga, su->su_maxscore, su->su_maxcount);
6556
6557 ga_init2(&ga, (int)sizeof(suginfo_T), 1);
6558 if (ga_grow(&ga, su->su_ga.ga_len + su->su_sga.ga_len) == FAIL)
6559 return;
6560
6561 stp = &SUG(ga, 0);
6562 for (i = 0; i < su->su_ga.ga_len || i < su->su_sga.ga_len; ++i)
6563 {
6564 /* round 1: get a suggestion from su_ga
6565 * round 2: get a suggestion from su_sga */
6566 for (round = 1; round <= 2; ++round)
6567 {
6568 gap = round == 1 ? &su->su_ga : &su->su_sga;
6569 if (i < gap->ga_len)
6570 {
6571 /* Don't add a word if it's already there. */
6572 p = SUG(*gap, i).st_word;
6573 for (j = 0; j < ga.ga_len; ++j)
6574 if (STRCMP(stp[j].st_word, p) == 0)
6575 break;
6576 if (j == ga.ga_len)
6577 stp[ga.ga_len++] = SUG(*gap, i);
6578 else
6579 vim_free(p);
6580 }
6581 }
6582 }
6583
6584 ga_clear(&su->su_ga);
6585 ga_clear(&su->su_sga);
6586
6587 /* Truncate the list to the number of suggestions that will be displayed. */
6588 if (ga.ga_len > su->su_maxcount)
6589 {
6590 for (i = su->su_maxcount; i < ga.ga_len; ++i)
6591 vim_free(stp[i].st_word);
6592 ga.ga_len = su->su_maxcount;
6593 }
6594
6595 su->su_ga = ga;
6596}
6597
6598/*
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00006599 * For the goodword in "stp" compute the soundalike score compared to the
6600 * badword.
6601 */
6602 static int
6603stp_sal_score(stp, su, slang, badsound)
6604 suggest_T *stp;
6605 suginfo_T *su;
6606 slang_T *slang;
6607 char_u *badsound; /* sound-folded badword */
6608{
6609 char_u *p;
6610 char_u badsound2[MAXWLEN];
6611 char_u fword[MAXWLEN];
6612 char_u goodsound[MAXWLEN];
6613
6614 if (stp->st_orglen <= su->su_badlen)
6615 p = badsound;
6616 else
6617 {
6618 /* soundfold the bad word with more characters following */
6619 (void)spell_casefold(su->su_badptr, stp->st_orglen, fword, MAXWLEN);
6620
6621 /* When joining two words the sound often changes a lot. E.g., "t he"
6622 * sounds like "t h" while "the" sounds like "@". Avoid that by
6623 * removing the space. Don't do it when the good word also contains a
6624 * space. */
6625 if (vim_iswhite(su->su_badptr[su->su_badlen])
6626 && *skiptowhite(stp->st_word) == NUL)
6627 for (p = fword; *(p = skiptowhite(p)) != NUL; )
6628 mch_memmove(p, p + 1, STRLEN(p));
6629
6630 spell_soundfold(slang, fword, badsound2);
6631 p = badsound2;
6632 }
6633
6634 /* Case-fold the word, sound-fold the word and compute the score for the
6635 * difference. */
6636 (void)spell_casefold(stp->st_word, STRLEN(stp->st_word), fword, MAXWLEN);
6637 spell_soundfold(slang, fword, goodsound);
6638
6639 return soundalike_score(goodsound, p);
6640}
6641
6642/*
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006643 * Find suggestions by comparing the word in a sound-a-like form.
6644 */
6645 static void
Bram Moolenaar0c405862005-06-22 22:26:26 +00006646suggest_try_soundalike(su)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006647 suginfo_T *su;
6648{
6649 char_u salword[MAXWLEN];
6650 char_u tword[MAXWLEN];
6651 char_u tfword[MAXWLEN];
6652 char_u tsalword[MAXWLEN];
Bram Moolenaar9f30f502005-06-14 22:01:04 +00006653 idx_T arridx[MAXWLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006654 int curi[MAXWLEN];
6655 langp_T *lp;
6656 char_u *byts;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00006657 idx_T *idxs;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006658 int depth;
6659 int c;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00006660 idx_T n;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006661 int round;
6662 int flags;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006663 int sound_score;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006664
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006665 /* Do this for all languages that support sound folding. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006666 for (lp = LANGP_ENTRY(curwin->w_buffer->b_langp, 0);
6667 lp->lp_slang != NULL; ++lp)
6668 {
6669 if (lp->lp_slang->sl_sal.ga_len > 0)
6670 {
6671 /* soundfold the bad word */
6672 spell_soundfold(lp->lp_slang, su->su_fbadword, salword);
6673
6674 /*
6675 * Go through the whole tree, soundfold each word and compare.
6676 * round 1: use the case-folded tree.
6677 * round 2: use the keep-case tree.
6678 */
6679 for (round = 1; round <= 2; ++round)
6680 {
6681 if (round == 1)
6682 {
6683 byts = lp->lp_slang->sl_fbyts;
6684 idxs = lp->lp_slang->sl_fidxs;
6685 }
6686 else
6687 {
6688 byts = lp->lp_slang->sl_kbyts;
6689 idxs = lp->lp_slang->sl_kidxs;
6690 }
6691
6692 depth = 0;
6693 arridx[0] = 0;
6694 curi[0] = 1;
6695 while (depth >= 0 && !got_int)
6696 {
6697 if (curi[depth] > byts[arridx[depth]])
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00006698 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006699 /* Done all bytes at this node, go up one level. */
6700 --depth;
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00006701 line_breakcheck();
6702 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006703 else
6704 {
6705 /* Do one more byte at this node. */
6706 n = arridx[depth] + curi[depth];
6707 ++curi[depth];
6708 c = byts[n];
6709 if (c == 0)
6710 {
6711 /* End of word, deal with the word. */
Bram Moolenaar9f30f502005-06-14 22:01:04 +00006712 flags = (int)idxs[n];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006713 if (round == 2 || (flags & WF_KEEPCAP) == 0)
6714 {
6715 tword[depth] = NUL;
6716 if (round == 1)
6717 spell_soundfold(lp->lp_slang,
6718 tword, tsalword);
6719 else
6720 {
6721 /* In keep-case tree need to case-fold the
6722 * word. */
6723 (void)spell_casefold(tword, depth,
6724 tfword, MAXWLEN);
6725 spell_soundfold(lp->lp_slang,
6726 tfword, tsalword);
6727 }
6728
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006729 /* Compute the edit distance between the
6730 * sound-a-like words. */
6731 sound_score = soundalike_score(salword,
6732 tsalword);
Bram Moolenaar9f30f502005-06-14 22:01:04 +00006733 if (sound_score < SCORE_MAXMAX)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006734 {
Bram Moolenaar9f30f502005-06-14 22:01:04 +00006735 char_u cword[MAXWLEN];
6736 char_u *p;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006737 int score;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00006738
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00006739 if (round == 1 && (flags & WF_CAPMASK) != 0)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006740 {
Bram Moolenaar9f30f502005-06-14 22:01:04 +00006741 /* Need to fix case according to
6742 * "flags". */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006743 make_case_word(tword, cword, flags);
Bram Moolenaar9f30f502005-06-14 22:01:04 +00006744 p = cword;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006745 }
6746 else
Bram Moolenaar9f30f502005-06-14 22:01:04 +00006747 p = tword;
6748
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006749 if (sps_flags & SPS_DOUBLE)
6750 add_suggestion(su, &su->su_sga, p,
Bram Moolenaar0c405862005-06-22 22:26:26 +00006751 su->su_badlen,
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00006752 sound_score, 0, FALSE);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006753 else
6754 {
6755 /* Compute the score. */
6756 score = spell_edit_score(
6757 su->su_badword, p);
6758 if (sps_flags & SPS_BEST)
6759 /* give a bonus for the good word
6760 * sounding the same as the bad
6761 * word */
6762 add_suggestion(su, &su->su_ga, p,
Bram Moolenaar0c405862005-06-22 22:26:26 +00006763 su->su_badlen,
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006764 RESCORE(score, sound_score),
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00006765 sound_score, TRUE);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006766 else
6767 add_suggestion(su, &su->su_ga, p,
Bram Moolenaar0c405862005-06-22 22:26:26 +00006768 su->su_badlen,
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00006769 score + sound_score, 0, FALSE);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006770 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006771 }
6772 }
6773
6774 /* Skip over other NUL bytes. */
6775 while (byts[n + 1] == 0)
6776 {
6777 ++n;
6778 ++curi[depth];
6779 }
6780 }
6781 else
6782 {
6783 /* Normal char, go one level deeper. */
6784 tword[depth++] = c;
6785 arridx[depth] = idxs[n];
6786 curi[depth] = 1;
6787 }
6788 }
6789 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006790 }
6791 }
6792 }
6793}
6794
6795/*
Bram Moolenaar9f30f502005-06-14 22:01:04 +00006796 * Copy "fword" to "cword", fixing case according to "flags".
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006797 */
6798 static void
6799make_case_word(fword, cword, flags)
6800 char_u *fword;
6801 char_u *cword;
6802 int flags;
6803{
6804 if (flags & WF_ALLCAP)
6805 /* Make it all upper-case */
6806 allcap_copy(fword, cword);
6807 else if (flags & WF_ONECAP)
6808 /* Make the first letter upper-case */
Bram Moolenaar9f30f502005-06-14 22:01:04 +00006809 onecap_copy(fword, cword, TRUE);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006810 else
6811 /* Use goodword as-is. */
6812 STRCPY(cword, fword);
6813}
6814
Bram Moolenaarea424162005-06-16 21:51:00 +00006815/*
6816 * Use map string "map" for languages "lp".
6817 */
6818 static void
6819set_map_str(lp, map)
6820 slang_T *lp;
6821 char_u *map;
6822{
6823 char_u *p;
6824 int headc = 0;
6825 int c;
6826 int i;
6827
6828 if (*map == NUL)
6829 {
6830 lp->sl_has_map = FALSE;
6831 return;
6832 }
6833 lp->sl_has_map = TRUE;
6834
6835 /* Init the array and hash table empty. */
6836 for (i = 0; i < 256; ++i)
6837 lp->sl_map_array[i] = 0;
6838#ifdef FEAT_MBYTE
6839 hash_init(&lp->sl_map_hash);
6840#endif
6841
6842 /*
6843 * The similar characters are stored separated with slashes:
6844 * "aaa/bbb/ccc/". Fill sl_map_array[c] with the character before c and
6845 * before the same slash. For characters above 255 sl_map_hash is used.
6846 */
6847 for (p = map; *p != NUL; )
6848 {
6849#ifdef FEAT_MBYTE
6850 c = mb_ptr2char_adv(&p);
6851#else
6852 c = *p++;
6853#endif
6854 if (c == '/')
6855 headc = 0;
6856 else
6857 {
6858 if (headc == 0)
6859 headc = c;
6860
6861#ifdef FEAT_MBYTE
6862 /* Characters above 255 don't fit in sl_map_array[], put them in
6863 * the hash table. Each entry is the char, a NUL the headchar and
6864 * a NUL. */
6865 if (c >= 256)
6866 {
6867 int cl = mb_char2len(c);
6868 int headcl = mb_char2len(headc);
6869 char_u *b;
6870 hash_T hash;
6871 hashitem_T *hi;
6872
6873 b = alloc((unsigned)(cl + headcl + 2));
6874 if (b == NULL)
6875 return;
6876 mb_char2bytes(c, b);
6877 b[cl] = NUL;
6878 mb_char2bytes(headc, b + cl + 1);
6879 b[cl + 1 + headcl] = NUL;
6880 hash = hash_hash(b);
6881 hi = hash_lookup(&lp->sl_map_hash, b, hash);
6882 if (HASHITEM_EMPTY(hi))
6883 hash_add_item(&lp->sl_map_hash, hi, b, hash);
6884 else
6885 {
6886 /* This should have been checked when generating the .spl
6887 * file. */
6888 EMSG(_("E999: duplicate char in MAP entry"));
6889 vim_free(b);
6890 }
6891 }
6892 else
6893#endif
6894 lp->sl_map_array[c] = headc;
6895 }
6896 }
6897}
6898
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006899/*
6900 * Return TRUE if "c1" and "c2" are similar characters according to the MAP
6901 * lines in the .aff file.
6902 */
6903 static int
6904similar_chars(slang, c1, c2)
6905 slang_T *slang;
6906 int c1;
6907 int c2;
6908{
Bram Moolenaarea424162005-06-16 21:51:00 +00006909 int m1, m2;
6910#ifdef FEAT_MBYTE
6911 char_u buf[MB_MAXBYTES];
6912 hashitem_T *hi;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006913
Bram Moolenaarea424162005-06-16 21:51:00 +00006914 if (c1 >= 256)
6915 {
6916 buf[mb_char2bytes(c1, buf)] = 0;
6917 hi = hash_find(&slang->sl_map_hash, buf);
6918 if (HASHITEM_EMPTY(hi))
6919 m1 = 0;
6920 else
6921 m1 = mb_ptr2char(hi->hi_key + STRLEN(hi->hi_key) + 1);
6922 }
6923 else
Bram Moolenaar9f30f502005-06-14 22:01:04 +00006924#endif
Bram Moolenaarea424162005-06-16 21:51:00 +00006925 m1 = slang->sl_map_array[c1];
6926 if (m1 == 0)
6927 return FALSE;
6928
6929
6930#ifdef FEAT_MBYTE
6931 if (c2 >= 256)
6932 {
6933 buf[mb_char2bytes(c2, buf)] = 0;
6934 hi = hash_find(&slang->sl_map_hash, buf);
6935 if (HASHITEM_EMPTY(hi))
6936 m2 = 0;
6937 else
6938 m2 = mb_ptr2char(hi->hi_key + STRLEN(hi->hi_key) + 1);
6939 }
6940 else
6941#endif
6942 m2 = slang->sl_map_array[c2];
6943
6944 return m1 == m2;
6945}
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006946
6947/*
6948 * Add a suggestion to the list of suggestions.
6949 * Do not add a duplicate suggestion or suggestions with a bad score.
6950 * When "use_score" is not zero it's used, otherwise the score is computed
6951 * with spell_edit_score().
6952 */
6953 static void
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00006954add_suggestion(su, gap, goodword, badlen, score, altscore, had_bonus)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006955 suginfo_T *su;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006956 garray_T *gap;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006957 char_u *goodword;
Bram Moolenaar0c405862005-06-22 22:26:26 +00006958 int badlen; /* length of bad word used */
Bram Moolenaar9f30f502005-06-14 22:01:04 +00006959 int score;
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00006960 int altscore;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006961 int had_bonus; /* value for st_had_bonus */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006962{
6963 suggest_T *stp;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006964 int i;
Bram Moolenaar0c405862005-06-22 22:26:26 +00006965 char_u *p = NULL;
6966 int c = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006967
6968 /* Check that the word wasn't banned. */
6969 if (was_banned(su, goodword))
6970 return;
6971
Bram Moolenaar0c405862005-06-22 22:26:26 +00006972 /* If past "su_badlen" and the rest is identical stop at "su_badlen".
6973 * Remove the common part from "goodword". */
6974 i = badlen - su->su_badlen;
6975 if (i > 0)
6976 {
6977 /* This assumes there was no case folding or it didn't change the
6978 * length... */
6979 p = goodword + STRLEN(goodword) - i;
6980 if (p > goodword && STRNICMP(su->su_badptr + su->su_badlen, p, i) == 0)
6981 {
6982 badlen = su->su_badlen;
6983 c = *p;
6984 *p = NUL;
6985 }
6986 else
6987 p = NULL;
6988 }
6989
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006990 if (score <= su->su_maxscore)
6991 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006992 /* Check if the word is already there. */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00006993 stp = &SUG(*gap, 0);
6994 for (i = gap->ga_len - 1; i >= 0; --i)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006995 if (STRCMP(stp[i].st_word, goodword) == 0)
6996 {
6997 /* Found it. Remember the lowest score. */
6998 if (stp[i].st_score > score)
Bram Moolenaar9f30f502005-06-14 22:01:04 +00006999 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007000 stp[i].st_score = score;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007001 stp[i].st_had_bonus = had_bonus;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007002 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007003 break;
7004 }
7005
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007006 if (i < 0 && ga_grow(gap, 1) == OK)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007007 {
7008 /* Add a suggestion. */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007009 stp = &SUG(*gap, gap->ga_len);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007010 stp->st_word = vim_strsave(goodword);
7011 if (stp->st_word != NULL)
7012 {
7013 stp->st_score = score;
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007014 stp->st_altscore = altscore;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007015 stp->st_had_bonus = had_bonus;
Bram Moolenaar0c405862005-06-22 22:26:26 +00007016 stp->st_orglen = badlen;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007017 ++gap->ga_len;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007018
7019 /* If we have too many suggestions now, sort the list and keep
7020 * the best suggestions. */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007021 if (gap->ga_len > SUG_MAX_COUNT(su))
7022 su->su_maxscore = cleanup_suggestions(gap, su->su_maxscore,
7023 SUG_CLEAN_COUNT(su));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007024 }
7025 }
7026 }
Bram Moolenaar0c405862005-06-22 22:26:26 +00007027
7028 if (p != NULL)
7029 *p = c; /* restore "goodword" */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007030}
7031
7032/*
7033 * Add a word to be banned.
7034 */
7035 static void
7036add_banned(su, word)
7037 suginfo_T *su;
7038 char_u *word;
7039{
7040 char_u *s = vim_strsave(word);
7041 hash_T hash;
7042 hashitem_T *hi;
7043
7044 if (s != NULL)
7045 {
7046 hash = hash_hash(s);
7047 hi = hash_lookup(&su->su_banned, s, hash);
7048 if (HASHITEM_EMPTY(hi))
7049 hash_add_item(&su->su_banned, hi, s, hash);
7050 }
7051}
7052
7053/*
7054 * Return TRUE if a word appears in the list of banned words.
7055 */
7056 static int
7057was_banned(su, word)
7058 suginfo_T *su;
7059 char_u *word;
7060{
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007061 hashitem_T *hi = hash_find(&su->su_banned, word);
7062
7063 return !HASHITEM_EMPTY(hi);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007064}
7065
7066/*
7067 * Free the banned words in "su".
7068 */
7069 static void
7070free_banned(su)
7071 suginfo_T *su;
7072{
7073 int todo;
7074 hashitem_T *hi;
7075
7076 todo = su->su_banned.ht_used;
7077 for (hi = su->su_banned.ht_array; todo > 0; ++hi)
7078 {
7079 if (!HASHITEM_EMPTY(hi))
7080 {
7081 vim_free(hi->hi_key);
7082 --todo;
7083 }
7084 }
7085 hash_clear(&su->su_banned);
7086}
7087
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007088/*
7089 * Recompute the score if sound-folding is possible. This is slow,
7090 * thus only done for the final results.
7091 */
7092 static void
7093rescore_suggestions(su)
7094 suginfo_T *su;
7095{
7096 langp_T *lp;
7097 suggest_T *stp;
7098 char_u sal_badword[MAXWLEN];
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007099 int i;
7100
7101 for (lp = LANGP_ENTRY(curwin->w_buffer->b_langp, 0);
7102 lp->lp_slang != NULL; ++lp)
7103 {
7104 if (lp->lp_slang->sl_sal.ga_len > 0)
7105 {
7106 /* soundfold the bad word */
7107 spell_soundfold(lp->lp_slang, su->su_fbadword, sal_badword);
7108
7109 for (i = 0; i < su->su_ga.ga_len; ++i)
7110 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007111 stp = &SUG(su->su_ga, i);
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007112 if (!stp->st_had_bonus)
7113 {
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007114 stp->st_altscore = stp_sal_score(stp, su,
7115 lp->lp_slang, sal_badword);
7116 if (stp->st_altscore == SCORE_MAXMAX)
7117 stp->st_altscore = SCORE_BIG;
7118 stp->st_score = RESCORE(stp->st_score, stp->st_altscore);
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007119 }
7120 }
7121 break;
7122 }
7123 }
7124}
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007125
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007126static int
7127#ifdef __BORLANDC__
7128_RTLENTRYF
7129#endif
7130sug_compare __ARGS((const void *s1, const void *s2));
7131
7132/*
7133 * Function given to qsort() to sort the suggestions on st_score.
7134 */
7135 static int
7136#ifdef __BORLANDC__
7137_RTLENTRYF
7138#endif
7139sug_compare(s1, s2)
7140 const void *s1;
7141 const void *s2;
7142{
7143 suggest_T *p1 = (suggest_T *)s1;
7144 suggest_T *p2 = (suggest_T *)s2;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007145 int n = p1->st_score - p2->st_score;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007146
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007147 if (n == 0)
7148 return p1->st_altscore - p2->st_altscore;
7149 return n;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007150}
7151
7152/*
7153 * Cleanup the suggestions:
7154 * - Sort on score.
7155 * - Remove words that won't be displayed.
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007156 * Returns the maximum score in the list or "maxscore" unmodified.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007157 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007158 static int
7159cleanup_suggestions(gap, maxscore, keep)
7160 garray_T *gap;
7161 int maxscore;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007162 int keep; /* nr of suggestions to keep */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007163{
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007164 suggest_T *stp = &SUG(*gap, 0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007165 int i;
7166
7167 /* Sort the list. */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007168 qsort(gap->ga_data, (size_t)gap->ga_len, sizeof(suggest_T), sug_compare);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007169
7170 /* Truncate the list to the number of suggestions that will be displayed. */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007171 if (gap->ga_len > keep)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007172 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007173 for (i = keep; i < gap->ga_len; ++i)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007174 vim_free(stp[i].st_word);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007175 gap->ga_len = keep;
7176 return stp[keep - 1].st_score;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007177 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007178 return maxscore;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007179}
7180
7181/*
7182 * Turn "inword" into its sound-a-like equivalent in "res[MAXWLEN]".
7183 */
7184 static void
7185spell_soundfold(slang, inword, res)
7186 slang_T *slang;
7187 char_u *inword;
7188 char_u *res;
7189{
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007190 salitem_T *smp;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007191 char_u word[MAXWLEN];
7192#ifdef FEAT_MBYTE
7193 int l;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007194 int found_mbyte = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007195#endif
7196 char_u *s;
7197 char_u *t;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007198 char_u *pf;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007199 int i, j, z;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007200 int reslen;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007201 int n, k = 0;
7202 int z0;
7203 int k0;
7204 int n0;
7205 int c;
7206 int pri;
7207 int p0 = -333;
7208 int c0;
7209
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007210 /* Remove accents, if wanted. We actually remove all non-word characters.
7211 * But keep white space. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007212 if (slang->sl_rem_accents)
7213 {
7214 t = word;
7215 for (s = inword; *s != NUL; )
7216 {
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007217 if (vim_iswhite(*s))
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007218 {
7219 *t++ = ' ';
7220 s = skipwhite(s);
7221 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007222#ifdef FEAT_MBYTE
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007223 else if (has_mbyte)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007224 {
7225 l = mb_ptr2len_check(s);
7226 if (SPELL_ISWORDP(s))
7227 {
7228 mch_memmove(t, s, l);
7229 t += l;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007230 if (l > 1)
7231 found_mbyte = TRUE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007232 }
7233 s += l;
7234 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007235#endif
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007236 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007237 {
7238 if (SPELL_ISWORDP(s))
7239 *t++ = *s;
7240 ++s;
7241 }
7242 }
7243 *t = NUL;
7244 }
7245 else
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007246 {
7247#ifdef FEAT_MBYTE
7248 if (has_mbyte)
7249 for (s = inword; *s != NUL; s += l)
7250 if ((l = mb_ptr2len_check(s)) > 1)
7251 {
7252 found_mbyte = TRUE;
7253 break;
7254 }
7255#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007256 STRCPY(word, inword);
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007257 }
7258
7259#ifdef FEAT_MBYTE
7260 /* If there are multi-byte characters in the word return it as-is, because
7261 * the following won't work. */
7262 if (found_mbyte)
7263 {
7264 STRCPY(res, word);
7265 return;
7266 }
7267#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007268
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007269 smp = (salitem_T *)slang->sl_sal.ga_data;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007270
7271 /*
7272 * This comes from Aspell phonet.cpp. Converted from C++ to C.
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007273 * Changed to keep spaces.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007274 * TODO: support for multi-byte chars.
7275 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007276 i = reslen = z = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007277 while ((c = word[i]) != NUL)
7278 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007279 /* Start with the first rule that has the character in the word. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007280 n = slang->sl_sal_first[c];
7281 z0 = 0;
7282
7283 if (n >= 0)
7284 {
7285 /* check all rules for the same letter */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007286 for (; (s = smp[n].sm_lead)[0] == c; ++n)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007287 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007288 /* Quickly skip entries that don't match the word. Most
7289 * entries are less then three chars, optimize for that. */
7290 k = smp[n].sm_leadlen;
7291 if (k > 1)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007292 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007293 if (word[i + 1] != s[1])
7294 continue;
7295 if (k > 2)
7296 {
7297 for (j = 2; j < k; ++j)
7298 if (word[i + j] != s[j])
7299 break;
7300 if (j < k)
7301 continue;
7302 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007303 }
7304
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007305 if ((pf = smp[n].sm_oneoff) != NULL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007306 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007307 /* Check for match with one of the chars in "sm_oneoff". */
7308 while (*pf != NUL && *pf != word[i + k])
7309 ++pf;
7310 if (*pf == NUL)
7311 continue;
7312 ++k;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007313 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007314 s = smp[n].sm_rules;
7315 pri = 5; /* default priority */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007316
7317 p0 = *s;
7318 k0 = k;
7319 while (*s == '-' && k > 1)
7320 {
7321 k--;
7322 s++;
7323 }
7324 if (*s == '<')
7325 s++;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007326 if (VIM_ISDIGIT(*s))
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007327 {
7328 /* determine priority */
7329 pri = *s - '0';
7330 s++;
7331 }
7332 if (*s == '^' && *(s + 1) == '^')
7333 s++;
7334
7335 if (*s == NUL
7336 || (*s == '^'
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007337 && (i == 0 || !(word[i - 1] == ' '
7338 || SPELL_ISWORDP(word + i - 1)))
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007339 && (*(s + 1) != '$'
7340 || (!SPELL_ISWORDP(word + i + k0))))
7341 || (*s == '$' && i > 0
7342 && SPELL_ISWORDP(word + i - 1)
7343 && (!SPELL_ISWORDP(word + i + k0))))
7344 {
7345 /* search for followup rules, if: */
7346 /* followup and k > 1 and NO '-' in searchstring */
7347 c0 = word[i + k - 1];
7348 n0 = slang->sl_sal_first[c0];
7349
7350 if (slang->sl_followup && k > 1 && n0 >= 0
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007351 && p0 != '-' && word[i + k] != NUL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007352 {
7353 /* test follow-up rule for "word[i + k]" */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007354 for ( ; (s = smp[n0].sm_lead)[0] == c0; ++n0)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007355 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007356 /* Quickly skip entries that don't match the word.
7357 * */
7358 k0 = smp[n0].sm_leadlen;
7359 if (k0 > 1)
7360 {
7361 if (word[i + k] != s[1])
7362 continue;
7363 if (k0 > 2)
7364 {
7365 pf = word + i + k + 1;
7366 for (j = 2; j < k0; ++j)
7367 if (*pf++ != s[j])
7368 break;
7369 if (j < k0)
7370 continue;
7371 }
7372 }
7373 k0 += k - 1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007374
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007375 if ((pf = smp[n0].sm_oneoff) != NULL)
7376 {
7377 /* Check for match with one of the chars in
7378 * "sm_oneoff". */
7379 while (*pf != NUL && *pf != word[i + k0])
7380 ++pf;
7381 if (*pf == NUL)
7382 continue;
7383 ++k0;
7384 }
7385
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007386 p0 = 5;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007387 s = smp[n0].sm_rules;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007388 while (*s == '-')
7389 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007390 /* "k0" gets NOT reduced because
7391 * "if (k0 == k)" */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007392 s++;
7393 }
7394 if (*s == '<')
7395 s++;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007396 if (VIM_ISDIGIT(*s))
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007397 {
7398 p0 = *s - '0';
7399 s++;
7400 }
7401
7402 if (*s == NUL
7403 /* *s == '^' cuts */
7404 || (*s == '$'
7405 && !SPELL_ISWORDP(word + i + k0)))
7406 {
7407 if (k0 == k)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007408 /* this is just a piece of the string */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007409 continue;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007410
7411 if (p0 < pri)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007412 /* priority too low */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007413 continue;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007414 /* rule fits; stop search */
7415 break;
7416 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007417 }
7418
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007419 if (p0 >= pri && smp[n0].sm_lead[0] == c0)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007420 continue;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007421 }
7422
7423 /* replace string */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007424 s = smp[n].sm_to;
7425 pf = smp[n].sm_rules;
7426 p0 = (vim_strchr(pf, '<') != NULL) ? 1 : 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007427 if (p0 == 1 && z == 0)
7428 {
7429 /* rule with '<' is used */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007430 if (reslen > 0 && *s != NUL && (res[reslen - 1] == c
7431 || res[reslen - 1] == *s))
7432 reslen--;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007433 z0 = 1;
7434 z = 1;
7435 k0 = 0;
7436 while (*s != NUL && word[i+k0] != NUL)
7437 {
7438 word[i + k0] = *s;
7439 k0++;
7440 s++;
7441 }
7442 if (k > k0)
7443 mch_memmove(word + i + k0, word + i + k,
7444 STRLEN(word + i + k) + 1);
7445
7446 /* new "actual letter" */
7447 c = word[i];
7448 }
7449 else
7450 {
7451 /* no '<' rule used */
7452 i += k - 1;
7453 z = 0;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007454 while (*s != NUL && s[1] != NUL && reslen < MAXWLEN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007455 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007456 if (reslen == 0 || res[reslen - 1] != *s)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007457 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007458 res[reslen] = *s;
7459 reslen++;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007460 }
7461 s++;
7462 }
7463 /* new "actual letter" */
7464 c = *s;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007465 if (strstr((char *)pf, "^^") != NULL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007466 {
7467 if (c != NUL)
7468 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007469 res[reslen] = c;
7470 reslen++;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007471 }
7472 mch_memmove(word, word + i + 1,
7473 STRLEN(word + i + 1) + 1);
7474 i = 0;
7475 z0 = 1;
7476 }
7477 }
7478 break;
7479 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007480 }
7481 }
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007482 else if (vim_iswhite(c))
7483 {
7484 c = ' ';
7485 k = 1;
7486 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007487
7488 if (z0 == 0)
7489 {
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007490 if (k && !p0 && reslen < MAXWLEN && c != NUL
7491 && (!slang->sl_collapse || reslen == 0
7492 || res[reslen - 1] != c))
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007493 {
7494 /* condense only double letters */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007495 res[reslen] = c;
7496 reslen++;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007497 }
7498
7499 i++;
7500 z = 0;
7501 k = 0;
7502 }
7503 }
7504
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007505 res[reslen] = NUL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007506}
7507
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007508/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007509 * Compute a score for two sound-a-like words.
7510 * This permits up to two inserts/deletes/swaps/etc. to keep things fast.
7511 * Instead of a generic loop we write out the code. That keeps it fast by
7512 * avoiding checks that will not be possible.
7513 */
7514 static int
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007515soundalike_score(goodstart, badstart)
7516 char_u *goodstart; /* sound-folded good word */
7517 char_u *badstart; /* sound-folded bad word */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007518{
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007519 char_u *goodsound = goodstart;
7520 char_u *badsound = badstart;
7521 int goodlen;
7522 int badlen;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007523 int n;
7524 char_u *pl, *ps;
7525 char_u *pl2, *ps2;
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007526 int score = 0;
7527
7528 /* adding/inserting "*" at the start (word starts with vowel) shouldn't be
7529 * counted so much, vowels halfway the word aren't counted at all. */
7530 if ((*badsound == '*' || *goodsound == '*') && *badsound != *goodsound)
7531 {
7532 score = SCORE_DEL / 2;
7533 if (*badsound == '*')
7534 ++badsound;
7535 else
7536 ++goodsound;
7537 }
7538
7539 goodlen = STRLEN(goodsound);
7540 badlen = STRLEN(badsound);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007541
7542 /* Return quickly if the lenghts are too different to be fixed by two
7543 * changes. */
7544 n = goodlen - badlen;
7545 if (n < -2 || n > 2)
7546 return SCORE_MAXMAX;
7547
7548 if (n > 0)
7549 {
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007550 pl = goodsound; /* goodsound is longest */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007551 ps = badsound;
7552 }
7553 else
7554 {
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007555 pl = badsound; /* badsound is longest */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007556 ps = goodsound;
7557 }
7558
7559 /* Skip over the identical part. */
7560 while (*pl == *ps && *pl != NUL)
7561 {
7562 ++pl;
7563 ++ps;
7564 }
7565
7566 switch (n)
7567 {
7568 case -2:
7569 case 2:
7570 /*
7571 * Must delete two characters from "pl".
7572 */
7573 ++pl; /* first delete */
7574 while (*pl == *ps)
7575 {
7576 ++pl;
7577 ++ps;
7578 }
7579 /* strings must be equal after second delete */
7580 if (STRCMP(pl + 1, ps) == 0)
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007581 return score + SCORE_DEL * 2;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007582
7583 /* Failed to compare. */
7584 break;
7585
7586 case -1:
7587 case 1:
7588 /*
7589 * Minimal one delete from "pl" required.
7590 */
7591
7592 /* 1: delete */
7593 pl2 = pl + 1;
7594 ps2 = ps;
7595 while (*pl2 == *ps2)
7596 {
7597 if (*pl2 == NUL) /* reached the end */
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007598 return score + SCORE_DEL;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007599 ++pl2;
7600 ++ps2;
7601 }
7602
7603 /* 2: delete then swap, then rest must be equal */
7604 if (pl2[0] == ps2[1] && pl2[1] == ps2[0]
7605 && STRCMP(pl2 + 2, ps2 + 2) == 0)
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007606 return score + SCORE_DEL + SCORE_SWAP;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007607
7608 /* 3: delete then substitute, then the rest must be equal */
7609 if (STRCMP(pl2 + 1, ps2 + 1) == 0)
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007610 return score + SCORE_DEL + SCORE_SUBST;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007611
7612 /* 4: first swap then delete */
7613 if (pl[0] == ps[1] && pl[1] == ps[0])
7614 {
7615 pl2 = pl + 2; /* swap, skip two chars */
7616 ps2 = ps + 2;
7617 while (*pl2 == *ps2)
7618 {
7619 ++pl2;
7620 ++ps2;
7621 }
7622 /* delete a char and then strings must be equal */
7623 if (STRCMP(pl2 + 1, ps2) == 0)
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007624 return score + SCORE_SWAP + SCORE_DEL;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007625 }
7626
7627 /* 5: first substitute then delete */
7628 pl2 = pl + 1; /* substitute, skip one char */
7629 ps2 = ps + 1;
7630 while (*pl2 == *ps2)
7631 {
7632 ++pl2;
7633 ++ps2;
7634 }
7635 /* delete a char and then strings must be equal */
7636 if (STRCMP(pl2 + 1, ps2) == 0)
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007637 return score + SCORE_SUBST + SCORE_DEL;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007638
7639 /* Failed to compare. */
7640 break;
7641
7642 case 0:
7643 /*
7644 * Lenghts are equal, thus changes must result in same length: An
7645 * insert is only possible in combination with a delete.
7646 * 1: check if for identical strings
7647 */
7648 if (*pl == NUL)
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007649 return score;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007650
7651 /* 2: swap */
7652 if (pl[0] == ps[1] && pl[1] == ps[0])
7653 {
7654 pl2 = pl + 2; /* swap, skip two chars */
7655 ps2 = ps + 2;
7656 while (*pl2 == *ps2)
7657 {
7658 if (*pl2 == NUL) /* reached the end */
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007659 return score + SCORE_SWAP;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007660 ++pl2;
7661 ++ps2;
7662 }
7663 /* 3: swap and swap again */
7664 if (pl2[0] == ps2[1] && pl2[1] == ps2[0]
7665 && STRCMP(pl2 + 2, ps2 + 2) == 0)
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007666 return score + SCORE_SWAP + SCORE_SWAP;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007667
7668 /* 4: swap and substitute */
7669 if (STRCMP(pl2 + 1, ps2 + 1) == 0)
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007670 return score + SCORE_SWAP + SCORE_SUBST;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007671 }
7672
7673 /* 5: substitute */
7674 pl2 = pl + 1;
7675 ps2 = ps + 1;
7676 while (*pl2 == *ps2)
7677 {
7678 if (*pl2 == NUL) /* reached the end */
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007679 return score + SCORE_SUBST;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007680 ++pl2;
7681 ++ps2;
7682 }
7683
7684 /* 6: substitute and swap */
7685 if (pl2[0] == ps2[1] && pl2[1] == ps2[0]
7686 && STRCMP(pl2 + 2, ps2 + 2) == 0)
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007687 return score + SCORE_SUBST + SCORE_SWAP;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007688
7689 /* 7: substitute and substitute */
7690 if (STRCMP(pl2 + 1, ps2 + 1) == 0)
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007691 return score + SCORE_SUBST + SCORE_SUBST;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007692
7693 /* 8: insert then delete */
7694 pl2 = pl;
7695 ps2 = ps + 1;
7696 while (*pl2 == *ps2)
7697 {
7698 ++pl2;
7699 ++ps2;
7700 }
7701 if (STRCMP(pl2 + 1, ps2) == 0)
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007702 return score + SCORE_INS + SCORE_DEL;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007703
7704 /* 9: delete then insert */
7705 pl2 = pl + 1;
7706 ps2 = ps;
7707 while (*pl2 == *ps2)
7708 {
7709 ++pl2;
7710 ++ps2;
7711 }
7712 if (STRCMP(pl2, ps2 + 1) == 0)
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007713 return score + SCORE_INS + SCORE_DEL;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007714
7715 /* Failed to compare. */
7716 break;
7717 }
7718
7719 return SCORE_MAXMAX;
7720}
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007721
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007722/*
7723 * Compute the "edit distance" to turn "badword" into "goodword". The less
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007724 * deletes/inserts/substitutes/swaps are required the lower the score.
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007725 *
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007726 * The algorithm comes from Aspell editdist.cpp, edit_distance().
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007727 * It has been converted from C++ to C and modified to support multi-byte
7728 * characters.
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007729 */
7730 static int
7731spell_edit_score(badword, goodword)
7732 char_u *badword;
7733 char_u *goodword;
7734{
7735 int *cnt;
7736 int badlen, goodlen;
7737 int j, i;
7738 int t;
7739 int bc, gc;
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007740 int pbc, pgc;
7741#ifdef FEAT_MBYTE
7742 char_u *p;
7743 int wbadword[MAXWLEN];
7744 int wgoodword[MAXWLEN];
7745
7746 if (has_mbyte)
7747 {
7748 /* Get the characters from the multi-byte strings and put them in an
7749 * int array for easy access. */
7750 for (p = badword, badlen = 0; *p != NUL; )
7751 wbadword[badlen++] = mb_ptr2char_adv(&p);
7752 ++badlen;
7753 for (p = goodword, goodlen = 0; *p != NUL; )
7754 wgoodword[goodlen++] = mb_ptr2char_adv(&p);
7755 ++goodlen;
7756 }
7757 else
7758#endif
7759 {
7760 badlen = STRLEN(badword) + 1;
7761 goodlen = STRLEN(goodword) + 1;
7762 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007763
7764 /* We use "cnt" as an array: CNT(badword_idx, goodword_idx). */
7765#define CNT(a, b) cnt[(a) + (b) * (badlen + 1)]
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007766 cnt = (int *)lalloc((long_u)(sizeof(int) * (badlen + 1) * (goodlen + 1)),
7767 TRUE);
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007768 if (cnt == NULL)
7769 return 0; /* out of memory */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007770
7771 CNT(0, 0) = 0;
7772 for (j = 1; j <= goodlen; ++j)
7773 CNT(0, j) = CNT(0, j - 1) + SCORE_DEL;
7774
7775 for (i = 1; i <= badlen; ++i)
7776 {
7777 CNT(i, 0) = CNT(i - 1, 0) + SCORE_INS;
7778 for (j = 1; j <= goodlen; ++j)
7779 {
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007780#ifdef FEAT_MBYTE
7781 if (has_mbyte)
7782 {
7783 bc = wbadword[i - 1];
7784 gc = wgoodword[j - 1];
7785 }
7786 else
7787#endif
7788 {
7789 bc = badword[i - 1];
7790 gc = goodword[j - 1];
7791 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007792 if (bc == gc)
7793 CNT(i, j) = CNT(i - 1, j - 1);
7794 else
7795 {
7796 /* Use a better score when there is only a case difference. */
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007797 if (SPELL_TOFOLD(bc) == SPELL_TOFOLD(gc))
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007798 CNT(i, j) = SCORE_ICASE + CNT(i - 1, j - 1);
7799 else
7800 CNT(i, j) = SCORE_SUBST + CNT(i - 1, j - 1);
7801
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007802 if (i > 1 && j > 1)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007803 {
Bram Moolenaar9f30f502005-06-14 22:01:04 +00007804#ifdef FEAT_MBYTE
7805 if (has_mbyte)
7806 {
7807 pbc = wbadword[i - 2];
7808 pgc = wgoodword[j - 2];
7809 }
7810 else
7811#endif
7812 {
7813 pbc = badword[i - 2];
7814 pgc = goodword[j - 2];
7815 }
7816 if (bc == pgc && pbc == gc)
7817 {
7818 t = SCORE_SWAP + CNT(i - 2, j - 2);
7819 if (t < CNT(i, j))
7820 CNT(i, j) = t;
7821 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007822 }
7823 t = SCORE_DEL + CNT(i - 1, j);
7824 if (t < CNT(i, j))
7825 CNT(i, j) = t;
7826 t = SCORE_INS + CNT(i, j - 1);
7827 if (t < CNT(i, j))
7828 CNT(i, j) = t;
7829 }
7830 }
7831 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +00007832
7833 i = CNT(badlen - 1, goodlen - 1);
7834 vim_free(cnt);
7835 return i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00007836}
Bram Moolenaarcfc6c432005-06-06 21:50:35 +00007837
Bram Moolenaarf417f2b2005-06-23 22:29:21 +00007838/*
7839 * ":spelldump"
7840 */
7841/*ARGSUSED*/
7842 void
7843ex_spelldump(eap)
7844 exarg_T *eap;
7845{
7846 buf_T *buf = curbuf;
7847 langp_T *lp;
7848 slang_T *slang;
7849 idx_T arridx[MAXWLEN];
7850 int curi[MAXWLEN];
7851 char_u word[MAXWLEN];
7852 int c;
7853 char_u *byts;
7854 idx_T *idxs;
7855 linenr_T lnum = 0;
7856 int round;
7857 int depth;
7858 int n;
7859 int flags;
7860
7861 if (no_spell_checking())
7862 return;
7863
7864 /* Create a new empty buffer by splitting the window. */
7865 do_cmdline_cmd((char_u *)"new");
7866 if (!bufempty() || !buf_valid(buf))
7867 return;
7868
7869 for (lp = LANGP_ENTRY(buf->b_langp, 0); lp->lp_slang != NULL; ++lp)
7870 {
7871 slang = lp->lp_slang;
7872
7873 vim_snprintf((char *)IObuff, IOSIZE, "# file: %s", slang->sl_fname);
7874 ml_append(lnum++, IObuff, (colnr_T)0, FALSE);
7875
7876 /* round 1: case-folded tree
7877 * round 2: keep-case tree */
7878 for (round = 1; round <= 2; ++round)
7879 {
7880 if (round == 1)
7881 {
7882 byts = slang->sl_fbyts;
7883 idxs = slang->sl_fidxs;
7884 }
7885 else
7886 {
7887 byts = slang->sl_kbyts;
7888 idxs = slang->sl_kidxs;
7889 }
7890 if (byts == NULL)
7891 continue; /* array is empty */
7892
7893 depth = 0;
7894 arridx[0] = 0;
7895 curi[0] = 1;
7896 while (depth >= 0 && !got_int)
7897 {
7898 if (curi[depth] > byts[arridx[depth]])
7899 {
7900 /* Done all bytes at this node, go up one level. */
7901 --depth;
7902 line_breakcheck();
7903 }
7904 else
7905 {
7906 /* Do one more byte at this node. */
7907 n = arridx[depth] + curi[depth];
7908 ++curi[depth];
7909 c = byts[n];
7910 if (c == 0)
7911 {
7912 /* End of word, deal with the word.
7913 * Don't use keep-case words in the fold-case tree,
7914 * they will appear in the keep-case tree.
7915 * Only use the word when the region matches. */
7916 flags = (int)idxs[n];
7917 if ((round == 2 || (flags & WF_KEEPCAP) == 0)
7918 && ((flags & WF_REGION) == 0
7919 || (((unsigned)flags >> 8)
7920 & lp->lp_region) != 0))
7921 {
7922 word[depth] = NUL;
7923 dump_word(word, round, flags, lnum++);
7924
7925 /* Apply the prefix, if there is one. */
7926 if ((unsigned)flags >> 16 != 0)
7927 lnum = apply_prefixes(slang, word, round,
7928 flags, lnum);
7929 }
7930 }
7931 else
7932 {
7933 /* Normal char, go one level deeper. */
7934 word[depth++] = c;
7935 arridx[depth] = idxs[n];
7936 curi[depth] = 1;
7937 }
7938 }
7939 }
7940 }
7941 }
7942
7943 /* Delete the empty line that we started with. */
7944 if (curbuf->b_ml.ml_line_count > 1)
7945 ml_delete(curbuf->b_ml.ml_line_count, FALSE);
7946
7947 redraw_later(NOT_VALID);
7948}
7949
7950/*
7951 * Dump one word: apply case modifications and append a line to the buffer.
7952 */
7953 static void
7954dump_word(word, round, flags, lnum)
7955 char_u *word;
7956 int round;
7957 int flags;
7958 linenr_T lnum;
7959{
7960 int keepcap = FALSE;
7961 char_u *p;
7962 char_u cword[MAXWLEN];
7963 char_u badword[MAXWLEN + 3];
7964
7965 if (round == 1 && (flags & WF_CAPMASK) != 0)
7966 {
7967 /* Need to fix case according to "flags". */
7968 make_case_word(word, cword, flags);
7969 p = cword;
7970 }
7971 else
7972 {
7973 p = word;
7974 if (round == 2 && (captype(word, NULL) & WF_KEEPCAP) == 0)
7975 keepcap = TRUE;
7976 }
7977
7978 /* Bad word is preceded by "/!" and some other
7979 * flags. */
7980 if ((flags & (WF_BANNED | WF_RARE)) || keepcap)
7981 {
7982 STRCPY(badword, "/");
7983 if (keepcap)
7984 STRCAT(badword, "=");
7985 if (flags & WF_BANNED)
7986 STRCAT(badword, "!");
7987 else if (flags & WF_RARE)
7988 STRCAT(badword, "?");
7989 STRCAT(badword, p);
7990 p = badword;
7991 }
7992
7993 ml_append(lnum, p, (colnr_T)0, FALSE);
7994}
7995
7996/*
7997 * Find matching prefixes for "word". Prepend each to "word" and append
7998 * a line to the buffer.
7999 * Return the updated line number.
8000 */
8001 static linenr_T
8002apply_prefixes(slang, word, round, flags, startlnum)
8003 slang_T *slang;
8004 char_u *word; /* case-folded word */
8005 int round;
8006 int flags; /* flags with prefix ID */
8007 linenr_T startlnum;
8008{
8009 idx_T arridx[MAXWLEN];
8010 int curi[MAXWLEN];
8011 char_u prefix[MAXWLEN];
8012 int c;
8013 char_u *byts;
8014 idx_T *idxs;
8015 linenr_T lnum = startlnum;
8016 int depth;
8017 int n;
8018 int len;
8019 int prefid = (unsigned)flags >> 16;
8020 int i;
8021
8022 byts = slang->sl_pbyts;
8023 idxs = slang->sl_pidxs;
8024 if (byts != NULL) /* array not is empty */
8025 {
8026 /*
8027 * Loop over all prefixes, building them byte-by-byte in prefix[].
8028 * When at the end of a prefix check that it supports "prefid".
8029 */
8030 depth = 0;
8031 arridx[0] = 0;
8032 curi[0] = 1;
8033 while (depth >= 0 && !got_int)
8034 {
8035 len = arridx[depth];
8036 if (curi[depth] > byts[len])
8037 {
8038 /* Done all bytes at this node, go up one level. */
8039 --depth;
8040 line_breakcheck();
8041 }
8042 else
8043 {
8044 /* Do one more byte at this node. */
8045 n = len + curi[depth];
8046 ++curi[depth];
8047 c = byts[n];
8048 if (c == 0)
8049 {
8050 /* End of prefix, find out how many IDs there are. */
8051 for (i = 1; i < len; ++i)
8052 if (byts[n + i] != 0)
8053 break;
8054 curi[depth] += i - 1;
8055
8056 if (valid_word_prefix(i, n, prefid, word, slang))
8057 {
8058 vim_strncpy(prefix + depth, word, MAXWLEN - depth);
8059 dump_word(prefix, round, flags, lnum++);
8060 }
8061 }
8062 else
8063 {
8064 /* Normal char, go one level deeper. */
8065 prefix[depth++] = c;
8066 arridx[depth] = idxs[n];
8067 curi[depth] = 1;
8068 }
8069 }
8070 }
8071 }
8072
8073 return lnum;
8074}
8075
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00008076#endif /* FEAT_SYN_HL */