webui/bridge/js2c.py

65 lines
2.2 KiB
Python
Raw Normal View History

2024-07-11 10:10:29 -04:00
# https://webui.me
2023-09-11 16:56:55 -04:00
# https://github.com/webui-dev/webui
2025-01-30 15:52:24 -05:00
# Copyright (c) 2020-2025 Hassan Draga.
2023-09-11 16:56:55 -04:00
# Licensed under MIT License.
# All rights reserved.
2024-07-11 10:10:29 -04:00
# Canada.
2023-09-11 16:56:55 -04:00
#
2023-10-28 19:51:02 -04:00
# WebUI JavaScript to C Header
def js_to_c_header(input_filename, output_filename):
try:
print(f"Converting '{input_filename}' to '{output_filename}'...")
2024-07-11 10:10:29 -04:00
# comment
comment = (
2024-11-15 21:02:26 -05:00
"// WebUI v2.5.0-beta.3\n"
2024-07-11 10:10:29 -04:00
"// https://webui.me\n"
"// https://github.com/webui-dev/webui\n"
2025-01-30 15:52:24 -05:00
"// Copyright (c) 2020-2025 Hassan Draga.\n"
2024-07-11 10:10:29 -04:00
"// Licensed under MIT License.\n"
"// All rights reserved.\n"
"// Canada.\n\n"
)
2024-07-12 20:10:25 -04:00
# Read JS file content
with open(input_filename, 'r', encoding='utf-8') as file_js:
content = file_js.read()
file_js.close()
# Add comment to js
new_content = comment + content
with open(input_filename, 'w') as file_js:
file_js.write(new_content)
file_js.close()
# Convert each character in JS content to its hexadecimal value
2024-07-12 20:10:25 -04:00
hex_values = ["0x{:02x}".format(ord(char)) for char in new_content]
# Prepare the content for the C header file
header_content = (
2024-07-11 10:10:29 -04:00
comment +
"// --- PLEASE DO NOT EDIT THIS FILE -------\n"
"// --- THIS FILE IS GENERATED BY JS2C.PY --\n\n"
"#ifndef WEBUI_BRIDGE_H\n"
"#define WEBUI_BRIDGE_H\n"
"unsigned char webui_javascript_bridge[] = { "
)
# Split the hexadecimal values to make the output more readable, adding a new line every 10 values
for i in range(0, len(hex_values), 10):
header_content += "\n " + ', '.join(hex_values[i:i+10]) + ','
header_content += "\n 0x00\n};\n\n#endif // WEBUI_BRIDGE_H"
# Write the header content to the output file
2024-07-11 10:10:29 -04:00
with open(output_filename, 'w', encoding='utf-8') as file_h:
file_h.write(header_content)
file_h.close()
except FileNotFoundError:
print(f"Error: File '{input_filename}' not found.")
return
# Main
js_to_c_header('webui.js', 'webui_bridge.h')