Make C, C++, D, Java, Groovy compilers customizable
[org-mode/org-kjn.git] / lisp / ob-java.el
blob8c641716a8d155ced566648de337c36567f5611a
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/>.
24 ;;; Commentary:
26 ;; Currently this only supports the external compilation and execution
27 ;; of java code blocks (i.e., no session support).
29 ;;; Code:
30 (require 'ob)
32 (defvar org-babel-tangle-lang-exts)
33 (add-to-list 'org-babel-tangle-lang-exts '("java" . "java"))
35 (defcustom org-babel-java-command "java"
36 "Name of the java command.
37 May be either a command in the path, like java
38 or an absolute path name, like /usr/local/bin/java
39 parameters may be used, like java -verbose"
40 :group 'org-babel
41 :version "24.3"
42 :type 'string)
44 (defcustom org-babel-java-compiler "javac"
45 "Name of the java compiler.
46 May be either a command in the path, like javac
47 or an absolute path name, like /usr/local/bin/javac
48 parameters may be used, like javac -verbose"
49 :group 'org-babel
50 :version "24.3"
51 :type 'string)
53 (defun org-babel-execute:java (body params)
54 (let* ((classname (or (cdr (assoc :classname params))
55 (error
56 "Can't compile a java block without a classname")))
57 (packagename (file-name-directory classname))
58 (src-file (concat classname ".java"))
59 (cmpflag (or (cdr (assoc :cmpflag params)) ""))
60 (cmdline (or (cdr (assoc :cmdline params)) ""))
61 (full-body (org-babel-expand-body:generic body params))
62 (compile
63 (progn (with-temp-file src-file (insert full-body))
64 (org-babel-eval
65 (concat org-babel-java-compiler
66 " " cmpflag " " src-file) ""))))
67 ;; created package-name directories if missing
68 (unless (or (not packagename) (file-exists-p packagename))
69 (make-directory packagename 'parents))
70 (let ((results (org-babel-eval (concat org-babel-java-command
71 " " cmdline " " classname) "")))
72 (org-babel-reassemble-table
73 (org-babel-result-cond (cdr (assoc :result-params params))
74 (org-babel-read results)
75 (let ((tmp-file (org-babel-temp-file "c-")))
76 (with-temp-file tmp-file (insert results))
77 (org-babel-import-elisp-from-file tmp-file)))
78 (org-babel-pick-name
79 (cdr (assoc :colname-names params)) (cdr (assoc :colnames params)))
80 (org-babel-pick-name
81 (cdr (assoc :rowname-names params)) (cdr (assoc :rownames params)))))))
83 (provide 'ob-java)
87 ;;; ob-java.el ends here