05.06.07
ASDF system definition files for Fortran 77 codes
One of the Common Lisp packages that I find very useful is f2cl, originally written by Kevin A. Broughan and Diane M. K. Willcock [1], with recent contributions by Richard J. Fateman and Raymond Toy [2]. It can convert a lot of the Fortran 77 codes out there fairly reliably into quite fast Common Lisp code. The lack of a fancy home page or even a separate project (it is currently part of CLOCC) makes it somewhat hard to find, but should not be taken as a sign of abandon. A more prominent project that uses f2cl is the open source CAS system Maxima.
The advantages of using f2cl over a foreign function interface are, among other things, that the generated Common Lisp code has far better error handling, and is much more convenient to use (for a Common Lisp programmer, at least).
I think it would be nice to have ASDF system definitions for the Fortran 77 packages bundled with f2cl. This would complement the mk:defsystem definitions already available. A small difficulty is that the f2cl compiler has a lot of options, and it is desirable to want to set them globally, eventually overriding them on a file by file basis. At least, this is what is done in some of the .system files. I managed to convince ASDF to do this, but I am not sure if the way i did it is the best solution. From the point of view of OOP this can be (and will be) improved, of course. I’m referring more to the need of things like accessing ASDF symbols that are not exported. In any case, having global options that can be overriden on a component basis looks like a feature one would like to have every now and then.
A typical f2cl .system file looks like this (for example):
(mk:define-language :f2cl
:compiler #'f2cl:f2cl-compile
:source-extension "f")
(mk:defsystem minpack
:source-pathname "clocc:src;f2cl;packages;minpack"
:components
((:file "minpack"
:language :lisp)
(:module "minpack"
:source-pathname ""
:source-extension "f"
:package :minpack
:language :f2cl
:compiler-options (:include-comments t
:keep-lisp-file t
:relaxed-array-decls nil
:array-type :array
:array-slicing t
:package :minpack)
;; etc
Note that :file components can also have a :compiler-options, although I don’t know how the overriding behavior really is.
To convince ASDF to behave in a similar way, I subclassed the asdf:module class, adding an f2cl-options slot.
(defclass f2cl-module (module) ((f2cl-options :initform nil :initarg :f2cl-options :accessor f2cl-options)))
To have an f2cl source file type with corresponding compilation, one does
(defclass f77-source-file (cl-source-file) ((f2cl-options :initform nil :initarg :f2cl-options))) (defmethod source-file-type ((c f77-source-file) (s module)) "f") (defmethod perform ((o compile-op) (f f77-source-file)) (apply #'f2cl:f2cl-compile (cons (make-pathname :name (component-name f) :type "f" :defaults (component-pathname f)) (compiler-options f))))
But here is the catch. Compiler options have to be computed from the module *and* the file. I did it like this
(defmethod f2cl-options ((c f77-source-file))
(let* ((c-c-o (slot-value c 'f2cl-options))
(p-c-o (when (typep (parent c) 'f2cl-module)
(f2cl-options (parent c)))))
;; override global options.
(append c-c-o p-c-o)))
where
(defmethod parent ((c f77-source-file)) (slot-value c 'asdf::parent)) ;; Oops
Anyway, it works. Now I am wondering if I overlooked the apropriate feature in ASDF, or another way of doing this. Accessing ‘asdf::parent is good enough for me, but before attempting to contribute .asd files to f2cl, I would prefer to have a more solid solution.