ob-fortran.el 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. ;;; ob-fortran.el --- Babel Functions for Fortran -*- lexical-binding: t; -*-
  2. ;; Copyright (C) 2011-2021 Free Software Foundation, Inc.
  3. ;; Authors: Sergey Litvinov
  4. ;; Eric Schulte
  5. ;; Keywords: literate programming, reproducible research, fortran
  6. ;; Homepage: https://orgmode.org
  7. ;; This file is part of GNU Emacs.
  8. ;;
  9. ;; GNU Emacs is free software: you can redistribute it and/or modify
  10. ;; it under the terms of the GNU General Public License as published by
  11. ;; the Free Software Foundation, either version 3 of the License, or
  12. ;; (at your option) any later version.
  13. ;; GNU Emacs is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
  19. ;;; Commentary:
  20. ;; Org-Babel support for evaluating fortran code.
  21. ;;; Code:
  22. (require 'ob)
  23. (require 'org-macs)
  24. (require 'cc-mode)
  25. (require 'cl-lib)
  26. (declare-function org-entry-get "org"
  27. (pom property &optional inherit literal-nil))
  28. (defvar org-babel-tangle-lang-exts)
  29. (add-to-list 'org-babel-tangle-lang-exts '("fortran" . "F90"))
  30. (defvar org-babel-default-header-args:fortran '())
  31. (defcustom org-babel-fortran-compiler "gfortran"
  32. "Fortran command used to compile Fortran source code file."
  33. :group 'org-babel
  34. :package-version '(Org . "9.5")
  35. :type 'string)
  36. (defun org-babel-execute:fortran (body params)
  37. "This function should only be called by `org-babel-execute:fortran'."
  38. (let* ((tmp-src-file (org-babel-temp-file "fortran-src-" ".F90"))
  39. (tmp-bin-file (org-babel-temp-file "fortran-bin-" org-babel-exeext))
  40. (cmdline (cdr (assq :cmdline params)))
  41. (flags (cdr (assq :flags params)))
  42. (full-body (org-babel-expand-body:fortran body params)))
  43. (with-temp-file tmp-src-file (insert full-body))
  44. (org-babel-eval
  45. (format "%s -o %s %s %s"
  46. org-babel-fortran-compiler
  47. (org-babel-process-file-name tmp-bin-file)
  48. (mapconcat 'identity
  49. (if (listp flags) flags (list flags)) " ")
  50. (org-babel-process-file-name tmp-src-file)) "")
  51. (let ((results
  52. (org-trim
  53. (org-remove-indentation
  54. (org-babel-eval
  55. (concat tmp-bin-file (if cmdline (concat " " cmdline) "")) "")))))
  56. (org-babel-reassemble-table
  57. (org-babel-result-cond (cdr (assq :result-params params))
  58. (org-babel-read results)
  59. (let ((tmp-file (org-babel-temp-file "f-")))
  60. (with-temp-file tmp-file (insert results))
  61. (org-babel-import-elisp-from-file tmp-file)))
  62. (org-babel-pick-name
  63. (cdr (assq :colname-names params)) (cdr (assq :colnames params)))
  64. (org-babel-pick-name
  65. (cdr (assq :rowname-names params)) (cdr (assq :rownames params)))))))
  66. (defun org-babel-expand-body:fortran (body params)
  67. "Expand a block of fortran or fortran code with org-babel according to
  68. its header arguments."
  69. (let ((vars (org-babel--get-vars params))
  70. (main-p (not (string= (cdr (assq :main params)) "no")))
  71. (includes (or (cdr (assq :includes params))
  72. (org-babel-read (org-entry-get nil "includes" t))))
  73. (defines (org-babel-read
  74. (or (cdr (assq :defines params))
  75. (org-babel-read (org-entry-get nil "defines" t))))))
  76. (mapconcat 'identity
  77. (list
  78. ;; includes
  79. (mapconcat
  80. (lambda (inc) (format "#include %s" inc))
  81. (if (listp includes) includes (list includes)) "\n")
  82. ;; defines
  83. (mapconcat
  84. (lambda (inc) (format "#define %s" inc))
  85. (if (listp defines) defines (list defines)) "\n")
  86. ;; body
  87. (if main-p
  88. (org-babel-fortran-ensure-main-wrap
  89. (concat
  90. ;; variables
  91. (mapconcat 'org-babel-fortran-var-to-fortran vars "\n")
  92. body)
  93. params)
  94. body) "\n") "\n")))
  95. (defun org-babel-fortran-ensure-main-wrap (body params)
  96. "Wrap body in a \"program ... end program\" block if none exists."
  97. (if (string-match "^[ \t]*program\\>" (capitalize body))
  98. (let ((vars (org-babel--get-vars params)))
  99. (when vars (error "Cannot use :vars if `program' statement is present"))
  100. body)
  101. (format "program main\n%s\nend program main\n" body)))
  102. (defun org-babel-prep-session:fortran (_session _params)
  103. "This function does nothing as fortran is a compiled language with no
  104. support for sessions."
  105. (error "Fortran is a compiled languages -- no support for sessions"))
  106. (defun org-babel-load-session:fortran (_session _body _params)
  107. "This function does nothing as fortran is a compiled language with no
  108. support for sessions."
  109. (error "Fortran is a compiled languages -- no support for sessions"))
  110. ;; helper functions
  111. (defun org-babel-fortran-var-to-fortran (pair)
  112. "Convert an elisp val into a string of fortran code specifying a var
  113. of the same value."
  114. ;; TODO list support
  115. (let ((var (car pair))
  116. (val (cdr pair)))
  117. (when (symbolp val)
  118. (setq val (symbol-name val))
  119. (when (= (length val) 1)
  120. (setq val (string-to-char val))))
  121. (cond
  122. ((integerp val)
  123. (format "integer, parameter :: %S = %S\n" var val))
  124. ((floatp val)
  125. (format "real, parameter :: %S = %S\n" var val))
  126. ((or (integerp val))
  127. (format "character, parameter :: %S = '%S'\n" var val))
  128. ((stringp val)
  129. (format "character(len=%d), parameter :: %S = '%s'\n"
  130. (length val) var val))
  131. ;; val is a matrix
  132. ((and (listp val) (cl-every #'listp val))
  133. (format "real, parameter :: %S(%d,%d) = transpose( reshape( %s , (/ %d, %d /) ) )\n"
  134. var (length val) (length (car val))
  135. (org-babel-fortran-transform-list val)
  136. (length (car val)) (length val)))
  137. ((listp val)
  138. (format "real, parameter :: %S(%d) = %s\n"
  139. var (length val) (org-babel-fortran-transform-list val)))
  140. (t
  141. (error "The type of parameter %s is not supported by ob-fortran" var)))))
  142. (defun org-babel-fortran-transform-list (val)
  143. "Return a fortran representation of enclose syntactic lists."
  144. (if (listp val)
  145. (concat "(/" (mapconcat #'org-babel-fortran-transform-list val ", ") "/)")
  146. (format "%S" val)))
  147. (provide 'ob-fortran)
  148. ;;; ob-fortran.el ends here