a fork of facebook/codemod using pcre compatible regular expressions
Project description
codemod
Overview
codemod2 is a tool/library to assist you with large-scale codebase refactors that can be partially automated but still require human oversight and occasional intervention.
Example: Let's say you're deprecating your use of the <font>
tag. From the command line, you might make progress by running:
codemod2 -m -d /home/mdrohmann/www --extensions php,html \
'<font *color="?(.*?)"?>(.*?)</font>' \
'<span style="color: \1;">\2</span>'
For each match of the regex, you'll be shown a colored diff, and asked if you want to accept the change (the replacement of the <font>
tag with a <span>
tag), reject it, or edit the line in question in your $EDITOR
of choice.
Install
In a virtual environment or as admin user
pip install codemod2
or with pipx
pipx install codemod2
Usage
The last two arguments are a regular expression to match and a substitution string, respectively. Or you can omit the substitution string, and just be prompted on each match for whether you want to edit in your editor.
Options (all optional) include:
-m
Have regex work over multiple lines (e.g. have dot match newlines). By
default, codemod2 applies the regex one line at a time.
-d
The path whose ancestor files are to be explored. Defaults to current dir.
-i
Make your search case-insensitive
--start
A path:line_number-formatted position somewhere in the hierarchy from which
to being exploring, or a percentage (e.g. "--start 25%") of the way through
to start. Useful if you're divvying up the substitution task across
multiple people.
--end
A path:line_number-formatted position somewhere in the hierarchy just
*before* which we should stop exploring, or a percentage of the way
through, just before which to end.
--extensions
A comma-delimited list of file extensions to process. Also supports Unix
pattern matching.
--include-extensionless
If set, this will check files without an extension, along with any
matching file extensions passed in --extensions
--accept-all
Automatically accept all changes (use with caution)
--default-no
Set default behavior to reject the change.
--editor
Specify an editor, e.g. "vim" or "emacs". If omitted, defaults to $EDITOR
environment variable.
--count
Don't run normally. Instead, just print out number of times places in the
codebase where the 'query' matches.
--test
Don't run normally. Instead, just run the unit tests embedded in the
codemod2 library.
You can also use codemod for transformations that are much more sophisticated than regular expression substitution. Rather than using the command line, you write Python code that looks like:
import codemod2
codemod2.run_interactive(codemod2.Query(...))
Note: I didn't test yet, that the Query object still works.
See the documentation for the Query class for details if you want to try it.
Motivation for the fork
Most programming languages have some kind of balanced parantheses or brackets. PCRE2 regular expressions can help for such a use case. In my specific case, I wanted to wrap Python dictionaries in a specific type constructor in some contexts.
The following codemod2 regular expression accomplishes this:
codemod2 -m 'context=(?<expr>\{(?:[^}{]+|(?P>expr))*+\})' 'context=DictConstructor($1)'
Dependencies
- python2
- pcre2
Credits
Copyright (c) 2024 Martin Drohmann.
Copyright (c) 2007-2008 Facebook.
Created by Justin Rosenstein.
Licensed under the Apache License, Version 2.0.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file codemod2-0.2.2.tar.gz
.
File metadata
- Download URL: codemod2-0.2.2.tar.gz
- Upload date:
- Size: 18.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.11.6 Linux/6.5.0-14-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1c9c33b67c2e8edb0b94eceb7720187896c5c3c1ab508f7ee00bb2cc55780a4 |
|
MD5 | a18907bc00d027b905b9b4c12dff4f32 |
|
BLAKE2b-256 | 495bc835bebc09a56668dc92f2b5bdec72c30a4261d4e0751887c3f45b70422d |
File details
Details for the file codemod2-0.2.2-py3-none-any.whl
.
File metadata
- Download URL: codemod2-0.2.2-py3-none-any.whl
- Upload date:
- Size: 20.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.11.6 Linux/6.5.0-14-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e4b11dc7df291ff0bda2bc95e6719ec9f4f3825b94b65226a128de9ed90431ca |
|
MD5 | e7661cbaca96af73822dd8add16a81c8 |
|
BLAKE2b-256 | 15bafacae264e1eb9ff4aa97dacbd3828a1e380ad58dccd0ac142ac9234ea400 |