2015-10-26 00:56:00 +00:00
|
|
|
;;; ob-forth.el --- Babel Functions for Forth -*- lexical-binding: t; -*-
|
2014-08-08 11:56:20 +00:00
|
|
|
|
2024-01-02 01:47:10 +00:00
|
|
|
;; Copyright (C) 2014-2024 Free Software Foundation, Inc.
|
2014-08-08 11:56:20 +00:00
|
|
|
|
|
|
|
;; Author: Eric Schulte
|
|
|
|
;; Keywords: literate programming, reproducible research, forth
|
2021-09-26 07:44:29 +00:00
|
|
|
;; URL: https://orgmode.org
|
2014-08-08 11:56:20 +00:00
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; 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,
|
|
|
|
;; 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.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2014-08-08 11:56:20 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Requires the gforth forth compiler and `forth-mode' (see below).
|
|
|
|
;; https://www.gnu.org/software/gforth/
|
|
|
|
|
|
|
|
;;; Requirements:
|
|
|
|
|
|
|
|
;; Session evaluation requires the gforth forth compiler as well as
|
|
|
|
;; `forth-mode' which is distributed with gforth (in gforth.el).
|
|
|
|
|
|
|
|
;;; Code:
|
2022-08-04 13:53:05 +00:00
|
|
|
|
|
|
|
(require 'org-macs)
|
|
|
|
(org-assert-version)
|
|
|
|
|
2014-08-08 11:56:20 +00:00
|
|
|
(require 'ob)
|
2018-05-10 00:04:12 +00:00
|
|
|
(require 'org-macs)
|
2014-08-08 11:56:20 +00:00
|
|
|
|
2014-08-14 09:15:37 +00:00
|
|
|
(declare-function forth-proc "ext:gforth" ())
|
|
|
|
|
2014-08-08 11:56:20 +00:00
|
|
|
(defvar org-babel-default-header-args:forth '((:session . "yes"))
|
|
|
|
"Default header arguments for forth code blocks.")
|
|
|
|
|
|
|
|
(defun org-babel-execute:forth (body params)
|
2023-09-12 09:30:51 +00:00
|
|
|
"Execute Forth BODY according to PARAMS.
|
2019-09-20 22:27:53 +00:00
|
|
|
This function is called by `org-babel-execute-src-block'."
|
2016-09-22 17:45:15 +00:00
|
|
|
(if (string= "none" (cdr (assq :session params)))
|
2014-08-08 11:56:20 +00:00
|
|
|
(error "Non-session evaluation not supported for Forth code blocks")
|
|
|
|
(let ((all-results (org-babel-forth-session-execute body params)))
|
2016-09-22 17:45:15 +00:00
|
|
|
(if (member "output" (cdr (assq :result-params params)))
|
2014-08-08 11:56:20 +00:00
|
|
|
(mapconcat #'identity all-results "\n")
|
|
|
|
(car (last all-results))))))
|
|
|
|
|
|
|
|
(defun org-babel-forth-session-execute (body params)
|
2023-09-12 09:30:51 +00:00
|
|
|
"Execute Forth BODY in session defined via PARAMS."
|
2023-01-23 15:06:46 +00:00
|
|
|
(org-require-package 'forth-mode)
|
2014-08-08 11:56:20 +00:00
|
|
|
(let ((proc (forth-proc))
|
2019-03-16 18:36:38 +00:00
|
|
|
(rx " \\(\n:\\|compiled\n\\|ok\n\\)")
|
2014-08-08 11:56:20 +00:00
|
|
|
(result-start))
|
|
|
|
(with-current-buffer (process-buffer (forth-proc))
|
|
|
|
(mapcar (lambda (line)
|
|
|
|
(setq result-start (progn (goto-char (process-mark proc))
|
|
|
|
(point)))
|
|
|
|
(comint-send-string proc (concat line "\n"))
|
|
|
|
;; wait for forth to say "ok"
|
|
|
|
(while (not (progn (goto-char result-start)
|
2014-08-10 01:35:27 +00:00
|
|
|
(re-search-forward rx nil t)))
|
2014-08-08 11:56:20 +00:00
|
|
|
(accept-process-output proc 0.01))
|
2014-08-10 01:35:27 +00:00
|
|
|
(let ((case (match-string 1)))
|
|
|
|
(cond
|
|
|
|
((string= "ok\n" case)
|
|
|
|
;; Collect intermediate output.
|
|
|
|
(buffer-substring (+ result-start 1 (length line))
|
|
|
|
(match-beginning 0)))
|
|
|
|
((string= "compiled\n" case))
|
|
|
|
;; Ignore partial compilation.
|
|
|
|
((string= "\n:" case)
|
|
|
|
;; Report errors.
|
|
|
|
(org-babel-eval-error-notify 1
|
2021-09-29 07:22:47 +00:00
|
|
|
(buffer-substring
|
|
|
|
(+ (match-beginning 0) 1) (point-max)))
|
2020-02-18 21:57:37 +00:00
|
|
|
nil))))
|
2016-06-21 13:24:06 +00:00
|
|
|
(split-string (org-trim
|
|
|
|
(org-babel-expand-body:generic body params))
|
|
|
|
"\n"
|
|
|
|
'omit-nulls)))))
|
2014-08-08 11:56:20 +00:00
|
|
|
|
|
|
|
(provide 'ob-forth)
|
|
|
|
|
|
|
|
;;; ob-forth.el ends here
|