The \ character is no longer INCLUDED when terminating a token.
[egate.git] / fml / fmlp.h
1 /*
2  * FML interpreter. Europagate, 1995
3  *
4  * $Log: fmlp.h,v $
5  * Revision 1.2  1995/02/07 16:09:23  adam
6  * The \ character is no longer INCLUDED when terminating a token.
7  * Major changes in tokenization routines. Bug fixes in expressions
8  * with lists (fml_sub0).
9  *
10  * Revision 1.1.1.1  1995/02/06  13:48:10  adam
11  * First version of the FML interpreter. It's slow and memory isn't
12  * freed properly. In particular, the FML nodes aren't released yet.
13  *
14  */
15
16 #include "fml.h"
17
18 #define FML_MAX_TOKEN 2048
19
20 #define FML_ATOM_BUF 12
21
22 struct fml_node {
23     void *p[2];
24     unsigned is_atom : 1;
25 };
26
27 struct fml_atom {
28     struct fml_atom *next;
29     char buf[FML_ATOM_BUF];
30 };
31
32 struct fml_node *fml_tokenize (Fml fml);
33 struct fml_node *fml_node_alloc (Fml fml);
34 struct fml_atom *fml_atom_alloc (Fml fml, char *str);
35 int fml_atom_str (struct fml_atom *a, char *str);
36 void fml_atom_strx (struct fml_atom *a, char *str, int max);
37 int fml_atom_val (struct fml_atom *a);
38 struct fml_node *fml_mk_list (Fml fml, struct fml_node *fn);
39 void fml_node_delete (Fml fml, struct fml_node *fn);
40 struct fml_node *fml_node_copy (Fml fml, struct fml_node *fn);
41
42 struct token {
43     int             kind;
44     int             separate;
45     int             after_char;
46     int             maxbuf;
47     int             offset;
48     char            *atombuf;
49     char            *tokenbuf;
50
51     int             escape_char;
52
53     struct          fml_node *sub;
54     struct          fml_atom *atom;
55     char            sbuf[FML_ATOM_BUF*4];
56 };
57
58 struct fml_sym_info {
59     int kind;
60     struct fml_node *args;
61     struct fml_node *body;
62     struct fml_node *(*binary)(Fml fml, struct fml_node *l,
63                                struct fml_node *r);
64     struct fml_node *(*prefix)(Fml fml, struct fml_node **lp,
65                                struct token *tp);
66 };
67
68 struct fml_sym_tab *fml_sym_open (void);
69 void fml_sym_close (struct fml_sym_tab **tabp);
70 struct fml_sym_info *fml_sym_add (struct fml_sym_tab *tab, const char *s);
71 struct fml_sym_info *fml_sym_add_local (struct fml_sym_tab *tab,const char *s);
72
73 struct fml_sym_info *fml_sym_lookup (struct fml_sym_tab *tab, const char *s);
74 struct fml_sym_info *fml_sym_lookup_local (struct fml_sym_tab *tab,
75                                            const char *s);
76 void fml_sym_push (struct fml_sym_tab *tab);
77 void fml_sym_pop (struct fml_sym_tab *tab, void(*ph)(struct fml_sym_info *i));
78
79 void fml_pr_list (struct fml_node *p);
80
81 #define FML_FUNC     1
82 #define FML_IF       2
83 #define FML_ELSE     3
84 #define FML_PREFIX   4
85 #define FML_VAR      5
86 #define FML_FOREACH  6
87 #define FML_RETURN   7
88 #define FML_SET      8
89 #define FML_WHILE    9
90 #define FML_CBINARY 10
91 #define FML_CPREFIX 11
92 #define FML_BINARY  12
93 #define FML_BIN     13
94
95