parse_bin.py 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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.info(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.info(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('--source', help='Source file to parse')
  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. args = parser.parse_args()
  47. # Load the protobuf module
  48. logging.info(f'Loading modules')
  49. proto_module = load_protobuf_module(args.proto_file, args.include)
  50. # Determine the main message class
  51. main_message_class = getattr(proto_module, args.main_class)
  52. message = main_message_class()
  53. with open(args.source, 'rb') as bin_file: # Open in binary mode
  54. data =bin_file.read()
  55. message.ParseFromString(data)
  56. logging.info(f'Parsed: {MessageToJson(message)}')
  57. # for jsonfile in args.json:
  58. # output_file_base = os.path.join(args.target_dir, Path(jsonfile).stem+".bin")
  59. # logging.info(f'Converting JSON file {jsonfile} to binary format')
  60. # with open(jsonfile, 'r') as json_file:
  61. # json_data = json.load(json_file)
  62. # json_format.ParseDict(json_data, message)
  63. # binary_data = message.SerializeToString()
  64. # with open(output_file_base, 'wb') as bin_file:
  65. # bin_file.write(binary_data)
  66. # logging.info(f'Binary file written to {output_file_base}')
  67. if __name__ == '__main__':
  68. main()