From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruno =?UTF-8?B?RsOpbGl4?= Rezende Ribeiro Subject: Re: [PATCH] Emacs Org Babel Scheme (Geiser) support Date: Wed, 7 Aug 2013 23:33:13 -0300 Message-ID: <20130808022823.64AE311C6@fruiteater.riseup.net> References: <20130805230019.48F5FA4A@fruiteater.riseup.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=PGP-SHA1; boundary="Sig_/jyRlZudbevpSUlfI=azo70A"; protocol="application/pgp-signature" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42399) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V7Fxp-0000Fn-7D for emacs-orgmode@gnu.org; Wed, 07 Aug 2013 22:28:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V7Fxk-0007nH-SI for emacs-orgmode@gnu.org; Wed, 07 Aug 2013 22:28:33 -0400 Received: from mx1.riseup.net ([198.252.153.129]:47072) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V7Fxk-0007n5-IQ for emacs-orgmode@gnu.org; Wed, 07 Aug 2013 22:28:28 -0400 Received: from fruiteater.riseup.net (fruiteater-pn.riseup.net [10.0.1.74]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "Gandi Standard SSL CA" (not verified)) by mx1.riseup.net (Postfix) with ESMTPS id 4260F44A39 for ; Wed, 7 Aug 2013 19:28:27 -0700 (PDT) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --Sig_/jyRlZudbevpSUlfI=azo70A Content-Type: multipart/mixed; boundary="MP_/s9yT9S.1_lkIVsDIJ9Q__+i" --MP_/s9yT9S.1_lkIVsDIJ9Q__+i Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Em Tue, 6 Aug 2013 23:32:20 +0000 (UTC) Michael Gauland escreveu: > Thanks for such a well-written, well-documented, and most of all > useful contribution! Definitely a big improvement over my initial > implementation. Thank you --- you're welcome. I'm also very grateful for your contribution to Babel. > I've applied the patch to my system, but I'm having trouble getting > it to work--I'm not getting any results. For example, this block: > > #+BEGIN_SRC scheme > (display "This is the output") > "This is the value" > #+END_SRC > > Returns nil, whether I'm asking for output or value. Your example is yielding the intended results on my system. > I'm running emacs 23.4.1 on Debian wheezy, with Geiser 3.0. I'm running GNU Emacs 24.1 on my own GNU, with Geiser 0.4. That is the latest version of Geiser (May 2013)[fn:1], perhaps your problem resides there[fn:2]. > Could you send me a copy of your ob-scheme.el to help me track this > down? Sure. It is attached. -- ,=3D ,-_-. =3D. Bruno F=C3=A9lix Rezende Ribeiro (oitofelix) [0x28D618AF] ((_/)o o(\_)) There is no system but GNU; `-'(. .)`-' Linux-libre is just one of its kernels; \_/ All software should be free as in freedom; * Footnotes [fn:1] http://geiser.nongnu.org/ [fn:2] I wonder whether you have misspelled your Geiser version. --MP_/s9yT9S.1_lkIVsDIJ9Q__+i Content-Type: text/x-emacs-lisp Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename=ob-scheme.el ;;; ob-scheme.el --- org-babel functions for Scheme ;; Copyright (C) 2010-2013 Free Software Foundation, Inc. ;; Authors: Eric Schulte, Michael Gauland ;; Keywords: literate programming, reproducible research, scheme ;; Homepage: http://orgmode.org ;; This file is part of GNU Emacs. ;; GNU Emacs 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. ;; GNU Emacs 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 GNU Emacs. If not, see . ;;; Commentary: ;; Now working with SBCL for both session and external evaluation. ;; ;; This certainly isn't optimally robust, but it seems to be working ;; for the basic use cases. ;;; Requirements: ;; - a working scheme implementation ;; (e.g. guile http://www.gnu.org/software/guile/guile.html) ;; ;; - for session based evaluation geiser is required, which is available fr= om ;; ELPA. ;;; Code: (require 'ob) (require 'geiser nil t) (defvar geiser-repl--repl) ; Defined in geiser-repl.el (defvar geiser-impl--implementation) ; Defined in geiser-impl.el (defvar geiser-default-implementation) ; Defined in geiser-impl.el (defvar geiser-active-implementations) ; Defined in geiser-impl.el (declare-function run-geiser "geiser-repl" (impl)) (declare-function geiser-mode "geiser-mode" ()) (declare-function geiser-eval-region "geiser-mode" (start end &optional and= -go raw nomsg)) (declare-function geiser-repl-exit "geiser-repl" (&optional arg)) (defvar org-babel-default-header-args:scheme '() "Default header arguments for scheme code blocks.") (defun org-babel-expand-body:scheme (body params) "Expand BODY according to PARAMS, return the expanded body." (let ((vars (mapcar #'cdr (org-babel-get-header params :var)))) (if (> (length vars) 0) (concat "(let (" (mapconcat (lambda (var) (format "%S" (print `(,(car var) ',(cdr var)= )))) vars "\n ") ")\n" body ")") body))) (defvar org-babel-scheme-repl-map (make-hash-table :test 'equal) "Map of scheme sessions to session names.") (defun org-babel-scheme-cleanse-repl-map () "Remove dead buffers from the REPL map." (maphash (lambda (x y) (when (not (buffer-name y)) (remhash x org-babel-scheme-repl-map))) org-babel-scheme-repl-map)) (defun org-babel-scheme-get-session-buffer (session-name) "Look up the scheme buffer for a session; return nil if it doesn't exist." (org-babel-scheme-cleanse-repl-map) ; Prune dead sessions (gethash session-name org-babel-scheme-repl-map)) (defun org-babel-scheme-set-session-buffer (session-name buffer) "Record the scheme buffer used for a given session." (puthash session-name buffer org-babel-scheme-repl-map)) (defun org-babel-scheme-get-buffer-impl (buffer) "Returns the scheme implementation geiser associates with the buffer." (with-current-buffer (set-buffer buffer) geiser-impl--implementation)) (defun org-babel-scheme-get-repl (impl name) "Switch to a scheme REPL, creating it if it doesn't exist:" (let ((buffer (org-babel-scheme-get-session-buffer name)) (window-cfg (current-window-configuration))) (or buffer (progn (run-geiser impl) (setq buffer (current-buffer)) (if name (progn (rename-buffer name t) (org-babel-scheme-set-session-buffer name buffer))) (set-window-configuration window-cfg) buffer)))) (defun org-babel-scheme-make-session-name (buffer name impl) "Generate a name for the session buffer. For a named session, the buffer name will be the session name. If the session is unnamed (nil), generate a name. If the session is 'none', use nil for the session name, and org-babel-scheme-execute-with-geiser will use a temporary session." (let ((result (cond ((not name) (concat buffer " " (symbol-name impl) " REPL")) ((string=3D name "none") nil) (name)))) result)) (defun org-babel-scheme-execute-with-geiser (code output impl repl) "Execute code in specified REPL. If the REPL doesn't exist, create it using the given scheme implementation. Returns the output of executing the code if the output parameter is true; otherwise returns the last value." (let ((result nil)) (with-temp-buffer (insert (format ";; -*- geiser-scheme-implementation: %s -*-" impl)) (newline) (insert code) (geiser-mode) (let ((repl-buffer (save-current-buffer (org-babel-scheme-get-repl impl repl)))) (when (not (eq impl (org-babel-scheme-get-buffer-impl (current-buffer)))) (message "Implementation mismatch: %s (%s) %s (%s)" impl (symbolp impl) (org-babel-scheme-get-buffer-impl (current-buffer)) (symbolp (org-babel-scheme-get-buffer-impl (current-buffer))))) (setq geiser-repl--repl repl-buffer) (setq geiser-impl--implementation nil) (setq result (let ((window-cfg (current-window-configuration)) (pre-result (geiser-eval-region (point-min) (point-max)))) (set-window-configuration window-cfg) (if (or (assq 'error pre-result) output) (format "\"%s\"" (cdr (assq 'output pre-result))) (cadr (assq 'result pre-result))))) (when (not repl) (save-current-buffer (set-buffer repl-buffer) (geiser-repl-exit)) (set-process-query-on-exit-flag (get-buffer-process repl-buffer) nil) (kill-buffer repl-buffer)) (setq result (if (or (string=3D result "#") (string=3D result "#")) nil (read result))))) result)) (defun org-babel-execute:scheme (body params) "Execute a block of Scheme code with org-babel. This function is called by `org-babel-execute-src-block'" (let* ((source-buffer (current-buffer)) (source-buffer-name (replace-regexp-in-string ;; zap surrounding * "^ ?\\*\\([^*]+\\)\\*" "\\1" (buffer-name source-buffer)))) (save-excursion (org-babel-reassemble-table (let* ((result-type (cdr (assoc :result-type params))) (impl (or (when (cdr (assoc :scheme params)) (intern (cdr (assoc :scheme params)))) geiser-default-implementation (car geiser-active-implementations))) (session (org-babel-scheme-make-session-name source-buffer-name (cdr (assoc :session params)) impl)) (full-body (org-babel-expand-body:scheme body params))) (org-babel-scheme-execute-with-geiser full-body ; code (string=3D result-type "output") ; output? impl ; implementation (and (not (string=3D session "none")) session))) ; session (org-babel-pick-name (cdr (assoc :colname-names params)) (cdr (assoc :colnames params))) (org-babel-pick-name (cdr (assoc :rowname-names params)) (cdr (assoc :rownames params))))))) (provide 'ob-scheme) ;;; ob-scheme.el ends here --MP_/s9yT9S.1_lkIVsDIJ9Q__+i-- --Sig_/jyRlZudbevpSUlfI=azo70A Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iQEcBAEBAgAGBQJSAwNpAAoJECe5xv0o1hiviWcIAJVg1ZX2b+tOzbnqjMnVFWvZ aSFxxDvewBfvr9vZIFaf/EsyS/U5z2YwwqX9gcAog49g7Zt3zV9/kasgOZn3fYkN gMRnYlAbCv+RyiymTSWHVk2muySGppmrXZjufild3Q106xCU0+8pXZuNKVFcdl9I +s2awIKBAoxT3Rx+ZKnM+Lfhyd64ahN6JiTEIju6k4EfskHLQg9kFUHK/b5RFVD8 HQ0LB19/Pd9MmeB17OwuXHfizjoJ3nRAXkiH9CtLjeYtpKUTDcAAOJrJSHIUAq6z Kwjiqtmkp6h2hyWb7ti+EPoYOhlAv5Hy6MU1qANv55n4PNcw5spqAfFwjtD3pBg= =sEzj -----END PGP SIGNATURE----- --Sig_/jyRlZudbevpSUlfI=azo70A--