Skip to main content

A Framework for Tracking Configuration Dependencies Across a Software Project

Project description

CfgNet

CfgNet is a plugin-based framework for detecting and tracking dependencies among configuration options across the used technology stack of a software project. Essentially, CfgNet represents configuration options of configuration artifacts as trees and connects them to build a configuration network, where links between the leaf nodes of a tree correspond to the dependencies between configuration options. Our idea is to have a framework in which technology plugins analyze different configuration files (e.g., Dockerfiles or build scripts) and create nodes for configuration options with their user-defined values. Linker plugins then connect the nodes in case a dependency exists using a specific linker heuristic.

We envision that CfgNet is used within a Git hook (e.g., pre-commit hook) to prevent dependency conflicts during the development and maintenance of software systems. That is, whenever changes are made, CfgNet can check the changes before the actual commit gets pushed to the repository and reports a warning if it has detected possible dependency conflicts. This way, developer can check the changes again and even use the information that CfgNet provides to fix the dependency conflicts.

Installation

CfgNet is a package on PyPI. You can install it with the following command:

pip install cfgnet

You can also build it locally with poetry. Please refer to the documentation of poetry for further details.

Basic Usage

CfgNet provides a method-based command line interface with the commands init, validate, export, analyze, and extract. Each method requires the project_root as option that points towards the root directory of the project on which you want to apply the CfgNet.

To initialize a reference configuration network, use the init command.

cfgnet init <project_root>

To detect dependency conflicts against the initialized reference network, you need to call the validate command. Detected dependency conflicts will be displayed on screen.

cfgnet validate <project_root>

To export the reference network for visualization, use the export command. The export command additionally requires a output and format option. While the former specifies the name of the output file the latter defines which format the configuration network should be converted to. Available formats are json and dot. By default, the export includes only linked value nodes. To export all nodes from the configuration network, you have te set the option include-unlinked.

cfgnet export --output=<name> --format=<format> <project_root>
cfgnet export --output=<name> --format=<format> --include-unlinked <project_root>

To visualize the reference network immediately without exporting the format, use the export command with the -visualize-dot option. The visualization of the configuration network is stored in .cfgnet/export using the png format by default. However, the format can be changed to either pdf or png using the format option. By default, the network visualization includes only linked value nodes. To visualize the entire configuration network including value nodes that are not linked to other nodes, you have to set the option include-unlinked.

cfgnet export --output=<name> --visualize-dot <project_root>
cfgnet export --output=<name> --format=<format> --visualize-dot <project_root>
cfgnet export --output=<name> --format=<format> --include-unlinked --visualize-dot <project_root>

The analyze command is used for analyzing the commit history of software systems in an automated manner. When the analysis is finished, all detected configuration conflicts will be stored in .cfgnet/analysis.

cfgnet analyze <project_root>

To extract the key-value pairs of all configuration artifacts within a software project, use the extract command. The extract command additionally requires an output options, which specifies the directory where the key-value pairs are stored using the JSON format.

cfgnet extract <project_root> --output=<output>

The commands init and analyze can be further configured with the following options:

(1) --enable-static-blacklist
(2) --enable-internal-conflicts
(3) --enable-all-conflicts
(4) --config-files=<absolute_file_path>

These options enable (1) blacklisted values, which are taken into account when creating links, (2) the detection of conflicts within the same configuration artifact, (3) the detection of all conflict types, and (4) parsing of specific configuration files (e.g., configuration files of the operating machine that are not in the git repository of the software project), respectively. The option --config-files can be specified multiple times. The config-file option can also be used to configure the extract command.

For a documentation of further options run

cfgnet --help

Documentation

You can build the documentation with

make docs

The HTML version of the documentation will be in docs/_build/html.

Contributing

To contribute to this project feel free to create pull requests. Please read our guidelines and instructions for development first.

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

cfgnet-1.0.3.tar.gz (60.1 kB view details)

Uploaded Source

Built Distribution

cfgnet-1.0.3-py3-none-any.whl (109.0 kB view details)

Uploaded Python 3

File details

Details for the file cfgnet-1.0.3.tar.gz.

File metadata

  • Download URL: cfgnet-1.0.3.tar.gz
  • Upload date:
  • Size: 60.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.9.16 Linux/6.5.0-1025-azure

File hashes

Hashes for cfgnet-1.0.3.tar.gz
Algorithm Hash digest
SHA256 11e24084a50621db91626ffbbcf3386316c2adc8dec51ecd1b765de0fcb661e8
MD5 141f1d0d35001872c48e76e223066591
BLAKE2b-256 c7e04b1e73ae4558534d4108b00d6526b78af34ff4280b602beb2d41a7fe213e

See more details on using hashes here.

File details

Details for the file cfgnet-1.0.3-py3-none-any.whl.

File metadata

  • Download URL: cfgnet-1.0.3-py3-none-any.whl
  • Upload date:
  • Size: 109.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.9.16 Linux/6.5.0-1025-azure

File hashes

Hashes for cfgnet-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 d35fe28f4adacb1b0c1a80472d010eb59ead30bac03ebc7fcb84dd463d980c01
MD5 3bf9f2f8e662631d6314d1efbe270fbb
BLAKE2b-256 052d516f99109228092303c4c58d9562de6cf43532dbb3820d6ce62505008d38

See more details on using hashes here.

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