Coverage for tsfpga/build_step_tcl_hook.py: 100%
11 statements
« prev ^ index » next coverage.py v7.8.0, created at 2025-04-02 20:51 +0000
« prev ^ index » next coverage.py v7.8.0, created at 2025-04-02 20:51 +0000
1# --------------------------------------------------------------------------------------------------
2# Copyright (c) Lukas Vik. All rights reserved.
3#
4# This file is part of the tsfpga project, a project platform for modern FPGA development.
5# https://tsfpga.com
6# https://github.com/tsfpga/tsfpga
7# --------------------------------------------------------------------------------------------------
9from pathlib import Path
12class BuildStepTclHook:
13 """
14 Represent a TCL file that shall be used as hook in one of the build steps.
15 """
17 def __init__(self, tcl_file: Path, hook_step: str) -> None:
18 """
19 Arguments:
20 tcl_file: Path to a TCL file.
21 hook_step: Name of a build step, e.g. ``STEPS.ROUTE_DESIGN.TCL.PRE``.
22 See
23 https://docs.xilinx.com/r/en-US/ug894-vivado-tcl-scripting/Defining-Tcl-Hook-Scripts
24 for a list of the available build steps in AMD Vivado.
25 """
26 self.tcl_file = tcl_file
27 self.hook_step = hook_step
29 @property
30 def step_is_synth(self) -> bool:
31 """
32 True if the build step is in synthesis. False otherwise.
33 """
34 return "synth" in self.hook_step.lower()
36 def __str__(self) -> str:
37 result = str(self.__class__.__name__) + ":"
38 return result + f"{self.hook_step}:{self.tcl_file}"