James Feist | 3cb5fec | 2018-01-23 14:41:51 -0800 | [diff] [blame] | 1 | #!/usr/bin/python3 |
| 2 | # all arguments to this script are considered as json files |
| 3 | # and attempted to be formatted alphabetically |
| 4 | |
| 5 | import json |
James Feist | 5ffd8b4 | 2019-10-25 11:22:10 -0700 | [diff] [blame^] | 6 | import os |
James Feist | 3cb5fec | 2018-01-23 14:41:51 -0800 | [diff] [blame] | 7 | from sys import argv |
| 8 | |
James Feist | 5ffd8b4 | 2019-10-25 11:22:10 -0700 | [diff] [blame^] | 9 | files = argv[1:] |
| 10 | |
| 11 | for file in files[:]: |
| 12 | if os.path.isdir(file): |
| 13 | files.remove(file) |
| 14 | for f in os.listdir(file): |
| 15 | files.append(os.path.join(file, f)) |
| 16 | |
| 17 | for file in files: |
James Feist | c4e5694 | 2019-04-19 12:15:19 -0700 | [diff] [blame] | 18 | print("formatting file {}".format(file)) |
| 19 | with open(file) as f: |
| 20 | j = json.load(f) |
James Feist | 3cb5fec | 2018-01-23 14:41:51 -0800 | [diff] [blame] | 21 | |
James Feist | c4e5694 | 2019-04-19 12:15:19 -0700 | [diff] [blame] | 22 | if isinstance(j, list): |
| 23 | for item in j: |
| 24 | item["Exposes"] = sorted(item["Exposes"], key=lambda k: k["Type"]) |
| 25 | else: |
| 26 | j["Exposes"] = sorted(j["Exposes"], key=lambda k: k["Type"]) |
| 27 | |
| 28 | with open(file, 'w') as f: |
| 29 | f.write(json.dumps(j, indent=4, sort_keys=True, separators=(',', ': '))) |