2005-09-20 13:26:39 +00:00
|
|
|
/*
|
2006-11-01 14:47:47 +00:00
|
|
|
Copyright (C) 2005-2006 Axel Liljencrantz
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2006-11-01 14:47:47 +00:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License version 2 as
|
|
|
|
published by the Free Software Foundation.
|
2005-09-20 13:26:39 +00:00
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/** \file main.c
|
|
|
|
The main loop of <tt>fish</tt>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2006-02-28 13:17:16 +00:00
|
|
|
|
2005-09-20 13:26:39 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <wchar.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <termios.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_GETOPT_H
|
|
|
|
#include <getopt.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <locale.h>
|
|
|
|
#include <signal.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 "common.h"
|
|
|
|
#include "reader.h"
|
|
|
|
#include "builtin.h"
|
|
|
|
#include "function.h"
|
|
|
|
#include "complete.h"
|
|
|
|
#include "wutil.h"
|
|
|
|
#include "env.h"
|
|
|
|
#include "sanity.h"
|
|
|
|
#include "proc.h"
|
|
|
|
#include "parser.h"
|
|
|
|
#include "expand.h"
|
|
|
|
#include "intern.h"
|
2005-10-05 22:37:08 +00:00
|
|
|
#include "exec.h"
|
|
|
|
#include "event.h"
|
2005-10-15 00:51:26 +00:00
|
|
|
#include "output.h"
|
2006-10-19 11:50:23 +00:00
|
|
|
#include "halloc.h"
|
2006-02-09 15:50:20 +00:00
|
|
|
#include "halloc_util.h"
|
2006-04-19 23:42:11 +00:00
|
|
|
#include "history.h"
|
2006-10-19 11:50:23 +00:00
|
|
|
#include "path.h"
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2006-05-18 13:00:39 +00:00
|
|
|
/**
|
|
|
|
The string describing the single-character options accepted by the main fish binary
|
|
|
|
*/
|
|
|
|
#define GETOPT_STRING "hilnvc:p:d:"
|
2006-03-10 13:38:09 +00:00
|
|
|
|
2005-09-20 13:26:39 +00:00
|
|
|
/**
|
|
|
|
Parse init files
|
|
|
|
*/
|
|
|
|
static int read_init()
|
|
|
|
{
|
2006-11-11 11:06:50 +00:00
|
|
|
wchar_t cwd[4096];
|
2006-10-19 11:50:23 +00:00
|
|
|
wchar_t *config_dir;
|
|
|
|
wchar_t *config_dir_escaped;
|
|
|
|
void *context;
|
|
|
|
string_buffer_t *eval_buff;
|
|
|
|
|
2006-11-11 11:06:50 +00:00
|
|
|
if( !wgetcwd( cwd, 4096 ) )
|
2005-09-20 13:26:39 +00:00
|
|
|
{
|
2006-11-11 11:06:50 +00:00
|
|
|
wperror( L"wgetcwd" );
|
2005-09-20 13:26:39 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-10-19 11:50:23 +00:00
|
|
|
eval( L"builtin cd " DATADIR L"/fish 2>/dev/null; and builtin . config.fish 2>/dev/null", 0, TOP );
|
|
|
|
eval( L"builtin cd " SYSCONFDIR L"/fish 2>/dev/null; and builtin . config.fish 2>/dev/null", 0, TOP );
|
|
|
|
|
|
|
|
/*
|
|
|
|
We need to get the configuration directory before we can source the user configuration file
|
|
|
|
*/
|
|
|
|
context = halloc( 0, 0 );
|
|
|
|
eval_buff = sb_halloc( context );
|
|
|
|
config_dir = path_get_config( context );
|
2007-04-11 13:18:23 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
If config_dir is null then we have no configuration directory
|
|
|
|
and no custom config to load.
|
|
|
|
*/
|
|
|
|
if( config_dir )
|
|
|
|
{
|
|
|
|
config_dir_escaped = escape( config_dir, 1 );
|
|
|
|
sb_printf( eval_buff, L"builtin cd %ls 2>/dev/null; and builtin . config.fish 2>/dev/null", config_dir_escaped );
|
|
|
|
eval( (wchar_t *)eval_buff->buff, 0, TOP );
|
|
|
|
free( config_dir_escaped );
|
|
|
|
}
|
2006-10-19 11:50:23 +00:00
|
|
|
|
|
|
|
halloc_free( context );
|
|
|
|
|
2006-11-11 11:06:50 +00:00
|
|
|
if( wchdir( cwd ) == -1 )
|
2005-09-20 13:26:39 +00:00
|
|
|
{
|
2006-06-08 23:55:57 +00:00
|
|
|
/*
|
2006-10-19 11:50:23 +00:00
|
|
|
If we can't change back to previos directory, we go to
|
2006-06-08 23:55:57 +00:00
|
|
|
~. Should be a sane default behavior.
|
|
|
|
*/
|
2006-10-19 11:50:23 +00:00
|
|
|
eval( L"builtin cd", 0, TOP );
|
2006-11-11 11:06:50 +00:00
|
|
|
}
|
|
|
|
else
|
2005-09-20 13:26:39 +00:00
|
|
|
{
|
2006-11-11 11:06:50 +00:00
|
|
|
env_set( L"PWD", cwd, ENV_EXPORT );
|
2005-09-20 13:26:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-25 20:54:43 +00:00
|
|
|
static int fish_parse_opt( int argc, char **argv, char **cmd_ptr )
|
2005-09-20 13:26:39 +00:00
|
|
|
{
|
|
|
|
int my_optind;
|
2006-10-25 20:54:43 +00:00
|
|
|
int force_interactive=0;
|
2005-09-20 13:26:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
while( 1 )
|
|
|
|
{
|
|
|
|
static struct option
|
|
|
|
long_options[] =
|
|
|
|
{
|
|
|
|
{
|
|
|
|
"command", required_argument, 0, 'c'
|
|
|
|
}
|
|
|
|
,
|
2006-02-22 15:41:52 +00:00
|
|
|
{
|
|
|
|
"debug-level", required_argument, 0, 'd'
|
|
|
|
}
|
|
|
|
,
|
2005-09-20 13:26:39 +00:00
|
|
|
{
|
|
|
|
"interactive", no_argument, 0, 'i'
|
|
|
|
}
|
|
|
|
,
|
2006-02-03 00:37:54 +00:00
|
|
|
{
|
|
|
|
"login", no_argument, 0, 'l'
|
|
|
|
}
|
|
|
|
,
|
2006-03-18 01:04:59 +00:00
|
|
|
{
|
|
|
|
"no-execute", no_argument, 0, 'n'
|
|
|
|
}
|
|
|
|
,
|
2005-09-20 13:26:39 +00:00
|
|
|
{
|
|
|
|
"profile", required_argument, 0, 'p'
|
|
|
|
}
|
|
|
|
,
|
|
|
|
{
|
|
|
|
"help", no_argument, 0, 'h'
|
|
|
|
}
|
|
|
|
,
|
|
|
|
{
|
|
|
|
"version", no_argument, 0, 'v'
|
|
|
|
}
|
|
|
|
,
|
|
|
|
{
|
|
|
|
0, 0, 0, 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
int opt_index = 0;
|
|
|
|
|
|
|
|
int opt = getopt_long( argc,
|
|
|
|
argv,
|
2006-05-18 13:00:39 +00:00
|
|
|
GETOPT_STRING,
|
2005-09-20 13:26:39 +00:00
|
|
|
long_options,
|
|
|
|
&opt_index );
|
|
|
|
|
|
|
|
if( opt == -1 )
|
|
|
|
break;
|
|
|
|
|
|
|
|
switch( opt )
|
|
|
|
{
|
|
|
|
case 0:
|
2006-07-22 10:16:51 +00:00
|
|
|
{
|
2005-09-20 13:26:39 +00:00
|
|
|
break;
|
2006-07-22 10:16:51 +00:00
|
|
|
}
|
|
|
|
|
2005-09-20 13:26:39 +00:00
|
|
|
case 'c':
|
2006-07-22 10:16:51 +00:00
|
|
|
{
|
2006-10-25 20:54:43 +00:00
|
|
|
*cmd_ptr = optarg;
|
2005-09-20 13:26:39 +00:00
|
|
|
is_interactive_session = 0;
|
|
|
|
break;
|
2006-07-22 10:16:51 +00:00
|
|
|
}
|
|
|
|
|
2006-02-22 15:41:52 +00:00
|
|
|
case 'd':
|
|
|
|
{
|
|
|
|
char *end;
|
2007-01-09 13:41:17 +00:00
|
|
|
int tmp;
|
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
tmp = strtol(optarg, &end, 10);
|
|
|
|
|
|
|
|
if( tmp >= 0 && tmp <=10 && !*end && !errno )
|
2006-02-22 15:41:52 +00:00
|
|
|
{
|
|
|
|
debug_level=tmp;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
debug( 0, _(L"Invalid value '%s' for debug level switch"), optarg );
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-09-20 13:26:39 +00:00
|
|
|
case 'h':
|
2006-07-22 10:16:51 +00:00
|
|
|
{
|
2007-01-17 13:12:46 +00:00
|
|
|
*cmd_ptr = "__fish_print_help fish";
|
2005-09-20 13:26:39 +00:00
|
|
|
break;
|
2006-07-22 10:16:51 +00:00
|
|
|
}
|
|
|
|
|
2005-09-20 13:26:39 +00:00
|
|
|
case 'i':
|
2006-07-22 10:16:51 +00:00
|
|
|
{
|
2005-09-20 13:26:39 +00:00
|
|
|
force_interactive = 1;
|
|
|
|
break;
|
2006-07-22 10:16:51 +00:00
|
|
|
}
|
|
|
|
|
2006-02-03 00:37:54 +00:00
|
|
|
case 'l':
|
2006-07-22 10:16:51 +00:00
|
|
|
{
|
2006-02-03 00:37:54 +00:00
|
|
|
is_login=1;
|
|
|
|
break;
|
2006-07-22 10:16:51 +00:00
|
|
|
}
|
|
|
|
|
2006-03-18 01:04:59 +00:00
|
|
|
case 'n':
|
2006-07-22 10:16:51 +00:00
|
|
|
{
|
2006-03-18 01:04:59 +00:00
|
|
|
no_exec=1;
|
|
|
|
break;
|
2006-07-22 10:16:51 +00:00
|
|
|
}
|
|
|
|
|
2005-09-20 13:26:39 +00:00
|
|
|
case 'p':
|
2006-07-22 10:16:51 +00:00
|
|
|
{
|
2005-09-20 13:26:39 +00:00
|
|
|
profile = optarg;
|
|
|
|
break;
|
2006-07-22 10:16:51 +00:00
|
|
|
}
|
|
|
|
|
2005-09-20 13:26:39 +00:00
|
|
|
case 'v':
|
2006-07-22 10:16:51 +00:00
|
|
|
{
|
2005-09-20 13:26:39 +00:00
|
|
|
fwprintf( stderr,
|
2006-01-26 14:48:10 +00:00
|
|
|
_(L"%s, version %s\n"),
|
2005-09-20 13:26:39 +00:00
|
|
|
PACKAGE_NAME,
|
|
|
|
PACKAGE_VERSION );
|
|
|
|
exit( 0 );
|
2006-07-22 10:16:51 +00:00
|
|
|
}
|
|
|
|
|
2005-09-20 13:26:39 +00:00
|
|
|
case '?':
|
2006-07-22 10:16:51 +00:00
|
|
|
{
|
2006-10-25 20:54:43 +00:00
|
|
|
exit( 1 );
|
2006-07-22 10:16:51 +00:00
|
|
|
}
|
|
|
|
|
2005-09-20 13:26:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
my_optind = optind;
|
|
|
|
|
2006-02-19 01:14:32 +00:00
|
|
|
is_login |= (strcmp( argv[0], "-fish") == 0);
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2006-10-25 20:54:43 +00:00
|
|
|
is_interactive_session &= (*cmd_ptr == 0);
|
2005-09-20 13:26:39 +00:00
|
|
|
is_interactive_session &= (my_optind == argc);
|
|
|
|
is_interactive_session &= isatty(STDIN_FILENO);
|
2006-02-03 00:37:54 +00:00
|
|
|
is_interactive_session |= force_interactive;
|
2006-01-04 12:51:02 +00:00
|
|
|
|
2006-10-25 20:54:43 +00:00
|
|
|
return my_optind;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Calls a bunch of init functions, parses the init files and then
|
|
|
|
parses commands from stdin or files, depending on arguments
|
|
|
|
*/
|
|
|
|
|
|
|
|
int main( int argc, char **argv )
|
|
|
|
{
|
|
|
|
int res=1;
|
|
|
|
char *cmd=0;
|
|
|
|
int my_optind=0;
|
|
|
|
|
|
|
|
halloc_util_init();
|
|
|
|
|
|
|
|
wsetlocale( LC_ALL, L"" );
|
|
|
|
is_interactive_session=1;
|
|
|
|
program_name=L"fish";
|
|
|
|
|
2006-11-11 10:48:40 +00:00
|
|
|
|
2006-10-25 20:54:43 +00:00
|
|
|
my_optind = fish_parse_opt( argc, argv, &cmd );
|
|
|
|
|
2006-03-18 01:04:59 +00:00
|
|
|
/*
|
|
|
|
No-exec is prohibited when in interactive mode
|
|
|
|
*/
|
|
|
|
if( is_interactive_session && no_exec)
|
|
|
|
{
|
|
|
|
debug( 1, _(L"Can not use the no-execute mode when running an interactive session") );
|
|
|
|
no_exec = 0;
|
|
|
|
}
|
|
|
|
|
2005-10-14 11:40:33 +00:00
|
|
|
proc_init();
|
2005-10-05 22:37:08 +00:00
|
|
|
event_init();
|
2005-11-02 15:41:59 +00:00
|
|
|
wutil_init();
|
2005-09-20 13:26:39 +00:00
|
|
|
parser_init();
|
|
|
|
builtin_init();
|
|
|
|
function_init();
|
|
|
|
env_init();
|
2005-10-25 09:39:45 +00:00
|
|
|
reader_init();
|
2006-04-19 09:55:02 +00:00
|
|
|
history_init();
|
2006-03-10 13:38:09 +00:00
|
|
|
|
2005-09-20 13:26:39 +00:00
|
|
|
if( read_init() )
|
|
|
|
{
|
|
|
|
if( cmd != 0 )
|
|
|
|
{
|
|
|
|
wchar_t *cmd_wcs = str2wcs( cmd );
|
|
|
|
res = eval( cmd_wcs, 0, TOP );
|
|
|
|
free(cmd_wcs);
|
2006-05-14 10:16:23 +00:00
|
|
|
reader_exit(0, 0);
|
2005-09-20 13:26:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( my_optind == argc )
|
|
|
|
{
|
2005-10-19 12:07:44 +00:00
|
|
|
res = reader_read( 0 );
|
2005-09-20 13:26:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
char **ptr;
|
|
|
|
char *file = *(argv+1);
|
|
|
|
int i;
|
|
|
|
string_buffer_t sb;
|
2005-10-19 12:07:44 +00:00
|
|
|
int fd;
|
2006-02-02 15:23:56 +00:00
|
|
|
wchar_t *rel_filename, *abs_filename;
|
|
|
|
|
2005-10-19 12:07:44 +00:00
|
|
|
if( ( fd = open(file, O_RDONLY) ) == -1 )
|
2005-09-20 13:26:39 +00:00
|
|
|
{
|
|
|
|
wperror( L"open" );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( *(argv+2))
|
|
|
|
{
|
2006-04-19 09:58:18 +00:00
|
|
|
sb_init( &sb );
|
|
|
|
|
2005-09-20 13:26:39 +00:00
|
|
|
for( i=1,ptr = argv+2; *ptr; i++, ptr++ )
|
|
|
|
{
|
|
|
|
if( i != 1 )
|
|
|
|
sb_append( &sb, ARRAY_SEP_STR );
|
|
|
|
wchar_t *val = str2wcs( *ptr );
|
|
|
|
sb_append( &sb, val );
|
|
|
|
free( val );
|
|
|
|
}
|
|
|
|
|
|
|
|
env_set( L"argv", (wchar_t *)sb.buff, 0 );
|
|
|
|
sb_destroy( &sb );
|
|
|
|
}
|
2006-02-02 15:23:56 +00:00
|
|
|
|
|
|
|
rel_filename = str2wcs( file );
|
2006-02-03 00:38:55 +00:00
|
|
|
abs_filename = wrealpath( rel_filename, 0 );
|
|
|
|
if( !abs_filename )
|
|
|
|
abs_filename = wcsdup(rel_filename);
|
2006-02-02 15:23:56 +00:00
|
|
|
reader_push_current_filename( intern( abs_filename ) );
|
|
|
|
free( rel_filename );
|
|
|
|
free( abs_filename );
|
2006-02-03 00:37:54 +00:00
|
|
|
|
2005-10-19 12:07:44 +00:00
|
|
|
res = reader_read( fd );
|
2005-09-20 13:26:39 +00:00
|
|
|
|
|
|
|
if( res )
|
|
|
|
{
|
|
|
|
debug( 1,
|
2006-01-26 14:48:10 +00:00
|
|
|
_(L"Error while reading file %ls\n"),
|
|
|
|
reader_current_filename()?reader_current_filename(): _(L"Standard input") );
|
2005-09-20 13:26:39 +00:00
|
|
|
}
|
2006-02-02 15:23:56 +00:00
|
|
|
reader_pop_current_filename();
|
2005-09-20 13:26:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-02-03 00:37:54 +00:00
|
|
|
|
2006-05-14 10:16:23 +00:00
|
|
|
proc_fire_event( L"PROCESS_EXIT", EVENT_EXIT, getpid(), res );
|
2006-07-22 10:16:51 +00:00
|
|
|
|
2006-04-19 09:55:02 +00:00
|
|
|
history_destroy();
|
2005-09-20 13:26:39 +00:00
|
|
|
proc_destroy();
|
|
|
|
builtin_destroy();
|
|
|
|
function_destroy();
|
|
|
|
reader_destroy();
|
|
|
|
parser_destroy();
|
|
|
|
wutil_destroy();
|
2005-10-05 22:37:08 +00:00
|
|
|
event_destroy();
|
2006-02-03 00:37:54 +00:00
|
|
|
|
2006-02-09 15:50:20 +00:00
|
|
|
halloc_util_destroy();
|
2006-07-22 10:16:51 +00:00
|
|
|
|
|
|
|
env_destroy();
|
|
|
|
|
2005-09-20 13:26:39 +00:00
|
|
|
intern_free_all();
|
|
|
|
|
2006-11-02 13:48:59 +00:00
|
|
|
return res?STATUS_UNKNOWN_COMMAND:proc_get_last_status();
|
2005-09-20 13:26:39 +00:00
|
|
|
}
|