1 ;;; ob-js.el --- org-babel functions for Javascript
3 ;; Copyright (C) 2010-2013 Free Software Foundation, Inc.
5 ;; Author: Eric Schulte
6 ;; Keywords: literate programming, reproducible research, js
7 ;; Homepage: http://orgmode.org
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; Now working with SBCL for both session and external evaluation.
28 ;; This certainly isn't optimally robust, but it seems to be working
29 ;; for the basic use cases.
33 ;; - a non-browser javascript engine such as node.js http://nodejs.org/
34 ;; or mozrepl http://wiki.github.com/bard/mozrepl/
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
42 (eval-when-compile (require 'cl
))
44 (declare-function run-mozilla
"ext:moz" (arg))
46 (defvar org-babel-default-header-args
:js
'()
47 "Default header arguments for js code blocks.")
49 (defvar org-babel-js-eoe
"org-babel-js-eoe"
50 "String to indicate that evaluation has completed.")
52 (defcustom org-babel-js-cmd
"node"
53 "Name of command used to evaluate js blocks."
58 (defvar org-babel-js-function-wrapper
59 "require('sys').print(require('sys').inspect(function(){%s}()));"
60 "Javascript code to print value of body.")
62 (defun org-babel-execute:js
(body params
)
63 "Execute a block of Javascript code with org-babel.
64 This function is called by `org-babel-execute-src-block'"
65 (let* ((org-babel-js-cmd (or (cdr (assoc :cmd params
)) org-babel-js-cmd
))
66 (result-type (cdr (assoc :result-type params
)))
67 (full-body (org-babel-expand-body:generic
68 body params
(org-babel-variable-assignments:js params
)))
69 (result (if (not (string= (cdr (assoc :session params
)) "none"))
71 (let ((session (org-babel-prep-session:js
72 (cdr (assoc :session params
)) params
)))
74 (org-babel-comint-with-output
75 (session (format "%S" org-babel-js-eoe
) t body
)
78 (insert (org-babel-chomp line
))
79 (comint-send-input nil t
))
80 (list body
(format "%S" org-babel-js-eoe
))))))
81 ;; external evaluation
82 (let ((script-file (org-babel-temp-file "js-script-")))
83 (with-temp-file script-file
85 ;; return the value or the output
86 (if (string= result-type
"value")
87 (format org-babel-js-function-wrapper full-body
)
90 (format "%s %s" org-babel-js-cmd
91 (org-babel-process-file-name script-file
)) "")))))
92 (org-babel-result-cond (cdr (assoc :result-params params
))
93 result
(org-babel-js-read result
))))
95 (defun org-babel-js-read (results)
96 "Convert RESULTS into an appropriate elisp value.
97 If RESULTS look like a table, then convert them into an
98 Emacs-lisp table, otherwise return the results as a string."
100 (if (and (stringp results
) (string-match "^\\[.+\\]$" results
))
103 (replace-regexp-in-string
104 "\\[" "(" (replace-regexp-in-string
105 "\\]" ")" (replace-regexp-in-string
106 ", " " " (replace-regexp-in-string
107 "'" "\"" results
))))))
110 (defun org-babel-js-var-to-js (var)
111 "Convert VAR into a js variable.
112 Convert an elisp value into a string of js source code
113 specifying a variable of the same value."
115 (concat "[" (mapconcat #'org-babel-js-var-to-js var
", ") "]")
118 (defun org-babel-prep-session:js
(session params
)
119 "Prepare SESSION according to the header arguments specified in PARAMS."
120 (let* ((session (org-babel-js-initiate-session session
))
121 (var-lines (org-babel-variable-assignments:js params
)))
123 (org-babel-comint-in-buffer session
124 (sit-for .5) (goto-char (point-max))
126 (insert var
) (comint-send-input nil t
)
127 (org-babel-comint-wait-for-output session
)
128 (sit-for .1) (goto-char (point-max))) var-lines
)))
131 (defun org-babel-variable-assignments:js
(params)
132 "Return list of Javascript statements assigning the block's variables."
134 (lambda (pair) (format "var %s=%s;"
135 (car pair
) (org-babel-js-var-to-js (cdr pair
))))
136 (mapcar #'cdr
(org-babel-get-header params
:var
))))
138 (defun org-babel-js-initiate-session (&optional session
)
139 "If there is not a current inferior-process-buffer in SESSION
140 then create. Return the initialized session."
141 (unless (string= session
"none")
143 ((string= "mozrepl" org-babel-js-cmd
)
145 (let ((session-buffer (save-window-excursion
147 (rename-buffer session
)
149 (if (org-babel-comint-buffer-livep session-buffer
)
150 (progn (sit-for .25) session-buffer
)
152 (org-babel-js-initiate-session session
))))
153 ((string= "node" org-babel-js-cmd
)
154 (error "Session evaluation with node.js is not supported"))
156 (error "Sessions are only supported with mozrepl add \":cmd mozrepl\"")))))
162 ;;; ob-js.el ends here