gdb/DAP Few bug fixes & Evaluate Array Watch vars
authorSimon Farre <simon.farre.cx@gmail.com>
Mon, 19 Jun 2023 23:27:28 +0000 (01:27 +0200)
committerSimon Farre <simon.farre.cx@gmail.com>
Thu, 22 Jun 2023 15:42:27 +0000 (17:42 +0200)
v2.

EvaluateResult does not need a name, just as what Tom pointed out in
previous review. It's only the *children* that need to be made sure that
their names are valid. An identifier for a variable, can't ever have an
integer as a name, anyhow (not as far as I am aware, no programming
languages allow for that).

Removed the f-strings and use str() instead as pointed out that
f-strings might not be supported fully.

v1.

This patch fixes a few bugs.

First of all, name of VariableReferences must always be of string type.
This patch makes sure that this is the case by formatting the name. If
(when) the name is an integer, this will cause clients to fail or throw
errors.

Fixes a bug in NoOpArrayPrinter that calculated children to be N, but
only ever retrieves N-1 children, which makes Python at some time later
(during fetch_children -> fetch_one_child(N) ) raise an exception (out
of list index) which makes the entire request go bad.

The result[self.result_name] also f-strings the printer.to_string()
value, because this can potentially be a LazyString (which is a Python
object, not a string) and is not serializable by json.dumps.

Approved-By: Tom Tromey <tom@tromey.com>
gdb/python/lib/gdb/dap/varref.py
gdb/python/lib/gdb/printing.py

index 23f18d647c3d901f43ebe687dfe122fa8f31dd43..213151fd3d34164b574379b8ce819248b86b9edb 100644 (file)
@@ -66,7 +66,7 @@ class BaseReference:
             "variablesReference": self.ref,
         }
         if self.name is not None:
-            result["name"] = self.name
+            result["name"] = str(self.name)
         return result
 
     def no_children(self):
index ab62ef3e45c7c6b5e81459a84b52ce0d125a2860..353427d000a2c0a90c2ccaa7471d519af1d713e5 100644 (file)
@@ -298,7 +298,7 @@ class NoOpArrayPrinter:
         return "array"
 
     def children(self):
-        for i in range(self.low, self.high):
+        for i in range(self.low, self.high + 1):
             yield (i, self.value[i])