0.6.11.40:
[sbcl.git] / src / code / filesys.lisp
1 ;;;; file system interface functions -- fairly Unix-specific
2
3 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; more information.
5 ;;;;
6 ;;;; This software is derived from the CMU CL system, which was
7 ;;;; written at Carnegie Mellon University and released into the
8 ;;;; public domain. The software is in the public domain and is
9 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
10 ;;;; files for more information.
11
12 (in-package "SB!IMPL")
13 \f
14 ;;;; Unix pathname host support
15
16 ;;; Unix namestrings have the following format:
17 ;;;
18 ;;; namestring := [ directory ] [ file [ type [ version ]]]
19 ;;; directory := [ "/" | search-list ] { file "/" }*
20 ;;; search-list := [^:/]*:
21 ;;; file := [^/]*
22 ;;; type := "." [^/.]*
23 ;;; version := "." ([0-9]+ | "*")
24 ;;;
25 ;;; FIXME: Search lists are no longer supported.
26 ;;;
27 ;;; Note: this grammar is ambiguous. The string foo.bar.5 can be
28 ;;; parsed as either just the file specified or as specifying the
29 ;;; file, type, and version. Therefore, we use the following rules
30 ;;; when confronted with an ambiguous file.type.version string:
31 ;;;
32 ;;; - If the first character is a dot, it's part of the file. It is not
33 ;;; considered a dot in the following rules.
34 ;;;
35 ;;; - If there is only one dot, it separates the file and the type.
36 ;;;
37 ;;; - If there are multiple dots and the stuff following the last dot
38 ;;; is a valid version, then that is the version and the stuff between
39 ;;; the second to last dot and the last dot is the type.
40 ;;;
41 ;;; Wildcard characters:
42 ;;;
43 ;;; If the directory, file, type components contain any of the
44 ;;; following characters, it is considered part of a wildcard pattern
45 ;;; and has the following meaning.
46 ;;;
47 ;;; ? - matches any character
48 ;;; * - matches any zero or more characters.
49 ;;; [abc] - matches any of a, b, or c.
50 ;;; {str1,str2,...,strn} - matches any of str1, str2, ..., or strn.
51 ;;;
52 ;;; Any of these special characters can be preceded by a backslash to
53 ;;; cause it to be treated as a regular character.
54 (defun remove-backslashes (namestr start end)
55   #!+sb-doc
56   "Remove any occurrences of #\\ from the string because we've already
57    checked for whatever they may have protected."
58   (declare (type simple-base-string namestr)
59            (type index start end))
60   (let* ((result (make-string (- end start)))
61          (dst 0)
62          (quoted nil))
63     (do ((src start (1+ src)))
64         ((= src end))
65       (cond (quoted
66              (setf (schar result dst) (schar namestr src))
67              (setf quoted nil)
68              (incf dst))
69             (t
70              (let ((char (schar namestr src)))
71                (cond ((char= char #\\)
72                       (setq quoted t))
73                      (t
74                       (setf (schar result dst) char)
75                       (incf dst)))))))
76     (when quoted
77       (error 'namestring-parse-error
78              :complaint "backslash in a bad place"
79              :namestring namestr
80              :offset (1- end)))
81     (shrink-vector result dst)))
82
83 (defvar *ignore-wildcards* nil)
84
85 (/show0 "filesys.lisp 86")
86
87 (defun maybe-make-pattern (namestr start end)
88   (declare (type simple-base-string namestr)
89            (type index start end))
90   (if *ignore-wildcards*
91       (subseq namestr start end)
92       (collect ((pattern))
93         (let ((quoted nil)
94               (any-quotes nil)
95               (last-regular-char nil)
96               (index start))
97           (flet ((flush-pending-regulars ()
98                    (when last-regular-char
99                      (pattern (if any-quotes
100                                   (remove-backslashes namestr
101                                                       last-regular-char
102                                                       index)
103                                   (subseq namestr last-regular-char index)))
104                      (setf any-quotes nil)
105                      (setf last-regular-char nil))))
106             (loop
107               (when (>= index end)
108                 (return))
109               (let ((char (schar namestr index)))
110                 (cond (quoted
111                        (incf index)
112                        (setf quoted nil))
113                       ((char= char #\\)
114                        (setf quoted t)
115                        (setf any-quotes t)
116                        (unless last-regular-char
117                          (setf last-regular-char index))
118                        (incf index))
119                       ((char= char #\?)
120                        (flush-pending-regulars)
121                        (pattern :single-char-wild)
122                        (incf index))
123                       ((char= char #\*)
124                        (flush-pending-regulars)
125                        (pattern :multi-char-wild)
126                        (incf index))
127                       ((char= char #\[)
128                        (flush-pending-regulars)
129                        (let ((close-bracket
130                               (position #\] namestr :start index :end end)))
131                          (unless close-bracket
132                            (error 'namestring-parse-error
133                                   :complaint "#\\[ with no corresponding #\\]"
134                                   :namestring namestr
135                                   :offset index))
136                          (pattern (list :character-set
137                                         (subseq namestr
138                                                 (1+ index)
139                                                 close-bracket)))
140                          (setf index (1+ close-bracket))))
141                       (t
142                        (unless last-regular-char
143                          (setf last-regular-char index))
144                        (incf index)))))
145             (flush-pending-regulars)))
146         (cond ((null (pattern))
147                "")
148               ((null (cdr (pattern)))
149                (let ((piece (first (pattern))))
150                  (typecase piece
151                    ((member :multi-char-wild) :wild)
152                    (simple-string piece)
153                    (t
154                     (make-pattern (pattern))))))
155               (t
156                (make-pattern (pattern)))))))
157
158 (/show0 "filesys.lisp 160")
159
160 (defun extract-name-type-and-version (namestr start end)
161   (declare (type simple-base-string namestr)
162            (type index start end))
163   (let* ((last-dot (position #\. namestr :start (1+ start) :end end
164                              :from-end t))
165          (second-to-last-dot (and last-dot
166                                   (position #\. namestr :start (1+ start)
167                                             :end last-dot :from-end t)))
168          (version :newest))
169     ;; If there is a second-to-last dot, check to see whether there is
170     ;; a valid version after the last dot.
171     (when second-to-last-dot
172       (cond ((and (= (+ last-dot 2) end)
173                   (char= (schar namestr (1+ last-dot)) #\*))
174              (setf version :wild))
175             ((and (< (1+ last-dot) end)
176                   (do ((index (1+ last-dot) (1+ index)))
177                       ((= index end) t)
178                     (unless (char<= #\0 (schar namestr index) #\9)
179                       (return nil))))
180              (setf version
181                    (parse-integer namestr :start (1+ last-dot) :end end)))
182             (t
183              (setf second-to-last-dot nil))))
184     (cond (second-to-last-dot
185            (values (maybe-make-pattern namestr start second-to-last-dot)
186                    (maybe-make-pattern namestr
187                                        (1+ second-to-last-dot)
188                                        last-dot)
189                    version))
190           (last-dot
191            (values (maybe-make-pattern namestr start last-dot)
192                    (maybe-make-pattern namestr (1+ last-dot) end)
193                    version))
194           (t
195            (values (maybe-make-pattern namestr start end)
196                    nil
197                    version)))))
198
199 (/show0 "filesys.lisp 200")
200
201 ;;; Take a string and return a list of cons cells that mark the char
202 ;;; separated subseq. The first value is true if absolute directories
203 ;;; location.
204 (defun split-at-slashes (namestr start end)
205   (declare (type simple-base-string namestr)
206            (type index start end))
207   (let ((absolute (and (/= start end)
208                        (char= (schar namestr start) #\/))))
209     (when absolute
210       (incf start))
211     ;; Next, split the remainder into slash-separated chunks.
212     (collect ((pieces))
213       (loop
214         (let ((slash (position #\/ namestr :start start :end end)))
215           (pieces (cons start (or slash end)))
216           (unless slash
217             (return))
218           (setf start (1+ slash))))
219       (values absolute (pieces)))))
220
221 (defun maybe-extract-search-list (namestr start end)
222   (declare (type simple-base-string namestr)
223            (type index start end))
224   (let ((quoted nil))
225     (do ((index start (1+ index)))
226         ((= index end)
227          (values nil start))
228       (if quoted
229           (setf quoted nil)
230           (case (schar namestr index)
231             (#\\
232              (setf quoted t))
233             (#\:
234              (return (values (remove-backslashes namestr start index)
235                              (1+ index)))))))))
236
237 (defun parse-unix-namestring (namestr start end)
238   (declare (type simple-base-string namestr)
239            (type index start end))
240   (multiple-value-bind (absolute pieces) (split-at-slashes namestr start end)
241     (let ((search-list (if absolute
242                            nil
243                            (let ((first (car pieces)))
244                              (multiple-value-bind (search-list new-start)
245                                  (maybe-extract-search-list namestr
246                                                             (car first)
247                                                             (cdr first))
248                                (when search-list
249                                  (setf absolute t)
250                                  (setf (car first) new-start))
251                                search-list)))))
252       (multiple-value-bind (name type version)
253           (let* ((tail (car (last pieces)))
254                  (tail-start (car tail))
255                  (tail-end (cdr tail)))
256             (unless (= tail-start tail-end)
257               (setf pieces (butlast pieces))
258               (extract-name-type-and-version namestr tail-start tail-end)))
259         ;; PVE: make sure there are no illegal characters in
260         ;; the name, illegal being (code-char 0) and #\/
261         #!+high-security
262         (when (and (stringp name)
263                    (find-if #'(lambda (x) (or (char= x (code-char 0))
264                                               (char= x #\/)))
265                             name))
266           (error 'parse-error))
267         
268         ;; Now we have everything we want. So return it.
269         (values nil ; no host for unix namestrings.
270                 nil ; no devices for unix namestrings.
271                 (collect ((dirs))
272                   (when search-list
273                     (dirs (intern-search-list search-list)))
274                   (dolist (piece pieces)
275                     (let ((piece-start (car piece))
276                           (piece-end (cdr piece)))
277                       (unless (= piece-start piece-end)
278                         (cond ((string= namestr ".." :start1 piece-start
279                                         :end1 piece-end)
280                                (dirs :up))
281                               ((string= namestr "**" :start1 piece-start
282                                         :end1 piece-end)
283                                (dirs :wild-inferiors))
284                               (t
285                                (dirs (maybe-make-pattern namestr
286                                                          piece-start
287                                                          piece-end)))))))
288                   (cond (absolute
289                          (cons :absolute (dirs)))
290                         ((dirs)
291                          (cons :relative (dirs)))
292                         (t
293                          nil)))
294                 name
295                 type
296                 version)))))
297
298 (/show0 "filesys.lisp 300")
299
300 (defun unparse-unix-host (pathname)
301   (declare (type pathname pathname)
302            (ignore pathname))
303   "Unix")
304
305 (defun unparse-unix-piece (thing)
306   (etypecase thing
307     ((member :wild) "*")
308     (simple-string
309      (let* ((srclen (length thing))
310             (dstlen srclen))
311        (dotimes (i srclen)
312          (case (schar thing i)
313            ((#\* #\? #\[)
314             (incf dstlen))))
315        (let ((result (make-string dstlen))
316              (dst 0))
317          (dotimes (src srclen)
318            (let ((char (schar thing src)))
319              (case char
320                ((#\* #\? #\[)
321                 (setf (schar result dst) #\\)
322                 (incf dst)))
323              (setf (schar result dst) char)
324              (incf dst)))
325          result)))
326     (pattern
327      (collect ((strings))
328        (dolist (piece (pattern-pieces thing))
329          (etypecase piece
330            (simple-string
331             (strings piece))
332            (symbol
333             (ecase piece
334               (:multi-char-wild
335                (strings "*"))
336               (:single-char-wild
337                (strings "?"))))
338            (cons
339             (case (car piece)
340               (:character-set
341                (strings "[")
342                (strings (cdr piece))
343                (strings "]"))
344               (t
345                (error "invalid pattern piece: ~S" piece))))))
346        (apply #'concatenate
347               'simple-string
348               (strings))))))
349
350 (defun unparse-unix-directory-list (directory)
351   (declare (type list directory))
352   (collect ((pieces))
353     (when directory
354       (ecase (pop directory)
355         (:absolute
356          (cond ((search-list-p (car directory))
357                 (pieces (search-list-name (pop directory)))
358                 (pieces ":"))
359                (t
360                 (pieces "/"))))
361         (:relative
362          ;; nothing special
363          ))
364       (dolist (dir directory)
365         (typecase dir
366           ((member :up)
367            (pieces "../"))
368           ((member :back)
369            (error ":BACK cannot be represented in namestrings."))
370           ((member :wild-inferiors)
371            (pieces "**/"))
372           ((or simple-string pattern)
373            (pieces (unparse-unix-piece dir))
374            (pieces "/"))
375           (t
376            (error "invalid directory component: ~S" dir)))))
377     (apply #'concatenate 'simple-string (pieces))))
378
379 (defun unparse-unix-directory (pathname)
380   (declare (type pathname pathname))
381   (unparse-unix-directory-list (%pathname-directory pathname)))
382
383 (defun unparse-unix-file (pathname)
384   (declare (type pathname pathname))
385   (collect ((strings))
386     (let* ((name (%pathname-name pathname))
387            (type (%pathname-type pathname))
388            (type-supplied (not (or (null type) (eq type :unspecific)))))
389       ;; Note: by ANSI 19.3.1.1.5, we ignore the version slot when
390       ;; translating logical pathnames to a filesystem without
391       ;; versions (like Unix).
392       (when name
393         (strings (unparse-unix-piece name)))
394       (when type-supplied
395         (unless name
396           (error "cannot specify the type without a file: ~S" pathname))
397         (strings ".")
398         (strings (unparse-unix-piece type))))
399     (apply #'concatenate 'simple-string (strings))))
400
401 (/show0 "filesys.lisp 406")
402
403 (defun unparse-unix-namestring (pathname)
404   (declare (type pathname pathname))
405   (concatenate 'simple-string
406                (unparse-unix-directory pathname)
407                (unparse-unix-file pathname)))
408
409 (defun unparse-unix-enough (pathname defaults)
410   (declare (type pathname pathname defaults))
411   (flet ((lose ()
412            (error "~S cannot be represented relative to ~S."
413                   pathname defaults)))
414     (collect ((strings))
415       (let* ((pathname-directory (%pathname-directory pathname))
416              (defaults-directory (%pathname-directory defaults))
417              (prefix-len (length defaults-directory))
418              (result-directory
419               (cond ((and (> prefix-len 1)
420                           (>= (length pathname-directory) prefix-len)
421                           (compare-component (subseq pathname-directory
422                                                      0 prefix-len)
423                                              defaults-directory))
424                      ;; Pathname starts with a prefix of default. So
425                      ;; just use a relative directory from then on out.
426                      (cons :relative (nthcdr prefix-len pathname-directory)))
427                     ((eq (car pathname-directory) :absolute)
428                      ;; We are an absolute pathname, so we can just use it.
429                      pathname-directory)
430                     (t
431                      ;; We are a relative directory. So we lose.
432                      (lose)))))
433         (strings (unparse-unix-directory-list result-directory)))
434       (let* ((pathname-version (%pathname-version pathname))
435              (version-needed (and pathname-version
436                                   (not (eq pathname-version :newest))))
437              (pathname-type (%pathname-type pathname))
438              (type-needed (or version-needed
439                               (and pathname-type
440                                    (not (eq pathname-type :unspecific)))))
441              (pathname-name (%pathname-name pathname))
442              (name-needed (or type-needed
443                               (and pathname-name
444                                    (not (compare-component pathname-name
445                                                            (%pathname-name
446                                                             defaults)))))))
447         (when name-needed
448           (unless pathname-name (lose))
449           (strings (unparse-unix-piece pathname-name)))
450         (when type-needed
451           (when (or (null pathname-type) (eq pathname-type :unspecific))
452             (lose))
453           (strings ".")
454           (strings (unparse-unix-piece pathname-type)))
455         (when version-needed
456           (typecase pathname-version
457             ((member :wild)
458              (strings ".*"))
459             (integer
460              (strings (format nil ".~D" pathname-version)))
461             (t
462              (lose)))))
463       (apply #'concatenate 'simple-string (strings)))))
464
465 (/show0 "filesys.lisp 471")
466
467 (def!struct (unix-host
468              (:make-load-form-fun make-unix-host-load-form)
469              (:include host
470                        (parse #'parse-unix-namestring)
471                        (unparse #'unparse-unix-namestring)
472                        (unparse-host #'unparse-unix-host)
473                        (unparse-directory #'unparse-unix-directory)
474                        (unparse-file #'unparse-unix-file)
475                        (unparse-enough #'unparse-unix-enough)
476                        (customary-case :lower))))
477
478 (/show0 "filesys.lisp 486")
479
480 (defvar *unix-host* (make-unix-host))
481
482 (/show0 "filesys.lisp 488")
483
484 (defun make-unix-host-load-form (host)
485   (declare (ignore host))
486   '*unix-host*)
487 \f
488 ;;;; wildcard matching stuff
489
490 ;;; Return a list of all the Lispy filenames (not including e.g. the
491 ;;; Unix magic "." and "..") in the directory named by DIRECTORY-NAME.
492 (defun directory-lispy-filenames (directory-name)
493   (with-alien ((adlf (* c-string)
494                      (alien-funcall (extern-alien
495                                      "alloc_directory_lispy_filenames"
496                                      (function (* c-string) c-string))
497                                     directory-name)))
498     (if (null-alien adlf)
499         (error 'simple-file-error
500                :pathname directory-name
501                :format-control "~@<couldn't read directory ~S: ~2I~_~A~:>"
502                :format-arguments (list directory-name (strerror)))
503         (unwind-protect
504             (c-strings->string-list adlf)
505           (alien-funcall (extern-alien "free_directory_lispy_filenames"
506                                        (function void (* c-string)))
507                          adlf)))))
508
509 (/show0 "filesys.lisp 498")
510
511 ;;; FIXME: could maybe be EVAL-WHEN (COMPILE EVAL)
512
513 (defmacro enumerate-matches ((var pathname &optional result
514                                   &key (verify-existence t)
515                                   (follow-links t))
516                              &body body)
517   (let ((body-name (gensym "ENUMERATE-MATCHES-BODY-FUN-")))
518     `(block nil
519        (flet ((,body-name (,var)
520                 ,@body))
521          (declare (dynamic-extent ,body-name))
522          (%enumerate-matches (pathname ,pathname)
523                              ,verify-existence
524                              ,follow-links
525                              #',body-name)
526          ,result))))
527
528 (/show0 "filesys.lisp 500")
529
530 (defun %enumerate-matches (pathname verify-existence follow-links function)
531   (/show0 "entering %ENUMERATE-MATCHES")
532   (when (pathname-type pathname)
533     (unless (pathname-name pathname)
534       (error "cannot supply a type without a name:~%  ~S" pathname)))
535   (when (and (integerp (pathname-version pathname))
536              (member (pathname-type pathname) '(nil :unspecific)))
537     (error "cannot supply a version without a type:~%  ~S" pathname))
538   (let ((directory (pathname-directory pathname)))
539     (/show0 "computed DIRECTORY")
540     (if directory
541         (ecase (car directory)
542           (:absolute
543            (/show0 "absolute directory")
544            (%enumerate-directories "/" (cdr directory) pathname
545                                    verify-existence follow-links
546                                    nil function))
547           (:relative
548            (/show0 "relative directory")
549            (%enumerate-directories "" (cdr directory) pathname
550                                    verify-existence follow-links
551                                    nil function)))
552         (%enumerate-files "" pathname verify-existence function))))
553
554 (defun %enumerate-directories (head tail pathname verify-existence
555                                follow-links nodes function)
556   (declare (simple-string head))
557   (macrolet ((unix-xstat (name)
558                `(if follow-links
559                     (sb!unix:unix-stat ,name)
560                     (sb!unix:unix-lstat ,name)))
561              (with-directory-node-noted ((head) &body body)
562                `(multiple-value-bind (res dev ino mode)
563                     (unix-xstat ,head)
564                   (when (and res (eql (logand mode sb!unix:s-ifmt)
565                                       sb!unix:s-ifdir))
566                     (let ((nodes (cons (cons dev ino) nodes)))
567                       ,@body))))
568              (do-directory-entries ((name directory) &body body)
569                `(let ((dir (sb!unix:open-dir ,directory)))
570                   (when dir
571                     (unwind-protect
572                         (loop
573                          (let ((,name (sb!unix:read-dir dir)))
574                            (cond ((null ,name)
575                                   (return))
576                                  ((string= ,name "."))
577                                  ((string= ,name ".."))
578                                  (t
579                                   ,@body))))
580                       (sb!unix:close-dir dir))))))
581     (if tail
582         (let ((piece (car tail)))
583           (etypecase piece
584             (simple-string
585              (let ((head (concatenate 'string head piece)))
586                (with-directory-node-noted (head)
587                  (%enumerate-directories (concatenate 'string head "/")
588                                          (cdr tail) pathname
589                                          verify-existence follow-links
590                                          nodes function))))
591             ((member :wild-inferiors)
592              (%enumerate-directories head (rest tail) pathname
593                                      verify-existence follow-links
594                                      nodes function)
595              (do-directory-entries (name head)
596                (let ((subdir (concatenate 'string head name)))
597                  (multiple-value-bind (res dev ino mode)
598                      (unix-xstat subdir)
599                    (declare (type (or fixnum null) mode))
600                    (when (and res (eql (logand mode sb!unix:s-ifmt)
601                                        sb!unix:s-ifdir))
602                      (unless (dolist (dir nodes nil)
603                                (when (and (eql (car dir) dev)
604                                           (eql (cdr dir) ino))
605                                  (return t)))
606                        (let ((nodes (cons (cons dev ino) nodes))
607                              (subdir (concatenate 'string subdir "/")))
608                          (%enumerate-directories subdir tail pathname
609                                                  verify-existence follow-links
610                                                  nodes function))))))))
611             ((or pattern (member :wild))
612              (do-directory-entries (name head)
613                (when (or (eq piece :wild) (pattern-matches piece name))
614                  (let ((subdir (concatenate 'string head name)))
615                    (multiple-value-bind (res dev ino mode)
616                        (unix-xstat subdir)
617                      (declare (type (or fixnum null) mode))
618                      (when (and res
619                                 (eql (logand mode sb!unix:s-ifmt)
620                                      sb!unix:s-ifdir))
621                        (let ((nodes (cons (cons dev ino) nodes))
622                              (subdir (concatenate 'string subdir "/")))
623                          (%enumerate-directories subdir (rest tail) pathname
624                                                  verify-existence follow-links
625                                                  nodes function))))))))
626           ((member :up)
627              (let ((head (concatenate 'string head "..")))
628                (with-directory-node-noted (head)
629                  (%enumerate-directories (concatenate 'string head "/")
630                                          (rest tail) pathname
631                                          verify-existence follow-links
632                                          nodes function))))))
633         (%enumerate-files head pathname verify-existence function))))
634
635 (defun %enumerate-files (directory pathname verify-existence function)
636   (declare (simple-string directory))
637   (/show0 "entering %ENUMERATE-FILES")
638   (let ((name (%pathname-name pathname))
639         (type (%pathname-type pathname))
640         (version (%pathname-version pathname)))
641     (/show0 "computed NAME, TYPE, and VERSION")
642     (cond ((member name '(nil :unspecific))
643            (/show0 "UNSPECIFIC, more or less")
644            (when (or (not verify-existence)
645                      (sb!unix:unix-file-kind directory))
646              (funcall function directory)))
647           ((or (pattern-p name)
648                (pattern-p type)
649                (eq name :wild)
650                (eq type :wild))
651            (/show0 "WILD, more or less")
652            (let ((dir (sb!unix:open-dir directory)))
653              (when dir
654                (unwind-protect
655                    (loop
656                      (/show0 "at head of LOOP")
657                      (let ((file (sb!unix:read-dir dir)))
658                        (if file
659                            (unless (or (string= file ".")
660                                        (string= file ".."))
661                              (multiple-value-bind
662                                  (file-name file-type file-version)
663                                  (let ((*ignore-wildcards* t))
664                                    (extract-name-type-and-version
665                                     file 0 (length file)))
666                                (when (and (components-match file-name name)
667                                           (components-match file-type type)
668                                           (components-match file-version
669                                                             version))
670                                  (funcall function
671                                           (concatenate 'string
672                                                        directory
673                                                        file)))))
674                            (return))))
675                  (sb!unix:close-dir dir)))))
676           (t
677            (/show0 "default case")
678            (let ((file (concatenate 'string directory name)))
679              (/show0 "computed basic FILE=..")
680              (/primitive-print file)
681              (unless (or (null type) (eq type :unspecific))
682                (/show0 "tweaking FILE for more-or-less-:UNSPECIFIC case")
683                (setf file (concatenate 'string file "." type)))
684              (unless (member version '(nil :newest :wild))
685                (/show0 "tweaking FILE for more-or-less-:WILD case")
686                (setf file (concatenate 'string file "."
687                                        (quick-integer-to-string version))))
688              (/show0 "finished possibly tweaking FILE=..")
689              (/primitive-print file)
690              (when (or (not verify-existence)
691                        (sb!unix:unix-file-kind file t))
692                (/show0 "calling FUNCTION on FILE")
693                (funcall function file)))))))
694
695 (/show0 "filesys.lisp 603")
696
697 ;;; FIXME: Why do we need this?
698 (defun quick-integer-to-string (n)
699   (declare (type integer n))
700   (cond ((not (fixnump n))
701          (write-to-string n :base 10 :radix nil))
702         ((zerop n) "0")
703         ((eql n 1) "1")
704         ((minusp n)
705          (concatenate 'simple-string "-"
706                       (the simple-string (quick-integer-to-string (- n)))))
707         (t
708          (do* ((len (1+ (truncate (integer-length n) 3)))
709                (res (make-string len))
710                (i (1- len) (1- i))
711                (q n)
712                (r 0))
713               ((zerop q)
714                (incf i)
715                (replace res res :start2 i :end2 len)
716                (shrink-vector res (- len i)))
717            (declare (simple-string res)
718                     (fixnum len i r q))
719            (multiple-value-setq (q r) (truncate q 10))
720            (setf (schar res i) (schar "0123456789" r))))))
721 \f
722 ;;;; UNIX-NAMESTRING
723
724 (defun unix-namestring (pathname &optional (for-input t) executable-only)
725   #!+sb-doc
726   "Convert PATHNAME into a string that can be used with UNIX system calls.
727    Search-lists and wild-cards are expanded."
728   ;; toy@rtp.ericsson.se: Let unix-namestring also handle logical
729   ;; pathnames too.
730   ;; FIXME: What does this ^ mean? A bug? A remark on a change already made?
731   (let ((path (let ((lpn (pathname pathname)))
732                 (if (typep lpn 'logical-pathname)
733                     (namestring (translate-logical-pathname lpn))
734                     pathname))))
735     (enumerate-search-list
736       (pathname path)
737       (collect ((names))
738         (enumerate-matches (name pathname nil :verify-existence for-input)
739                            (when (or (not executable-only)
740                                      (and (eq (sb!unix:unix-file-kind name)
741                                               :file)
742                                           (sb!unix:unix-access name
743                                                                sb!unix:x_ok)))
744                              (names name)))
745         (let ((names (names)))
746           (when names
747             (when (cdr names)
748               (error 'simple-file-error
749                      :format-control "~S is ambiguous:~{~%  ~A~}"
750                      :format-arguments (list pathname names)))
751             (return (car names))))))))
752 \f
753 ;;;; TRUENAME and PROBE-FILE
754
755 ;;; Another silly file function trivially different from another function.
756 (defun truename (pathname)
757   #!+sb-doc
758   "Return the pathname for the actual file described by the pathname
759   An error of type file-error is signalled if no such file exists,
760   or the pathname is wild."
761   (if (wild-pathname-p pathname)
762       (error 'simple-file-error
763              :format-control "bad place for a wild pathname"
764              :pathname pathname)
765       (let ((result (probe-file pathname)))
766         (unless result
767           (error 'simple-file-error
768                  :pathname pathname
769                  :format-control "The file ~S does not exist."
770                  :format-arguments (list (namestring pathname))))
771         result)))
772
773 ;;; If PATHNAME exists, return its truename, otherwise NIL.
774 (defun probe-file (pathname)
775   #!+sb-doc
776   "Return a pathname which is the truename of the file if it exists, NIL
777   otherwise. An error of type FILE-ERROR is signaled if pathname is wild."
778   (if (wild-pathname-p pathname)
779       (error 'simple-file-error
780              :pathname pathname
781              :format-control "bad place for a wild pathname")
782       (let ((namestring (unix-namestring pathname t)))
783         (when (and namestring (sb!unix:unix-file-kind namestring))
784           (let ((truename (sb!unix:unix-resolve-links
785                            (sb!unix:unix-maybe-prepend-current-directory
786                             namestring))))
787             (when truename
788               (let ((*ignore-wildcards* t))
789                 (pathname (sb!unix:unix-simplify-pathname truename)))))))))
790 \f
791 ;;;; miscellaneous other operations
792
793 (/show0 "filesys.lisp 700")
794
795 (defun rename-file (file new-name)
796   #!+sb-doc
797   "Rename File to have the specified New-Name. If file is a stream open to a
798   file, then the associated file is renamed."
799   (let* ((original (truename file))
800          (original-namestring (unix-namestring original t))
801          (new-name (merge-pathnames new-name original))
802          (new-namestring (unix-namestring new-name nil)))
803     (unless new-namestring
804       (error 'simple-file-error
805              :pathname new-name
806              :format-control "~S can't be created."
807              :format-arguments (list new-name)))
808     (multiple-value-bind (res error)
809         (sb!unix:unix-rename original-namestring new-namestring)
810       (unless res
811         (error 'simple-file-error
812                :pathname new-name
813                :format-control "failed to rename ~A to ~A: ~A"
814                :format-arguments (list original new-name
815                                        (sb!unix:get-unix-error-msg error))))
816       (when (streamp file)
817         (file-name file new-namestring))
818       (values new-name original (truename new-name)))))
819
820 (defun delete-file (file)
821   #!+sb-doc
822   "Delete the specified file."
823   (let ((namestring (unix-namestring file t)))
824     (when (streamp file)
825       (close file :abort t))
826     (unless namestring
827       (error 'simple-file-error
828              :pathname file
829              :format-control "~S doesn't exist."
830              :format-arguments (list file)))
831
832     (multiple-value-bind (res err) (sb!unix:unix-unlink namestring)
833       (unless res
834         (error 'simple-file-error
835                :pathname namestring
836                :format-control "could not delete ~A: ~A"
837                :format-arguments (list namestring
838                                        (sb!unix:get-unix-error-msg err))))))
839   t)
840 \f
841 ;;; Return Home:, which is set up for us at initialization time.
842 (defun user-homedir-pathname (&optional host)
843   #!+sb-doc
844   "Returns the home directory of the logged in user as a pathname.
845   This is obtained from the logical name \"home:\"."
846   (declare (ignore host))
847   ;; Note: CMU CL did #P"home:" here instead of using a call to
848   ;; PATHNAME. Delaying construction of the pathname until we're
849   ;; running in a target Lisp lets us avoid figuring out how to dump
850   ;; cross-compilation host Lisp PATHNAME objects into a target Lisp
851   ;; object file. It also might have a small positive effect on
852   ;; efficiency, in that we don't allocate a PATHNAME we don't need,
853   ;; but it it could also have a larger negative effect. Hopefully
854   ;; it'll be OK. -- WHN 19990714
855   (pathname "home:"))
856
857 (defun file-write-date (file)
858   #!+sb-doc
859   "Return file's creation date, or NIL if it doesn't exist.
860  An error of type file-error is signaled if file is a wild pathname"
861   (if (wild-pathname-p file)
862       ;; FIXME: This idiom appears many times in this file. Perhaps it
863       ;; should turn into (CANNOT-BE-WILD-PATHNAME FILE). (C-B-W-P
864       ;; should be a macro, not a function, so that the error message
865       ;; is reported as coming from e.g. FILE-WRITE-DATE instead of
866       ;; from CANNOT-BE-WILD-PATHNAME itself.)
867       (error 'simple-file-error
868              :pathname file
869              :format-control "bad place for a wild pathname")
870       (let ((name (unix-namestring file t)))
871         (when name
872           (multiple-value-bind
873               (res dev ino mode nlink uid gid rdev size atime mtime)
874               (sb!unix:unix-stat name)
875             (declare (ignore dev ino mode nlink uid gid rdev size atime))
876             (when res
877               (+ unix-to-universal-time mtime)))))))
878
879 (defun file-author (file)
880   #!+sb-doc
881   "Returns the file author as a string, or nil if the author cannot be
882  determined. Signals an error of type file-error if file doesn't exist,
883  or file is a wild pathname."
884   (if (wild-pathname-p file)
885       (error 'simple-file-error
886              :pathname file
887              "bad place for a wild pathname")
888       (let ((name (unix-namestring (pathname file) t)))
889         (unless name
890           (error 'simple-file-error
891                  :pathname file
892                  :format-control "~S doesn't exist."
893                  :format-arguments (list file)))
894         (multiple-value-bind (winp dev ino mode nlink uid)
895             (sb!unix:unix-stat name)
896           (declare (ignore dev ino mode nlink))
897           (if winp (lookup-login-name uid))))))
898 \f
899 ;;;; DIRECTORY
900
901 (/show0 "filesys.lisp 800")
902
903 (defun directory (pathname &key (all t) (check-for-subdirs t)
904                            (follow-links t))
905   #!+sb-doc
906   "Returns a list of pathnames, one for each file that matches the given
907    pathname. Supplying :ALL as NIL causes this to ignore Unix dot files. This
908    never includes Unix dot and dot-dot in the result. If :FOLLOW-LINKS is NIL,
909    then symbolic links in the result are not expanded. This is not the
910    default because TRUENAME does follow links, and the result pathnames are
911    defined to be the TRUENAME of the pathname (the truename of a link may well
912    be in another directory.)"
913   (let ((results nil))
914     (enumerate-search-list
915         (pathname (merge-pathnames pathname
916                                    (make-pathname :name :wild
917                                                   :type :wild
918                                                   :version :wild)))
919       (enumerate-matches (name pathname)
920         (when (or all
921                   (let ((slash (position #\/ name :from-end t)))
922                     (or (null slash)
923                         (= (1+ slash) (length name))
924                         (char/= (schar name (1+ slash)) #\.))))
925           (push name results))))
926     (let ((*ignore-wildcards* t))
927       (mapcar (lambda (name)
928                 (let ((name (if (and check-for-subdirs
929                                      (eq (sb!unix:unix-file-kind name)
930                                          :directory))
931                                 (concatenate 'string name "/")
932                                 name)))
933                   (if follow-links (truename name) (pathname name))))
934               (sort (delete-duplicates results :test #'string=) #'string<)))))
935 \f
936 ;;;; translating Unix uid's
937 ;;;;
938 ;;;; FIXME: should probably move into unix.lisp
939
940 (defvar *uid-hash-table* (make-hash-table)
941   #!+sb-doc
942   "hash table for keeping track of uid's and login names")
943
944 (/show0 "filesys.lisp 844")
945
946 ;;; LOOKUP-LOGIN-NAME translates a user id into a login name. Previous
947 ;;; lookups are cached in a hash table since groveling the passwd(s)
948 ;;; files is somewhat expensive. The table may hold NIL for id's that
949 ;;; cannot be looked up since this keeps the files from having to be
950 ;;; searched in their entirety each time this id is translated.
951 (defun lookup-login-name (uid)
952   (multiple-value-bind (login-name foundp) (gethash uid *uid-hash-table*)
953     (if foundp
954         login-name
955         (setf (gethash uid *uid-hash-table*)
956               (get-group-or-user-name :user uid)))))
957
958 ;;; GET-GROUP-OR-USER-NAME first tries "/etc/passwd" ("/etc/group")
959 ;;; since it is a much smaller file, contains all the local id's, and
960 ;;; most uses probably involve id's on machines one would login into.
961 ;;; Then if necessary, we look in "/etc/passwds" ("/etc/groups") which
962 ;;; is really long and has to be fetched over the net.
963 ;;;
964 ;;; FIXME: Now that we no longer have lookup-group-name, we no longer need
965 ;;; the GROUP-OR-USER argument.
966 (defun get-group-or-user-name (group-or-user id)
967   #!+sb-doc
968   "Returns the simple-string user or group name of the user whose uid or gid
969    is id, or NIL if no such user or group exists. Group-or-user is either
970    :group or :user."
971   (let ((id-string (let ((*print-base* 10)) (prin1-to-string id))))
972     (declare (simple-string id-string))
973     (multiple-value-bind (file1 file2)
974         (ecase group-or-user
975           (:group (values "/etc/group" "/etc/groups"))
976           (:user (values "/etc/passwd" "/etc/passwd")))
977       (or (get-group-or-user-name-aux id-string file1)
978           (get-group-or-user-name-aux id-string file2)))))
979
980 ;;; FIXME: Isn't there now a POSIX routine to parse the passwd file?
981 ;;; getpwent? getpwuid?
982 (defun get-group-or-user-name-aux (id-string passwd-file)
983   (with-open-file (stream passwd-file)
984     (loop
985       (let ((entry (read-line stream nil)))
986         (unless entry (return nil))
987         (let ((name-end (position #\: (the simple-string entry)
988                                   :test #'char=)))
989           (when name-end
990             (let ((id-start (position #\: (the simple-string entry)
991                                       :start (1+ name-end) :test #'char=)))
992               (when id-start
993                 (incf id-start)
994                 (let ((id-end (position #\: (the simple-string entry)
995                                         :start id-start :test #'char=)))
996                   (when (and id-end
997                              (string= id-string entry
998                                       :start2 id-start :end2 id-end))
999                     (return (subseq entry 0 name-end))))))))))))
1000 \f
1001 (/show0 "filesys.lisp 899")
1002
1003 ;;; predicate to order pathnames by; goes by name
1004 (defun pathname-order (x y)
1005   (let ((xn (%pathname-name x))
1006         (yn (%pathname-name y)))
1007     (if (and xn yn)
1008         (let ((res (string-lessp xn yn)))
1009           (cond ((not res) nil)
1010                 ((= res (length (the simple-string xn))) t)
1011                 ((= res (length (the simple-string yn))) nil)
1012                 (t t)))
1013         xn)))
1014 \f
1015 (defun default-directory ()
1016   #!+sb-doc
1017   "Returns the pathname for the default directory. This is the place where
1018   a file will be written if no directory is specified. This may be changed
1019   with setf."
1020   (multiple-value-bind (gr dir-or-error) (sb!unix:unix-current-directory)
1021     (if gr
1022         (let ((*ignore-wildcards* t))
1023           (pathname (concatenate 'simple-string dir-or-error "/")))
1024         (error dir-or-error))))
1025
1026 (defun %set-default-directory (new-val)
1027   (let ((namestring (unix-namestring new-val t)))
1028     (unless namestring
1029       (error "~S doesn't exist." new-val))
1030     (multiple-value-bind (gr error) (sb!unix:unix-chdir namestring)
1031       (if gr
1032           (setf (search-list "default:") (default-directory))
1033           (error (sb!unix:get-unix-error-msg error))))
1034     new-val))
1035
1036 (/show0 "filesys.lisp 934")
1037
1038 (/show0 "entering what used to be !FILESYS-COLD-INIT")
1039 (defvar *default-pathname-defaults*
1040   (%make-pathname *unix-host* nil nil nil nil :newest))
1041 (setf (search-list "default:") (default-directory))
1042 (/show0 "leaving what used to be !FILESYS-COLD-INIT")
1043 \f
1044 (defun ensure-directories-exist (pathspec &key verbose (mode #o777))
1045   #!+sb-doc
1046   "Tests whether the directories containing the specified file
1047   actually exist, and attempts to create them if they do not.
1048   Portable programs should avoid using the :MODE argument."
1049   (let* ((pathname (pathname pathspec))
1050          (pathname (if (typep pathname 'logical-pathname)
1051                        (translate-logical-pathname pathname)
1052                        pathname))
1053          (created-p nil))
1054     (when (wild-pathname-p pathname)
1055       (error 'simple-file-error
1056              :format-control "bad place for a wild pathname"
1057              :pathname pathspec))
1058     (enumerate-search-list (pathname pathname)
1059        (let ((dir (pathname-directory pathname)))
1060          (loop for i from 1 upto (length dir)
1061                do (let ((newpath (make-pathname
1062                                   :host (pathname-host pathname)
1063                                   :device (pathname-device pathname)
1064                                   :directory (subseq dir 0 i))))
1065                     (unless (probe-file newpath)
1066                       (let ((namestring (namestring newpath)))
1067                         (when verbose
1068                           (format *standard-output*
1069                                   "~&creating directory: ~A~%"
1070                                   namestring))
1071                         (sb!unix:unix-mkdir namestring mode)
1072                         (unless (probe-file namestring)
1073                           (error 'simple-file-error
1074                                  :pathname pathspec
1075                                  :format-control "can't create directory ~A"
1076                                  :format-arguments (list namestring)))
1077                         (setf created-p t)))))
1078          ;; Only the first path in a search-list is considered.
1079          (return (values pathname created-p))))))
1080
1081 (/show0 "filesys.lisp 1000")