2005-09-20 21:26:39 +08:00
/** \file builtin.h
Prototypes for functions for executing builtin functions .
*/
2005-10-04 23:11:39 +08:00
# ifndef FISH_BUILTIN_H
# define FISH_BUILTIN_H
# include <wchar.h>
# include "util.h"
2005-09-20 21:26:39 +08:00
enum
{
COMMAND_NOT_BUILTIN ,
BUILTIN_REGULAR ,
BUILTIN_FUNCTION
}
;
2005-10-24 23:26:25 +08:00
/**
Error message on missing argument
*/
2006-01-04 20:51:02 +08:00
# define BUILTIN_ERR_MISSING _( L"%ls: Expected argument\n" )
2005-10-24 23:26:25 +08:00
/**
Error message on invalid combination of options
*/
2006-01-04 20:51:02 +08:00
# define BUILTIN_ERR_COMBO _( L"%ls: Invalid combination of options\n" )
/**
Error message on invalid combination of options
*/
# define BUILTIN_ERR_COMBO2 _( L"%ls: Invalid combination of options,\n%ls\n" )
2005-10-24 23:26:25 +08:00
/**
Error message on multiple scope levels for variables
*/
2006-01-11 22:17:35 +08:00
# define BUILTIN_ERR_GLOCAL _( L"%ls: Variable scope can only be one of universal, global and local\n%ls\n" )
2005-10-24 23:26:25 +08:00
/**
Error message for specifying both export and unexport to set / read
*/
2006-01-04 20:51:02 +08:00
# define BUILTIN_ERR_EXPUNEXP _( L"%ls: Variable can't be both exported and unexported\n%ls\n" )
2005-10-24 23:26:25 +08:00
/**
Error message for unknown switch
*/
2006-01-04 20:51:02 +08:00
# define BUILTIN_ERR_UNKNOWN _( L"%ls: Unknown option '%ls'\n" )
2005-09-20 21:26:39 +08:00
2006-01-24 04:40:14 +08:00
/**
Error message for invalid character in variable name
*/
2006-01-04 20:51:02 +08:00
# define BUILTIN_ERR_VARCHAR _( L"%ls: Invalid character '%lc' in variable name. Only alphanumerical characters and underscores are valid in a variable name.\n" )
2005-12-08 00:06:47 +08:00
2006-01-24 04:40:14 +08:00
/**
Error message for invalid ( empty ) variable name
*/
2006-01-04 20:51:02 +08:00
# define BUILTIN_ERR_VARNAME_ZERO _( L"%ls: Variable name can not be the empty string\n" )
2005-12-08 00:06:47 +08:00
2006-05-22 06:16:04 +08:00
/**
Error message when second argument to for isn ' t ' in '
*/
# define BUILTIN_FOR_ERR_IN _( L"%ls: Second argument must be 'in'\n" )
2006-05-26 19:24:02 +08:00
# define BUILTIN_ERR_TOO_MANY_ARGUMENTS _( L"%ls: Too many arguments\n" )
2005-09-20 21:26:39 +08:00
/**
Stringbuffer used to represent standard output
*/
extern string_buffer_t * sb_out ;
/**
Stringbuffer used to represent standard error
*/
extern string_buffer_t * sb_err ;
/**
Kludge . Tells builtins if output is to screen
*/
extern int builtin_out_redirect ;
/**
Kludge . Tells builtins if error is to screen
*/
extern int builtin_err_redirect ;
/**
Initialize builtin data .
*/
void builtin_init ( ) ;
/**
Destroy builtin data .
*/
void builtin_destroy ( ) ;
/**
Is there a builtin command with the given name ?
*/
int builtin_exists ( wchar_t * cmd ) ;
/**
Execute a builtin command
\ param argv Array containing the command and parameters
of the builtin . The list is terminated by a
null pointer . This syntax resembles the syntax
for exec .
\ return the exit status of the builtin command
*/
int builtin_run ( wchar_t * * argv ) ;
/**
Insert all builtin names into l . These are not copies of the strings and should not be freed after use .
*/
void builtin_get_names ( array_list_t * list ) ;
/**
Pushes a new set of input / output to the stack . The new stdin is supplied , a new set of output string_buffer_ts is created .
*/
void builtin_push_io ( int stdin_fd ) ;
/**
Pops a set of input / output from the stack . The output string_buffer_ts are destroued , but the input file is not closed .
*/
void builtin_pop_io ( ) ;
/**
Return a one - line description of the specified builtin
*/
const wchar_t * builtin_get_desc ( const wchar_t * b ) ;
/**
Counts the number of non null pointers in the specified array
*/
int builtin_count_args ( wchar_t * * argv ) ;
/**
2006-05-26 19:38:11 +08:00
Print help for the specified builtin . If \ c b is sb_err , also print
the line information
2006-06-09 07:55:57 +08:00
If \ c b is the buffer representing standard error , and the help
message is about to be printed to an interactive screen , it may be
shortened to fit the screen .
2005-09-20 21:26:39 +08:00
*/
void builtin_print_help ( wchar_t * cmd , string_buffer_t * b ) ;
2006-01-31 00:51:50 +08:00
const wchar_t * builtin_complete_get_temporary_buffer ( ) ;
2005-10-15 06:33:01 +08:00
/**
This function works like wperror , but it prints its result into
the sb_err string_buffer_t instead of to stderr . Used by the builtin
commands .
*/
void builtin_wperror ( const wchar_t * s ) ;
2005-10-04 23:11:39 +08:00
2006-06-13 21:43:28 +08:00
/**
Return the help text for the specified builtin command . Use
non - wide characters since wide characters have some issues with
string formating escape sequences sometimes .
\ param cmd The command for which to obtain help text
*/
char * builtin_help_get ( wchar_t * cmd ) ;
2005-10-04 23:11:39 +08:00
# endif