Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 2 | |
| 3 | # bitbake-dumpsig |
| 4 | # BitBake task signature dump utility |
| 5 | # |
| 6 | # Copyright (C) 2013 Intel Corporation |
| 7 | # |
| 8 | # This program is free software; you can redistribute it and/or modify |
| 9 | # it under the terms of the GNU General Public License version 2 as |
| 10 | # published by the Free Software Foundation. |
| 11 | # |
| 12 | # This program is distributed in the hope that it will be useful, |
| 13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | # GNU General Public License for more details. |
| 16 | # |
| 17 | # You should have received a copy of the GNU General Public License along |
| 18 | # with this program; if not, write to the Free Software Foundation, Inc., |
| 19 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 20 | |
| 21 | import os |
| 22 | import sys |
| 23 | import warnings |
| 24 | import optparse |
| 25 | import logging |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 26 | import pickle |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 27 | |
| 28 | sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(sys.argv[0])), 'lib')) |
| 29 | |
| 30 | import bb.siggen |
| 31 | |
| 32 | def logger_create(name, output=sys.stderr): |
| 33 | logger = logging.getLogger(name) |
| 34 | console = logging.StreamHandler(output) |
| 35 | format = bb.msg.BBLogFormatter("%(levelname)s: %(message)s") |
| 36 | if output.isatty(): |
| 37 | format.enable_color() |
| 38 | console.setFormatter(format) |
| 39 | logger.addHandler(console) |
| 40 | logger.setLevel(logging.INFO) |
| 41 | return logger |
| 42 | |
| 43 | logger = logger_create('bitbake-dumpsig') |
| 44 | |
| 45 | parser = optparse.OptionParser( |
| 46 | description = "Dumps siginfo/sigdata files written out by BitBake", |
| 47 | usage = """ |
| 48 | %prog sigdatafile""") |
| 49 | |
| 50 | options, args = parser.parse_args(sys.argv) |
| 51 | |
| 52 | if len(args) == 1: |
| 53 | parser.print_help() |
| 54 | else: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 55 | try: |
| 56 | output = bb.siggen.dump_sigfile(args[1]) |
| 57 | except IOError as e: |
| 58 | logger.error(str(e)) |
| 59 | sys.exit(1) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 60 | except (pickle.UnpicklingError, EOFError): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 61 | logger.error('Invalid signature data - ensure you are specifying a sigdata/siginfo file') |
| 62 | sys.exit(1) |
| 63 | |
| 64 | if output: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 65 | print('\n'.join(output)) |