1 /* $Header: /p/tcsh/cvsroot/tcsh/tw.spell.c,v 3.21 2006/03/02 18:46:45 christos Exp $ */
3 * tw.spell.c: Spell check words
6 * Copyright (c) 1980, 1991 The Regents of the University of California.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 RCSID("$tcsh: tw.spell.c,v 3.21 2006/03/02 18:46:45 christos Exp $")
39 /* spell_me : return corrrectly spelled filename. From K&P spname */
41 spell_me(struct Strbuf
*oldname
, int looking
, Char
*pat
, eChar suf
)
43 struct Strbuf guess
= Strbuf_INIT
, newname
= Strbuf_INIT
;
44 const Char
*old
= oldname
->s
;
49 cleanup_push(&guess
, Strbuf_cleanup
);
50 cleanup_push(&newname
, Strbuf_cleanup
);
52 while (*old
== '/') { /* skip '/' */
53 Strbuf_append1(&newname
, *old
++);
56 /* do not try to correct spelling of single letter words */
57 if (*old
!= '\0' && old
[1] == '\0')
58 Strbuf_append1(&newname
, *old
++);
59 Strbuf_terminate(&newname
);
61 retval
= (StrQcmp(oldname
->s
, newname
.s
) != 0);
62 cleanup_ignore(&newname
);
64 *oldname
= newname
; /* shove it back. */
65 cleanup_until(&guess
);
68 guess
.len
= 0; /* start at beginning of buf */
69 Strbuf_append(&guess
, newname
.s
); /* add current dir if any */
71 for (; *old
!= '/' && *old
!= '\0'; old
++)/* add current file name */
72 Strbuf_append1(&guess
, *old
);
73 Strbuf_terminate(&guess
);
76 * Don't tell t_search we're looking for cmd if no '/' in the name so
77 * far but there are later - or it will look for *all* commands
79 /* (*should* say "looking for directory" whenever '/' is next...) */
80 retval
= t_search(&guess
, SPELL
,
81 looking
== TW_COMMAND
&& (foundslash
|| *old
!= '/') ?
82 TW_COMMAND
: looking
, 1, pat
, suf
);
83 if (retval
>= 4 || retval
< 0) {
84 cleanup_until(&guess
);
85 return -1; /* hopeless */
87 Strbuf_append(&newname
, guess
.s
+ ws
);
91 return (0); /* lint on the vax under mtXinu complains! */
95 #define EQ(s,t) (StrQcmp(s,t) == 0)
98 * spdist() is taken from Kernighan & Pike,
99 * _The_UNIX_Programming_Environment_
100 * and adapted somewhat to correspond better to psychological reality.
101 * (Note the changes to the return values)
103 * According to Pollock and Zamora, CACM April 1984 (V. 27, No. 4),
104 * page 363, the correct order for this is:
105 * OMISSION = TRANSPOSITION > INSERTION > SUBSTITUTION
106 * thus, it was exactly backwards in the old version. -- PWP
110 spdist(const Char
*s
, const Char
*t
)
112 for (; (*s
& TRIM
) == (*t
& TRIM
); t
++, s
++)
114 return 0; /* exact match */
117 if (s
[1] && t
[1] && (*s
& TRIM
) == (t
[1] & TRIM
) &&
118 (*t
& TRIM
) == (s
[1] & TRIM
) && EQ(s
+ 2, t
+ 2))
119 return 1; /* transposition */
120 if (EQ(s
+ 1, t
+ 1))
121 return 3; /* 1 char mismatch */
124 return 2; /* extra character */
126 if (*t
&& EQ(s
, t
+ 1))
127 return 1; /* missing character */
132 spdir(struct Strbuf
*extended_name
, const Char
*tilded_dir
, const Char
*item
,
135 Char
*path
, *s
, oldch
;
138 if (ISDOT(item
) || ISDOTDOT(item
))
141 for (s
= name
; *s
!= 0 && (*s
& TRIM
) == (*item
& TRIM
); s
++, item
++)
143 if (*s
== 0 || s
[1] == 0 || *item
!= 0)
146 path
= xmalloc((Strlen(tilded_dir
) + Strlen(name
) + 1) * sizeof (*path
));
147 (void) Strcpy(path
, tilded_dir
);
153 if (access(p
, F_OK
) == 0) {
154 extended_name
->len
= 0;
155 Strbuf_append(extended_name
, name
);
156 Strbuf_terminate(extended_name
);
157 /* FIXME: *s = oldch? */