r8596: lml2 rework
[lml2.git] / files.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          files.lisp
6 ;;;; Purpose:       File and directory functions for LML
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Aug 2002
9 ;;;;
10 ;;;; This file, part of LML2, is Copyright (c) 2000-2003 by Kevin Rosenberg.
11 ;;;; Rights of modification and redistribution are in the LICENSE file.
12 ;;;;
13 ;;;; *************************************************************************
14
15 (in-package #:lml2)
16
17 (eval-when (:compile-toplevel :load-toplevel :execute)
18   (defvar *output-dir* nil)
19   (defvar *sources-dir* nil)
20   )
21
22 (defmacro lml-file-name (file &optional (type :source))
23   (let ((f file))
24     (when (and (consp f) (eql (car f) 'cl:quote))
25       (setq f (cadr f)))
26     (when (symbolp f)
27       (setq f (string-downcase (symbol-name f))))
28     (when (stringp f)
29       (unless (position #\. f)
30         (setq f (concatenate 'string f ".html"))))
31     (if *sources-dir*
32         (merge-pathnames
33          (make-pathname :name `,(pathname-name f)
34                         :type `,(pathname-type f)
35                         :directory `,(pathname-directory f))
36          (ecase type
37            (:source *sources-dir*)
38            (:output *output-dir*)))
39       (if (stringp f)
40           (parse-namestring f)
41         f))))
42
43 (defmacro with-dir ((output &key sources) &body body)
44   (let ((output-dir (gensym))
45         (sources-dir (gensym)))
46   `(let ((,output-dir ,output)
47          (,sources-dir ,sources))
48     (when (stringp ,output-dir)
49       (setq ,output-dir (parse-namestring ,output-dir)))
50     (when (stringp ,sources-dir)
51       (setq ,sources-dir (parse-namestring ,sources-dir)))
52     (unless ,sources-dir
53       (setq ,sources-dir ,output-dir))
54     (let ((*output-dir* ,output-dir)
55           (*sources-dir* ,sources-dir))
56       ,@body))))
57
58 (defun lml-load-path (file)
59   (if (probe-file file)
60       (with-open-file (in file :direction :input)
61         (do ((form (read in nil 'eof) (read in nil 'eof)))
62             ((eq form 'eof))
63           (eval form)))
64     (format *trace-output* "Warning: unable to load LML file ~S" file)))
65
66 (defun process-dir (dir &key sources)
67   (with-dir (dir :sources sources)
68     (let ((lml-files (directory
69                       (make-pathname :defaults *sources-dir*
70                                      :name :wild
71                                      :type "lml"))))
72       (dolist (file lml-files)
73         (format *trace-output* "~&; Processing ~A~%" file)
74         (lml-load-path file)))))
75
76 (defun lml-load (file)
77   (lml-load-path (eval `(lml-file-name ,file :source))))
78
79 (defun insert-file (file)
80   (print-file-contents file *html-stream*))