diff options
author | Tom Tromey <tromey@adacore.com> | 2023-03-21 14:10:18 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2023-05-23 10:09:28 -0600 |
commit | a0b70d996c326eb754bd9ed202b24921ca0b42b9 (patch) | |
tree | b4641ac4770639fbe0f547b07cee0e6f5fd4830c /gdb/python | |
parent | c97d123d6701fbf462e96db001cea07ed32e4efa (diff) | |
download | binutils-a0b70d996c326eb754bd9ed202b24921ca0b42b9.zip binutils-a0b70d996c326eb754bd9ed202b24921ca0b42b9.tar.gz binutils-a0b70d996c326eb754bd9ed202b24921ca0b42b9.tar.bz2 |
Implement DAP loadedSources request
This implements the DAP loadedSources request, using gdb.execute_mi to
avoid having to write another custom Python API.
Diffstat (limited to 'gdb/python')
-rw-r--r-- | gdb/python/lib/gdb/dap/__init__.py | 1 | ||||
-rw-r--r-- | gdb/python/lib/gdb/dap/sources.py | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/gdb/python/lib/gdb/dap/__init__.py b/gdb/python/lib/gdb/dap/__init__.py index 014fd08..f07228e 100644 --- a/gdb/python/lib/gdb/dap/__init__.py +++ b/gdb/python/lib/gdb/dap/__init__.py @@ -29,6 +29,7 @@ from . import memory from . import next from . import pause from . import scopes +from . import sources from . import threads from .server import Server diff --git a/gdb/python/lib/gdb/dap/sources.py b/gdb/python/lib/gdb/dap/sources.py new file mode 100644 index 0000000..af7313c --- /dev/null +++ b/gdb/python/lib/gdb/dap/sources.py @@ -0,0 +1,40 @@ +# Copyright 2023 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +import gdb + +from .server import request, capability +from .startup import send_gdb_with_response, in_gdb_thread + + +@in_gdb_thread +def _sources(): + result = [] + for elt in gdb.execute_mi("-file-list-exec-source-files")["files"]: + result.append( + { + "name": elt["file"], + "path": elt["fullname"], + } + ) + return { + "sources": result, + } + + +@request("loadedSources") +@capability("supportsLoadedSourcesRequest") +def sources(**extra): + return send_gdb_with_response(_sources) |