1eb253148e9827c2c7bdd2e75ba7f03bf8bcef90
[sod] / src / module-impl.lisp
1 ;;; -*-lisp-*-
2 ;;;
3 ;;; Module protocol implementation
4 ;;;
5 ;;; (c) 2009 Straylight/Edgeware
6 ;;;
7
8 ;;;----- Licensing notice ---------------------------------------------------
9 ;;;
10 ;;; This file is part of the Sensible Object Design, an object system for C.
11 ;;;
12 ;;; SOD is free software; you can redistribute it and/or modify
13 ;;; it under the terms of the GNU General Public License as published by
14 ;;; the Free Software Foundation; either version 2 of the License, or
15 ;;; (at your option) any later version.
16 ;;;
17 ;;; SOD is distributed in the hope that it will be useful,
18 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;;; GNU General Public License for more details.
21 ;;;
22 ;;; You should have received a copy of the GNU General Public License
23 ;;; along with SOD; if not, write to the Free Software Foundation,
24 ;;; Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26 (cl:in-package #:sod)
27
28 ;;;--------------------------------------------------------------------------
29 ;;; Module basics.
30
31 (defmethod module-import ((module module))
32 (dolist (item (module-items module))
33 (module-import item)))
34
35 (defmethod add-to-module ((module module) item)
36 (setf (module-items module)
37 (nconc (module-items module) (list item)))
38 (module-import item))
39
40 (defmethod shared-initialize :after ((module module) slot-names &key pset)
41 "Tick off known properties on the property set."
42 (declare (ignore slot-names))
43 (dolist (prop '(:guard))
44 (get-property pset prop nil)))
45
46 (defmethod finalize-module ((module module))
47 (let* ((pset (module-pset module))
48 (class (get-property pset :module-class :symbol 'module)))
49
50 ;; Always call `change-class', even if it's the same one; this will
51 ;; exercise the property-set fiddling in `shared-initialize' and we can
52 ;; catch unknown-property errors.
53 (change-class module class :state t :pset pset)
54 (check-unused-properties pset)))
55
56 ;;;--------------------------------------------------------------------------
57 ;;; Module objects.
58
59 (defvar-unbound *module-map*
60 "Hash table mapping true names to module objects.")
61 (define-clear-the-decks reset-module-map
62 (setf *module-map* (make-hash-table :test #'equal)))
63
64 (defun build-module
65 (name thunk &key (truename (probe-file name)) location)
66 "Construct a new module.
67
68 This is the functionality underlying `define-module': see that macro for
69 full information."
70
71 ;; Check for an import cycle.
72 (when truename
73 (let ((existing (gethash truename *module-map*)))
74 (cond ((null existing))
75 ((eq (module-state existing) t)
76 (when (plusp (module-errors existing))
77 (error "Module `~A' contains errors" name))
78 (return-from build-module existing))
79 (t
80 (error "Module `~A' already being imported at ~A"
81 name (module-state existing))))))
82
83 ;; Construct the new module.
84 (let ((*module* (make-instance 'module
85 :name (pathname name)
86 :state (file-location location))))
87 (when truename
88 (setf (gethash truename *module-map*) *module*))
89 (unwind-protect
90 (with-module-environment ()
91 (module-import *builtin-module*)
92 (funcall thunk)
93 (finalize-module *module*)
94 *module*)
95 (when (and truename (not (eq (module-state *module*) t)))
96 (remhash truename *module-map*)))))
97
98 (defun call-with-module-environment (thunk &optional (module *module*))
99 "Invoke THUNK with bindings for the module variables in scope.
100
101 This is the guts of `with-module-environment', which you should probably
102 use instead."
103 (progv
104 (mapcar #'car *module-bindings-alist*)
105 (module-variables module)
106 (handler-bind ((error (lambda (cond)
107 (declare (ignore cond))
108 (incf (slot-value module 'errors))
109 :decline)))
110 (unwind-protect (funcall thunk)
111 (setf (module-variables module)
112 (mapcar (compose #'car #'symbol-value)
113 *module-bindings-alist*))))))
114
115 (defun call-with-temporary-module (thunk)
116 "Invoke THUNK in the context of a temporary module, returning its values.
117
118 This is mainly useful for testing things which depend on module variables.
119 This is the functionality underlying `with-temporary-module'."
120 (let ((*module* (make-instance 'module
121 :name "<temp>"
122 :state nil)))
123 (with-module-environment ()
124 (module-import *builtin-module*)
125 (funcall thunk))))
126
127 ;;;--------------------------------------------------------------------------
128 ;;; Type definitions.
129
130 (export 'type-item)
131 (defclass type-item ()
132 ((name :initarg :name :type string :reader type-name))
133 (:documentation
134 "A note that a module exports a type.
135
136 We can only export simple types, so we only need to remember the name.
137 The magic simple-type cache will ensure that we get the same type object
138 when we do the import."))
139
140 (defmethod module-import ((item type-item))
141 (let* ((name (type-name item))
142 (def (gethash name *module-type-map*))
143 (type (make-simple-type name)))
144 (cond ((not def)
145 (setf (gethash name *module-type-map*) type))
146 ((not (eq def type))
147 (error "Conflicting types `~A'" name)))))
148
149 (defmethod module-import ((class sod-class))
150 (record-sod-class class))
151
152 ;;;--------------------------------------------------------------------------
153 ;;; Code fragments.
154
155 (defun output-c-excursion (stream location func)
156 "Invoke FUNC surrounding it by writing #line markers to STREAM.
157
158 The first marker describes LOCATION; the second refers to the actual
159 output position in STREAM. If LOCATION doesn't provide a line number then
160 no markers are output after all. If the output stream isn't
161 position-aware then no final marker is output.
162
163 FUNC is passed the output stream as an argument. Complicated games may be
164 played with interposed streams. Try not to worry about it."
165
166 (flet ((doit (stream)
167 (let* ((location (file-location location))
168 (line (file-location-line location))
169 (filename (file-location-filename location)))
170 (cond (line
171 (when (typep stream 'position-aware-stream)
172 (format stream "~&#line ~D~@[ ~S~]~%" line filename))
173 (funcall func stream)
174 (when (typep stream 'position-aware-stream)
175 (fresh-line stream)
176 (format stream "#line ~D ~S~%"
177 (1+ (position-aware-stream-line stream))
178 (let ((path (stream-pathname stream)))
179 (if path (namestring path)
180 "<sod-output>")))))
181 (t
182 (funcall func stream))))))
183 (print-ugly-stuff stream #'doit)))
184
185 (defmethod print-object ((fragment c-fragment) stream)
186 (let ((text (c-fragment-text fragment))
187 (location (file-location fragment)))
188 (if *print-escape*
189 (print-unreadable-object (fragment stream :type t)
190 (when location
191 (format stream "~A " location))
192 (cond ((< (length text) 40)
193 (prin1 text stream) stream)
194 (t
195 (prin1 (subseq text 0 37) stream)
196 (write-string "..." stream))))
197 (output-c-excursion stream location
198 (lambda (stream)
199 (awhen (file-location-column location)
200 (dotimes (i it) (write-char #\space stream)))
201 (write-string text stream))))))
202
203 (defmethod make-load-form ((fragment c-fragment) &optional environment)
204 (make-load-form-saving-slots fragment :environment environment))
205
206 (export '(code-fragment-item code-fragment code-fragment-reason
207 code-fragment-name code-fragment-constraints))
208 (defclass code-fragment-item ()
209 ((fragment :initarg :fragment :type (or string c-fragment)
210 :reader code-fragment)
211 (reason :initarg :reason :type keyword :reader code-fragment-reason)
212 (name :initarg :name :type t :reader code-fragment-name)
213 (constraints :initarg :constraints :type list
214 :reader code-fragment-constraints))
215 (:documentation
216 "A plain fragment of C to be dropped in at top-level."))
217
218 ;;;--------------------------------------------------------------------------
219 ;;; File searching.
220
221 (export '*module-dirs*)
222 (defparameter *module-dirs* nil
223 "A list of directories (as pathname designators) to search for files.
224
225 Both SOD module files and Lisp extension files are searched for in this
226 list. The search works by merging the requested pathname with each
227 element of this list in turn. The list is prefixed by the pathname of the
228 requesting file, so that it can refer to other files relative to wherever
229 it was found.
230
231 See `find-file' for the grubby details.")
232
233 (export 'find-file)
234 (defun find-file (home name what thunk)
235 "Find a file called NAME on the module search path, and call THUNK on it.
236
237 The file is searched for relative to the HOME file or directory, and also
238 in the directories mentioned in the `*module-dirs*' list. If the file is
239 found, then THUNK is invoked with two arguments: the name we used to find
240 it (which might be relative to the starting directory) and the truename
241 found by `probe-file'.
242
243 If the file wasn't found, or there was some kind of error, then an error
244 is signalled; WHAT should be a noun phrase describing the kind of thing we
245 were looking for, suitable for inclusion in the error message.
246
247 While `find-file' establishes condition handlers for its own purposes,
248 THUNK is not invoked with any additional handlers defined."
249
250 (handler-case
251 (dolist (dir (cons home *module-dirs*) (values nil nil))
252 (let* ((path (merge-pathnames name dir))
253 (probe (probe-file path)))
254 (when probe
255 (return (values path probe)))))
256 (file-error (error)
257 (error "Error searching for ~A ~S: ~A" what (namestring name) error))
258 (:no-error (path probe)
259 (cond ((null path)
260 (error "Failed to find ~A ~S" what (namestring name)))
261 (t
262 (funcall thunk path probe))))))
263
264 ;;;----- That's all, folks --------------------------------------------------