mirror of
https://gitlab.com/manzerbredes/esds.git
synced 2025-04-06 01:56:27 +02:00
Improve platform parsing
This commit is contained in:
parent
be1966b40f
commit
75c2ce0991
2 changed files with 20 additions and 1 deletions
|
@ -47,6 +47,8 @@ class YAMLPlatformFile:
|
|||
self.default={
|
||||
"breakpoints": [],
|
||||
"breakpoints_every": None,
|
||||
"breakpoints_file": None,
|
||||
"breakpoints_callback": None,
|
||||
"debug": False,
|
||||
"interferences": True,
|
||||
"node_count": 0,
|
||||
|
@ -71,7 +73,9 @@ class YAMLPlatformFile:
|
|||
else:
|
||||
self.parsing_error("platform file has no interfaces section")
|
||||
|
||||
print(self.default)
|
||||
##### Sanity checks
|
||||
if None in self.default["implementations"]:
|
||||
self.parsing_error("Some nodes do not have assigned implementation")
|
||||
|
||||
def parsing_error(self,msg):
|
||||
raise Exception("Fail to parse platform file \""+self.file_path+"\": "+msg)
|
||||
|
@ -162,6 +166,17 @@ class YAMLPlatformFile:
|
|||
if not str(general["breakpoints_every"]).isnumeric():
|
||||
self.parsing_error("breakpoints_every should be a number")
|
||||
self.default["breakpoints_every"]=general["breakpoints_every"]
|
||||
if "breakpoints_callback" in general:
|
||||
cb=general["breakpoints_callback"]
|
||||
file=cb["file"]
|
||||
path, ext=os.path.splitext(file)
|
||||
if not os.path.exists(file):
|
||||
self.parsing_error("File "+file+ " not found")
|
||||
path, extension = os.path.splitext(file)
|
||||
if extension != ".py":
|
||||
self.parsing_error("File "+file+" must be a python file")
|
||||
self.default["breakpoints_file"]=cb["file"]
|
||||
self.default["breakpoints_callback"]=cb["callback"]
|
||||
if "debug" in general:
|
||||
if type(general["debug"]) != bool:
|
||||
self.parsing_error("debug should be on or off")
|
||||
|
|
|
@ -1,9 +1,13 @@
|
|||
general:
|
||||
breakpoints: []
|
||||
breakpoints_every: 0
|
||||
breakpoints_callback:
|
||||
file: "platform_test.py"
|
||||
callback: "callback"
|
||||
debug: off
|
||||
interferences: on
|
||||
|
||||
|
||||
nodes:
|
||||
count: 5
|
||||
implementations:
|
||||
|
|
Loading…
Add table
Reference in a new issue