public inbox for archer@sourceware.org
 help / color / mirror / Atom feed
From: "Matt McCormick (thewtex)" <matthew.m.mccormick@gmail.com>
To: archer@sourceware.org
Cc: "Matt McCormick (thewtex)" <matt@mmmccormick.com>
Subject: [PATCH 1/2] [python] Add gdb.value_history_count()
Date: Sun, 13 Dec 2009 21:22:00 -0000	[thread overview]
Message-ID: <1260739335-20860-1-git-send-email-matthew.m.mccormick@gmail.com> (raw)

From: Matt McCormick (thewtex) <matt@mmmccormick.com>

An example use cause is trying to log related data with a pretty-printer.  For
example, save a file with the same name as the current history number.
---
 gdb/python/py-value.c        |    7 +++++++
 gdb/python/python-internal.h |    1 +
 gdb/python/python.c          |    5 +++++
 gdb/value.c                  |    6 ++++++
 gdb/value.h                  |    4 ++++
 5 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/gdb/python/py-value.c b/gdb/python/py-value.c
index 14efd79..17c1aee 100644
--- a/gdb/python/py-value.c
+++ b/gdb/python/py-value.c
@@ -403,6 +403,13 @@ valpy_get_is_optimized_out (PyObject *self, void *closure)
   Py_RETURN_FALSE;
 }
 
+/* implementation of gdb.value_history_count. */ 
+PyObject *
+gdbpy_value_history_count (PyObject *self, PyObject *args)
+{
+  return Py_BuildValue("i", get_value_history_count());
+}
+
 enum valpy_opcode
 {
   VALPY_ADD,
diff --git a/gdb/python/python-internal.h b/gdb/python/python-internal.h
index 47662d9..8056ba8 100644
--- a/gdb/python/python-internal.h
+++ b/gdb/python/python-internal.h
@@ -93,6 +93,7 @@ PyObject *gdbpy_lookup_symbol (PyObject *self, PyObject *args, PyObject *kw);
 PyObject *gdbpy_selected_frame (PyObject *self, PyObject *args);
 PyObject *gdbpy_block_for_pc (PyObject *self, PyObject *args);
 PyObject *gdbpy_lookup_type (PyObject *self, PyObject *args, PyObject *kw);
+PyObject *gdbpy_value_history_count (PyObject *self, PyObject* args);
 PyObject *gdbpy_inferiors (PyObject *unused, PyObject *unused2);
 PyObject *gdbpy_selected_thread (PyObject *self, PyObject *args);
 
diff --git a/gdb/python/python.c b/gdb/python/python.c
index 707b700..debf189 100644
--- a/gdb/python/python.c
+++ b/gdb/python/python.c
@@ -1007,6 +1007,11 @@ Return a string explaining unwind stop reason." },
     "lookup_type (name [, block]) -> type\n\
 Return a Type corresponding to the given name." },
 
+  { "value_history_count", (PyCFunction) gdbpy_value_history_count,
+    METH_VARARGS,
+    "value_history_count () -> int.\n\
+Return an int corresponding to the number of entries in the value history." },
+
   { "lookup_symbol", (PyCFunction) gdbpy_lookup_symbol,
     METH_VARARGS | METH_KEYWORDS,
     "lookup_symbol (name [, block] [, domain]) -> (symbol, is_field_of_this)\n\
diff --git a/gdb/value.c b/gdb/value.c
index 2f31185..a9e8ec3 100644
--- a/gdb/value.c
+++ b/gdb/value.c
@@ -343,6 +343,12 @@ allocate_computed_value (struct type *type,
 
 /* Accessor methods.  */
 
+int
+get_value_history_count()
+{
+  return value_history_count;
+}
+
 struct value *
 value_next (struct value *value)
 {
diff --git a/gdb/value.h b/gdb/value.h
index 0da7031..cfe6618 100644
--- a/gdb/value.h
+++ b/gdb/value.h
@@ -48,6 +48,10 @@ struct value;
 
 struct value *value_next (struct value *);
 
+/* Abs number of last entry stored */
+
+int get_value_history_count();
+
 /* Type of the value.  */
 
 extern struct type *value_type (struct value *);
-- 
1.6.5.5

             reply	other threads:[~2009-12-13 21:22 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-12-13 21:22 Matt McCormick (thewtex) [this message]
2009-12-13 21:22 ` [PATCH 2/2] [python] Document gdb.value_history_count() Matt McCormick (thewtex)
2009-12-15  5:51   ` Matthew McCormick (thewtex)
2009-12-15  5:55     ` [PATCH 1/2] [python] Add gdb.value_history_count() Matt McCormick (thewtex)
2009-12-15  5:55       ` [PATCH 2/2] [python] Document gdb.value_history_count Matt McCormick (thewtex)
     [not found]         ` <4B29F581.1020601@redhat.com>
2009-12-17  9:13           ` Phil Muldoon
2009-12-17  8:59       ` [PATCH 1/2] [python] Add gdb.value_history_count() Phil Muldoon
2009-12-17 14:34         ` Matthew McCormick (thewtex)
2009-12-30 17:06         ` Matthew McCormick (thewtex)
2009-12-30 17:09           ` [PATCH] " Matt McCormick
2009-12-30 17:17             ` Matt McCormick
2010-01-05 14:51               ` Phil Muldoon
2010-01-05 19:49                 ` Tom Tromey
2010-01-06  5:10                 ` Matthew McCormick (thewtex)
2010-01-06  5:11                   ` Matt McCormick
2010-01-17 19:40                     ` Matt McCormick

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1260739335-20860-1-git-send-email-matthew.m.mccormick@gmail.com \
    --to=matthew.m.mccormick@gmail.com \
    --cc=archer@sourceware.org \
    --cc=matt@mmmccormick.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).