ob-java.el 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. ;;; ob-java.el --- Babel Functions for Java -*- lexical-binding: t; -*-
  2. ;; Copyright (C) 2011-2020 Free Software Foundation, Inc.
  3. ;; Author: Eric Schulte
  4. ;; Keywords: literate programming, reproducible research
  5. ;; Homepage: https://orgmode.org
  6. ;; This file is part of GNU Emacs.
  7. ;; GNU Emacs is free software: you can redistribute it and/or modify
  8. ;; it under the terms of the GNU General Public License as published by
  9. ;; the Free Software Foundation, either version 3 of the License, or
  10. ;; (at your option) any later version.
  11. ;; GNU Emacs is distributed in the hope that it will be useful,
  12. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. ;; GNU General Public License for more details.
  15. ;; You should have received a copy of the GNU General Public License
  16. ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
  17. ;;; Commentary:
  18. ;; Currently this only supports the external compilation and execution
  19. ;; of java code blocks (i.e., no session support).
  20. ;;; Code:
  21. (require 'ob)
  22. (defvar org-babel-tangle-lang-exts)
  23. (add-to-list 'org-babel-tangle-lang-exts '("java" . "java"))
  24. (defcustom org-babel-java-command "java"
  25. "Name of the java command.
  26. May be either a command in the path, like java
  27. or an absolute path name, like /usr/local/bin/java
  28. parameters may be used, like java -verbose"
  29. :group 'org-babel
  30. :version "24.3"
  31. :type 'string)
  32. (defcustom org-babel-java-compiler "javac"
  33. "Name of the java compiler.
  34. May be either a command in the path, like javac
  35. or an absolute path name, like /usr/local/bin/javac
  36. parameters may be used, like javac -verbose"
  37. :group 'org-babel
  38. :version "24.3"
  39. :type 'string)
  40. (defun org-babel-execute:java (body params)
  41. (let* ((classname (or (cdr (assq :classname params))
  42. (error
  43. "Can't compile a java block without a classname")))
  44. (packagename (file-name-directory classname))
  45. (src-file (concat classname ".java"))
  46. (cmpflag (or (cdr (assq :cmpflag params)) ""))
  47. (cmdline (or (cdr (assq :cmdline params)) ""))
  48. (cmdargs (or (cdr (assq :cmdargs params)) ""))
  49. (full-body (org-babel-expand-body:generic body params)))
  50. (with-temp-file src-file (insert full-body))
  51. (org-babel-eval
  52. (concat org-babel-java-compiler " " cmpflag " " src-file) "")
  53. ;; created package-name directories if missing
  54. (unless (or (not packagename) (file-exists-p packagename))
  55. (make-directory packagename 'parents))
  56. (let ((results (org-babel-eval (concat org-babel-java-command
  57. " " cmdline " " classname " " cmdargs) "")))
  58. (org-babel-reassemble-table
  59. (org-babel-result-cond (cdr (assq :result-params params))
  60. (org-babel-read results)
  61. (let ((tmp-file (org-babel-temp-file "c-")))
  62. (with-temp-file tmp-file (insert results))
  63. (org-babel-import-elisp-from-file tmp-file)))
  64. (org-babel-pick-name
  65. (cdr (assq :colname-names params)) (cdr (assq :colnames params)))
  66. (org-babel-pick-name
  67. (cdr (assq :rowname-names params)) (cdr (assq :rownames params)))))))
  68. (provide 'ob-java)
  69. ;;; ob-java.el ends here