decode_log_string.py 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. import binascii
  2. import os
  3. import sys
  4. current_dir = os.path.dirname(os.path.realpath(__file__))
  5. protobuf_py_path = os.path.join(current_dir, '..', '..', 'build', 'protobuf', 'py')
  6. nanopb_generator_proto_path = os.path.join(current_dir, '..', '..', 'build', 'protobuf', 'proto', 'nanopb', 'generator', 'proto')
  7. # Adding paths to sys.path
  8. sys.path.append(protobuf_py_path)
  9. sys.path.append(nanopb_generator_proto_path)
  10. import configuration_pb2
  11. def convert_string_to_bytes(input_string):
  12. # Replace Python-style escape sequences with actual bytes
  13. return bytes(input_string, "utf-8").decode("unicode_escape").encode("latin1")
  14. def main():
  15. print(f'Utility to decode the content of an encoded string as copied from the console logs')
  16. # Prompt the user to enter the string
  17. input_string = input("Enter the protobuf data string: ")
  18. # Convert the string to bytes
  19. binary_data = convert_string_to_bytes(input_string)
  20. # Parse the binary data
  21. message = configuration_pb2.Config() # Assuming the message type is Configuration
  22. message.ParseFromString(binary_data)
  23. # Now you can access fields of the message
  24. print(message)
  25. if __name__ == "__main__":
  26. main()