git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
From: Phillip Wood <phillip.wood123@gmail.com>
To: Git Mailing List <git@vger.kernel.org>
Cc: "Phillip Wood" <phillip.wood@dunelm.org.uk>,
	"Ævar Arnfjörð Bjarmason" <avarab@gmail.com>,
	"Carlo Arenas" <carenas@gmail.com>,
	"Johannes Schindelin" <Johannes.Schindelin@gmx.de>,
	"Ramsay Jones" <ramsay@ramsayjones.plus.com>
Subject: [PATCH v2 0/4] builtin add -p: hopefully final readkey fixes
Date: Wed,  9 Mar 2022 11:03:21 +0000	[thread overview]
Message-ID: <20220309110325.36917-1-phillip.wood123@gmail.com> (raw)
In-Reply-To: <20220304131126.8293-1-phillip.wood123@gmail.com>

From: Phillip Wood <phillip.wood@dunelm.org.uk>

Thanks to Ramsay and Ævar for their comments on V1.
Changes since V1:
 * Patch 1
   - use an enum for save_term()'s flags (suggested by Ævar)
   - fixed argument order in the windows code (thanks to Ramsay)
 * Patch 2
   - fixed a typo in a comment (thanks to Ramsay)
 * Patch 4
   - stopped duplicating the strings returned by gettext() (suggested by
     Ævar)
   - reworked error message handling in the signal handler to add an
     "error: " prefix (suggested by Ævar)
   - tweaked the background resume error message

V1 Cover Letter:

Fix the remaining issues that I'm aware of when using the built in
"add -p" with interactive.singlekey that are stopping it from being
merged to master. The first three patches make sure that we call
tcsetattr() and the same file descriptor that we use for read() and
work around poll() being broken when reading from terminals on
macos. The final patch is more of an improvement rather than a bug fix
(the same issue already exists in the perl version) and could proceed
separately.

Unfortunately these patches conflict with
'cb/save-term-across-editor-invocation' as well as the textual
conflicts there is a semantic conflict as the argument to save_term()
is changed so the code in editor.c will need updating.

These patches are based on 'pw/single-key-interactive'

Phillip Wood (4):
  terminal: use flags for save_term()
  terminal: don't assume stdin is /dev/tty
  terminal: work around macos poll() bug
  terminal: restore settings on SIGTSTP

 compat/terminal.c | 206 +++++++++++++++++++++++++++++++++++++++-------
 compat/terminal.h |   9 +-
 2 files changed, 186 insertions(+), 29 deletions(-)

Range-diff against v1:
1:  6961a4e0dc ! 1:  fac5a0f5b7 terminal: use flags for save_term()
    @@ Commit message
         terminal: use flags for save_term()
     
         The next commit will add another flag in addition to the existing
    -    full_duplex so change the function signature to take an unsigned flags
    +    full_duplex so change the function signature to take a flags
         argument. Also alter the functions that call save_term() so that they
         can pass flags down to it.
     
    +    The choice to use an enum for tho bitwise flags is because gdb will
    +    display the symbolic names of all the flags that are set rather than
    +    the integer value.
    +
         Signed-off-by: Phillip Wood <phillip.wood@dunelm.org.uk>
     
      ## compat/terminal.c ##
    @@ compat/terminal.c: void restore_term(void)
      }
      
     -int save_term(int full_duplex)
    -+int save_term(unsigned flags)
    ++int save_term(enum save_term_flags flags)
      {
      	if (term_fd < 0)
      		term_fd = open("/dev/tty", O_RDWR);
    @@ compat/terminal.c: int save_term(int full_duplex)
      }
      
     -static int disable_bits(tcflag_t bits)
    -+static int disable_bits(unsigned flags, tcflag_t bits)
    ++static int disable_bits(enum save_term_flags flags, tcflag_t bits)
      {
      	struct termios t;
      
    @@ compat/terminal.c: static int disable_bits(tcflag_t bits)
      }
      
     -static int disable_echo(void)
    -+static int disable_echo(unsigned flags)
    ++static int disable_echo(enum save_term_flags flags)
      {
     -	return disable_bits(ECHO);
     +	return disable_bits(flags, ECHO);
      }
      
     -static int enable_non_canonical(void)
    -+static int enable_non_canonical(unsigned flags)
    ++static int enable_non_canonical(enum save_term_flags flags)
      {
     -	return disable_bits(ICANON | ECHO);
     +	return disable_bits(flags, ICANON | ECHO);
    @@ compat/terminal.c: void restore_term(void)
      }
      
     -int save_term(int full_duplex)
    -+int save_term(unsigned flags)
    ++int save_term(enum save_term_flags flags)
      {
      	hconin = CreateFileA("CONIN$", GENERIC_READ | GENERIC_WRITE,
      	    FILE_SHARE_READ, NULL, OPEN_EXISTING,
    @@ compat/terminal.c: int save_term(int full_duplex)
      }
      
     -static int disable_bits(DWORD bits)
    -+static int disable_bits(unsigned flags, DWORD bits)
    ++static int disable_bits(enum save_term_flags flags, DWORD bits)
      {
      	if (use_stty) {
      		struct child_process cp = CHILD_PROCESS_INIT;
    @@ compat/terminal.c: static int disable_bits(DWORD bits)
      }
      
     -static int disable_echo(void)
    -+static int disable_echo(unsigned flags)
    ++static int disable_echo(enum save_term_flags flags)
      {
     -	return disable_bits(ENABLE_ECHO_INPUT);
    -+	return disable_bits(ENABLE_ECHO_INPUT, flags);
    ++	return disable_bits(flags, ENABLE_ECHO_INPUT);
      }
      
     -static int enable_non_canonical(void)
    -+static int enable_non_canonical(unsigned flags)
    ++static int enable_non_canonical(enum save_term_flags flags)
      {
     -	return disable_bits(ENABLE_ECHO_INPUT | ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT);
    -+	return disable_bits(ENABLE_ECHO_INPUT | ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT,
    -+			    flags);
    ++	return disable_bits(flags,
    ++			    ENABLE_ECHO_INPUT | ENABLE_LINE_INPUT | ENABLE_PROCESSED_INPUT);
      }
      
      /*
    @@ compat/terminal.c: int read_key_without_echo(struct strbuf *buf)
      #else
      
     -int save_term(int full_duplex)
    -+int save_term(unsigned flags)
    ++int save_term(enum save_term_flags flags)
      {
     -	/* full_duplex == 1, but no support available */
     -	return -full_duplex;
    @@ compat/terminal.h
      #ifndef COMPAT_TERMINAL_H
      #define COMPAT_TERMINAL_H
      
    -+/* Save input and output settings */
    -+#define SAVE_TERM_DUPLEX (1u << 0)
    ++enum save_term_flags {
    ++	/* Save input and output settings */
    ++	SAVE_TERM_DUPLEX = 1 << 0,
    ++};
     +
      /*
       * Save the terminal attributes so they can be restored later by a
2:  45315087d4 ! 2:  bf29460ec6 terminal: don't assume stdin is /dev/tty
    @@ Commit message
     
      ## compat/terminal.c ##
     @@ compat/terminal.c: void restore_term(void)
    - int save_term(unsigned flags)
    + int save_term(enum save_term_flags flags)
      {
      	if (term_fd < 0)
     -		term_fd = open("/dev/tty", O_RDWR);
    @@ compat/terminal.c: int read_key_without_echo(struct strbuf *buf)
     
      ## compat/terminal.h ##
     @@
    + enum save_term_flags {
    + 	/* Save input and output settings */
    + 	SAVE_TERM_DUPLEX = 1 << 0,
    ++	/* Save stdin rather than /dev/tty (fails if stdin is not a terminal) */
    ++	SAVE_TERM_STDIN  = 1 << 1,
    + };
      
    - /* Save input and output settings */
    - #define SAVE_TERM_DUPLEX (1u << 0)
    --
    -+/* Save stdin rather than /dev/tty (fails is stdin is not a terminal) */
    -+#define SAVE_TERM_STDIN  (1u << 1)
      /*
    -  * Save the terminal attributes so they can be restored later by a
    -  * call to restore_term(). Note that every successful call to
4:  62703be209 ! 4:  dd0e1fabb1 terminal: restore settings on SIGTSTP
    @@ compat/terminal.c: static void restore_term_on_signal(int sig)
      static int term_fd = -1;
      static struct termios old_term;
      
    -+static char *background_resume_msg;
    -+static char *restore_error_msg;
    ++static const char *background_resume_msg;
    ++static const char *restore_error_msg;
     +static volatile sig_atomic_t ttou_received;
     +
    -+static void write_msg(const char *msg)
    ++static void write_err(const char *msg)
     +{
    ++	write_in_full(2, "error: ", strlen("error: "));
     +	write_in_full(2, msg, strlen(msg));
     +	write_in_full(2, "\n", 1);
     +}
    @@ compat/terminal.c: static void restore_term_on_signal(int sig)
     +	struct sigaction sa = { .sa_handler = SIG_DFL };
     +
     +	ttou_received = 1;
    -+	write_msg(background_resume_msg);
    ++	write_err(background_resume_msg);
     +	sigaction(signo, &sa, &old_sa);
     +	raise(signo);
     +	sigemptyset(&mask);
    @@ compat/terminal.c: static void restore_term_on_signal(int sig)
     +		can_restore = 0;
     +
     +	if (tcsetattr(term_fd, TCSAFLUSH, &old_term) < 0)
    -+		write_msg(restore_error_msg);
    ++		write_err(restore_error_msg);
     +
     +	sigaction(signo, &sa, &old_sa);
     +	raise(signo);
    @@ compat/terminal.c: static void restore_term_on_signal(int sig)
     +	sigprocmask(SIG_BLOCK, &mask, NULL);
     +	sigaction(signo, &old_sa, NULL);
     +	if (!can_restore) {
    -+		write_msg(restore_error_msg);
    ++		write_err(restore_error_msg);
     +		goto out;
     +	}
     +	/*
    @@ compat/terminal.c: static void restore_term_on_signal(int sig)
     +	if (ttou_received)
     +		goto again;
     +	else if (res < 0)
    -+		write_msg(restore_error_msg);
    ++		write_err(restore_error_msg);
     +	sigaction(SIGTTOU, &old_sa, NULL);
     + out:
     +	errno = saved_errno;
    @@ compat/terminal.c: void restore_term(void)
     +		signal(SIGTTIN, SIG_DFL);
     +		signal(SIGTTOU, SIG_DFL);
     +		signal(SIGTSTP, SIG_DFL);
    -+		FREE_AND_NULL(restore_error_msg);
    -+		FREE_AND_NULL(background_resume_msg);
    ++		restore_error_msg = NULL;
    ++		background_resume_msg = NULL;
     +	}
      }
      
    - int save_term(unsigned flags)
    + int save_term(enum save_term_flags flags)
      {
     +	struct sigaction sa;
     +
      	if (term_fd < 0)
      		term_fd = (flags & SAVE_TERM_STDIN) ? 0
      						    : open("/dev/tty", O_RDWR);
    -@@ compat/terminal.c: int save_term(unsigned flags)
    +@@ compat/terminal.c: int save_term(enum save_term_flags flags)
      	if (tcgetattr(term_fd, &old_term) < 0)
      		return -1;
      	sigchain_push_common(restore_term_on_signal);
    @@ compat/terminal.c: int save_term(unsigned flags)
     +		return 0;
     +
     +	/* avoid calling gettext() from signal handler */
    -+	background_resume_msg = xstrdup(_("error: cannot resume in the background"));
    -+	restore_error_msg = xstrdup(_("error: cannot restore terminal settings"));
    ++	background_resume_msg = _("cannot resume in the background, please use 'fg' to resume");
    ++	restore_error_msg = _("cannot restore terminal settings");
     +	sa.sa_handler = restore_terminal_on_suspend;
     +	sa.sa_flags = SA_RESTART;
     +	sigemptyset(&sa.sa_mask);
-- 
2.35.1


  parent reply	other threads:[~2022-03-09 11:04 UTC|newest]

Thread overview: 53+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-04 13:11 [PATCH 0/4] builtin add -p: hopefully final readkey fixes Phillip Wood
2022-03-04 13:11 ` [PATCH 1/4] terminal: use flags for save_term() Phillip Wood
2022-03-04 20:40   ` Ramsay Jones
2022-03-07 11:11     ` Phillip Wood
2022-03-07 20:21       ` Ramsay Jones
2022-03-08 10:41         ` Phillip Wood
2022-03-05 14:02   ` Ævar Arnfjörð Bjarmason
2022-03-07 10:45     ` Phillip Wood
2022-03-07 12:06       ` Ævar Arnfjörð Bjarmason
2022-03-04 13:11 ` [PATCH 2/4] terminal: don't assume stdin is /dev/tty Phillip Wood
2022-03-04 20:42   ` Ramsay Jones
2022-03-04 13:11 ` [PATCH 3/4] terminal: work around macos poll() bug Phillip Wood
2022-03-04 13:11 ` [PATCH 4/4] terminal: restore settings on SIGTSTP Phillip Wood
2022-03-05 13:59   ` Ævar Arnfjörð Bjarmason
2022-03-07 10:53     ` Phillip Wood
2022-03-07 11:49       ` Ævar Arnfjörð Bjarmason
2022-03-07 13:49         ` Phillip Wood
2022-03-07 14:45           ` Ævar Arnfjörð Bjarmason
2022-03-08 10:54             ` Phillip Wood
2022-03-09 12:19   ` Johannes Schindelin
2022-03-10 16:06     ` Phillip Wood
2022-03-09 11:03 ` Phillip Wood [this message]
2022-03-09 11:03   ` [PATCH v2 1/4] terminal: use flags for save_term() Phillip Wood
2022-03-11 16:52     ` Carlo Arenas
2022-03-14 10:49       ` Phillip Wood
2022-03-09 11:03   ` [PATCH v2 2/4] terminal: don't assume stdin is /dev/tty Phillip Wood
2022-03-09 11:03   ` [PATCH v2 3/4] terminal: work around macos poll() bug Phillip Wood
2022-03-10 13:35     ` Ævar Arnfjörð Bjarmason
2022-03-10 16:02       ` Phillip Wood
2022-03-10 18:02         ` Junio C Hamano
2022-03-09 11:03   ` [PATCH v2 4/4] terminal: restore settings on SIGTSTP Phillip Wood
2022-03-09 23:10   ` [PATCH v2 0/4] builtin add -p: hopefully final readkey fixes Junio C Hamano
2022-03-09 23:37     ` Junio C Hamano
2022-03-10 13:28       ` Phillip Wood
2022-03-10 18:18         ` Phillip Wood
2022-03-10 18:53           ` Junio C Hamano
2022-03-10 13:25   ` Johannes Schindelin
2022-03-10 16:08     ` Phillip Wood
2022-03-15 10:57 ` [PATCH v3 " Phillip Wood
2022-03-15 10:57   ` [PATCH v3 1/4] terminal: use flags for save_term() Phillip Wood
2022-03-15 10:57   ` [PATCH v3 2/4] terminal: don't assume stdin is /dev/tty Phillip Wood
2022-03-15 17:42     ` Junio C Hamano
2022-03-15 18:01       ` rsbecker
2022-03-15 19:05         ` Junio C Hamano
2022-03-15 19:38           ` rsbecker
2022-03-15 10:57   ` [PATCH v3 3/4] terminal: work around macos poll() bug Phillip Wood
2022-03-15 10:57   ` [PATCH v3 4/4] terminal: restore settings on SIGTSTP Phillip Wood
2022-03-15 17:51     ` Junio C Hamano
2022-03-16 18:54 ` [PATCH v4 0/4] builtin add -p: hopefully final readkey fixes Phillip Wood
2022-03-16 18:54   ` [PATCH v4 1/4] terminal: use flags for save_term() Phillip Wood
2022-03-16 18:54   ` [PATCH v4 2/4] terminal: don't assume stdin is /dev/tty Phillip Wood
2022-03-16 18:54   ` [PATCH v4 3/4] terminal: work around macos poll() bug Phillip Wood
2022-03-16 18:54   ` [PATCH v4 4/4] terminal: restore settings on SIGTSTP Phillip Wood

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

  List information: http://vger.kernel.org/majordomo-info.html

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

  git send-email \
    --in-reply-to=20220309110325.36917-1-phillip.wood123@gmail.com \
    --to=phillip.wood123@gmail.com \
    --cc=Johannes.Schindelin@gmx.de \
    --cc=avarab@gmail.com \
    --cc=carenas@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=phillip.wood@dunelm.org.uk \
    --cc=ramsay@ramsayjones.plus.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.
Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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).