2011-10-26 15:02:11 -04:00
|
|
|
;;; ob-picolisp.el --- org-babel functions for picolisp evaluation
|
|
|
|
|
2012-01-04 09:47:43 -05:00
|
|
|
;; Copyright (C) 2010-2012 Free Software Foundation, Inc.
|
2011-10-26 15:02:11 -04:00
|
|
|
|
2012-01-05 03:43:21 -05:00
|
|
|
;; Authors: Thorsten Jolitz
|
|
|
|
;; Eric Schulte
|
2011-11-29 11:05:31 -05:00
|
|
|
;; Keywords: literate programming, reproducible research
|
2011-10-26 15:02:11 -04:00
|
|
|
;; Homepage: http://orgmode.org
|
|
|
|
|
2011-11-29 11:05:31 -05:00
|
|
|
;; This file is part of GNU Emacs.
|
2011-10-26 15:02:11 -04:00
|
|
|
|
2011-11-29 11:05:31 -05:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2011-10-26 15:02:11 -04:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2011-11-29 11:05:31 -05: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,
|
2011-10-26 15:02:11 -04: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.
|
2011-11-29 11:05:31 -05:00
|
|
|
|
2011-10-26 15:02:11 -04:00
|
|
|
;; You should have received a copy of the GNU General Public License
|
2011-11-29 11:05:31 -05:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2011-10-26 15:02:11 -04:00
|
|
|
|
2011-11-29 11:05:31 -05:00
|
|
|
;;; Commentary:
|
2011-10-26 15:02:11 -04:00
|
|
|
|
|
|
|
;; This library enables the use of PicoLisp in the multi-language
|
|
|
|
;; programming framework Org-Babel. PicoLisp is a minimal yet
|
|
|
|
;; fascinating lisp dialect and a highly productive application
|
|
|
|
;; framework for web-based client-server applications on top of
|
|
|
|
;; object-oriented databases. A good way to learn PicoLisp is to first
|
|
|
|
;; read Paul Grahams essay "The hundred year language"
|
|
|
|
;; (http://www.paulgraham.com/hundred.html) and then study the various
|
|
|
|
;; documents and essays published in the PicoLisp wiki
|
|
|
|
;; (http://picolisp.com/5000/-2.html). PicoLisp is included in some
|
|
|
|
;; GNU/Linux Distributions, and can be downloaded here:
|
|
|
|
;; http://software-lab.de/down.html. It ships with a picolisp-mode and
|
|
|
|
;; a inferior-picolisp-mode for Emacs (to be found in the /lib/el/
|
|
|
|
;; directory).
|
|
|
|
|
|
|
|
;; Although it might seem more natural to use Emacs Lisp for most
|
|
|
|
;; Lisp-based programming tasks inside Org-Mode, an Emacs library
|
|
|
|
;; written in Emacs Lisp, PicoLisp has at least two outstanding
|
|
|
|
;; features that make it a valuable addition to Org-Babel:
|
|
|
|
|
|
|
|
;; PicoLisp _is_ an object-oriented database with a Prolog-based query
|
|
|
|
;; language implemented in PicoLisp (Pilog). Database objects are
|
2012-01-04 10:20:04 -05:00
|
|
|
;; first-class members of the language.
|
2011-10-26 15:02:11 -04:00
|
|
|
|
|
|
|
;; PicoLisp is an extremely productive framework for the development
|
2012-01-04 10:20:04 -05:00
|
|
|
;; of interactive web-applications (on top of a database).
|
2011-10-26 15:02:11 -04:00
|
|
|
|
|
|
|
;;; Requirements:
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
(require 'ob)
|
|
|
|
(require 'ob-eval)
|
2011-11-29 11:16:14 -05:00
|
|
|
(require 'ob-comint)
|
|
|
|
(require 'comint)
|
|
|
|
(eval-when-compile (require 'cl))
|
|
|
|
|
|
|
|
(declare-function run-picolisp "ext:inferior-picolisp" (cmd))
|
2011-10-26 15:02:11 -04:00
|
|
|
|
|
|
|
;; optionally define a file extension for this language
|
|
|
|
(add-to-list 'org-babel-tangle-lang-exts '("picolisp" . "l"))
|
|
|
|
|
|
|
|
;;; interferes with settings in org-babel buffer?
|
|
|
|
;; optionally declare default header arguments for this language
|
|
|
|
;; (defvar org-babel-default-header-args:picolisp
|
|
|
|
;; '((:colnames . "no"))
|
|
|
|
;; "Default arguments for evaluating a picolisp source block.")
|
|
|
|
|
|
|
|
(defvar org-babel-picolisp-eoe "org-babel-picolisp-eoe"
|
|
|
|
"String to indicate that evaluation has completed.")
|
|
|
|
|
|
|
|
(defcustom org-babel-picolisp-cmd "pil"
|
|
|
|
"Name of command used to evaluate picolisp blocks."
|
|
|
|
:group 'org-babel
|
Add version tag "24.1" for options introduced since Emacs 23.4 (and <= 24.1)
* org-exp.el (org-export-kill-product-buffer-when-displayed)
(org-export-initial-scope, org-export-date-timestamp-format)
(org-export-with-tasks, org-export-email-info)
(org-export-table-remove-empty-lines): Add version tag.
* org-mobile.el (org-mobile-files-exclude-regexp)
(org-mobile-use-encryption, org-mobile-encryption-tempfile)
(org-mobile-encryption-password, org-mobile-agendas): Add
version tag.
* ob-plantuml.el (org-plantuml-jar-path): Add version tag.
* org.el (org-babel-load-languages, org-clone-delete-id)
(org-log-buffer-setup-hook)
(org-loop-over-headlines-in-active-region)
(org-use-sub-superscripts, org-startup-with-beamer-mode)
(org-startup-with-inline-images, org-ctrl-k-protect-subtree)
(org-catch-invisible-edits)
(org-link-search-must-match-exact-headline)
(org-confirm-shell-link-not-regexp)
(org-confirm-elisp-link-not-regexp, org-log-refile)
(org-refile-use-cache)
(org-refile-active-region-within-subtree)
(org-todo-repeat-to-state, org-get-priority-function)
(org-agenda-jump-prefer-future)
(org-read-date-force-compatible-dates)
(org-use-effective-time)
(org-complete-tags-always-offer-all-agenda-tags)
(org-properties-postprocess-alist)
(org-format-latex-signal-error)
(org-latex-to-mathml-jar-file)
(org-latex-to-mathml-convert-command)
(org-export-latex-default-packages-alist)
(org-hidden-keywords, org-pretty-entities)
(org-pretty-entities-include-sub-superscripts)
(org-src-fontify-natively, org-effort-durations)
(org-speed-command-hook): Add version tag.
* org-html.el (org-export-html-footnote-separator)
(org-export-html-mathjax-options)
(org-export-html-mathjax-template)
(org-export-html-headline-anchor-format)
(org-export-html-preamble-format)
(org-export-html-postamble-format)
(org-export-html-table-align-individual-fields)
(org-export-html-protect-char-alist, org-export-html-divs):
Add version tag.
* org-ctags.el (org-ctags-path-to-ctags)
(org-ctags-open-link-functions)
(org-ctags-new-topic-template): Add version tag.
* ob-exp.el (org-export-babel-evaluate): Add version tag.
* org-beamer.el (org-beamer-use-parts)
(org-beamer-frame-level, org-beamer-frame-default-options)
(org-beamer-column-view-format, org-beamer-themes)
(org-beamer-environments-extra, org-beamer-fragile-re)
(org-beamer-outline-frame-title)
(org-beamer-outline-frame-options): Add version tag.
* org-wl.el (org-wl-link-remove-filter)
(org-wl-shimbun-prefer-web-links)
(org-wl-nntp-prefer-web-links, org-wl-disable-folder-check)
(org-wl-namazu-default-index): Add version tag.
* org-clock.el (org-task-overrun-text)
(org-clocktable-defaults, org-clock-clocktable-formatter)
(org-clock-clocktable-language-setup)
(org-clock-report-include-clocking-task)
(org-clock-resolve-expert): Add version tag.
* ob-lob.el (org-babel-lob-files): Add version tag.
* org-freemind.el (org-freemind-node-css-style): Add version
tag.
* org-archive.el (org-archive-reversed-order)
(org-archive-subtree-add-inherited-tags): Add version tag.
* org-bibtex.el (org-bibtex-autogen-keys, org-bibtex-prefix)
(org-bibtex-treat-headline-as-title)
(org-bibtex-export-arbitrary-fields)
(org-bibtex-key-property, org-bibtex-tags)
(org-bibtex-tags-are-keywords, org-bibtex-no-export-tags)
(org-bibtex-type-property-name): Add version tag.
* org-timer.el (org-timer-default-timer): Add version tag.
* org-taskjuggler.el (org-export-taskjuggler-extension)
(org-export-taskjuggler-project-tag)
(org-export-taskjuggler-resource-tag)
(org-export-taskjuggler-target-version)
(org-export-taskjuggler-default-project-version)
(org-export-taskjuggler-default-project-duration)
(org-export-taskjuggler-default-reports)
(org-export-taskjuggler-default-global-properties): Add
version tag.
* org-habit.el (org-habit-today-glyph)
(org-habit-completed-glyph): Add version tag.
* org-list.el (org-alphabetical-lists)
(org-list-ending-method, org-list-end-regexp)
(org-list-automatic-rules, org-list-use-circular-motion)
(org-list-indent-offset): Add version tag.
* ob-picolisp.el (org-babel-picolisp-cmd): Add version tag.
* org-icalendar.el (org-icalendar-alarm-time)
(org-icalendar-combined-description)
(org-icalendar-honor-noexport-tag)
(org-icalendar-date-time-format): Add version tag.
* org-src.el (org-src-tab-acts-natively): Add version tag.
* org-exp-blocks.el (org-export-blocks-postblock-hook): Add
version tag.
* org-table.el (org-table-exit-follow-field-mode-when-leaving-table)
(org-table-fix-formulas-confirm)
(org-table-duration-custom-format)
(org-table-formula-field-format): Add version tag.
* org-publish.el (org-publish-sitemap-sort-files)
(org-publish-sitemap-sort-folders)
(org-publish-sitemap-sort-ignore-case)
(org-publish-sitemap-date-format)
(org-publish-sitemap-file-entry-format): Add version tag.
* ob-js.el (org-babel-js-cmd): Add version tag.
* org-docbook.el (org-export-docbook-footnote-separator)
(org-export-docbook-xslt-stylesheet): Add version tag.
* org-entities.el (org-entities-ascii-explanatory)
(org-entities-user): Add version tag.
* ob.el (org-confirm-babel-evaluate)
(org-babel-no-eval-on-ctrl-c-ctrl-c): Add version tag.
* ob-tangle.el (org-babel-tangle-lang-exts)
(org-babel-post-tangle-hook, org-babel-pre-tangle-hook)
(org-babel-tangle-body-hook)
(org-babel-tangle-comment-format-beg)
(org-babel-tangle-comment-format-end)
(org-babel-process-comment-text): Add version tag.
* org-gnus.el (org-gnus-nnimap-query-article-no-from-file):
Add version tag.
* org-crypt.el (org-crypt-disable-auto-save): Add version tag.
* org-inlinetask.el (org-inlinetask-default-state): Add
version tag.
* ob-scheme.el (org-babel-scheme-cmd): Add version tag.
* ob-lisp.el (org-babel-lisp-dir-fmt): Add version tag.
* org-attach.el (org-attach-store-link-p): Add version tag.
* org-capture.el (org-capture-templates)
(org-capture-before-finalize-hook)
(org-capture-after-finalize-hook): Add version tag.
* org-agenda.el (org-agenda-skip-deadline-prewarning-if-scheduled)
(org-agenda-time-leading-zero, org-agenda-follow-indirect)
(org-agenda-menu-two-column, org-agenda-menu-show-matcher)
(org-agenda-timegrid-use-ampm)
(org-agenda-remove-timeranges-from-blocks)
(org-agenda-inactive-leader, org-agenda-current-time-string)
(org-agenda-show-current-time-in-grid)
(org-agenda-search-view-force-full-words)
(org-agenda-search-view-always-boolean)
(org-agenda-clock-consistency-checks)
(org-agenda-include-deadlines)
(org-agenda-move-date-from-past-immediately-to-today)
(org-agenda-day-face-function)
(org-agenda-category-icon-alist)
(org-agenda-bulk-custom-functions)
(org-agenda-insert-diary-extract-time): Add version tag.
* org-latex.el (org-export-latex-inputenc-alist)
(org-export-latex-tag-markup)
(org-export-latex-timestamp-inactive-markup)
(org-export-latex-href-format)
(org-export-latex-hyperref-format)
(org-export-latex-footnote-separator)
(org-export-latex-quotes)
(org-export-latex-table-caption-above)
(org-export-latex-listings-w-names)
(org-export-latex-minted-langs)
(org-export-latex-listings-options)
(org-export-latex-minted-options)
(org-latex-default-figure-position, org-export-pdf-logfiles):
Add version tag.
* org-faces.el (org-faces-easy-properties)
(org-fontify-quote-and-verse-blocks, org-cycle-level-faces):
Add version tag.
* ob-ditaa.el (org-ditaa-jar-option): Add version tag.
Thanks to Glenn Morris for reporting this.
2012-02-13 09:49:28 -05:00
|
|
|
:version "24.1"
|
2011-10-26 15:02:11 -04:00
|
|
|
:type 'string)
|
|
|
|
|
|
|
|
(defun org-babel-expand-body:picolisp (body params &optional processed-params)
|
|
|
|
"Expand BODY according to PARAMS, return the expanded body."
|
|
|
|
(let ((vars (mapcar #'cdr (org-babel-get-header params :var)))
|
|
|
|
(result-params (cdr (assoc :result-params params)))
|
|
|
|
(print-level nil) (print-length nil))
|
|
|
|
(if (> (length vars) 0)
|
|
|
|
(concat "(prog (let ("
|
|
|
|
(mapconcat
|
|
|
|
(lambda (var)
|
|
|
|
(format "%S '%S)"
|
|
|
|
(print (car var))
|
|
|
|
(print (cdr var))))
|
|
|
|
vars "\n ")
|
|
|
|
" \n" body ") )")
|
|
|
|
body)))
|
|
|
|
|
|
|
|
(defun org-babel-execute:picolisp (body params)
|
|
|
|
"Execute a block of Picolisp code with org-babel. This function is
|
2012-01-04 10:20:04 -05:00
|
|
|
called by `org-babel-execute-src-block'"
|
2011-10-26 15:02:11 -04:00
|
|
|
(message "executing Picolisp source code block")
|
|
|
|
(let* (
|
|
|
|
;; name of the session or "none"
|
|
|
|
(session-name (cdr (assoc :session params)))
|
|
|
|
;; set the session if the session variable is non-nil
|
|
|
|
(session (org-babel-picolisp-initiate-session session-name))
|
|
|
|
;; either OUTPUT or VALUE which should behave as described above
|
|
|
|
(result-type (cdr (assoc :result-type params)))
|
2011-11-29 11:16:14 -05:00
|
|
|
(result-params (cdr (assoc :result-params params)))
|
2011-10-26 15:02:11 -04:00
|
|
|
;; expand the body with `org-babel-expand-body:picolisp'
|
|
|
|
(full-body (org-babel-expand-body:picolisp body params))
|
|
|
|
;; wrap body appropriately for the type of evaluation and results
|
|
|
|
(wrapped-body
|
|
|
|
(cond
|
|
|
|
((or (member "code" result-params)
|
|
|
|
(member "pp" result-params))
|
|
|
|
(format "(pretty (out \"/dev/null\" %s))" full-body))
|
|
|
|
((and (member "value" result-params) (not session))
|
|
|
|
(format "(print (out \"/dev/null\" %s))" full-body))
|
|
|
|
((member "value" result-params)
|
|
|
|
(format "(out \"/dev/null\" %s)" full-body))
|
|
|
|
(t full-body))))
|
2012-01-04 10:20:04 -05:00
|
|
|
|
2011-10-26 15:02:11 -04:00
|
|
|
((lambda (result)
|
|
|
|
(if (or (member "verbatim" result-params)
|
|
|
|
(member "scalar" result-params)
|
|
|
|
(member "output" result-params)
|
|
|
|
(member "code" result-params)
|
|
|
|
(member "pp" result-params)
|
|
|
|
(= (length result) 0))
|
|
|
|
result
|
|
|
|
(read result)))
|
|
|
|
(if (not (string= session-name "none"))
|
|
|
|
;; session based evaluation
|
|
|
|
(mapconcat ;; <- joins the list back together into a single string
|
|
|
|
#'identity
|
|
|
|
(butlast ;; <- remove the org-babel-picolisp-eoe line
|
|
|
|
(delq nil
|
|
|
|
(mapcar
|
|
|
|
(lambda (line)
|
|
|
|
(org-babel-chomp ;; remove trailing newlines
|
|
|
|
(when (> (length line) 0) ;; remove empty lines
|
|
|
|
(cond
|
|
|
|
;; remove leading "-> " from return values
|
|
|
|
((and (>= (length line) 3)
|
2011-11-29 11:16:14 -05:00
|
|
|
(string= "-> " (substring line 0 3)))
|
|
|
|
(substring line 3))
|
2011-10-26 15:02:11 -04:00
|
|
|
;; remove trailing "-> <<return-value>>" on the
|
|
|
|
;; last line of output
|
|
|
|
((and (member "output" result-params)
|
|
|
|
(string-match-p "->" line))
|
2011-11-29 11:16:14 -05:00
|
|
|
(substring line 0 (string-match "->" line)))
|
2011-10-26 15:02:11 -04:00
|
|
|
(t line)
|
|
|
|
)
|
|
|
|
;; (if (and (>= (length line) 3) ;; remove leading "<- "
|
2011-11-29 11:16:14 -05:00
|
|
|
;; (string= "-> " (substring line 0 3)))
|
|
|
|
;; (substring line 3)
|
2011-10-26 15:02:11 -04:00
|
|
|
;; line)
|
|
|
|
)))
|
|
|
|
;; returns a list of the output of each evaluated expression
|
|
|
|
(org-babel-comint-with-output (session org-babel-picolisp-eoe)
|
|
|
|
(insert wrapped-body) (comint-send-input)
|
|
|
|
(insert "'" org-babel-picolisp-eoe) (comint-send-input)))))
|
|
|
|
"\n")
|
|
|
|
;; external evaluation
|
|
|
|
(let ((script-file (org-babel-temp-file "picolisp-script-")))
|
|
|
|
(with-temp-file script-file
|
|
|
|
(insert (concat wrapped-body "(bye)")))
|
|
|
|
(org-babel-eval
|
|
|
|
(format "%s %s"
|
|
|
|
org-babel-picolisp-cmd
|
|
|
|
(org-babel-process-file-name script-file))
|
|
|
|
""))))))
|
|
|
|
|
|
|
|
(defun org-babel-picolisp-initiate-session (&optional session-name)
|
|
|
|
"If there is not a current inferior-process-buffer in SESSION
|
|
|
|
then create. Return the initialized session."
|
|
|
|
(unless (string= session-name "none")
|
|
|
|
(require 'inferior-picolisp)
|
|
|
|
;; provide a reasonable default session name
|
|
|
|
(let ((session (or session-name "*inferior-picolisp*")))
|
|
|
|
;; check if we already have a live session by this name
|
|
|
|
(if (org-babel-comint-buffer-livep session)
|
|
|
|
(get-buffer session)
|
|
|
|
(save-window-excursion
|
|
|
|
(run-picolisp org-babel-picolisp-cmd)
|
|
|
|
(rename-buffer session-name)
|
|
|
|
(current-buffer))))))
|
|
|
|
|
|
|
|
(provide 'ob-picolisp)
|
2011-11-29 11:05:31 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-26 15:02:11 -04:00
|
|
|
;;; ob-picolisp.el ends here
|