Skip to main content

Parser and converters for OSVVM-specific data models and report formats.

Project description

Sourcecode on GitHub Sourcecode License Documentation Documentation License
PyPI PyPI - Status PyPI - Python Version
GitHub Workflow - Build and Test Status Libraries.io status for latest release

Main Goals

This package provides OSVVM-specific data models and parsers. The data models can be used as-is or converted to generic data models of the pyEDAA data model family. This includes parsing OSVVM's *.pro-files and translating them to a pyEDAA.ProjectModel instance as well as reading OSVVM's reports in YAML format like test results, alerts or functional coverage.

Frameworks consuming these data models can build higher level features and services on top of these models, while using one parser that's aligned with OSVVM's data formats.

Data Models

Project Description via *.pro-Files

Features:

  • Parse OSVVM's *.pro files including complex TCL code structures like nested if-statements.
  • Emulate tool specific TCL variables: ::osvvm::ToolVendor, ::osvvm::ToolName ::osvvm::ToolNameVersion, ...
  • Convert the project description stored in one or more *.pro files to a pyEDAA.ProjectModel instance.

Basic Data Model:

  • VHDL source files are accumulated in VHDL libraries.
  • The order of source files is preserved in a library.
  • Test cases are accumulated in test suites.
  • Configuration changes are collected in a context.
    • When a new item is added to the model, certain default values or collected configuration values are used to create this new item.

Quick Example

from pyEDAA.OSVVM.TCL import OsvvmProFileProcessor

processor = OsvvmProFileProcessor()
processor.LoadProFile(Path("OSVVM/OSVVMLibraries/OsvvmLibraries.pro"))

for libraryName, lib in processor.Context.Libraries.items():
  for file in lib.Files:
    ...

for testsuiteName, ts in processor.Context.Testsuites.items():
  for tc in ts.Testcases.values():
    ...

Testsuite Summary Reports

[!NOTE]
TBD

Testcase Summary Reports

[!NOTE]
TBD

Alert and Log Reports

[!NOTE]
TBD

Scoreboard Reports

[!NOTE]
TBD

Functional Coverage Reports

[!NOTE]
TBD

Requirement Reports

[!NOTE]
TBD

Use Cases

  • Reading OSVVM's project description from *.pro files.
    • Convert to other data or file format.
  • Reading OSVVM's reports from *.yaml files.
    • Convert to other data or file format.
    • Investigate reports.
    • Merge reports.

Examples

from pathlib import Path
from pyEDAA.OSVVM.TCL import OsvvmProFileProcessor

def main() -> None:
  processor = OsvvmProFileProcessor()

  processor.LoadProFile(Path("OSVVM/OSVVMLibraries/OsvvmLibraries.pro"))
  processor.LoadProFile(Path("OSVVM/OSVVMLibraries/RunAllTests.pro"))

  for libraryName, lib in processor.Context.Libraries.items():
    print(f"Library: {libraryName} ({len(lib.Files)})")
    for file in lib.Files:
      print(f"  {file.Path}")

  print()
  for testsuiteName, ts in processor.Context.Testsuites.items():
    print(f"Testsuite: {testsuiteName} ({len(ts.Testcases)})")
    for tc in ts.Testcases.values():
      print(f"  {tc.Name}")

Consumers

References

Contributors

License

This Python package (source code) licensed under Apache License 2.0.
The accompanying documentation is licensed under Creative Commons - Attribution 4.0 (CC-BY 4.0).


SPDX-License-Identifier: Apache-2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyedaa_osvvm-0.3.0.tar.gz (19.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyedaa_osvvm-0.3.0-py3-none-any.whl (19.1 kB view details)

Uploaded Python 3

File details

Details for the file pyedaa_osvvm-0.3.0.tar.gz.

File metadata

  • Download URL: pyedaa_osvvm-0.3.0.tar.gz
  • Upload date:
  • Size: 19.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for pyedaa_osvvm-0.3.0.tar.gz
Algorithm Hash digest
SHA256 5f0d1dc412d701e0c91082baee2dd9af6f8c8cca91c87fa674a9e50c312dbc60
MD5 a9daf50996f50829727822ff89282134
BLAKE2b-256 4ff7f0d7c0a4c6e3f0ce8860480c32c809be082c4a3ee621669b281d69969a47

See more details on using hashes here.

File details

Details for the file pyedaa_osvvm-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: pyedaa_osvvm-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 19.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for pyedaa_osvvm-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 687c8831a0dcc44d74d11ac18dbe529ec7acf159cf75ca462c21ea78469fd3ad
MD5 e1ef3af1bd5e67df016113f7db666f9c
BLAKE2b-256 2d279e094fc3d9c349bf1a0a1f1a4ecb907432050e91d31f78ff7aebaad3ee24

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page