]> gitweb.factorcode.org Git - factor.git/blob - core/io/pathnames/pathnames.factor
6bf366797faea6aea3e116ad5d1e5b9a5fba9042
[factor.git] / core / io / pathnames / pathnames.factor
1 ! Copyright (C) 2004, 2009 Slava Pestov, Doug Coleman.
2 ! See https://factorcode.org/license.txt for BSD license.
3 USING: accessors assocs combinators io.backend kernel math
4 math.order namespaces sequences splitting strings system ;
5 IN: io.pathnames
6
7 SYMBOL: current-directory
8
9 : path-separator? ( ch -- ? ) os windows? "/\\" "/" ? member? ;
10
11 : path-separator ( -- string ) os windows? "\\" "/" ? ;
12
13 : trim-tail-separators ( string -- string' )
14     [ path-separator? ] trim-tail ;
15
16 : trim-head-separators ( string -- string' )
17     [ path-separator? ] trim-head ;
18
19 : last-path-separator ( path -- n ? )
20     index-of-last [ path-separator? ] find-last-from ;
21
22 HOOK: root-directory? io-backend ( path -- ? )
23
24 M: object root-directory?
25     [ f ] [ [ path-separator? ] all? ] if-empty ;
26
27 ERROR: no-parent-directory path ;
28
29 : parent-directory ( path -- parent )
30     dup root-directory? [
31         trim-tail-separators
32         dup last-path-separator [
33             1 + cut
34         ] [
35             drop "." swap
36         ] if
37         { "" "." ".." } member? [
38             no-parent-directory
39         ] when
40     ] unless ;
41
42 <PRIVATE
43
44 : head-path-separator? ( path1 ? -- ?' )
45     [
46         [ t ] [ first path-separator? ] if-empty
47     ] [
48         drop f
49     ] if ;
50
51 : head.? ( path -- ? ) "." ?head head-path-separator? ;
52
53 : head..? ( path -- ? ) ".." ?head head-path-separator? ;
54
55 : append-path-empty ( path1 path2 -- path' )
56     {
57         { [ dup head.? ] [
58             rest trim-head-separators append-path-empty
59         ] }
60         { [ dup head..? ] [ drop no-parent-directory ] }
61         [ nip ]
62     } cond ;
63
64 : windows-absolute-path? ( path -- ? )
65     {
66         { [ dup "\\\\?\\" head? ] [ t ] }
67         { [ dup length 2 < ] [ f ] }
68         { [ dup second CHAR: : = ] [ t ] }
69         [ f ]
70     } cond nip ;
71
72 : special-path? ( path -- rest ? )
73     {
74         { [ "resource:" ?head ] [ t ] }
75         { [ "vocab:" ?head ] [ t ] }
76         [ f ]
77     } cond ;
78
79 PRIVATE>
80
81 : absolute-path? ( path -- ? )
82     {
83         { [ dup empty? ] [ drop f ] }
84         { [ dup special-path? nip ] [ drop t ] }
85         { [ os windows? ] [ windows-absolute-path? ] }
86         { [ dup first path-separator? ] [ drop t ] }
87         [ drop f ]
88     } cond ;
89
90 : append-relative-path ( path1 path2 -- path )
91     [ trim-tail-separators ]
92     [ trim-head-separators ] bi* "/" glue ;
93
94 : append-path ( path1 path2 -- path )
95     {
96         { [ over empty? ] [ append-path-empty ] }
97         { [ dup empty? ] [ drop ] }
98         { [ over trim-tail-separators "." = ] [ nip ] }
99         { [ dup absolute-path? ] [ nip ] }
100         { [ dup head.? ] [ rest trim-head-separators append-path ] }
101         { [ dup head..? ] [
102             2 tail trim-head-separators
103             [ parent-directory ] dip append-path
104         ] }
105         { [ over absolute-path? over first path-separator? and ] [
106             [ 2 head ] dip append
107         ] }
108         [ append-relative-path ]
109     } cond ;
110
111 : prepend-path ( path1 path2 -- path )
112     swap append-path ; inline
113
114 : 3append-path ( path chunk1 chunk2 -- path' )
115     [ append-path ] dip append-path ; inline
116
117 : file-name ( path -- string )
118     dup root-directory? [
119         trim-tail-separators
120         dup last-path-separator [ 1 + tail ] [
121             drop special-path? [ file-name ] when
122         ] if
123     ] unless ;
124
125 : file-stem ( path -- stem )
126     file-name "." split1-last drop ;
127
128 : file-extension ( path -- extension )
129     file-name "." split1-last nip ;
130
131 : has-file-extension? ( path -- ? )
132     dup ?last path-separator?
133     [ drop f ]
134     [ file-name CHAR: . swap member? ] if ;
135
136 : path-components ( path -- seq )
137     normalize-path path-separator split harvest ;
138
139 HOOK: resolve-symlinks os ( path -- path' )
140
141 M: object resolve-symlinks normalize-path ;
142
143 : resource-path ( path -- newpath )
144     "resource-path" get prepend-path ;
145
146 HOOK: home io-backend ( -- dir )
147
148 M: object home "" resource-path ;
149
150 : home-path ( path -- newpath ) home prepend-path ;
151
152 GENERIC: vocab-path ( path -- newpath )
153
154 GENERIC: absolute-path ( path -- path' )
155
156 M: string absolute-path
157     {
158         { [ "resource:" ?head ] [ trim-head-separators resource-path absolute-path ] }
159         { [ "vocab:" ?head ] [ trim-head-separators vocab-path absolute-path ] }
160         { [ "~" ?head ] [ trim-head-separators home prepend-path absolute-path ] }
161         [ current-directory get prepend-path ]
162     } cond ;
163
164 M: object normalize-path
165     absolute-path ;
166
167 : root-path* ( path -- path' )
168     dup absolute-path? [
169         dup [ path-separator? ] find
170         drop 1 + head
171     ] when ;
172
173 HOOK: root-path os ( path -- path' )
174
175 M: object root-path root-path* ;
176
177 : relative-path* ( path -- relative-path )
178     dup absolute-path? [
179         dup [ path-separator? ] find
180         drop 1 + tail
181     ] when ;
182
183 HOOK: relative-path os ( path -- path' )
184
185 M: object relative-path relative-path* ;
186
187 : canonicalize-path* ( path -- path' )
188     [
189         relative-path
190         [ path-separator? ] split-when
191         [ { "." "" } member? ] reject
192         V{ } clone [
193             dup ".." = [
194                 over empty?
195                 [ over push ]
196                 [ over ?last ".." = [ over push ] [ drop dup pop* ] if ] if
197             ] [
198                 over push
199             ] if
200         ] reduce
201     ] keep dup absolute-path? [
202         [
203             [ ".." = ] trim-head
204             path-separator join
205         ] dip root-path prepend-path
206     ] [
207         drop path-separator join [ "." ] when-empty
208     ] if ;
209
210 HOOK: canonicalize-path io-backend ( path -- path' )
211
212 M: object canonicalize-path canonicalize-path* ;
213
214 HOOK: canonicalize-drive io-backend ( path -- path' )
215
216 M: object canonicalize-drive ;
217
218 HOOK: canonicalize-path-full io-backend ( path -- path' )
219
220 M: object canonicalize-path-full canonicalize-path canonicalize-drive ;
221
222 : >windows-path ( path -- path' ) H{ { CHAR: / CHAR: \\ } } substitute ;
223
224 TUPLE: pathname string ;
225
226 C: <pathname> pathname
227
228 M: pathname absolute-path string>> absolute-path ;
229
230 M: pathname <=> [ string>> ] compare ;
231
232 : >pathname ( obj -- pathname )
233     dup pathname? [ <pathname> ] unless ;