Sync Org 7.9.2 from the commit tagged "release_7.9.2" in Org's Git repo.
[bpt/emacs.git] / lisp / org / ob-js.el
CommitLineData
afe98dfa
CD
1;;; ob-js.el --- org-babel functions for Javascript
2
dfd98937 3;; Copyright (C) 2010-2012 Free Software Foundation, Inc.
afe98dfa
CD
4
5;; Author: Eric Schulte
6;; Keywords: literate programming, reproducible research, js
7;; Homepage: http://orgmode.org
afe98dfa 8
c7557a0f 9;; This file is part of GNU Emacs.
afe98dfa 10
c7557a0f 11;; GNU Emacs is free software: you can redistribute it and/or modify
afe98dfa 12;; it under the terms of the GNU General Public License as published by
c7557a0f
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
afe98dfa
CD
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
c7557a0f 20
afe98dfa 21;; You should have received a copy of the GNU General Public License
c7557a0f 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
afe98dfa
CD
23
24;;; Commentary:
25
26;; Now working with SBCL for both session and external evaluation.
27;;
28;; This certainly isn't optimally robust, but it seems to be working
29;; for the basic use cases.
30
31;;; Requirements:
32
33;; - a non-browser javascript engine such as node.js http://nodejs.org/
34;; or mozrepl http://wiki.github.com/bard/mozrepl/
c7557a0f 35;;
afe98dfa
CD
36;; - for session based evaluation mozrepl and moz.el are required see
37;; http://wiki.github.com/bard/mozrepl/emacs-integration for
38;; configuration instructions
39
40;;; Code:
41(require 'ob)
42(require 'ob-ref)
43(require 'ob-comint)
44(require 'ob-eval)
45(eval-when-compile (require 'cl))
46
47(declare-function run-mozilla "ext:moz" (arg))
48
49(defvar org-babel-default-header-args:js '()
50 "Default header arguments for js code blocks.")
51
52(defvar org-babel-js-eoe "org-babel-js-eoe"
53 "String to indicate that evaluation has completed.")
54
55(defcustom org-babel-js-cmd "node"
56 "Name of command used to evaluate js blocks."
57 :group 'org-babel
372d7b21 58 :version "24.1"
afe98dfa
CD
59 :type 'string)
60
61(defvar org-babel-js-function-wrapper
62 "require('sys').print(require('sys').inspect(function(){%s}()));"
63 "Javascript code to print value of body.")
64
65(defun org-babel-execute:js (body params)
66 "Execute a block of Javascript code with org-babel.
67This function is called by `org-babel-execute-src-block'"
68 (let* ((org-babel-js-cmd (or (cdr (assoc :cmd params)) org-babel-js-cmd))
69 (result-type (cdr (assoc :result-type params)))
70 (full-body (org-babel-expand-body:generic
71 body params (org-babel-variable-assignments:js params))))
72 (org-babel-js-read
73 (if (not (string= (cdr (assoc :session params)) "none"))
74 ;; session evaluation
75 (let ((session (org-babel-prep-session:js
76 (cdr (assoc :session params)) params)))
77 (nth 1
78 (org-babel-comint-with-output
79 (session (format "%S" org-babel-js-eoe) t body)
80 (mapc
81 (lambda (line)
82 (insert (org-babel-chomp line)) (comint-send-input nil t))
83 (list body (format "%S" org-babel-js-eoe))))))
84 ;; external evaluation
85 (let ((script-file (org-babel-temp-file "js-script-")))
86 (with-temp-file script-file
87 (insert
88 ;; return the value or the output
89 (if (string= result-type "value")
90 (format org-babel-js-function-wrapper full-body)
91 full-body)))
92 (org-babel-eval
93 (format "%s %s" org-babel-js-cmd
94 (org-babel-process-file-name script-file)) ""))))))
95
96(defun org-babel-js-read (results)
97 "Convert RESULTS into an appropriate elisp value.
98If RESULTS look like a table, then convert them into an
99Emacs-lisp table, otherwise return the results as a string."
100 (org-babel-read
101 (if (and (stringp results) (string-match "^\\[.+\\]$" results))
102 (org-babel-read
103 (concat "'"
104 (replace-regexp-in-string
105 "\\[" "(" (replace-regexp-in-string
106 "\\]" ")" (replace-regexp-in-string
107 ", " " " (replace-regexp-in-string
108 "'" "\"" results))))))
109 results)))
110
111(defun org-babel-js-var-to-js (var)
112 "Convert VAR into a js variable.
113Convert an elisp value into a string of js source code
114specifying a variable of the same value."
115 (if (listp var)
116 (concat "[" (mapconcat #'org-babel-js-var-to-js var ", ") "]")
117 (format "%S" var)))
118
119(defun org-babel-prep-session:js (session params)
120 "Prepare SESSION according to the header arguments specified in PARAMS."
121 (let* ((session (org-babel-js-initiate-session session))
122 (var-lines (org-babel-variable-assignments:js params)))
123 (when session
124 (org-babel-comint-in-buffer session
125 (sit-for .5) (goto-char (point-max))
126 (mapc (lambda (var)
127 (insert var) (comint-send-input nil t)
128 (org-babel-comint-wait-for-output session)
129 (sit-for .1) (goto-char (point-max))) var-lines)))
130 session))
131
132(defun org-babel-variable-assignments:js (params)
8223b1d2 133 "Return list of Javascript statements assigning the block's variables."
afe98dfa
CD
134 (mapcar
135 (lambda (pair) (format "var %s=%s;"
136 (car pair) (org-babel-js-var-to-js (cdr pair))))
137 (mapcar #'cdr (org-babel-get-header params :var))))
138
139(defun org-babel-js-initiate-session (&optional session)
140 "If there is not a current inferior-process-buffer in SESSION
141then create. Return the initialized session."
142 (unless (string= session "none")
143 (cond
144 ((string= "mozrepl" org-babel-js-cmd)
145 (require 'moz)
146 (let ((session-buffer (save-window-excursion
147 (run-mozilla nil)
148 (rename-buffer session)
149 (current-buffer))))
150 (if (org-babel-comint-buffer-livep session-buffer)
151 (progn (sit-for .25) session-buffer)
152 (sit-for .5)
153 (org-babel-js-initiate-session session))))
154 ((string= "node" org-babel-js-cmd )
8223b1d2 155 (error "Session evaluation with node.js is not supported"))
afe98dfa 156 (t
8223b1d2 157 (error "Sessions are only supported with mozrepl add \":cmd mozrepl\"")))))
afe98dfa
CD
158
159(provide 'ob-js)
160
5b409b39 161
afe98dfa
CD
162
163;;; ob-js.el ends here