[docs]classSemanticModel:def__init__(self,instructions:list,result_path:Path,output=None):assertall(isinstance(instruction,Instruction)forinstructionininstructions), \
"SemanticModel: error occurred in parsing: check instruction definitions in the configuration file."self.instructions=instructionsself.result_path=result_pathself.output=output
[docs]defbuild_reports(self,instruction_states):report_builder=self.make_report_builder()print_log(f"Generating {self.output['format']} reports...",include_datetime=True)result_path=report_builder.build(instruction_states,self.result_path)print_log(f"{self.output['format']} reports are generated.",include_datetime=True)returnresult_path
[docs]defrun_instructions(self)->list:instruction_states=[]forindex,instructioninenumerate(self.instructions):print_log(f"Instruction {index+1}/{len(self.instructions)} has started.",include_datetime=True)result=instruction.run(result_path=self.result_path)instruction_states.append(result)print_log(f"Instruction {index+1}/{len(self.instructions)} has finished.",include_datetime=True)returninstruction_states