2006-11-29 14:21:02 +00:00
/** \file complete.c Functions related to tab-completion.
2005-09-20 13:26:39 +00:00
2009-02-02 22:46:45 +00:00
These functions are used for storing and retrieving tab - completion data , as well as for performing tab - completion .
2005-09-20 13:26:39 +00:00
*/
2006-08-11 01:18:35 +00:00
# include "config.h"
2005-09-20 13:26:39 +00:00
# include <stdlib.h>
# include <stdio.h>
# include <limits.h>
# include <string.h>
# include <wchar.h>
# include <wctype.h>
# include <unistd.h>
# include <sys/types.h>
# include <sys/stat.h>
# include <dirent.h>
# include <errno.h>
# include <termios.h>
# include <ctype.h>
# include <pwd.h>
# include <signal.h>
2006-02-08 15:29:09 +00:00
# include <wchar.h>
2012-02-24 20:13:35 +00:00
# include <pthread.h>
2006-02-28 13:17:16 +00:00
# include "fallback.h"
2005-09-20 13:26:39 +00:00
# include "util.h"
2006-02-28 13:17:16 +00:00
2005-09-20 13:26:39 +00:00
# include "tokenizer.h"
# include "wildcard.h"
# include "proc.h"
# include "parser.h"
# include "function.h"
# include "complete.h"
# include "builtin.h"
# include "env.h"
# include "exec.h"
# include "expand.h"
# include "common.h"
# include "reader.h"
# include "history.h"
# include "intern.h"
2006-01-30 16:51:50 +00:00
# include "parse_util.h"
2007-04-22 09:50:26 +00:00
# include "parser_keywords.h"
2005-09-20 13:26:39 +00:00
# include "wutil.h"
2006-10-19 11:50:23 +00:00
# include "path.h"
2012-01-23 19:42:41 +00:00
# include "builtin_scripts.h"
2005-09-20 13:26:39 +00:00
/*
2006-02-03 21:30:06 +00:00
Completion description strings , mostly for different types of files , such as sockets , block devices , etc .
2005-09-20 13:26:39 +00:00
2006-02-03 21:30:06 +00:00
There are a few more completion description strings defined in
expand . c . Maybe all completion description strings should be defined
in the same file ?
2005-09-20 13:26:39 +00:00
*/
/**
Description for ~ USER completion
*/
2008-01-13 19:32:21 +00:00
# define COMPLETE_USER_DESC _( L"Home for %ls" )
2005-09-20 13:26:39 +00:00
/**
Description for short variables . The value is concatenated to this description
*/
2007-02-17 11:05:55 +00:00
# define COMPLETE_VAR_DESC_VAL _( L"Variable: %ls" )
2005-09-20 13:26:39 +00:00
/**
The maximum number of commands on which to perform description
lookup . The lookup process is quite time consuming , so this should
be set to a pretty low number .
*/
# define MAX_CMD_DESC_LOOKUP 10
/**
Condition cache value returned from hashtable when this condition
2006-02-03 21:30:06 +00:00
has not yet been tested . This value is NULL , so that when the hash
table returns NULL , this wil be seen as an untested condition .
2005-09-20 13:26:39 +00:00
*/
# define CC_NOT_TESTED 0
/**
2006-02-03 21:30:06 +00:00
Condition cache value returned from hashtable when the condition is
met . This can be any value , that is a valid pointer , and that is
different from CC_NOT_TESTED and CC_FALSE .
2005-09-20 13:26:39 +00:00
*/
# define CC_TRUE L"true"
/**
2006-02-03 21:30:06 +00:00
Condition cache value returned from hashtable when the condition is
not met . This can be any value , that is a valid pointer , and that
is different from CC_NOT_TESTED and CC_TRUE .
2005-09-20 13:26:39 +00:00
*/
# define CC_FALSE L"false"
2006-06-07 23:56:01 +00:00
/**
The special cased translation macro for completions . The empty
string needs to be special cased , since it can occur , and should
not be translated . ( Gettext returns the version information as the
response )
*/
2006-11-29 14:18:22 +00:00
# ifdef USE_GETTEXT
2007-10-13 21:26:06 +00:00
# define C_(wstr) ((wcscmp(wstr, L"")==0)?L"":wgettext(wstr))
2006-11-29 14:18:22 +00:00
# else
# define C_(string) (string)
# endif
2006-06-07 23:56:01 +00:00
2009-02-02 22:46:45 +00:00
/**
The maximum amount of time that we ' re willing to spend doing
username tilde completion . This special limit has been coded in
because user lookup can be extremely slow in cases of a humongous
LDAP database . ( Google , I ' m looking at you )
*/
# define MAX_USER_LOOKUP_TIME 0.2
2005-09-20 13:26:39 +00:00
/**
2006-01-30 19:53:10 +00:00
Struct describing a completion option entry .
2005-09-20 13:26:39 +00:00
If short_opt and long_opt are both zero , the comp field must not be
empty and contains a list of arguments to the command .
If either short_opt or long_opt are non - zero , they specify a switch
for the command . If \ c comp is also not empty , it contains a list
2006-02-03 21:30:06 +00:00
of non - switch arguments that may only follow directly after the
2011-12-27 03:18:46 +00:00
specified switch .
2005-09-20 13:26:39 +00:00
*/
typedef struct complete_entry_opt
{
/** Short style option */
wchar_t short_opt ;
/** Long style option */
2012-02-09 00:15:53 +00:00
wcstring long_opt ;
2005-09-20 13:26:39 +00:00
/** Arguments to the option */
2012-02-09 00:15:53 +00:00
wcstring comp ;
2005-09-20 13:26:39 +00:00
/** Description of the completion */
2012-02-09 00:15:53 +00:00
wcstring desc ;
2005-09-20 13:26:39 +00:00
/** Condition under which to use the option */
2012-02-09 00:15:53 +00:00
wcstring condition ;
2006-02-03 21:30:06 +00:00
/** Must be one of the values SHARED, NO_FILES, NO_COMMON,
EXCLUSIVE , and determines how completions should be performed
on the argument after the switch . */
2005-09-20 13:26:39 +00:00
int result_mode ;
/** True if old style long options are used */
int old_mode ;
2007-02-28 21:43:27 +00:00
/** Completion flags */
2012-02-26 02:54:49 +00:00
complete_flags_t flags ;
2012-02-09 00:15:53 +00:00
const wchar_t * localized_desc ( ) const
{
const wchar_t * tmp = desc . c_str ( ) ;
return C_ ( tmp ) ;
}
} complete_entry_opt_t ;
2005-09-20 13:26:39 +00:00
/**
Struct describing a command completion
*/
2012-02-09 00:15:53 +00:00
typedef std : : list < complete_entry_opt_t > option_list_t ;
2012-02-26 21:27:31 +00:00
class completion_entry_t
2005-09-20 13:26:39 +00:00
{
2012-02-26 22:32:06 +00:00
/** List of all options */
option_list_t options ;
2012-02-26 21:27:31 +00:00
2005-09-20 13:26:39 +00:00
/** String containing all short option characters */
2012-02-08 22:47:50 +00:00
wcstring short_opt_str ;
2012-02-09 00:15:53 +00:00
2012-02-26 22:32:06 +00:00
public :
/** Command string */
const wcstring cmd ;
2012-02-09 00:15:53 +00:00
2012-02-26 22:32:06 +00:00
/** True if command is a path */
const bool cmd_is_path ;
2005-09-20 13:26:39 +00:00
/** True if no other options than the ones supplied are possible */
2012-02-26 21:27:31 +00:00
bool authoritative ;
2012-02-26 22:32:06 +00:00
/** Getters for option list. */
option_list_t & get_options ( ) ;
const option_list_t & get_options ( ) const ;
/** Getter for short_opt_str. */
wcstring & get_short_opt_str ( ) ;
const wcstring & get_short_opt_str ( ) const ;
2012-02-26 21:27:31 +00:00
completion_entry_t ( const wcstring & c , bool type , const wcstring & options , bool author ) :
2012-02-26 22:32:06 +00:00
short_opt_str ( options ) ,
2012-02-26 21:27:31 +00:00
cmd ( c ) ,
cmd_is_path ( type ) ,
authoritative ( author )
{
}
2012-02-08 22:47:50 +00:00
} ;
2005-09-20 13:26:39 +00:00
2012-02-08 22:47:50 +00:00
/** Linked list of all completion entries */
typedef std : : list < completion_entry_t * > completion_entry_list_t ;
static completion_entry_list_t completion_entries ;
2012-02-26 22:32:06 +00:00
/** The lock that guards the list of completion entries */
2012-02-24 20:13:35 +00:00
static pthread_mutex_t completion_lock = PTHREAD_MUTEX_INITIALIZER ;
2005-09-20 13:26:39 +00:00
2012-02-26 22:32:06 +00:00
/** The lock that guards the options list of individual completion entries. If both completion_lock and completion_entry_lock are to be taken, completion_lock must be taken first. */
static pthread_mutex_t completion_entry_lock = PTHREAD_MUTEX_INITIALIZER ;
option_list_t & completion_entry_t : : get_options ( ) {
ASSERT_IS_LOCKED ( completion_entry_lock ) ;
return options ;
}
const option_list_t & completion_entry_t : : get_options ( ) const {
ASSERT_IS_LOCKED ( completion_entry_lock ) ;
return options ;
}
wcstring & completion_entry_t : : get_short_opt_str ( ) {
ASSERT_IS_LOCKED ( completion_entry_lock ) ;
return short_opt_str ;
}
const wcstring & completion_entry_t : : get_short_opt_str ( ) const {
ASSERT_IS_LOCKED ( completion_entry_lock ) ;
return short_opt_str ;
}
2005-09-20 13:26:39 +00:00
2012-02-25 02:43:10 +00:00
/** Class representing an attempt to compute completions */
class completer_t {
const complete_type_t type ;
2012-02-26 21:27:31 +00:00
const wcstring initial_cmd ;
2012-02-25 02:43:10 +00:00
std : : vector < completion_t > completions ;
2012-02-27 04:11:34 +00:00
wcstring_list_t commands_to_load ;
2012-02-25 02:43:10 +00:00
2012-02-26 21:27:31 +00:00
/** Table of completions conditions that have already been tested and the corresponding test results */
typedef std : : map < wcstring , bool > condition_cache_t ;
condition_cache_t condition_cache ;
2012-02-25 02:43:10 +00:00
public :
completer_t ( const wcstring & c , complete_type_t t ) :
type ( t ) ,
2012-02-27 04:11:34 +00:00
initial_cmd ( c )
2012-02-25 02:43:10 +00:00
{
}
2012-02-26 02:54:49 +00:00
bool empty ( ) const { return completions . empty ( ) ; }
const std : : vector < completion_t > & get_completions ( void ) { return completions ; }
2012-02-25 02:43:10 +00:00
bool try_complete_variable ( const wcstring & str ) ;
bool try_complete_user ( const wcstring & str ) ;
bool complete_param ( const wcstring & cmd_orig ,
const wcstring & popt ,
const wcstring & str ,
bool use_switches ) ;
2012-02-26 02:54:49 +00:00
void complete_param_expand ( const wcstring & str , bool do_file ) ;
2012-02-25 02:43:10 +00:00
void complete_cmd ( const wcstring & str ,
2012-02-26 02:54:49 +00:00
bool use_function ,
bool use_builtin ,
bool use_command ) ;
2012-02-26 21:27:31 +00:00
void complete_from_args ( const wcstring & str ,
const wcstring & args ,
const wcstring & desc ,
complete_flags_t flags ) ;
void complete_cmd_desc ( const wcstring & str ) ;
2012-02-25 02:43:10 +00:00
2012-02-26 02:54:49 +00:00
bool complete_variable ( const wcstring & str , int start_offset ) ;
2012-02-26 21:27:31 +00:00
bool condition_test ( const wcstring & condition ) ;
2012-02-27 04:11:34 +00:00
2012-03-10 04:16:26 +00:00
expand_flags_t expand_flags ( ) const {
/* Never do command substitution in autosuggestions */
expand_flags_t result = 0 ;
if ( type = = COMPLETE_AUTOSUGGEST )
result | = EXPAND_SKIP_CMDSUBST ;
return result ;
}
2012-02-27 04:11:34 +00:00
void get_commands_to_load ( wcstring_list_t * lst ) {
if ( lst )
lst - > insert ( lst - > end ( ) , commands_to_load . begin ( ) , commands_to_load . end ( ) ) ;
}
2012-02-25 02:43:10 +00:00
} ;
2012-01-26 02:40:08 +00:00
/* Autoloader for completions */
class completion_autoload_t : public autoload_t {
public :
completion_autoload_t ( ) ;
virtual void command_removed ( const wcstring & cmd ) ;
} ;
static completion_autoload_t completion_autoloader ;
/** Constructor */
completion_autoload_t : : completion_autoload_t ( ) : autoload_t ( L " fish_complete_path " ,
internal_completion_scripts ,
sizeof internal_completion_scripts / sizeof * internal_completion_scripts )
{
}
/** Callback when an autoloaded completion is removed */
void completion_autoload_t : : command_removed ( const wcstring & cmd ) {
complete_remove ( cmd . c_str ( ) , COMMAND , 0 , 0 ) ;
}
2012-01-23 19:42:41 +00:00
2007-02-17 11:05:55 +00:00
/**
Create a new completion entry
*/
2012-02-26 02:54:49 +00:00
void completion_allocate ( std : : vector < completion_t > & completions , const wcstring & comp , const wcstring & desc , complete_flags_t flags )
2007-02-17 11:05:55 +00:00
{
2012-02-02 00:27:14 +00:00
completions . push_back ( completion_t ( comp , desc , flags ) ) ;
2007-02-17 11:05:55 +00:00
}
2005-09-20 13:26:39 +00:00
/**
Test if the specified script returns zero . The result is cached , so
that if multiple completions use the same condition , it needs only
be evaluated once . condition_cache_clear must be called after a
completion run to make sure that there are no stale completions .
*/
2012-02-26 21:27:31 +00:00
bool completer_t : : condition_test ( const wcstring & condition )
2012-02-25 02:43:10 +00:00
{
2012-02-09 00:15:53 +00:00
if ( condition . empty ( ) )
2005-09-20 13:26:39 +00:00
{
// fwprintf( stderr, L"No condition specified\n" );
return 1 ;
}
2012-02-25 02:43:10 +00:00
2012-02-26 21:27:31 +00:00
if ( this - > type = = COMPLETE_AUTOSUGGEST )
2012-02-25 02:43:10 +00:00
{
/* Autosuggestion can't support conditions */
return 0 ;
}
ASSERT_IS_MAIN_THREAD ( ) ;
2012-02-09 00:15:53 +00:00
bool test_res ;
2012-02-26 21:27:31 +00:00
condition_cache_t : : iterator cached_entry = condition_cache . find ( condition ) ;
2012-02-09 00:15:53 +00:00
if ( cached_entry = = condition_cache . end ( ) ) {
/* Compute new value and reinsert it */
test_res = ( 0 = = exec_subshell ( condition ) ) ;
condition_cache [ condition ] = test_res ;
} else {
/* Use the old value */
test_res = cached_entry - > second ;
}
return test_res ;
2005-09-20 13:26:39 +00:00
}
2012-02-24 20:13:35 +00:00
/** Search for an exactly matching completion entry. Must be called while locked. */
2012-02-26 21:27:31 +00:00
static completion_entry_t * complete_find_exact_entry ( const wchar_t * cmd , const bool cmd_is_path )
2005-09-20 13:26:39 +00:00
{
2012-02-24 20:13:35 +00:00
ASSERT_IS_LOCKED ( completion_lock ) ;
2012-03-01 22:56:34 +00:00
for ( completion_entry_list_t : : iterator iter = completion_entries . begin ( ) ; iter ! = completion_entries . end ( ) ; + + iter )
2005-09-20 13:26:39 +00:00
{
2012-02-08 22:47:50 +00:00
completion_entry_t * entry = * iter ;
2012-02-26 21:27:31 +00:00
if ( entry - > cmd = = cmd & & cmd_is_path = = entry - > cmd_is_path )
2012-02-08 22:47:50 +00:00
return entry ;
2005-09-20 13:26:39 +00:00
}
2012-02-08 22:47:50 +00:00
return NULL ;
2005-09-20 13:26:39 +00:00
}
2012-02-24 20:13:35 +00:00
/** Locate the specified entry. Create it if it doesn't exist. Must be called while locked. */
2012-02-26 21:27:31 +00:00
static completion_entry_t * complete_get_exact_entry ( const wchar_t * cmd , bool cmd_is_path )
2005-09-20 13:26:39 +00:00
{
2012-02-24 20:13:35 +00:00
ASSERT_IS_LOCKED ( completion_lock ) ;
2012-02-08 22:47:50 +00:00
completion_entry_t * c ;
2006-10-19 11:50:23 +00:00
2012-02-26 21:27:31 +00:00
c = complete_find_exact_entry ( cmd , cmd_is_path ) ;
2006-06-08 00:01:45 +00:00
2012-02-08 22:47:50 +00:00
if ( c = = NULL )
2005-09-20 13:26:39 +00:00
{
2012-02-26 21:27:31 +00:00
c = new completion_entry_t ( cmd , cmd_is_path , L " " , true ) ;
2012-02-08 22:47:50 +00:00
completion_entries . push_front ( c ) ;
2005-09-20 13:26:39 +00:00
}
2007-01-28 13:40:59 +00:00
return c ;
}
2012-02-26 21:27:31 +00:00
void complete_set_authoritative ( const wchar_t * cmd , bool cmd_is_path , bool authoritative )
2007-01-28 13:40:59 +00:00
{
2012-02-08 22:47:50 +00:00
completion_entry_t * c ;
2007-01-28 13:40:59 +00:00
CHECK ( cmd , ) ;
2012-02-24 20:13:35 +00:00
scoped_lock lock ( completion_lock ) ;
2012-02-26 21:27:31 +00:00
c = complete_get_exact_entry ( cmd , cmd_is_path ) ;
2007-08-01 17:35:24 +00:00
c - > authoritative = authoritative ;
2007-01-28 13:40:59 +00:00
}
2007-01-28 03:24:16 +00:00
2007-01-28 13:40:59 +00:00
void complete_add ( const wchar_t * cmd ,
2012-02-26 21:27:31 +00:00
bool cmd_is_path ,
2007-01-28 13:40:59 +00:00
wchar_t short_opt ,
const wchar_t * long_opt ,
int old_mode ,
int result_mode ,
const wchar_t * condition ,
const wchar_t * comp ,
2007-02-28 21:43:27 +00:00
const wchar_t * desc ,
2012-02-26 02:54:49 +00:00
complete_flags_t flags )
2007-01-28 13:40:59 +00:00
{
CHECK ( cmd , ) ;
2012-02-24 20:13:35 +00:00
2012-02-26 22:32:06 +00:00
/* Lock the lock that allows us to edit the completion entry list */
2012-02-24 20:13:35 +00:00
scoped_lock lock ( completion_lock ) ;
2012-02-09 00:15:53 +00:00
completion_entry_t * c ;
2012-02-26 21:27:31 +00:00
c = complete_get_exact_entry ( cmd , cmd_is_path ) ;
2012-02-09 00:15:53 +00:00
2012-02-26 22:32:06 +00:00
/* Lock the lock that allows us to edit individual completion entries */
scoped_lock lock2 ( completion_entry_lock ) ;
option_list_t & options = c - > get_options ( ) ;
options . push_front ( complete_entry_opt_t ( ) ) ;
complete_entry_opt_t & opt = options . front ( ) ;
2012-02-09 00:15:53 +00:00
2007-01-28 13:40:59 +00:00
if ( short_opt ! = L ' \0 ' )
{
int len = 1 + ( ( result_mode & NO_COMMON ) ! = 0 ) ;
2012-02-08 22:47:50 +00:00
2012-02-26 22:32:06 +00:00
c - > get_short_opt_str ( ) . push_back ( short_opt ) ;
2007-01-28 13:40:59 +00:00
if ( len = = 2 )
2006-02-19 18:19:32 +00:00
{
2012-02-26 22:32:06 +00:00
c - > get_short_opt_str ( ) . push_back ( L ' : ' ) ;
2006-02-19 18:19:32 +00:00
}
2007-01-28 13:40:59 +00:00
}
2011-12-27 03:18:46 +00:00
2012-02-09 00:15:53 +00:00
opt . short_opt = short_opt ;
opt . result_mode = result_mode ;
opt . old_mode = old_mode ;
if ( comp ) opt . comp = comp ;
if ( condition ) opt . condition = condition ;
if ( long_opt ) opt . long_opt = long_opt ;
if ( desc ) opt . desc = desc ;
opt . flags = flags ;
2005-09-20 13:26:39 +00:00
}
2006-12-13 23:58:38 +00:00
/**
Remove all completion options in the specified entry that match the
2012-02-08 22:47:50 +00:00
specified short / long option strings . Returns true if it is now
2012-02-24 20:13:35 +00:00
empty and should be deleted , false if it ' s not empty . Must be called while locked .
2006-12-13 23:58:38 +00:00
*/
2012-02-08 22:47:50 +00:00
static bool complete_remove_entry ( completion_entry_t * e , wchar_t short_opt , const wchar_t * long_opt )
2005-09-20 13:26:39 +00:00
{
2012-02-24 20:13:35 +00:00
ASSERT_IS_LOCKED ( completion_lock ) ;
2012-02-26 22:32:06 +00:00
ASSERT_IS_LOCKED ( completion_entry_lock ) ;
option_list_t & options = e - > get_options ( ) ;
2006-12-13 23:58:38 +00:00
if ( ( short_opt = = 0 ) & & ( long_opt = = 0 ) )
2005-09-20 13:26:39 +00:00
{
2012-02-26 22:32:06 +00:00
options . clear ( ) ;
2006-12-13 23:58:38 +00:00
}
else
{
2012-02-26 22:32:06 +00:00
/* Lock the lock that allows us to edit individual completion entries */
scoped_lock lock2 ( completion_entry_lock ) ;
for ( option_list_t : : iterator iter = options . begin ( ) ; iter ! = options . end ( ) ; )
2005-09-20 13:26:39 +00:00
{
2012-02-09 00:15:53 +00:00
complete_entry_opt_t & o = * iter ;
if ( short_opt = = o . short_opt | | long_opt = = o . long_opt )
2005-09-20 13:26:39 +00:00
{
2006-12-13 23:58:38 +00:00
/* fwprintf( stderr,
2009-02-02 22:46:45 +00:00
L " remove option -%lc --%ls \n " ,
o - > short_opt ? o - > short_opt : L ' ' ,
o - > long_opt ) ;
2006-12-13 23:58:38 +00:00
*/
2012-02-09 00:15:53 +00:00
if ( o . short_opt )
2005-09-20 13:26:39 +00:00
{
2012-02-26 22:32:06 +00:00
wcstring & short_opt_str = e - > get_short_opt_str ( ) ;
size_t idx = short_opt_str . find ( o . short_opt ) ;
2012-02-08 22:47:50 +00:00
if ( idx ! = wcstring : : npos )
{
/* Consume all colons */
size_t first_non_colon = idx + 1 ;
2012-02-26 22:32:06 +00:00
while ( first_non_colon < short_opt_str . size ( ) & & short_opt_str . at ( first_non_colon ) = = L ' : ' )
2012-02-08 22:47:50 +00:00
first_non_colon + + ;
2012-02-26 22:32:06 +00:00
short_opt_str . erase ( idx , first_non_colon - idx ) ;
2012-02-08 22:47:50 +00:00
}
2005-09-20 13:26:39 +00:00
}
2012-02-09 00:15:53 +00:00
/* Destroy this option and go to the next one */
2012-02-26 22:32:06 +00:00
iter = options . erase ( iter ) ;
2005-09-20 13:26:39 +00:00
}
2006-12-13 23:58:38 +00:00
else
{
2012-02-09 00:15:53 +00:00
/* Just go to the next one */
2012-03-01 22:56:34 +00:00
+ + iter ;
2006-12-13 23:58:38 +00:00
}
}
}
2012-02-26 22:32:06 +00:00
return options . empty ( ) ;
2006-12-13 23:58:38 +00:00
}
void complete_remove ( const wchar_t * cmd ,
2012-02-26 21:27:31 +00:00
bool cmd_is_path ,
2006-12-13 23:58:38 +00:00
wchar_t short_opt ,
const wchar_t * long_opt )
{
CHECK ( cmd , ) ;
2012-02-24 20:13:35 +00:00
scoped_lock lock ( completion_lock ) ;
2012-02-08 22:47:50 +00:00
for ( completion_entry_list_t : : iterator iter = completion_entries . begin ( ) ; iter ! = completion_entries . end ( ) ; ) {
completion_entry_t * e = * iter ;
bool delete_it = false ;
2012-02-26 21:27:31 +00:00
if ( cmd_is_path = = e - > cmd_is_path & & cmd = = e - > cmd ) {
2012-02-08 22:47:50 +00:00
delete_it = complete_remove_entry ( e , short_opt , long_opt ) ;
}
if ( delete_it ) {
/* Delete this entry */
iter = completion_entries . erase ( iter ) ;
delete e ;
} else {
/* Don't delete it */
2012-03-01 22:56:34 +00:00
+ + iter ;
2012-02-08 22:47:50 +00:00
}
2005-09-20 13:26:39 +00:00
}
}
2012-02-11 01:54:21 +00:00
/* Formats an error string by prepending the prefix and then appending the str in single quotes */
static wcstring format_error ( const wchar_t * prefix , const wcstring & str ) {
wcstring result = prefix ;
result . push_back ( L ' \' ' ) ;
result . append ( str ) ;
result . push_back ( L ' \' ' ) ;
return result ;
}
2012-02-08 06:44:10 +00:00
/**
Find the full path and commandname from a command string ' str ' .
*/
static void parse_cmd_string ( const wcstring & str , wcstring & path , wcstring & cmd ) {
if ( ! path_get_path_string ( str , path ) ) {
/** Use the empty string as the 'path' for commands that can not be found. */
path = L " " ;
}
/* Make sure the path is not included in the command */
size_t last_slash = str . find_last_of ( L ' / ' ) ;
if ( last_slash ! = wcstring : : npos ) {
cmd = str . substr ( last_slash + 1 ) ;
} else {
cmd = str ;
}
}
2005-09-20 13:26:39 +00:00
int complete_is_valid_option ( const wchar_t * str ,
const wchar_t * opt ,
2012-02-11 01:54:21 +00:00
wcstring_list_t * errors ,
2012-01-15 22:24:58 +00:00
bool allow_autoload )
2005-09-20 13:26:39 +00:00
{
2012-02-08 06:44:10 +00:00
wcstring cmd , path ;
2005-09-20 13:26:39 +00:00
int found_match = 0 ;
2007-08-01 17:35:24 +00:00
int authoritative = 1 ;
2005-09-20 13:26:39 +00:00
int opt_found = 0 ;
2012-02-09 00:15:53 +00:00
std : : set < wcstring > gnu_match_set ;
2005-09-20 13:26:39 +00:00
int is_gnu_opt = 0 ;
int is_old_opt = 0 ;
int is_short_opt = 0 ;
int is_gnu_exact = 0 ;
2012-03-26 08:21:10 +00:00
size_t gnu_opt_len = 0 ;
2012-02-08 06:44:10 +00:00
std : : vector < char > short_validated ;
2006-02-19 18:19:32 +00:00
2011-12-27 03:18:46 +00:00
2006-06-21 00:48:36 +00:00
CHECK ( str , 0 ) ;
CHECK ( opt , 0 ) ;
2011-12-27 03:18:46 +00:00
2005-09-20 13:26:39 +00:00
/*
Check some generic things like - - and - options .
*/
switch ( wcslen ( opt ) )
{
case 0 :
case 1 :
2006-02-19 18:19:32 +00:00
{
2007-03-24 11:14:55 +00:00
return 1 ;
2006-02-19 18:19:32 +00:00
}
2011-12-27 03:18:46 +00:00
2005-09-20 13:26:39 +00:00
case 2 :
2006-02-19 18:19:32 +00:00
{
2005-09-20 13:26:39 +00:00
if ( wcscmp ( L " -- " , opt ) = = 0 )
2006-02-19 18:19:32 +00:00
{
2005-09-20 13:26:39 +00:00
return 1 ;
2006-02-19 18:19:32 +00:00
}
break ;
}
2005-09-20 13:26:39 +00:00
}
2011-12-27 03:18:46 +00:00
2005-09-20 13:26:39 +00:00
if ( opt [ 0 ] ! = L ' - ' )
{
if ( errors )
2012-02-11 01:54:21 +00:00
errors - > push_back ( L " Option does not begin with a '-' " ) ;
2005-09-20 13:26:39 +00:00
return 0 ;
}
2006-01-30 19:53:10 +00:00
2005-09-20 13:26:39 +00:00
2012-02-08 06:44:10 +00:00
short_validated . resize ( wcslen ( opt ) , 0 ) ;
2005-09-20 13:26:39 +00:00
is_gnu_opt = opt [ 1 ] = = L ' - ' ;
if ( is_gnu_opt )
{
2012-01-05 21:58:48 +00:00
const wchar_t * opt_end = wcschr ( opt , L ' = ' ) ;
2005-09-20 13:26:39 +00:00
if ( opt_end )
2006-02-19 18:19:32 +00:00
{
2005-09-20 13:26:39 +00:00
gnu_opt_len = ( opt_end - opt ) - 2 ;
2006-02-19 18:19:32 +00:00
}
2005-09-20 13:26:39 +00:00
else
2006-02-19 18:19:32 +00:00
{
2005-09-20 13:26:39 +00:00
gnu_opt_len = wcslen ( opt ) - 2 ;
2006-02-19 18:19:32 +00:00
}
2005-09-20 13:26:39 +00:00
}
2011-12-27 03:18:46 +00:00
2012-02-08 06:44:10 +00:00
parse_cmd_string ( str , path , cmd ) ;
2005-09-20 13:26:39 +00:00
/*
Make sure completions are loaded for the specified command
*/
2012-02-27 04:11:34 +00:00
if ( allow_autoload ) {
complete_load ( cmd , false ) ;
}
2012-02-24 20:13:35 +00:00
scoped_lock lock ( completion_lock ) ;
2012-02-26 22:32:06 +00:00
scoped_lock lock2 ( completion_entry_lock ) ;
2012-03-01 22:56:34 +00:00
for ( completion_entry_list_t : : iterator iter = completion_entries . begin ( ) ; iter ! = completion_entries . end ( ) ; + + iter )
2005-09-20 13:26:39 +00:00
{
2012-02-08 22:47:50 +00:00
const completion_entry_t * i = * iter ;
2012-02-26 21:27:31 +00:00
const wcstring & match = i - > cmd_is_path ? path : cmd ;
2005-09-20 13:26:39 +00:00
const wchar_t * a ;
if ( ! wildcard_match ( match , i - > cmd ) )
2006-02-22 15:41:52 +00:00
{
2005-09-20 13:26:39 +00:00
continue ;
2006-02-22 15:41:52 +00:00
}
2011-12-27 03:18:46 +00:00
2005-09-20 13:26:39 +00:00
found_match = 1 ;
2007-08-01 17:35:24 +00:00
if ( ! i - > authoritative )
2005-09-20 13:26:39 +00:00
{
2007-08-01 17:35:24 +00:00
authoritative = 0 ;
2005-09-20 13:26:39 +00:00
break ;
}
2012-02-26 22:32:06 +00:00
const option_list_t & options = i - > get_options ( ) ;
2005-09-20 13:26:39 +00:00
if ( is_gnu_opt )
{
2012-03-01 22:56:34 +00:00
for ( option_list_t : : const_iterator iter = options . begin ( ) ; iter ! = options . end ( ) ; + + iter )
2012-02-09 00:15:53 +00:00
{
const complete_entry_opt_t & o = * iter ;
2012-03-26 08:21:10 +00:00
if ( o . old_mode )
2006-02-22 15:41:52 +00:00
{
2005-09-20 13:26:39 +00:00
continue ;
2006-02-22 15:41:52 +00:00
}
2011-12-27 03:18:46 +00:00
2012-03-26 08:21:10 +00:00
if ( wcsncmp ( & opt [ 2 ] , o . long_opt . c_str ( ) , gnu_opt_len ) = = 0 )
2005-09-20 13:26:39 +00:00
{
2012-02-09 00:15:53 +00:00
gnu_match_set . insert ( o . long_opt ) ;
2005-09-20 13:26:39 +00:00
if ( ( wcsncmp ( & opt [ 2 ] ,
2012-02-09 00:15:53 +00:00
o . long_opt . c_str ( ) ,
o . long_opt . size ( ) ) = = 0 ) )
2006-02-22 15:41:52 +00:00
{
2005-09-20 13:26:39 +00:00
is_gnu_exact = 1 ;
2006-02-22 15:41:52 +00:00
}
2005-09-20 13:26:39 +00:00
}
}
}
else
{
/* Check for old style options */
2012-03-01 22:56:34 +00:00
for ( option_list_t : : const_iterator iter = options . begin ( ) ; iter ! = options . end ( ) ; + + iter )
2005-09-20 13:26:39 +00:00
{
2012-02-09 00:15:53 +00:00
const complete_entry_opt_t & o = * iter ;
if ( ! o . old_mode )
2005-09-20 13:26:39 +00:00
continue ;
2012-02-09 00:15:53 +00:00
if ( wcscmp ( & opt [ 1 ] , o . long_opt . c_str ( ) ) = = 0 )
2005-09-20 13:26:39 +00:00
{
opt_found = 1 ;
is_old_opt = 1 ;
break ;
}
}
if ( is_old_opt )
break ;
for ( a = & opt [ 1 ] ; * a ; a + + )
{
2012-02-26 22:32:06 +00:00
const wcstring & short_opt_str = i - > get_short_opt_str ( ) ;
size_t str_idx = short_opt_str . find ( * a ) ;
if ( str_idx ! = wcstring : : npos )
2005-09-20 13:26:39 +00:00
{
2012-02-26 22:32:06 +00:00
if ( str_idx + 1 < short_opt_str . size ( ) & & short_opt_str . at ( str_idx + 1 ) = = L ' : ' )
2005-09-20 13:26:39 +00:00
{
/*
This is a short option with an embedded argument ,
call complete_is_valid_argument on the argument .
*/
wchar_t nopt [ 3 ] ;
nopt [ 0 ] = L ' - ' ;
nopt [ 1 ] = opt [ 1 ] ;
nopt [ 2 ] = L ' \0 ' ;
2012-02-08 06:44:10 +00:00
short_validated . at ( a - opt ) =
2005-09-20 13:26:39 +00:00
complete_is_valid_argument ( str , nopt , & opt [ 2 ] ) ;
}
else
{
2012-02-08 06:44:10 +00:00
short_validated . at ( a - opt ) = 1 ;
2005-09-20 13:26:39 +00:00
}
}
}
}
}
2007-08-01 17:35:24 +00:00
if ( authoritative )
2005-09-20 13:26:39 +00:00
{
if ( ! is_gnu_opt & & ! is_old_opt )
is_short_opt = 1 ;
if ( is_short_opt )
{
2012-01-14 07:44:18 +00:00
size_t j ;
2005-09-20 13:26:39 +00:00
opt_found = 1 ;
for ( j = 1 ; j < wcslen ( opt ) ; j + + )
{
2012-02-08 06:44:10 +00:00
if ( ! short_validated . at ( j ) )
2005-09-20 13:26:39 +00:00
{
if ( errors )
{
wchar_t str [ 2 ] ;
str [ 0 ] = opt [ j ] ;
str [ 1 ] = 0 ;
2012-02-11 01:54:21 +00:00
errors - > push_back ( format_error ( _ ( L " Unknown option: " ) , str ) ) ;
2005-09-20 13:26:39 +00:00
}
opt_found = 0 ;
break ;
}
}
}
if ( is_gnu_opt )
{
2012-02-09 00:15:53 +00:00
opt_found = is_gnu_exact | | ( gnu_match_set . size ( ) = = 1 ) ;
2005-09-20 13:26:39 +00:00
if ( errors & & ! opt_found )
{
2012-02-11 01:54:21 +00:00
const wchar_t * prefix ;
if ( gnu_match_set . empty ( ) )
2005-09-20 13:26:39 +00:00
{
2012-02-11 01:54:21 +00:00
prefix = _ ( L " Unknown option: " ) ;
2005-09-20 13:26:39 +00:00
}
else
{
2012-02-11 01:54:21 +00:00
prefix = _ ( L " Multiple matches for option: " ) ;
2005-09-20 13:26:39 +00:00
}
2012-02-11 01:54:21 +00:00
errors - > push_back ( format_error ( prefix , opt ) ) ;
2005-09-20 13:26:39 +00:00
}
}
}
2012-01-15 22:24:58 +00:00
return ( authoritative & & found_match ) ? opt_found : 1 ;
2005-09-20 13:26:39 +00:00
}
int complete_is_valid_argument ( const wchar_t * str ,
const wchar_t * opt ,
const wchar_t * arg )
{
return 1 ;
}
/**
Copy any strings in possible_comp which have the specified prefix
2007-02-18 23:25:20 +00:00
to the list comp_out . The prefix may contain wildcards . The output
will consist of completion_t structs .
2005-09-20 13:26:39 +00:00
There are three ways to specify descriptions for each
completion . Firstly , if a description has already been added to the
completion , it is _not_ replaced . Secondly , if the desc_func
function is specified , use it to determine a dynamic
completion . Thirdly , if none of the above are available , the desc
string is used as a description .
\ param comp_out the destination list
\ param wc_escaped the prefix , possibly containing wildcards . The wildcard should not have been unescaped , i . e . ' * ' should be used for any string , not the ANY_STRING character .
2006-01-09 17:17:25 +00:00
\ param desc the default description , used for completions with no embedded description . The description _may_ contain a COMPLETE_SEP character , if not , one will be prefixed to it
2005-09-20 13:26:39 +00:00
\ param desc_func the function that generates a description for those completions witout an embedded description
\ param possible_comp the list of possible completions to iterate over
*/
2007-02-17 11:05:55 +00:00
2012-01-16 16:56:47 +00:00
static void complete_strings ( std : : vector < completion_t > & comp_out ,
2007-02-17 11:05:55 +00:00
const wchar_t * wc_escaped ,
const wchar_t * desc ,
2012-02-19 17:25:15 +00:00
const wchar_t * ( * desc_func ) ( const wcstring & ) ,
2012-01-16 16:56:47 +00:00
std : : vector < completion_t > & possible_comp ,
2012-02-26 02:54:49 +00:00
complete_flags_t flags )
2007-02-17 11:05:55 +00:00
{
2012-01-30 10:23:58 +00:00
wcstring tmp = wc_escaped ;
if ( ! expand_one ( tmp , EXPAND_SKIP_CMDSUBST | EXPAND_SKIP_WILDCARDS ) )
return ;
const wchar_t * wc = parse_util_unescape_wildcards ( tmp . c_str ( ) ) ;
2011-12-27 03:18:46 +00:00
2012-01-30 06:06:58 +00:00
for ( size_t i = 0 ; i < possible_comp . size ( ) ; i + + )
2007-02-17 11:05:55 +00:00
{
2012-01-16 16:56:47 +00:00
wcstring temp = possible_comp . at ( i ) . completion ;
const wchar_t * next_str = temp . empty ( ) ? NULL : temp . c_str ( ) ;
2007-04-20 19:55:06 +00:00
2007-02-17 11:05:55 +00:00
if ( next_str )
2007-02-24 08:11:31 +00:00
{
2007-02-25 10:37:15 +00:00
wildcard_complete ( next_str , wc , desc , desc_func , comp_out , flags ) ;
2007-02-24 08:11:31 +00:00
}
2007-02-17 11:05:55 +00:00
}
2012-01-30 10:23:58 +00:00
free ( ( void * ) wc ) ;
2007-02-17 11:05:55 +00:00
}
2005-09-20 13:26:39 +00:00
/**
If command to complete is short enough , substitute
the description with the whatis information for the executable .
*/
2012-02-26 21:27:31 +00:00
void completer_t : : complete_cmd_desc ( const wcstring & str )
2005-09-20 13:26:39 +00:00
{
2012-02-24 20:13:35 +00:00
ASSERT_IS_MAIN_THREAD ( ) ;
2005-09-20 13:26:39 +00:00
const wchar_t * cmd_start ;
int cmd_len ;
2006-11-16 13:04:00 +00:00
int skip ;
2011-12-27 03:18:46 +00:00
2012-02-26 21:27:31 +00:00
const wchar_t * const cmd = str . c_str ( ) ;
2006-01-09 17:17:25 +00:00
cmd_start = wcsrchr ( cmd , L ' / ' ) ;
if ( cmd_start )
cmd_start + + ;
else
2005-09-20 13:26:39 +00:00
cmd_start = cmd ;
2006-01-30 19:53:10 +00:00
2005-09-20 13:26:39 +00:00
cmd_len = wcslen ( cmd_start ) ;
/*
Using apropos with a single - character search term produces far
to many results - require at least two characters if we don ' t
know the location of the whatis - database .
*/
2006-02-03 17:27:36 +00:00
if ( cmd_len < 2 )
2005-09-20 13:26:39 +00:00
return ;
if ( wildcard_has ( cmd_start , 0 ) )
{
return ;
}
2006-01-30 19:53:10 +00:00
2006-11-16 13:04:00 +00:00
skip = 1 ;
2011-12-27 03:18:46 +00:00
2012-02-26 21:27:31 +00:00
for ( size_t i = 0 ; i < this - > completions . size ( ) ; i + + )
2006-11-16 13:04:00 +00:00
{
2012-02-26 21:27:31 +00:00
const completion_t & c = this - > completions . at ( i ) ;
2011-12-27 03:18:46 +00:00
2012-01-16 16:56:47 +00:00
if ( c . completion . empty ( ) | | ( c . completion [ c . completion . size ( ) - 1 ] ! = L ' / ' ) )
2006-11-16 13:04:00 +00:00
{
skip = 0 ;
break ;
}
2011-12-27 03:18:46 +00:00
2006-11-16 13:04:00 +00:00
}
2011-12-27 03:18:46 +00:00
2006-11-16 13:04:00 +00:00
if ( skip )
{
return ;
}
2011-12-27 03:18:46 +00:00
2006-11-16 13:04:00 +00:00
2012-02-02 20:04:04 +00:00
wcstring lookup_cmd ( L " __fish_describe_command " ) ;
lookup_cmd . append ( escape_string ( cmd_start , 1 ) ) ;
2005-09-20 13:26:39 +00:00
2012-02-02 20:04:04 +00:00
std : : map < wcstring , wcstring > lookup ;
2006-02-08 15:29:09 +00:00
2006-01-08 02:56:56 +00:00
/*
First locate a list of possible descriptions using a single
call to apropos or a direct search if we know the location
of the whatis database . This can take some time on slower
systems with a large set of manuals , but it should be ok
since apropos is only called once .
*/
2012-02-02 20:04:04 +00:00
wcstring_list_t list ;
2012-02-08 07:35:41 +00:00
if ( exec_subshell ( lookup_cmd , list ) ! = - 1 )
2006-10-19 15:36:03 +00:00
{
2011-12-27 03:18:46 +00:00
2006-10-19 15:36:03 +00:00
/*
Then discard anything that is not a possible completion and put
the result into a hashtable with the completion as key and the
description as value .
2006-01-30 19:53:10 +00:00
2006-10-19 15:36:03 +00:00
Should be reasonably fast , since no memory allocations are needed .
*/
2012-02-02 20:04:04 +00:00
for ( size_t i = 0 ; i < list . size ( ) ; i + + )
2006-10-19 15:36:03 +00:00
{
2012-02-02 20:04:04 +00:00
const wcstring & elstr = list . at ( i ) ;
const wcstring fullkey ( elstr , wcslen ( cmd_start ) ) ;
size_t tab_idx = fullkey . find ( L ' \t ' ) ;
if ( tab_idx = = wcstring : : npos )
2006-10-19 15:36:03 +00:00
continue ;
2012-02-02 20:04:04 +00:00
const wcstring key ( fullkey , 0 , tab_idx ) ;
wcstring val ( fullkey , tab_idx + 1 ) ;
2007-01-07 14:24:30 +00:00
2006-10-19 15:36:03 +00:00
/*
And once again I make sure the first character is uppercased
because I like it that way , and I get to decide these
things .
*/
2012-02-02 20:04:04 +00:00
if ( ! val . empty ( ) )
val [ 0 ] = towupper ( val [ 0 ] ) ;
2011-12-27 03:18:46 +00:00
2012-02-02 20:04:04 +00:00
lookup [ key ] = val ;
2006-10-19 15:36:03 +00:00
}
2006-01-08 02:56:56 +00:00
2006-10-19 15:36:03 +00:00
/*
Then do a lookup on every completion and if a match is found ,
change to the new description .
2006-01-30 19:53:10 +00:00
2006-10-19 15:36:03 +00:00
This needs to do a reallocation for every description added , but
there shouldn ' t be that many completions , so it should be ok .
*/
2012-02-26 21:27:31 +00:00
for ( size_t i = 0 ; i < this - > completions . size ( ) ; i + + )
2006-10-19 15:36:03 +00:00
{
2012-02-26 21:27:31 +00:00
completion_t & completion = this - > completions . at ( i ) ;
2012-02-02 20:04:04 +00:00
const wcstring & el = completion . completion ;
if ( el . empty ( ) )
continue ;
std : : map < wcstring , wcstring > : : iterator new_desc_iter = lookup . find ( el ) ;
if ( new_desc_iter ! = lookup . end ( ) )
completion . description = new_desc_iter - > second ;
2005-09-20 13:26:39 +00:00
}
}
2011-12-27 03:18:46 +00:00
2005-09-20 13:26:39 +00:00
}
2006-06-17 13:07:08 +00:00
/**
Returns a description for the specified function
*/
2012-02-19 17:25:15 +00:00
static const wchar_t * complete_function_desc ( const wcstring & fn )
2006-01-23 23:32:13 +00:00
{
const wchar_t * res = function_get_desc ( fn ) ;
if ( ! res )
res = function_get_definition ( fn ) ;
return res ;
}
2005-09-20 13:26:39 +00:00
/**
Complete the specified command name . Search for executables in the
path , executables defined using an absolute path , functions ,
builtins and directories for implicit cd commands .
\ param cmd the command string to find completions for
2006-01-23 23:33:47 +00:00
\ param comp the list to add all completions to
2005-09-20 13:26:39 +00:00
*/
2012-02-26 21:27:31 +00:00
void completer_t : : complete_cmd ( const wcstring & str , bool use_function , bool use_builtin , bool use_command )
2005-09-20 13:26:39 +00:00
{
2012-02-26 21:27:31 +00:00
const wchar_t * const cmd = str . c_str ( ) ;
2005-09-20 13:26:39 +00:00
wchar_t * path_cpy ;
wchar_t * nxt_path ;
wchar_t * state ;
2012-01-16 16:56:47 +00:00
std : : vector < completion_t > possible_comp ;
2006-01-30 19:53:10 +00:00
2012-02-08 19:48:51 +00:00
wchar_t * cdpath_cpy = wcsdup ( L " . " ) ;
2006-01-30 19:53:10 +00:00
2012-02-24 20:13:35 +00:00
const bool wants_description = ( type = = COMPLETE_DEFAULT ) ;
2005-09-20 13:26:39 +00:00
if ( ( wcschr ( cmd , L ' / ' ) ! = 0 ) | | ( cmd [ 0 ] = = L ' ~ ' ) )
{
2006-01-30 19:53:10 +00:00
2012-02-24 20:13:35 +00:00
if ( use_command & & wants_description )
2005-12-03 16:43:56 +00:00
{
2011-12-27 03:18:46 +00:00
2012-03-10 04:16:26 +00:00
if ( expand_string ( str , this - > completions , ACCEPT_INCOMPLETE | EXECUTABLES_ONLY | this - > expand_flags ( ) ) ! = EXPAND_ERROR )
2006-12-14 00:03:26 +00:00
{
2012-02-26 21:27:31 +00:00
this - > complete_cmd_desc ( str ) ;
2006-12-14 00:03:26 +00:00
}
2005-12-03 16:43:56 +00:00
}
2005-09-20 13:26:39 +00:00
}
else
{
2006-12-14 00:03:26 +00:00
if ( use_command )
2005-09-20 13:26:39 +00:00
{
2011-12-27 03:18:46 +00:00
2012-01-14 10:42:17 +00:00
const env_var_t path = env_get_string ( L " PATH " ) ;
if ( ! path . missing ( ) )
2005-09-20 13:26:39 +00:00
{
2011-12-27 03:18:46 +00:00
2012-01-09 20:10:03 +00:00
path_cpy = wcsdup ( path . c_str ( ) ) ;
2011-12-27 03:18:46 +00:00
2006-12-14 00:03:26 +00:00
for ( nxt_path = wcstok ( path_cpy , ARRAY_SEP_STR , & state ) ;
2007-10-28 09:06:05 +00:00
nxt_path ! = 0 ;
nxt_path = wcstok ( 0 , ARRAY_SEP_STR , & state ) )
2006-12-14 00:03:26 +00:00
{
2012-01-30 07:22:42 +00:00
size_t prev_count ;
2007-10-28 09:06:05 +00:00
int path_len = wcslen ( nxt_path ) ;
int add_slash ;
2011-12-27 03:18:46 +00:00
2007-10-28 09:06:05 +00:00
if ( ! path_len )
{
continue ;
}
2012-01-18 18:33:19 +00:00
2007-10-28 09:06:05 +00:00
add_slash = nxt_path [ path_len - 1 ] ! = L ' / ' ;
2012-03-01 02:09:20 +00:00
wchar_t * nxt_completion = wcsdupcat ( nxt_path ,
2009-02-02 22:46:45 +00:00
add_slash ? L " / " : L " " ,
cmd ) ;
2006-12-14 00:03:26 +00:00
if ( ! nxt_completion )
continue ;
2011-12-27 03:18:46 +00:00
2012-02-26 21:27:31 +00:00
prev_count = this - > completions . size ( ) ;
2011-12-27 03:18:46 +00:00
2012-02-24 20:13:35 +00:00
if ( expand_string ( nxt_completion ,
2012-02-26 21:27:31 +00:00
this - > completions ,
2012-03-10 04:16:26 +00:00
ACCEPT_INCOMPLETE | EXECUTABLES_ONLY | this - > expand_flags ( ) ) ! = EXPAND_ERROR )
2006-10-04 21:42:04 +00:00
{
2012-02-26 21:27:31 +00:00
for ( size_t i = prev_count ; i < this - > completions . size ( ) ; i + + )
2007-10-28 09:06:05 +00:00
{
2012-02-26 21:27:31 +00:00
completion_t & c = this - > completions . at ( i ) ;
2012-01-16 16:56:47 +00:00
if ( c . flags & COMPLETE_NO_CASE )
2007-10-28 09:06:05 +00:00
{
2012-01-16 16:56:47 +00:00
c . completion + = add_slash ;
2007-10-28 09:06:05 +00:00
}
}
2006-10-04 21:42:04 +00:00
}
2012-03-01 02:09:20 +00:00
free ( nxt_completion ) ;
2006-12-14 00:03:26 +00:00
}
free ( path_cpy ) ;
2012-02-24 20:13:35 +00:00
if ( wants_description )
2012-02-26 21:27:31 +00:00
this - > complete_cmd_desc ( str ) ;
2006-10-18 15:51:51 +00:00
}
2005-09-20 13:26:39 +00:00
}
2011-12-27 03:18:46 +00:00
2005-09-20 13:26:39 +00:00
/*
These return the original strings - don ' t free them
*/
2006-12-14 00:03:26 +00:00
if ( use_function )
{
2012-01-14 07:44:18 +00:00
//function_get_names( &possible_comp, cmd[0] == L'_' );
wcstring_list_t names = function_get_names ( cmd [ 0 ] = = L ' _ ' ) ;
for ( size_t i = 0 ; i < names . size ( ) ; i + + ) {
2012-02-02 00:27:14 +00:00
possible_comp . push_back ( completion_t ( names . at ( i ) ) ) ;
2012-01-14 07:44:18 +00:00
}
2012-02-26 21:27:31 +00:00
complete_strings ( this - > completions , cmd , 0 , & complete_function_desc , possible_comp , 0 ) ;
2006-12-14 00:03:26 +00:00
}
2012-01-16 16:56:47 +00:00
possible_comp . clear ( ) ;
2011-12-27 03:18:46 +00:00
2006-12-14 00:03:26 +00:00
if ( use_builtin )
{
2012-02-01 03:47:56 +00:00
builtin_get_names ( possible_comp ) ;
2012-02-26 21:27:31 +00:00
complete_strings ( this - > completions , cmd , 0 , & builtin_get_desc , possible_comp , 0 ) ;
2006-12-14 00:03:26 +00:00
}
2012-01-16 16:56:47 +00:00
// al_destroy( &possible_comp );
2005-09-20 13:26:39 +00:00
}
2006-12-14 00:03:26 +00:00
if ( use_builtin | | ( use_function & & function_exists ( L " cd " ) ) )
2006-02-08 15:29:09 +00:00
{
2006-12-14 00:03:26 +00:00
/*
Tab complete implicit cd for directories in CDPATH
*/
if ( cmd [ 0 ] ! = L ' / ' & & ( wcsncmp ( cmd , L " ./ " , 2 ) ! = 0 ) )
2005-09-20 13:26:39 +00:00
{
2006-12-14 00:03:26 +00:00
for ( nxt_path = wcstok ( cdpath_cpy , ARRAY_SEP_STR , & state ) ;
nxt_path ! = 0 ;
nxt_path = wcstok ( 0 , ARRAY_SEP_STR , & state ) )
2006-02-19 18:19:32 +00:00
{
2006-12-14 00:03:26 +00:00
wchar_t * nxt_completion =
2007-09-28 21:32:27 +00:00
wcsdupcat ( nxt_path ,
2009-02-02 22:46:45 +00:00
( nxt_path [ wcslen ( nxt_path ) - 1 ] = = L ' / ' ? L " " : L " / " ) ,
cmd ) ;
2006-12-14 00:03:26 +00:00
if ( ! nxt_completion )
{
continue ;
}
2011-12-27 03:18:46 +00:00
2012-02-26 21:27:31 +00:00
if ( expand_string ( nxt_completion ,
this - > completions ,
2012-03-10 04:16:26 +00:00
ACCEPT_INCOMPLETE | DIRECTORIES_ONLY | this - > expand_flags ( ) ) ! = EXPAND_ERROR )
2006-12-14 00:03:26 +00:00
{
}
2012-03-01 02:09:20 +00:00
free ( nxt_completion ) ;
2005-09-20 13:26:39 +00:00
}
2006-02-19 18:19:32 +00:00
}
2005-09-20 13:26:39 +00:00
}
free ( cdpath_cpy ) ;
}
2012-02-25 02:43:10 +00:00
2005-09-20 13:26:39 +00:00
/**
Evaluate the argument list ( as supplied by complete - a ) and insert
2006-01-09 17:40:32 +00:00
any return matching completions . Matching is done using \ c
2005-09-20 13:26:39 +00:00
copy_strings_with_prefix , meaning the completion may contain
wildcards . Logically , this is not always the right thing to do , but
2006-01-09 17:40:32 +00:00
I have yet to come up with a case where this matters .
2006-01-30 19:53:10 +00:00
2005-09-20 13:26:39 +00:00
\ param str The string to complete .
\ param args The list of option arguments to be evaluated .
\ param desc Description of the completion
\ param comp_out The list into which the results will be inserted
*/
2012-02-26 21:27:31 +00:00
void completer_t : : complete_from_args ( const wcstring & str ,
const wcstring & args ,
const wcstring & desc ,
complete_flags_t flags )
2005-09-20 13:26:39 +00:00
{
2012-02-26 02:54:49 +00:00
/* If type is COMPLETE_AUTOSUGGEST, it means we're on a background thread, so don't call proc_push_interactive */
2012-01-16 16:56:47 +00:00
std : : vector < completion_t > possible_comp ;
2006-01-30 19:53:10 +00:00
2012-01-20 19:24:43 +00:00
parser_t parser ( PARSER_TYPE_COMPLETIONS_ONLY ) ;
2012-02-26 02:54:49 +00:00
2012-02-26 21:27:31 +00:00
if ( this - > type ! = COMPLETE_AUTOSUGGEST )
2012-02-26 02:54:49 +00:00
proc_push_interactive ( 0 ) ;
2012-02-09 00:15:53 +00:00
parser . eval_args ( args . c_str ( ) , possible_comp ) ;
2012-01-29 08:41:39 +00:00
2012-02-26 21:27:31 +00:00
if ( this - > type ! = COMPLETE_AUTOSUGGEST )
2012-02-26 02:54:49 +00:00
proc_pop_interactive ( ) ;
2011-12-27 03:18:46 +00:00
2012-02-26 21:27:31 +00:00
complete_strings ( this - > completions , str . c_str ( ) , desc . c_str ( ) , 0 , possible_comp , flags ) ;
2005-09-20 13:26:39 +00:00
}
/**
Match against an old style long option
*/
2012-02-09 00:15:53 +00:00
static int param_match_old ( const complete_entry_opt_t * e ,
2007-01-18 16:45:28 +00:00
const wchar_t * optstr )
2005-09-20 13:26:39 +00:00
{
2012-02-09 00:15:53 +00:00
return ( optstr [ 0 ] = = L ' - ' ) & & ( e - > long_opt = = & optstr [ 1 ] ) ;
2005-09-20 13:26:39 +00:00
}
/**
Match a parameter
*/
2007-01-18 16:45:28 +00:00
static int param_match ( const complete_entry_opt_t * e ,
const wchar_t * optstr )
2005-09-20 13:26:39 +00:00
{
if ( e - > short_opt ! = L ' \0 ' & &
e - > short_opt = = optstr [ 1 ] )
return 1 ;
if ( ! e - > old_mode & & ( wcsncmp ( L " -- " , optstr , 2 ) = = 0 ) )
{
2012-02-09 00:15:53 +00:00
if ( e - > long_opt = = & optstr [ 2 ] )
2005-09-20 13:26:39 +00:00
{
return 1 ;
}
}
return 0 ;
}
/**
Test if a string is an option with an argument , like - - color = auto or - I / usr / include
*/
2007-01-18 16:45:28 +00:00
static wchar_t * param_match2 ( const complete_entry_opt_t * e ,
const wchar_t * optstr )
2005-09-20 13:26:39 +00:00
{
if ( e - > short_opt ! = L ' \0 ' & & e - > short_opt = = optstr [ 1 ] )
2007-01-18 16:45:28 +00:00
return ( wchar_t * ) & optstr [ 2 ] ;
2005-09-20 13:26:39 +00:00
if ( ! e - > old_mode & & ( wcsncmp ( L " -- " , optstr , 2 ) = = 0 ) )
{
2012-02-09 00:15:53 +00:00
size_t len = e - > long_opt . size ( ) ;
2005-09-20 13:26:39 +00:00
2012-02-09 00:15:53 +00:00
if ( wcsncmp ( e - > long_opt . c_str ( ) , & optstr [ 2 ] , len ) = = 0 )
2005-09-20 13:26:39 +00:00
{
if ( optstr [ len + 2 ] = = L ' = ' )
2007-01-18 16:45:28 +00:00
return ( wchar_t * ) & optstr [ len + 3 ] ;
2005-09-20 13:26:39 +00:00
}
}
return 0 ;
}
/**
Tests whether a short option is a viable completion
*/
2012-02-08 22:47:50 +00:00
static int short_ok ( const wcstring & arg_str , wchar_t nextopt , const wcstring & allopt_str )
2005-09-20 13:26:39 +00:00
{
2012-02-08 22:47:50 +00:00
const wchar_t * arg = arg_str . c_str ( ) ;
const wchar_t * allopt = allopt_str . c_str ( ) ;
2007-01-18 16:45:28 +00:00
const wchar_t * ptr ;
2005-09-20 13:26:39 +00:00
if ( arg [ 0 ] ! = L ' - ' )
return arg [ 0 ] = = L ' \0 ' ;
if ( arg [ 1 ] = = L ' - ' )
return 0 ;
if ( wcschr ( arg , nextopt ) ! = 0 )
return 0 ;
for ( ptr = arg + 1 ; * ptr ; ptr + + )
{
2012-01-05 21:58:48 +00:00
const wchar_t * tmp = wcschr ( allopt , * ptr ) ;
2005-09-20 13:26:39 +00:00
/* Unknown option */
if ( tmp = = 0 )
{
/*fwprintf( stderr, L"Unknown option %lc", *ptr );*/
return 0 ;
}
if ( * ( tmp + 1 ) = = L ' : ' )
{
/* fwprintf( stderr, L"Woot %ls", allopt );*/
return 0 ;
}
}
return 1 ;
}
2012-02-08 06:44:10 +00:00
void complete_load ( const wcstring & name , bool reload )
2006-02-08 09:20:05 +00:00
{
2012-01-26 02:40:08 +00:00
completion_autoloader . load ( name , reload ) ;
2006-02-08 09:20:05 +00:00
}
2005-09-20 13:26:39 +00:00
/**
Find completion for the argument str of command cmd_orig with
previous option popt . Insert results into comp_out . Return 0 if file
completion should be disabled , 1 otherwise .
*/
2012-02-26 21:27:31 +00:00
bool completer_t : : complete_param ( const wcstring & scmd_orig , const wcstring & spopt , const wcstring & sstr , bool use_switches )
2005-09-20 13:26:39 +00:00
{
2012-02-26 21:27:31 +00:00
const wchar_t * const cmd_orig = scmd_orig . c_str ( ) , * const popt = spopt . c_str ( ) , * const str = sstr . c_str ( ) ;
2005-09-20 13:26:39 +00:00
int use_common = 1 , use_files = 1 ;
2012-02-08 22:47:50 +00:00
wcstring cmd , path ;
parse_cmd_string ( cmd_orig , path , cmd ) ;
2005-09-20 13:26:39 +00:00
2012-02-27 04:11:34 +00:00
if ( this - > type = = COMPLETE_DEFAULT )
{
2012-02-24 20:13:35 +00:00
complete_load ( cmd , true ) ;
2012-02-27 04:11:34 +00:00
}
else if ( this - > type = = COMPLETE_AUTOSUGGEST )
{
/* Maybe indicate we should try loading this on the main thread */
if ( ! list_contains_string ( this - > commands_to_load , cmd ) & & ! completion_autoloader . has_tried_loading ( cmd ) )
{
this - > commands_to_load . push_back ( cmd ) ;
}
}
2006-01-30 19:53:10 +00:00
2012-02-26 21:27:31 +00:00
scoped_lock lock ( completion_lock ) ;
2012-02-26 22:32:06 +00:00
scoped_lock lock2 ( completion_entry_lock ) ;
2012-03-01 22:56:34 +00:00
for ( completion_entry_list_t : : iterator iter = completion_entries . begin ( ) ; iter ! = completion_entries . end ( ) ; + + iter )
2005-09-20 13:26:39 +00:00
{
2012-02-26 22:32:06 +00:00
const completion_entry_t * i = * iter ;
2012-02-26 21:27:31 +00:00
const wcstring & match = i - > cmd_is_path ? path : cmd ;
2005-09-20 13:26:39 +00:00
if ( ( ( ! wildcard_match ( match , i - > cmd ) ) ) )
{
2007-01-10 12:45:28 +00:00
continue ;
2005-09-20 13:26:39 +00:00
}
2011-12-27 03:18:46 +00:00
2012-02-26 22:32:06 +00:00
const option_list_t & options = i - > get_options ( ) ;
2007-01-10 12:45:28 +00:00
use_common = 1 ;
if ( use_switches )
2005-09-20 13:26:39 +00:00
{
2011-12-27 03:18:46 +00:00
2007-01-10 12:45:28 +00:00
if ( str [ 0 ] = = L ' - ' )
2005-09-20 13:26:39 +00:00
{
2007-01-10 12:45:28 +00:00
/* Check if we are entering a combined option and argument
( like - - color = auto or - I / usr / include ) */
2012-03-01 22:56:34 +00:00
for ( option_list_t : : const_iterator oiter = options . begin ( ) ; oiter ! = options . end ( ) ; + + oiter )
2005-09-20 13:26:39 +00:00
{
2012-02-09 00:15:53 +00:00
const complete_entry_opt_t * o = & * oiter ;
2007-01-10 12:45:28 +00:00
wchar_t * arg ;
2012-02-26 21:27:31 +00:00
if ( ( arg = param_match2 ( o , str ) ) ! = 0 & & this - > condition_test ( o - > condition ) )
2005-09-20 13:26:39 +00:00
{
use_common & = ( ( o - > result_mode & NO_COMMON ) = = 0 ) ;
use_files & = ( ( o - > result_mode & NO_FILES ) = = 0 ) ;
2012-02-26 21:27:31 +00:00
complete_from_args ( arg , o - > comp , o - > localized_desc ( ) , o - > flags ) ;
2005-09-20 13:26:39 +00:00
}
2007-01-10 12:45:28 +00:00
2005-09-20 13:26:39 +00:00
}
}
2007-01-10 12:45:28 +00:00
else if ( popt [ 0 ] = = L ' - ' )
2005-09-20 13:26:39 +00:00
{
2007-01-10 12:45:28 +00:00
/* Set to true if we found a matching old-style switch */
int old_style_match = 0 ;
2011-12-27 03:18:46 +00:00
2007-01-10 12:45:28 +00:00
/*
If we are using old style long options , check for them
first
*/
2012-03-01 22:56:34 +00:00
for ( option_list_t : : const_iterator oiter = options . begin ( ) ; oiter ! = options . end ( ) ; + + oiter )
2005-09-20 13:26:39 +00:00
{
2012-02-09 00:15:53 +00:00
const complete_entry_opt_t * o = & * oiter ;
2007-01-10 12:45:28 +00:00
if ( o - > old_mode )
2005-09-20 13:26:39 +00:00
{
2012-02-26 21:27:31 +00:00
if ( param_match_old ( o , popt ) & & this - > condition_test ( o - > condition ) )
2007-01-10 12:45:28 +00:00
{
old_style_match = 1 ;
use_common & = ( ( o - > result_mode & NO_COMMON ) = = 0 ) ;
use_files & = ( ( o - > result_mode & NO_FILES ) = = 0 ) ;
2012-02-26 21:27:31 +00:00
complete_from_args ( str , o - > comp , o - > localized_desc ( ) , o - > flags ) ;
2007-01-10 12:45:28 +00:00
}
}
}
2011-12-27 03:18:46 +00:00
2007-01-10 12:45:28 +00:00
/*
No old style option matched , or we are not using old
style options . We check if any short ( or gnu style
options do .
*/
if ( ! old_style_match )
{
2012-03-01 22:56:34 +00:00
for ( option_list_t : : const_iterator oiter = options . begin ( ) ; oiter ! = options . end ( ) ; + + oiter )
2012-02-09 00:15:53 +00:00
{
const complete_entry_opt_t * o = & * oiter ;
2007-01-10 12:45:28 +00:00
/*
Gnu - style options with _optional_ arguments must
be specified as a single token , so that it can
be differed from a regular argument .
*/
2012-02-09 00:15:53 +00:00
if ( ! o - > old_mode & & ! o - > long_opt . empty ( ) & & ! ( o - > result_mode & NO_COMMON ) )
2007-01-10 12:45:28 +00:00
continue ;
2012-02-26 21:27:31 +00:00
if ( param_match ( o , popt ) & & this - > condition_test ( o - > condition ) )
2007-01-10 12:45:28 +00:00
{
use_common & = ( ( o - > result_mode & NO_COMMON ) = = 0 ) ;
use_files & = ( ( o - > result_mode & NO_FILES ) = = 0 ) ;
2012-02-26 21:27:31 +00:00
complete_from_args ( str , o - > comp . c_str ( ) , o - > localized_desc ( ) , o - > flags ) ;
2006-01-30 19:53:10 +00:00
2007-01-10 12:45:28 +00:00
}
2005-09-20 13:26:39 +00:00
}
}
}
}
2011-12-27 03:18:46 +00:00
2005-09-20 13:26:39 +00:00
if ( use_common )
{
2012-03-01 22:56:34 +00:00
for ( option_list_t : : const_iterator oiter = options . begin ( ) ; oiter ! = options . end ( ) ; + + oiter )
2012-02-09 00:15:53 +00:00
{
const complete_entry_opt_t * o = & * oiter ;
2005-09-20 13:26:39 +00:00
/*
If this entry is for the base command ,
check if any of the arguments match
*/
2006-01-30 19:53:10 +00:00
2012-02-26 21:27:31 +00:00
if ( ! this - > condition_test ( o - > condition ) )
2005-09-20 13:26:39 +00:00
continue ;
2006-01-30 19:53:10 +00:00
2005-09-20 13:26:39 +00:00
if ( ( o - > short_opt = = L ' \0 ' ) & & ( o - > long_opt [ 0 ] = = L ' \0 ' ) )
{
use_files & = ( ( o - > result_mode & NO_FILES ) = = 0 ) ;
2012-02-26 21:27:31 +00:00
complete_from_args ( str , o - > comp , o - > localized_desc ( ) , o - > flags ) ;
2005-09-20 13:26:39 +00:00
}
2011-12-27 03:18:46 +00:00
2007-01-10 12:45:28 +00:00
if ( wcslen ( str ) > 0 & & use_switches )
2005-09-20 13:26:39 +00:00
{
/*
Check if the short style option matches
*/
if ( o - > short_opt ! = L ' \0 ' & &
2012-02-26 22:32:06 +00:00
short_ok ( str , o - > short_opt , i - > get_short_opt_str ( ) ) )
2005-09-20 13:26:39 +00:00
{
2012-02-09 00:15:53 +00:00
const wchar_t * desc = o - > localized_desc ( ) ;
2007-02-18 12:08:41 +00:00
wchar_t completion [ 2 ] ;
completion [ 0 ] = o - > short_opt ;
completion [ 1 ] = 0 ;
2011-12-27 03:18:46 +00:00
2012-02-26 21:27:31 +00:00
completion_allocate ( this - > completions , completion , desc , 0 ) ;
2007-02-18 12:08:41 +00:00
2005-09-20 13:26:39 +00:00
}
/*
Check if the long style option matches
*/
if ( o - > long_opt [ 0 ] ! = L ' \0 ' )
{
2007-02-28 21:43:27 +00:00
int match = 0 , match_no_case = 0 ;
2011-12-27 03:18:46 +00:00
2012-02-08 22:47:50 +00:00
wcstring whole_opt ;
whole_opt . append ( o - > old_mode ? L " - " : L " -- " ) ;
whole_opt . append ( o - > long_opt ) ;
2006-01-30 19:53:10 +00:00
2012-02-08 22:47:50 +00:00
match = string_prefixes_string ( str , whole_opt ) ;
2007-02-28 21:43:27 +00:00
if ( ! match )
{
2012-02-08 22:47:50 +00:00
match_no_case = wcsncasecmp ( str , whole_opt . c_str ( ) , wcslen ( str ) ) = = 0 ;
2007-02-28 21:43:27 +00:00
}
2011-12-27 03:18:46 +00:00
2007-02-28 21:43:27 +00:00
if ( match | | match_no_case )
2006-01-30 19:53:10 +00:00
{
2007-02-18 12:08:41 +00:00
int has_arg = 0 ; /* Does this switch have any known arguments */
int req_arg = 0 ; /* Does this switch _require_ an argument */
2005-09-20 13:26:39 +00:00
2007-02-28 21:43:27 +00:00
int offset = 0 ;
2012-02-26 02:54:49 +00:00
complete_flags_t flags = 0 ;
2007-02-28 21:43:27 +00:00
2011-12-27 03:18:46 +00:00
2007-02-28 21:43:27 +00:00
if ( match )
offset = wcslen ( str ) ;
else
flags = COMPLETE_NO_CASE ;
2012-02-09 00:15:53 +00:00
has_arg = ! o - > comp . empty ( ) ;
2006-11-07 18:19:11 +00:00
req_arg = ( o - > result_mode & NO_COMMON ) ;
2006-01-30 19:53:10 +00:00
2006-11-07 18:19:11 +00:00
if ( ! o - > old_mode & & ( has_arg & & ! req_arg ) )
2005-09-20 13:26:39 +00:00
{
2011-12-27 03:18:46 +00:00
2007-02-18 12:08:41 +00:00
/*
Optional arguments to a switch can
only be handled using the ' = ' , so we
add it as a completion . By default
we avoid using ' = ' and instead rely
on ' - - switch switch - arg ' , since it
is more commonly supported by
homebrew getopt - like functions .
*/
2012-02-22 20:00:02 +00:00
wcstring completion = format_string ( L " %ls= " , whole_opt . c_str ( ) + offset ) ;
2012-02-26 21:27:31 +00:00
completion_allocate ( this - > completions ,
2012-02-22 20:00:02 +00:00
completion ,
2012-02-09 00:15:53 +00:00
C_ ( o - > desc . c_str ( ) ) ,
2011-12-27 03:18:46 +00:00
flags ) ;
2005-09-20 13:26:39 +00:00
}
2011-12-27 03:18:46 +00:00
2012-02-26 21:27:31 +00:00
completion_allocate ( this - > completions ,
2012-02-08 22:47:50 +00:00
whole_opt . c_str ( ) + offset ,
2012-02-09 00:15:53 +00:00
C_ ( o - > desc . c_str ( ) ) ,
2007-02-28 21:43:27 +00:00
flags ) ;
2011-12-27 03:18:46 +00:00
}
2005-09-20 13:26:39 +00:00
}
}
}
}
}
2011-12-27 03:18:46 +00:00
2005-09-20 13:26:39 +00:00
return use_files ;
}
/**
Perform file completion on the specified string
*/
2012-02-26 21:27:31 +00:00
void completer_t : : complete_param_expand ( const wcstring & sstr , bool do_file )
2005-09-20 13:26:39 +00:00
{
2012-02-26 21:27:31 +00:00
const wchar_t * const str = sstr . c_str ( ) ;
2012-02-06 08:57:43 +00:00
const wchar_t * comp_str ;
2011-12-27 03:18:46 +00:00
2005-09-20 13:26:39 +00:00
if ( ( wcsncmp ( str , L " -- " , 2 ) ) = = 0 & & ( comp_str = wcschr ( str , L ' = ' ) ) )
{
comp_str + + ;
}
else
2006-02-19 18:19:32 +00:00
{
2005-09-20 13:26:39 +00:00
comp_str = str ;
2006-02-19 18:19:32 +00:00
}
2012-02-24 20:13:35 +00:00
2012-02-26 02:54:49 +00:00
expand_flags_t flags = EXPAND_SKIP_CMDSUBST | ACCEPT_INCOMPLETE ;
2012-02-24 20:13:35 +00:00
if ( ! do_file )
flags | = EXPAND_SKIP_WILDCARDS ;
if ( type = = COMPLETE_AUTOSUGGEST )
flags | = EXPAND_NO_DESCRIPTIONS ;
2011-12-27 03:18:46 +00:00
2012-02-14 03:39:20 +00:00
if ( expand_string ( comp_str ,
2012-02-26 21:27:31 +00:00
this - > completions ,
2012-03-10 04:16:26 +00:00
flags | this - > expand_flags ( ) ) = = EXPAND_ERROR )
2006-10-19 15:36:03 +00:00
{
2006-10-24 11:03:52 +00:00
debug ( 3 , L " Error while expanding string '%ls' " , comp_str ) ;
2006-10-19 15:36:03 +00:00
}
2011-12-27 03:18:46 +00:00
2005-09-20 13:26:39 +00:00
}
/**
Complete the specified string as an environment variable
*/
2012-02-26 21:27:31 +00:00
bool completer_t : : complete_variable ( const wcstring & str , int start_offset )
2005-09-20 13:26:39 +00:00
{
2012-02-26 21:27:31 +00:00
const wchar_t * const whole_var = str . c_str ( ) ;
2007-03-24 19:07:38 +00:00
const wchar_t * var = & whole_var [ start_offset ] ;
2005-09-20 13:26:39 +00:00
int varlen = wcslen ( var ) ;
int res = 0 ;
2012-02-26 02:54:49 +00:00
bool wants_description = ( type ! = COMPLETE_AUTOSUGGEST ) ;
2012-02-02 00:27:14 +00:00
const wcstring_list_t names = env_get_names ( 0 ) ;
for ( size_t i = 0 ; i < names . size ( ) ; i + + )
2005-09-20 13:26:39 +00:00
{
2012-02-02 00:27:14 +00:00
const wcstring & env_name = names . at ( i ) ;
int namelen = env_name . size ( ) ;
2011-12-27 03:18:46 +00:00
int match = 0 , match_no_case = 0 ;
2006-02-19 18:19:32 +00:00
2005-09-20 13:26:39 +00:00
if ( varlen > namelen )
continue ;
2012-02-02 00:27:14 +00:00
match = string_prefixes_string ( var , env_name ) ;
2011-12-27 03:18:46 +00:00
2007-03-24 19:07:38 +00:00
if ( ! match )
{
2012-02-02 00:27:14 +00:00
match_no_case = ( wcsncasecmp ( var , env_name . c_str ( ) , varlen ) = = 0 ) ;
2007-03-24 19:07:38 +00:00
}
if ( match | | match_no_case )
2005-09-20 13:26:39 +00:00
{
2012-02-26 02:54:49 +00:00
wcstring comp ;
int flags = 0 ;
if ( match )
{
comp . append ( env_name . c_str ( ) + varlen ) ;
}
else
{
comp . append ( whole_var , start_offset ) ;
comp . append ( env_name ) ;
flags = COMPLETE_NO_CASE | COMPLETE_DONT_ESCAPE ;
}
wcstring desc ;
if ( wants_description )
{
env_var_t value_unescaped = env_get_string ( env_name ) ;
if ( value_unescaped . missing ( ) )
continue ;
2012-02-02 00:27:14 +00:00
2012-02-26 02:54:49 +00:00
wcstring value = expand_escape_variable ( value_unescaped ) ;
if ( type ! = COMPLETE_AUTOSUGGEST )
desc = format_string ( COMPLETE_VAR_DESC_VAL , value . c_str ( ) ) ;
}
2012-02-26 21:27:31 +00:00
completion_allocate ( this - > completions , comp . c_str ( ) , desc . c_str ( ) , flags ) ;
2012-02-26 02:54:49 +00:00
res = 1 ;
2011-12-27 03:18:46 +00:00
2005-09-20 13:26:39 +00:00
}
}
return res ;
}
/**
2006-02-19 18:19:32 +00:00
Search the specified string for the \ $ sign . If found , try to
2011-12-27 03:18:46 +00:00
complete as an environment variable .
2006-02-19 18:19:32 +00:00
\ return 0 if unable to complete , 1 otherwise
2005-09-20 13:26:39 +00:00
*/
2012-02-26 21:27:31 +00:00
bool completer_t : : try_complete_variable ( const wcstring & str )
2005-09-20 13:26:39 +00:00
{
2012-02-26 21:46:21 +00:00
size_t i = str . size ( ) ;
while ( i - - )
2005-09-20 13:26:39 +00:00
{
2012-02-26 21:27:31 +00:00
wchar_t c = str . at ( i ) ;
if ( c = = L ' $ ' )
2005-09-20 13:26:39 +00:00
{
/* wprintf( L"Var prefix \'%ls\'\n", &cmd[i+1] );*/
2012-02-26 21:27:31 +00:00
return this - > complete_variable ( str , i + 1 ) ;
2005-09-20 13:26:39 +00:00
}
2012-02-26 21:27:31 +00:00
if ( ! isalnum ( c ) & & c ! = L ' _ ' )
2005-09-20 13:26:39 +00:00
{
2012-02-26 21:27:31 +00:00
return false ;
2005-09-20 13:26:39 +00:00
}
}
2012-02-26 21:27:31 +00:00
return false ;
2012-02-25 02:43:10 +00:00
}
2005-09-20 13:26:39 +00:00
/**
2006-02-19 18:19:32 +00:00
Try to complete the specified string as a username . This is used by
~ USER type expansion .
2005-09-20 13:26:39 +00:00
2006-02-19 18:19:32 +00:00
\ return 0 if unable to complete , 1 otherwise
*/
2012-02-26 21:27:31 +00:00
bool completer_t : : try_complete_user ( const wcstring & str )
2005-09-20 13:26:39 +00:00
{
2012-02-26 21:27:31 +00:00
const wchar_t * cmd = str . c_str ( ) ;
2009-02-02 22:46:45 +00:00
const wchar_t * first_char = cmd ;
int res = 0 ;
double start_time = timef ( ) ;
2011-12-27 03:18:46 +00:00
2009-02-02 22:46:45 +00:00
if ( * first_char = = L ' ~ ' & & ! wcschr ( first_char , L ' / ' ) )
2005-09-20 13:26:39 +00:00
{
2009-02-02 22:46:45 +00:00
const wchar_t * user_name = first_char + 1 ;
2012-01-05 21:58:48 +00:00
const wchar_t * name_end = wcschr ( user_name , L ' ~ ' ) ;
2009-02-02 22:46:45 +00:00
if ( name_end = = 0 )
2005-09-20 13:26:39 +00:00
{
2009-02-02 22:46:45 +00:00
struct passwd * pw ;
int name_len = wcslen ( user_name ) ;
2011-12-27 03:18:46 +00:00
2009-02-02 22:46:45 +00:00
setpwent ( ) ;
2011-12-27 03:18:46 +00:00
2009-02-02 22:46:45 +00:00
while ( ( pw = getpwent ( ) ) ! = 0 )
2005-09-20 13:26:39 +00:00
{
2009-02-02 22:46:45 +00:00
double current_time = timef ( ) ;
wchar_t * pw_name ;
2005-09-20 13:26:39 +00:00
2011-12-27 03:18:46 +00:00
if ( current_time - start_time > 0.2 )
2009-02-02 22:46:45 +00:00
{
return 1 ;
}
2011-12-27 03:18:46 +00:00
2009-02-02 22:46:45 +00:00
pw_name = str2wcs ( pw - > pw_name ) ;
2005-09-20 13:26:39 +00:00
2009-02-02 22:46:45 +00:00
if ( pw_name )
2005-09-20 13:26:39 +00:00
{
2009-02-02 22:46:45 +00:00
if ( wcsncmp ( user_name , pw_name , name_len ) = = 0 )
2005-09-20 13:26:39 +00:00
{
2012-02-22 20:00:02 +00:00
wcstring desc = format_string ( COMPLETE_USER_DESC , pw_name ) ;
2012-02-26 21:27:31 +00:00
completion_allocate ( this - > completions ,
2009-02-02 22:46:45 +00:00
& pw_name [ name_len ] ,
2012-02-22 20:00:02 +00:00
desc ,
2009-02-02 22:46:45 +00:00
COMPLETE_NO_SPACE ) ;
2011-12-27 03:18:46 +00:00
2009-02-02 22:46:45 +00:00
res = 1 ;
}
else if ( wcsncasecmp ( user_name , pw_name , name_len ) = = 0 )
{
2012-02-22 20:00:02 +00:00
wcstring name = format_string ( L " ~%ls " , pw_name ) ;
wcstring desc = format_string ( COMPLETE_USER_DESC , pw_name ) ;
2011-12-27 03:18:46 +00:00
2012-02-26 21:27:31 +00:00
completion_allocate ( this - > completions ,
2012-02-22 20:00:02 +00:00
name ,
desc ,
2009-02-02 22:46:45 +00:00
COMPLETE_NO_CASE | COMPLETE_DONT_ESCAPE | COMPLETE_NO_SPACE ) ;
2012-02-22 20:00:02 +00:00
res = 1 ;
2005-09-20 13:26:39 +00:00
}
2009-02-02 22:46:45 +00:00
free ( pw_name ) ;
2005-09-20 13:26:39 +00:00
}
}
2009-02-02 22:46:45 +00:00
endpwent ( ) ;
2005-09-20 13:26:39 +00:00
}
}
2009-02-02 22:46:45 +00:00
return res ;
}
2007-02-09 09:33:50 +00:00
2012-02-27 04:11:34 +00:00
void complete ( const wcstring & cmd , std : : vector < completion_t > & comps , complete_type_t type , wcstring_list_t * commands_to_load )
2012-02-25 02:43:10 +00:00
{
/* Make our completer */
completer_t completer ( cmd , type ) ;
const wchar_t * tok_begin , * tok_end , * cmdsubst_begin , * cmdsubst_end , * prev_begin , * prev_end ;
wcstring buff ;
tokenizer tok ;
const wchar_t * current_token = 0 , * prev_token = 0 ;
wcstring current_command ;
int on_command = 0 ;
int pos ;
bool done = false ;
int cursor_pos ;
int use_command = 1 ;
int use_function = 1 ;
int use_builtin = 1 ;
int had_ddash = 0 ;
// debug( 1, L"Complete '%ls'", cmd );
cursor_pos = cmd . size ( ) ;
const wchar_t * cmd_cstr = cmd . c_str ( ) ;
parse_util_cmdsubst_extent ( cmd_cstr , cursor_pos , & cmdsubst_begin , & cmdsubst_end ) ;
parse_util_token_extent ( cmd_cstr , cursor_pos , & tok_begin , & tok_end , & prev_begin , & prev_end ) ;
if ( ! cmdsubst_begin )
done = 1 ;
/**
If we are completing a variable name or a tilde expansion user
name , we do that and return . No need for any other competions .
*/
if ( ! done )
{
wcstring tmp = tok_begin ;
done = completer . try_complete_variable ( tmp ) | | completer . try_complete_user ( tmp ) ;
}
if ( ! done )
{
pos = cursor_pos - ( cmdsubst_begin - cmd_cstr ) ;
buff = wcstring ( cmdsubst_begin , cmdsubst_end - cmdsubst_begin ) ;
int had_cmd = 0 ;
int end_loop = 0 ;
tok_init ( & tok , buff . c_str ( ) , TOK_ACCEPT_UNFINISHED | TOK_SQUASH_ERRORS ) ;
while ( tok_has_next ( & tok ) & & ! end_loop )
{
switch ( tok_last_type ( & tok ) )
{
case TOK_STRING :
{
const wcstring ncmd = tok_last ( & tok ) ;
int is_ddash = ( ncmd = = L " -- " ) & & ( ( tok_get_pos ( & tok ) + 2 ) < pos ) ;
if ( ! had_cmd )
{
if ( parser_keywords_is_subcommand ( ncmd ) )
{
if ( ncmd = = L " builtin " )
{
use_function = 0 ;
use_command = 0 ;
use_builtin = 1 ;
}
else if ( ncmd = = L " command " )
{
use_command = 1 ;
use_function = 0 ;
use_builtin = 0 ;
}
break ;
}
if ( ! is_ddash | |
( ( use_command & & use_function & & use_builtin ) ) )
{
int token_end ;
current_command = ncmd ;
token_end = tok_get_pos ( & tok ) + ncmd . size ( ) ;
on_command = ( pos < = token_end ) ;
had_cmd = 1 ;
}
}
else
{
if ( is_ddash )
{
had_ddash = 1 ;
}
}
break ;
}
case TOK_END :
case TOK_PIPE :
case TOK_BACKGROUND :
{
had_cmd = 0 ;
had_ddash = 0 ;
use_command = 1 ;
use_function = 1 ;
use_builtin = 1 ;
break ;
}
case TOK_ERROR :
{
end_loop = 1 ;
break ;
}
}
if ( tok_get_pos ( & tok ) > = pos )
{
end_loop = 1 ;
}
tok_next ( & tok ) ;
}
tok_destroy ( & tok ) ;
/*
Get the string to complete
*/
current_token = wcsndup ( tok_begin , cursor_pos - ( tok_begin - cmd_cstr ) ) ;
prev_token = prev_begin ? wcsndup ( prev_begin , prev_end - prev_begin ) : wcsdup ( L " " ) ;
// debug( 0, L"on_command: %d, %ls %ls\n", on_command, current_command, current_token );
/*
Check if we are using the ' command ' or ' builtin ' builtins
_and_ we are writing a switch instead of a command . In that
case , complete using the builtins completions , not using a
subcommand .
*/
if ( ( on_command | | ( wcscmp ( current_token , L " -- " ) = = 0 ) ) & &
( current_token [ 0 ] = = L ' - ' ) & &
! ( use_command & & use_function & & use_builtin ) )
{
if ( use_command = = 0 )
current_command = L " builtin " ;
else
current_command = L " command " ;
had_cmd = 1 ;
on_command = 0 ;
}
/*
Use command completions if in between commands
*/
if ( ! had_cmd )
{
on_command = 1 ;
}
/*
We don ' t want these to be null
*/
if ( ! current_token )
{
current_token = wcsdup ( L " " ) ;
}
if ( ! prev_token )
{
prev_token = wcsdup ( L " " ) ;
}
if ( current_token & & prev_token )
{
if ( on_command )
{
/* Complete command filename */
completer . complete_cmd ( current_token , use_function , use_builtin , use_command ) ;
}
else
{
int do_file = 0 ;
wcstring current_command_unescape = current_command ;
wcstring prev_token_unescape = prev_token ;
wcstring current_token_unescape = current_token ;
if ( unescape_string ( current_command_unescape , 0 ) & &
unescape_string ( prev_token_unescape , 0 ) & &
unescape_string ( current_token_unescape , UNESCAPE_INCOMPLETE ) )
{
do_file = completer . complete_param ( current_command_unescape ,
prev_token_unescape ,
current_token_unescape ,
! had_ddash ) ;
}
/*
If we have found no command specific completions at
all , fall back to using file completions .
*/
if ( completer . empty ( ) )
do_file = 1 ;
/*
This function wants the unescaped string
*/
completer . complete_param_expand ( current_token , do_file ) ;
}
}
}
free ( ( void * ) current_token ) ;
free ( ( void * ) prev_token ) ;
comps = completer . get_completions ( ) ;
2012-02-27 04:11:34 +00:00
completer . get_commands_to_load ( commands_to_load ) ;
2012-02-25 02:43:10 +00:00
}
2012-01-16 16:56:47 +00:00
2005-10-24 15:26:25 +00:00
/**
Print the GNU longopt style switch \ c opt , and the argument \ c
argument to the specified stringbuffer , but only if arguemnt is
non - null and longer than 0 characters .
*/
2012-02-22 18:51:06 +00:00
static void append_switch ( wcstring & out ,
2012-02-08 22:47:50 +00:00
const wcstring & opt ,
const wcstring & argument )
2005-09-20 13:26:39 +00:00
{
2012-02-08 22:47:50 +00:00
if ( argument . empty ( ) )
2005-09-20 13:26:39 +00:00
return ;
2012-02-08 22:47:50 +00:00
wcstring esc = escape_string ( argument , 1 ) ;
2012-02-22 18:51:06 +00:00
append_format ( out , L " --%ls %ls " , opt . c_str ( ) , esc . c_str ( ) ) ;
2005-09-20 13:26:39 +00:00
}
2012-02-22 18:51:06 +00:00
void complete_print ( wcstring & out )
2005-09-20 13:26:39 +00:00
{
2012-02-26 21:27:31 +00:00
scoped_lock locker ( completion_lock ) ;
2012-02-26 22:32:06 +00:00
scoped_lock locker2 ( completion_entry_lock ) ;
2012-03-01 22:56:34 +00:00
for ( completion_entry_list_t : : const_iterator iter = completion_entries . begin ( ) ; iter ! = completion_entries . end ( ) ; + + iter )
2012-02-08 22:47:50 +00:00
{
2012-02-15 19:33:41 +00:00
const completion_entry_t * e = * iter ;
2012-02-26 22:32:06 +00:00
const option_list_t options = e - > get_options ( ) ;
2012-03-01 22:56:34 +00:00
for ( option_list_t : : const_iterator oiter = options . begin ( ) ; oiter ! = options . end ( ) ; + + oiter )
2012-02-09 00:15:53 +00:00
{
const complete_entry_opt_t * o = & * oiter ;
2012-01-14 07:44:18 +00:00
const wchar_t * modestr [ ] =
2005-09-20 13:26:39 +00:00
{
L " " ,
L " --no-files " ,
L " --require-parameter " ,
L " --exclusive "
}
;
2012-02-22 18:51:06 +00:00
append_format ( out ,
2005-09-20 13:26:39 +00:00
L " complete%ls " ,
modestr [ o - > result_mode ] ) ;
2006-01-30 19:53:10 +00:00
2005-09-20 13:26:39 +00:00
append_switch ( out ,
2012-02-26 21:27:31 +00:00
e - > cmd_is_path ? L " path " : L " command " ,
2005-09-20 13:26:39 +00:00
e - > cmd ) ;
2006-01-30 19:53:10 +00:00
2005-09-20 13:26:39 +00:00
if ( o - > short_opt ! = 0 )
{
2012-02-22 18:51:06 +00:00
append_format ( out ,
2005-09-20 13:26:39 +00:00
L " --short-option '%lc' " ,
o - > short_opt ) ;
}
2006-01-30 19:53:10 +00:00
2005-09-20 13:26:39 +00:00
append_switch ( out ,
o - > old_mode ? L " old-option " : L " long-option " ,
o - > long_opt ) ;
2006-01-30 19:53:10 +00:00
2005-09-20 13:26:39 +00:00
append_switch ( out ,
L " description " ,
2012-02-09 00:15:53 +00:00
C_ ( o - > desc . c_str ( ) ) ) ;
2006-01-30 19:53:10 +00:00
2005-09-20 13:26:39 +00:00
append_switch ( out ,
L " arguments " ,
o - > comp ) ;
2006-01-30 19:53:10 +00:00
2005-09-20 13:26:39 +00:00
append_switch ( out ,
L " condition " ,
o - > condition ) ;
2006-01-30 19:53:10 +00:00
2012-02-22 18:51:06 +00:00
out . append ( L " \n " ) ;
2005-09-20 13:26:39 +00:00
}
}
}