1 /* $NetBSD: filecomplete.c,v 1.16 2009/12/28 21:55:38 christos Exp $ */
4 * Copyright (c) 1997 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
33 #if !defined(lint) && !defined(SCCSID)
34 __RCSID("$NetBSD: filecomplete.c,v 1.16 2009/12/28 21:55:38 christos Exp $");
35 #endif /* not lint && not SCCSID */
37 #include <sys/types.h>
58 #include "fcns.h" /* for EL_NUM_FCNS */
60 #include "filecomplete.h"
62 static Char break_chars
[] = { ' ', '\t', '\n', '"', '\\', '\'', '`', '@',
63 '$', '>', '<', '=', ';', '|', '&', '{', '(', '\0' };
66 /********************************/
67 /* completion functions */
70 * does tilde expansion of strings of type ``~user/foo''
71 * if ``user'' isn't valid user name or ``txt'' doesn't start
72 * w/ '~', returns pointer to strdup()ed copy of ``txt''
74 * it's callers's responsibility to free() returned string
77 fn_tilde_expand(const char *txt
)
79 struct passwd pwres
, *pass
;
87 temp
= strchr(txt
+ 1, '/');
89 temp
= strdup(txt
+ 1);
93 len
= temp
- txt
+ 1; /* text until string after slash */
97 (void)strncpy(temp
, txt
+ 1, len
- 2);
101 if (getpwuid_r(getuid(), &pwres
, pwbuf
, sizeof(pwbuf
), &pass
) != 0)
104 if (getpwnam_r(temp
, &pwres
, pwbuf
, sizeof(pwbuf
), &pass
) != 0)
107 free(temp
); /* value no more needed */
109 return (strdup(txt
));
111 /* update pointer txt to point at string immedially following */
115 temp
= malloc(strlen(pass
->pw_dir
) + 1 + strlen(txt
) + 1);
118 (void)sprintf(temp
, "%s/%s", pass
->pw_dir
, txt
);
125 * return first found file name starting by the ``text'' or NULL if no
126 * such file can be found
127 * value of ``state'' is ignored
129 * it's caller's responsibility to free returned string
132 fn_filename_completion_function(const char *text
, int state
)
134 static DIR *dir
= NULL
;
135 static char *filename
= NULL
, *dirname
= NULL
, *dirpath
= NULL
;
136 static size_t filename_len
= 0;
137 struct dirent
*entry
;
141 if (state
== 0 || dir
== NULL
) {
142 temp
= strrchr(text
, '/');
146 nptr
= realloc(filename
, strlen(temp
) + 1);
152 (void)strcpy(filename
, temp
);
153 len
= temp
- text
; /* including last slash */
154 nptr
= realloc(dirname
, len
+ 1);
160 (void)strncpy(dirname
, text
, len
);
166 filename
= strdup(text
);
167 if (filename
== NULL
)
178 /* support for ``~user'' syntax */
181 if (dirname
== NULL
&& (dirname
= strdup("./")) == NULL
)
185 dirpath
= fn_tilde_expand(dirname
);
187 dirpath
= strdup(dirname
);
192 dir
= opendir(dirpath
);
194 return (NULL
); /* cannot open the directory */
196 /* will be used in cycle */
197 filename_len
= filename
? strlen(filename
) : 0;
201 while ((entry
= readdir(dir
)) != NULL
) {
203 if (entry
->d_name
[0] == '.' && (!entry
->d_name
[1]
204 || (entry
->d_name
[1] == '.' && !entry
->d_name
[2])))
206 if (filename_len
== 0)
208 /* otherwise, get first entry where first */
209 /* filename_len characters are equal */
210 if (entry
->d_name
[0] == filename
[0]
211 #if HAVE_STRUCT_DIRENT_D_NAMLEN
212 && entry
->d_namlen
>= filename_len
214 && strlen(entry
->d_name
) >= filename_len
216 && strncmp(entry
->d_name
, filename
,
221 if (entry
) { /* match found */
223 #if HAVE_STRUCT_DIRENT_D_NAMLEN
224 len
= entry
->d_namlen
;
226 len
= strlen(entry
->d_name
);
229 temp
= malloc(strlen(dirname
) + len
+ 1);
232 (void)sprintf(temp
, "%s%s", dirname
, entry
->d_name
);
244 append_char_function(const char *name
)
247 char *expname
= *name
== '~' ? fn_tilde_expand(name
) : NULL
;
248 const char *rs
= " ";
250 if (stat(expname
? expname
: name
, &stbuf
) == -1)
252 if (S_ISDIR(stbuf
.st_mode
))
260 * returns list of completions for text given
261 * non-static for readline.
263 char ** completion_matches(const char *, char *(*)(const char *, int));
265 completion_matches(const char *text
, char *(*genfunc
)(const char *, int))
267 char **match_list
= NULL
, *retstr
, *prevstr
;
268 size_t match_list_len
, max_equal
, which
, i
;
273 while ((retstr
= (*genfunc
) (text
, (int)matches
)) != NULL
) {
274 /* allow for list terminator here */
275 if (matches
+ 3 >= match_list_len
) {
277 while (matches
+ 3 >= match_list_len
)
278 match_list_len
<<= 1;
279 nmatch_list
= realloc(match_list
,
280 match_list_len
* sizeof(char *));
281 if (nmatch_list
== NULL
) {
285 match_list
= nmatch_list
;
288 match_list
[++matches
] = retstr
;
292 return NULL
; /* nothing found */
294 /* find least denominator and insert it to match_list[0] */
296 prevstr
= match_list
[1];
297 max_equal
= strlen(prevstr
);
298 for (; which
<= matches
; which
++) {
299 for (i
= 0; i
< max_equal
&&
300 prevstr
[i
] == match_list
[which
][i
]; i
++)
305 retstr
= malloc(max_equal
+ 1);
306 if (retstr
== NULL
) {
310 (void)strncpy(retstr
, match_list
[1], max_equal
);
311 retstr
[max_equal
] = '\0';
312 match_list
[0] = retstr
;
314 /* add NULL as last pointer to the array */
315 match_list
[matches
+ 1] = (char *) NULL
;
321 * Sort function for qsort(). Just wrapper around strcasecmp().
324 _fn_qsort_string_compare(const void *i1
, const void *i2
)
326 const char *s1
= ((const char * const *)i1
)[0];
327 const char *s2
= ((const char * const *)i2
)[0];
329 return strcasecmp(s1
, s2
);
333 * Display list of strings in columnar format on readline's output stream.
334 * 'matches' is list of strings, 'len' is number of strings in 'matches',
335 * 'max' is maximum length of string in 'matches'.
338 fn_display_match_list (EditLine
*el
, char **matches
, size_t len
, size_t max
)
340 size_t i
, idx
, limit
, count
;
341 int screenwidth
= el
->el_term
.t_size
.h
;
344 * Find out how many entries can be put on one line, count
345 * with two spaces between strings.
347 limit
= screenwidth
/ (max
+ 2);
351 /* how many lines of output */
353 if (count
* limit
< len
)
356 /* Sort the items if they are not already sorted. */
357 qsort(&matches
[1], (size_t)(len
- 1), sizeof(char *),
358 _fn_qsort_string_compare
);
361 for(; count
> 0; count
--) {
362 int more
= limit
> 0 && matches
[0];
363 for(i
= 0; more
; i
++, idx
++) {
364 more
= ++i
< limit
&& matches
[idx
+ 1];
365 (void)fprintf(el
->el_outfile
, "%-*s%s", (int)max
,
366 matches
[idx
], more
? " " : "");
368 (void)fprintf(el
->el_outfile
, "\n");
373 * Complete the word at or before point,
374 * 'what_to_do' says what to do with the completion.
375 * \t means do standard completion.
376 * `?' means list the possible completions.
377 * `*' means insert all of the possible completions.
378 * `!' means to do standard completion, and list all possible completions if
379 * there is more than one.
381 * Note: '*' support is not implemented
382 * '!' could never be invoked
385 fn_complete(EditLine
*el
,
386 char *(*complet_func
)(const char *, int),
387 char **(*attempted_completion_function
)(const char *, int, int),
388 const Char
*word_break
, const Char
*special_prefixes
,
389 const char *(*app_func
)(const char *), size_t query_items
,
390 int *completion_type
, int *over
, int *point
, int *end
)
392 const TYPE(LineInfo
) *li
;
397 int what_to_do
= '\t';
398 int retval
= CC_NORM
;
400 if (el
->el_state
.lastcmd
== el
->el_state
.thiscmd
)
403 /* readline's rl_complete() has to be told what we did... */
404 if (completion_type
!= NULL
)
405 *completion_type
= what_to_do
;
408 complet_func
= fn_filename_completion_function
;
410 app_func
= append_char_function
;
412 /* We now look backwards for the start of a filename/variable word */
413 li
= FUN(el
,line
)(el
);
415 while (ctemp
> li
->buffer
416 && !Strchr(word_break
, ctemp
[-1])
417 && (!special_prefixes
|| !Strchr(special_prefixes
, ctemp
[-1]) ) )
420 len
= li
->cursor
- ctemp
;
421 #if defined(__SSP__) || defined(__SSP_ALL__)
422 temp
= malloc(len
+ 1);
424 temp
= alloca(len
+ 1);
426 (void)Strncpy(temp
, ctemp
, len
);
429 /* these can be used by function called in completion_matches() */
430 /* or (*attempted_completion_function)() */
432 *point
= (int)(li
->cursor
- li
->buffer
);
434 *end
= (int)(li
->lastchar
- li
->buffer
);
436 if (attempted_completion_function
) {
437 int cur_off
= (int)(li
->cursor
- li
->buffer
);
438 matches
= (*attempted_completion_function
) (ct_encode_string(temp
, &el
->el_scratch
),
439 (int)(cur_off
- len
), cur_off
);
442 if (!attempted_completion_function
||
443 (over
!= NULL
&& !*over
&& !matches
))
444 matches
= completion_matches(ct_encode_string(temp
, &el
->el_scratch
), complet_func
);
451 size_t matches_num
, maxlen
, match_len
, match_display
=1;
455 * Only replace the completed string with common part of
456 * possible matches if there is possible completion.
458 if (matches
[0][0] != '\0') {
459 el_deletestr(el
, (int) len
);
460 FUN(el
,insertstr
)(el
,
461 ct_decode_string(matches
[0], &el
->el_scratch
));
464 if (what_to_do
== '?')
465 goto display_matches
;
467 if (matches
[2] == NULL
&& strcmp(matches
[0], matches
[1]) == 0) {
469 * We found exact match. Add a space after
470 * it, unless we do filename completion and the
471 * object is a directory.
473 FUN(el
,insertstr
)(el
,
474 ct_decode_string((*app_func
)(matches
[0]),
476 } else if (what_to_do
== '!') {
479 * More than one match and requested to list possible
483 for(i
= 1, maxlen
= 0; matches
[i
]; i
++) {
484 match_len
= strlen(matches
[i
]);
485 if (match_len
> maxlen
)
490 /* newline to get on next line from command line */
491 (void)fprintf(el
->el_outfile
, "\n");
494 * If there are too many items, ask user for display
497 if (matches_num
> query_items
) {
498 (void)fprintf(el
->el_outfile
,
499 "Display all %zu possibilities? (y or n) ",
501 (void)fflush(el
->el_outfile
);
502 if (getc(stdin
) != 'y')
504 (void)fprintf(el
->el_outfile
, "\n");
508 fn_display_match_list(el
, matches
, matches_num
,
510 retval
= CC_REDISPLAY
;
511 } else if (matches
[0][0]) {
513 * There was some common match, but the name was
514 * not complete enough. Next tab will print possible
519 /* lcd is not a valid object - further specification */
525 /* free elements of array and the array itself */
526 for (i
= 0; matches
[i
]; i
++)
531 #if defined(__SSP__) || defined(__SSP_ALL__)
538 * el-compatible wrapper around rl_complete; needed for key binding
542 _el_fn_complete(EditLine
*el
, int ch
__attribute__((__unused__
)))
544 return (unsigned char)fn_complete(el
, NULL
, NULL
,
545 break_chars
, NULL
, NULL
, 100,
546 NULL
, NULL
, NULL
, NULL
);