]> gitweb.factorcode.org Git - factor.git/blob - basis/io/directories/directories.factor
Factor source files should not be executable
[factor.git] / basis / io / directories / directories.factor
1 ! Copyright (C) 2004, 2008 Slava Pestov, Doug Coleman.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: accessors combinators destructors io io.backend
4 io.encodings.binary io.files io.pathnames kernel namespaces
5 sequences system vocabs.loader fry ;
6 IN: io.directories
7
8 : set-current-directory ( path -- )
9     absolute-path current-directory set ;
10
11 : with-directory ( path quot -- )
12     [ absolute-path current-directory ] dip with-variable ; inline
13
14 ! Creating directories
15 HOOK: make-directory io-backend ( path -- )
16
17 : make-directories ( path -- )
18     normalize-path trim-tail-separators {
19         { [ dup "." = ] [ ] }
20         { [ dup root-directory? ] [ ] }
21         { [ dup empty? ] [ ] }
22         { [ dup exists? ] [ ] }
23         [
24             dup parent-directory make-directories
25             dup make-directory
26         ]
27     } cond drop ;
28
29 ! Listing directories
30 TUPLE: directory-entry name type ;
31
32 HOOK: >directory-entry os ( byte-array -- directory-entry )
33
34 HOOK: (directory-entries) os ( path -- seq )
35
36 : directory-entries ( path -- seq )
37     normalize-path
38     (directory-entries)
39     [ name>> { "." ".." } member? not ] filter ;
40     
41 : directory-files ( path -- seq )
42     directory-entries [ name>> ] map ;
43
44 : with-directory-entries ( path quot -- )
45     '[ "" directory-entries @ ] with-directory ; inline
46
47 : with-directory-files ( path quot -- )
48     '[ "" directory-files @ ] with-directory ; inline
49
50 ! Touching files
51 HOOK: touch-file io-backend ( path -- )
52
53 ! Deleting files
54 HOOK: delete-file io-backend ( path -- )
55
56 HOOK: delete-directory io-backend ( path -- )
57
58 : to-directory ( from to -- from to' )
59     over file-name append-path ;
60
61 ! Moving and renaming files
62 HOOK: move-file io-backend ( from to -- )
63
64 : move-file-into ( from to -- )
65     to-directory move-file ;
66
67 : move-files-into ( files to -- )
68     '[ _ move-file-into ] each ;
69
70 ! Copying files
71 HOOK: copy-file io-backend ( from to -- )
72
73 M: object copy-file
74     dup parent-directory make-directories
75     binary <file-writer> [
76         swap binary <file-reader> [
77             swap stream-copy
78         ] with-disposal
79     ] with-disposal ;
80
81 : copy-file-into ( from to -- )
82     to-directory copy-file ;
83
84 : copy-files-into ( files to -- )
85     '[ _ copy-file-into ] each ;
86
87 {
88     { [ os unix? ] [ "io.directories.unix" require ] }
89     { [ os windows? ] [ "io.directories.windows" require ] }
90 } cond