-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpr.c
183 lines (122 loc) · 3.11 KB
/
expr.c
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
/*
* Expression.c
* Implementation of functions used to build the syntax tree.
*/
#include "expr.h"
#include "rpsc.h"
#include "slab.h"
#include "queue.h"
#include <stdlib.h>
#include <string.h>
struct Symbol *Symbol_first;
static struct Objs_cache cache_exp;
struct Symbol *create_symbol(char *name) {
struct Symbol * tmp;
tmp= (struct Symbol *)malloc(sizeof(struct Symbol));
tmp->name=strdup(name);
tmp->next=Symbol_first;
Symbol_first=tmp;
return tmp;
}
struct Symbol *find_symbol(char *name) {
struct Symbol *tmp;
for(tmp=Symbol_first; tmp != ( struct Symbol *)0 ;tmp=tmp->next)
if (strncmp(name,tmp->name,strlen(tmp->name)) == 0)
return tmp;
return( (struct Symbol *) 0);
}
ExpressionInit()
{
objs_cache_init(&cache_exp, sizeof(SExpression ), NULL);
}
/**
* @brief Allocates space for expression
* @return The expression or NULL if not enough memory
*/
static SExpression * allocateExpression() {
//SExpression * b = (SExpression *) malloc(sizeof(SExpression));
SExpression * b = (SExpression *) objs_cache_alloc(&cache_exp);;
if (b == NULL)
return NULL;
b->type = eVALUE;
b->value = 0;
b->next=0;
b->left = NULL;
b->right = NULL;
return b;
}
SExpression * createNumber(double value) {
SExpression * b = allocateExpression();
if (b == NULL)
return NULL;
b->type = eVALUE;
b->value = value;
return b;
}
SExpression *createVar(struct Symbol *sym) {
SExpression *b = allocateExpression();
if (b == NULL)
return NULL;
b->type = eVAR;
b->ptr = (void *) sym;
return b;
}
SExpression *createStr( char *sym) {
SExpression *b = allocateExpression();
if (b == NULL)
return NULL;
b->type = eSTR;
b->ptr = (void *) strdup(sym);
return b;
}
SExpression *createEnt(struct Ent *ent) {
SExpression *b = allocateExpression();
if (b == NULL)
return NULL;
b->type = eENT;
b->ptr = (void *) ent;
return b;
}
SExpression *createOperation(EOperationType type, SExpression *left, SExpression *right) {
SExpression *b = allocateExpression();
if (b == NULL)
return NULL;
b->type = type;
b->left = left;
b->right = right;
//b->next=left;
//if(right != 0)
//left->next=right;
return b;
}
SExpression *createFunction(EOperationType type, void * f, int argn, char **argc) {
SExpression *b = allocateExpression();
SExpression *c = allocateExpression();
SExpression *d = allocateExpression();
if (b == NULL)
return NULL;
b->type = type;
b->ptr=f;
b->next=c;
c->ptr=(void *) argn;
c->next=d;
d->ptr=argc;
return b;
}
SExpression *createFunction2(EOperationType type, void * f, SExpression *left) {
SExpression *b = allocateExpression();
if (b == NULL)
return NULL;
b->type = type;
b->ptr=f;
b->next=left;
return b;
}
void deleteExpression(SExpression *b) {
if (b == NULL)
return;
deleteExpression(b->left);
deleteExpression(b->right);
//free(b);
objs_cache_free(&cache_exp, b);
}