1 ;;;; pathname parsing for Unix filesystems
3 ;;;; This software is part of the SBCL system. See the README file for
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.
12 (in-package "SB!IMPL")
14 (def!struct
(unix-host
15 (:make-load-form-fun make-host-load-form
)
17 (parse #'parse-unix-namestring
)
18 (parse-native #'parse-native-unix-namestring
)
19 (unparse #'unparse-unix-namestring
)
20 (unparse-native #'unparse-native-unix-namestring
)
21 (unparse-host #'unparse-unix-host
)
22 (unparse-directory #'unparse-unix-directory
)
23 (unparse-file #'unparse-unix-file
)
24 (unparse-enough #'unparse-unix-enough
)
25 (unparse-directory-separator "/")
26 (simplify-namestring #'simplify-unix-namestring
)
27 (customary-case :lower
))))
29 (defvar *physical-host
* (make-unix-host))
31 ;;; Take a string and return a list of cons cells that mark the char
32 ;;; separated subseq. The first value is true if absolute directories
34 (defun split-at-slashes (namestr start end
)
35 (declare (type simple-string namestr
)
36 (type index start end
))
37 (let ((absolute (and (/= start end
)
38 (char= (schar namestr start
) #\
/))))
41 ;; Next, split the remainder into slash-separated chunks.
44 (let ((slash (position #\
/ namestr
:start start
:end end
)))
45 (pieces (cons start
(or slash end
)))
48 (setf start
(1+ slash
))))
49 (values absolute
(pieces)))))
51 (defun parse-unix-namestring (namestring start end
)
52 (declare (type simple-string namestring
)
53 (type index start end
))
54 (setf namestring
(coerce namestring
'simple-string
))
55 (multiple-value-bind (absolute pieces
)
56 (split-at-slashes namestring start end
)
57 (multiple-value-bind (name type version
)
58 (let* ((tail (car (last pieces
)))
59 (tail-start (car tail
))
60 (tail-end (cdr tail
)))
61 (unless (= tail-start tail-end
)
62 (setf pieces
(butlast pieces
))
63 (extract-name-type-and-version namestring tail-start tail-end
#\\)))
66 (let ((position (position-if (lambda (char)
67 (or (char= char
(code-char 0))
71 (error 'namestring-parse-error
72 :complaint
"can't embed #\\Nul or #\\/ in Unix namestring"
73 :namestring namestring
77 ;; Deal with ~ and ~user
79 (destructuring-bind (start . end
) (car pieces
)
80 (when (and (not absolute
)
82 (string= namestring
"~"
86 (if (> end
(1+ start
))
87 (setf home
(list :home
(subseq namestring
(1+ start
) end
)))
91 ;; Now we have everything we want. So return it.
92 (values nil
; no host for Unix namestrings
93 nil
; no device for Unix namestrings
95 (dolist (piece pieces
)
96 (let ((piece-start (car piece
))
97 (piece-end (cdr piece
)))
98 (unless (= piece-start piece-end
)
99 (cond ((string= namestring
".."
103 ((string= namestring
"**"
106 (dirs :wild-inferiors
))
108 (dirs (maybe-make-pattern namestring
114 (list* :absolute home
(dirs))
115 (cons :absolute
(dirs))))
117 (cons :relative
(dirs)))
124 (defun parse-native-unix-namestring (namestring start end as-directory
)
125 (declare (type simple-string namestring
)
126 (type index start end
))
127 (setf namestring
(coerce namestring
'simple-string
))
128 (multiple-value-bind (absolute ranges
)
129 (split-at-slashes namestring start end
)
130 (let* ((components (loop for
((start . end
) . rest
) on ranges
131 for piece
= (subseq namestring start end
)
132 collect
(if (and (string= piece
"..") rest
)
135 (directory (if (and as-directory
136 (string/= "" (car (last components
))))
138 (butlast components
)))
141 (let* ((end (first (last components
)))
142 (dot (position #\. end
:from-end t
)))
143 ;; FIXME: can we get this dot-interpretation knowledge
144 ;; from existing code? EXTRACT-NAME-TYPE-AND-VERSION
145 ;; does slightly more work than that.
150 (list (subseq end
0 dot
) (subseq end
(1+ dot
))))
155 (cons (if absolute
:absolute
:relative
) directory
)
156 (first name-and-type
)
157 (second name-and-type
)
160 (/show0
"filesys.lisp 300")
162 (defun unparse-unix-host (pathname)
163 (declare (type pathname pathname
)
165 ;; this host designator needs to be recognized as a physical host in
166 ;; PARSE-NAMESTRING. Until sbcl-0.7.3.x, we had "Unix" here, but
167 ;; that's a valid Logical Hostname, so that's a bad choice. -- CSR,
171 (defun unparse-unix-directory (pathname)
172 (unparse-physical-directory pathname
#\\))
174 (defun unparse-unix-file (pathname)
175 (declare (type pathname pathname
))
177 (let* ((name (%pathname-name pathname
))
178 (type (%pathname-type pathname
))
179 (type-supplied (not (or (null type
) (eq type
:unspecific
)))))
180 ;; Note: by ANSI 19.3.1.1.5, we ignore the version slot when
181 ;; translating logical pathnames to a filesystem without
182 ;; versions (like Unix).
184 (when (and (null type
)
187 (position #\. name
:start
1))
188 (error "too many dots in the name: ~S" pathname
))
189 (when (and (typep name
'string
)
191 (error "name is of length 0: ~S" pathname
))
192 (strings (unparse-physical-piece name
#\\)))
195 (error "cannot specify the type without a file: ~S" pathname
))
196 (when (typep type
'simple-string
)
197 (when (position #\. type
)
198 (error "type component can't have a #\. inside: ~S" pathname
)))
200 (strings (unparse-physical-piece type
#\\))))
201 (apply #'concatenate
'simple-string
(strings))))
203 (/show0
"filesys.lisp 406")
205 (defun unparse-unix-namestring (pathname)
206 (declare (type pathname pathname
))
207 (concatenate 'simple-string
208 (unparse-unix-directory pathname
)
209 (unparse-unix-file pathname
)))
211 (defun unparse-native-unix-namestring (pathname as-file
)
212 (declare (type pathname pathname
))
213 (let* ((directory (pathname-directory pathname
))
214 (name (pathname-name pathname
))
215 (name-present-p (typep name
'(not (member nil
:unspecific
))))
216 (name-string (if name-present-p name
""))
217 (type (pathname-type pathname
))
218 (type-present-p (typep type
'(not (member nil
:unspecific
))))
219 (type-string (if type-present-p type
"")))
222 (with-simple-output-to-string (s)
224 (ecase (pop directory
)
226 (let ((next (pop directory
)))
227 (cond ((eq :home next
)
228 (write-string (user-homedir-namestring) s
))
229 ((and (consp next
) (eq :home
(car next
)))
230 (let ((where (user-homedir-namestring (second next
))))
232 (write-string where s
)
233 (error "User homedir unknown for: ~S." (second next
)))))
235 (push next directory
)))
238 (loop for
(piece . subdirs
) on directory
241 (write-string ".." s
))
243 (write-string piece s
))
245 (error "Bad directory segment in NATIVE-NAMESTRING: ~S."
247 if
(or subdirs
(stringp name
))
248 do
(write-char #\
/ s
)
254 (unless (stringp name-string
) ;some kind of wild field
255 (error "Bad name component in NATIVE-NAMESTRING: ~S." name
))
256 (write-string name-string s
)
258 (unless (stringp type-string
) ;some kind of wild field
259 (error "Bad type component in NATIVE-NAMESTRING: ~S." type
))
261 (write-string type-string s
)))
262 (when type-present-p
; type without a name
264 "Type component without a name component in NATIVE-NAMESTRING: ~S."
267 (defun unparse-unix-enough (pathname defaults
)
268 (declare (type pathname pathname defaults
))
270 (error "~S cannot be represented relative to ~S."
273 (let* ((pathname-directory (%pathname-directory pathname
))
274 (defaults-directory (%pathname-directory defaults
))
275 (prefix-len (length defaults-directory
))
277 (cond ((null pathname-directory
) '(:relative
))
278 ((eq (car pathname-directory
) :relative
)
280 ((and (> prefix-len
0)
281 (>= (length pathname-directory
) prefix-len
)
282 (compare-component (subseq pathname-directory
285 ;; Pathname starts with a prefix of default. So
286 ;; just use a relative directory from then on out.
287 (cons :relative
(nthcdr prefix-len pathname-directory
)))
288 ((eq (car pathname-directory
) :absolute
)
289 ;; We are an absolute pathname, so we can just use it.
292 (bug "Bad fallthrough in ~S" 'unparse-unix-enough
)))))
293 (strings (unparse-physical-directory-list result-directory
#\\)))
294 (let* ((pathname-type (%pathname-type pathname
))
295 (type-needed (and pathname-type
296 (not (eq pathname-type
:unspecific
))))
297 (pathname-name (%pathname-name pathname
))
298 (name-needed (or type-needed
300 (not (compare-component pathname-name
304 (unless pathname-name
(lose))
305 (when (and (null pathname-type
)
306 (typep pathname-name
'simple-string
)
307 (position #\. pathname-name
:start
1))
308 (error "too many dots in the name: ~S" pathname
))
309 (strings (unparse-physical-piece pathname-name
#\\)))
311 (when (or (null pathname-type
) (eq pathname-type
:unspecific
))
313 (when (typep pathname-type
'simple-string
)
314 (when (position #\. pathname-type
)
315 (error "type component can't have a #\. inside: ~S" pathname
)))
317 (strings (unparse-physical-piece pathname-type
#\\))))
318 (apply #'concatenate
'simple-string
(strings)))))
320 (defun simplify-unix-namestring (src)
321 (declare (type simple-string src
))
322 (let* ((src-len (length src
))
323 (dst (make-string src-len
:element-type
'character
))
327 (macrolet ((deposit (char)
329 (setf (schar dst dst-len
) ,char
)
331 (dotimes (src-index src-len
)
332 (let ((char (schar src src-index
)))
333 (cond ((char= char
#\.
)
340 ;; either ``/...' or ``...//...'
342 (setf last-slash dst-len
)
345 ;; either ``./...'' or ``..././...''
350 ((and last-slash
(not (zerop last-slash
)))
351 ;; There is something before this ..
352 (let ((prev-prev-slash
353 (position #\
/ dst
:end last-slash
:from-end t
)))
354 (cond ((and (= (+ (or prev-prev-slash
0) 2)
356 (char= (schar dst
(- last-slash
2)) #\.
)
357 (char= (schar dst
(1- last-slash
)) #\.
))
358 ;; The something before this .. is another ..
360 (setf last-slash dst-len
))
362 ;; The something is some directory or other.
367 (setf last-slash prev-prev-slash
)))))
369 ;; There is nothing before this .., so we need to keep it
370 (setf last-slash dst-len
)
373 ;; something other than a dot between slashes
374 (setf last-slash dst-len
)
379 (setf (schar dst dst-len
) char
)
381 (when (and last-slash
(not (zerop last-slash
)))
384 ;; We've got ``foobar/.''
387 ;; We've got ``foobar/..''
388 (unless (and (>= last-slash
2)
389 (char= (schar dst
(1- last-slash
)) #\.
)
390 (char= (schar dst
(- last-slash
2)) #\.
)
392 (char= (schar dst
(- last-slash
3)) #\
/)))
393 (let ((prev-prev-slash
394 (position #\
/ dst
:end last-slash
:from-end t
)))
396 (setf dst-len
(1+ prev-prev-slash
))
397 (return-from simplify-unix-namestring
398 (coerce "./" 'simple-string
))))))))
399 (cond ((zerop dst-len
)
404 (subseq dst
0 dst-len
)))))