Skip to main content

Fast AST based code differencing in Python

Project description

Code Diff


Fast AST based code differencing in Python

Software projects are constantly evolving to integrate new features or improve existing implementations. To keep track of this progress, it becomes important to track individual code changes. Code differencing provides a way to identify the smallest code change between two implementations.

code.diff provides a fast alternative to standard code differencing techniques with a focus on AST based code differencing. As part of this library, we include a fast reimplementation of the GumTree algorithm. However, by relying on a best-effort AST parser, we are able to generate AST code changes for individual code snippets. Many programming languages including Python, Java and JavaScript are supported!

Installation

The package is tested under Python 3. It can be installed via:

pip install code-diff

Usage

code.diff can compute a code difference for nearly any program code in a few lines of code:

import code_diff as cd

# Python
output = cd.difference(
    '''
        def my_func():
            print("Hello World")
    ''',
    '''
        def say_helloworld():
            print("Hello World")
    ''',
lang = "python")

# Output: my_func -> say_helloworld

output.edit_script()

# Output: 
# [
#  Update((identifier:my_func, line 1:12 - 1:19), say_helloworld)
#]


# Java
output = cd.difference(
    '''
        int x = x + 1;
    ''',
    '''
        int x = x / 2;
    ''',
lang = "java")

# Output: x + 1 -> x / 2

output.edit_script()

# Output: [
#  Insert(/:/, (binary_operator, line 0:4 - 0:9), 1),
#  Update((integer:1, line 0:8 - 0:9), 2),
#  Delete((+:+, line 0:6 - 0:7))
#]

Language support

code.diff supports most programming languages where an AST can be computed. To parse an AST, the underlying parser employs

  • code.tokenize: A frontend for tree-sitter to effectively parse and tokenize program code in Python.

  • tree-sitter: A best-effort AST parser supporting many programming languages including Python, Java and JavaScript.

To decide whether your code can be handled by code.diff please review the libraries above.

GumTree: To compute an edit script between a source and target AST, we employ a Python reimplementation of the GumTree algorithm. Note however that the computed script are heavily dependent on the AST representation of the given code. Therefore, AST edit script computed with code.diff might significantly differ to the one computed by GumTree.

Release history

  • 0.1.1
    • Fix of the release information
    • Package now useable by installing from PyPI
  • 0.1.0
    • Initial functionality
    • Documentation
    • SStuB Testing

Project Info

The goal of this project is to provide developer with easy access to AST-based code differencing. This is currently developed as a helper library for internal research projects. Therefore, it will only be updated as needed.

Feel free to open an issue if anything unexpected happens.

Cedric Richter - @cedricrichter - cedric.richter@uni-oldenburg.de

Distributed under the MIT license. See LICENSE for more information.

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

code_diff-0.1.2.tar.gz (21.6 kB view details)

Uploaded Source

File details

Details for the file code_diff-0.1.2.tar.gz.

File metadata

  • Download URL: code_diff-0.1.2.tar.gz
  • Upload date:
  • Size: 21.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.64.0 CPython/3.8.8

File hashes

Hashes for code_diff-0.1.2.tar.gz
Algorithm Hash digest
SHA256 131595e4a3862f306d012d5b87d8d3b10d03584d1947993925aa423db8154012
MD5 253c270134628e59632787d03180ff3e
BLAKE2b-256 f62ad19df47df1d614d754a8be766893dd0762e94091950e27d03b18cf6fa8e9

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