2
0

generate_bin.py 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. #!/opt/esp/python_env/idf4.4_py3.8_env/bin/python
  2. import json
  3. import os
  4. import sys
  5. import argparse
  6. import importlib.util
  7. import logging
  8. from pathlib import Path
  9. from google.protobuf import json_format
  10. from google.protobuf.json_format import MessageToJson
  11. # Assuming this script is in the same directory as the generated Python files
  12. # script_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)),'generated/src')
  13. # sys.path.append(script_dir)
  14. # Configure logging
  15. logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
  16. def load_protobuf_module(source, includes):
  17. """Dynamically load a protobuf module given its file name."""
  18. for include in includes:
  19. sys.path.append(include)
  20. module_name = Path(source).stem
  21. module_file = module_name + '_pb2.py'
  22. module_location = Path(source).parent / module_file
  23. logging.debug(f'Loading module {module_file} from {module_location} with includes [{", ".join(includes)}]')
  24. spec = importlib.util.spec_from_file_location(name=module_name, location=str(module_location))
  25. if spec is not None:
  26. module = importlib.util.module_from_spec(spec)
  27. spec.loader.exec_module(module)
  28. logging.debug(f'Loaded protobuf module: {module_name}')
  29. return module
  30. else:
  31. logging.error(f'Failed to load module {module_file} from {module_location}')
  32. return None
  33. def protobuf_to_dict(message):
  34. """Convert a protobuf message to a dictionary."""
  35. # Convert the protobuf message to a JSON string
  36. json_str = MessageToJson(message, including_default_value_fields=True)
  37. # Parse the JSON string back into a dictionary
  38. return json.loads(json_str)
  39. def main():
  40. parser = argparse.ArgumentParser(description='Process protobuf and JSON files.')
  41. parser.add_argument('--proto_file', help='Name of the protobuf file (without extension)')
  42. parser.add_argument('--main_class', help='Main message class to process')
  43. parser.add_argument('--target_dir', help='Target directory for output files')
  44. parser.add_argument('--include', help='Directory where message python files can be found', default=None,action = 'append' )
  45. parser.add_argument('--json', help='Source JSON file(s)',action = 'append' )
  46. parser.add_argument('--dumpconsole', action='store_true', help='Dump to console')
  47. args = parser.parse_args()
  48. # Load the protobuf module
  49. logging.debug(f'Loading modules')
  50. proto_module = load_protobuf_module(args.proto_file, args.include)
  51. # Determine the main message class
  52. try:
  53. main_message_class = getattr(proto_module, args.main_class)
  54. except Exception as e:
  55. content:list = [entry for entry in dir(proto_module) if not entry.startswith('_') ]
  56. logging.error(f'Error getting main class: {e}. Available classes: {", ".join(content)}')
  57. sys.exit(1) # Exit with error status
  58. message = main_message_class()
  59. proto_base_name = Path(args.proto_file).stem
  60. for jsonfile in args.json:
  61. output_file_base:str = os.path.join(args.target_dir, Path(jsonfile).stem+".bin").lower()
  62. logging.debug(f'Converting JSON file {jsonfile} to binary format')
  63. with open(jsonfile, 'r') as json_file:
  64. try:
  65. json_data = json.load(json_file)
  66. try:
  67. json_format.ParseDict(json_data, message)
  68. except json_format.ParseError as e:
  69. logging.error(f'Parse error in JSON file {jsonfile}: {e}')
  70. sys.exit(1) # Exit with error status
  71. except Exception as e:
  72. logging.error(f'Error reading JSON file {jsonfile}: {e}')
  73. sys.exit(1) # Exit with error status
  74. binary_data = message.SerializeToString()
  75. with open(output_file_base, 'wb') as bin_file:
  76. bin_file.write(binary_data)
  77. logging.info(f'Binary file written to {output_file_base}')
  78. if args.dumpconsole:
  79. escaped_string = ''.join('\\x{:02x}'.format(byte) for byte in binary_data)
  80. print(f'escaped string representation: \nconst char * bin_{Path(jsonfile).stem} = "{escaped_string}";\n')
  81. except Exception as e:
  82. logging.error(f'Error reading JSON file {jsonfile}: {e}')
  83. sys.exit(1) # Exit with error status
  84. if __name__ == '__main__':
  85. main()