2022-07-06 13:03:11 +00:00
|
|
|
#!/usr/bin/env python
|
2016-12-21 23:56:23 +00:00
|
|
|
#
|
2022-02-17 07:27:34 +00:00
|
|
|
# SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
2016-12-21 23:56:23 +00:00
|
|
|
|
2022-04-26 13:24:01 +00:00
|
|
|
import json
|
2018-11-12 21:18:17 +00:00
|
|
|
import logging
|
2022-02-17 07:27:34 +00:00
|
|
|
import os.path
|
2022-04-26 13:24:01 +00:00
|
|
|
from typing import Any
|
2017-01-26 15:01:55 +00:00
|
|
|
|
2016-12-21 23:56:23 +00:00
|
|
|
try:
|
2022-02-17 07:27:34 +00:00
|
|
|
from esp_coredump import CoreDump
|
2016-12-21 23:56:23 +00:00
|
|
|
except ImportError:
|
2022-02-17 07:27:34 +00:00
|
|
|
raise ModuleNotFoundError('No module named "esp_coredump" please install esp_coredump by running '
|
|
|
|
'"python -m pip install esp-coredump"')
|
2021-04-09 03:39:37 +00:00
|
|
|
|
2022-02-17 07:27:34 +00:00
|
|
|
from esp_coredump.cli_ext import parser
|
2021-04-09 03:39:37 +00:00
|
|
|
|
2016-12-21 23:56:23 +00:00
|
|
|
|
2022-04-26 13:24:01 +00:00
|
|
|
def get_prefix_map_gdbinit_path(prog_path): # type: (str) -> Any
|
|
|
|
build_dir = os.path.abspath(os.path.dirname(prog_path))
|
|
|
|
desc_path = os.path.abspath(os.path.join(build_dir, 'project_description.json'))
|
|
|
|
if not os.path.isfile(desc_path):
|
2022-05-25 04:00:13 +00:00
|
|
|
logging.warning('%s does not exist. Please build the app with "idf.py build"', desc_path)
|
|
|
|
return ''
|
2022-04-26 13:24:01 +00:00
|
|
|
|
|
|
|
with open(desc_path, 'r') as f:
|
|
|
|
project_desc = json.load(f)
|
|
|
|
|
|
|
|
return project_desc.get('debug_prefix_map_gdbinit')
|
|
|
|
|
|
|
|
|
2022-02-17 07:27:34 +00:00
|
|
|
def main(): # type: () -> None
|
2016-12-21 23:56:23 +00:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2018-11-12 21:18:17 +00:00
|
|
|
if args.debug == 0:
|
|
|
|
log_level = logging.CRITICAL
|
|
|
|
elif args.debug == 1:
|
|
|
|
log_level = logging.ERROR
|
|
|
|
elif args.debug == 2:
|
|
|
|
log_level = logging.WARNING
|
|
|
|
elif args.debug == 3:
|
|
|
|
log_level = logging.INFO
|
|
|
|
else:
|
|
|
|
log_level = logging.DEBUG
|
2019-11-22 05:25:43 +00:00
|
|
|
logging.basicConfig(format='%(levelname)s: %(message)s', level=log_level)
|
2018-11-12 21:18:17 +00:00
|
|
|
|
2022-02-17 07:27:34 +00:00
|
|
|
kwargs = {k: v for k, v in vars(args).items() if v is not None}
|
2022-04-26 13:24:01 +00:00
|
|
|
# pass the extra_gdbinit_file if the build is reproducible
|
|
|
|
kwargs['extra_gdbinit_file'] = get_prefix_map_gdbinit_path(kwargs['prog'])
|
2022-02-17 07:27:34 +00:00
|
|
|
|
2022-08-10 07:01:57 +00:00
|
|
|
del kwargs['debug']
|
|
|
|
del kwargs['operation']
|
2022-02-17 07:27:34 +00:00
|
|
|
|
|
|
|
espcoredump = CoreDump(**kwargs)
|
2021-04-09 03:39:37 +00:00
|
|
|
temp_core_files = None
|
2022-02-17 07:27:34 +00:00
|
|
|
|
2021-04-09 03:39:37 +00:00
|
|
|
try:
|
|
|
|
if args.operation == 'info_corefile':
|
2022-02-17 07:27:34 +00:00
|
|
|
temp_core_files = espcoredump.info_corefile()
|
2021-04-09 03:39:37 +00:00
|
|
|
elif args.operation == 'dbg_corefile':
|
2022-02-17 07:27:34 +00:00
|
|
|
temp_core_files = espcoredump.dbg_corefile()
|
2021-04-09 03:39:37 +00:00
|
|
|
else:
|
|
|
|
raise ValueError('Please specify action, should be info_corefile or dbg_corefile')
|
|
|
|
finally:
|
|
|
|
if temp_core_files:
|
|
|
|
for f in temp_core_files:
|
|
|
|
try:
|
|
|
|
os.remove(f)
|
|
|
|
except OSError:
|
|
|
|
pass
|
2022-02-17 07:27:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|