Skip to main content

Astyle, wrapped in a python package.

Project description

astyle_py — Python wrapper around astyle

Artistic Style (astyle) is a source code indenter, formatter, and beautifier for the C, C++, C++/CLI, Objective‑C, C# and Java programming languages.

This project wraps astyle in a Python package. The package can be used:

The main reason to use this Python wrapper, rather than native astyle binaries, is that makes it easy for developers working on a project to have exactly the same version of astyle, regardless of their operating system. This prevents formatting differences which sometimes occur between different versions of astyle.

Using with pre-commit

  1. Set up pre-commit for your project as described in https://pre-commit.com/#install.
  2. Add astyle_py to your .pre-commit-config.yaml file as follows. Note: avoid using main as the revision.
    repos:
    -   repo: https://github.com/igrr/astyle_py.git
        rev: v1.0.0
        hooks:
        -   id: astyle_py
            args: [--style=linux]
    

Place the required astyle formatting options to the args array. See the next section for details.

Use --dry-run argument if you only want the pre-commit hook to report the formatting errors, and not fix them automatically.

If necessary, add verbose: true option to see the output.

Use files: option to configure the regex pattern used to match the files to be formatted. The default pattern is '^.*\.(c|cpp|cxx|h|hpp|inc)$'. You can exclude certain files via additional arguments, as described in the next section.

Using from the command line

Install the package from PyPI:

pip install astyle-py

Usage:

astyle_py [options] <files to format>
  • <files> — list of files to process. By default, astyle_py formats the files, modifying them in-place.
  • [options] — can be any of the formatting options, plus the following options are accepted:

Common options

  • --version — print the version and exit.
  • --quiet — don't print diagnostic messages; by default, the list of files which are formatted is printed to stderr.
  • --dry-run — don't format the files, only check the formatting. Returns non-zero exit code if any file would change after formatting.

Specifying additional options and excluded files

  • --options=<file> — read more formatting options from the specified file. Empty lines and lines starting with # are ignored.
  • --exclude=<pattern> — skip files matching the given pattern. Note that patterns use the syntax of Gitlab CODEOWNERS files.
  • --exclude-list=<file> — skip files matching the list of patterns specified in a file. Empty lines and lines starting with # are ignored.

Specifying the rules file

  • --rules=<file> — read the formatting rules from the specified rules file. See Rules files section for details. This option is incompatible with --options, --exclude, --exclude-list.

Using as a library

This package can be used as a library to implement custom formatting tools. See sample.py for an example.

Formatting options

See http://astyle.sourceforge.net/astyle.html for the details on Astyle formatting options.

Note that this wrapper doesn't implement the options from "Other options" and "Command Line Only" categories, except for those listed above.

Rules files

Option --rules=<file> allows loading the formatting options from a rules file in YAML format. The rules file can specify different formatting rules for different parts of the project. This can be useful for monorepos which contain libraries written with different formatting conventions.

The rules file consists of sections (rules). For each section the following keywords may be specified:

  • include: List of files name patterns to include in this rule. Pattern syntax of Gitlab CODEOWNERS files is used. Required.
  • check: If set to false, the files covered by this rule will be ignored and not checked/formatted. Optional, default is true.
  • options: A string specifying the formatting options for files covered by this rule.

If the file path matches multiple rules, the latest rule is applied. If the file path doesn't match any rule, the options from the special DEFAULT rule are used.

Here is an example of a rules file:

DEFAULT:
    # These formatting options will be used by default
    options: "--style=otbs --indent=spaces=4 --convert-tabs"

thirdparty_lib_1:   # The section name is arbitrary
    # Override formatting rules for the files in a certain directory
    options: "--style=linux"
    include:
        - "/thirdparty/lib1/"

code_to_ignore_for_now:
    # Ignore files in some other directories
    check: false
    include:
        - "/src/component1/"
        - "/src/component2/"
        - "tests/"     # matches a subdirectory 'tests' anywhere in the source tree

Implementation notes

To simplify distribution of astyle, it is compiled to WebAssembly (astyle_py/libastyle.wasm) and executed using wasmtime runtime via its Python bindings. This package should work on all operating systems supported by wasmtime — at the time of writing these are:

  • x86_64 (amd64) Windows, Linux, macOS
  • aarch64 (arm64) Linux and macOS

There is another project which wraps astyle into a Python package, without using WebAssembly: https://github.com/timonwong/pyastyle. At the time of writing, it is unmaintained.

Contributing

Please see CONTRIBUTING.md for details.

Copyright and License

  • The source code in this repository is Copyright (c) 2020-2022 Ivan Grokhotkov and licensed under the MIT license.
  • libastyle.wasm binary bundled herein is built from Artistic Style project, Copyright (c) 2018 by Jim Pattee jimp03@email.com, also licensed under the MIT license. See http://astyle.sourceforge.net/ for details.

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

astyle_py-0.9.0.tar.gz (139.3 kB view hashes)

Uploaded Source

Built Distribution

astyle_py-0.9.0-py2.py3-none-any.whl (136.7 kB view hashes)

Uploaded Python 2 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