Hash :
1ae6ad0e
Author :
Thomas de Grivel
Date :
2024-07-15T19:59:52
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
/* kc3
* Copyright 2022,2023,2024 kmx.io <contact@kmx.io>
*
* Permission is hereby granted to use this software granted the above
* copyright notice and this permission paragraph are included in all
* copies and substantial portions of this software.
*
* THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
* PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
* AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
* THIS SOFTWARE.
*/
#ifndef LIBKC3_ENV_H
#define LIBKC3_ENV_H
#include "types.h"
extern s_env g_kc3_env;
/* Stack allocation compatible functions, call env_clean after use. */
void env_clean (s_env *env);
s_env * env_init (s_env *env, int *argc, char ***argv);
/* Observers. */
const s_tag * env_frames_get (const s_env *env, const s_sym *name);
s_ident * env_ident_resolve_module (s_env *env,
const s_ident *ident,
s_ident *dest);
const s_sym ** env_module (s_env *env, const s_sym **dest);
bool * env_module_has_ident (s_env *env, const s_sym *module,
const s_ident *ident, bool *dest);
bool * env_module_has_symbol (s_env *env, const s_sym *module,
const s_sym *sym, bool *dest);
const s_tag ** env_module_load_time (s_env *env, const s_sym *module,
const s_tag **dest);
s_list ** env_module_search_modules (s_env *env,
const s_sym *module,
s_list **dest);
s_list ** env_search_modules (s_env *env, s_list **dest);
bool env_sym_search_modules (s_env *env,
const s_sym *sym,
const s_sym **dest);
/* Operators. */
s_tag * env_def (s_env *env, const s_call *call, s_tag *dest);
const s_sym * env_def_clean (s_env *env, const s_sym *module,
const s_tag *tag_clean);
s_tag * env_defmodule (s_env *env, const s_sym **name,
const s_block *block, s_tag *dest);
s_tag * env_defoperator (s_env *env, const s_sym **name,
const s_sym **sym,
const s_tag *symbol_value,
u8 operator_precedence,
const s_sym **operator_associativity,
s_tag *dest);
const s_sym * env_defstruct (s_env *env, const s_list *spec);
bool env_eval_array (s_env *env, const s_array *array,
s_array *dest);
bool env_eval_array_tag (s_env *env, const s_array *array,
s_tag *dest);
bool env_eval_block (s_env *env, const s_block *block,
s_tag *dest);
bool env_eval_call (s_env *env, const s_call *call,
s_tag *dest);
bool env_eval_call_arguments (s_env *env, const s_list *args,
s_list **dest);
bool env_eval_call_cfn (s_env *env, const s_call *call,
s_tag *dest);
bool env_eval_call_fn (s_env *env, const s_call *call,
s_tag *dest);
bool env_eval_call_fn_args (s_env *env, const s_fn *fn,
const s_list *arguments,
s_tag *dest);
bool env_eval_call_resolve (s_env *env, s_call *call);
bool env_eval_cfn (s_env *env, const s_cfn *cfn, s_tag *dest);
bool env_eval_complex (s_env *env, const s_complex *c,
s_tag *dest);
bool env_eval_cow (s_env *env, const s_cow *cow, s_tag *dest);
bool env_eval_equal_block (s_env *env, bool macro,
const s_block *a, const s_block *b,
s_block *dest);
bool env_eval_equal_list (s_env *env, bool macro,
const s_list *a, const s_list *b,
s_list **dest);
bool env_eval_equal_struct (s_env *env, bool macro,
const s_struct *a,
const s_struct *b,
s_struct *dest);
bool env_eval_equal_tag (s_env *env, bool macro,
const s_tag *a, const s_tag *b,
s_tag *dest);
bool env_eval_equal_tuple (s_env *env, bool macro,
const s_tuple *a, const s_tuple *b,
s_tuple *dest);
bool env_eval_fn (s_env *env, const s_fn *fn, s_tag *dest);
bool env_eval_fn_tag (s_env *env, const s_tag *tag,
s_tag *dest);
bool env_eval_fn_tag_array (s_env *env, const s_array *array,
s_tag *dest);
bool env_eval_fn_tag_block (s_env *env, const s_block *block,
s_tag *dest);
bool env_eval_fn_tag_call (s_env *env, const s_call *call,
s_tag *dest);
bool env_eval_fn_tag_complex (s_env *env, const s_complex *c,
s_tag *dest);
bool env_eval_fn_tag_ident (s_env *env, const s_ident *ident,
s_tag *dest);
bool env_eval_fn_tag_list (s_env *env, const s_list *list,
s_tag *dest);
bool env_eval_fn_tag_map (s_env *env, const s_map *map,
s_tag *dest);
bool env_eval_fn_tag_quote (s_env *env, const s_quote *quote,
s_tag *dest);
bool env_eval_fn_tag_str (s_env *env, const s_str *str,
s_tag *dest);
bool env_eval_fn_tag_struct (s_env *env, const s_struct *s,
s_tag *dest);
bool env_eval_fn_tag_tag (s_env *env, const s_tag *tag,
s_tag *dest);
bool env_eval_fn_tag_tuple (s_env *env, const s_tuple *tuple,
s_tag *dest);
bool env_eval_fn_tag_unquote (s_env *env,
const s_unquote *unquote,
s_tag *dest);
bool env_eval_ident (s_env *env, const s_ident *ident,
s_tag *dest);
bool env_eval_ident_is_bound (s_env *env,
const s_ident *ident);
bool env_eval_integer (s_env *env, const s_integer *integer,
s_integer *dest);
bool env_eval_list (s_env *env, const s_list *list,
s_tag *dest);
bool env_eval_map (s_env *env, const s_map *map,
s_tag *dest);
bool env_eval_progn (s_env *env, const s_list *program,
s_tag *dest);
bool env_eval_quote (s_env *env, const s_quote *quote,
s_tag *dest);
bool env_eval_quote_array (s_env *env, const s_array *array,
s_tag *dest);
bool env_eval_quote_block (s_env *env, const s_block *block,
s_tag *dest);
bool env_eval_quote_call (s_env *env, const s_call *call,
s_tag *dest);
bool env_eval_quote_complex (s_env *env, const s_complex *c,
s_tag *dest);
bool env_eval_quote_cow (s_env *env, const s_cow *cow,
s_tag *dest);
bool env_eval_quote_list (s_env *env, const s_list *list,
s_tag *dest);
bool env_eval_quote_map (s_env *env, const s_map *map,
s_tag *dest);
bool env_eval_quote_quote (s_env *env, const s_quote *quote,
s_tag *dest);
bool env_eval_quote_struct (s_env *env, const s_struct *s,
s_tag *dest);
bool env_eval_quote_tag (s_env *env, const s_tag *tag,
s_tag *dest);
bool env_eval_quote_tuple (s_env *env, const s_tuple *tuple,
s_tag *dest);
bool env_eval_quote_unquote (s_env *env,
const s_unquote *unquote,
s_tag *dest);
bool env_eval_struct (s_env *env, const s_struct *s,
s_tag *dest);
bool env_eval_tag (s_env *env, const s_tag *tag,
s_tag *dest);
bool env_eval_tuple (s_env *env, const s_tuple *tuple,
s_tag *dest);
bool env_eval_void (s_env *env, const void *_, s_tag *dest);
s_fact_w * env_fact_w_eval (s_env *env, const s_fact_w *fact,
s_fact_w *dest);
s_tag * env_ident_get (s_env *env, const s_ident *ident,
s_tag *dest);
bool * env_ident_is_special_operator (s_env *env,
const s_ident *ident,
bool *dest);
s_tag * env_let (s_env *env, const s_tag *tag,
const s_block *block, s_tag *dest);
bool env_load (s_env *env, const s_str *path);
bool * env_module_is_loading (s_env *env, const s_sym *module,
bool *dest);
bool env_module_is_loading_set (s_env *env,
const s_sym *module,
bool value);
bool env_module_load (s_env *env, const s_sym *module);
bool env_module_maybe_reload (s_env *env,
const s_sym *module);
s8 env_operator_arity (s_env *env, const s_ident *op);
bool * env_operator_find (s_env *env, const s_ident *op,
bool *dest);
s_ident * env_operator_ident (s_env *env, const s_ident *op,
s_ident *dest);
bool * env_operator_is_right_associative (s_env *env,
const s_ident *op,
bool *dest);
s8 env_operator_precedence (s_env *env, const s_ident *op);
s_ident * env_operator_resolve (s_env *env, const s_ident *op,
u8 arity, s_ident *dest);
const s_sym * env_operator_symbol (s_env *env, const s_ident *op);
u8 env_special_operator_arity (s_env *env,
const s_ident *ident);
bool * env_struct_type_exists (s_env *env, const s_sym *module,
bool *dest);
const s_struct_type **
env_struct_type_find (s_env *env, const s_sym *module,
const s_struct_type **dest);
f_clean env_struct_type_get_clean (s_env *env,
const s_sym *module);
s_list ** env_struct_type_get_spec (s_env *env, const s_sym *module,
s_list **dest);
bool * env_struct_type_has_spec (s_env *env, const s_sym *module,
bool *dest);
bool env_tag_ident_is_bound (s_env *env,
const s_tag *tag);
/* Modifiers. */
bool env_call_get (s_env *env, s_call *call);
bool env_module_ensure_loaded (s_env *env, const s_sym *module);
/* Control structures. */
void env_error_f (s_env *env, const char *fmt, ...);
void env_error_tag (s_env *env, const s_tag *tag);
void env_longjmp (s_env *env, jmp_buf *jmp_buf);
#endif /* LIBKC3_ENV_H */