More WIP.
[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 Sensble 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 :lisp-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 module))
56
57 ;;;--------------------------------------------------------------------------
58 ;;; Module objects.
59
60 (defparameter *module-map* (make-hash-table :test #'equal)
61 "Hash table mapping true names to module objects.")
62
63 (defun build-module
64 (name thunk &key (truename (probe-file name)) location)
65 "Construct a new module.
66
67 This is the functionality underlying `define-module': see that macro for
68 full information."
69
70 ;; Check for an import cycle.
71 (when truename
72 (let ((existing (gethash truename *module-map*)))
73 (cond ((null existing))
74 ((eq (module-state existing) t)
75 (return-from build-module existing))
76 (t
77 (error "Module ~A already being imported at ~A"
78 name (module-state existing))))))
79
80 ;; Construct the new module.
81 (let ((*module* (make-instance 'module
82 :name (pathname name)
83 :state (file-location location))))
84 (when truename
85 (setf (gethash truename *module-map*) *module*))
86 (unwind-protect
87 (call-with-module-environment (lambda ()
88 (module-import *builtin-module*)
89 (funcall thunk)
90 (finalize-module *module*)))
91 (when (and truename (not (eq (module-state *module*) t)))
92 (remhash truename *module-map*)))))
93
94 (defun call-with-temporary-module (thunk)
95 "Invoke THUNK in the context of a temporary module, returning its values.
96
97 This is mainly useful for testing things which depend on module variables.
98 This is the functionality underlying `with-temporary-module'."
99 (let ((*module* (make-instance 'module
100 :name "<temp>"
101 :state nil)))
102 (call-with-module-environment
103 (lambda ()
104 (module-import *builtin-module*)
105 (funcall thunk)))))
106
107 ;;;--------------------------------------------------------------------------
108 ;;; Type definitions.
109
110 (export 'type-item)
111 (defclass type-item ()
112 ((name :initarg :name :type string :reader type-name))
113 (:documentation
114 "A note that a module exports a type.
115
116 We can only export simple types, so we only need to remember the name.
117 The magic simple-type cache will ensure that we get the same type object
118 when we do the import."))
119
120 (defmethod module-import ((item type-item))
121 (let* ((name (type-name item))
122 (def (gethash name *module-type-map*))
123 (type (make-simple-type name)))
124 (cond ((not def)
125 (setf (gethash name *module-type-map*) type))
126 ((not (eq def type))
127 (error "Conflicting types `~A'" name)))))
128
129 (defmethod module-import ((class sod-class))
130 (record-sod-class class))
131
132 ;;;--------------------------------------------------------------------------
133 ;;; Code fragments.
134
135 (export 'c-fragment)
136 (defclass c-fragment ()
137 ((location :initarg :location :type file-location
138 :accessor c-fragment-location)
139 (text :initarg :text :type string :accessor c-fragment-text))
140 (:documentation
141 "Represents a fragment of C code to be written to an output file.
142
143 A C fragment is aware of its original location, and will bear proper #line
144 markers when written out."))
145
146 (defun output-c-excursion (stream location thunk)
147 "Invoke THUNK surrounding it by writing #line markers to STREAM.
148
149 The first marker describes LOCATION; the second refers to the actual
150 output position in STREAM. If LOCATION doesn't provide a line number then
151 no markers are output after all. If the output stream isn't
152 position-aware then no final marker is output."
153
154 (let* ((location (file-location location))
155 (line (file-location-line location))
156 (filename (file-location-filename location)))
157 (cond (line
158 (format stream "~&#line ~D~@[ ~S~]~%" line filename)
159 (funcall thunk)
160 (when (typep stream 'position-aware-stream)
161 (fresh-line stream)
162 (format stream "~&#line ~D ~S~%"
163 (1+ (position-aware-stream-line stream))
164 (namestring (stream-pathname stream)))))
165 (t
166 (funcall thunk)))))
167
168 (defmethod print-object ((fragment c-fragment) stream)
169 (let ((text (c-fragment-text fragment))
170 (location (c-fragment-location fragment)))
171 (if *print-escape*
172 (print-unreadable-object (fragment stream :type t)
173 (when location
174 (format stream "~A " location))
175 (cond ((< (length text) 40)
176 (prin1 text stream) stream)
177 (t
178 (prin1 (subseq text 0 37) stream)
179 (write-string "..." stream))))
180 (output-c-excursion stream location
181 (lambda () (write-string text stream))))))
182
183 (defmethod make-load-form ((fragment c-fragment) &optional environment)
184 (make-load-form-saving-slots fragment :environment environment))
185
186 (export 'code-fragment-item)
187 (defclass code-fragment-item ()
188 ((fragment :initarg :fragment :type c-fragment :reader code-fragment)
189 (reason :initarg :reason :type keyword :reader code-fragment-reason)
190 (name :initarg :name :type t :reader code-fragment-name)
191 (constraints :initarg :constraints :type list
192 :reader code-fragment-constraints))
193 (:documentation
194 "A plain fragment of C to be dropped in at top-level."))
195
196 (defmacro define-fragment ((reason name) &body things)
197 (categorize (thing things)
198 ((constraints (listp thing))
199 (frags (typep thing '(or string c-fragment))))
200 (when (null frags)
201 (error "Missing code fragment"))
202 (when (cdr frags)
203 (error "Multiple code fragments"))
204 `(add-to-module
205 *module*
206 (make-instance 'code-fragment-item
207 :fragment ',(car frags)
208 :name ,name
209 :reason ,reason
210 :constraints (list ,@(mapcar (lambda (constraint)
211 (cons 'list constraint))
212 constraints))))))
213
214 ;;;--------------------------------------------------------------------------
215 ;;; File searching.
216
217 (export '*module-dirs*)
218 (defparameter *module-dirs* nil
219 "A list of directories (as pathname designators) to search for files.
220
221 Both SOD module files and Lisp extension files are searched for in this
222 list. The search works by merging the requested pathname with each
223 element of this list in turn. The list is prefixed by the pathname of the
224 requesting file, so that it can refer to other files relative to wherever
225 it was found.
226
227 See `find-file' for the grubby details.")
228
229 (export 'find-file)
230 (defun find-file (scanner name what thunk)
231 "Find a file called NAME on the module search path, and call THUNK on it.
232
233 The file is searched for relative to the SCANNER's current file, and also
234 in the directories mentioned in the `*module-dirs*' list. If the file is
235 found, then THUNK is invoked with two arguments: the name we used to find
236 it (which might be relative to the starting directory) and the truename
237 found by `probe-file'.
238
239 If the file wasn't found, or there was some kind of error, then an error
240 is signalled; WHAT should be a noun phrase describing the kind of thing we
241 were looking for, suitable for inclusion in the error message.
242
243 While `find-file' establishes condition handlers for its own purposes,
244 THUNK is not invoked with any additional handlers defined."
245
246 (handler-case
247 (dolist (dir (cons (pathname (scanner-filename scanner)) *module-dirs*)
248 (values nil nil))
249 (let* ((path (merge-pathnames name dir))
250 (probe (probe-file path)))
251 (when probe
252 (return (values path probe)))))
253 (file-error (error)
254 (error "Error searching for ~A ~S: ~A" what (namestring name) error))
255 (:no-error (path probe)
256 (cond ((null path)
257 (error "Failed to find ~A ~S" what (namestring name)))
258 (t
259 (funcall thunk path probe))))))
260
261 ;;;----- That's all, folks --------------------------------------------------