-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprinter.hpp
83 lines (69 loc) · 1.77 KB
/
printer.hpp
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
#include <string>
#include <cctype>
#include <stdexcept>
#include <iostream>
#include <sstream>
namespace lsbasi {
class Printer: public VisitorPrint {
public:
enum PRINT_TYPE {
_RPN_STYLE,
_LISP_STYLE,
_TREE
};
private:
AST *ast;
PRINT_TYPE type;
std::stringstream dispatcher(AST *node, int deep){
return node->handler(this, deep);
}
std::stringstream print_op(BinOp *node, std::string op, int deep){
std::stringstream ss;
ss << std::string(deep, ' ');
ss << "BinOp(" << op << ")" << std::endl;
deep += 2;
ss << dispatcher(node->left, deep).str();
ss << dispatcher(node->right, deep).str();
return ss;
}
std::stringstream visit(Num *node, int deep){
std::stringstream ss;
ss << std::string(deep, ' ');
ss << "Num(" << node->value << ")" << std::endl;
return ss;
}
std::stringstream visit(Id *node, int deep){
std::stringstream ss;
ss << std::string(deep, ' ');
ss << "Id(" << node->value << ")" << std::endl;
return ss;
}
std::stringstream visit(Assign *node, int deep){
std::stringstream ss;
ss << std::string(deep, ' ');
ss << "Assignment()" << std::endl;
deep += 2;
ss << dispatcher(node->id, deep).str();
ss << dispatcher(node->expr, deep).str();
return ss;
}
std::stringstream visit(BinOp *node, int deep){
std::stringstream ss;
ss << print_op(node, node->op, deep).str();
return ss;
}
std::stringstream visit(UnaryOp *node, int deep){
std::stringstream ss;
ss << std::string(deep, ' ');
ss << "UnaryOp(" << node->op << ")" << std::endl;
ss << dispatcher(node->fact, deep).str();
return ss;
}
public:
Printer(AST * ast): ast(ast){}
std::string print (PRINT_TYPE type){
this->type = type;
return dispatcher(ast, 0).str();
}
};
};