Skip to main content

Generate sequence diagrams by tracing Python code execution

Project description

pre-commit.ci status

pydoctrace uses pre-commit hooks and pre-commit.ci continuous integration to enforce commit messages, code formatting and linting for quality and consistency sake. See the code conventions section if you would like to contribute to the project.

pydoctrace

Generate diagrams by tracing Python code execution.

Here are the diagrams produced by 2 different implementations of the factorial function (n * n-1 * n-2 * ... * 1):

  • a sequence diagram for the recursive implementation
  • a component diagram for the looping implementation
from pydoctrace.doctrace import trace_to_sequence_puml

@trace_to_sequence_puml
def factorial_recursive(value: int) -> int:
    if value <= 1:
        return value

    return value * factorial_recursive(value - 1)
from pydoctrace.doctrace import trace_to_component_puml

@trace_to_component_puml
def factorial_reduce_multiply(value: int) -> int:
    if value <= 1:
        return value

    def multiply(agg: int, value: int) -> int:
        return agg * value

    return reduce(multiply, range(1, value + 1), 1)
tests.modules.factorial.factorial_recursive.puml
tests.modules.factorial.factorial_reduce_multiply.puml

The sequence diagram gives more details about the execution but can easily grow large, the component diagram is more concise and helps viewing the architecture behind the calls.

Installation

Use your favorite dependency manager to install pydoctrace:

# using pip
pip install pydoctrace

# using poetry
poetry add pydoctrace

# using pipenv
pipenv install pydoctrace

Purposes and mechanisms

The purpose of pydoctrace is to document the execution of some code to illustrate the behavior and the structure of the code base.

  • use one of the provided decorators (diagram type and format) to decorate the function whose execution you want to document
  • run your code (with a unit test, for instance): when the execution hits the decorated function, the execution is traced and a diagram is drawn to show how the functions are called, how the values are returned and how the errors are handled

pydoctrace is a pure Python tool relying on no other 3rd-party library to work. The project uses only development libraries for testing and documentation purposes.

Doc-tracing

This approach, which I called "doc-tracing" (tracing code execution for documentation purposes), is complementary of other approaches which generate documentation from static code analysis. Static code analysis reads the source code to detect and document data structures (classes, dataclasses, named tuples, enumeration, etc.), functions names and signatures (parameters name and types, returned value types).

Useful as it is, static code analysis does not help much to understand how the code pieces work together; doc-tracing attempts to complement this approach by producing documentation while the code runs. Some use cases:

  • you start working on a legacy codebase: study the behavior of a particular function by temporarily tracing its executions
  • you finished a user story, document its implementation by tracing the execution of some integration tests ("given ... when ... then ...") to illustrate how right cases and errors are handled.
  • generally, the sequence diagrams illustrate how the modules and functions interacts; and as such, they help discussing architecture
  • tracing code execution can also be useful when teaching computer programming to illustrate how algorithms work

How is the code execution traced?

When a function decorated by pydoctrace is called:

  1. a context manager is created
  2. during which a tracing function is passed to sys.settrace, which is called when different events happen in the execution stack:
    • when functions are called
    • when values are returned
    • when exceptions are raised or handled
  3. the sequence diagram is drawn and exported in a stream fashion (when possible) so that its memory footprint is minimal
  4. once the decorated function stops its execution, the tracing function is removed from the code execution

⚠️ Caveat: pydoctrace uses the sys.settrace API, which is meant to be used by debuggers. Therefore, a warning is emitted when pydoctrace is used in a debug mode (and does not trace the decorated function anymore).

Tests

# directly with poetry
poetry run pytest -v

# in an activated virtual environment
pytest -v

Code coverage (with missed branch statements):

poetry run pytest -v --cov=pydoctrace --cov-branch --cov-report term-missing --cov-fail-under 80

Changelog

  • 0.2.0: PlantUML exporter for component diagrams, added unit tests
  • 0.1.2: added github actions for the automated tests and interaction with pre-commit.ci for the code linting
  • 0.1.1: [deleted release] added github actions for the automated tests and interaction with pre-commit.ci for the code linting
  • 0.1.0: ✨ first release, PlantUML exporter for sequence diagrams; diagram files are saved in the current working directory

Licence

Unless stated otherwise, all works are licensed under the MIT license, a copy of which is included here.

Contributions

Pull requests

Pull-requests are welcome and will be processed on a best-effort basis.

Pull requests must follow the guidelines enforced by the pre-commit hooks:

  • commit messages must follow the Angular conventions enforced by the commitlint hook
  • code formatting must follow the conventions enforced by the isort and yapf hooks
  • code linting should not detect code smells in your contributions, this is checked by the ruff hook

When requesting a feature, please consider involving yourself in the review process once it is developed.

Code conventions

The code conventions are described and enforced by pre-commit hooks to maintain style and quality consistency across the code base. The hooks are declared in the .pre-commit-config.yaml file.

When you contribute, set the git hooks (pre-commit and commit-msg types) on your development environment:

poetry run pre-commit install --hook-type pre-commit --hook-type commit-msg

Before committing, you can check your changes manually with:

# put all your changes in the git staging area (or add the changes manually and skip this)
git add -A

# run all hooks
poetry run pre-commit run --all-files

# run a specific hook
poetry run pre-commit run ruff --all-files

Commit messages

Please, follow the conventions of the Angular team for commit messages. When merging your pull-request, the new version of the project will be derived from the messages.

I use the redjue.git-commit-plugin codium/vsCode extension to help me write commit messages.

Code formatting

This project uses isort and yapf to format the code. The guidelines are expressed in their respective sections in the pyproject.toml file.

Best practices

This project uses the ruff linter, which is configured in its section in the pyproject.toml file.

Similar tools and bibliography

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

pydoctrace-0.2.0.tar.gz (19.9 kB view hashes)

Uploaded Source

Built Distribution

pydoctrace-0.2.0-py3-none-any.whl (19.4 kB view hashes)

Uploaded Python 3

Supported by

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