-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathprogram.py
More file actions
495 lines (390 loc) · 18.8 KB
/
Copy pathprogram.py
File metadata and controls
495 lines (390 loc) · 18.8 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
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
#! /usr/bin/python
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
"""Class representing a BASIC program.
This is a list of statements, ordered by
line number.
"""
from basicdata import BASICData
from basictoken import BASICToken as Token
from basicparser import BASICParser
from flowsignal import FlowSignal
from lexer import Lexer
from gc import collect
from os import listdir,remove,uname
from sys import implementation
try:
from pydos_ui import input
except:
pass
collect()
class Program:
def __init__(self):
# Dictionary to represent program
# statements, keyed by line number
self.__program = {}
# Program counter
self.__next_stmt = 0
# Initialise return stack for subroutine returns
self.__return_stack = []
# return dictionary for loop returns
self.__return_loop = {}
# Setup DATA object
self.__data = BASICData()
if uname()[0].upper() == 'LINUX' or \
implementation.name.upper() in ['MICROPYTHON','CIRCUITPYTHON']:
self.__imp = 'X'
else:
self.__imp = 'W'
def list(self, strt_line, end_line, infile, tmpfile):
"""Lists the program"""
line_numbers = self.line_numbers()
for line_number in line_numbers:
if (int(line_number) >= strt_line and int(line_number) <= end_line) or strt_line == -1:
print(line_number, end=' ')
statement = self.getprogram(line_number,infile,tmpfile)
for token in statement:
# Add in quotes for strings
if token.category == Token.STRING:
print('"' + token.lexeme + '"', end=' ')
else:
print(token.lexeme, end=' ')
print()
def save(self, file, infile, tmpfile):
"""Save the program
:param file: The name and path of the save file
"""
retCode = False
ans = "Y"
if file in listdir():
ans = input("Overwrite "+file+" (y/n): ").upper()
if ans == "Y":
if file+".pYb" in listdir():
remove(file+".pYb")
try:
with open(file+".pYb", 'w') as outfile:
line_numbers = self.line_numbers()
if file.split(".")[-1].upper() == "PGM":
filelen = 0
for line_number in line_numbers:
statement = self.getprogram(line_number,infile,tmpfile)
if len(statement) > 1 and statement[0].lexeme == "DATA":
sign = -1
else:
sign = 1
fileLine = str(line_number)+","+str(sign*self.__program[line_number])
outfile.write(fileLine+"\n")
filelen += (len(fileLine)+(0 if self.__imp == 'X' else 1))
outfile.write("-999,-999\n")
filelen += (10 if self.__imp == 'X' else 11)
for line_number in line_numbers:
fileLine = str(line_number)
statement = self.getprogram(line_number,infile,tmpfile)
for token in statement:
# Add in quotes for strings
if token.category == Token.STRING:
fileLine += ' "' + token.lexeme + '"'
else:
fileLine += " " + token.lexeme
outfile.write(fileLine+"\n")
retCode = True
except OSError:
print("Could not save to file")
return retCode
def load(self, file, tmpfile):
"""Load the program
:param file: The name and path of the file to be loaded
tmpfile: File handle for temporary basic workfile"""
infile = None
try:
infile = open(file, 'r')
if hasattr(infile,'newlines'):
try:
infile.readline()
except:
pass
newlines = infile.newlines
infile.seek(0)
else:
newlines = None
fIndex = 0
fOffset = 0
pgmLoad = False
if file.split(".")[-1].upper() == "PGM":
pgmLoad = True
for fileLine in infile:
fOffset += len(fileLine)
if newlines != None:
fOffset += len(newlines)-1
elif self.__imp != 'X':
fOffset += 1
if len(fileLine) >= 9 and fileLine[0:9] == "-999,-999":
break
infile.seek(0)
for fileLine in infile:
if pgmLoad:
line_number = int(fileLine.split(",")[0])
fIndex = int(fileLine.split(",")[1])
if len(fileLine) >= 9 and fileLine[0:9] == "-999,-999":
break
self.__program[line_number] = abs(fIndex)+fOffset
if fIndex < 0:
self.__data.addData(line_number,abs(fIndex)+fOffset)
else:
if ((fileLine.strip()).replace("\n","")).replace("\r","") != "":
line_number = int(fileLine.strip().split(" ")[0])
self.__program[line_number] = fIndex+fOffset
if fileLine.strip().upper()[fileLine.strip().find(' '):].strip()[:4] == "DATA":
self.__data.addData(line_number,fIndex)
#self.add_stmt(Lexer().tokenize((fileLine.replace("\n","")).replace("\r","")),fIndex+fOffset,tmpfile)
fIndex += len(fileLine)
if newlines != None:
fIndex += len(newlines)-1
elif self.__imp != 'X':
fIndex += 1
except OSError:
print("Could not read file")
return infile
def add_stmt(self, tokenlist, fIndex, tmpfile):
"""
Adds the supplied token list
to the program. The first token should
be the line number. If a token list with the
same line number already exists, this is
replaced.
:param tokenlist: List of BTokens representing a
numbered program statement
fIndex: if >= 0: location in loaded program file of statment
if < 0: Indicates statement was not read and should
be added to temporary basic workfile
tmpfile: file handle of temporary basic workfile
"""
try:
line_number = int(tokenlist[0].lexeme)
if fIndex >= 0:
self.__program[line_number] = fIndex
if tokenlist[1].lexeme == "DATA":
self.__data.addData(line_number,fIndex)
else:
if hasattr(tmpfile,'newlines'):
try:
tmpfile.readline()
except:
pass
newlines = tmpfile.newlines
else:
newlines = None
tmpfile.seek(0)
filelen = 0
for lines in tmpfile:
filelen += len(lines)
if newlines != None:
filelen += len(newlines) - 1
elif self.__imp != 'X':
filelen += 1
self.__program[line_number] = -(filelen+1)
if tokenlist[1].lexeme == "DATA":
self.__data.addData(line_number,-(filelen+1))
#self.__program[line_number] = -(len(tmpfile.read())+1)
fileLine = str(line_number)
for token in tokenlist[1:]:
# Add in quotes for strings
if token.category == Token.STRING:
fileLine += ' "' + token.lexeme + '"'
else:
fileLine += " " + token.lexeme
tmpfile.write(fileLine+"\n")
except TypeError as err:
raise TypeError("Invalid line number: " +
str(err))
def line_numbers(self):
"""Returns a list of all the
line numbers for the program,
sorted
:return: A sorted list of
program line numbers
"""
line_numbers = list(self.__program.keys())
line_numbers.sort()
return line_numbers
def getprogram(self, ln, infile, tmpfile):
if self.__program[ln] >= 0:
infile.seek(self.__program[ln])
statement = Lexer().tokenize((infile.readline().strip().replace("\n","")).replace("\r",""))[1:]
else:
tmpfile.seek(-(self.__program[ln]+1))
statement = Lexer().tokenize((tmpfile.readline().replace("\n","")).replace("\r",""))[1:]
return statement
def __execute(self, line_number, infile,tmpfile):
"""Execute the statement with the
specified line number
:param line_number: The line number
:return: The FlowSignal to indicate to the program
how to branch if necessary, None otherwise
"""
if line_number not in self.__program.keys():
raise RuntimeError("Line number " + line_number +
" does not exist")
statement = self.getprogram(line_number,infile,tmpfile)
number_of_stmts = 1
for e in statement:
if e.category == Token.COLON:
number_of_stmts += 1
elif e.category == Token.IF:
# any colons after an IF statement are seperators for the THEN or ELSE clause
# and will be processed by the recursive call to PARSE within the PARSE method
break
for cstmt_number in range(0,number_of_stmts):
try:
#if True:
tmp_flow = self.__parser.parse(statement, line_number, cstmt_number, infile, tmpfile, self.__data)
except RuntimeError as err:
raise RuntimeError(str(err))
except KeyboardInterrupt:
return FlowSignal(ftype=FlowSignal.STOP)
if tmp_flow:
break
return tmp_flow
def execute(self,infile,tmpfile):
"""Execute the program"""
self.__parser = BASICParser()
self.__data.restore(0) # reset data pointer
line_numbers = self.line_numbers()
if len(line_numbers) > 0:
# Set up an index into the ordered list
# of line numbers that can be used for
# sequential statement execution. The index
# will be incremented by one, unless modified by
# a jump
index = 0
self.__next_stmt = line_numbers[index]
# Run through the program until the
# has line number has been reached
while True:
flowsignal = self.__execute(self.__next_stmt,infile,tmpfile)
self.__parser.last_flowsignal = flowsignal
if flowsignal:
if flowsignal.ftype == FlowSignal.SIMPLE_JUMP:
# GOTO or conditional branch encountered
try:
index = line_numbers.index(flowsignal.ftarget)
except ValueError:
raise RuntimeError("Invalid line number supplied in GOTO or conditional branch: "
+ str(flowsignal.ftarget)+ " in line " + str(self.__next_stmt))
self.__next_stmt = flowsignal.ftarget
elif flowsignal.ftype == FlowSignal.GOSUB:
# Subroutine call encountered
# Add line number of next instruction to
# the return stack
if index + 1 < len(line_numbers):
self.__return_stack.append(line_numbers[index + 1])
else:
raise RuntimeError("GOSUB at end of program, nowhere to return")
# Set the index to be the subroutine start line
# number
try:
index = line_numbers.index(flowsignal.ftarget)
except ValueError:
raise RuntimeError("Invalid line number supplied in subroutine call: "
+ str(flowsignal.ftarget))
self.__next_stmt = flowsignal.ftarget
elif flowsignal.ftype == FlowSignal.RETURN:
# Subroutine return encountered
# Pop return address from the stack
try:
index = line_numbers.index(self.__return_stack.pop())
except ValueError:
raise RuntimeError("Invalid subroutine return in line " +
str(self.__next_stmt))
except IndexError:
raise RuntimeError("RETURN encountered without corresponding " +
"subroutine call in line " + str(self.__next_stmt))
self.__next_stmt = line_numbers[index]
elif flowsignal.ftype == FlowSignal.STOP:
break
elif flowsignal.ftype == FlowSignal.LOOP_BEGIN:
# Loop start encountered
# Put loop line number on the stack so
# that it can be returned to when the loop
# repeats
self.__return_loop[flowsignal.floop_var] = self.__next_stmt
# Continue to the next statement in the loop
index = index + 1
if index < len(line_numbers):
self.__next_stmt = line_numbers[index]
else:
# Reached end of program
raise RuntimeError("Program terminated within a loop")
elif flowsignal.ftype == FlowSignal.LOOP_SKIP:
# Loop variable has reached end value, so ignore
# all statements within loop and move past the corresponding
# NEXT statement
index = index + 1
while index < len(line_numbers):
next_line_number = line_numbers[index]
#temp_tokenlist = self.__program[next_line_number]
temp_tokenlist = self.getprogram(next_line_number,infile,tmpfile)
if temp_tokenlist[0].category == Token.NEXT and \
len(temp_tokenlist) > 1:
# Check the loop variable to ensure we have not found
# the NEXT statement for a nested loop
if temp_tokenlist[1].lexeme == flowsignal.ftarget:
# Move the statement after this NEXT, if there
# is one
index = index + 1
if index < len(line_numbers):
next_line_number = line_numbers[index] # Statement after the NEXT
self.__next_stmt = next_line_number
break
index = index + 1
# Check we have not reached end of program
if index >= len(line_numbers):
# Terminate the program
break
elif flowsignal.ftype == FlowSignal.LOOP_REPEAT:
# Loop repeat encountered
# Pop the loop start address from the stack
try:
index = line_numbers.index(self.__return_loop.pop(flowsignal.floop_var))
except ValueError:
raise RuntimeError("Invalid loop exit in line " +
str(self.__next_stmt))
except KeyError:
raise RuntimeError("NEXT encountered without corresponding " +
"FOR loop in line " + str(self.__next_stmt))
self.__next_stmt = line_numbers[index]
else:
index = index + 1
if index < len(line_numbers):
self.__next_stmt = line_numbers[index]
else:
# Reached end of program
break
else:
raise RuntimeError("No statements to execute")
def delete(self):
"""Deletes the program by emptying the dictionary"""
self.__program.clear()
self.__data.delete()
def delete_statement(self, line_number):
"""Deletes a statement from the program with
the specified line number, if it exists
:param line_number: The line number to be deleted
"""
self.__data.delData(line_number)
try:
del self.__program[line_number]
except KeyError:
raise KeyError("Line number does not exist")