-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathob-csharp.el
56 lines (45 loc) · 2.15 KB
/
ob-csharp.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
;;; ob-csharp.el --- Org-babel functions for csharp evaluation -*- lexical-binding: t -*-
;;; Copyright (C) 2020 Sam Precious
;; Author: Sam Precious <[email protected]>
;; URL: http://github.com/samwdp/ob-csharp
;; Keywords: docs org babel csharp
;; Version: 0.0.1
;; Created: 28th Sept 2020
;; Package-Requires: ((org "8") (emacs "24.4"))
;; This program 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.
;; This program 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
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; Org-babel functions for csharp evaluation
;;; Code:
(require 'ob)
(require 'csharp-mode)
(add-to-list 'org-babel-tangle-lang-exts '("csharp" . "cs"))
(defvar org-babel-default-header-args:csharp '())
(defun ob-csharp--build-script-run-command (path)
"Create run command according to the PATH."
(format "dotnet script %s" path))
(defun org-babel-execute:csharp (body params)
(let* ((processed-params (org-babel-process-params params))
(src-temp (org-babel-temp-file "csharp-src-" ".csx")))
(with-temp-file src-temp (insert body))
(let ((results (org-babel-eval (ob-csharp--build-script-run-command src-temp) "")))
(org-babel-reassemble-table
(org-babel-result-cond (cdr (assoc :result-params params))
(org-babel-read results)
(let ((tmp-file (org-babel-temp-file "c-")))
(with-temp-file tmp-file (insert results))
(org-babel-import-elisp-from-file tmp-file)))
(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)))))))
(provide 'ob-csharp)
;;; ob-csharp.el ends here