/usr/include/gretl/gretl_func.h is in libgretl1-dev 2016d-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 | /*
* gretl -- Gnu Regression, Econometrics and Time-series Library
* Copyright (C) 2001 Allin Cottrell and Riccardo "Jack" Lucchetti
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* 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, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef GRETL_FUNC_H
#define GRETL_FUNC_H
#include "usermat.h"
typedef enum {
FN_NEEDS_TS = 1, /* function requires time-series data */
FN_NEEDS_QM, /* function requires quarterly or monthly data */
FN_NEEDS_PANEL, /* function requires panel data */
FN_NODATA_OK /* function does not require a dataset */
} FuncDataReq;
typedef enum {
UFUN_ROLE_NONE,
UFUN_BUNDLE_PRINT,
UFUN_BUNDLE_PLOT,
UFUN_BUNDLE_TEST,
UFUN_BUNDLE_FCAST,
UFUN_BUNDLE_EXTRA,
UFUN_GUI_MAIN,
UFUN_GUI_PRECHECK,
UFUN_ROLE_MAX
} UfunRole;
typedef enum {
UFUN_PRIVATE = 1 << 0,
UFUN_PLUGIN = 1 << 1,
UFUN_NOPRINT = 1 << 2,
UFUN_MENU_ONLY = 1 << 3
} UfunAttrs;
#define NEEDS_TS "needs-time-series-data"
#define NEEDS_QM "needs-qm-data"
#define NEEDS_PANEL "needs-panel-data"
#define NO_DATA_OK "no-data-ok"
#define FN_NAMELEN 32
#define ok_function_return_type(r) (r == GRETL_TYPE_DOUBLE || \
r == GRETL_TYPE_SERIES || \
r == GRETL_TYPE_MATRIX || \
r == GRETL_TYPE_LIST || \
r == GRETL_TYPE_STRING || \
r == GRETL_TYPE_BUNDLE || \
r == GRETL_TYPE_STRINGS || \
r == GRETL_TYPE_MATRICES || \
r == GRETL_TYPE_BUNDLES || \
r == GRETL_TYPE_LISTS || \
r == GRETL_TYPE_VOID)
typedef struct ufunc_ ufunc;
typedef struct fnpkg_ fnpkg;
int n_user_functions (void);
int n_free_functions (void);
ufunc *get_user_function_by_name (const char *name);
const ufunc *get_user_function_by_index (int idx);
int fn_n_params (const ufunc *fun);
int fn_param_type (const ufunc *fun, int i);
const char *fn_param_name (const ufunc *fun, int i);
const char *fn_param_descrip (const ufunc *fun, int i);
const char **fn_param_value_labels (const ufunc *fun, int i,
int *n);
int fn_param_has_default (const ufunc *fun, int i);
double fn_param_default (const ufunc *fun, int i);
double fn_param_minval (const ufunc *fun, int i);
double fn_param_maxval (const ufunc *fun, int i);
double fn_param_step (const ufunc *fun, int i);
int fn_param_optional (const ufunc *fun, int i);
int fn_param_uses_xlist (const ufunc *fun, int i);
int user_func_get_return_type (const ufunc *fun);
int user_func_is_noprint (const ufunc *fun);
int user_func_is_menu_only (const ufunc *fun);
const char *user_function_name_by_index (int i);
int user_function_index_by_name (const char *name,
fnpkg *pkg);
int user_function_set_debug (const char *name, int debug);
void function_names_init (void);
const char *next_available_function_name (fnpkg *pkg,
int *idxp);
int gretl_compiling_function (void);
int gretl_compiling_python (const char *line);
int gretl_function_depth (void);
int gretl_function_recursing (void);
void current_function_info (char const **funcname,
char const **pkgname);
int gretl_start_compiling_function (const char *line, PRN *prn);
int gretl_function_append_line (const char *line);
int gretl_is_public_user_function (const char *name);
int gretl_function_exec (ufunc *u, int rtype, DATASET *dset,
void *ret, char **descrip, PRN *prn);
int attach_loop_to_function (void *ptr);
int detach_loop_from_function (void *ptr);
int set_function_should_return (const char *line);
int current_function_size (void);
char *gretl_func_get_arg_name (const char *argvar, int *err);
int object_is_const (const char *name);
int object_is_function_arg (const char *name);
void sample_range_get_extrema (const DATASET *dset, int *t1, int *t2);
int function_return_type_from_string (const char *s);
int gretl_function_print_code (ufunc *u, int tabwidth, PRN *prn);
char **gretl_function_retrieve_code (ufunc *u, int *nlines);
int print_function_package_sample (const char *fname, int tabwidth,
PRN *prn);
void set_current_function_package (fnpkg *pkg);
fnpkg *function_package_new (const char *fname,
char **pubnames, int n_pub,
char **privnames, int n_priv,
int *err);
int function_package_connect_funcs (fnpkg *pkg,
char **pubnames, int n_pub,
char **privnames, int n_priv);
int function_package_set_properties (fnpkg *pkg, ...);
int function_package_get_properties (fnpkg *pkg, ...);
const char *function_package_get_string (fnpkg *pkg,
const char *id);
int function_package_set_data_files (fnpkg *pkg, char **S, int n);
char **function_package_get_data_files (fnpkg *pkg, int *n);
const char *function_package_get_name (fnpkg *pkg);
int function_package_write_file (fnpkg *pkg);
int create_and_write_function_package (const char *fname,
gretlopt opt,
PRN *prn);
int function_set_package_role (const char *name, fnpkg *pkg,
const char *attr, PRN *prn);
int function_ok_for_package_role (const char *name,
int role);
const char *package_role_get_key (int flag);
int check_function_needs (const DATASET *dset, FuncDataReq dreq,
int minver);
int package_version_ok (int minver, char *reqstr);
int write_session_functions_file (const char *fname);
int read_session_functions_file (const char *fname);
fnpkg *get_function_package_by_name (const char *pkgname);
fnpkg *get_function_package_by_filename (const char *fname, int *err);
const char *get_function_package_path_by_name (const char *pkgname);
int load_function_package_by_filename (const char *fname, PRN *prn);
int function_package_is_loaded (const char *fname,
const char **version);
int gfn_is_loaded (const char *gfnname);
void function_package_unload_by_filename (const char *fname);
void function_package_unload_full_by_filename (const char *fname);
int delete_function_package (const char *gfnname);
int uninstall_function_package (const char *package, gretlopt opt,
PRN *prn);
int print_function_package_info (const char *fname, PRN *prn);
int print_function_package_code (const char *fname, int tabwidth,
PRN *prn);
ufunc *get_function_from_package (const char *funname, fnpkg *pkg);
int get_function_file_header (const char *fname, char **pdesc,
char **pver, char **pdate,
int *pdfdoc);
double function_package_get_version (const char *fname);
int user_function_help (const char *fnname, gretlopt opt, PRN *prn);
int function_package_has_PDF_doc (fnpkg *pkg, char **pdfname);
int function_package_has_gui_help (fnpkg *pkg);
int package_has_menu_attachment (const char *fname,
char **pkgname,
char **attach,
char **label);
int package_needs_zipping (const char *fname,
int *pdfdoc,
char ***datafiles,
int *n_files);
void gretl_functions_cleanup (void);
void function_clear_args (ufunc *fun);
int push_function_arg (ufunc *fun, const char *name,
GretlType type, void *value);
void adjust_indent (const char *line, int *this_indent,
int *next_indent);
#endif /* GRETL_FUNC_H */
|