2011-12-27 03:18:46 +00:00
|
|
|
/** \file function.h
|
2005-09-20 13:26:39 +00:00
|
|
|
|
|
|
|
Prototypes for functions for storing and retrieving function
|
2006-11-15 14:16:49 +00:00
|
|
|
information. These functions also take care of autoloading
|
|
|
|
functions in the $fish_function_path. Actual function evaluation
|
|
|
|
is taken care of by the parser and to some degree the builtin
|
|
|
|
handling library.
|
2005-09-20 13:26:39 +00:00
|
|
|
*/
|
|
|
|
|
2005-10-04 15:11:39 +00:00
|
|
|
#ifndef FISH_FUNCTION_H
|
|
|
|
#define FISH_FUNCTION_H
|
|
|
|
|
|
|
|
#include <wchar.h>
|
|
|
|
|
|
|
|
#include "util.h"
|
2012-01-14 07:44:18 +00:00
|
|
|
#include "common.h"
|
2012-02-08 10:34:31 +00:00
|
|
|
#include "event.h"
|
2005-10-04 15:11:39 +00:00
|
|
|
|
2012-01-24 04:32:36 +00:00
|
|
|
#include <tr1/memory>
|
|
|
|
using std::tr1::shared_ptr;
|
|
|
|
|
2012-01-16 20:10:08 +00:00
|
|
|
class parser_t;
|
2012-01-28 22:56:13 +00:00
|
|
|
class env_vars;
|
2012-01-16 20:10:08 +00:00
|
|
|
|
2007-04-22 22:10:33 +00:00
|
|
|
/**
|
2008-01-16 01:06:01 +00:00
|
|
|
Structure describing a function. This is used by the parser to
|
|
|
|
store data on a function while parsing it. It is not used
|
|
|
|
internally to store functions, the function_internal_data_t
|
|
|
|
structure is used for that purpose. Parhaps these two should be
|
|
|
|
merged.
|
|
|
|
*/
|
2012-02-08 10:34:31 +00:00
|
|
|
struct function_data_t
|
2007-04-22 22:10:33 +00:00
|
|
|
{
|
2008-01-13 16:47:47 +00:00
|
|
|
/**
|
|
|
|
Name of function
|
|
|
|
*/
|
2012-02-09 10:01:49 +00:00
|
|
|
wcstring name;
|
2008-01-13 16:47:47 +00:00
|
|
|
/**
|
|
|
|
Description of function
|
|
|
|
*/
|
2012-02-09 10:01:49 +00:00
|
|
|
wcstring description;
|
2008-01-13 16:47:47 +00:00
|
|
|
/**
|
|
|
|
Function definition
|
|
|
|
*/
|
2007-04-22 22:10:33 +00:00
|
|
|
wchar_t *definition;
|
2008-01-13 16:47:47 +00:00
|
|
|
/**
|
|
|
|
List of all event handlers for this function
|
|
|
|
*/
|
2012-02-09 03:02:25 +00:00
|
|
|
std::vector<event_t> events;
|
2008-01-13 16:47:47 +00:00
|
|
|
/**
|
|
|
|
List of all named arguments for this function
|
|
|
|
*/
|
2012-02-09 07:53:23 +00:00
|
|
|
wcstring_list_t named_arguments;
|
2008-01-13 16:47:47 +00:00
|
|
|
/**
|
|
|
|
Set to non-zero if invoking this function shadows the variables
|
|
|
|
of the underlying function.
|
|
|
|
*/
|
2007-04-22 22:10:33 +00:00
|
|
|
int shadows;
|
2012-02-08 10:34:31 +00:00
|
|
|
};
|
2012-01-24 04:32:36 +00:00
|
|
|
|
|
|
|
class function_info_t {
|
|
|
|
public:
|
2012-03-03 23:20:30 +00:00
|
|
|
/** Constructs relevant information from the function_data */
|
|
|
|
function_info_t(const function_data_t &data, const wchar_t *filename, int def_offset, bool autoload);
|
|
|
|
|
|
|
|
/** Used by function_copy */
|
|
|
|
function_info_t(const function_info_t &data, const wchar_t *filename, int def_offset, bool autoload);
|
|
|
|
|
2012-01-24 04:32:36 +00:00
|
|
|
/** Function definition */
|
2012-03-03 23:20:30 +00:00
|
|
|
const wcstring definition;
|
2012-01-24 04:32:36 +00:00
|
|
|
|
2012-03-03 23:20:30 +00:00
|
|
|
/** Function description. Only the description may be changed after the function is created. */
|
2012-01-24 04:32:36 +00:00
|
|
|
wcstring description;
|
|
|
|
|
2012-03-03 23:20:30 +00:00
|
|
|
/** File where this function was defined (intern'd string) */
|
|
|
|
const wchar_t * const definition_file;
|
2012-01-24 04:32:36 +00:00
|
|
|
|
2012-03-03 23:20:30 +00:00
|
|
|
/** Line where definition started */
|
|
|
|
const int definition_offset;
|
2012-01-24 04:32:36 +00:00
|
|
|
|
2012-03-03 23:20:30 +00:00
|
|
|
/** List of all named arguments for this function */
|
|
|
|
const wcstring_list_t named_arguments;
|
2012-01-24 04:32:36 +00:00
|
|
|
|
2012-03-03 23:20:30 +00:00
|
|
|
/** Flag for specifying that this function was automatically loaded */
|
|
|
|
const bool is_autoload;
|
2012-01-24 04:32:36 +00:00
|
|
|
|
2012-03-03 23:20:30 +00:00
|
|
|
/** Set to true if invoking this function shadows the variables of the underlying function. */
|
|
|
|
const bool shadows;
|
2012-01-24 04:32:36 +00:00
|
|
|
};
|
2007-04-22 22:10:33 +00:00
|
|
|
|
|
|
|
|
2005-09-20 13:26:39 +00:00
|
|
|
/**
|
2011-12-27 03:18:46 +00:00
|
|
|
Initialize function data
|
2005-09-20 13:26:39 +00:00
|
|
|
*/
|
|
|
|
void function_init();
|
2006-11-15 14:16:49 +00:00
|
|
|
|
2012-03-03 23:20:30 +00:00
|
|
|
/** Add a function. */
|
|
|
|
void function_add( const function_data_t &data, const parser_t &parser );
|
2005-09-20 13:26:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Remove the function with the specified name.
|
|
|
|
*/
|
2012-01-26 02:40:08 +00:00
|
|
|
void function_remove( const wcstring &name );
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2012-01-24 04:32:36 +00:00
|
|
|
/**
|
|
|
|
Gets a function by name.
|
|
|
|
*/
|
|
|
|
shared_ptr<function_info_t> function_get(const wcstring &name);
|
|
|
|
|
2005-09-20 13:26:39 +00:00
|
|
|
/**
|
|
|
|
Returns the definition of the function with the name \c name.
|
|
|
|
*/
|
2012-02-19 17:25:15 +00:00
|
|
|
const wchar_t *function_get_definition( const wcstring &name );
|
2005-09-20 13:26:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Returns the description of the function with the name \c name.
|
|
|
|
*/
|
2012-02-19 17:25:15 +00:00
|
|
|
const wchar_t *function_get_desc( const wcstring &name );
|
2005-09-20 13:26:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Sets the description of the function with the name \c name.
|
|
|
|
*/
|
2012-02-19 17:25:15 +00:00
|
|
|
void function_set_desc( const wcstring &name, const wcstring &desc );
|
2005-09-20 13:26:39 +00:00
|
|
|
|
|
|
|
/**
|
2006-11-15 14:16:49 +00:00
|
|
|
Returns true if the function with the name name exists.
|
2005-09-20 13:26:39 +00:00
|
|
|
*/
|
2012-02-19 17:25:15 +00:00
|
|
|
int function_exists( const wcstring &name );
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2011-12-27 03:18:46 +00:00
|
|
|
/**
|
|
|
|
Returns true if the function with the name name exists, without triggering autoload.
|
|
|
|
*/
|
2012-02-19 17:25:15 +00:00
|
|
|
int function_exists_no_autoload( const wcstring &name, const env_vars &vars );
|
2011-12-27 03:18:46 +00:00
|
|
|
|
2005-09-20 13:26:39 +00:00
|
|
|
/**
|
2012-01-14 07:44:18 +00:00
|
|
|
Returns all function names.
|
2011-12-27 03:18:46 +00:00
|
|
|
|
2005-09-20 13:26:39 +00:00
|
|
|
\param get_hidden whether to include hidden functions, i.e. ones starting with an underscore
|
|
|
|
*/
|
2012-01-14 07:44:18 +00:00
|
|
|
wcstring_list_t function_get_names( int get_hidden );
|
2005-09-20 13:26:39 +00:00
|
|
|
|
2006-02-08 17:37:18 +00:00
|
|
|
/**
|
|
|
|
Returns tha absolute path of the file where the specified function
|
|
|
|
was defined. Returns 0 if the file was defined on the commandline.
|
2006-11-15 14:16:49 +00:00
|
|
|
|
|
|
|
This function does not autoload functions, it will only work on
|
|
|
|
functions that have already been defined.
|
2006-02-08 17:37:18 +00:00
|
|
|
*/
|
2012-02-19 17:25:15 +00:00
|
|
|
const wchar_t *function_get_definition_file( const wcstring &name );
|
2006-01-26 14:48:10 +00:00
|
|
|
|
2006-02-08 17:37:18 +00:00
|
|
|
/**
|
2006-11-15 14:16:49 +00:00
|
|
|
Returns the linenumber where the definition of the specified
|
|
|
|
function started.
|
|
|
|
|
|
|
|
This function does not autoload functions, it will only work on
|
|
|
|
functions that have already been defined.
|
2006-02-08 17:37:18 +00:00
|
|
|
*/
|
2012-02-19 17:25:15 +00:00
|
|
|
int function_get_definition_offset( const wcstring &name );
|
2006-01-26 14:48:10 +00:00
|
|
|
|
2007-04-16 20:06:11 +00:00
|
|
|
/**
|
|
|
|
Returns a list of all named arguments of the specified function.
|
|
|
|
*/
|
2012-02-19 17:25:15 +00:00
|
|
|
wcstring_list_t function_get_named_arguments( const wcstring &name );
|
2007-04-16 20:06:11 +00:00
|
|
|
|
2010-09-07 17:31:05 +00:00
|
|
|
/**
|
|
|
|
Creates a new function using the same definition as the specified function.
|
2012-03-03 23:20:30 +00:00
|
|
|
Returns true if copy is successful.
|
2010-09-07 17:31:05 +00:00
|
|
|
*/
|
2012-03-03 23:20:30 +00:00
|
|
|
bool function_copy( const wcstring &name, const wcstring &new_name );
|
2010-09-07 17:31:05 +00:00
|
|
|
|
2011-12-27 03:18:46 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Returns whether this function shadows variables of the underlying function
|
|
|
|
*/
|
2012-02-19 17:25:15 +00:00
|
|
|
int function_get_shadows( const wcstring &name );
|
2011-12-27 03:18:46 +00:00
|
|
|
|
2005-10-04 15:11:39 +00:00
|
|
|
#endif
|