1 ;;; ob-java.el --- org-babel functions for java evaluation
3 ;; Copyright (C) 2011-2014 Free Software Foundation, Inc.
5 ;; Author: Eric Schulte
6 ;; Keywords: literate programming, reproducible research
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 ;; Currently this only supports the external compilation and execution
27 ;; of java code blocks (i.e., no session support).
32 (defvar org-babel-tangle-lang-exts
)
33 (add-to-list 'org-babel-tangle-lang-exts
'("java" .
"java"))
35 (defvar org-babel-java-command
"java"
36 "Name of the java command.")
38 (defvar org-babel-java-compiler
"javac"
39 "Name of the java compiler.")
41 (defun org-babel-execute:java
(body params
)
42 (let* ((classname (or (cdr (assoc :classname params
))
44 "Can't compile a java block without a classname")))
45 (packagename (file-name-directory classname
))
46 (src-file (concat classname
".java"))
47 (cmpflag (or (cdr (assoc :cmpflag params
)) ""))
48 (cmdline (or (cdr (assoc :cmdline params
)) ""))
49 (full-body (org-babel-expand-body:generic body params
))
51 (progn (with-temp-file src-file
(insert full-body
))
53 (concat org-babel-java-compiler
54 " " cmpflag
" " src-file
) ""))))
55 ;; created package-name directories if missing
56 (unless (or (not packagename
) (file-exists-p packagename
))
57 (make-directory packagename
'parents
))
58 (let ((results (org-babel-eval (concat org-babel-java-command
59 " " cmdline
" " classname
) "")))
60 (org-babel-reassemble-table
61 (org-babel-result-cond (cdr (assoc :result-params params
))
62 (org-babel-read results
)
63 (let ((tmp-file (org-babel-temp-file "c-")))
64 (with-temp-file tmp-file
(insert results
))
65 (org-babel-import-elisp-from-file tmp-file
)))
67 (cdr (assoc :colname-names params
)) (cdr (assoc :colnames params
)))
69 (cdr (assoc :rowname-names params
)) (cdr (assoc :rownames params
)))))))
75 ;;; ob-java.el ends here