sort *features*ish variable values for repeatability
[sbcl.git] / src / code / target-misc.lisp
1 ;;;; Environment query functions, DOCUMENTATION and DRIBBLE.
2 ;;;;
3 ;;;; FIXME: If there are exactly three things in here, it could be
4 ;;;; exactly three files named e.g. equery.lisp, doc.lisp, and dribble.lisp.
5
6 ;;;; This software is part of the SBCL system. See the README file for
7 ;;;; more information.
8 ;;;;
9 ;;;; This software is derived from the CMU CL system, which was
10 ;;;; written at Carnegie Mellon University and released into the
11 ;;;; public domain. The software is in the public domain and is
12 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
13 ;;;; files for more information.
14
15 (in-package "SB!IMPL")
16 \f
17 ;;;; function names and documentation
18
19 ;;;; the ANSI interface to function names (and to other stuff too)
20 ;;; Note: this function gets called by the compiler (as of 1.0.17.x,
21 ;;; in MAYBE-INLINE-SYNTACTIC-CLOSURE), and so although ANSI says
22 ;;; we're allowed to return NIL here freely, it seems plausible that
23 ;;; small changes to the circumstances under which this function
24 ;;; returns non-NIL might have subtle consequences on the compiler.
25 ;;; So it might be desirable to have the compiler not rely on this
26 ;;; function, eventually.
27 (defun function-lambda-expression (fun)
28   "Return (VALUES DEFINING-LAMBDA-EXPRESSION CLOSURE-P NAME), where
29   DEFINING-LAMBDA-EXPRESSION is NIL if unknown, or a suitable argument
30   to COMPILE otherwise, CLOSURE-P is non-NIL if the function's definition
31   might have been enclosed in some non-null lexical environment, and
32   NAME is some name (for debugging only) or NIL if there is no name."
33   (declare (type function fun))
34   (etypecase fun
35     #!+sb-eval
36     (sb!eval:interpreted-function
37      (let ((name (sb!eval:interpreted-function-name fun))
38            (lambda-list (sb!eval:interpreted-function-lambda-list fun))
39            (declarations (sb!eval:interpreted-function-declarations fun))
40            (body (sb!eval:interpreted-function-body fun)))
41        (values `(lambda ,lambda-list
42                   ,@(when declarations `((declare ,@declarations)))
43                   ,@body)
44                t name)))
45     (function
46      (let* ((fun (%simple-fun-self (%fun-fun fun)))
47             (name (%fun-name fun))
48             (code (sb!di::fun-code-header fun))
49             (info (sb!kernel:%code-debug-info code)))
50        (if info
51            (let ((source (sb!c::debug-info-source info)))
52              (cond ((and (sb!c::debug-source-form source)
53                          (eq (sb!c::debug-source-function source) fun))
54                     (values (sb!c::debug-source-form source)
55                             nil
56                             name))
57                    ((legal-fun-name-p name)
58                     (let ((exp (fun-name-inline-expansion name)))
59                       (values exp (not exp) name)))
60                    (t
61                     (values nil t name))))
62            (values nil t name))))))
63
64 ;;;; Generalizing over SIMPLE-FUN, CLOSURE, and FUNCALLABLE-INSTANCEs
65
66 ;;; Underlying SIMPLE-FUN
67 (defun %fun-fun (function)
68   (declare (function function))
69   (typecase function
70     (simple-fun
71      function)
72     (closure
73      (%closure-fun function))
74     (funcallable-instance
75      (%fun-fun (funcallable-instance-fun function)))))
76
77 (defun %fun-lambda-list (function)
78   (typecase function
79     #!+sb-eval
80     (sb!eval:interpreted-function
81      (sb!eval:interpreted-function-debug-lambda-list function))
82     (t
83      (%simple-fun-arglist (%fun-fun function)))))
84
85 (defun (setf %fun-lambda-list) (new-value function)
86   (typecase function
87     #!+sb-eval
88     (sb!eval:interpreted-function
89      (setf (sb!eval:interpreted-function-debug-lambda-list function) new-value))
90     ;; FIXME: Eliding general funcallable-instances for now.
91     ((or simple-fun closure)
92      (setf (%simple-fun-arglist (%fun-fun function)) new-value)))
93   new-value)
94
95 (defun %fun-type (function)
96   (%simple-fun-type (%fun-fun function)))
97
98 ;;; a SETFable function to return the associated debug name for FUN
99 ;;; (i.e., the third value returned from CL:FUNCTION-LAMBDA-EXPRESSION),
100 ;;; or NIL if there's none
101 (defun %fun-name (function)
102   (typecase function
103     #!+sb-eval
104     (sb!eval:interpreted-function
105      (sb!eval:interpreted-function-debug-name function))
106     (t
107      (%simple-fun-name (%fun-fun function)))))
108
109 (defun (setf %fun-name) (new-value function)
110   (typecase function
111     #!+sb-eval
112     (sb!eval:interpreted-function
113      (setf (sb!eval:interpreted-function-debug-name function) new-value))
114     ;; FIXME: Eliding general funcallable-instances for now.
115     ((or simple-fun closure)
116      (setf (%simple-fun-name (%fun-fun function)) new-value)))
117   new-value)
118
119 (defun %fun-doc (function)
120   (typecase function
121     #!+sb-eval
122     (sb!eval:interpreted-function
123      (sb!eval:interpreted-function-documentation function))
124     (t
125      (%simple-fun-doc (%fun-fun function)))))
126
127 (defun (setf %fun-doc) (new-value function)
128   (declare (type (or null string) new-value))
129   (typecase function
130     #!+sb-eval
131     (sb!eval:interpreted-function
132      (setf (sb!eval:interpreted-function-documentation function) new-value))
133     ((or simple-fun closure)
134      (setf (%simple-fun-doc (%fun-fun function)) new-value)))
135   new-value)
136 \f
137 ;;; various environment inquiries
138
139 (defvar *features*
140   '#.(sort (copy-list sb-cold:*shebang-features*) #'string<)
141   #!+sb-doc
142   "a list of symbols that describe features provided by the
143    implementation")
144
145 (defun machine-instance ()
146   #!+sb-doc
147   "Return a string giving the name of the local machine."
148   #!+win32 (sb!win32::get-computer-name)
149   #!-win32 (sb!unix:unix-gethostname))
150
151 (defvar *machine-version*)
152
153 (defun machine-version ()
154   #!+sb-doc
155   "Return a string describing the version of the computer hardware we
156 are running on, or NIL if we can't find any useful information."
157   (unless (boundp '*machine-version*)
158     (setf *machine-version* (get-machine-version)))
159   *machine-version*)
160
161 ;;; FIXME: Don't forget to set these in a sample site-init file.
162 ;;; FIXME: Perhaps the functions could be SETFable instead of having the
163 ;;; interface be through special variables? As far as I can tell
164 ;;; from ANSI 11.1.2.1.1 "Constraints on the COMMON-LISP Package
165 ;;; for Conforming Implementations" it is kosher to add a SETF function for
166 ;;; a symbol in COMMON-LISP..
167 (defvar *short-site-name* nil
168   #!+sb-doc
169   "The value of SHORT-SITE-NAME.")
170 (defvar *long-site-name* nil
171   #!+sb-doc "the value of LONG-SITE-NAME")
172 (defun short-site-name ()
173   #!+sb-doc
174   "Return a string with the abbreviated site name, or NIL if not known."
175   *short-site-name*)
176 (defun long-site-name ()
177   #!+sb-doc
178   "Return a string with the long form of the site name, or NIL if not known."
179   *long-site-name*)
180 \f
181 ;;;; ED
182 (defvar *ed-functions* nil
183   "See function documentation for ED.")
184
185 (defun ed (&optional x)
186   "Starts the editor (on a file or a function if named).  Functions
187 from the list *ED-FUNCTIONS* are called in order with X as an argument
188 until one of them returns non-NIL; these functions are responsible for
189 signalling a FILE-ERROR to indicate failure to perform an operation on
190 the file system."
191   (dolist (fun *ed-functions*
192            (error 'extension-failure
193                   :format-control "Don't know how to ~S ~A"
194                   :format-arguments (list 'ed x)
195                   :references (list '(:sbcl :variable *ed-functions*))))
196     (when (funcall fun x)
197       (return t))))
198 \f
199 ;;;; dribble stuff
200
201 ;;; Each time we start dribbling to a new stream, we put it in
202 ;;; *DRIBBLE-STREAM*, and push a list of *DRIBBLE-STREAM*, *STANDARD-INPUT*,
203 ;;; *STANDARD-OUTPUT* and *ERROR-OUTPUT* in *PREVIOUS-DRIBBLE-STREAMS*.
204 ;;; *STANDARD-OUTPUT* and *ERROR-OUTPUT* is changed to a broadcast stream that
205 ;;; broadcasts to *DRIBBLE-STREAM* and to the old values of the variables.
206 ;;; *STANDARD-INPUT* is changed to an echo stream that echos input from the old
207 ;;; value of standard input to *DRIBBLE-STREAM*.
208 ;;;
209 ;;; When dribble is called with no arguments, *DRIBBLE-STREAM* is closed,
210 ;;; and the values of *DRIBBLE-STREAM*, *STANDARD-INPUT*, and
211 ;;; *STANDARD-OUTPUT* are popped from *PREVIOUS-DRIBBLE-STREAMS*.
212
213 (defvar *previous-dribble-streams* nil)
214 (defvar *dribble-stream* nil)
215
216 (defun dribble (&optional pathname &key (if-exists :append))
217   #!+sb-doc
218   "With a file name as an argument, dribble opens the file and sends a
219   record of further I/O to that file. Without an argument, it closes
220   the dribble file, and quits logging."
221   (cond (pathname
222          (let* ((new-dribble-stream
223                  (open pathname
224                        :direction :output
225                        :if-exists if-exists
226                        :if-does-not-exist :create))
227                 (new-standard-output
228                  (make-broadcast-stream *standard-output* new-dribble-stream))
229                 (new-error-output
230                  (make-broadcast-stream *error-output* new-dribble-stream))
231                 (new-standard-input
232                  (make-echo-stream *standard-input* new-dribble-stream)))
233            (push (list *dribble-stream* *standard-input* *standard-output*
234                        *error-output*)
235                  *previous-dribble-streams*)
236            (setf *dribble-stream* new-dribble-stream)
237            (setf *standard-input* new-standard-input)
238            (setf *standard-output* new-standard-output)
239            (setf *error-output* new-error-output)))
240         ((null *dribble-stream*)
241          (error "not currently dribbling"))
242         (t
243          (let ((old-streams (pop *previous-dribble-streams*)))
244            (close *dribble-stream*)
245            (setf *dribble-stream* (first old-streams))
246            (setf *standard-input* (second old-streams))
247            (setf *standard-output* (third old-streams))
248            (setf *error-output* (fourth old-streams)))))
249   (values))
250
251 (defun %byte-blt (src src-start dst dst-start dst-end)
252   (%byte-blt src src-start dst dst-start dst-end))
253
254 ;;;; some *LOAD-FOO* variables
255
256 (defvar *load-print* nil
257   #!+sb-doc
258   "the default for the :PRINT argument to LOAD")
259
260 (defvar *load-verbose* nil
261   ;; Note that CMU CL's default for this was T, and ANSI says it's
262   ;; implementation-dependent. We choose NIL on the theory that it's
263   ;; a nicer default behavior for Unix programs.
264   #!+sb-doc
265   "the default for the :VERBOSE argument to LOAD")