1 ;;; ob-fortran.el --- org-babel functions for fortran
3 ;; Copyright (C) 2011-2012 Sergey Litvinov, Eric Schulte
5 ;; Authors: Sergey Litvinov (based on ob-C.el by Eric Schulte), Eric Schulte
6 ;; Keywords: literate programming, reproducible research, fortran
7 ;; Homepage: http://orgmode.org
9 ;; This program 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, or (at your option)
14 ;; This program is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
21 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 ;; Boston, MA 02110-1301, USA.
26 ;; Org-Babel support for evaluating fortran code.
33 (declare-function org-entry-get
"org"
34 (pom property
&optional inherit literal-nil
))
36 (defvar org-babel-tangle-lang-exts
)
37 (add-to-list 'org-babel-tangle-lang-exts
'("fortran" .
"F90"))
39 (defvar org-babel-default-header-args
:fortran
'())
41 (defvar org-babel-fortran-compiler
"gfortran"
42 "fortran command used to compile a fortran source code file into an
45 (defun org-babel-execute:fortran
(body params
)
46 "This function should only be called by `org-babel-execute:fortran'"
47 (let* ((tmp-src-file (org-babel-temp-file "fortran-src-" ".F90"))
48 (tmp-bin-file (org-babel-temp-file "fortran-bin-"))
49 (cmdline (cdr (assoc :cmdline params
)))
50 (flags (cdr (assoc :flags params
)))
51 (full-body (org-babel-expand-body:fortran body params
))
54 (with-temp-file tmp-src-file
(insert full-body
))
56 (format "%s -o %s %s %s"
57 org-babel-fortran-compiler
58 (org-babel-process-file-name tmp-bin-file
)
60 (if (listp flags
) flags
(list flags
)) " ")
61 (org-babel-process-file-name tmp-src-file
)) ""))))
63 (org-babel-reassemble-table
64 (if (member "vector" (cdr (assoc :result-params params
)))
65 (let ((tmp-file (org-babel-temp-file "f-")))
66 (with-temp-file tmp-file
(insert results
))
67 (org-babel-import-elisp-from-file tmp-file
))
68 (org-babel-read results
))
70 (cdr (assoc :colname-names params
)) (cdr (assoc :colnames params
)))
72 (cdr (assoc :rowname-names params
)) (cdr (assoc :rownames params
)))))
75 (concat tmp-bin-file
(if cmdline
(concat " " cmdline
) "")) "")))))
77 (defun org-babel-expand-body:fortran
(body params
)
78 "Expand a block of fortran or fortran code with org-babel according to
79 it's header arguments."
80 (let ((vars (mapcar #'cdr
(org-babel-get-header params
:var
)))
81 (main-p (not (string= (cdr (assoc :main params
)) "no")))
82 (includes (or (cdr (assoc :includes params
))
83 (org-babel-read (org-entry-get nil
"includes" t
))))
84 (defines (org-babel-read
85 (or (cdr (assoc :defines params
))
86 (org-babel-read (org-entry-get nil
"defines" t
))))))
91 (lambda (inc) (format "#include %s" inc
))
92 (if (listp includes
) includes
(list includes
)) "\n")
95 (lambda (inc) (format "#define %s" inc
))
96 (if (listp defines
) defines
(list defines
)) "\n")
99 (org-babel-fortran-ensure-main-wrap
102 (mapconcat 'org-babel-fortran-var-to-fortran vars
"\n")
106 (defun org-babel-fortran-ensure-main-wrap (body params
)
107 "Wrap body in a \"program ... end program\" block if none exists."
108 (if (string-match "^[ \t]*program[ \t]*.*" (capitalize body
))
109 (let ((vars (mapcar #'cdr
(org-babel-get-header params
:var
))))
110 (if vars
(error "cannot use :vars if 'program' statement is present"))
112 (format "program main\n%s\nend program main\n" body
)))
114 (defun org-babel-prep-session:fortran
(session params
)
115 "This function does nothing as fortran is a compiled language with no
116 support for sessions"
117 (error "fortran is a compiled languages -- no support for sessions"))
119 (defun org-babel-load-session:fortran
(session body params
)
120 "This function does nothing as fortran is a compiled language with no
121 support for sessions"
122 (error "fortran is a compiled languages -- no support for sessions"))
126 (defun org-babel-fortran-var-to-fortran (pair)
127 "Convert an elisp val into a string of fortran code specifying a var
130 (let ((var (car pair
))
133 (setq val
(symbol-name val
))
134 (when (= (length val
) 1)
135 (setq val
(string-to-char val
))))
138 (format "integer, parameter :: %S = %S\n" var val
))
140 (format "real, parameter :: %S = %S\n" var val
))
142 (format "character, parameter :: %S = '%S'\n" var val
))
144 (format "character(len=%d), parameter :: %S = '%s'\n"
145 (length val
) var val
))
147 (format "real, parameter :: %S(%d) = %s\n"
148 var
(length val
) (ob-fortran-transform-list val
)))
150 (error (format "the type of parameter %s is not supported by ob-fortran"
153 (defun ob-fortran-transform-list (val)
154 "Return a fortran representation of enclose syntactic lists."
156 (concat "(/" (mapconcat #'ob-fortran-transform-list val
", ") "/)")
159 (provide 'ob-fortran
)
161 ;;; ob-fortran.el ends here