-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExpression.cpp
674 lines (581 loc) · 23.8 KB
/
Expression.cpp
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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
#include "Expression.h"
#include <string>
#include <cmath>
#include "TypedValue.h"
#include "Context.h"
#include "FunctionPointer.h"
Expression::Expression(int line, int column)
: Statement(line, column)
{ }
void Expression::run(GlobalContext& context) const
{
std::cout << "= " << *evaluate(context) << std::endl;
}
NumberExpression::NumberExpression(double value, int line, int column)
: Expression(line, column), value(value)
{ }
void NumberExpression::print(std::ostream& os, std::string spacing) const
{
os << spacing << "NumberExpression \"" << value << "\"" << " @line " << line << " @column " << column << std::endl;
}
std::shared_ptr<const TypedValue> NumberExpression::evaluate(const Context & context) const
{
return std::make_shared<NumberValue>(value);
}
BoolExpression::BoolExpression(bool value, int line, int column)
: Expression(line, column), value(value)
{ }
void BoolExpression::print(std::ostream& os, std::string spacing) const
{
os << spacing << "BoolExpression \"" << (value ? "true" : "false") << "\"" << " @line " << line << " @column " << column << std::endl;
}
std::shared_ptr<const TypedValue> BoolExpression::evaluate(const Context & context) const
{
return std::make_shared<BoolValue>(value);
}
IdentifierExpression::IdentifierExpression(std::string value, int line, int column)
: Expression(line, column), value(value)
{ }
void IdentifierExpression::print(std::ostream & os, std::string spacing) const
{
os << spacing << "IdentifierExpression \"" << value << "\"" << " @line " << line << " @column " << column << std::endl;
}
std::shared_ptr<const TypedValue> IdentifierExpression::evaluate(const Context & context) const
{
return context.resolveIdentifier(value);
}
UndefinedExpression::UndefinedExpression(int line, int column)
: Expression(line, column)
{ }
void UndefinedExpression::print(std::ostream& os, std::string spacing) const
{
os << spacing << "UndefinedExpression @line " << line << " @column " << column << std::endl;
}
std::shared_ptr<const TypedValue> UndefinedExpression::evaluate(const Context & context) const
{
return std::make_shared<UndefinedValue>();
}
UnaryExpression::UnaryExpression(const Expression* first, int line, int column)
: Expression(line, column), first(first)
{ }
UnaryExpression::~UnaryExpression()
{
delete first;
}
BinaryExpression::BinaryExpression(const Expression* first, const Expression* second, int line, int column)
: Expression(line, column), first(first), second(second)
{ }
BinaryExpression::~BinaryExpression()
{
delete first;
delete second;
}
TernaryExpression::TernaryExpression(const Expression* first, const Expression* second, const Expression* third, int line, int column)
: Expression(line, column), first(first), second(second), third(third)
{ }
TernaryExpression::~TernaryExpression()
{
delete first;
delete second;
delete third;
}
ConditionalExpression::ConditionalExpression(const Expression* first, const Expression* second, const Expression* third, int line, int column)
: TernaryExpression(first, second, third, line, column)
{ }
void ConditionalExpression::print(std::ostream & os, std::string spacing) const
{
os << spacing << "ConditionalExpression @line " << line << " @column " << column << std::endl;
first->print(os, spacing + " ");
second->print(os, spacing + " ");
third->print(os, spacing + " ");
}
std::shared_ptr<const TypedValue> ConditionalExpression::evaluate(const Context & context) const
{
std::shared_ptr<const TypedValue> conditional = first->evaluate(context);
if (!conditional->is(ValueType::Bool))
{
if (!conditional->is(ValueType::Error)) context.logError("Condition must be a bool", first->getLine(), first->getColumn());
return std::make_shared<ErrorValue>();
}
if (std::dynamic_pointer_cast<const BoolValue>(conditional)->getValue())
{
return second->evaluate(context);
}
else
{
return third->evaluate(context);
}
}
OrExpression::OrExpression(const Expression * first, const Expression * second, int line, int column)
: BinaryExpression(first, second, line, column)
{ }
void OrExpression::print(std::ostream & os, std::string spacing) const
{
os << spacing << "OrExpression @line " << line << " @column " << column << std::endl;
first->print(os, spacing + " ");
second->print(os, spacing + " ");
}
std::shared_ptr<const TypedValue> OrExpression::evaluate(const Context & context) const
{
std::shared_ptr<const TypedValue> a = first->evaluate(context);
std::shared_ptr<const TypedValue> b = second->evaluate(context);
bool error = false;
if (!a->is(ValueType::Bool))
{
if (!a->is(ValueType::Error)) context.logError("Operand must be a bool", first->getLine(), first->getColumn());
error = true;
}
if (!b->is(ValueType::Bool))
{
if (!b->is(ValueType::Error)) context.logError("Operand must be a bool", second->getLine(), second->getColumn());
error = true;
}
if (error) return std::make_shared<ErrorValue>();
return std::make_shared<BoolValue>(std::dynamic_pointer_cast<const BoolValue>(a)->getValue() || std::dynamic_pointer_cast<const BoolValue>(b)->getValue());
}
AndExpression::AndExpression(const Expression * first, const Expression * second, int line, int column)
: BinaryExpression(first, second, line, column)
{ }
void AndExpression::print(std::ostream & os, std::string spacing) const
{
os << spacing << "AndExpression @line " << line << " @column " << column << std::endl;
first->print(os, spacing + " ");
second->print(os, spacing + " ");
}
std::shared_ptr<const TypedValue> AndExpression::evaluate(const Context & context) const
{
std::shared_ptr<const TypedValue> a = first->evaluate(context);
std::shared_ptr<const TypedValue> b = second->evaluate(context);
bool error = false;
if (!a->is(ValueType::Bool))
{
if (!a->is(ValueType::Error)) context.logError("Operand must be a bool", first->getLine(), first->getColumn());
error = true;
}
if (!b->is(ValueType::Bool))
{
if (!b->is(ValueType::Error)) context.logError("Operand must be a bool", second->getLine(), second->getColumn());
error = true;
}
if (error) return std::make_shared<ErrorValue>();
return std::make_shared<BoolValue>(std::dynamic_pointer_cast<const BoolValue>(a)->getValue() && std::dynamic_pointer_cast<const BoolValue>(b)->getValue());
}
GreaterExpression::GreaterExpression(const Expression * first, const Expression * second, int line, int column)
: BinaryExpression(first, second, line, column)
{ }
void GreaterExpression::print(std::ostream & os, std::string spacing) const
{
os << spacing << "GreaterExpression @line " << line << " @column " << column << std::endl;
first->print(os, spacing + " ");
second->print(os, spacing + " ");
}
std::shared_ptr<const TypedValue> GreaterExpression::evaluate(const Context & context) const
{
std::shared_ptr<const TypedValue> a = first->evaluate(context);
std::shared_ptr<const TypedValue> b = second->evaluate(context);
bool error = false;
if (!a->is(ValueType::Number))
{
if (!a->is(ValueType::Error)) context.logError("Operand must be a number", first->getLine(), first->getColumn());
error = true;
}
if (!b->is(ValueType::Number))
{
if (!b->is(ValueType::Error)) context.logError("Operand must be a number", second->getLine(), second->getColumn());
error = true;
}
if (error) return std::make_shared<ErrorValue>();
return std::make_shared<BoolValue>(std::dynamic_pointer_cast<const NumberValue>(a)->getValue() > std::dynamic_pointer_cast<const NumberValue>(b)->getValue());
}
LessExpression::LessExpression(const Expression * first, const Expression * second, int line, int column)
: BinaryExpression(first, second, line, column)
{ }
void LessExpression::print(std::ostream & os, std::string spacing) const
{
os << spacing << "LessExpression @line " << line << " @column " << column << std::endl;
first->print(os, spacing + " ");
second->print(os, spacing + " ");
}
std::shared_ptr<const TypedValue> LessExpression::evaluate(const Context & context) const
{
std::shared_ptr<const TypedValue> a = first->evaluate(context);
std::shared_ptr<const TypedValue> b = second->evaluate(context);
bool error = false;
if (!a->is(ValueType::Number))
{
if (!a->is(ValueType::Error)) context.logError("Operand must be a number", first->getLine(), first->getColumn());
error = true;
}
if (!b->is(ValueType::Number))
{
if (!b->is(ValueType::Error)) context.logError("Operand must be a number", second->getLine(), second->getColumn());
error = true;
}
if (error) return std::make_shared<ErrorValue>();
return std::make_shared<BoolValue>(std::dynamic_pointer_cast<const NumberValue>(a)->getValue() < std::dynamic_pointer_cast<const NumberValue>(b)->getValue());
}
GreaterEqualsExpression::GreaterEqualsExpression(const Expression * first, const Expression * second, int line, int column)
: BinaryExpression(first, second, line, column)
{ }
void GreaterEqualsExpression::print(std::ostream & os, std::string spacing) const
{
os << spacing << "GreaterEqualsExpression @line " << line << " @column " << column << std::endl;
first->print(os, spacing + " ");
second->print(os, spacing + " ");
}
std::shared_ptr<const TypedValue> GreaterEqualsExpression::evaluate(const Context & context) const
{
std::shared_ptr<const TypedValue> a = first->evaluate(context);
std::shared_ptr<const TypedValue> b = second->evaluate(context);
bool error = false;
if (!a->is(ValueType::Number))
{
if (!a->is(ValueType::Error)) context.logError("Operand must be a number", first->getLine(), first->getColumn());
error = true;
}
if (!b->is(ValueType::Number))
{
if (!b->is(ValueType::Error)) context.logError("Operand must be a number", second->getLine(), second->getColumn());
error = true;
}
if (error) return std::make_shared<ErrorValue>();
return std::make_shared<BoolValue>(std::dynamic_pointer_cast<const NumberValue>(a)->getValue() >= std::dynamic_pointer_cast<const NumberValue>(b)->getValue());
}
LessEqualsExpression::LessEqualsExpression(const Expression * first, const Expression * second, int line, int column)
: BinaryExpression(first, second, line, column)
{ }
void LessEqualsExpression::print(std::ostream & os, std::string spacing) const
{
os << spacing << "LessEqualsExpression @line " << line << " @column " << column << std::endl;
first->print(os, spacing + " ");
second->print(os, spacing + " ");
}
std::shared_ptr<const TypedValue> LessEqualsExpression::evaluate(const Context & context) const
{
std::shared_ptr<const TypedValue> a = first->evaluate(context);
std::shared_ptr<const TypedValue> b = second->evaluate(context);
bool error = false;
if (!a->is(ValueType::Number))
{
if (!a->is(ValueType::Error)) context.logError("Operand must be a number", first->getLine(), first->getColumn());
error = true;
}
if (!b->is(ValueType::Number))
{
if (!b->is(ValueType::Error)) context.logError("Operand must be a number", second->getLine(), second->getColumn());
error = true;
}
if (error) return std::make_shared<ErrorValue>();
return std::make_shared<BoolValue>(std::dynamic_pointer_cast<const NumberValue>(a)->getValue() <= std::dynamic_pointer_cast<const NumberValue>(b)->getValue());
}
EqualsExpression::EqualsExpression(const Expression * first, const Expression * second, int line, int column)
: BinaryExpression(first, second, line, column)
{ }
void EqualsExpression::print(std::ostream & os, std::string spacing) const
{
os << spacing << "EqualsExpression @line " << line << " @column " << column << std::endl;
first->print(os, spacing + " ");
second->print(os, spacing + " ");
}
std::shared_ptr<const TypedValue> EqualsExpression::evaluate(const Context & context) const
{
std::shared_ptr<const TypedValue> a = first->evaluate(context);
std::shared_ptr<const TypedValue> b = second->evaluate(context);
if (a->is(ValueType::Error) || b->is(ValueType::Error))
{
return std::make_shared<ErrorValue>();
}
else if (!a->is(b->getType()))
{
return std::make_shared<BoolValue>(false);
}
else if (a->is(ValueType::Undefined))
{
return std::make_shared<BoolValue>(true);
}
else if (a->is(ValueType::Number))
{
return std::make_shared<BoolValue>(std::dynamic_pointer_cast<const NumberValue>(a)->getValue() == std::dynamic_pointer_cast<const NumberValue>(b)->getValue());
}
else if (a->is(ValueType::Bool))
{
return std::make_shared<BoolValue>(std::dynamic_pointer_cast<const BoolValue>(a)->getValue() == std::dynamic_pointer_cast<const BoolValue>(b)->getValue());
}
else //if (a->is(ValueType::Function))
{
return std::make_shared<BoolValue>(std::dynamic_pointer_cast<const FunctionValue>(a)->getValue() == std::dynamic_pointer_cast<const FunctionValue>(b)->getValue());
}
}
NotEqualsExpression::NotEqualsExpression(const Expression * first, const Expression * second, int line, int column)
: BinaryExpression(first, second, line, column)
{ }
void NotEqualsExpression::print(std::ostream & os, std::string spacing) const
{
os << spacing << "NotEqualsExpression @line " << line << " @column " << column << std::endl;
first->print(os, spacing + " ");
second->print(os, spacing + " ");
}
std::shared_ptr<const TypedValue> NotEqualsExpression::evaluate(const Context & context) const
{
std::shared_ptr<const TypedValue> a = first->evaluate(context);
std::shared_ptr<const TypedValue> b = second->evaluate(context);
if (a->is(ValueType::Error) || b->is(ValueType::Error))
{
return std::make_shared<ErrorValue>();
}
else if (!a->is(b->getType()))
{
return std::make_shared<BoolValue>(true);
}
else if (a->is(ValueType::Undefined))
{
return std::make_shared<BoolValue>(false);
}
else if (a->is(ValueType::Number))
{
return std::make_shared<BoolValue>(std::dynamic_pointer_cast<const NumberValue>(a)->getValue() != std::dynamic_pointer_cast<const NumberValue>(b)->getValue());
}
else if (a->is(ValueType::Bool))
{
return std::make_shared<BoolValue>(std::dynamic_pointer_cast<const BoolValue>(a)->getValue() != std::dynamic_pointer_cast<const BoolValue>(b)->getValue());
}
else //if (a->is(ValueType::Function))
{
return std::make_shared<BoolValue>(std::dynamic_pointer_cast<const FunctionValue>(a)->getValue() != std::dynamic_pointer_cast<const FunctionValue>(b)->getValue());
}
}
AddExpression::AddExpression(const Expression * first, const Expression * second, int line, int column)
: BinaryExpression(first, second, line, column)
{ }
void AddExpression::print(std::ostream & os, std::string spacing) const
{
os << spacing << "AddExpression @line " << line << " @column " << column << std::endl;
first->print(os, spacing + " ");
second->print(os, spacing + " ");
}
std::shared_ptr<const TypedValue> AddExpression::evaluate(const Context & context) const
{
std::shared_ptr<const TypedValue> a = first->evaluate(context);
std::shared_ptr<const TypedValue> b = second->evaluate(context);
bool error = false;
if (!a->is(ValueType::Number))
{
if (!a->is(ValueType::Error)) context.logError("Operand must be a number", first->getLine(), first->getColumn());
error = true;
}
if (!b->is(ValueType::Number))
{
if (!b->is(ValueType::Error)) context.logError("Operand must be a number", second->getLine(), second->getColumn());
error = true;
}
if (error) return std::make_shared<ErrorValue>();
return std::make_shared<NumberValue>(std::dynamic_pointer_cast<const NumberValue>(a)->getValue() + std::dynamic_pointer_cast<const NumberValue>(b)->getValue());
}
SubExpression::SubExpression(const Expression * first, const Expression * second, int line, int column)
: BinaryExpression(first, second, line, column)
{ }
void SubExpression::print(std::ostream & os, std::string spacing) const
{
os << spacing << "SubExpression @line " << line << " @column " << column << std::endl;
first->print(os, spacing + " ");
second->print(os, spacing + " ");
}
std::shared_ptr<const TypedValue> SubExpression::evaluate(const Context & context) const
{
std::shared_ptr<const TypedValue> a = first->evaluate(context);
std::shared_ptr<const TypedValue> b = second->evaluate(context);
bool error = false;
if (!a->is(ValueType::Number))
{
if (!a->is(ValueType::Error)) context.logError("Operand must be a number", first->getLine(), first->getColumn());
error = true;
}
if (!b->is(ValueType::Number))
{
if (!b->is(ValueType::Error)) context.logError("Operand must be a number", second->getLine(), second->getColumn());
error = true;
}
if (error) return std::make_shared<ErrorValue>();
return std::make_shared<NumberValue>(std::dynamic_pointer_cast<const NumberValue>(a)->getValue() - std::dynamic_pointer_cast<const NumberValue>(b)->getValue());
}
MulExpression::MulExpression(const Expression * first, const Expression * second, int line, int column)
: BinaryExpression(first, second, line, column)
{ }
void MulExpression::print(std::ostream & os, std::string spacing) const
{
os << spacing << "MulExpression @line " << line << " @column " << column << std::endl;
first->print(os, spacing + " ");
second->print(os, spacing + " ");
}
std::shared_ptr<const TypedValue> MulExpression::evaluate(const Context & context) const
{
std::shared_ptr<const TypedValue> a = first->evaluate(context);
std::shared_ptr<const TypedValue> b = second->evaluate(context);
bool error = false;
if (!a->is(ValueType::Number))
{
if (!a->is(ValueType::Error)) context.logError("Operand must be a number", first->getLine(), first->getColumn());
error = true;
}
if (!b->is(ValueType::Number))
{
if (!b->is(ValueType::Error)) context.logError("Operand must be a number", second->getLine(), second->getColumn());
error = true;
}
if (error) return std::make_shared<ErrorValue>();
return std::make_shared<NumberValue>(std::dynamic_pointer_cast<const NumberValue>(a)->getValue() * std::dynamic_pointer_cast<const NumberValue>(b)->getValue());
}
DivExpression::DivExpression(const Expression * first, const Expression * second, int line, int column)
: BinaryExpression(first, second, line, column)
{ }
void DivExpression::print(std::ostream & os, std::string spacing) const
{
os << spacing << "DivExpression @line " << line << " @column " << column << std::endl;
first->print(os, spacing + " ");
second->print(os, spacing + " ");
}
std::shared_ptr<const TypedValue> DivExpression::evaluate(const Context & context) const
{
std::shared_ptr<const TypedValue> a = first->evaluate(context);
std::shared_ptr<const TypedValue> b = second->evaluate(context);
bool error = false;
if (!a->is(ValueType::Number))
{
if (!a->is(ValueType::Error)) context.logError("Operand must be a number", first->getLine(), first->getColumn());
error = true;
}
if (!b->is(ValueType::Number))
{
if (!b->is(ValueType::Error)) context.logError("Operand must be a number", second->getLine(), second->getColumn());
error = true;
}
if (error) return std::make_shared<ErrorValue>();
return std::make_shared<NumberValue>(std::dynamic_pointer_cast<const NumberValue>(a)->getValue() / std::dynamic_pointer_cast<const NumberValue>(b)->getValue());
}
ModExpression::ModExpression(const Expression * first, const Expression * second, int line, int column)
: BinaryExpression(first, second, line, column)
{ }
void ModExpression::print(std::ostream & os, std::string spacing) const
{
os << spacing << "ModExpression @line " << line << " @column " << column << std::endl;
first->print(os, spacing + " ");
second->print(os, spacing + " ");
}
std::shared_ptr<const TypedValue> ModExpression::evaluate(const Context & context) const
{
std::shared_ptr<const TypedValue> a = first->evaluate(context);
std::shared_ptr<const TypedValue> b = second->evaluate(context);
bool error = false;
if (!a->is(ValueType::Number))
{
if (!a->is(ValueType::Error)) context.logError("Operand must be a number", first->getLine(), first->getColumn());
error = true;
}
if (!b->is(ValueType::Number))
{
if (!b->is(ValueType::Error)) context.logError("Operand must be a number", second->getLine(), second->getColumn());
error = true;
}
if (error) return std::make_shared<ErrorValue>();
return std::make_shared<NumberValue>(fmod(std::dynamic_pointer_cast<const NumberValue>(a)->getValue(), std::dynamic_pointer_cast<const NumberValue>(b)->getValue()));
}
PowExpression::PowExpression(const Expression * first, const Expression * second, int line, int column)
: BinaryExpression(first, second, line, column)
{ }
void PowExpression::print(std::ostream & os, std::string spacing) const
{
os << spacing << "PowExpression @line " << line << " @column " << column << std::endl;
first->print(os, spacing + " ");
second->print(os, spacing + " ");
}
std::shared_ptr<const TypedValue> PowExpression::evaluate(const Context & context) const
{
std::shared_ptr<const TypedValue> a = first->evaluate(context);
std::shared_ptr<const TypedValue> b = second->evaluate(context);
bool error = false;
if (!a->is(ValueType::Number))
{
if (!a->is(ValueType::Error)) context.logError("Operand must be a number", first->getLine(), first->getColumn());
error = true;
}
if (!b->is(ValueType::Number))
{
if (!b->is(ValueType::Error)) context.logError("Operand must be a number", second->getLine(), second->getColumn());
error = true;
}
if (error) return std::make_shared<ErrorValue>();
return std::make_shared<NumberValue>(pow(std::dynamic_pointer_cast<const NumberValue>(a)->getValue(), std::dynamic_pointer_cast<const NumberValue>(b)->getValue()));
}
NegExpression::NegExpression(const Expression * first, int line, int column)
: UnaryExpression(first, line, column)
{ }
void NegExpression::print(std::ostream & os, std::string spacing) const
{
os << spacing << "NegExpression @line " << line << " @column " << column << std::endl;
first->print(os, spacing + " ");
}
std::shared_ptr<const TypedValue> NegExpression::evaluate(const Context & context) const
{
std::shared_ptr<const TypedValue> a = first->evaluate(context);
if (!a->is(ValueType::Number))
{
if (!a->is(ValueType::Error)) context.logError("Operand must be a number", first->getLine(), first->getColumn());
return std::make_shared<ErrorValue>();
}
return std::make_shared<NumberValue>(-std::dynamic_pointer_cast<const NumberValue>(a)->getValue());
}
NotExpression::NotExpression(const Expression * first, int line, int column)
: UnaryExpression(first, line, column)
{ }
void NotExpression::print(std::ostream & os, std::string spacing) const
{
os << spacing << "NotExpression @line " << line << " @column " << column << std::endl;
first->print(os, spacing + " ");
}
std::shared_ptr<const TypedValue> NotExpression::evaluate(const Context & context) const
{
std::shared_ptr<const TypedValue> a = first->evaluate(context);
if (!a->is(ValueType::Bool))
{
if (!a->is(ValueType::Error)) context.logError("Operand must be a bool", first->getLine(), first->getColumn());
return std::make_shared<ErrorValue>();
}
return std::make_shared<BoolValue>(!std::dynamic_pointer_cast<const BoolValue>(a)->getValue());
}
FunctionCallExpression::FunctionCallExpression(const Expression * callable, std::vector<const Expression*> parameters, int line, int column)
: Expression(line, column), callable(callable), parameters(parameters)
{ }
FunctionCallExpression::~FunctionCallExpression()
{
delete callable;
for (const Expression* param : parameters)
{
delete param;
}
}
void FunctionCallExpression::print(std::ostream & os, std::string spacing) const
{
os << spacing << "FunctionCallExpression @line " << line << " @column " << column << std::endl;
os << spacing + " " << "Callable:" << std::endl;
callable->print(os, spacing + " ");
os << spacing + " " << "Parameters:" << std::endl;
for (const Expression* param : parameters)
{
param->print(os, spacing + " ");
}
}
std::shared_ptr<const TypedValue> FunctionCallExpression::evaluate(const Context& context) const
{
std::shared_ptr<const TypedValue> func = callable->evaluate(context);
if (!func->is(ValueType::Function))
{
if (!func->is(ValueType::Function)) context.logError("Operand must be a function", callable->getLine(), callable->getColumn());
return std::make_shared<ErrorValue>();
}
std::vector<const Expression*> params;
for (const Expression* param : parameters)
{
params.push_back(param);
}
return std::dynamic_pointer_cast<const FunctionValue>(func)->getValue()->call(context, parameters, callable->getLine(), callable->getColumn());
}