Created
November 5, 2020 11:01
-
-
Save Uriopass/542bfc3d489f98048c4c98e061782ac9 to your computer and use it in GitHub Desktop.
Sort derives in Rust code to be consistent
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import fileinput | |
import re | |
a = re.compile(r"^#\[derive\((\s*[a-zA-Z0-9_]+\s*,)*(\s*[a-zA-Z0-9_]+\s*)\)]$") | |
special = ["Copy", "Clone", "Default", "Debug", "PartialEq", "Eq", "PartialOrd", "Ord", "Serialize", "Deserialize"] | |
special = {x: i for i, x in enumerate(special)} | |
for root, dirs, files in os.walk("."): | |
if "target" in root: | |
continue | |
for name in files: | |
path = root + os.sep + name | |
if name.endswith(".rs"): | |
print(path) | |
for line in fileinput.input(path, inplace=True): | |
if a.match(line): | |
derives = line[9:-3] | |
derives = [(special.get(x.strip(), 100), x.strip()) for x in derives.split(",")] | |
derives.sort() | |
line = "#[derive(" + ", ".join(x[1] for x in derives) + ")]" | |
print(line) | |
else: | |
print(line, end="") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment