-
Notifications
You must be signed in to change notification settings - Fork 47
/
basicparser.py
1774 lines (1341 loc) · 60.8 KB
/
basicparser.py
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
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#! /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/>.
from basictoken import BASICToken as Token
from flowsignal import FlowSignal
import math
import random
try:
from time import ticks_ms as monotonic
except:
from time import monotonic
"""Implements a BASIC array, which may have up
to three dimensions of fixed size.
"""
class BASICArray:
def __init__(self, dimensions, elem_type):
"""Initialises the object with the specified
number of dimensions. Maximum number of
dimensions is three
:param dimensions: List of array dimensions and their
corresponding sizes
:param elem_type: Indicates whether the elements are strings ('str')
or numbers ('num')
"""
self.dims = min(3, len(dimensions))
if self.dims == 0:
raise SyntaxError("Zero dimensional array specified")
# Check for invalid sizes and ensure int
for i in range(self.dims):
if dimensions[i] < 0:
raise SyntaxError("Negative array size specified")
# Allow sizes like 1.0f, but not 1.1f
if int(dimensions[i]) != dimensions[i]:
raise SyntaxError("Fractional array size specified")
dimensions[i] = int(dimensions[i])
# MSBASIC: Initialize to Zero
# MSBASIC: Overdim by one, as some dialects are 1 based and expect
# to use the last item at index = size
if self.dims == 1:
if elem_type == 'num':
self.data = [0 for x in range(dimensions[0] + 1)]
else:
self.data = ['' for x in range(dimensions[0] + 1)]
elif self.dims == 2:
if elem_type == 'num':
self.data = [
[0 for x in range(dimensions[1] + 1)] for x in range(dimensions[0] + 1)
]
else:
self.data = [
['' for x in range(dimensions[1] + 1)] for x in range(dimensions[0] + 1)
]
else:
if elem_type == 'num':
self.data = [
[
[0 for x in range(dimensions[2] + 1)]
for x in range(dimensions[1] + 1)
]
for x in range(dimensions[0] + 1)
]
else:
self.data = [
[
['' for x in range(dimensions[2] + 1)]
for x in range(dimensions[1] + 1)
]
for x in range(dimensions[0] + 1)
]
def pretty_print(self):
print(str(self.data))
"""Implements a BASIC parser that parses a single
statement when supplied.
"""
class BASICParser:
def __init__(self, basicdata):
# Symbol table to hold variable names mapped
# to values
self.__symbol_table = {}
# Stack on which to store operands
# when evaluating expressions
self.__operand_stack = []
# BasicDATA structure containing program DATA Statements
self.__data = basicdata
# List to hold values read from DATA statements
self.__data_values = []
# These values will be
# initialised on a per
# statement basis
self.__tokenlist = []
self.__tokenindex = None
# Previous flowsignal used to determine initializion of
# loop variable
self.last_flowsignal = None
# Set to keep track of print column across multiple print statements
self.__prnt_column = 0
#file handle list
self.__file_handles = {}
def parse(self, tokenlist, line_number):
"""Must be initialised with the list of
BTokens to be processed. These tokens
represent a BASIC statement without
its corresponding line number.
:param tokenlist: The tokenized program statement
:param line_number: The line number of the statement
:return: The FlowSignal to indicate to the program
how to branch if necessary, None otherwise
"""
# Remember the line number to aid error reporting
self.__line_number = line_number
self.__tokenlist = []
self.__tokenindex = 0
linetokenindex = 0
for token in tokenlist:
# If statements will always be the last statement processed on a line so
# any colons found after an IF are part of the condition execution statements
# and will be processed in the recursive call to parse
if token.category == token.IF:
# process IF statement to move __tokenidex to the code block
# of the THEN or ELSE and then call PARSE recursively to process that code block
# this will terminate the token loop by RETURNing to the calling module
#
# **Warning** if an IF stmt is used in the THEN code block or multiple IF statement are used
# in a THEN or ELSE block the block grouping is ambiguous and logical processing may not
# function as expected. There is no ambiguity when single IF statements are placed within ELSE blocks
linetokenindex += self.__tokenindex
self.__tokenindex = 0
self.__tokenlist = tokenlist[linetokenindex:]
# Assign the first token
self.__token = self.__tokenlist[0]
flow = self.__stmt() # process IF statement
if flow and (flow.ftype == FlowSignal.EXECUTE):
# recursive call to process THEN/ELSE block
try:
return self.parse(tokenlist[linetokenindex+self.__tokenindex:],line_number)
except RuntimeError as err:
raise RuntimeError(str(err)+' in line ' + str(self.__line_number))
else:
# branch on original syntax 'IF cond THEN lineno [ELSE lineno]'
# in this syntax the then or else code block is not a legal basic statement
# so recursive processing can't be used
return flow
elif token.category == token.COLON:
# Found a COLON, process tokens found to this point
linetokenindex += self.__tokenindex
self.__tokenindex = 0
# Assign the first token
self.__token = self.__tokenlist[self.__tokenindex]
flow = self.__stmt()
if flow:
return flow
linetokenindex += 1
self.__tokenlist = []
elif token.category == token.ELSE and self.__tokenlist[0].category != token.OPEN:
# if we find an ELSE and we are not processing an OPEN statement, we must
# be in a recursive call and be processing a THEN block
# since we're processing the THEN block we are done if we hit an ELSE
break
else:
self.__tokenlist.append(token)
# reached end of statement, process tokens collected since last COLON (or from start if no COLONs)
linetokenindex += self.__tokenindex
self.__tokenindex = 0
# Assign the first token
self.__token = self.__tokenlist[self.__tokenindex]
return self.__stmt()
def __advance(self):
"""Advances to the next token
"""
# Move to the next token
self.__tokenindex += 1
# Acquire the next token if there any left
if not self.__tokenindex >= len(self.__tokenlist):
self.__token = self.__tokenlist[self.__tokenindex]
def __consume(self, expected_category):
"""Consumes a token from the list
"""
if self.__token.category == expected_category:
self.__advance()
else:
raise RuntimeError('Expecting ' + Token.catnames[expected_category] +
' in line ' + str(self.__line_number))
def __stmt(self):
"""Parses a program statement
:return: The FlowSignal to indicate to the program
how to branch if necessary, None otherwise
"""
if self.__token.category in [Token.FOR, Token.IF, Token.NEXT,
Token.ON]:
return self.__compoundstmt()
else:
return self.__simplestmt()
def __simplestmt(self):
"""Parses a non-compound program statement
:return: The FlowSignal to indicate to the program
how to branch if necessary, None otherwise
"""
if self.__token.category == Token.NAME:
self.__assignmentstmt()
return None
elif self.__token.category == Token.PRINT:
self.__printstmt()
return None
elif self.__token.category == Token.LET:
self.__letstmt()
return None
elif self.__token.category == Token.GOTO:
return self.__gotostmt()
elif self.__token.category == Token.GOSUB:
return self.__gosubstmt()
elif self.__token.category == Token.RETURN:
return self.__returnstmt()
elif self.__token.category == Token.STOP:
return self.__stopstmt()
elif self.__token.category == Token.INPUT:
self.__inputstmt()
return None
elif self.__token.category == Token.DIM:
self.__dimstmt()
return None
elif self.__token.category == Token.RANDOMIZE:
self.__randomizestmt()
return None
elif self.__token.category == Token.DATA:
self.__datastmt()
return None
elif self.__token.category == Token.READ:
self.__readstmt()
return None
elif self.__token.category == Token.RESTORE:
self.__restorestmt()
return None
elif self.__token.category == Token.OPEN:
return self.__openstmt()
elif self.__token.category == Token.CLOSE:
self.__closestmt()
return None
elif self.__token.category == Token.FSEEK:
self.__fseekstmt()
return None
else:
# Ignore comments, but raise an error
# for anything else
if self.__token.category != Token.REM:
raise RuntimeError('Expecting program statement in line '
+ str(self.__line_number))
def __printstmt(self):
"""Parses a PRINT statement, causing
the value that is on top of the
operand stack to be printed on
the screen.
"""
self.__advance() # Advance past PRINT token
fileIO = False
if self.__token.category == Token.HASH:
fileIO = True
# Process the # keyword
self.__consume(Token.HASH)
# Acquire the file number
self.__expr()
filenum = self.__operand_stack.pop()
if self.__file_handles.get(filenum) == None:
raise RuntimeError("PRINT: file #"+str(filenum)+" not opened in line " + str(self.__line_number))
# Process the comma
if self.__tokenindex < len(self.__tokenlist) and self.__token.category != Token.COLON:
self.__consume(Token.COMMA)
# Check there are items to print
if not self.__tokenindex >= len(self.__tokenlist):
prntTab = (self.__token.category == Token.TAB)
self.__logexpr()
if prntTab:
if self.__prnt_column >= len(self.__operand_stack[-1]):
if fileIO:
self.__file_handles[filenum].write("\n")
else:
print()
self.__prnt_column = 0
current_pr_column = len(self.__operand_stack[-1]) - self.__prnt_column
self.__prnt_column = len(self.__operand_stack.pop()) - 1
if current_pr_column > 1:
if fileIO:
self.__file_handles[filenum].write(" "*(current_pr_column-1))
else:
print(" "*(current_pr_column-1), end="")
else:
self.__prnt_column += len(str(self.__operand_stack[-1]))
if fileIO:
self.__file_handles[filenum].write('%s' %(self.__operand_stack.pop()))
else:
print(self.__operand_stack.pop(), end='')
while self.__token.category == Token.SEMICOLON:
if self.__tokenindex == len(self.__tokenlist) - 1:
# If a semicolon ends this line, don't print
# a newline.. a-la ms-basic
self.__advance()
return
self.__advance()
prntTab = (self.__token.category == Token.TAB)
self.__logexpr()
if prntTab:
if self.__prnt_column >= len(self.__operand_stack[-1]):
if fileIO:
self.__file_handles[filenum].write("\n")
else:
print()
self.__prnt_column = 0
current_pr_column = len(self.__operand_stack[-1]) - self.__prnt_column
if fileIO:
self.__file_handles[filenum].write(" "*(current_pr_column-1))
else:
print(" "*(current_pr_column-1), end="")
self.__prnt_column = len(self.__operand_stack.pop()) - 1
else:
self.__prnt_column += len(str(self.__operand_stack[-1]))
if fileIO:
self.__file_handles[filenum].write('%s' %(self.__operand_stack.pop()))
else:
print(self.__operand_stack.pop(), end='')
# Final newline
if fileIO:
self.__file_handles[filenum].write("\n")
else:
print()
self.__prnt_column = 0
def __letstmt(self):
"""Parses a LET statement,
consuming the LET keyword.
"""
self.__advance() # Advance past the LET token
self.__assignmentstmt()
def __gotostmt(self):
"""Parses a GOTO statement
:return: A FlowSignal containing the target line number
of the GOTO
"""
self.__advance() # Advance past GOTO token
self.__expr()
# Set up and return the flow signal
return FlowSignal(ftarget=self.__operand_stack.pop())
def __gosubstmt(self):
"""Parses a GOSUB statement
:return: A FlowSignal containing the first line number
of the subroutine
"""
self.__advance() # Advance past GOSUB token
self.__expr()
# Set up and return the flow signal
return FlowSignal(ftarget=self.__operand_stack.pop(),
ftype=FlowSignal.GOSUB)
def __returnstmt(self):
"""Parses a RETURN statement"""
self.__advance() # Advance past RETURN token
# Set up and return the flow signal
return FlowSignal(ftype=FlowSignal.RETURN)
def __stopstmt(self):
"""Parses a STOP statement"""
self.__advance() # Advance past STOP token
for handles in self.__file_handles:
self.__file_handles[handles].close()
self.__file_handles.clear()
return FlowSignal(ftype=FlowSignal.STOP)
def __assignmentstmt(self):
"""Parses an assignment statement,
placing the corresponding
variable and its value in the symbol
table.
"""
left = self.__token.lexeme # Save lexeme of
# the current token
self.__advance()
if self.__token.category == Token.LEFTPAREN:
# We are assigning to an array
self.__arrayassignmentstmt(left)
else:
# We are assigning to a simple variable
self.__consume(Token.ASSIGNOP)
self.__logexpr()
# Check that we are using the right variable name format
right = self.__operand_stack.pop()
if left.endswith('$') and not isinstance(right, str):
raise SyntaxError('Syntax error: Attempt to assign non string to string variable' +
' in line ' + str(self.__line_number))
elif not left.endswith('$') and isinstance(right, str):
raise SyntaxError('Syntax error: Attempt to assign string to numeric variable' +
' in line ' + str(self.__line_number))
self.__symbol_table[left] = right
def __dimstmt(self):
"""Parses DIM statement and creates a symbol
table entry for an array of the specified
dimensions.
"""
self.__advance() # Advance past DIM keyword
# MSBASIC: allow dims of multiple arrays delimited by commas
while True:
# Extract the array name, append a suffix so
# that we can distinguish from simple variables
# in the symbol table
name = self.__token.lexeme + '_array'
self.__advance() # Advance past array name
self.__consume(Token.LEFTPAREN)
# Extract the dimensions
dimensions = []
if not self.__tokenindex >= len(self.__tokenlist):
self.__expr()
dimensions.append(self.__operand_stack.pop())
while self.__token.category == Token.COMMA:
self.__advance() # Advance past comma
self.__expr()
dimensions.append(self.__operand_stack.pop())
self.__consume(Token.RIGHTPAREN)
if len(dimensions) > 3:
raise SyntaxError(
'Maximum number of array dimensions is three '
+ 'in line '
+ str(self.__line_number)
)
# Ensure array is initialised with correct values
# depending upon type
if name.endswith('$_array'):
self.__symbol_table[name] = BASICArray(dimensions, 'str')
else:
self.__symbol_table[name] = BASICArray(dimensions, 'num')
if self.__tokenindex == len(self.__tokenlist):
# We have parsed the last token here...
return
else:
self.__consume(Token.COMMA)
def __arrayassignmentstmt(self, name):
"""Parses an assignment to an array variable
:param name: Array name
"""
self.__consume(Token.LEFTPAREN)
# Capture the index variables
# Extract the dimensions
indexvars = []
if not self.__tokenindex >= len(self.__tokenlist):
self.__expr()
indexvars.append(self.__operand_stack.pop())
while self.__token.category == Token.COMMA:
self.__advance() # Advance past comma
self.__expr()
indexvars.append(self.__operand_stack.pop())
try:
BASICarray = self.__symbol_table[name + '_array']
except KeyError:
raise KeyError('Array could not be found in line ' +
str(self.__line_number))
if BASICarray.dims != len(indexvars):
raise IndexError('Incorrect number of indices applied to array ' +
'in line ' + str(self.__line_number))
self.__consume(Token.RIGHTPAREN)
self.__consume(Token.ASSIGNOP)
self.__logexpr()
# Check that we are using the right variable name format
right = self.__operand_stack.pop()
if name.endswith('$') and not isinstance(right, str):
raise SyntaxError('Attempt to assign non string to string array' +
' in line ' + str(self.__line_number))
elif not name.endswith('$') and isinstance(right, str):
raise SyntaxError('Attempt to assign string to numeric array' +
' in line ' + str(self.__line_number))
# Assign to the specified array index
try:
if len(indexvars) == 1:
BASICarray.data[indexvars[0]] = right
elif len(indexvars) == 2:
BASICarray.data[indexvars[0]][indexvars[1]] = right
elif len(indexvars) == 3:
BASICarray.data[indexvars[0]][indexvars[1]][indexvars[2]] = right
except IndexError:
raise IndexError('Array index out of range in line ' +
str(self.__line_number))
def __openstmt(self):
"""Parses an open statement, opens the indicated file and
places the file handle into handle table
"""
self.__advance() # Advance past OPEN token
# Acquire the filename
self.__logexpr()
filename = self.__operand_stack.pop()
# Process the FOR keyword
self.__consume(Token.FOR)
if self.__token.category == Token.INPUT:
accessMode = "r"
elif self.__token.category == Token.APPEND:
accessMode = "r+"
elif self.__token.category == Token.OUTPUT:
accessMode = "w+"
else:
raise SyntaxError('Invalid Open access mode in line ' + str(self.__line_number))
self.__advance() # Advance past access type
if self.__token.lexeme != "AS":
raise SyntaxError('Expecting AS in line ' + str(self.__line_number))
self.__advance() # Advance past AS keyword
# Process the # keyword
self.__consume(Token.HASH)
# Acquire the file number
self.__expr()
filenum = self.__operand_stack.pop()
branchOnError = False
if self.__token.category == Token.ELSE:
branchOnError = True
self.__advance() # Advance past ELSE
if self.__token.category == Token.GOTO:
self.__advance() # Advance past optional GOTO
self.__expr()
if self.__file_handles.get(filenum) != None:
if branchOnError:
return FlowSignal(ftarget=self.__operand_stack.pop())
else:
raise RuntimeError("File #",filenum," already opened in line " + str(self.__line_number))
try:
self.__file_handles[filenum] = open(filename,accessMode)
except:
if branchOnError:
return FlowSignal(ftarget=self.__operand_stack.pop())
else:
raise RuntimeError('File '+filename+' could not be opened in line ' + str(self.__line_number))
if accessMode == "r+":
self.__file_handles[filenum].seek(0)
filelen = 0
for lines in self.__file_handles[filenum]:
filelen += len(lines)+1
self.__file_handles[filenum].seek(filelen)
return None
def __closestmt(self):
"""Parses a close, closes the file and removes
the file handle from the handle table
"""
self.__advance() # Advance past CLOSE token
# Process the # keyword
self.__consume(Token.HASH)
# Acquire the file number
self.__expr()
filenum = self.__operand_stack.pop()
if self.__file_handles.get(filenum) == None:
raise RuntimeError("CLOSE: file #"+str(filenum)+" not opened in line " + str(self.__line_number))
self.__file_handles[filenum].close()
self.__file_handles.pop(filenum)
def __fseekstmt(self):
"""Parses an fseek statement, seeks the indicated file position
"""
self.__advance() # Advance past FSEEK token
# Process the # keyword
self.__consume(Token.HASH)
# Acquire the file number
self.__expr()
filenum = self.__operand_stack.pop()
if self.__file_handles.get(filenum) == None:
raise RuntimeError("FSEEK: file #"+str(filenum)+" not opened in line " + str(self.__line_number))
# Process the comma
self.__consume(Token.COMMA)
# Acquire the file position
self.__expr()
self.__file_handles[filenum].seek(self.__operand_stack.pop())
def __inputstmt(self):
"""Parses an input statement, extracts the input
from the user and places the values into the
symbol table
"""
self.__advance() # Advance past INPUT token
fileIO = False
if self.__token.category == Token.HASH:
fileIO = True
# Process the # keyword
self.__consume(Token.HASH)
# Acquire the file number
self.__expr()
filenum = self.__operand_stack.pop()
if self.__file_handles.get(filenum) == None:
raise RuntimeError("INPUT: file #"+str(filenum)+" not opened in line " + str(self.__line_number))
# Process the comma
self.__consume(Token.COMMA)
prompt = '? '
if self.__token.category == Token.STRING:
if fileIO:
raise SyntaxError('Input prompt specified for file I/O ' +
'in line ' + str(self.__line_number))
# Acquire the input prompt
self.__logexpr()
prompt = self.__operand_stack.pop()
self.__consume(Token.SEMICOLON)
# Acquire the comma separated input variables
variables = []
if not self.__tokenindex >= len(self.__tokenlist):
if self.__token.category != Token.NAME:
raise ValueError('Expecting NAME in INPUT statement ' +
'in line ' + str(self.__line_number))
variables.append(self.__token.lexeme)
self.__advance() # Advance past variable
while self.__token.category == Token.COMMA:
self.__advance() # Advance past comma
variables.append(self.__token.lexeme)
self.__advance() # Advance past variable
valid_input = False
while not valid_input:
# Gather input from the user into the variables
if fileIO:
inputvals = ((self.__file_handles[filenum].readline().replace("\n","")).replace("\r","")).split(',', (len(variables)-1))
valid_input = True
else:
inputvals = input(prompt).split(',', (len(variables)-1))
for variable in variables:
left = variable
try:
right = inputvals.pop(0)
if left.endswith('$'):
self.__symbol_table[left] = str(right)
valid_input = True
elif not left.endswith('$'):
try:
if '.' in right:
self.__symbol_table[left] = float(right)
else:
self.__symbol_table[left] = int(right)
valid_input = True
except ValueError:
if not fileIO:
valid_input = False
print('Non-numeric input provided to a numeric variable - redo from start')
break
except IndexError:
# No more input to process
if not fileIO:
valid_input = False
print('Not enough values input - redo from start')
break
def __restorestmt(self):
self.__advance() # Advance past RESTORE token
# Acquire the line number
self.__expr()
self.__data_values.clear()
self.__data.restore(self.__operand_stack.pop())
def __datastmt(self):
"""Parses a DATA statement"""
def __readstmt(self):
"""Parses a READ statement."""
self.__advance() # Advance past READ token
# Acquire the comma separated input variables
variables = []
if not self.__tokenindex >= len(self.__tokenlist):
variables.append(self.__token.lexeme)
self.__advance() # Advance past variable
while self.__token.category == Token.COMMA:
self.__advance() # Advance past comma
variables.append(self.__token.lexeme)
self.__advance() # Advance past variable
# Gather input from the DATA statement into the variables
for variable in variables:
if len(self.__data_values) < 1:
self.__data_values = self.__data.readData(self.__line_number)
left = variable
right = self.__data_values.pop(0)
if left.endswith('$'):
# Python inserts quotes around input data
if isinstance(right, int):
raise ValueError('Non-string input provided to a string variable ' +
'in line ' + str(self.__line_number))
else:
self.__symbol_table[left] = right
elif not left.endswith('$'):
try:
numeric = float(right)
if int(numeric) == numeric:
numeric = int(numeric)
self.__symbol_table[left] = numeric
except ValueError:
raise ValueError('Non-numeric input provided to a numeric variable ' +
'in line ' + str(self.__line_number))
def __expr(self):
"""Parses a numerical expression consisting
of two terms being added or subtracted,
leaving the result on the operand stack.
"""
self.__term() # Pushes value of left term
# onto top of stack
while self.__token.category in [Token.PLUS, Token.MINUS]:
savedcategory = self.__token.category
self.__advance()
self.__term() # Pushes value of right term
# onto top of stack
rightoperand = self.__operand_stack.pop()
leftoperand = self.__operand_stack.pop()
if savedcategory == Token.PLUS:
self.__operand_stack.append(leftoperand + rightoperand)
else:
self.__operand_stack.append(leftoperand - rightoperand)
def __term(self):
"""Parses a numerical expression consisting
of two factors being multiplied together,
leaving the result on the operand stack.
"""
self.__sign = 1 # Initialise sign to keep track of unary
# minuses
self.__factor() # Leaves value of term on top of stack
while self.__token.category in [Token.TIMES, Token.DIVIDE, Token.MODULO]:
savedcategory = self.__token.category
self.__advance()
self.__sign = 1 # Initialise sign
self.__factor() # Leaves value of term on top of stack
rightoperand = self.__operand_stack.pop()
leftoperand = self.__operand_stack.pop()
if savedcategory == Token.TIMES:
self.__operand_stack.append(leftoperand * rightoperand)
elif savedcategory == Token.DIVIDE:
self.__operand_stack.append(leftoperand / rightoperand)
else:
self.__operand_stack.append(leftoperand % rightoperand)
def __factor(self):
"""Evaluates a numerical expression
and leaves its value on top of the
operand stack.
"""
if self.__token.category == Token.PLUS:
self.__advance()
self.__factor()
elif self.__token.category == Token.MINUS:
self.__sign = -self.__sign
self.__advance()
self.__factor()
elif self.__token.category == Token.UNSIGNEDINT:
self.__operand_stack.append(self.__sign*int(self.__token.lexeme))
self.__advance()
elif self.__token.category == Token.UNSIGNEDFLOAT:
self.__operand_stack.append(self.__sign*float(self.__token.lexeme))
self.__advance()
elif self.__token.category == Token.STRING:
self.__operand_stack.append(self.__token.lexeme)
self.__advance()
elif (
self.__token.category == Token.NAME
and self.__token.category not in Token.functions
):
# Check if this is a simple or array variable
# MSBASIC Allows simple and complex variables to have the
# same id. This is probably a bad idea, but it's used in
# some old example programs. So check if next token is parens
if (
(self.__token.lexeme + "_array") in self.__symbol_table
and self.__tokenindex < len(self.__tokenlist) - 1
and self.__tokenlist[self.__tokenindex + 1].category == Token.LEFTPAREN
):
# Capture the current lexeme
arrayname = self.__token.lexeme + "_array"
# Array must be processed
# Capture the index variables
self.__advance() # Advance past the array name
try:
self.__consume(Token.LEFTPAREN)
indexvars = []
if not self.__tokenindex >= len(self.__tokenlist):
self.__expr()
indexvars.append(self.__operand_stack.pop())
while self.__token.category == Token.COMMA:
self.__advance() # Advance past comma
self.__expr()
indexvars.append(self.__operand_stack.pop())
BASICarray = self.__symbol_table[arrayname]
arrayval = self.__get_array_val(BASICarray, indexvars)
if arrayval != None:
self.__operand_stack.append(self.__sign * arrayval)
else:
raise IndexError(
"Empty array value returned in line "
+ str(self.__line_number)
)
except RuntimeError:
raise RuntimeError(