2015-10-26 00:56:00 +00:00
|
|
|
;;; ob-scala.el --- Babel Functions for Scala -*- lexical-binding: t; -*-
|
2012-02-29 02:38:13 +00:00
|
|
|
|
2015-01-01 22:26:41 +00:00
|
|
|
;; Copyright (C) 2012-2015 Free Software Foundation, Inc.
|
2012-02-29 02:38:13 +00:00
|
|
|
|
|
|
|
;; Author: Andrzej Lichnerowicz
|
|
|
|
;; Keywords: literate programming, reproducible research
|
|
|
|
;; Homepage: http://orgmode.org
|
|
|
|
|
2012-02-29 02:45:01 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
2012-02-29 02:38:13 +00:00
|
|
|
|
2012-02-29 02:45:01 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2012-02-29 02:38:13 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2012-02-29 02:45:01 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
2012-02-29 02:38:13 +00:00
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
2012-02-29 02:45:01 +00:00
|
|
|
|
2012-02-29 02:38:13 +00:00
|
|
|
;; You should have received a copy of the GNU General Public License
|
2012-02-29 02:45:01 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2012-02-29 02:38:13 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
2012-08-11 17:10:44 +00:00
|
|
|
;; Currently only supports the external execution. No session support yet.
|
2012-02-29 02:38:13 +00:00
|
|
|
|
|
|
|
;;; Requirements:
|
|
|
|
;; - Scala language :: http://www.scala-lang.org/
|
|
|
|
;; - Scala major mode :: Can be installed from Scala sources
|
|
|
|
;; https://github.com/scala/scala-dist/blob/master/tool-support/src/emacs/scala-mode.el
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
(require 'ob)
|
2012-02-29 02:45:01 +00:00
|
|
|
(eval-when-compile (require 'cl))
|
2012-02-29 02:38:13 +00:00
|
|
|
|
2012-10-02 09:19:29 +00:00
|
|
|
(defvar org-babel-tangle-lang-exts) ;; Autoloaded
|
2012-02-29 02:38:13 +00:00
|
|
|
(add-to-list 'org-babel-tangle-lang-exts '("scala" . "scala"))
|
|
|
|
(defvar org-babel-default-header-args:scala '())
|
|
|
|
(defvar org-babel-scala-command "scala"
|
|
|
|
"Name of the command to use for executing Scala code.")
|
|
|
|
|
|
|
|
(defun org-babel-execute:scala (body params)
|
|
|
|
"Execute a block of Scala code with org-babel. This function is
|
|
|
|
called by `org-babel-execute-src-block'"
|
|
|
|
(message "executing Scala source code block")
|
|
|
|
(let* ((processed-params (org-babel-process-params params))
|
2012-02-29 02:45:01 +00:00
|
|
|
(session (org-babel-scala-initiate-session (nth 0 processed-params)))
|
|
|
|
(result-params (nth 2 processed-params))
|
2012-02-29 02:38:13 +00:00
|
|
|
(result-type (cdr (assoc :result-type params)))
|
|
|
|
(full-body (org-babel-expand-body:generic
|
|
|
|
body params))
|
|
|
|
(result (org-babel-scala-evaluate
|
|
|
|
session full-body result-type result-params)))
|
|
|
|
|
|
|
|
(org-babel-reassemble-table
|
|
|
|
result
|
|
|
|
(org-babel-pick-name
|
|
|
|
(cdr (assoc :colname-names params)) (cdr (assoc :colnames params)))
|
|
|
|
(org-babel-pick-name
|
|
|
|
(cdr (assoc :rowname-names params)) (cdr (assoc :rownames params))))))
|
|
|
|
|
|
|
|
(defvar org-babel-scala-wrapper-method
|
2012-10-15 18:52:50 +00:00
|
|
|
|
|
|
|
"var str_result :String = null;
|
|
|
|
|
|
|
|
Console.withOut(new java.io.OutputStream() {def write(b: Int){
|
|
|
|
}}) {
|
|
|
|
str_result = {
|
2012-02-29 02:38:13 +00:00
|
|
|
%s
|
2012-10-15 18:52:50 +00:00
|
|
|
}.toString
|
|
|
|
}
|
|
|
|
|
|
|
|
print(str_result)
|
2012-02-29 02:38:13 +00:00
|
|
|
")
|
|
|
|
|
|
|
|
|
2012-02-29 02:45:01 +00:00
|
|
|
(defun org-babel-scala-evaluate
|
|
|
|
(session body &optional result-type result-params)
|
2012-02-29 02:38:13 +00:00
|
|
|
"Evaluate BODY in external Scala process.
|
2015-09-21 04:24:12 +00:00
|
|
|
If RESULT-TYPE equals `output' then return standard output as a string.
|
|
|
|
If RESULT-TYPE equals `value' then return the value of the last statement
|
2012-02-29 02:38:13 +00:00
|
|
|
in BODY as elisp."
|
2012-09-28 15:47:48 +00:00
|
|
|
(when session (error "Sessions are not (yet) supported for Scala"))
|
2012-02-29 02:38:13 +00:00
|
|
|
(case result-type
|
|
|
|
(output
|
|
|
|
(let ((src-file (org-babel-temp-file "scala-")))
|
2012-02-29 02:45:01 +00:00
|
|
|
(progn (with-temp-file src-file (insert body))
|
2012-02-29 02:38:13 +00:00
|
|
|
(org-babel-eval
|
|
|
|
(concat org-babel-scala-command " " src-file) ""))))
|
2012-08-11 17:10:44 +00:00
|
|
|
(value
|
2012-02-29 02:38:13 +00:00
|
|
|
(let* ((src-file (org-babel-temp-file "scala-"))
|
|
|
|
(wrapper (format org-babel-scala-wrapper-method body)))
|
|
|
|
(with-temp-file src-file (insert wrapper))
|
Backport changes from Emacs revs 115081 and 115082
2013-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
Address some byte-compiler warnings.
* ob-abc.el (org-babel-expand-body:abc): Use dolist.
(org-babel-execute:abc): Fix regexp quoting.
* ob-calc.el (org--var-syms): Rename from `var-syms'.
* ob-lilypond.el (ly-compile-lilyfile): Remove redundant let-binding.
* ob-table.el (sbe): Move debug declaration.
* org-clock.el (org--msg-extra): Rename from `msg-extra'.
* org.el (org-version): Avoid var name starting with _.
(org-inhibit-startup, org-called-with-limited-levels)
(org-link-search-inhibit-query, org-time-was-given)
(org-end-time-was-given, org-def, org-defdecode, org-with-time):
* org-colview.el (org-agenda-overriding-columns-format):
* org-agenda.el (org-agenda-multi, org-depend-tag-blocked)
(org-agenda-show-log-scoped):
* ob-python.el (py-which-bufname, python-shell-buffer-name):
* ob-haskell.el (org-export-copy-to-kill-ring):
* ob-exp.el (org-link-search-inhibit-query):
* ob-R.el (ess-eval-visibly-p):
* ob-core.el (org-src-window-setup): Declare before use.
(org-babel-expand-noweb-references): Remove unused `blocks-in-buffer'.
* ox-odt.el (org-odt-hfy-face-to-css):
* org-src.el (org-src-associate-babel-session, org-src-get-lang-mode):
* org-bibtex.el (org-bibtex-get, org-bibtex-ask, org-bibtex)
(org-bibtex-check):
* ob-tangle.el (org-babel-tangle, org-babel-spec-to-string)
(org-babel-tangle-single-block, org-babel-tangle-comment-links):
* ob-table.el (sbe):
* ob-sqlite.el (org-babel-sqlite-expand-vars):
* ob-sql.el (org-babel-sql-expand-vars):
* ob-shen.el (org-babel-execute:shen):
* ob-sh.el (org-babel-execute:sh, org-babel-sh-evaluate):
* ob-scala.el (org-babel-scala-evaluate):
* ob-ruby.el (org-babel-ruby-table-or-string)
(org-babel-ruby-evaluate):
* ob-python.el (org-babel-python-table-or-string)
(org-babel-python-evaluate-external-process)
(org-babel-python-evaluate-session):
* ob-picolisp.el (org-babel-execute:picolisp):
* ob-perl.el (org-babel-perl-evaluate):
* ob-maxima.el (org-babel-execute:maxima):
* ob-lisp.el (org-babel-execute:lisp):
* ob-java.el (org-babel-execute:java):
* ob-io.el (org-babel-io-evaluate):
* ob-haskell.el (org-babel-execute:haskell):
* ob-fortran.el (org-babel-execute:fortran):
* ob-exp.el (org-babel-exp-code):
* ob-emacs-lisp.el (org-babel-execute:emacs-lisp):
* ob-ditaa.el (org-babel-execute:ditaa):
* ob-core.el (org-babel-execute-src-block, org-babel-sha1-hash)
(org-babel-parse-header-arguments, org-babel-reassemble-table)
(org-babel-goto-src-block-head, org-babel-mark-block)
(org-babel-expand-noweb-references, org-babel-script-escape)
(org-babel-process-file-name):
* ob-clojure.el (org-babel-execute:clojure):
* ob-calc.el (org-babel-execute:calc):
* ob-awk.el (org-babel-execute:awk):
* ob-abc.el (org-babel-execute:abc):
* ob-R.el (org-babel-expand-body:R):
* ob-C.el (org-babel-C-execute): Avoid deprecated ((lambda) ...).
2013-11-12 Glenn Morris <rgm@gnu.org>
* ox-html.el (org-html-scripts): Add 2013 to copyright years.
(org-html-infojs-template): Copyright holder to FSF.
2013-11-12 19:57:31 +00:00
|
|
|
(let ((raw (org-babel-eval
|
|
|
|
(concat org-babel-scala-command " " src-file) "")))
|
|
|
|
(org-babel-result-cond result-params
|
|
|
|
raw
|
2015-01-16 22:42:04 +00:00
|
|
|
(org-babel-script-escape raw)))))))
|
2012-02-29 02:38:13 +00:00
|
|
|
|
2012-08-11 17:10:44 +00:00
|
|
|
|
2015-10-26 00:56:00 +00:00
|
|
|
(defun org-babel-prep-session:scala (_session _params)
|
2012-02-29 02:38:13 +00:00
|
|
|
"Prepare SESSION according to the header arguments specified in PARAMS."
|
2012-09-28 15:47:48 +00:00
|
|
|
(error "Sessions are not (yet) supported for Scala"))
|
2012-02-29 02:38:13 +00:00
|
|
|
|
2015-10-26 00:56:00 +00:00
|
|
|
(defun org-babel-scala-initiate-session (&optional _session)
|
2012-02-29 02:38:13 +00:00
|
|
|
"If there is not a current inferior-process-buffer in SESSION
|
2012-08-11 17:10:44 +00:00
|
|
|
then create. Return the initialized session. Sessions are not
|
2012-02-29 02:38:13 +00:00
|
|
|
supported in Scala."
|
|
|
|
nil)
|
|
|
|
|
|
|
|
(provide 'ob-scala)
|
2012-02-29 02:45:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-29 02:38:13 +00:00
|
|
|
;;; ob-scala.el ends here
|