all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: John Wiegley <jwiegley@gmail.com>
To: emacs-devel@gnu.org
Subject: Re: async.el: A simple asynchronous framework for Emacs
Date: Wed, 20 Jun 2012 00:34:46 -0500	[thread overview]
Message-ID: <m2r4ta8s21.fsf@gmail.com> (raw)
In-Reply-To: <jwvlijjx9jv.fsf-monnier+emacs@gnu.org> (Stefan Monnier's message of "Tue, 19 Jun 2012 17:46:15 -0400")

>>>>> Stefan Monnier <monnier@IRO.UMontreal.CA> writes:

> The byte-compiler uses prin1 to generate the .elc files, so I'm pretty sure
> there's a way to solve this problem ;-)

Actually, I was being too pessimistic.  Byte-compiled forms are handled just
fine!

What I did run into is a bug communicating with the subprocess over stdin.
It happens if I use this function:

    (defun async-smtpmail-send-it ()
      (async-start
       `(lambda ()
          (require 'smtpmail)
          (with-temp-buffer
            (insert ,(buffer-substring-no-properties (point-min) (point-max)))
            ;; Pass in the variable environment for smtpmail
            ;;,(async-inject-variables
            ;;  "\\`\\(smtpmail\\|\\(user-\\)?mail\\)-"
            ;;  (lambda (symbol)
            ;;    (or (not (functionp sym))
            ;;        (symbolp sym)))
            ;;  "\\(\\`mail-header-format-function\\|-syntax-table\\|-mode-map\\)\\'")
            (setq mail-extr-trailing-comment-start-pattern '"[-{]\\|--\\|[+@#></;]")
            (setq smtpmail-debug-info 'nil)
            (setq mail-abbrev-mode-regexp
                  '"^\\(Resent-\\)?\\(To\\|From\\|CC\\|BCC\\|Reply-to\\):")
            (setq mail-send-actions 'nil)
            (setq mail-source-imap-streams
                  '((const gssapi)
                    (const kerberos4)
                    (const tls)
                    (const ssl)
                    (const network)
                    (const shell)
                    (const starttls)))
            (smtpmail-send-it))))
       'ignore))

All I see from the stdout of the child process is around 20 ^G characters, and
then it blocks waiting for input.  However, If I delete *any one* of the setq
statements above (it doesn't matter which), it works just fine.  So it doesn't
appear to be triggered by the length, or by any special characters.  I'm
having a tough time figuring this one out.

I've also implemented a message-passing scheme so one can implement status
updates for long-running async jobs, but I'm hesitant to enable it because it
relies on communicating over the pipe.

Until then, I pass the async lambda as a program argument, which means I'm
limited on maximum length to the OS limit (around 4k on Mac, I believe).

John



  parent reply	other threads:[~2012-06-20  5:34 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-06-19  2:51 async.el: A simple asynchronous framework for Emacs John Wiegley
2012-06-19  5:11 ` Thien-Thi Nguyen
2012-06-19  5:36   ` John Wiegley
2012-06-19 13:29 ` Stefan Monnier
2012-06-19 20:44   ` John Wiegley
2012-06-19 21:46     ` Stefan Monnier
2012-06-20  0:20       ` John Wiegley
2012-06-20  0:53         ` John Wiegley
2012-06-20  5:34       ` John Wiegley [this message]
2012-06-20  7:24         ` SAKURAI Masashi
2012-06-20  7:52           ` John Wiegley
2012-06-20  8:13             ` John Wiegley
2012-06-20  8:24               ` John Wiegley
2012-06-20  9:32               ` SAKURAI Masashi
2012-06-20 20:36         ` Thien-Thi Nguyen
2012-06-20 23:52           ` John Wiegley
2012-06-21 13:17             ` Thien-Thi Nguyen
2012-06-22 16:01               ` Le Wang
2012-06-22 20:07                 ` Thien-Thi Nguyen
2012-06-24  9:30                   ` Chong Yidong
2012-06-19 21:38 ` Christopher Allan Webber
2012-06-21  8:31 ` Thierry Volpiatto
     [not found]   ` <m2lijg8ibx.fsf@vulcan.local.i-did-not-set--mail-host-address--so-tickle-me>
     [not found]     ` <87a9zv1fw4.fsf@gmail.com>
     [not found]       ` <m2ehp73t8o.fsf@vulcan.local.i-did-not-set--mail-host-address--so-tickle-me>
     [not found]         ` <871ul63yky.fsf@gmail.com>
     [not found]           ` <m2zk7tzr5e.fsf@vulcan.local.i-did-not-set--mail-host-address--so-tickle-me>
     [not found]             ` <87395lyam9.fsf@gmail.com>
2012-06-26  0:05               ` John Wiegley
2012-06-26  9:41                 ` Thierry Volpiatto

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=m2r4ta8s21.fsf@gmail.com \
    --to=jwiegley@gmail.com \
    --cc=emacs-devel@gnu.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 external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.