efb890abd3
Signed-off-by: xuxingliang <xuxingliang@xiaomi.com>
93 lines
2.9 KiB
Python
93 lines
2.9 KiB
Python
############################################################################
|
|
# tools/gdb/nuttx_gdb/diagnose.py
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
# this work for additional information regarding copyright ownership. The
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance with the
|
|
# License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
############################################################################
|
|
|
|
import argparse
|
|
|
|
import gdb
|
|
|
|
from . import utils
|
|
|
|
|
|
class DiagnosePrefix(gdb.Command):
|
|
"""Diagnostic related commands."""
|
|
|
|
def __init__(self):
|
|
super().__init__("diagnose", gdb.COMMAND_USER, prefix=True)
|
|
|
|
|
|
class DiagnoseReport(gdb.Command):
|
|
"""Run diagnostics to generate reports."""
|
|
|
|
def __init__(self):
|
|
super().__init__("diagnose report", gdb.COMMAND_USER)
|
|
|
|
def invoke(self, args, from_tty):
|
|
parser = argparse.ArgumentParser(description=self.__doc__)
|
|
parser.add_argument(
|
|
"-o",
|
|
"--output",
|
|
type=str,
|
|
help="report output file name",
|
|
)
|
|
|
|
try:
|
|
args = parser.parse_args(gdb.string_to_argv(args))
|
|
except SystemExit:
|
|
return
|
|
|
|
reportfile = (
|
|
args.output
|
|
if args.output
|
|
else gdb.objfiles()[0].filename + ".diagnostics.json"
|
|
)
|
|
|
|
modules = utils.gather_modules()
|
|
modules.remove("prefix")
|
|
modules.remove("__init__")
|
|
|
|
commands = utils.gather_gdbcommands(modules=modules)
|
|
|
|
results = []
|
|
for clz in commands:
|
|
if hasattr(clz, "diagnose"):
|
|
command = clz()
|
|
name = clz.__name__.lower()
|
|
gdb.write(f"Run command: {name}\n")
|
|
try:
|
|
result = command.diagnose()
|
|
except gdb.error as e:
|
|
result = {
|
|
"title": f"Command {name} failed",
|
|
"summary": "Command execution failed",
|
|
"result": "info",
|
|
"command": name,
|
|
"message": str(e),
|
|
}
|
|
|
|
gdb.write(f"Failed: {e}\n")
|
|
|
|
result.setdefault("command", name)
|
|
results.append(result)
|
|
|
|
gdb.write(f"Write report to {reportfile}\n")
|
|
with open(reportfile, "w") as f:
|
|
f.write(utils.jsonify(results, indent=4))
|