File size: 9,654 Bytes
cb65407 | 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 | #!/usr/bin/env python
###############################################################################
# Copyright (c) 2013 Potential Ventures Ltd
# Copyright (c) 2013 SolarFlare Communications Inc
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of Potential Ventures Ltd,
# SolarFlare Communications Inc nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL POTENTIAL VENTURES LTD BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
###############################################################################
"""
Module for querying the cocotb configuration
This module provides information in module global variables and through a
``main()`` function that is used in the cocotb-config script.
Global variables:
share_dir: str, path where the cocotb data is stored
makefiles_dir: str, path where the cocotb makefiles are installed
libs_dir: str, path where the cocotb interface libraries are located
"""
import argparse
import os
import sys
import textwrap
from pathlib import Path
import find_libpython
import cocotb
__all__ = ["share_dir", "makefiles_dir", "libs_dir"]
base_dir = Path(cocotb.__file__).parent.resolve()
share_dir = base_dir.joinpath("share").as_posix()
makefiles_dir = base_dir.joinpath("share").joinpath("makefiles").as_posix()
libs_dir = base_dir.joinpath("libs").as_posix()
def help_vars_text():
if "dev" in cocotb.__version__:
doclink = "https://docs.cocotb.org/en/latest/building.html"
else:
doclink = f"https://docs.cocotb.org/en/v{cocotb.__version__}/building.html"
# NOTE: make sure to keep "helpmsg" aligned with documentation/source/building.rst
# Also keep it at 80 chars.
helpmsg = textwrap.dedent(
"""\
The following variables are environment variables:
Cocotb
------
TOPLEVEL Instance in the hierarchy to use as the DUT
RANDOM_SEED Random seed, to recreate a previous test stimulus
COCOTB_ANSI_OUTPUT Force cocotb to print or not print in color
COCOTB_REDUCED_LOG_FMT Display log lines shorter
COCOTB_ATTACH Pause time value in seconds before the simulator start
COCOTB_ENABLE_PROFILING Performance analysis of the Python portion of cocotb
COCOTB_LOG_LEVEL Default logging level (default INFO)
COCOTB_RESOLVE_X How to resolve X, Z, U, W on integer conversion
MEMCHECK HTTP port to use for debugging Python memory usage
LIBPYTHON_LOC Absolute path to libpython
Regression Manager
------------------
COCOTB_PDB_ON_EXCEPTION Drop into the Python debugger (pdb) on exception
MODULE Modules to search for test functions (comma-separated)
TESTCASE Test function(s) to run (comma-separated list)
COCOTB_RESULTS_FILE File name for xUnit XML tests results
COVERAGE Report Python coverage (also HDL for some simulators)
GPI
---
GPI_EXTRA Extra libraries to load at runtime (comma-separated)
Scheduler
---------
COCOTB_SCHEDULER_DEBUG Enable additional output of coroutine scheduler
For details, see {}"""
).format(doclink)
return helpmsg
def lib_name(interface: str, simulator: str) -> str:
"""
Return the name of interface library for given interface (VPI/VHPI/FLI) and simulator.
"""
interface_name = interface.lower()
supported_interfaces = ["vpi", "vhpi", "fli"]
if interface_name not in supported_interfaces:
raise ValueError(
"Wrong interface used. Supported: " + ", ".join(supported_interfaces)
)
simulator_name = simulator.lower()
supported_sims = [
"icarus",
"questa",
"modelsim",
"ius",
"xcelium",
"vcs",
"ghdl",
"riviera",
"activehdl",
"cvc",
"nvc",
]
if simulator not in supported_sims:
raise ValueError(
"Wrong simulator name. Supported: " + ", ".join(supported_sims)
)
if simulator_name in ["questa", "cvc"]:
library_name = "modelsim"
elif simulator_name == "xcelium":
library_name = "ius"
elif simulator_name in ["riviera", "activehdl"]:
library_name = "aldec"
else:
library_name = simulator_name
if library_name == "icarus":
lib_ext = ""
elif os.name == "nt":
lib_ext = ".dll"
else:
lib_ext = ".so"
# check if compiled with msvc
if os.path.isfile(os.path.join(libs_dir, "cocotb.dll")):
lib_prefix = ""
else:
lib_prefix = "lib"
return lib_prefix + "cocotb" + interface_name + "_" + library_name + lib_ext
def lib_name_path(interface, simulator):
"""
Return the absolute path of interface library for given interface (VPI/VHPI/FLI) and simulator
"""
library_name_path = os.path.join(libs_dir, lib_name(interface, simulator))
return Path(library_name_path).as_posix()
def _findlibpython():
libpython_path = find_libpython.find_libpython()
if libpython_path is None:
sys.exit(1)
return Path(libpython_path).as_posix()
class PrintAction(argparse.Action):
def __init__(self, option_strings, dest, text=None, **kwargs):
super().__init__(option_strings, dest, nargs=0, **kwargs)
self.text = text
def __call__(self, parser, namespace, values, option_string=None):
print(self.text)
parser.exit()
class PrintFuncAction(argparse.Action):
def __init__(self, option_strings, dest, function=None, **kwargs):
super().__init__(option_strings, dest, **kwargs)
self.function = function
def __call__(self, parser, args, values, option_string=None):
try:
print(self.function(*values))
except ValueError as e:
parser.error(e)
parser.exit()
def get_parser():
prefix_dir = base_dir.parent.resolve().as_posix()
version = cocotb.__version__
python_bin = Path(sys.executable).as_posix()
parser = argparse.ArgumentParser(formatter_class=argparse.RawTextHelpFormatter)
parser.add_argument(
"--prefix",
help="echo the package-prefix of cocotb",
action=PrintAction,
text=prefix_dir,
)
parser.add_argument(
"--share",
help="echo the package-share of cocotb",
action=PrintAction,
text=share_dir,
)
parser.add_argument(
"--makefiles",
help="echo the package-makefiles of cocotb",
action=PrintAction,
text=makefiles_dir,
)
parser.add_argument(
"--python-bin",
help="echo the path to the Python binary cocotb is installed for",
action=PrintAction,
text=python_bin,
)
parser.add_argument(
"--help-vars",
help="show help about supported variables",
action=PrintAction,
text=help_vars_text(),
)
parser.add_argument(
"--libpython",
help="Print the absolute path to the libpython associated with the current Python installation",
nargs=0,
metavar=(),
action=PrintFuncAction,
function=_findlibpython,
)
parser.add_argument(
"--lib-dir",
help="Print the absolute path to the interface libraries location",
action=PrintAction,
text=libs_dir,
)
parser.add_argument(
"--lib-name",
help="Print the name of interface library for given interface (VPI/VHPI/FLI) and simulator",
nargs=2,
metavar=("INTERFACE", "SIMULATOR"),
action=PrintFuncAction,
function=lib_name,
)
parser.add_argument(
"--lib-name-path",
help="Print the absolute path of interface library for given interface (VPI/VHPI/FLI) and simulator",
nargs=2,
metavar=("INTERFACE", "SIMULATOR"),
action=PrintFuncAction,
function=lib_name_path,
)
parser.add_argument(
"-v",
"--version",
help="echo the version of cocotb",
action=PrintAction,
text=version,
)
return parser
def main():
parser = get_parser()
if len(sys.argv) == 1:
parser.print_help(sys.stderr)
sys.exit(1)
parser.parse_args()
if __name__ == "__main__":
main()
|