zsh-users
 help / color / mirror / code / Atom feed
From: Bart Schaefer <schaefer@brasslantern.com>
To: zsh-users@zsh.org
Subject: Re: precmd: write error: interrupted
Date: Thu, 25 Apr 2013 15:18:39 -0700	[thread overview]
Message-ID: <130425151839.ZM17476@torch.brasslantern.com> (raw)
In-Reply-To: <20130425193817.2f82b60c@pws-pc.ntlworld.com>

On Apr 25,  7:38pm, Peter Stephenson wrote:
} Subject: Re: precmd: write error: interrupted
}
} On Thu, 25 Apr 2013 11:16:46 -0700
} Bart Schaefer <schaefer@brasslantern.com> wrote:
} > } 1) SIGWINCH should either be masked or allow write to restart.
} > 
} > This requires some thought about the appropriate layer to handle this.
} > bin_print does already do some signal queuing when writing to internal
} > data structures (print -z, print -s), but that's deliberately isolated
} > to bin_print, whereas all sorts of other things might write to the
} > terminal -- including other error messages! -- so patching bin_print is
} > not covering all the bases.
} 
} Certainly true, but I'm hesitant to do nothing

I'm not suggesting doing nothing, just haven't decided yet what's the
right thing.

} Explicit user output via print and error messages via
} zsh's own error and warning functions are two cases that cover quite a
} lot.  If there's already signal queuing in print, is it up to snuff?

It's using queue_signals()/unqueue_signals() which of course queues
*all* signals.  I don't think we want to do that in the "ordinary" case,
it introduces side-effects like loops you can't interrupt with ctrl-C.

} Is there ever a good reason for allowing a single print to be
} interrupted at the point of output --- surely it's always going to do
} unhelpful things?

Consider something like:

    x=({1..1000000}
    print $x

If you can't ^C that print, you're potentially in a world of pain.  (It's
already enough of a problem that you can't ^C the assignment itself.)

} I don't think we'd want to queue interrupts round all builtins,
} but could we mark those that produce output but otherwise return
} immediately with a flag in the builtin table and do some queueing in
} the builtin handler?

I'm pretty sure SIGWINCH is an outlier case here and we should focus on
the question of when the shell SHOULD react to window size changes,
rather trying to identify all the builtins that should NOT react.

For example, we might *always* queue the SIGWINCH signal except when the
shell is blocked in zleread (or is about to, but hasn't yet, displayed
the prompt if ZLE is not active).  Those probably don't cover all the
cases, but you get the idea.


  reply	other threads:[~2013-04-25 22:19 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-25 16:47 Yuri D'Elia
2013-04-25 17:44 ` Yuri D'Elia
2013-04-25 18:27   ` Bart Schaefer
2013-04-25 18:16 ` Bart Schaefer
2013-04-25 18:38   ` Peter Stephenson
2013-04-25 22:18     ` Bart Schaefer [this message]
2013-04-26  0:52       ` Bart Schaefer
2013-04-25 19:38   ` Yuri D'Elia
2013-04-26  0:53     ` Bart Schaefer
2013-04-25 20:05   ` Yuri D'Elia
2013-04-25 20:58     ` Yuri D'Elia
2013-04-26 15:08     ` Bart Schaefer
     [not found]     ` <130426080805.ZM18619__18102.73175729$1366989065$gmane$org@torch.brasslantern.com>
2013-04-26 17:59       ` Yuri D'Elia

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=130425151839.ZM17476@torch.brasslantern.com \
    --to=schaefer@brasslantern.com \
    --cc=zsh-users@zsh.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
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://git.vuxu.org/mirror/zsh/

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 NNTP newsgroup(s).