Source code mass automatic upgrade
Project description
Overview
arcangelo is an automatic editor for mass building python source code. arcangelo is used to perform basic text transformation based on user rules. While in some ways is similar to an editor which permits scripted edits (such as ed or sed), arcangelo operates by making change command from rule files. Rule files are simple yaml files, read by arcangelo which apply these rules to every line of files processed.
In this way migration workflow is very simple, accurate, precise and fast.
Usage
usage: arcangelo.py [-h] [-a] [-B] [-b TO_VERSION] [-C RULE_GROUPS] [-c]
[-F FROM_VERSION] [-f] [-G GIT_ORGID]
[--git-merge-conflict left|right] [--ignore-pragma] [-i]
[-j PYTHON] [-l] [-n] [-o OUTPUT] [-P PACKAGE_NAME]
[-R RULES] [-S] [--test-res-msg TEST_RES_MSG] [-v] [-V]
[-w] [-y] [--add-rule-group ADD_RULE_GROUP]
[path ...]
Beautiful source file
positional arguments:
path
options:
-h, --help show this help message and exit
-a, --lint-anyway set to True when migrate software
-B, --debug add comment with applied rule: do not use in
production
-b TO_VERSION, --to-version TO_VERSION
-C RULE_GROUPS, --rule-groups RULE_GROUPS
Rule groups (comma separated) to parse (use + for
adding, - for removing) use switch -l to see default
groups list
-c, --copyright-check
-F FROM_VERSION, --from-version FROM_VERSION
-f, --force Parse file even containing '# flake8: noqa' or '#
pylint: skip-file'
-G GIT_ORGID, --git-org GIT_ORGID
--git-merge-conflict left|right
Keep left or right side code after git merge conflict
--ignore-pragma ignore coding utf-8 declaration
-i, --in-place
-j PYTHON, --python PYTHON
python version, format #.##, 2+3 use future
-l, --list-rules list rule groups (-ll list with rules too, -lll full
list)
-n, --dry-run do nothing (dry-run)
-o OUTPUT, --output OUTPUT
-P PACKAGE_NAME, --package-name PACKAGE_NAME
-R RULES, --rules RULES
Rules (comma separated) to parse (use - for removing)
use switch -ll to see default rules list
-S, --string-normalization
force double quote enclosing strings
--test-res-msg TEST_RES_MSG
-v, --verbose
-V, --version show program's version number and exit
-w, --no-parse-with-formatter
do nor execute black or prettier on modified files
-y, --assume-yes force target path creation with different base name
--add-rule-group ADD_RULE_GROUP
Add rule group form file, default is .arcangelo.yml
© 2021-2025 by SHS-AV s.r.l.
arcangelo is based on rules files located in config directory where arcangelo is running. Configuration files are yaml formatted.
Python stages
Source process analysis is split in stages which would enable or disable rules. Process stages are:
“header” -> Initial source stage, include comment lines
“import” -> Import statements
“class_body” -> Inside class, from class to last line (not function)
“function_body” -> Inside function, from def to last line
When stage transition is detected, the transition_stage macro contains the previous value and stage macro contains new value. If no import stage was found, on the first class transition transition_stage is set to “import”, so it is possible adding import statements.
Rules
Every rule is list of following format:
CTX, PYEXPR, EREGEX, (ACTION, PARAMETERS), …
where
CTX: would be a python context to load rule
PYEXPR: would be a python expression for applying the rule
EREGEX is enhanced regular expression for applying the rule
ACTION is the action to apply on current item (if PYEXPR and EREGEX are both matched)
PARAMETERS are the values supplying to action
The list/tuple (ACTION, PARAMETERS) can be repeated more than once inside rule.
CTX and PYEXPR
CTX and PYEXPR are python expression for applying the rule. CTX is matched when file is loaded while PYEXPR is matched on every file line. Valid macros to validate expression are:
EREGEX
EREGEX is enhanced regular expression (python re) that may be negative if it starts with ! (exclamation mark).
ACTION and ARGS
ACTION is applied on current item (file or line) if CTX and PYEXPR and EREGEX are True.
ACTION values for lines:
s: substitute REGEX REPLACE_TEXT
d: delete line; stop immediately rule processing and re-read the line
i: insert line before current line
a: append line after current line
$: execute FUNCTION
+: set trigger TRIGGER_NAME (from 1st group of matching regex)
-: reset trigger TRIGGER_NAME
=: execute python code
ACTION values for files:
mv: mv current file to new fqn
rm: remove file
no: no action done
Action substitute: “s REGEX REPLACE_TEXT”
The 1.st item is the EREGEX to search for replace (negate is not applied)
The 2.nd item is the text to replace which can contain macros like %(classname)s
Action delete: “d”
Delete current line
Break rules analyzing
Must be the last action of the rule
Action insert: “i text”
Insert text before current line
Must be the last action of the rule
Action append: “a text”
Append text after current line
Must be the last action of the rule
Action execute: “$ FUNCTION”
Function must return requires break and line offset
If function requires break, no other rules will be processed
The value 0 for offset means read next line, the value -1 re-read the current line, +1 skip next line, and so on
Function example:
def FUNCTION(self, nro):
do_break = False
offset = 0
if self.lines[nro] == "<odoo>":
do_break = True
offset = 1
return do_break, offset
Action set trigger: “+ TRIGGER name [value]”
Set a trigger value to match next line contexts
Value of trigger is the 1st match group, enclose by parens
If there are no parens in match text, trigger is set to value if supplied
If there are no parens in match text and no value is supplied, trigger is set to True
If value matches “[+-][0-9]+” value is added or subtracted
Action reset trigger: “- TRIGGER name”
Reset a boolean trigger value to match next line contexts
Replacing macros in actions and args
The regular expression EREGEX may contains macro names enclose by “%(name)s”.
Name |
Description |
usage |
backport_multi |
Processing a backported version (multiple version path) |
CTX + PYEXPR |
classname |
Name of current class |
PYEXPR |
dedent |
Dedent statement level |
PYEXPR |
final |
Processing final version when multiple version path |
CTX + PYEXPR |
first_line |
True if current line is the 1st of source (see header too) |
PYEXPR |
from_major_version |
Major version of project by -F switch |
CTX + PYEXPR |
fctname |
Current function name |
PYEXPR |
header |
Current line is in the file header (comments and empty lines) |
PYEXPR |
imported |
Imported packages list |
PYEXPR |
indent |
Space indentation of current line |
PYEXPR |
line |
Current line |
PYEXPR |
migration_multi |
Processing a migrate version with multiple version path |
CTX + PYEXPR |
mime |
Current file mime |
CTX + PYEXPR |
open_stmt |
# of open parens; if > 0, current line is a continuation line |
PYEXPR |
python_future |
True if source is python 2 or 3 with future |
CTX + PYEXPR |
python_version |
Python version to run source |
CTX + PYEXPR |
singleton |
Singleton rule: may be applied just once |
PYEXPR |
stage |
Parsing stage: header,import,class_body,function_body |
PYEXPR |
stmt_indent |
Space indentation of current statement |
PYEXPR |
to_major_version |
Major version of project by -b switch |
CTX + PYEXPR |
transition_stage |
Prior parsing stage |
PYEXPR |
try_indent |
The try statement indentation: if >=0 current line is inside try/except block |
PYEXPR |
py23 |
Value 2 if python2 else 3 (int) |
CTX + PYEXPR |
Rules examples
Replace statement “(int, long)” with “int”
mig_int_long_2_python3:
ctx: 'py23 == 3'
search: '\(int, *long\)'
do:
- action: 's'
args:
- '\(int, *long\)'
- 'int'
Replace statement “int” with “int, long” for python 2 form:
mig_int_2_python2:
ctx: 'py23 == 2'
expr: '"int(" not in line'
search: 'int'
do:
- action: 's'
args:
- 'int'
- 'int, long'
Replace statement “super()” with python 2 form, including current class name “super(classname, self)”
super:
ctx: 'py23 == 2'
search: 'super\([^)]*\)'
do:
- action: 's'
args:
- 'super\(\)'
- 'super(%(classname)s, self)'
Getting started
Prerequisites
Zeroincombenze(R) tools requires:
Linux Centos 7/8 or Debian 9/10/11 or Ubuntu 16/18/20/22/24
python 2.7+, some tools require python 3.7+, best python 3.9+
bash 5.0+
Installation
Current version via Git
cd $HOME [[ ! -d ./tools ]] && git clone https://github.com/zeroincombenze/tools.git cd ./tools ./install_tools.sh -pUT source $HOME/devel/activate_tools
Upgrade
Current version via Git
cd ./tools ./install_tools.sh -pUT source $HOME/devel/activate_tools
ChangeLog History
2.1.1 (2025-06-28)
[IMP] New trigger search rather than match in rules
[IMP] Two passes parsing
[IMP] New pass1 context
[IMP] Set trigger with parameters
[FIX] New rule parsing algorithm
2.1.0 (2025-06-15)
[IMP] Split from wok_code
[IMP] Graphical files are copied only if they does not exist on target
[IMP] Before migration warns on different base name
[FIX] If target directory does not exist, will be create
2.0.22 (2025-05-31)
[FIX] arcangelo: sometimes wrong format .rst files
2.0.18 (2024-07-10)
[IMP] Python 3.6 deprecated
2.0.15 (2024-02-17)
[IMP] arcangelo improvements: new tests odoo from 8.0 to 17.0
[IMP] arcangelo improvements: test odoo from 8.0 to 17.0
[IMP] arcangelo switch -lll
[IMP] arcangelo: rules reorganization
[IMP] arcangelo: trigger management and new param ctx
[IMP] arcangelo: new switch -R to select rules to apply
2.0.14 (2024-02-07)
[FIX] Quality rating formula
[IMP] arcangelo improvements
2.0.13 (2023-11-27)
[IMP] arcangelo: new python version assignment from odoo version
2.0.12 (2023-08-29)
[IMP] arcangelo: new rules
[IMP] arcangelo: new git conflict selection
[IMP] arcangelo: merge gen_readme.py formatting
[IMP] arcangelo: new switch –string-normalization
2.0.10 (2023-07-10)
[IMP] arcangelo: new switch –string-normalization
2.0.9 (2023-06-26)
[IMP] arcangelo: refactoring to run inside pre-commit
2.0.2 (2022-10-20)
[IMP] Clearing code
2.0.1 (2022-10-12)
[IMP] minor improvements
2.0.1 (2022-10-12)
[IMP] stable version
Credits
Copyright
SHS-AV s.r.l. <https://www.shs-av.com/>
Contributors
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
File details
Details for the file arcangelo-2.1.1.tar.gz.
File metadata
- Download URL: arcangelo-2.1.1.tar.gz
- Upload date:
- Size: 433.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bcf6df0a0ce5364aff9bae4541aacbde1b0a34f7bf258edc9c180c2c4d6444ed
|
|
| MD5 |
390c02cb7f3fc9696636a31d4610627a
|
|
| BLAKE2b-256 |
c243d9b67bc1281d47696af357462214ea4c0db6647140ba249f8c4e746c9920
|