Refactor identifiers. Intended for c/c++ like symbol identifiers.
Go to file
2023-03-30 19:33:46 -04:00
.github/workflows Possible fix for gh-action yml error. 2023-03-30 18:32:33 -04:00
.vscode WIP - Got it somewhat working, still have issues with multiple files. 2023-03-17 18:12:20 -04:00
project Corrections to debug code for release builds. 2023-03-30 19:33:35 -04:00
scripts Various updates to scripts 2023-03-30 19:33:46 -04:00
Test Setup new test and sucessfuly compiles! 2023-03-30 17:36:36 -04:00
thirdparty Updated test to use latest from my fork of zpl. 2023-03-14 02:31:18 -04:00
.editorconfig fixed up debug logs and fatal asserts. 2023-03-12 22:38:21 -04:00
.gitignore Setup new test and sucessfuly compiles! 2023-03-30 17:36:36 -04:00
LICENSE Create LICENSE 2023-03-12 21:47:10 -04:00
Readme.md Non-include refactors work. Multi-file works. 2023-03-18 03:10:43 -04:00
refactor.10x Got include ignores to work, comment ignores work 2023-03-25 22:44:36 -04:00

refactor

Refactor c/c++ files (and problably others) with ease.

Parameters :

  • -num : Used if more than one source file is provided (if used, number of destination files provided MUST MATCH).
  • -src : Source file to refactor
  • -dst : Destination file after the refactor (omit to use the same as source)
  • -spec : Specification containing rules to use for the refactor.
  • -debug : Use only if on debug build and desire to attach to process.

Syntax :

  • not Omit word or namespace.
  • include Preprocessor include related identifiers.
  • word Fixed sized identifier.
  • namespace Variable sized identifiers, mainly intended to redefine c-namespace of an identifier.
  • , is used to delimit arguments (if doing a find and replace).
  • L-Value is the signature to modify.
  • R-Value is the substitute ( only available if rule does not use not keyword )

The only keyword here excluisve to c/c++ is the include as it does search specifically for #include <L-Value>.
However, the rest of the categorical keywords (word, namespace), can really be used for any langauge.

There is no semantic awareness this is truely just a simple find and replace, but with some filters specifiable, and
words/namespaces only being restricted to the rules for C/C++ identifiers (alphanumeric or underscores only)

The main benefit for using this over alts is its problably more ergonomic and performant for large refactors on libraries that
you may want to have automated in a script.

There are other programs more robust for doing that sort of thing but I was not able to find something this simple.

Note

  • Building for debug provides some nice output with context on a per-line basis.
  • Release will only show errors for asserts (that will kill the refactor early).
  • If the refactor crashes, the files previously written to will retain their changes. Make sure to have the code backed up on a VCS or in some other way.
  • This was compiled using meson with ninja and clang on windows 11. The ZPL library used however should work fine on the other major os platforms and compiler venders.
  • The scripts used for building and otherwise are in the scripts directory and are all in powershell (with exception to the meson.build). Techncially there should be a powershell package available on other platorms but worst case it should be pretty easy to port these scripts to w/e shell script you'd perfer.

TODO:

  • Possibly come up with a better name.
  • Test to see how much needs to be ported for other platforms (if at all)
  • Setup as api.
  • Provide binaries in the release page for github. (debug and release builds)
  • Directive to ignore comments (with a way to specify the comment signature). Right now comments that meet the signature of words or namespaces are refactored.