From: Jeff King <peff@peff.net> To: Johannes Schindelin <Johannes.Schindelin@gmx.de> Cc: Alejandro Sanchez <asanchez1987@gmail.com>, git@vger.kernel.org Subject: Re: [PATCH 3/4] am: drop tty requirement for --interactive Date: Fri, 24 May 2019 02:27:24 -0400 Message-ID: <20190524062724.GC25694@sigill.intra.peff.net> (raw) In-Reply-To: <nycvar.QRO.7.76.6.1905230840450.46@tvgsbejvaqbjf.bet> On Thu, May 23, 2019 at 08:44:31AM +0200, Johannes Schindelin wrote: > > perl test-terminal.perl sh -c ' > > for i in 0 1 2; do > > echo $i is $(test -t $i || echo not) a tty > > done > > ' </dev/null > > > > it _usually_ says "0 is a tty", but racily may say "not a tty". If you > > put a sleep into the beginning of the shell, then it will basically > > always lose the race and say "not". > > This is just another nail in the coffin for `test-terminal.perl`, as far > as I am concerned. I think it's only broken for stdin, but yeah, it's not great. I think the fact that test-terminal is not available everywhere (and thus many people are skipping a bunch of tests) is much more damning. :) > In the built-in `add -i` patch series, I followed a strategy where I move > totally away from `test-terminal`, in favor of using some knobs to force > Git into thinking that we are in a terminal. I'm in favor of this. The current "add -i" is pretty accepting of reading from stdin, and I think we can do that in most places. The main use of test_terminal has been to check color and progress decisions. I'd be just as happy to see something like this: int git_isatty(int fd) { static int override[3]; static int initialized; if (!initialized) { const char *x = getenv("GIT_PRETEND_TTY"); if (x) { for (; *x; x++) { int n = *x - '0'; if (n > 0 && n < ARRAY_SIZE(override) override[n] = 1; } } initialized = 1; } if (fd > 0 && fd < ARRAY_SIZE(override) && override[fd]) return 1; return isatty(fd); } > But at the same time, I *also* remove the limitation (for most cases) of > "read from /dev/tty", in favor of reading from stdin, and making things > testable, and more importantly: scriptable. As far as I know, apart from this git-am fix, the only thing that reads from the terminal is the credential prompt. That one has to be a bit picky, because: - we need to prompt from processes which have no stdio connected to the user (e.g., remote-curl). - we need to put the terminal into no-echo mode for passwords (and probably should bail if that fails, to be paranoid) In the case of credentials we already have multiple mechanisms for scripting the input (credential helpers and askpass). It would be nice to be able to test the terminal-level code automatically, but I'm just not sure how that would work. -Peff
next prev parent reply other threads:[~2019-05-24 6:27 UTC|newest] Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-05-20 8:35 Abort (core dumped) Alejandro Sanchez 2019-05-20 10:02 ` Jeff King 2019-05-20 12:06 ` [PATCH 0/4] fix BUG() with "git am -i --resolved" Jeff King 2019-05-20 12:07 ` [PATCH 1/4] am: simplify prompt response handling Jeff King 2019-05-20 12:09 ` [PATCH 2/4] am: read interactive input from stdin Jeff King 2019-05-20 12:11 ` [PATCH 3/4] am: drop tty requirement for --interactive Jeff King 2019-05-20 12:50 ` Jeff King 2019-05-23 6:44 ` Johannes Schindelin 2019-05-24 6:27 ` Jeff King [this message] 2019-05-20 12:13 ` [PATCH 4/4] am: fix --interactive HEAD tree resolution Jeff King 2019-05-23 7:12 ` Johannes Schindelin 2019-05-24 6:39 ` Jeff King 2019-05-24 6:46 ` [PATCH v2 " Jeff King 2019-05-28 11:06 ` [PATCH " Johannes Schindelin 2019-05-28 21:35 ` Jeff King 2019-05-29 11:56 ` Johannes Schindelin 2019-09-26 14:20 ` Alejandro Sanchez 2019-09-26 21:11 ` Jeff King
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=20190524062724.GC25694@sigill.intra.peff.net \ --to=peff@peff.net \ --cc=Johannes.Schindelin@gmx.de \ --cc=asanchez1987@gmail.com \ --cc=git@vger.kernel.org \ /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
git@vger.kernel.org list mirror (unofficial, one of many) This inbox may be cloned and mirrored by anyone: git clone --mirror https://public-inbox.org/git git clone --mirror http://ou63pmih66umazou.onion/git git clone --mirror http://czquwvybam4bgbro.onion/git git clone --mirror http://hjrcffqmbrq6wope.onion/git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V1 git git/ https://public-inbox.org/git \ git@vger.kernel.org public-inbox-index git Example config snippet for mirrors. Newsgroups are available over NNTP: nntp://news.public-inbox.org/inbox.comp.version-control.git nntp://ou63pmih66umazou.onion/inbox.comp.version-control.git nntp://czquwvybam4bgbro.onion/inbox.comp.version-control.git nntp://hjrcffqmbrq6wope.onion/inbox.comp.version-control.git nntp://news.gmane.io/gmane.comp.version-control.git note: .onion URLs require Tor: https://www.torproject.org/ code repositories for the project(s) associated with this inbox: https://80x24.org/mirrors/git.git AGPL code for this site: git clone https://public-inbox.org/public-inbox.git