/** \file builtin_complete.c Functions defining the complete builtin Functions used for implementing the complete builtin. */ #include "config.h" #include #include #include #include #include #include #include #include "fallback.h" #include "util.h" #include "wutil.h" #include "builtin.h" #include "common.h" #include "complete.h" #include "wgetopt.h" #include "parser.h" #include "reader.h" /** Internal storage for the builtin_complete_get_temporary_buffer() function. */ static const wchar_t *temporary_buffer; /* builtin_complete_* are a set of rather silly looping functions that make sure that all the proper combinations of complete_add or complete_remove get called. This is needed since complete allows you to specify multiple switches on a single commandline, like 'complete -s a -s b -s c', but the complete_add function only accepts one short switch and one long switch. */ /** Silly function */ static void builtin_complete_add2( const wchar_t *cmd, int cmd_type, const wchar_t *short_opt, const wcstring_list_t &gnu_opt, const wcstring_list_t &old_opt, int result_mode, const wchar_t *condition, const wchar_t *comp, const wchar_t *desc, int flags ) { size_t i; const wchar_t *s; for( s=short_opt; *s; s++ ) { complete_add( cmd, cmd_type, *s, 0, 0, result_mode, condition, comp, desc, flags ); } for( i=0; i comp; complete( do_complete_param, comp, COMPLETE_DEFAULT ); for( size_t i=0; i< comp.size() ; i++ ) { const completion_t &next = comp.at( i ); const wchar_t *prepend; if( next.flags & COMPLETE_NO_CASE ) { prepend = L""; } else { prepend = token; } if( !(next.description).empty() ) { append_format(stdout_buffer, L"%ls%ls\t%ls\n", prepend, next.completion.c_str(), next.description.c_str() ); } else { append_format(stdout_buffer, L"%ls%ls\n", prepend, next.completion.c_str() ); } } recursion_level--; } temporary_buffer = prev_temporary_buffer; } else if( woptind != argc ) { append_format(stderr_buffer, _( L"%ls: Too many arguments\n" ), argv[0] ); builtin_print_help( parser, argv[0], stderr_buffer ); res = true; } else if( cmd.empty() && path.empty() ) { /* No arguments specified, meaning we print the definitions of * all specified completions to stdout.*/ complete_print( stdout_buffer ); } else { if( remove ) { builtin_complete_remove( cmd, path, short_opt.c_str(), gnu_opt, old_opt ); } else { builtin_complete_add( cmd, path, short_opt.c_str(), gnu_opt, old_opt, result_mode, authoritative, condition, comp, desc, flags ); } } } return res ? 1 : 0; }