-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompiler_gui.py
More file actions
224 lines (193 loc) · 6.71 KB
/
compiler_gui.py
File metadata and controls
224 lines (193 loc) · 6.71 KB
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
"""
Modern Web-based Compiler GUI Server
A beautiful, interactive web interface for the compiler with:
- Stunning gradient designs
- Smooth animations
- Modern typography (Helvetica, Inter)
- Real-time compilation visualization
- Interactive phase transitions
"""
from flask import Flask, render_template, request, jsonify
import sys
from io import StringIO
from lexer import Lexer, TokenType
from ast_parser import Parser
from semantic import SemanticAnalyzer
from intermediate import IntermediateCodeGenerator
from interpreter import Interpreter
app = Flask(__name__)
def capture_ast_output(ast):
"""Capture AST print output"""
from ast_parser import print_ast
old_stdout = sys.stdout
sys.stdout = StringIO()
print_ast(ast)
output = sys.stdout.getvalue()
sys.stdout = old_stdout
return output
@app.route('/')
def index():
"""Serve the main page"""
return render_template('index.html')
@app.route('/compile', methods=['POST'])
def compile_code():
"""Compile the source code and return results for all phases"""
try:
source_code = request.json.get('code', '')
results = {
'success': True,
'phases': []
}
# Phase 1: Lexical Analysis
try:
lexer = Lexer(source_code)
tokens = lexer.tokenize()
token_list = []
for i, token in enumerate(tokens):
if token.type != TokenType.EOF:
token_list.append({
'index': i,
'type': token.type.name,
'value': token.value,
'position': token.position
})
results['phases'].append({
'name': 'Lexical Analysis',
'status': 'success',
'data': {
'tokens': token_list,
'count': len(token_list)
}
})
except Exception as e:
results['success'] = False
results['phases'].append({
'name': 'Lexical Analysis',
'status': 'error',
'error': str(e)
})
return jsonify(results)
# Phase 2: Parsing
try:
parser = Parser(tokens)
ast = parser.parse()
ast_output = capture_ast_output(ast)
results['phases'].append({
'name': 'Syntax Analysis',
'status': 'success',
'data': {
'ast': ast_output
}
})
except Exception as e:
results['success'] = False
results['phases'].append({
'name': 'Syntax Analysis',
'status': 'error',
'error': str(e)
})
return jsonify(results)
# Phase 3: Semantic Analysis
try:
analyzer = SemanticAnalyzer()
old_stdout = sys.stdout
sys.stdout = StringIO()
is_valid = analyzer.analyze(ast)
sys.stdout = old_stdout
if is_valid:
results['phases'].append({
'name': 'Semantic Analysis',
'status': 'success',
'data': {
'symbols': list(analyzer.symbol_table.symbols.keys())
}
})
else:
results['success'] = False
results['phases'].append({
'name': 'Semantic Analysis',
'status': 'error',
'error': '; '.join(analyzer.errors)
})
return jsonify(results)
except Exception as e:
results['success'] = False
results['phases'].append({
'name': 'Semantic Analysis',
'status': 'error',
'error': str(e)
})
return jsonify(results)
# Phase 4: Code Generation
try:
generator = IntermediateCodeGenerator()
old_stdout = sys.stdout
sys.stdout = StringIO()
tac = generator.generate(ast)
sys.stdout = old_stdout
tac_list = []
for i, instr in enumerate(tac):
tac_list.append({
'index': i,
'instruction': str(instr)
})
results['phases'].append({
'name': 'Code Generation',
'status': 'success',
'data': {
'tac': tac_list,
'count': len(tac_list)
}
})
except Exception as e:
results['success'] = False
results['phases'].append({
'name': 'Code Generation',
'status': 'error',
'error': str(e)
})
return jsonify(results)
# Phase 5: Execution
try:
interpreter = Interpreter(tac)
# Capture output
old_stdout = sys.stdout
sys.stdout = StringIO()
execution_log = []
for i, instruction in enumerate(tac):
interpreter.pc = i
interpreter.execute_instruction(instruction)
output = sys.stdout.getvalue()
sys.stdout = old_stdout
# Extract OUTPUT lines
program_output = []
for line in output.split('\n'):
if line.startswith('OUTPUT:'):
program_output.append(line.replace('OUTPUT:', '').strip())
results['phases'].append({
'name': 'Execution',
'status': 'success',
'data': {
'output': program_output,
'memory': {k: v for k, v in interpreter.memory.items() if not k.startswith('t')}
}
})
except Exception as e:
results['success'] = False
results['phases'].append({
'name': 'Execution',
'status': 'error',
'error': str(e)
})
return jsonify(results)
return jsonify(results)
except Exception as e:
return jsonify({
'success': False,
'error': str(e)
})
if __name__ == '__main__':
print("🚀 Starting Compiler Web Interface...")
print("📱 Open your browser and go to: http://localhost:5000")
print("✨ Enjoy the beautiful, interactive compiler GUI!")
app.run(debug=True, port=5000)