-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse.py
1140 lines (969 loc) · 40.7 KB
/
parse.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
"""Parse the definition file and build the logic network.
Used in the Logic Simulator project to analyse the syntactic and semantic
correctness of the symbols received from the scanner and then builds the
logic network.
Classes
-------
Parser - parses the definition file and builds the logic network.
"""
class Parser:
"""Parse the definition file and build the logic network.
The parser deals with error handling. It analyses the syntactic and
semantic correctness of the symbols it receives from the scanner, and
then builds the logic network. If there are errors in the definition file,
the parser detects this and tries to recover from it, giving helpful
error messages.
Parameters
----------
names: instance of the names.Names() class.
devices: instance of the devices.Devices() class.
network: instance of the network.Network() class.
monitors: instance of the monitors.Monitors() class.
scanner: instance of the scanner.Scanner() class.
Public methods
--------------
parse_network(self): Parses the circuit definition file. Returns True
only if no syntax or semantic errors are found,
otherwise returns False.
"""
def __init__(self, names, devices, network, monitors, scanner):
"""Initialise constants."""
self.names = names
self.devices = devices
self.network = network
self.monitors = monitors
self.scanner = scanner
self.error_count = 0
self.end_of_file = False # if the end of file is reached
self.symbol = None
self.unclosed_comment = False # if an unclosed comment is detected
self.error_message_list = [] # list of terminal output to be passed
# to GUI
def parse_network(self):
"""Parse the circuit definition file."""
devices_done = False
connections_done = False
monitors_done = False
self._set_next()
if self.symbol.type == self.scanner.EOF and not \
self.unclosed_comment:
# this is when we get an empty file - we would like to show
# an error
self._error(_("Empty definition file was loaded."),
[self.scanner.EOF])
final_err = (
f"\n" + _("Completely parsed the definition file.") +
f" {self.error_count} "
+ _("error(s) found in total.")
)
print(final_err)
self.error_message_list.append(final_err)
return False
while True:
if self.symbol.id == self.scanner.DEVICES_ID:
if devices_done:
self._error(
_("Multiple device lists found."),
[
self.scanner.CONNECTIONS_ID,
self.scanner.MONITOR_ID,
self.scanner.EOF
],
)
else:
self._parse_devices_list()
devices_done = True
elif self.symbol.id == self.scanner.CONNECTIONS_ID:
if connections_done:
self._error(
_("Multiple connections lists found."),
[
self.scanner.MONITOR_ID,
self.scanner.EOF
],
)
else:
if devices_done:
self._parse_connections_list(self.error_count)
connections_done = True
else:
self._error(
_("can't parse connections if not done devices"),
[self.scanner.DEVICES_ID],
)
if self._is_eof():
break
elif self.symbol.id == self.scanner.MONITOR_ID:
if monitors_done:
self._error(
_("Multiple monitors lists found."),
[
self.scanner.CONNECTIONS_ID,
self.scanner.EOF
],
)
else:
if devices_done:
self._parse_monitors_list(self.error_count)
monitors_done = True
else:
self._error(
_("can't parse monitors if not done devices"),
[self.scanner.DEVICES_ID],
)
if self._is_eof():
break
elif self._is_eof():
break
else:
self._error(
_("not DEVICES, CONNECTIONS, MONITORS nor EOF"),
[
self.scanner.DEVICES_ID,
self.scanner.CONNECTIONS_ID,
self.scanner.MONITOR_ID,
self.scanner.EOF,
],
)
if self._is_eof():
break
final_msg = (_("Completely parsed the definition file.") +
f" {self.error_count} " + _("error(s) found in total."))
print(final_msg)
self.error_message_list.append(final_msg)
if self.error_count == 0: # syn + sem errors = 0
return True
else:
return False
def _parse_devices_list(self):
"""Parse list of devices."""
self._set_next()
if self.unclosed_comment:
return
while True:
if self.symbol.id != self.scanner.OPEN_SQUARE:
self._error(
_("expected") + " [", [
self.scanner.CONNECTIONS_ID, self.scanner.MONITOR_ID])
break
self._set_next()
if self.unclosed_comment:
break
parsing_devices = True
while parsing_devices:
if self.end_of_file:
break
if self.symbol.id == self.scanner.CLOSE_SQUARE:
# if empty DEVICES list
break
missing_semicolon = self._parse_device(self.error_count)
if missing_semicolon:
if self.end_of_file:
break
# print warning about error recovery strategy
# if a semicolon is missing it will skip the next device
# entirely to find the next 'outer' semi-colon to
# continue parsing with
warn = _("missed semicolon at end of device definition, ")\
+ _("will end up skipping the device after")
print(warn)
self.error_message_list.append(warn)
if self.symbol.id == self.scanner.OPEN_CURLY:
parsing_devices = True
elif self.symbol.id == self.scanner.CLOSE_SQUARE:
parsing_devices = False
elif (
self.symbol.id == self.scanner.MONITOR_ID
or self.symbol.id == self.scanner.CONNECTIONS_ID
):
# error skips to end of devices
break
elif self.symbol.type == self.scanner.INVALID_CHAR:
# unknown character encountered
self._error(
_("invalid character encountered"), [
self.scanner.OPEN_CURLY])
elif self.symbol.type == self.scanner.EOF:
# reached end of file through error recovery in inner loop
break
else:
# problem is not getting { or ] - i.e. device is missing
# opening curly bracket perhaps, try and look for { or ],
# if not those then look for connections/monitors
# if not those then EOF
self._get_symbol_string()
self._error(_("Invalid input to a DEVICES list. Devices ")
+ _(
"should start with '{', or the list should ")
+ _("end with ']' "),
[self.scanner.OPEN_CURLY,
self.scanner.CLOSE_SQUARE,
self.scanner.CONNECTIONS_ID,
self.scanner.MONITOR_ID,
self.scanner.EOF])
if self.symbol.id == self.scanner.CLOSE_SQUARE:
break
elif self.symbol.id == self.scanner.OPEN_CURLY:
continue
elif self.end_of_file:
return
elif self.symbol.id == self.scanner.CONNECTIONS_ID or \
self.symbol.id == self.scanner.MONITOR_ID:
break
if (
self.symbol.id == self.scanner.MONITOR_ID
or self.symbol.id == self.scanner.CONNECTIONS_ID
):
break
# no longer parsing devices
if (self.symbol.id != self.scanner.CLOSE_SQUARE and
not self._is_eof()):
self._error(
_("expected") + " ]",
[self.scanner.CONNECTIONS_ID, self.scanner.MONITOR_ID])
break
self._set_next()
if self.unclosed_comment:
break
if self.symbol.id != self.scanner.SEMICOLON:
self._error(
_("expected") + " ;", [
self.scanner.MONITOR_ID, self.scanner.CONNECTIONS_ID])
break
if self.error_count != 0:
break
print(_("Successfully parsed the DEVICES list! \n"))
self._set_next()
if self.unclosed_comment:
return
return True # no meaning to boolean
if self.end_of_file:
pass
elif (
self.symbol.id != self.scanner.MONITOR_ID
and self.symbol.id != self.scanner.CONNECTIONS_ID
):
self._set_next()
if self.unclosed_comment:
return
# print("Did not manage to parse the DEVICES list perfectly.")
if self.error_count != 0:
err = f"{self.error_count} " + _("error(s) found ") \
+ _("when parsing the DEVICES list \n")
print(err)
self.error_message_list.append(err)
return False
def _parse_device(self, previous_errors):
"""Parse a single device."""
# print("Parsing a single device.")
missing_device_semicolon = False
device_qual_symbol = None # initialising for semantic reporting
device_kind_symbol = None # initialising for semantic reporting
device_name = None
while True:
if self.symbol.id != self.scanner.OPEN_CURLY:
self._error(
_("expected") + " {", [
self.scanner.OPEN_CURLY, self.scanner.CLOSE_CURLY])
break
self._set_next()
if self.unclosed_comment:
return True
missing_semicolon, device_name, device_name_symbol = \
self._parse_device_id()
if missing_semicolon:
if self.end_of_file:
return True
# missed semicolon causes entire device to be skipped
break
(
missing_semicolon,
device_kind_string,
device_kind_id,
device_kind_symbol
) = self._parse_device_kind()
if missing_semicolon:
if self.end_of_file:
return True
# missed semicolon causes entire device to be skipped
break
if self.symbol.id == self.scanner.QUAL_KEYWORD_ID:
missing_semicolon, device_qual, device_qual_symbol = \
self._parse_device_qual()
if missing_semicolon:
if self.end_of_file:
return True
# missed semicolon causes entire device to be skipped
break
else:
device_qual = None
if self.symbol.id != self.scanner.CLOSE_CURLY:
self._error(
_("expected") + " }", [
self.scanner.OPEN_CURLY, self.scanner.CLOSE_CURLY])
break
self._set_next()
if self.unclosed_comment:
return True
if self.symbol.id != self.scanner.SEMICOLON:
self._error(
_("expected") + " ;",
[
self.scanner.OPEN_CURLY,
self.scanner.CONNECTIONS_ID,
self.scanner.MONITOR_ID,
],
)
# if MONITORS or CONNECTIONS, stop parsing devices
missing_device_semicolon = True
break
# if we get here we have done a whole device
# for each device there are no new syntax errors
if self.error_count - previous_errors == 0:
error_type = self.devices.make_device(
self.names.query(device_name), device_kind_id, device_qual
)
# if there is a semantic error
if error_type != self.devices.NO_ERROR:
if error_type == self.devices.NO_QUALIFIER:
self._semantic_error(
f"{device_kind_string} " + _(
"qualifier not present."),
device_qual_symbol
)
elif error_type == self.devices.INVALID_QUALIFIER:
self._semantic_error(
f"{device_kind_string} " + _(
"qualifier is invalid."),
device_kind_symbol
)
elif error_type == self.devices.QUALIFIER_PRESENT:
self._semantic_error(
_(
"Qualifier provided for ") +
f"{device_kind_string} "
+ _("when there should be none."),
device_qual_symbol
)
elif error_type == self.devices.BAD_DEVICE:
self._semantic_error(
_("Device kind") + f" {device_kind_string} "
+ ("not recognised."), device_kind_symbol
)
elif error_type == self.devices.DEVICE_PRESENT:
self._semantic_error(
_("Device ") + f"{device_name} " + _(
"already present."),
device_name_symbol
)
self._set_next()
if self.unclosed_comment:
return True
break
else:
# syntactic errors found when parsing the device
self._set_next()
if self.unclosed_comment:
return True
break
return missing_device_semicolon
def _parse_device_id(self):
"""Parse a device id."""
missing_semicolon = False
device_name = None
symbol_for_device_name = None
while True:
if self.symbol.id != self.scanner.ID_KEYWORD_ID:
self._error(
_("expected id keyword here"), [
self.scanner.KIND_KEYWORD_ID])
break
self._set_next()
if self.unclosed_comment:
return True, device_name, symbol_for_device_name
if self.symbol.id != self.scanner.COLON:
self._error(_("expected") + " :",
[self.scanner.KIND_KEYWORD_ID])
break
self._set_next()
if self.unclosed_comment:
return True, device_name, symbol_for_device_name
if self.symbol.type != self.scanner.NAME:
# name provided is syntactically incorrect for a name
if self.symbol.type == self.scanner.KEYWORD:
self._error(
_("Invalid name provided - ") +
_("a keyword cannot be used as a device name"), [
self.scanner.KIND_KEYWORD_ID])
break
else:
self._error(
_("Invalid name provided - ") +
_("a device name should be alphanumeric"), [
self.scanner.KIND_KEYWORD_ID])
break
else:
device_name = self._get_symbol_string()
symbol_for_device_name = self.symbol
self._set_next()
if self.unclosed_comment:
return True, device_name, symbol_for_device_name
if self.symbol.id != self.scanner.SEMICOLON:
self._error(_("Missing semicolon"), [self.scanner.OPEN_CURLY])
missing_semicolon = True
break
self._set_next()
if self.unclosed_comment:
return True, device_name, symbol_for_device_name
break
self._get_symbol_string()
return missing_semicolon, device_name, symbol_for_device_name
def _parse_device_kind(self):
"""Parse a device kind."""
missing_semicolon = False
device_kind_string = None # may cause sem errors when creating devices
device_kind_id = None
symbol_for_device_kind = None
while True:
if self.symbol.id != self.scanner.KIND_KEYWORD_ID:
self._error(
_("expected") + " 'kind'",
[self.scanner.QUAL_KEYWORD_ID, self.scanner.CLOSE_CURLY],
)
break
# this causes small issue with error counting for unclosed
# comments - deal with if time
self._set_next()
if self.unclosed_comment:
return True, None, None, None
if self.symbol.id != self.scanner.COLON:
self._error(
_("expected") + " :",
[self.scanner.QUAL_KEYWORD_ID, self.scanner.CLOSE_CURLY],
)
break
self._set_next()
if self.unclosed_comment:
return True, None, None, None
if self.symbol.type != self.scanner.NAME:
self._error(
_("Device type must be alphanumeric"),
[self.scanner.QUAL_KEYWORD_ID, self.scanner.CLOSE_CURLY],
)
break
else:
device_kind_string = self._get_symbol_string()
[device_kind_id] = self.devices.names.lookup(
[device_kind_string])
symbol_for_device_kind = self.symbol
self._set_next()
if self.unclosed_comment:
return True, None, None, None
if self.symbol.id != self.scanner.SEMICOLON:
self._error(
_("Missing semicolon"),
[self.scanner.OPEN_CURLY, self.scanner.CLOSE_SQUARE],
)
missing_semicolon = True
break
self._set_next()
if self.unclosed_comment:
return True, None, None, None
break
return missing_semicolon, device_kind_string, device_kind_id, \
symbol_for_device_kind
def _parse_device_qual(self):
"""Parse a device qualifier."""
missing_semicolon = False
device_qual = None
symbol_for_device_qual = None
while True:
if self.symbol.id != self.scanner.QUAL_KEYWORD_ID:
self._error(
_("expected") + " 'qual",
[self.scanner.CLOSE_CURLY])
break
self._set_next()
if self.unclosed_comment:
return True, None, None
if self.symbol.id != self.scanner.COLON:
self._error(
_("expected") + " :",
[self.scanner.CLOSE_CURLY])
break
self._set_next()
if self.unclosed_comment:
return True, None, None
if self.symbol.type != self.scanner.NUMBER:
self._error(
_("unsupported qualifier input"), [
self.scanner.CLOSE_CURLY])
break
else:
device_qual = self.symbol.id
symbol_for_device_qual = self.symbol
self._set_next()
if self.unclosed_comment:
return True, None, None
if self.symbol.id != self.scanner.SEMICOLON:
self._error(
"Missing semicolon",
[self.scanner.OPEN_CURLY, self.scanner.CLOSE_SQUARE],
)
missing_semicolon = True
break
self._set_next()
if self.unclosed_comment:
return True, None, None
break
return missing_semicolon, device_qual, symbol_for_device_qual
def _parse_connections_list(self, previous_errors):
"""Parse list of connections."""
self._set_next()
while True:
if self.end_of_file:
break
if self.symbol.id != self.scanner.OPEN_SQUARE:
self._error(
_("expected") + " [", [
self.scanner.MONITOR_ID, self.scanner.EOF])
# it could also be end of file, connections not necessary
break
self._set_next()
parsing_connections = True
while parsing_connections:
if self.end_of_file:
break
if self.symbol.id == self.scanner.CLOSE_SQUARE:
parsing_connections = False
break
missing_semicolon = self._parse_connection(self.error_count)
if self.end_of_file:
# if there has been an error within
# parse_connection that causes us to reach the end of
# the file we can break here
break
if missing_semicolon:
if self.symbol.id == self.scanner.MONITOR_ID:
break
continue
if self.symbol.type == self.scanner.NAME:
parsing_connections = True
elif self.symbol.id == self.scanner.CLOSE_SQUARE:
parsing_connections = False
break
elif self.symbol.id == self.scanner.MONITOR_ID:
parsing_connections = False
break
elif self.symbol.type == self.scanner.INVALID_CHAR:
# unknown character encountered
self._error(
_("invalid character encountered"), [
self.scanner.NAME])
elif self.symbol.type == self.scanner.KEYWORD:
self._error(_("Cannot use a KEYWORD for a signal name"),
[self.scanner.NAME])
else:
self._error(_("Unknown Error"),
[self.scanner.NAME,
self.scanner.CLOSE_SQUARE,
self.scanner.MONITOR_ID,
self.scanner.EOF
])
if self.symbol.id == self.scanner.CLOSE_SQUARE:
break
elif self.symbol.type == self.scanner.NAME:
continue
elif self.end_of_file:
break
elif self.symbol.id == self.scanner.MONITOR_ID:
break
if self.end_of_file:
break
if self.symbol.id == self.scanner.MONITOR_ID:
break
# no longer parsing connections
if self.symbol.id != self.scanner.CLOSE_SQUARE:
self._error(
_("expected") + " ]", [
self.scanner.MONITOR_ID, self.scanner.EOF])
break
self._set_next()
if self.unclosed_comment:
return
if self.symbol.id != self.scanner.SEMICOLON:
self._error(
_("expected") + " ;", [
self.scanner.MONITOR_ID, self.scanner.EOF])
break
if self.error_count - previous_errors != 0:
break
print(_("Successfully parsed the CONNECTIONS list! \n"))
self._set_next()
if self.unclosed_comment:
return
return True
if self.end_of_file:
pass
elif self.symbol.id != self.scanner.MONITOR_ID:
self._set_next()
if self.unclosed_comment:
return
if self.error_count - previous_errors != 0:
err = (
f"{self.error_count - previous_errors} " +
_("error(s) found when parsing the ") +
_("CONNECTIONS list \n")
)
print(err)
self.error_message_list.append(err)
return False
def _parse_connection(self, previous_errors):
"""Parse a single connection."""
missing_signal_end_marker = False
symbol_store_right = {} # initialising for semantic error reporting
while True:
if self.symbol.id == self.scanner.SEMICOLON:
self._error(
_("No connection found before semicolon"),
[self.scanner.NAME])
break
(
missing_signal_end_marker,
leftOutputId,
leftPortId,
leftSignalName,
symbol_store_left
) = self._parse_signal()
if self.end_of_file:
break
if missing_signal_end_marker:
print(
_("missed colon in connection, ") +
_("will skip to next connection"))
break
self._set_next()
if self.unclosed_comment:
return True
(
missing_signal_end_marker,
rightOutputId,
rightPortId,
rightSignalName,
symbol_store_right
) = self._parse_signal()
if self.end_of_file:
break
if missing_signal_end_marker:
# if time, print a warning
break
if self.error_count - previous_errors == 0:
# no syntax errors found when parsing connection
error_type = self.network.make_connection(
leftOutputId, leftPortId, rightOutputId, rightPortId
)
if error_type != self.network.NO_ERROR:
if error_type == self.network.DEVICE_ABSENT:
self._semantic_error(
_("Either left or right device is absent"))
elif error_type == self.network.INPUT_CONNECTED:
self._semantic_error(
f"{rightSignalName} " +
_("input is already connected."),
symbol_store_right.get("device_id")
)
elif error_type == self.network.INPUT_TO_INPUT:
self._semantic_error(_("Both ports are inputs."))
elif error_type == self.network.PORT_ABSENT:
self._semantic_error(_("Right port id is invalid."),
symbol_store_right.get("port_id"))
elif error_type == self.network.OUTPUT_TO_OUTPUT:
self._semantic_error(_("Both ports are outputs."))
self._set_next()
if self.unclosed_comment:
return True
break
else:
# syntax errors found in connection
self._set_next()
if self.unclosed_comment:
return True
break
return missing_signal_end_marker
def _parse_signal(self):
"""Parse a signal name."""
missing_end_marker = False
signalName = ""
deviceId = None
portId = None
symbol_store = {}
while True:
if self.symbol.type != self.scanner.NAME:
self._error(
_("Expected an output name here"),
[self.scanner.NAME]
)
break
signalName += self.names.get_name_string(self.symbol.id)
deviceId = self.symbol.id
symbol_store["device_id"] = self.symbol
self._set_next()
if self.unclosed_comment:
return True, None, None, None, None
if self.symbol.id == self.scanner.DOT:
signalName += "."
self._set_next()
if self.unclosed_comment:
return True, None, None, None, None
if self.symbol.type != self.scanner.NAME:
self._error(
_("expected a port name here"), [
self.scanner.NAME])
break
signalName += self.names.get_name_string(self.symbol.id)
portId = self.symbol.id
symbol_store["port_id"] = self.symbol
self._set_next()
if self.unclosed_comment:
return True, None, None, None, None
if (
self.symbol.id != self.scanner.COLON
and self.symbol.id != self.scanner.SEMICOLON
):
missing_end_marker = True
self._error(
_("missing ':' or ';'"),
[
self.scanner.NAME,
self.scanner.CLOSE_SQUARE,
self.scanner.MONITOR_ID,
],
)
break
break
return missing_end_marker, deviceId, portId, signalName, symbol_store
def _parse_monitors_list(self, previous_errors):
"""Parse list of monitors."""
self._set_next()
while True:
if self.end_of_file:
break
if self.symbol.id != self.scanner.OPEN_SQUARE:
self._error(
_("expected") + " [", [
self.scanner.CONNECTIONS_ID, self.scanner.EOF])
break
self._set_next()
parsing_monitors = True
while parsing_monitors:
if self.end_of_file:
break
if self.symbol.id == self.scanner.CLOSE_SQUARE:
parsing_monitors = False
break
missing_semicolon = self._parse_monitor(self.error_count)
if self.end_of_file:
break
if missing_semicolon:
# if an error is found in _parse_monitor we should break
# here
if self.symbol.id == self.scanner.CONNECTIONS_ID:
break
continue
if self.symbol.type == self.scanner.NAME:
parsing_monitors = True
elif self.symbol.id == self.scanner.CLOSE_SQUARE:
parsing_monitors = False
elif self.symbol.id == self.scanner.CONNECTIONS_ID:
parsing_monitors = False
break
elif self.symbol.type == self.scanner.INVALID_CHAR:
# unknown character encountered
self._error(
_("invalid character encountered"), [
self.scanner.NAME])
else:
# To be tested further - kept now to prevent infinite loops
print(_("Unknown Error"))
self.error_count += 1
break
if self.end_of_file:
break
if self.symbol.id == self.scanner.CONNECTIONS_ID:
break
# no longer parsing monitors
if self.symbol.id != self.scanner.CLOSE_SQUARE:
self._error(
_("expected") + " ]", [
self.scanner.CONNECTIONS_ID, self.scanner.EOF])
break
self._set_next()
if self.unclosed_comment:
break # break instead of return to get error count
if self.symbol.id != self.scanner.SEMICOLON:
self._error(
_("expected") + " ;", [
self.scanner.EOF, self.scanner.CONNECTIONS_ID])
break
if self.error_count - previous_errors != 0:
break
print(_("Successfully parsed the MONITORS list! \n"))
self._set_next()
return True
if (
self.symbol.id != self.scanner.CONNECTIONS_ID
and self.symbol.id != self.scanner.EOF
):
self._set_next()
if self.error_count - previous_errors != 0:
err = (
f"{self.error_count - previous_errors} " +
_("error(s) found when parsing the ") +
_("MONITORS list \n")
)
print(err)
self.error_message_list.append(err)
return False
def _parse_monitor(self, previous_errors):
"""Parse a single monitor."""
missing_semicolon = False
symbol_store = {}
while True:
if self.symbol.id == self.scanner.SEMICOLON:
self._error(
_("No signal found before semicolon"), [
self.scanner.NAME])
break
(missing_semicolon, deviceId,
portId, signalName, symbol_store) = self._parse_signal()
if self.end_of_file:
break
if missing_semicolon:
# skip to next monitor
break
if self.error_count - previous_errors == 0:
# no syntax errors found when parsing monitor
error_type = self.monitors.make_monitor(deviceId, portId)
if error_type != self.monitors.NO_ERROR:
if error_type == self.network.DEVICE_ABSENT:
self._semantic_error(
_("Device you are trying to monitor is absent."),
symbol_store.get("device_id")
)
elif error_type == self.monitors.NOT_OUTPUT:
self._semantic_error(
f"{signalName} " +
_("is not an output."))
elif error_type == self.monitors.MONITOR_PRESENT: