From 6e63fe32efd4336995720f43de4ba7110f69c09f Mon Sep 17 00:00:00 2001 From: Andrey Lihatskiy Date: Fri, 24 Nov 2023 09:40:27 +0200 Subject: XML formatter script - added control for the declaration tag --- scripts/code_tools/fix_xml_indentations.py | 39 +++++++++++++++++++++--------- 1 file changed, 28 insertions(+), 11 deletions(-) (limited to 'scripts') diff --git a/scripts/code_tools/fix_xml_indentations.py b/scripts/code_tools/fix_xml_indentations.py index 46f7931589..c0661dd975 100644 --- a/scripts/code_tools/fix_xml_indentations.py +++ b/scripts/code_tools/fix_xml_indentations.py @@ -25,13 +25,19 @@ Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA $/LicenseInfo$ """ - import os import sys import glob import io import xml.etree.ElementTree as ET +def get_xml_declaration(file_path): + with open(file_path, 'r', encoding='utf-8') as file: + first_line = file.readline().strip() + if first_line.startswith('', '/>') + + xml_decl = ( + xml_decl if (xml_decl and not rewrite_decl) else ( + '' + if rm_space else + '' + ) + ) + try: with io.open(file_path, 'wb') as file: - file.write('\n'.encode('utf-8')) + file.write(xml_decl.encode('utf-8')) + file.write('\n'.encode('utf-8')) file.write(xml_string.encode('utf-8')) except IOError as e: print(f"Error saving file {file_path}: {e}") -def process_directory(directory_path, indent_text=False, indent_tab=False, rm_space=False): +def process_directory(directory_path, indent_text=False, indent_tab=False, rm_space=False, rewrite_decl=False): if not os.path.isdir(directory_path): print(f"Directory not found: {directory_path}") return @@ -83,28 +99,29 @@ def process_directory(directory_path, indent_text=False, indent_tab=False, rm_sp return for file_path in xml_files: + xml_decl = get_xml_declaration(file_path) tree = parse_xml_file(file_path) if tree is not None: - save_xml(tree, file_path, indent_text, indent_tab, rm_space) - + save_xml(tree, file_path, xml_decl, indent_text, indent_tab, rm_space, rewrite_decl) if __name__ == "__main__": if len(sys.argv) < 2 or '--help' in sys.argv: - print("XML Formatter Script") - print("This script formats XML files in a given directory with options for indentation and space removal.") + print("This script formats XML files in a given directory. Useful to fix XUI XMLs after processing by other tools.") print("\nUsage:") - print(" python script_name.py [options]") + print(" python fix_xml_indentations.py [options]") print("\nOptions:") print(" --indent-text Indents text within XML tags.") print(" --indent-tab Uses tabs instead of spaces for indentation.") print(" --rm-space Removes spaces in self-closing tags.") + print(" --rewrite_decl Replaces the XML declaration line.") print("\nCommon Usage:") print(" To format XML files with text indentation, tab indentation, and removal of spaces in self-closing tags:") - print(" python script_name.py /path/to/xmls --indent-text --indent-tab --rm-space") + print(" python fix_xml_indentations.py /path/to/xmls --indent-text --indent-tab --rm-space") sys.exit(1) directory_path = sys.argv[1] indent_text = '--indent-text' in sys.argv indent_tab = '--indent-tab' in sys.argv rm_space = '--rm-space' in sys.argv - process_directory(directory_path, indent_text, indent_tab, rm_space) + rewrite_decl = '--rewrite_decl' in sys.argv + process_directory(directory_path, indent_text, indent_tab, rm_space, rewrite_decl) -- cgit v1.2.3