-
Notifications
You must be signed in to change notification settings - Fork 0
/
Function.cc
438 lines (325 loc) · 10.9 KB
/
Function.cc
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
#include "Function.h"
#include <iostream>
#include <stdlib.h>
Function :: Function () {
opList = new Arithmatic[MAX_DEPTH];
}
Type Function :: RecursivelyBuild (struct FuncOperator *parseTree, Schema &mySchema) {
// different cases; in the first case, simple, unary operation
if (parseTree->right == 0 && parseTree->leftOperand == 0 && parseTree->code == '-') {
// figure out the operations on the subtree
Type myType = RecursivelyBuild (parseTree->leftOperator, mySchema);
// and do the operation
if (myType == Int) {
opList[numOps].myOp = IntUnaryMinus;
numOps++;
return Int;
} else if (myType == Double) {
opList[numOps].myOp = DblUnaryMinus;
numOps++;
return Double;
} else {
cerr << "Weird type.\n";
exit (1);
}
// in this case, we have either a literal value or a variable value, so do a push
} else if (parseTree->leftOperator == 0 && parseTree->right == 0) {
// now, there are two sub-cases. In the first case, the value is from the
// record that we are operating over, so we will find it in the schema
if (parseTree->leftOperand->code == NAME) {
// first, make sure that the attribute is there
int myNum = mySchema.Find (parseTree->leftOperand->value);
if (myNum == -1) {
cerr << "Error! Attribute in arithmatic expression was not found.\n";
exit (1);
}
// it is there, so get the type
int myType = mySchema.FindType (parseTree->leftOperand->value);
// see if it is a string
if (myType == String) {
cerr << "Error! No arithmatic ops over strings are allowed.\n";
exit (1);
}
// everything is OK, so encode the instructions for loading from the rec
if (myType == Int) {
opList[numOps].myOp = PushInt;
opList[numOps].recInput = myNum;
opList[numOps].litInput = 0;
numOps++;
return Int;
// got a double
} else {
opList[numOps].myOp = PushDouble;
opList[numOps].recInput = myNum;
opList[numOps].litInput = 0;
numOps++;
return Double;
}
// in this case, we have a literal value
} else if (parseTree->leftOperand->code == INT) {
// we were given a literal integer value!
opList[numOps].myOp = PushInt;
opList[numOps].recInput = -1;
opList[numOps].litInput = (void *) (new int);
*((int *) opList[numOps].litInput) = atoi (parseTree->leftOperand->value);
numOps++;
return Int;
} else {
opList[numOps].myOp = PushDouble;
opList[numOps].recInput = -1;
opList[numOps].litInput = (void *) (new double);
*((double *) opList[numOps].litInput) = atof (parseTree->leftOperand->value);
numOps++;
return Double;
}
// now, we have dealt with the case of a unary negative and with an actual value
// from the record or from the literal... last is to deal with an aritmatic op
} else {
// so first, we recursively handle the left; this should give us the left
// side's value, sitting on top of the stack
Type myTypeLeft = RecursivelyBuild (parseTree->leftOperator, mySchema);
// now we recursively handle the right
Type myTypeRight = RecursivelyBuild (parseTree->right, mySchema);
// the two values to be operated over are sitting on the stack. So next we
// do the operation. But there are potentially some typing issues. If both
// are integers, then we do an integer operation
if (myTypeLeft == Int && myTypeRight == Int) {
// integer operation! So no casting required
if (parseTree->code == '+') {
opList[numOps].myOp = IntPlus;
numOps++;
return Int;
} else if (parseTree->code == '-') {
opList[numOps].myOp = IntMinus;
numOps++;
return Int;
} else if (parseTree->code == '*') {
opList[numOps].myOp = IntMultiply;
numOps++;
return Int;
} else if (parseTree->code == '/') {
opList[numOps].myOp = IntDivide;
numOps++;
return Int;
} else {
cerr << "Weird type!!!\n";
exit (1);
}
}
// if we got here, then at least one of the two is a double, so
// the integer must be cast as appropriate
if (myTypeLeft == Int) {
// the left operand is an ant and needs to be cast
opList[numOps].myOp = ToDouble2Down;
numOps++;
}
if (myTypeRight == Int) {
// the left operand is an ant and needs to be cast
opList[numOps].myOp = ToDouble;
numOps++;
}
// now, we know that the top two items on the stach are doubles,
// so we go ahead and do the math
if (parseTree->code == '+') {
opList[numOps].myOp = DblPlus;
numOps++;
return Double;
} else if (parseTree->code == '-') {
opList[numOps].myOp = DblMinus;
numOps++;
return Double;
} else if (parseTree->code == '*') {
opList[numOps].myOp = DblMultiply;
numOps++;
return Double;
} else if (parseTree->code == '/') {
opList[numOps].myOp = DblDivide;
numOps++;
return Double;
} else {
cerr << "Weird type!!!\n";
exit (1);
}
}
}
void Function :: GrowFromParseTree (struct FuncOperator *parseTree, Schema &mySchema) {
// zero out the list of operrations
numOps = 0;
// now recursively build the list
Type resType = RecursivelyBuild (parseTree, mySchema);
// remember if we get back an interger or if we get a double
if (resType == Int)
returnsInt = 1;
else
returnsInt = 0;
}
void Function :: Print (Schema* schema) {
string stack[MAX_DEPTH];
int lastPos = -1;
Attribute *atts = schema->GetAtts();
for (int i = 0; i < numOps; i++) {
switch (opList[i].myOp) {
case PushInt:
lastPos++;
// See if we need attribute from schema
// see if we need to get the int from the record
if (opList[i].recInput >= 0) {
stack[lastPos] = string(atts[opList[i].recInput].name);
// or from the literal value
} else {
stack[lastPos] = to_string(*((int *) opList[i].litInput));
}
break;
case PushDouble:
lastPos++;
// see if we need to get the int from the record
if (opList[i].recInput >= 0) {
stack[lastPos] = string(atts[opList[i].recInput].name);
// or from the literal value
} else {
stack[lastPos] = to_string(*((double *) opList[i].litInput));
}
break;
case IntUnaryMinus:
case DblUnaryMinus:
stack[lastPos] = "-(" + stack[lastPos] + ")";
break;
case IntMinus:
case DblMinus:
stack[lastPos - 1] = "(" + stack[lastPos - 1] + " - " + stack[lastPos] + ")";
lastPos--;
break;
case IntPlus:
case DblPlus:
stack[lastPos - 1] = "(" + stack[lastPos - 1] + " + " + stack[lastPos] + ")";
lastPos--;
break;
case IntDivide:
case DblDivide:
stack[lastPos - 1] = "(" + stack[lastPos - 1] + " / " + stack[lastPos] + ")";
lastPos--;
break;
case IntMultiply:
case DblMultiply:
stack[lastPos - 1] = "(" + stack[lastPos - 1] + " * " + stack[lastPos] + ")";
lastPos--;
break;
default:
cerr << "Had a function operation I did not recognize!\n";
exit(1);
}
}
// now, we are just about done. First we have a sanity check to make sure
// that exactly one value is on the stack!
if (lastPos != 0) {
cerr << "During print function, we did not have exactly one value ";
cerr << "left on the stack. BAD!\n";
exit(1);
}
cout << "(" + stack[lastPos] + ")" << "\n";
}
Type Function :: Apply (Record &toMe, int &intResult, double &doubleResult) {
// this is rather simple; we just loop through and apply all of the
// operations that are specified during the function
// this is the stack that holds the intermediate results from the
// function
double stack[MAX_DEPTH];
double *lastPos = stack - 1;
char *bits = toMe.bits;
for (int i = 0; i < numOps; i++) {
switch (opList[i].myOp) {
case PushInt:
lastPos++;
// see if we need to get the int from the record
if (opList[i].recInput >= 0) {
int pointer = ((int *) toMe.bits)[opList[i].recInput + 1];
*((int *) lastPos) = *((int *) &(bits[pointer]));
// or from the literal value
} else {
*((int *) lastPos) = *((int *) opList[i].litInput);
}
break;
case PushDouble:
lastPos++;
// see if we need to get the int from the record
if (opList[i].recInput >= 0) {
int pointer = ((int *) toMe.bits)[opList[i].recInput + 1];
*((double *) lastPos) = *((double *) &(bits[pointer]));
// or from the literal value
} else {
*((double *) lastPos) = *((double *) opList[i].litInput);
}
break;
case ToDouble:
*((double *) lastPos) = *((int *) lastPos);
break;
case ToDouble2Down:
*((double *) (lastPos - 1)) = *((int *) (lastPos - 1));
break;
case IntUnaryMinus:
*((int *) lastPos) = -(*((int *) lastPos));
break;
case DblUnaryMinus:
*((double *) lastPos) = -(*((double *) lastPos));
break;
case IntMinus:
*((int *) (lastPos - 1)) = *((int *) (lastPos - 1)) -
*((int *) lastPos);
lastPos--;
break;
case DblMinus:
*((double *) (lastPos - 1)) = *((double *) (lastPos - 1)) -
*((double *) lastPos);
lastPos--;
break;
case IntPlus:
*((int *) (lastPos - 1)) = *((int *) (lastPos - 1)) +
*((int *) lastPos);
lastPos--;
break;
case DblPlus:
*((double *) (lastPos - 1)) = *((double *) (lastPos - 1)) +
*((double *) lastPos);
lastPos--;
break;
case IntDivide:
*((int *) (lastPos - 1)) = *((int *) (lastPos - 1)) /
*((int *) lastPos);
lastPos--;
break;
case DblDivide:
*((double *) (lastPos - 1)) = *((double *) (lastPos - 1)) /
*((double *) lastPos);
lastPos--;
break;
case IntMultiply:
*((int *) (lastPos - 1)) = *((int *) (lastPos - 1)) *
*((int *) lastPos);
lastPos--;
break;
case DblMultiply:
*((double *) (lastPos - 1)) = *((double *) (lastPos - 1)) *
*((double *) lastPos);
lastPos--;
break;
default:
cerr << "Had a function operation I did not recognize!\n";
exit (1);
}
}
// now, we are just about done. First we have a sanity check to make sure
// that exactly one value is on the stack!
if (lastPos != stack) {
cerr << "During function evaluation, we did not have exactly one value ";
cerr << "left on the stack. BAD!\n";
exit (1);
}
// got here, so we are good to go; just return the final value
if (returnsInt) {
intResult = *((int *) lastPos);
return Int;
} else {
doubleResult = *((double *) lastPos);
return Double;
}
}