From e83fdc532b8304610f8988d524c6773996f6f926 Mon Sep 17 00:00:00 2001 From: Andreas Hansson Date: Tue, 18 Feb 2014 05:50:52 -0500 Subject: util: Enhance the error messages for packet encode/decode This patch adds a more verbose error message when the Python protobuf module cannot be loaded. --- util/decode_packet_trace.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'util/decode_packet_trace.py') diff --git a/util/decode_packet_trace.py b/util/decode_packet_trace.py index fa0ea9604..da9a7aa83 100755 --- a/util/decode_packet_trace.py +++ b/util/decode_packet_trace.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2013 ARM Limited +# Copyright (c) 2013-2014 ARM Limited # All rights reserved # # The license below extends only to copyright in the software and shall @@ -92,8 +92,15 @@ except: error = call(['protoc', '--python_out=util', '--proto_path=src/proto', 'src/proto/packet.proto']) if not error: - import packet_pb2 print "Generated packet proto definitions" + + try: + import google.protobuf + except: + print "Please install Python protobuf module" + exit(-1) + + import packet_pb2 else: print "Failed to import packet proto definitions" exit(-1) -- cgit v1.2.3