From patchwork Wed May 13 13:29:42 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Patrick Palka X-Patchwork-Id: 6696 Received: (qmail 9043 invoked by alias); 13 May 2015 13:29:59 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 9027 invoked by uid 89); 13 May 2015 13:29:58 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL, BAYES_00, KAM_LAZY_DOMAIN_SECURITY, RCVD_IN_DNSWL_LOW autolearn=no version=3.3.2 X-HELO: mail-qk0-f175.google.com Received: from mail-qk0-f175.google.com (HELO mail-qk0-f175.google.com) (209.85.220.175) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Wed, 13 May 2015 13:29:54 +0000 Received: by qkx62 with SMTP id 62so27905833qkx.0 for ; Wed, 13 May 2015 06:29:52 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=dMSANtl3cjCvxW7xHlit8OmUrgYzbctSdm/uU5fouH4=; b=TE5yWFmIPId7jKdjXkcEuJdTuk/cthThU6VVyNNviLvWzynmg98Zd4PcJSQXPy8gCu XHOrwlO1akotpZjYy/nf9WTCZm5RoCA8pyPEB3TIa8Sp3V3vnfc+MQtJSYzaqRURJ7aa LIQLSF5Z9R9+A70g4PaYhguqRlE6fNhzRFrQIPXw176l7rH41pYeeAD+LvuU4J53lUef P5yvWbGQ5+KRBwRqUOK1b7tfvs4R8bP/UryOL3vePbB7JD+2su5lf42XL0nOhWgif5+J ICHSab1FvQrowAGL1mvbHmZaGTQJd0kOPt5kUJT2chqJR/rqIfotOBhxNYPeFGGoh+ce mYbA== X-Gm-Message-State: ALoCoQl8ueuQUlHKm9pKZPcX7tmOmtwccLkfr3Ow2GX6t22mzEr5HzWG/Dx9IhryuT52+b0K/bMz X-Received: by 10.140.23.133 with SMTP id 5mr26373612qgp.84.1431523791916; Wed, 13 May 2015 06:29:51 -0700 (PDT) Received: from localhost.localdomain (ool-4353acd8.dyn.optonline.net. [67.83.172.216]) by mx.google.com with ESMTPSA id g184sm15545525qhc.6.2015.05.13.06.29.50 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 13 May 2015 06:29:51 -0700 (PDT) From: Patrick Palka To: gdb-patches@sourceware.org Cc: Patrick Palka Subject: [PATCH] [COMMITTED] Fix PR gdb/17820 Date: Wed, 13 May 2015 09:29:42 -0400 Message-Id: <1431523782-20409-1-git-send-email-patrick@parcs.ath.cx> This patch is a comprehensive fix for PR 17820 which reports that using "set history size unlimited" inside one's gdbinit file doesn't really work. There are three small changes in this patch. The most important change this patch makes is to decode the argument of the "size" subcommand using add_setshow_zuinteger_unlimited_cmd() instead of using add_setshow_uinteger_cmd(). The new decoder takes an int * and maps unlimited to -1 whereas the old decoder takes an unsigned int * and maps unlimited to UINT_MAX. Using the new decoder simplifies our handling of unlimited and makes it easier to interface with readline which itself expects a signed-int history size. The second change is the factoring of the [stifle|unstifle]_history logic into a common function which is now used by both init_history() and set_history_size_command(). This is technically the change that fixes the PR itself. Thirdly, this patch initializes history_size_setshow_var to -2 to mean that the variable has not been set yet. Now init_history() tests for -2 instead of 0 to determine whether to give the variable a default value. This means that having "set history size 0" in one's gdbinit file will actually keep the history size at 0 and not reset it to 256. gdb/ChangeLog: PR gdb/17820 * top.c (history_size_setshow_var): Change type to signed. Initialize to -2. Update documentation. (set_readline_history_size): Define. (set_history_size_command): Use it. Remove logic for handling out-of-range sizes. (init_history): Use set_readline_history_size(). Test for a value of -2 instead of 0 when determining whether to set a default history size. (init_main): Decode the argument of the "size" command as a zuinteger_unlimited. gdb/testsuite/ChangeLog: PR gdb/17820 * gdb.base/gdbinit-history.exp: New test. * gdb.base/gdbinit-history/unlimited/.gdbinit: New file. * gdb.base/gdbinit-history/zero/.gdbinit: New file. --- gdb/ChangeLog | 14 ++++++ gdb/testsuite/ChangeLog | 7 +++ gdb/testsuite/gdb.base/gdbinit-history.exp | 51 +++++++++++++++++++++ .../gdb.base/gdbinit-history/unlimited/.gdbinit | 1 + .../gdb.base/gdbinit-history/zero/.gdbinit | 1 + gdb/top.c | 53 +++++++++------------- 6 files changed, 96 insertions(+), 31 deletions(-) create mode 100644 gdb/testsuite/gdb.base/gdbinit-history.exp create mode 100644 gdb/testsuite/gdb.base/gdbinit-history/unlimited/.gdbinit create mode 100644 gdb/testsuite/gdb.base/gdbinit-history/zero/.gdbinit diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 61bc846..082886e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,17 @@ +2015-05-13 Patrick Palka + + PR gdb/17820 + * top.c (history_size_setshow_var): Change type to signed. + Initialize to -2. Update documentation. + (set_readline_history_size): Define. + (set_history_size_command): Use it. Remove logic for handling + out-of-range sizes. + (init_history): Use set_readline_history_size(). Test for a + value of -2 instead of 0 when determining whether to set a + default history size. + (init_main): Decode the argument of the "size" command as a + zuinteger_unlimited. + 2015-05-12 Doug Evans * dwarf2read.c (struct file_entry): Tweak comments. diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 52140bd..db8f3ce 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2015-05-13 Patrick Palka + + PR gdb/17820 + * gdb.base/gdbinit-history.exp: New test. + * gdb.base/gdbinit-history/unlimited/.gdbinit: New file. + * gdb.base/gdbinit-history/zero/.gdbinit: New file. + 2015-05-09 Siva Chandra Reddy * gdb.python/py-xmethods.cc: Enhance test case. diff --git a/gdb/testsuite/gdb.base/gdbinit-history.exp b/gdb/testsuite/gdb.base/gdbinit-history.exp new file mode 100644 index 0000000..474680a --- /dev/null +++ b/gdb/testsuite/gdb.base/gdbinit-history.exp @@ -0,0 +1,51 @@ +# Copyright 2015 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 . + +# This file is part of the gdb testsuite. + +# Test the setting of "history size" via $HOME/.gdbinit + + +# Check that the history size is properly set to SIZE when reading the .gdbinit +# file located in HOME. + +proc test_gdbinit_history_setting { home size } { + global env + global INTERNAL_GDBFLAGS + global srcdir + global subdir + + set old_home $env(HOME) + set env(HOME) "$srcdir/$subdir/$home" + set saved_internal_gdbflags $INTERNAL_GDBFLAGS + set INTERNAL_GDBFLAGS [string map {"-nx" ""} $INTERNAL_GDBFLAGS] + + gdb_exit + gdb_start + + gdb_test "show history size" "The size of the command history is $size." + + if { $size == "0" } { + gdb_test_no_output "show commands" + } elseif { $size != "1" } { + gdb_test "show commands" " . show history size\r\n . show commands" + } + + set INTERNAL_GDBFLAGS $saved_internal_gdbflags + set $env(HOME) $old_home +} + +test_gdbinit_history_setting "gdbinit-history/unlimited" "unlimited" +test_gdbinit_history_setting "gdbinit-history/zero" "0" diff --git a/gdb/testsuite/gdb.base/gdbinit-history/unlimited/.gdbinit b/gdb/testsuite/gdb.base/gdbinit-history/unlimited/.gdbinit new file mode 100644 index 0000000..6604d8f --- /dev/null +++ b/gdb/testsuite/gdb.base/gdbinit-history/unlimited/.gdbinit @@ -0,0 +1 @@ +set history size unlimited diff --git a/gdb/testsuite/gdb.base/gdbinit-history/zero/.gdbinit b/gdb/testsuite/gdb.base/gdbinit-history/zero/.gdbinit new file mode 100644 index 0000000..7cd6b24 --- /dev/null +++ b/gdb/testsuite/gdb.base/gdbinit-history/zero/.gdbinit @@ -0,0 +1 @@ +set history size 0 diff --git a/gdb/top.c b/gdb/top.c index deb4108..74e1e07 100644 --- a/gdb/top.c +++ b/gdb/top.c @@ -687,8 +687,8 @@ show_write_history_p (struct ui_file *file, int from_tty, } /* The variable associated with the "set/show history size" - command. */ -static unsigned int history_size_setshow_var; + command. The value -1 means unlimited, and -2 means undefined. */ +static int history_size_setshow_var = -2; static void show_history_size (struct ui_file *file, int from_tty, @@ -1610,34 +1610,26 @@ show_commands (char *args, int from_tty) } } +/* Update the size of our command history file to HISTORY_SIZE. + + A HISTORY_SIZE of -1 stands for unlimited. */ + +static void +set_readline_history_size (int history_size) +{ + gdb_assert (history_size >= -1); + + if (history_size == -1) + unstifle_history (); + else + stifle_history (history_size); +} + /* Called by do_setshow_command. */ static void set_history_size_command (char *args, int from_tty, struct cmd_list_element *c) { - /* Readline's history interface works with 'int', so it can only - handle history sizes up to INT_MAX. The command itself is - uinteger, so UINT_MAX means "unlimited", but we only get that if - the user does "set history size 0" -- "set history size " - throws out-of-range. */ - if (history_size_setshow_var > INT_MAX - && history_size_setshow_var != UINT_MAX) - { - unsigned int new_value = history_size_setshow_var; - - /* Restore previous value before throwing. */ - if (history_is_stifled ()) - history_size_setshow_var = history_max_entries; - else - history_size_setshow_var = UINT_MAX; - - error (_("integer %u out of range"), new_value); - } - - /* Commit the new value to readline's history. */ - if (history_size_setshow_var == UINT_MAX) - unstifle_history (); - else - stifle_history (history_size_setshow_var); + set_readline_history_size (history_size_setshow_var); } void @@ -1705,12 +1697,10 @@ init_history (void) history_size_setshow_var = var; } /* If the init file hasn't set a size yet, pick the default. */ - else if (history_size_setshow_var == 0) + else if (history_size_setshow_var == -2) history_size_setshow_var = 256; - /* Note that unlike "set history size 0", "HISTSIZE=0" really sets - the history size to 0... */ - stifle_history (history_size_setshow_var); + set_readline_history_size (history_size_setshow_var); tmpenv = getenv ("GDBHISTFILE"); if (tmpenv) @@ -1859,7 +1849,8 @@ Without an argument, saving is enabled."), show_write_history_p, &sethistlist, &showhistlist); - add_setshow_uinteger_cmd ("size", no_class, &history_size_setshow_var, _("\ + add_setshow_zuinteger_unlimited_cmd ("size", no_class, + &history_size_setshow_var, _("\ Set the size of the command history,"), _("\ Show the size of the command history,"), _("\ ie. the number of previous commands to keep a record of.\n\