mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-01-19 18:22:45 +08:00
Migrate function.cpp to STL types.
This commit is contained in:
parent
57c9eeeecb
commit
8ba79d6ab9
42
builtin.cpp
42
builtin.cpp
|
@ -1135,7 +1135,6 @@ static void functions_def( wchar_t *name, string_buffer_t *out )
|
|||
array_list_t ev;
|
||||
event_t search;
|
||||
int i;
|
||||
array_list_t *named;
|
||||
|
||||
search.function_name = name;
|
||||
search.type = EVENT_ANY;
|
||||
|
@ -1207,13 +1206,13 @@ static void functions_def( wchar_t *name, string_buffer_t *out )
|
|||
|
||||
al_destroy( &ev );
|
||||
|
||||
named = function_get_named_arguments( name );
|
||||
if( named )
|
||||
wcstring_list_t named = function_get_named_arguments( name );
|
||||
if( named.size() > 0 )
|
||||
{
|
||||
sb_printf( out, L" --argument" );
|
||||
for( i=0; i<al_get_count( named ); i++ )
|
||||
for( i=0; i<(int)named.size(); i++ )
|
||||
{
|
||||
sb_printf( out, L" %ls", (wchar_t *)al_get( named, i ) );
|
||||
sb_printf( out, L" %ls", named.at(i).c_str() );
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1231,8 +1230,6 @@ static int builtin_functions( wchar_t **argv )
|
|||
int erase=0;
|
||||
wchar_t *desc=0;
|
||||
|
||||
array_list_t names;
|
||||
|
||||
int argc=builtin_count_args( argv );
|
||||
int list=0;
|
||||
int show_hidden=0;
|
||||
|
@ -1395,19 +1392,18 @@ static int builtin_functions( wchar_t **argv )
|
|||
else if( list || (argc==woptind))
|
||||
{
|
||||
int is_screen = !builtin_out_redirect && isatty(1);
|
||||
|
||||
al_init( &names );
|
||||
function_get_names( &names, show_hidden );
|
||||
sort_list( &names );
|
||||
size_t i;
|
||||
wcstring_list_t names = function_get_names( show_hidden );
|
||||
std::sort(names.begin(), names.end());
|
||||
if( is_screen )
|
||||
{
|
||||
string_buffer_t buff;
|
||||
sb_init( &buff );
|
||||
|
||||
for( i=0; i<al_get_count( &names ); i++ )
|
||||
for( i=0; i<names.size(); i++ )
|
||||
{
|
||||
sb_append( &buff,
|
||||
al_get(&names, i),
|
||||
names.at(i).c_str(),
|
||||
L", ",
|
||||
NULL );
|
||||
}
|
||||
|
@ -1417,16 +1413,15 @@ static int builtin_functions( wchar_t **argv )
|
|||
}
|
||||
else
|
||||
{
|
||||
for( i=0; i<al_get_count( &names ); i++ )
|
||||
for( i=0; i<names.size(); i++ )
|
||||
{
|
||||
sb_append( sb_out,
|
||||
al_get(&names, i),
|
||||
names.at(i).c_str(),
|
||||
L"\n",
|
||||
NULL );
|
||||
}
|
||||
}
|
||||
|
||||
al_destroy( &names );
|
||||
return STATUS_BUILTIN_OK;
|
||||
}
|
||||
else if( copy )
|
||||
|
@ -1826,8 +1821,7 @@ static int builtin_function( wchar_t **argv )
|
|||
|
||||
if( res )
|
||||
{
|
||||
int i;
|
||||
array_list_t names;
|
||||
size_t i;
|
||||
int chars=0;
|
||||
|
||||
builtin_print_help( argv[0], sb_err );
|
||||
|
@ -1835,13 +1829,12 @@ static int builtin_function( wchar_t **argv )
|
|||
sb_append( sb_err, cfa );
|
||||
chars += wcslen( cfa );
|
||||
|
||||
al_init( &names );
|
||||
function_get_names( &names, 0 );
|
||||
sort_list( &names );
|
||||
wcstring_list_t names = function_get_names(0);
|
||||
sort(names.begin(), names.end());
|
||||
|
||||
for( i=0; i<al_get_count( &names ); i++ )
|
||||
for( i=0; i<names.size(); i++ )
|
||||
{
|
||||
wchar_t *nxt = (wchar_t *)al_get( &names, i );
|
||||
const wchar_t *nxt = names.at(i).c_str();
|
||||
int l = wcslen( nxt + 2 );
|
||||
if( chars+l > common_get_width() )
|
||||
{
|
||||
|
@ -1852,7 +1845,6 @@ static int builtin_function( wchar_t **argv )
|
|||
sb_append( sb_err,
|
||||
nxt, L" ", NULL );
|
||||
}
|
||||
al_destroy( &names );
|
||||
sb_append( sb_err, L"\n" );
|
||||
|
||||
parser_pop_block();
|
||||
|
@ -2888,7 +2880,7 @@ static int builtin_source( wchar_t ** argv )
|
|||
|
||||
current_block->param1.source_dest = fn_intern;
|
||||
|
||||
parse_util_set_argv( (argc>2)?(argv+2):(argv+1), 0);
|
||||
parse_util_set_argv( (argc>2)?(argv+2):(argv+1), wcstring_list_t());
|
||||
|
||||
res = reader_read( fd, real_io );
|
||||
|
||||
|
|
11
complete.cpp
11
complete.cpp
|
@ -800,7 +800,7 @@ int complete_is_valid_option( const wchar_t *str,
|
|||
|
||||
if( is_short_opt )
|
||||
{
|
||||
int j;
|
||||
size_t j;
|
||||
|
||||
opt_found=1;
|
||||
for( j=1; j<wcslen(opt); j++)
|
||||
|
@ -1169,7 +1169,12 @@ static void complete_cmd( const wchar_t *cmd,
|
|||
|
||||
if( use_function )
|
||||
{
|
||||
function_get_names( &possible_comp, cmd[0] == L'_' );
|
||||
//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++) {
|
||||
al_push(&possible_comp, names.at(i).c_str());
|
||||
}
|
||||
|
||||
complete_strings( comp, cmd, 0, &complete_function_desc, &possible_comp, 0 );
|
||||
}
|
||||
|
||||
|
@ -2111,7 +2116,7 @@ void complete_print( string_buffer_t *out )
|
|||
complete_entry_opt_t *o;
|
||||
for( o= e->first_option; o; o=o->next )
|
||||
{
|
||||
wchar_t *modestr[] =
|
||||
const wchar_t *modestr[] =
|
||||
{
|
||||
L"",
|
||||
L" --no-files",
|
||||
|
|
11
exec.cpp
11
exec.cpp
|
@ -1175,7 +1175,6 @@ void exec( job_t *j )
|
|||
{
|
||||
const wchar_t * orig_def;
|
||||
wchar_t * def=0;
|
||||
array_list_t *named_arguments;
|
||||
int shadows;
|
||||
|
||||
|
||||
|
@ -1187,14 +1186,20 @@ void exec( job_t *j )
|
|||
|
||||
signal_unblock();
|
||||
orig_def = function_get_definition( p->argv[0] );
|
||||
named_arguments = function_get_named_arguments( p->argv[0] );
|
||||
|
||||
// function_get_named_arguments may trigger autoload, which deallocates the orig_def.
|
||||
// We should make function_get_definition return a wcstring (but how to handle NULL...)
|
||||
if (orig_def)
|
||||
orig_def = wcsdup(orig_def);
|
||||
|
||||
wcstring_list_t named_arguments = function_get_named_arguments( p->argv[0] );
|
||||
shadows = function_get_shadows( p->argv[0] );
|
||||
|
||||
signal_block();
|
||||
|
||||
if( orig_def )
|
||||
{
|
||||
def = (wchar_t *)halloc_register( j, wcsdup(orig_def) );
|
||||
def = (wchar_t *)halloc_register( j, const_cast<wchar_t *>(orig_def) );
|
||||
}
|
||||
if( def == 0 )
|
||||
{
|
||||
|
|
335
function.cpp
335
function.cpp
|
@ -18,6 +18,8 @@
|
|||
#include <signal.h>
|
||||
#include <pthread.h>
|
||||
#include <errno.h>
|
||||
#include <map>
|
||||
#include <set>
|
||||
|
||||
#include "wutil.h"
|
||||
#include "fallback.h"
|
||||
|
@ -37,48 +39,47 @@
|
|||
#include "halloc.h"
|
||||
#include "halloc_util.h"
|
||||
|
||||
|
||||
/**
|
||||
Struct describing a function
|
||||
*/
|
||||
typedef struct
|
||||
class function_internal_info_t
|
||||
{
|
||||
/** Function definition */
|
||||
wchar_t *definition;
|
||||
/** Function description */
|
||||
wchar_t *description;
|
||||
public:
|
||||
/** Function definition */
|
||||
wcstring definition;
|
||||
|
||||
/** Function description */
|
||||
wcstring description;
|
||||
|
||||
/**
|
||||
File where this function was defined
|
||||
*/
|
||||
const wchar_t *definition_file;
|
||||
const wchar_t *definition_file;
|
||||
|
||||
/**
|
||||
Line where definition started
|
||||
*/
|
||||
int definition_offset;
|
||||
|
||||
int definition_offset;
|
||||
|
||||
/**
|
||||
List of all named arguments for this function
|
||||
*/
|
||||
array_list_t *named_arguments;
|
||||
|
||||
|
||||
wcstring_list_t named_arguments;
|
||||
|
||||
/**
|
||||
Flag for specifying that this function was automatically loaded
|
||||
*/
|
||||
int is_autoload;
|
||||
|
||||
bool is_autoload;
|
||||
|
||||
/**
|
||||
Set to non-zero if invoking this function shadows the variables
|
||||
of the underlying function.
|
||||
*/
|
||||
int shadows;
|
||||
}
|
||||
function_internal_data_t;
|
||||
bool shadows;
|
||||
};
|
||||
|
||||
/**
|
||||
Table containing all functions
|
||||
*/
|
||||
static hash_table_t functions;
|
||||
typedef std::map<wcstring, function_internal_info_t> function_map_t;
|
||||
static function_map_t loaded_functions;
|
||||
|
||||
/* Lock for functions */
|
||||
static pthread_mutex_t functions_lock;
|
||||
|
@ -126,10 +127,9 @@ static int load( const wchar_t *name )
|
|||
ASSERT_IS_MAIN_THREAD();
|
||||
int was_autoload = is_autoload;
|
||||
int res;
|
||||
function_internal_data_t *data;
|
||||
LOCK_FUNCTIONS();
|
||||
data = (function_internal_data_t *)hash_get( &functions, name );
|
||||
if( data && !data->is_autoload ) {
|
||||
function_map_t::iterator iter = loaded_functions.find(name);
|
||||
if( iter != loaded_functions.end() && !iter->second.is_autoload ) {
|
||||
UNLOCK_FUNCTIONS();
|
||||
return 0;
|
||||
}
|
||||
|
@ -148,7 +148,7 @@ static int load( const wchar_t *name )
|
|||
Insert a list of all dynamically loaded functions into the
|
||||
specified list.
|
||||
*/
|
||||
static void autoload_names( array_list_t *out, int get_hidden )
|
||||
static void autoload_names( std::set<wcstring> &names, int get_hidden )
|
||||
{
|
||||
size_t i;
|
||||
|
||||
|
@ -173,19 +173,15 @@ static void autoload_names( array_list_t *out, int get_hidden )
|
|||
while (wreaddir(dir, name))
|
||||
{
|
||||
const wchar_t *fn = name.c_str();
|
||||
wchar_t *suffix;
|
||||
const wchar_t *suffix;
|
||||
if( !get_hidden && fn[0] == L'_' )
|
||||
continue;
|
||||
|
||||
suffix = const_cast<wchar_t*>(wcsrchr( fn, L'.' ));
|
||||
suffix = wcsrchr( fn, L'.' );
|
||||
if( suffix && (wcscmp( suffix, L".fish" ) == 0 ) )
|
||||
{
|
||||
const wchar_t *dup;
|
||||
*suffix = 0;
|
||||
dup = intern( fn );
|
||||
if( !dup )
|
||||
DIE_MEM();
|
||||
al_push( out, dup );
|
||||
wcstring name(fn, suffix - fn);
|
||||
names.insert(name);
|
||||
}
|
||||
}
|
||||
closedir(dir);
|
||||
|
@ -194,10 +190,6 @@ static void autoload_names( array_list_t *out, int get_hidden )
|
|||
|
||||
void function_init()
|
||||
{
|
||||
hash_init( &functions,
|
||||
&hash_wcs_func,
|
||||
&hash_wcs_cmp );
|
||||
|
||||
pthread_mutexattr_t a;
|
||||
VOMIT_ON_FAILURE(pthread_mutexattr_init(&a));
|
||||
VOMIT_ON_FAILURE(pthread_mutexattr_settype(&a,PTHREAD_MUTEX_RECURSIVE));
|
||||
|
@ -205,19 +197,10 @@ void function_init()
|
|||
VOMIT_ON_FAILURE(pthread_mutexattr_destroy(&a));
|
||||
}
|
||||
|
||||
/**
|
||||
Clear specified value, but not key
|
||||
*/
|
||||
static void clear_entry( void *key, void *value )
|
||||
{
|
||||
halloc_free( value );
|
||||
}
|
||||
|
||||
void function_destroy()
|
||||
{
|
||||
LOCK_FUNCTIONS();
|
||||
hash_foreach( &functions, &clear_entry );
|
||||
hash_destroy( &functions );
|
||||
loaded_functions.clear();
|
||||
UNLOCK_FUNCTIONS();
|
||||
}
|
||||
|
||||
|
@ -225,36 +208,32 @@ void function_destroy()
|
|||
void function_add( function_data_t *data )
|
||||
{
|
||||
int i;
|
||||
wchar_t *cmd_end;
|
||||
function_internal_data_t *d;
|
||||
|
||||
CHECK( data->name, );
|
||||
CHECK( data->definition, );
|
||||
LOCK_FUNCTIONS();
|
||||
function_remove( data->name );
|
||||
|
||||
d = (function_internal_data_t *)halloc( 0, sizeof( function_internal_data_t ) );
|
||||
d->definition_offset = parse_util_lineno( parser_get_buffer(), current_block->tok_pos )-1;
|
||||
d->definition = halloc_wcsdup( d, data->definition );
|
||||
|
||||
function_internal_info_t &info = loaded_functions[data->name];
|
||||
|
||||
info.definition_offset = parse_util_lineno( parser_get_buffer(), current_block->tok_pos )-1;
|
||||
info.definition = data->definition;
|
||||
|
||||
if( data->named_arguments )
|
||||
{
|
||||
d->named_arguments = al_halloc( d );
|
||||
|
||||
for( i=0; i<al_get_count( data->named_arguments ); i++ )
|
||||
{
|
||||
al_push( d->named_arguments, halloc_wcsdup( d, (wchar_t *)al_get( data->named_arguments, i ) ) );
|
||||
info.named_arguments.push_back((wchar_t *)al_get( data->named_arguments, i ));
|
||||
}
|
||||
}
|
||||
|
||||
cmd_end = d->definition + wcslen(d->definition)-1;
|
||||
|
||||
d->description = data->description?halloc_wcsdup( d, data->description ):0;
|
||||
d->definition_file = intern(reader_current_filename());
|
||||
d->is_autoload = is_autoload;
|
||||
d->shadows = data->shadows;
|
||||
if (data->description)
|
||||
info.description = data->description;
|
||||
info.definition_file = intern(reader_current_filename());
|
||||
info.is_autoload = is_autoload;
|
||||
info.shadows = data->shadows;
|
||||
|
||||
hash_put( &functions, intern(data->name), d );
|
||||
|
||||
for( i=0; i<al_get_count( data->events ); i++ )
|
||||
{
|
||||
|
@ -273,7 +252,7 @@ static int function_exists_internal( const wchar_t *cmd, bool autoload )
|
|||
|
||||
LOCK_FUNCTIONS();
|
||||
if ( autoload ) load( cmd );
|
||||
res = (hash_get(&functions, cmd) != 0 );
|
||||
res = loaded_functions.find(cmd) != loaded_functions.end();
|
||||
UNLOCK_FUNCTIONS();
|
||||
return res;
|
||||
}
|
||||
|
@ -290,22 +269,14 @@ int function_exists_no_autoload( const wchar_t *cmd )
|
|||
|
||||
void function_remove( const wchar_t *name )
|
||||
{
|
||||
void *key;
|
||||
void *dv;
|
||||
function_internal_data_t *d;
|
||||
event_t ev;
|
||||
|
||||
CHECK( name, );
|
||||
|
||||
LOCK_FUNCTIONS();
|
||||
hash_remove( &functions,
|
||||
name,
|
||||
&key,
|
||||
&dv );
|
||||
|
||||
d=(function_internal_data_t *)dv;
|
||||
bool erased = (loaded_functions.erase(name) > 0);
|
||||
|
||||
if( !key ) {
|
||||
if( !erased ) {
|
||||
UNLOCK_FUNCTIONS();
|
||||
return;
|
||||
}
|
||||
|
@ -314,8 +285,6 @@ void function_remove( const wchar_t *name )
|
|||
ev.function_name=name;
|
||||
event_remove( &ev );
|
||||
|
||||
halloc_free( d );
|
||||
|
||||
/*
|
||||
Notify the autoloader that the specified function is erased, but
|
||||
only if this call to fish_remove is not made by the autoloader
|
||||
|
@ -330,209 +299,141 @@ void function_remove( const wchar_t *name )
|
|||
|
||||
const wchar_t *function_get_definition( const wchar_t *name )
|
||||
{
|
||||
function_internal_data_t *data;
|
||||
|
||||
const wchar_t *result = NULL;
|
||||
CHECK( name, 0 );
|
||||
LOCK_FUNCTIONS();
|
||||
load( name );
|
||||
data = (function_internal_data_t *)hash_get( &functions, name );
|
||||
function_map_t::iterator iter = loaded_functions.find(name);
|
||||
if (iter != loaded_functions.end())
|
||||
result = iter->second.definition.c_str();
|
||||
UNLOCK_FUNCTIONS();
|
||||
if( data == 0 )
|
||||
return 0;
|
||||
return data->definition;
|
||||
return result;
|
||||
}
|
||||
|
||||
array_list_t *function_get_named_arguments( const wchar_t *name )
|
||||
wcstring_list_t function_get_named_arguments( const wchar_t *name )
|
||||
{
|
||||
function_internal_data_t *data;
|
||||
|
||||
CHECK( name, 0 );
|
||||
wcstring_list_t result;
|
||||
CHECK( name, result );
|
||||
LOCK_FUNCTIONS();
|
||||
load( name );
|
||||
data = (function_internal_data_t *)hash_get( &functions, name );
|
||||
function_map_t::iterator iter = loaded_functions.find(name);
|
||||
if (iter != loaded_functions.end())
|
||||
result = iter->second.named_arguments;
|
||||
UNLOCK_FUNCTIONS();
|
||||
if( data == 0 )
|
||||
return 0;
|
||||
return data->named_arguments;
|
||||
return result;
|
||||
}
|
||||
|
||||
int function_get_shadows( const wchar_t *name )
|
||||
{
|
||||
function_internal_data_t *data;
|
||||
|
||||
bool result = false;
|
||||
CHECK( name, 0 );
|
||||
LOCK_FUNCTIONS();
|
||||
load( name );
|
||||
data = (function_internal_data_t *)hash_get( &functions, name );
|
||||
function_map_t::const_iterator iter = loaded_functions.find(name);
|
||||
if (iter != loaded_functions.end())
|
||||
result = iter->second.shadows;
|
||||
UNLOCK_FUNCTIONS();
|
||||
if( data == 0 )
|
||||
return 0;
|
||||
return data->shadows;
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
const wchar_t *function_get_desc( const wchar_t *name )
|
||||
{
|
||||
function_internal_data_t *data;
|
||||
|
||||
const wchar_t *result = NULL;
|
||||
CHECK( name, 0 );
|
||||
|
||||
load( name );
|
||||
LOCK_FUNCTIONS();
|
||||
data = (function_internal_data_t *)hash_get( &functions, name );
|
||||
function_map_t::const_iterator iter = loaded_functions.find(name);
|
||||
if (iter != loaded_functions.end())
|
||||
result = iter->second.description.c_str();
|
||||
UNLOCK_FUNCTIONS();
|
||||
if( data == 0 )
|
||||
return 0;
|
||||
|
||||
return _(data->description);
|
||||
|
||||
/* Empty length string goes to NULL */
|
||||
if (result && ! result[0])
|
||||
result = NULL;
|
||||
|
||||
return result ? _(result) : NULL;
|
||||
}
|
||||
|
||||
void function_set_desc( const wchar_t *name, const wchar_t *desc )
|
||||
{
|
||||
function_internal_data_t *data;
|
||||
|
||||
CHECK( name, );
|
||||
CHECK( desc, );
|
||||
|
||||
load( name );
|
||||
LOCK_FUNCTIONS();
|
||||
data = (function_internal_data_t *)hash_get( &functions, name );
|
||||
function_map_t::iterator iter = loaded_functions.find(name);
|
||||
if (iter != loaded_functions.end())
|
||||
iter->second.description = desc;
|
||||
UNLOCK_FUNCTIONS();
|
||||
if( data == 0 )
|
||||
return;
|
||||
|
||||
data->description = halloc_wcsdup( data, desc );
|
||||
}
|
||||
|
||||
int function_copy( const wchar_t *name, const wchar_t *new_name )
|
||||
{
|
||||
int i;
|
||||
function_internal_data_t *d, *orig_d;
|
||||
|
||||
CHECK( name, 0 );
|
||||
CHECK( new_name, 0 );
|
||||
|
||||
orig_d = (function_internal_data_t *)hash_get(&functions, name);
|
||||
if( !orig_d )
|
||||
return 0;
|
||||
|
||||
d = (function_internal_data_t *)halloc(0, sizeof( function_internal_data_t ) );
|
||||
d->definition_offset = orig_d->definition_offset;
|
||||
d->definition = halloc_wcsdup( d, orig_d->definition );
|
||||
if( orig_d->named_arguments )
|
||||
{
|
||||
d->named_arguments = al_halloc( d );
|
||||
for( i=0; i<al_get_count( orig_d->named_arguments ); i++ )
|
||||
{
|
||||
al_push( d->named_arguments, halloc_wcsdup( d, (wchar_t *)al_get( orig_d->named_arguments, i ) ) );
|
||||
}
|
||||
d->description = orig_d->description?halloc_wcsdup(d, orig_d->description):0;
|
||||
d->shadows = orig_d->shadows;
|
||||
|
||||
int result = 0;
|
||||
LOCK_FUNCTIONS();
|
||||
function_map_t::const_iterator iter = loaded_functions.find(name);
|
||||
if (iter != loaded_functions.end()) {
|
||||
function_internal_info_t &new_info = loaded_functions[new_name];
|
||||
new_info = iter->second;
|
||||
|
||||
// This new instance of the function shouldn't be tied to the def
|
||||
// file of the original.
|
||||
d->definition_file = 0;
|
||||
d->is_autoload = 0;
|
||||
}
|
||||
|
||||
hash_put( &functions, intern(new_name), d );
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
/**
|
||||
Search arraylist of strings for specified string
|
||||
*/
|
||||
static int al_contains_str( array_list_t *list, const wchar_t * str )
|
||||
{
|
||||
int i;
|
||||
|
||||
CHECK( list, 0 );
|
||||
CHECK( str, 0 );
|
||||
|
||||
for( i=0; i<al_get_count( list ); i++ )
|
||||
{
|
||||
if( wcscmp( (const wchar_t *)al_get( list, i ), str) == 0 )
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
Helper function for removing hidden functions
|
||||
*/
|
||||
static void get_names_internal( void *key,
|
||||
void *val,
|
||||
void *aux )
|
||||
{
|
||||
wchar_t *name = (wchar_t *)key;
|
||||
if( name[0] != L'_' && !al_contains_str( (array_list_t *)aux, name ) )
|
||||
{
|
||||
al_push( (array_list_t *)aux, name );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
Helper function for removing hidden functions
|
||||
*/
|
||||
static void get_names_internal_all( void *key,
|
||||
void *val,
|
||||
void *aux )
|
||||
{
|
||||
wchar_t *name = (wchar_t *)key;
|
||||
|
||||
if( !al_contains_str( (array_list_t *)aux, name ) )
|
||||
{
|
||||
al_push( (array_list_t *)aux, name );
|
||||
}
|
||||
}
|
||||
|
||||
void function_get_names( array_list_t *list, int get_hidden )
|
||||
{
|
||||
CHECK( list, );
|
||||
LOCK_FUNCTIONS();
|
||||
autoload_names( list, get_hidden );
|
||||
|
||||
if( get_hidden )
|
||||
{
|
||||
hash_foreach2( &functions, &get_names_internal_all, list );
|
||||
}
|
||||
else
|
||||
{
|
||||
hash_foreach2( &functions, &get_names_internal, list );
|
||||
}
|
||||
new_info.definition_file = 0;
|
||||
new_info.is_autoload = 0;
|
||||
|
||||
result = 1;
|
||||
}
|
||||
UNLOCK_FUNCTIONS();
|
||||
return result;
|
||||
}
|
||||
|
||||
wcstring_list_t function_get_names( int get_hidden )
|
||||
{
|
||||
std::set<wcstring> names;
|
||||
LOCK_FUNCTIONS();
|
||||
autoload_names( names, get_hidden );
|
||||
|
||||
function_map_t::const_iterator iter;
|
||||
for (iter = loaded_functions.begin(); iter != loaded_functions.end(); iter++) {
|
||||
const wcstring &name = iter->first;
|
||||
|
||||
/* Maybe skip hidden */
|
||||
if (! get_hidden) {
|
||||
if (name.size() == 0 || name.at(0) == L'_') continue;
|
||||
}
|
||||
|
||||
names.insert(name);
|
||||
}
|
||||
UNLOCK_FUNCTIONS();
|
||||
|
||||
return wcstring_list_t(names.begin(), names.end());
|
||||
}
|
||||
|
||||
const wchar_t *function_get_definition_file( const wchar_t *name )
|
||||
{
|
||||
function_internal_data_t *data;
|
||||
const wchar_t *result = NULL;
|
||||
|
||||
CHECK( name, 0 );
|
||||
LOCK_FUNCTIONS();
|
||||
data = (function_internal_data_t *)hash_get( &functions, name );
|
||||
function_map_t::const_iterator iter = loaded_functions.find(name);
|
||||
if (iter != loaded_functions.end())
|
||||
result = iter->second.definition_file;
|
||||
UNLOCK_FUNCTIONS();
|
||||
if( data == 0 )
|
||||
return 0;
|
||||
|
||||
return data->definition_file;
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
int function_get_definition_offset( const wchar_t *name )
|
||||
{
|
||||
function_internal_data_t *data;
|
||||
int result = -1;
|
||||
|
||||
CHECK( name, -1 );
|
||||
LOCK_FUNCTIONS();
|
||||
data = (function_internal_data_t *)hash_get( &functions, name );
|
||||
function_map_t::const_iterator iter = loaded_functions.find(name);
|
||||
if (iter != loaded_functions.end())
|
||||
result = iter->second.definition_offset;
|
||||
UNLOCK_FUNCTIONS();
|
||||
if( data == 0 )
|
||||
return -1;
|
||||
|
||||
return data->definition_offset;
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
10
function.h
10
function.h
|
@ -13,6 +13,7 @@
|
|||
#include <wchar.h>
|
||||
|
||||
#include "util.h"
|
||||
#include "common.h"
|
||||
|
||||
/**
|
||||
Structure describing a function. This is used by the parser to
|
||||
|
@ -99,14 +100,11 @@ int function_exists( const wchar_t *name );
|
|||
int function_exists_no_autoload( const wchar_t *name );
|
||||
|
||||
/**
|
||||
Insert all function names into l. These are not copies of the
|
||||
strings and should not be freed after use.
|
||||
Returns all function names.
|
||||
|
||||
\param list the list to add the names to
|
||||
\param get_hidden whether to include hidden functions, i.e. ones starting with an underscore
|
||||
*/
|
||||
void function_get_names( array_list_t *list,
|
||||
int get_hidden );
|
||||
wcstring_list_t function_get_names( int get_hidden );
|
||||
|
||||
/**
|
||||
Returns tha absolute path of the file where the specified function
|
||||
|
@ -129,7 +127,7 @@ int function_get_definition_offset( const wchar_t *name );
|
|||
/**
|
||||
Returns a list of all named arguments of the specified function.
|
||||
*/
|
||||
array_list_t *function_get_named_arguments( const wchar_t *name );
|
||||
wcstring_list_t function_get_named_arguments( const wchar_t *name );
|
||||
|
||||
/**
|
||||
Creates a new function using the same definition as the specified function.
|
||||
|
|
|
@ -1039,7 +1039,7 @@ static int parse_util_load_internal( const wcstring &cmd,
|
|||
return reloaded;
|
||||
}
|
||||
|
||||
void parse_util_set_argv( wchar_t **argv, array_list_t *named_arguments )
|
||||
void parse_util_set_argv( wchar_t **argv, const wcstring_list_t &named_arguments )
|
||||
{
|
||||
if( *argv )
|
||||
{
|
||||
|
@ -1064,14 +1064,14 @@ void parse_util_set_argv( wchar_t **argv, array_list_t *named_arguments )
|
|||
env_set( L"argv", 0, ENV_LOCAL );
|
||||
}
|
||||
|
||||
if( named_arguments )
|
||||
if( named_arguments.size() )
|
||||
{
|
||||
wchar_t **arg;
|
||||
int i;
|
||||
size_t i;
|
||||
|
||||
for( i=0, arg=argv; i < al_get_count( named_arguments ); i++ )
|
||||
for( i=0, arg=argv; i < named_arguments.size(); i++ )
|
||||
{
|
||||
env_set( (const wchar_t *)al_get( named_arguments, i ), *arg, ENV_LOCAL );
|
||||
env_set( named_arguments.at(i).c_str(), *arg, ENV_LOCAL );
|
||||
|
||||
if( *arg )
|
||||
arg++;
|
||||
|
|
|
@ -155,7 +155,7 @@ int parse_util_unload( const wchar_t *cmd,
|
|||
Set the argv environment variable to the specified null-terminated
|
||||
array of strings.
|
||||
*/
|
||||
void parse_util_set_argv( wchar_t **argv, array_list_t *named_arguments );
|
||||
void parse_util_set_argv( wchar_t **argv, const wcstring_list_t &named_arguments );
|
||||
|
||||
/**
|
||||
Make a duplicate of the specified string, unescape wildcard
|
||||
|
|
Loading…
Reference in New Issue
Block a user