Implement DAP loadedSources request
authorTom Tromey <tromey@adacore.com>
Tue, 21 Mar 2023 20:10:18 +0000 (14:10 -0600)
committerTom Tromey <tromey@adacore.com>
Tue, 23 May 2023 16:09:28 +0000 (10:09 -0600)
This implements the DAP loadedSources request, using gdb.execute_mi to
avoid having to write another custom Python API.

gdb/data-directory/Makefile.in
gdb/python/lib/gdb/dap/__init__.py
gdb/python/lib/gdb/dap/sources.py [new file with mode: 0644]
gdb/testsuite/gdb.dap/basic-dap.exp

index 399790372457961aed8540698ce138c9f62c89a3..a95c2d7ab3784ea6dfebc8c686ed70f9396e9c43 100644 (file)
@@ -101,6 +101,7 @@ PYTHON_FILE_LIST = \
        gdb/dap/pause.py \
        gdb/dap/scopes.py \
        gdb/dap/server.py \
+       gdb/dap/sources.py \
        gdb/dap/startup.py \
        gdb/dap/state.py \
        gdb/dap/threads.py \
index 014fd086f4b8569d5f801e15313b7a0f0a470c91..f07228e46ce0a912a4686e0ae3c2c4077a287283 100644 (file)
@@ -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 (file)
index 0000000..af7313c
--- /dev/null
@@ -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)
index 0026690ba447f793b7a866838e37ca3aa71d6a8a..f28239d8268778e579d66da2f154fa62d1579fe8 100644 (file)
@@ -168,4 +168,7 @@ set obj [dap_check_request_and_response "command repl" \
 set response [lindex $obj 0]
 gdb_assert {[dict get $response body result] == 23}
 
+set obj [dap_check_request_and_response sources loadedSources]
+gdb_assert {[string first basic-dap.c $obj] != -1}
+
 dap_shutdown