2 engine.h - MaLa core engine
4 Copyright (C) 2004, Christian Thaeter <chth@gmx.net>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License version 2 as
8 published by the Free Software Foundation.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, contact me.
23 #include "mala_types.h"
24 #include "stringbucket.h"
25 #include "stringlist.h"
29 Build a table of common strings, this strings are
30 a) get never garbage collected (except at end)
31 b) are fast accessible with their symbolic index
33 TODO: MALA_EXPAND (WORLD, "--WORLD"),
35 #define MALA_COMMON_STRINGS \
37 MALA_EXPAND (EMPTY, ""), \
38 MALA_EXPAND (FALSE, "--FALSE"), \
39 MALA_EXPAND (TRUE, "--TRUE"), \
40 MALA_EXPAND (ZERO, "0"), \
41 MALA_EXPAND (PASS, "--PASS"), \
42 MALA_EXPAND (EXCLAMATIONMARK, "!"), \
43 MALA_EXPAND (ASSIGN, "="), \
44 MALA_EXPAND (BACKQUOTE, "`"), \
45 MALA_EXPAND (NOT, "--NOT"), \
46 MALA_EXPAND (LITERAL, "--LITERAL"), \
47 MALA_EXPAND (ENVSUBST, "--ENVSUBST"), \
48 MALA_EXPAND (SETENV, "--SETENV"), \
49 MALA_EXPAND (SECTION, "--SECTION"), \
50 MALA_EXPAND (HERE, "--HERE"), \
51 MALA_EXPAND (BEGIN, "--BEGIN"), \
52 MALA_EXPAND (END, "--END"), \
53 MALA_EXPAND (DEL, "--DEL"), \
54 MALA_EXPAND (DEFAULT_PARSER, "--DEFAULT-PARSER"), \
55 MALA_EXPAND (FLAG_LITERAL_EXPANSION, "--FLAG-LITERAL-EXPANSION"), \
56 MALA_EXPAND (FLAG_EXCLAM_EXPANSION, "--FLAG-EXCLAM-EXPANSION"), \
57 MALA_EXPAND (FLAG_NO_EXPANSION, "--FLAG-NO-EXPANSION"), \
58 MALA_EXPAND (FLAG_NUMSPLIT_EXPANSION, "--FLAG-NUMSPLIT-EXPANSION"), \
59 MALA_EXPAND (FLAG_CHAR_EXPANSION, "--FLAG-CHAR-EXPANSION"), \
60 MALA_EXPAND (FLAG_ASSIGN_EXPANSION, "--FLAG-ASSIGN-EXPANSION"), \
61 MALA_EXPAND (FLAG_SETENV_EXPANSION, "--FLAG-SETENV-EXPANSION"), \
62 MALA_EXPAND (FLAG_ENVVAR_EXPANSION, "--FLAG-ENVVAR-EXPANSION"), \
63 MALA_EXPAND (FLAG_UNDERSCORE_EXPANSION, "--FLAG-UNDERSCORE-EXPANSION"), \
64 MALA_EXPAND (FLAG_BRACKET_EXPANSION, "--FLAG-BRACKET-EXPANSION"), \
65 MALA_EXPAND (FLAG_ASSIGN_CONTRACTION, "--FLAG-ASSIGN-CONTRACTION"), \
66 MALA_EXPAND (ERROR_MISSING_ARGUMENT, "--ERROR-MISSING-ARGUMENT"), \
67 MALA_EXPAND (ERROR_MISSING_END, "--ERROR-MISSING-END"), \
68 MALA_EXPAND (ERROR_END_WITHOUT_BEGIN, "--ERROR-END-WITHOUT-BEGIN"), \
69 MALA_EXPAND (ERROR_BLOCK_NOT_ALLOWED, "--ERROR-BLOCK-NOT-ALLOWED"), \
70 MALA_EXPAND (ERROR_PARAMETER_SYNTAX, "--ERROR-PARAMETER-SYNTAX"), \
71 MALA_EXPAND (ERROR_WRONG_TYPE, "--ERROR-WRONG-TYPE"), \
72 MALA_EXPAND (MAX, NULL) \
75 #define MALA_EXPAND(E,s) MALA_STRING_##E
76 enum mala_common_strings_enum MALA_COMMON_STRINGS
;
79 const char * mala_engine_states
[MALA_STATE_TABLE_SIZEOF
+1];
82 struct mala_engine_struct
85 * every tokenized word is collected in 'words'
86 * actions can be bound to these words through the strings user variable
88 mala_stringbucket words
;
89 mala_stringlist program
;
90 mala_stringlist arguments
;
92 MalaString common_string
[MALA_STRING_MAX
];
94 /*TODO static ringbuffer char ringbuffer *[10] */
96 //const char * argv_0;
100 mala_trace engine_trace
;
101 mala_trace
* gc_trace
;
103 /* --BEGIN ... --END blocks are translated to --BLOCK-xxxxxxxx macros,
104 where xxxxxxxx is a monotonic incrementing counter, its value is stored here */
124 mala_engine_new_main (int (*initfunc
) (MalaEngine
),
125 int argc
, char ** argv
,
126 mala_actioninit
* actions_init
);
130 mala_engine_free (MalaEngine self
);
133 mala_engine_actions_register (MalaEngine
, MalaActionInit
);
136 mala_engine_exception (MalaEngine self
,
137 MalaStringListNode_ref pptr
,
138 MalaStringListNode here
,
142 mala_engine_ppexpand_define (MalaEngine self
, const char * name
, int argc
, char **argv
);
145 mala_engine_pushback_word (MalaEngine self
, const char * word
);
148 mala_engine_getprogram (MalaEngine self
);
151 mala_engine_state_get (MalaEngine self
);
154 mala_engine_state_str (MalaEngine self
);
157 mala_engine_clearstate (MalaEngine self
);
160 mala_engine_negated (MalaEngine self
);
163 mala_engine_clear_negated (MalaEngine self
);
166 mala_engine_dumpprogram (MalaEngine self
, FILE* stream
, const char * prefix
, const char * suffix
);
169 mala_engine_dumpargs (MalaEngine self
, FILE* stream
, const char * prefix
, const char * suffix
);
172 mala_engine_run (MalaEngine self
);
175 mala_engine_step (MalaEngine
);
178 mala_engine_eval (MalaEngine self
, MalaStringListNode_ref pptr
);
181 mala_engine_command_done (MalaEngine eng
, MalaStringListNode_ref pptr
, int args
);
186 //mala_engine_expansions (MalaEngine self, MalaStringListNode_ref pptr);
190 mala_engine_string_istrue (MalaEngine self
, MalaString str
);
193 mala_engine_check_expansionflag (MalaEngine self
, int flag
);
197 mala_engine_ppexpand (MalaEngine self
, MalaStringList list
, MalaStringListNode_ref pptr
);
200 mala_engine_literal_expansion (MalaEngine self
,
202 MalaStringListNode_ref pptr
);
205 mala_engine_backquote_expansion (MalaEngine self
,
207 MalaStringListNode_ref pptr
);
210 mala_engine_numsplit_expansion (MalaEngine self
,
212 MalaStringListNode_ref pptr
);
215 mala_engine_exclam_expansion (MalaEngine self
,
217 MalaStringListNode_ref pptr
);
220 mala_engine_no_expansion (MalaEngine self
,
222 MalaStringListNode_ref pptr
);
225 mala_engine_assign_expansion (MalaEngine self
,
227 MalaStringListNode_ref pptr
);
230 mala_engine_envvar_expansion (MalaEngine self
,
232 MalaStringListNode_ref pptr
);
235 mala_engine_char_expansion (MalaEngine self
,
237 MalaStringListNode_ref pptr
);
240 mala_engine_underscore_expansion (MalaEngine self
,
242 MalaStringListNode_ref pptr
);
244 int mala_engine_setenv_expansion (MalaEngine self
,
246 MalaStringListNode_ref pptr
);
248 int mala_engine_bracket_expansion (MalaEngine self
,
250 MalaStringListNode_ref pptr
);
252 int mala_engine_assign_contraction (MalaEngine self
,
254 MalaStringListNode_ref pptr
);
257 mala_engine_add_action_cstr (MalaEngine self
, const char* cname
, void* data
,
258 MalaParserFunc parser
, MalaDataFactory factory
,
262 mala_engine_add_action (MalaEngine self
, MalaString name
, void* data
,
263 MalaParserFunc parser
, MalaDataFactory factory
,
268 mala_engine_arg_eval (MalaEngine self
,
269 MalaStringListNode_ref pptr
,
275 mala_engine_arg_eval_fmt (MalaEngine self
,
276 MalaStringListNode_ref pptr
,
284 mala_engine_arg_eval_string (MalaEngine self
,
285 MalaStringListNode_ref pptr
,
294 mala_engine_new_initfunc (int (*initfunc
) (MalaEngine
));
299 mala_engine_pushfront_program (MalaEngine self
, int args
, char ** argv
);
303 mala_engine_erase_action (MalaEngine
, const t_uchar
* key
);
306 mala_engine_eval (MalaEngine self
, LList pptr
);
309 mala_engine_deepeval (MalaEngine self
, LList pptr
);
313 mala_engine_exception (MalaEngine
, LList begin
, LList end
, const char *);
316 mala_engine_action_new (MalaEngine
, t_uchar
** name
, void** data
,
317 MalaParserFunc parser
, MalaDataDestructor destructor
);
321 mala_engine_getaction (MalaEngine
, const t_uchar
* name
);
324 mala_engine_getprevaction (MalaEngine
, const t_uchar
* name
);
332 #endif /*MALA_ENGINE_H*/
336 // c-file-style: "gnu"
338 // arch-tag: 47d718f6-e397-400c-93a6-bc71f475c0c7