root/trunk/vms/make-mms-derivative.el
| Revision 4220, 5.6 kB (checked in by miyoshi, 8 months ago) |
|---|
| Line | |
|---|---|
| 1 | ;;; make-mms-derivative.el --- framework to do horrible things for VMS support |
| 2 | |
| 3 | ;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 |
| 4 | ;; Free Software Foundation, Inc. |
| 5 | |
| 6 | ;; Author: Thien-Thi Nguyen <ttn@gnu.org> |
| 7 | ;; Keywords: maint build vms mms makefile levitte autoconf war-is-a-lose |
| 8 | |
| 9 | ;; This file is part of GNU Emacs. |
| 10 | |
| 11 | ;; GNU Emacs is free software; you can redistribute it and/or modify |
| 12 | ;; it under the terms of the GNU General Public License as published by |
| 13 | ;; the Free Software Foundation; either version 3, or (at your option) |
| 14 | ;; any later version. |
| 15 | |
| 16 | ;; GNU Emacs is distributed in the hope that it will be useful, |
| 17 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | ;; GNU General Public License for more details. |
| 20 | |
| 21 | ;; You should have received a copy of the GNU General Public License |
| 22 | ;; along with GNU Emacs; see the file COPYING. If not, write to the |
| 23 | ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 24 | ;; Boston, MA 02110-1301, USA. |
| 25 | |
| 26 | ;;; Commentary: |
| 27 | |
| 28 | ;; Under VMS the standard make-like program is called MMS, which looks |
| 29 | ;; for an input file in the default directory named DESCRIP.MMS and runs |
| 30 | ;; the DCL command rules therein. As of 2005, the build process |
| 31 | ;; requires a hand translation of the Makefile.in and Emacs-specific |
| 32 | ;; methodology to DCL and TPU commands, so to alleviate this pain, we |
| 33 | ;; provide `make-mms-derivative', which given a source FILENAME, inserts |
| 34 | ;; the file contents in a new buffer and loads FILENAME-2mms. The lisp |
| 35 | ;; code in the -2mms file can (do whatever -- it's emacs -- and), as |
| 36 | ;; long as it arranges to write out the modified buffer after loading by |
| 37 | ;; specifying, on a line of its own, the directive: |
| 38 | ;; |
| 39 | ;; :output RELATIVE-OUTPUT |
| 40 | ;; |
| 41 | ;; where RELATIVE-OUTPUT is a filename (a string) relative to FILENAME's |
| 42 | ;; directory, typically something simple like "descrip.mms_in_in". Only |
| 43 | ;; the first :output directive is recognized. |
| 44 | ;; |
| 45 | ;; The only other special directive at this time has the form: |
| 46 | ;; |
| 47 | ;; :gigo NAME |
| 48 | ;; ;;blah blah blah |
| 49 | ;; ;;(more text here) |
| 50 | ;; |
| 51 | ;; NAME is anything distinguishable w/ `eq' (number, symbol or keyword). |
| 52 | ;; This associates NAME with the block of text starting immediately below |
| 53 | ;; the :gigo directive and ending at the first line that does not begin |
| 54 | ;; with two semicolons (which are stripped from each line in the block). |
| 55 | ;; To insert this block of text, pass NAME to `make-mms-derivative-gigo'. |
| 56 | ;; |
| 57 | ;; Directives are scanned before normal evaluation, so their placement |
| 58 | ;; in the file is not important. During loading, plain strings are |
| 59 | ;; displayed in the echo area, prefixed with the current line number. |
| 60 | ;; |
| 61 | ;; Over the long run, the convenience functions provided (see source) |
| 62 | ;; will be augmented by factoring maximally the -2mms files, squeezing |
| 63 | ;; as much algorithm out of those nasty heuristics as possible. What |
| 64 | ;; makes them nasty is not that they rely on the conventions of the |
| 65 | ;; Emacs makefiles; that's no big deal. What makes them nasty is that |
| 66 | ;; they rely on the conventions of separately maintained tools (namely |
| 67 | ;; Autoconf for VMS and GNU Autoconf), and the separation of conventions |
| 68 | ;; is how people drift apart, dragging their software behind |
| 69 | ;; mercilessly. |
| 70 | ;; |
| 71 | ;; In general, codified thought w/o self-synchronization is doomed. |
| 72 | ;; That a generation would eat its young (most discriminatingly, even) |
| 73 | ;; is no reason GNU cannot build around such woe. |
| 74 | |
| 75 | ;;; Code: |
| 76 | |
| 77 | (defvar make-mms-derivative-data nil |
| 78 | "Plist of data specific to `make-mms-derivative'.") |
| 79 | |
| 80 | (defun make-mms-derivative-data (key &optional newval) |
| 81 | (if newval (setq make-mms-derivative-data |
| 82 | (plist-put make-mms-derivative-data key newval)) |
| 83 | (plist-get make-mms-derivative-data key))) |
| 84 | |
| 85 | (defun make-mms-derivative-gigo (name) |
| 86 | "Insert the text associated with :gigo NAME." |
| 87 | (insert (cdr (assq name (make-mms-derivative-data :gigo))))) |
| 88 | |
| 89 | (defun make-mms-derivative (filename) |
| 90 | "Take FILENAME contents, load FILENAME-2mms, and write out the result. |
| 91 | The output file is specified by the :output directive in FILENAME-2mms. |
| 92 | See commentary of make-mms-derivative.el for full documentation." |
| 93 | (interactive "fSource File: ") |
| 94 | (let* ((todo (let ((fn (concat filename "-2mms"))) |
| 95 | (unless (file-exists-p fn) |
| 96 | (error "Could not find %s" fn)) |
| 97 | (set-buffer (get-buffer-create " *make-mms-derivative todo*")) |
| 98 | (insert-file-contents fn) |
| 99 | (current-buffer))) |
| 100 | (deriv (get-buffer-create (format "*mms-derivative: %s" |
| 101 | (file-relative-name filename)))) |
| 102 | output gigo form) |
| 103 | (set-buffer todo) |
| 104 | (re-search-forward "^:output") |
| 105 | (setq output (expand-file-name (read (current-buffer)) |
| 106 | (file-name-directory filename))) |
| 107 | (goto-char (point-min)) |
| 108 | (while (re-search-forward "^:gigo" (point-max) t) |
| 109 | (let ((name (read (current-buffer))) |
| 110 | (p (progn (forward-line 1) (point)))) |
| 111 | (while (looking-at ";;") |
| 112 | (delete-char 2) |
| 113 | (forward-line 1)) |
| 114 | (setq gigo (cons (cons name (buffer-substring p (point))) gigo)) |
| 115 | (delete-region p (point)))) |
| 116 | (message "Munging...") |
| 117 | (switch-to-buffer deriv) |
| 118 | (erase-buffer) |
| 119 | (insert-file-contents filename) |
| 120 | (set (make-local-variable 'make-mms-derivative-data) |
| 121 | (list :gigo gigo)) |
| 122 | (set-buffer todo) |
| 123 | (goto-char (point-min)) |
| 124 | (while (condition-case nil |
| 125 | (setq form (read (current-buffer))) |
| 126 | (end-of-file nil)) |
| 127 | (if (stringp form) |
| 128 | (message "%d: %s" (count-lines (point-min) (point)) form) |
| 129 | (save-excursion |
| 130 | (set-buffer deriv) |
| 131 | (eval form)))) |
| 132 | (set-buffer deriv) |
| 133 | (message "Munging...done") |
| 134 | (write-file output) |
| 135 | (kill-buffer todo) |
| 136 | (kill-buffer deriv))) |
| 137 | |
| 138 | (provide 'make-mms-derivative) |
| 139 | |
| 140 | ;;; arch-tag: a5b08625-3952-4053-be16-296220e27bb0 |
| 141 | ;;; make-mms-derivative.el ends here |
| 142 |
Note: See TracBrowser for help on using the browser.
